From d7012e3834890c67e16784a4742e81c5e15ba403 Mon Sep 17 00:00:00 2001 From: "Phyks (Lucas Verney)" Date: Mon, 3 Apr 2017 17:29:29 +0200 Subject: [PATCH] Initial commit --- .ci/pylintrc | 407 ++++++++++++++++++++++++ .gitignore | 5 +- LICENSE.md | 21 ++ README.md | 115 +++++++ flat.py | 130 -------- flatisfy/__init__.py | 5 + flatisfy/__main__.py | 176 ++++++++++ flatisfy/cmds.py | 110 +++++++ flatisfy/config.py | 208 ++++++++++++ flatisfy/data.py | 163 ++++++++++ flatisfy/data_files/laposte.json | 1 + {data => flatisfy/data_files}/ratp.json | 0 flatisfy/database/__init__.py | 64 ++++ flatisfy/database/base.py | 10 + flatisfy/database/types.py | 48 +++ flatisfy/exceptions.py | 13 + flatisfy/fetch.py | 76 +++++ flatisfy/filters/__init__.py | 153 +++++++++ flatisfy/filters/duplicates.py | 56 ++++ flatisfy/filters/metadata.py | 349 ++++++++++++++++++++ flatisfy/models/__init__.py | 0 flatisfy/models/flat.py | 101 ++++++ flatisfy/tools.py | 239 ++++++++++++++ flatisfy/web/__init__.py | 0 flatisfy/web/app.py | 53 +++ flatisfy/web/dbplugin.py | 58 ++++ flatisfy/web/routes/__init__.py | 0 flatisfy/web/routes/api.py | 47 +++ flatisfy/web/static/index.html | 30 ++ hooks/pre-commit | 3 + requirements.txt | 8 + 31 files changed, 2518 insertions(+), 131 deletions(-) create mode 100644 .ci/pylintrc create mode 100644 LICENSE.md create mode 100644 README.md delete mode 100755 flat.py create mode 100644 flatisfy/__init__.py create mode 100644 flatisfy/__main__.py create mode 100644 flatisfy/cmds.py create mode 100644 flatisfy/config.py create mode 100644 flatisfy/data.py create mode 100644 flatisfy/data_files/laposte.json rename {data => flatisfy/data_files}/ratp.json (100%) create mode 100644 flatisfy/database/__init__.py create mode 100644 flatisfy/database/base.py create mode 100644 flatisfy/database/types.py create mode 100644 flatisfy/exceptions.py create mode 100644 flatisfy/fetch.py create mode 100644 flatisfy/filters/__init__.py create mode 100644 flatisfy/filters/duplicates.py create mode 100644 flatisfy/filters/metadata.py create mode 100644 flatisfy/models/__init__.py create mode 100644 flatisfy/models/flat.py create mode 100644 flatisfy/tools.py create mode 100644 flatisfy/web/__init__.py create mode 100644 flatisfy/web/app.py create mode 100644 flatisfy/web/dbplugin.py create mode 100644 flatisfy/web/routes/__init__.py create mode 100644 flatisfy/web/routes/api.py create mode 100644 flatisfy/web/static/index.html create mode 100755 hooks/pre-commit create mode 100644 requirements.txt diff --git a/.ci/pylintrc b/.ci/pylintrc new file mode 100644 index 0000000..71f650e --- /dev/null +++ b/.ci/pylintrc @@ -0,0 +1,407 @@ +[MASTER] + +# Specify a configuration file. +#rcfile= + +# Python code to execute, usually for sys.path manipulation such as +# pygtk.require(). +#init-hook= + +# Add files or directories to the blacklist. They should be base names, not +# paths. +ignore=CVS + +# Add files or directories matching the regex patterns to the blacklist. The +# regex matches against base names, not paths. +ignore-patterns= + +# Pickle collected data for later comparisons. +persistent=yes + +# List of plugins (as comma separated values of python modules names) to load, +# usually to register additional checkers. +load-plugins= + +# Use multiple processes to speed up Pylint. +jobs=1 + +# Allow loading of arbitrary C extensions. Extensions are imported into the +# active Python interpreter and may run arbitrary code. +unsafe-load-any-extension=no + +# A comma-separated list of package or module names from where C extensions may +# be loaded. Extensions are loading into the active Python interpreter and may +# run arbitrary code +extension-pkg-whitelist= + +# Allow optimization of some AST trees. This will activate a peephole AST +# optimizer, which will apply various small optimizations. For instance, it can +# be used to obtain the result of joining multiple strings with the addition +# operator. Joining a lot of strings can lead to a maximum recursion error in +# Pylint and this flag can prevent that. It has one side effect, the resulting +# AST will be different than the one from reality. This option is deprecated +# and it will be removed in Pylint 2.0. +optimize-ast=no + + +[MESSAGES CONTROL] + +# Only show warnings with the listed confidence levels. Leave empty to show +# all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED +confidence= + +# Enable the message, report, category or checker with the given id(s). You can +# either give multiple identifier separated by comma (,) or put this option +# multiple time (only on the command line, not in the configuration file where +# it should appear only once). See also the "--disable" option for examples. +#enable= + +# Disable the message, report, category or checker with the given id(s). You +# can either give multiple identifiers separated by comma (,) or put this +# option multiple times (only on the command line, not in the configuration +# file where it should appear only once).You can also use "--disable=all" to +# disable everything first and then reenable specific checks. For example, if +# you want to run only the similarities checker, you can use "--disable=all +# --enable=similarities". If you want to run only the classes checker, but have +# no Warning level messages displayed, use"--disable=all --enable=classes +# --disable=W" +disable=import-star-module-level,old-octal-literal,oct-method,print-statement,unpacking-in-except,parameter-unpacking,backtick,old-raise-syntax,old-ne-operator,long-suffix,dict-view-method,dict-iter-method,metaclass-assignment,next-method-called,raising-string,indexing-exception,raw_input-builtin,long-builtin,file-builtin,execfile-builtin,coerce-builtin,cmp-builtin,buffer-builtin,basestring-builtin,apply-builtin,filter-builtin-not-iterating,using-cmp-argument,useless-suppression,range-builtin-not-iterating,suppressed-message,no-absolute-import,old-division,cmp-method,reload-builtin,zip-builtin-not-iterating,intern-builtin,unichr-builtin,reduce-builtin,standarderror-builtin,unicode-builtin,xrange-builtin,coerce-method,delslice-method,getslice-method,setslice-method,input-builtin,round-builtin,hex-method,nonzero-method,map-builtin-not-iterating + + +[REPORTS] + +# Set the output format. Available formats are text, parseable, colorized, msvs +# (visual studio) and html. You can also give a reporter class, eg +# mypackage.mymodule.MyReporterClass. +output-format=text + +# Put messages in a separate file for each module / package specified on the +# command line instead of printing them on stdout. Reports (if any) will be +# written in a file name "pylint_global.[txt|html]". This option is deprecated +# and it will be removed in Pylint 2.0. +files-output=no + +# Tells whether to display a full report or only the messages +reports=yes + +# Python expression which should return a note less than 10 (10 is the highest +# note). You have access to the variables errors warning, statement which +# respectively contain the number of errors / warnings messages and the total +# number of statements analyzed. This is used by the global evaluation report +# (RP0004). +evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10) + +# Template used to display messages. This is a python new-style format string +# used to format the message information. See doc for all details +#msg-template= + + +[BASIC] + +# Good variable names which should always be accepted, separated by a comma +good-names=i,j,k,ex,Run,_,fh + +# Bad variable names which should always be refused, separated by a comma +bad-names=foo,bar,baz,toto,tutu,tata + +# Colon-delimited sets of names that determine each other's naming style when +# the name regexes allow several styles. +name-group= + +# Include a hint for the correct naming format with invalid-name +include-naming-hint=no + +# List of decorators that produce properties, such as abc.abstractproperty. Add +# to this list to register other decorators that produce valid properties. +property-classes=abc.abstractproperty + +# Regular expression matching correct function names +function-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Naming hint for function names +function-name-hint=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression matching correct variable names +variable-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Naming hint for variable names +variable-name-hint=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression matching correct constant names +const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ + +# Naming hint for constant names +const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ + +# Regular expression matching correct attribute names +attr-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Naming hint for attribute names +attr-name-hint=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression matching correct argument names +argument-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Naming hint for argument names +argument-name-hint=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression matching correct class attribute names +class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ + +# Naming hint for class attribute names +class-attribute-name-hint=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$ + +# Regular expression matching correct inline iteration names +inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$ + +# Naming hint for inline iteration names +inlinevar-name-hint=[A-Za-z_][A-Za-z0-9_]*$ + +# Regular expression matching correct class names +class-rgx=[A-Z_][a-zA-Z0-9]+$ + +# Naming hint for class names +class-name-hint=[A-Z_][a-zA-Z0-9]+$ + +# Regular expression matching correct module names +module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ + +# Naming hint for module names +module-name-hint=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ + +# Regular expression matching correct method names +method-rgx=[a-z_][a-z0-9_]{2,30}$ + +# Naming hint for method names +method-name-hint=[a-z_][a-z0-9_]{2,30}$ + +# Regular expression which should only match function or class names that do +# not require a docstring. +no-docstring-rgx=^_ + +# Minimum line length for functions/classes that require docstrings, shorter +# ones are exempt. +docstring-min-length=-1 + + +[ELIF] + +# Maximum number of nested blocks for function / method body +max-nested-blocks=5 + + +[FORMAT] + +# Maximum number of characters on a single line. +max-line-length=100 + +# Regexp for a line that is allowed to be longer than the limit. +ignore-long-lines=^\s*(# )??$ + +# Allow the body of an if to be on the same line as the test if there is no +# else. +single-line-if-stmt=no + +# List of optional constructs for which whitespace checking is disabled. `dict- +# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}. +# `trailing-comma` allows a space between comma and closing bracket: (a, ). +# `empty-line` allows space-only lines. +no-space-check=trailing-comma,dict-separator + +# Maximum number of lines in a module +max-module-lines=1000 + +# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 +# tab). +indent-string=' ' + +# Number of spaces of indent required inside a hanging or continued line. +indent-after-paren=4 + +# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. +expected-line-ending-format= + + +[LOGGING] + +# Logging modules to check that the string format arguments are in logging +# function parameter format +logging-modules=logging + + +[MISCELLANEOUS] + +# List of note tags to take in consideration, separated by a comma. +notes=FIXME,XXX,TODO + + +[SIMILARITIES] + +# Minimum lines number of a similarity. +min-similarity-lines=4 + +# Ignore comments when computing similarities. +ignore-comments=yes + +# Ignore docstrings when computing similarities. +ignore-docstrings=yes + +# Ignore imports when computing similarities. +ignore-imports=no + + +[SPELLING] + +# Spelling dictionary name. Available dictionaries: none. To make it working +# install python-enchant package. +spelling-dict= + +# List of comma separated words that should not be checked. +spelling-ignore-words= + +# A path to a file that contains private dictionary; one word per line. +spelling-private-dict-file= + +# Tells whether to store unknown words to indicated private dictionary in +# --spelling-private-dict-file option instead of raising a message. +spelling-store-unknown-words=no + + +[TYPECHECK] + +# Tells whether missing members accessed in mixin class should be ignored. A +# mixin class is detected if its name ends with "mixin" (case insensitive). +ignore-mixin-members=yes + +# List of module names for which member attributes should not be checked +# (useful for modules/projects where namespaces are manipulated during runtime +# and thus existing member attributes cannot be deduced by static analysis. It +# supports qualified module names, as well as Unix pattern matching. +ignored-modules= + +# List of class names for which member attributes should not be checked (useful +# for classes with dynamically set attributes). This supports the use of +# qualified names. +ignored-classes=optparse.Values,thread._local,_thread._local + +# List of members which are set dynamically and missed by pylint inference +# system, and so shouldn't trigger E1101 when accessed. Python regular +# expressions are accepted. +generated-members= + +# List of decorators that produce context managers, such as +# contextlib.contextmanager. Add to this list to register other decorators that +# produce valid context managers. +contextmanager-decorators=contextlib.contextmanager + + +[VARIABLES] + +# Tells whether we should check for unused import in __init__ files. +init-import=no + +# A regular expression matching the name of dummy variables (i.e. expectedly +# not used). +dummy-variables-rgx=(_+[a-zA-Z0-9]*?$)|dummy + +# List of additional names supposed to be defined in builtins. Remember that +# you should avoid to define new builtins when possible. +additional-builtins= + +# List of strings which can identify a callback function by name. A callback +# name must start or end with one of those strings. +callbacks=cb_,_cb + +# List of qualified module names which can have objects that can redefine +# builtins. +redefining-builtins-modules=six.moves,future.builtins,builtins + + +[CLASSES] + +# List of method names used to declare (i.e. assign) instance attributes. +defining-attr-methods=__init__,__new__,setUp + +# List of valid names for the first argument in a class method. +valid-classmethod-first-arg=cls + +# List of valid names for the first argument in a metaclass class method. +valid-metaclass-classmethod-first-arg=mcs + +# List of member names, which should be excluded from the protected access +# warning. +exclude-protected=_asdict,_fields,_replace,_source,_make + + +[DESIGN] + +# Maximum number of arguments for function / method +max-args=5 + +# Argument names that match this expression will be ignored. Default to name +# with leading underscore +ignored-argument-names=_.* + +# Maximum number of locals for function / method body +max-locals=15 + +# Maximum number of return / yield for function / method body +max-returns=6 + +# Maximum number of branch for function / method body +max-branches=12 + +# Maximum number of statements in function / method body +max-statements=50 + +# Maximum number of parents for a class (see R0901). +max-parents=7 + +# Maximum number of attributes for a class (see R0902). +max-attributes=7 + +# Minimum number of public methods for a class (see R0903). +min-public-methods=2 + +# Maximum number of public methods for a class (see R0904). +max-public-methods=20 + +# Maximum number of boolean expressions in a if statement +max-bool-expr=5 + + +[IMPORTS] + +# Deprecated modules which should not be used, separated by a comma +deprecated-modules=regsub,TERMIOS,Bastion,rexec + +# Create a graph of every (i.e. internal and external) dependencies in the +# given file (report RP0402 must not be disabled) +import-graph= + +# Create a graph of external dependencies in the given file (report RP0402 must +# not be disabled) +ext-import-graph= + +# Create a graph of internal dependencies in the given file (report RP0402 must +# not be disabled) +int-import-graph= + +# Force import order to recognize a module as part of the standard +# compatibility libraries. +known-standard-library= + +# Force import order to recognize a module as part of a third party library. +known-third-party=enchant + +# Analyse import fallback blocks. This can be used to support both Python 2 and +# 3 compatible code, which means that the block might have code that exists +# only in one or another interpreter, leading to false positives when analysed. +analyse-fallback-blocks=no + + +[EXCEPTIONS] + +# Exceptions that will emit a warning when being caught. Defaults to +# "Exception" +overgeneral-exceptions=Exception diff --git a/.gitignore b/.gitignore index 3937141..5d0799b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ build *.json -config.py +*.pyc +*.swp +*.swo +*.db diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..9d64f10 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 Phyks (Lucas Verney) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b57b4c3 --- /dev/null +++ b/README.md @@ -0,0 +1,115 @@ +Flatisfy +======== + +Flatisfy is your new companion to ease your search of a new housing :) + + +It uses [Weboob](http://weboob.org/) to get all the housing posts on most of +the websites offering housings posts, and then offers a bunch of pipelines to +filter and deduplicate the fetched housings. + + +It can be used as a command-line utility, but also exposes a web API and +visualisation, to browse through the results. + + +_Note_: It is targeted at French users (due to the currently supported +websites), and in particular at people living close to Paris, as I developped +it for my personal use, and am currently living in Paris :) Any feedback and +merge requests to better support other countries / cities are more than +welcome! + +_Note_: In this repository and across the code, I am using the name "flat". I +use it as a placeholder for "housing" and consider both are interchangeable. +This code is not restricted to handling flats only! + + +## Getting started + +1. Clone the repository. +2. Install required Python modules: `pip install -r requirements.txt`. +3. Init a configuration file: `python -m flatisfy init-config > config.json`. + Edit it according to your needs (see below). +4. Build the required data files: + `python -m flatisfy build-data --config config.json`. +5. Use it to `fetch` (and output a filtered JSON list of flats) or `import` + (into an SQLite database, for the web visualization) a list of flats + matching your criteria. +6. Use `python -m flatisfy serve --config config.json` to serve the web app. + + +## Configuration + +List of configuration options: + +* `data_directory` is the directory in which you want data files to be stored. + `null` is the default value and means default `XDG` location (typically + `~/.local/share/flatisfy/`) +* `max_entries` is the maximum number of entries to fetch **per Weboob + backend** (that is per housing website). +* `passes` is the number of passes to run on the data. First pass is a basic + filtering and using only the informations from the housings list page. + Second pass loads any possible information about the filtered flats and does + better filtering. +* `queries` is a list of queries defined in `flatboob` that should be fetched. +* `database` is an SQLAlchemy URI to a database file. Defaults to `null` which + means that it will store the database in the default location, in + `data_directory`. +* `navitia_api_key` is an API token for [Navitia](https://www.navitia.io/) + which is required to compute travel times. + +### Constraints + +You can specify constraints, under the `constraints` key. The available +constraints are: + +* `area` (in m²), `bedrooms`, `cost` (in currency unit), `rooms`: this is a + tuple of `(min, max)` values, defining an interval in which the value should + lie. A `null` value means that any value is within this bound. +* `postal_codes` is a list of allowed postal codes. You should include any + postal code you want, and especially the postal codes close to the precise + location you want. You MUST provide some postal codes. +* `time_to` is a dictionary of places to compute travel time to them. + Typically, + ``` + "time_to": { + "foobar": { + "gps": [LAT, LNG], + "time": [min, max] + } + } + ``` + means that the housings must be between the `min` and `max` bounds (possibly + `null`) from the place identified by the GPS coordinates `LAT` and `LNG` + (latitude and longitude), and we call this place `foobar` in human-readable + form. Beware that `time` constraints are in **seconds**. + + +## OpenData + +I am using the following datasets, available under `flatisfy/data_files`, +which covers Paris. If you want to run the script using some other location, +you might have to change these files by matching datasets. + +* [LaPoste Hexasmal](https://datanova.legroupe.laposte.fr/explore/dataset/laposte_hexasmal/?disjunctive.code_commune_insee&disjunctive.nom_de_la_commune&disjunctive.code_postal&disjunctive.libell_d_acheminement&disjunctive.ligne_5) for the list of cities and postal codes in France. +* [RATP stations](https://data.ratp.fr/explore/dataset/positions-geographiques-des-stations-du-reseau-ratp/table/?disjunctive.stop_name&disjunctive.code_postal&disjunctive.departement) for the list of subway stations with their positions in Paris and nearby areas. + +Both datasets are licensed under the Open Data Commons Open Database License +(ODbL): https://opendatacommons.org/licenses/odbl/. + + +## License + +The content of this repository is licensed under an MIT license, unless +explicitly mentionned otherwise. + + +## Thanks + +* [Weboob](http://weboob.org/) +* The OpenData providers listed above! +* Navitia for their really cool public transportation API. +* A lots of Python modules, required for this script (see `requirements.txt`). +* [Kresus](https://framagit.org/bnjbvr/kresus) which gave me part of the + original idea (at least proved me such software based on scraping can + achieve a high quality level :) diff --git a/flat.py b/flat.py deleted file mode 100755 index a449d13..0000000 --- a/flat.py +++ /dev/null @@ -1,130 +0,0 @@ -# coding: utf-8 -#!/usr/bin/env python3 -import json -import os -import subprocess -import sys - -from fuzzywuzzy import process as fuzzyprocess - -import config - - -def pretty_json(json_str): - return json.dumps(json_str, indent=4, separators=(',', ': '), - sort_keys=True) - - -def preprocess_data(): - if not os.path.isdir("build"): - os.mkdir("build") - - if not os.path.isfile("build/ratp.json"): - ratp_data = [] - with open("data/ratp.json", "r") as fh: - ratp_data = json.load(fh) - ratp_data = sorted( - list(set( - x["fields"]["stop_name"].lower() for x in ratp_data - )) - ) - with open("build/ratp.json", "w") as fh: - fh.write(pretty_json(ratp_data)) - - -def fetch_flats_list(): - flats_list = [] - for query in config.QUERIES: - flatboob_output = subprocess.check_output( - ["flatboob", "-n", "0", "-f", "json", "load", query] - ) - flats_list.extend(json.loads(flatboob_output)) - return flats_list - - -def remove_duplicates(flats_list): - unique_flats_list = [] - ids = [] - for flat in flats_list: - if flat["id"] in ids: - continue - ids.append(id) - unique_flats_list.append(flat) - return unique_flats_list - - -def sort_by(flats_list, key="cost"): - return sorted(flats_list, key=lambda x: x["cost"]) - - -def refine_params(flats_list): - def filter_conditions(x): - is_ok = True - if "cost" in x: - cost = x["cost"] - is_ok = ( - is_ok and - (cost < config.PARAMS["max_cost"] and - cost > config.PARAMS["min_cost"]) - ) - if "area" in x: - area = x["area"] - is_ok = ( - is_ok and - (area < config.PARAMS["max_area"] and - area > config.PARAMS["min_area"]) - ) - return is_ok - - return filter(filter_conditions, flats_list) - - -def match_ratp(flats_list): - ratp_stations = [] - with open("build/ratp.json", "r") as fh: - ratp_stations = json.load(fh) - - for flat in flats_list: - if "station" in flat and flat["station"]: - # There is some station fetched by flatboob, try to match it - flat["ratp_station"] = fuzzyprocess.extractOne( - flat["station"], ratp_stations - ) - # TODO: Cross-check station location to choose the best fit - - return flats_list - - -def main(dumpfile=None): - if dumpfile is None: - flats_list = fetch_flats_list() - else: - with open(dumpfile, "r") as fh: - flats_list = json.load(fh) - - # First pass - flats_list = remove_duplicates(flats_list) - flats_list = sort_by(flats_list, "cost") - flats_list = refine_params(flats_list) - - # TODO: flats_list = match_ratp(flats_list) - - # TODO: Second pass, loading additional infos for each entry - - return flats_list - - -if __name__ == "__main__": - if len(sys.argv) > 1: - dumpfile = sys.argv[1] - else: - dumpfile = None - - try: - preprocess_data() - flats_list = main(dumpfile) - print( - pretty_json(flats_list) - ) - except KeyboardInterrupt: - pass diff --git a/flatisfy/__init__.py b/flatisfy/__init__.py new file mode 100644 index 0000000..1302368 --- /dev/null +++ b/flatisfy/__init__.py @@ -0,0 +1,5 @@ +# coding: utf-8 +""" +``Flatisfy`` is a tool to help you find a new housing based on some criteria. +""" +__version__ = "0.1" diff --git a/flatisfy/__main__.py b/flatisfy/__main__.py new file mode 100644 index 0000000..0641e16 --- /dev/null +++ b/flatisfy/__main__.py @@ -0,0 +1,176 @@ +# coding: utf-8 +""" +Main entry point of the Flatisfy code. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import argparse +import logging +import sys + +import flatisfy.config +from flatisfy import cmds +from flatisfy import data +from flatisfy import tools + + +LOGGER = logging.getLogger("flatisfy") + + +def parse_args(argv=None): + """ + Create parser and parse arguments. + """ + parser = argparse.ArgumentParser(prog="Flatisfy", + description="Find the perfect flat.") + + # Parent parser containing arguments common to any subcommand + parent_parser = argparse.ArgumentParser(add_help=False) + parent_parser.add_argument( + "--data-dir", + help="Location of Flatisfy data directory." + ) + parent_parser.add_argument( + "--config", + help="Configuration file to use." + ) + parent_parser.add_argument( + "--passes", choices=[0, 1, 2], type=int, + help="Number of passes to do on the filtered data." + ) + parent_parser.add_argument( + "--max-entries", type=int, + help="Maximum number of entries to fetch." + ) + parent_parser.add_argument( + "-v", "--verbose", action="store_true", + help="Verbose logging output." + ) + parent_parser.add_argument( + "-vv", action="store_true", + help="Debug logging output." + ) + + # Subcommands + subparsers = parser.add_subparsers( + dest="cmd", help="Available subcommands" + ) + + # Build data subcommand + subparsers.add_parser( + "build-data", parents=[parent_parser], + help="Build necessary data" + ) + + # Init config subcommand + parser_init_config = subparsers.add_parser( + "init-config", parents=[parent_parser], + help="Initialize empty configuration." + ) + parser_init_config.add_argument( + "output", nargs="?", help="Output config file. Use '-' for stdout." + ) + + # Fetch subcommand parser + subparsers.add_parser("fetch", parents=[parent_parser], + help="Fetch housings posts") + + # Filter subcommand parser + parser_filter = subparsers.add_parser("filter", parents=[parent_parser], + help=( + "Filter housings posts. No " + "fetching of additional infos " + "is done.")) + parser_filter.add_argument( + "input", + help="JSON dump of the housings post to filter." + ) + + # Import subcommand parser + subparsers.add_parser("import", parents=[parent_parser], + help="Import housing posts in database.") + + # Serve subcommand parser + parser_serve = subparsers.add_parser("serve", parents=[parent_parser], + help="Serve the web app.") + parser_serve.add_argument("--port", type=int, help="Port to bind to.") + parser_serve.add_argument("--host", help="Host to listen on.") + + return parser.parse_args(argv) + + +def main(): + """ + Main module code. + """ + # Parse arguments + args = parse_args() + + # Set logger + if args.vv: + logging.basicConfig(level=logging.DEBUG) + logging.getLogger('sqlalchemy.engine').setLevel(logging.DEBUG) + elif args.verbose: + logging.basicConfig(level=logging.INFO) + # sqlalchemy INFO level is way too loud, just stick with WARNING + logging.getLogger('sqlalchemy.engine').setLevel(logging.WARNING) + else: + logging.basicConfig(level=logging.WARNING) + logging.getLogger('sqlalchemy.engine').setLevel(logging.WARNING) + + # Init-config command + if args.cmd == "init-config": + flatisfy.config.init_config(args.output) + sys.exit(0) + else: + # Load config + config = flatisfy.config.load_config(args) + if config is None: + LOGGER.error("Invalid configuration. Exiting. " + "Run init-config before if this is the first time " + "you run Flatisfy.") + sys.exit(1) + + # Build data files + try: + if args.cmd == "build-data": + data.preprocess_data(config, force=True) + sys.exit(0) + else: + data.preprocess_data(config) + except flatisfy.exceptions.DataBuildError: + sys.exit(1) + + # Fetch command + if args.cmd == "fetch": + # Fetch and filter flats list + flats_list, _ = cmds.fetch_and_filter(config) + # Sort by cost + flats_list = tools.sort_list_of_dicts_by(flats_list, "cost") + + print( + tools.pretty_json(flats_list) + ) + # Filter command + elif args.cmd == "filter": + # Load and filter flats list + flats_list = cmds.load_and_filter(args.input, config) + # Sort by cost + flats_list = tools.sort_list_of_dicts_by(flats_list, "cost") + + print( + tools.pretty_json(flats_list) + ) + # Import command + elif args.cmd == "import": + cmds.import_and_filter(config) + # Serve command + elif args.cmd == "serve": + cmds.serve(config) + + +if __name__ == "__main__": + try: + main() + except KeyboardInterrupt: + pass diff --git a/flatisfy/cmds.py b/flatisfy/cmds.py new file mode 100644 index 0000000..08d7aee --- /dev/null +++ b/flatisfy/cmds.py @@ -0,0 +1,110 @@ +# coding: utf-8 +""" +Main commands available for flatisfy. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import flatisfy.filters +from flatisfy import database +from flatisfy.models import flat as flat_model +from flatisfy import fetch +from flatisfy import tools +from flatisfy.web import app as web_app + + +def fetch_and_filter(config): + """ + Fetch the available flats list. Then, filter it according to criteria. + + :param config: A config dict. + :return: A tuple of the list of all matching flats and the list of ignored + flats. + """ + # TODO: Reduce load on housings listing websites + # Fetch flats list with flatboobs + flats_list = fetch.fetch_flats_list(config) + + # Do a first pass with the available infos to try to remove as much + # unwanted postings as possible + if config["passes"] > 0: + flats_list, ignored_flats = flatisfy.filters.first_pass(flats_list, + config) + + # Do a second pass to consolidate all the infos we found and make use of + # additional infos + if config["passes"] > 1: + # Load additional infos + for flat in flats_list: + details = fetch.fetch_details(flat["id"]) + flat = tools.merge_dicts(flat, details) + + flats_list, extra_ignored_flats = flatisfy.filters.second_pass( + flats_list, config + ) + ignored_flats.extend(extra_ignored_flats) + + return flats_list, ignored_flats + + +def load_and_filter(housing_file, config): + """ + Load the dumped flats list. Then, filter it according to criteria. + + :param housing_file: The JSON file to load flats from. + :param config: A config dict. + :return: A tuple of the list of all matching flats and the list of ignored + flats. + """ + # Load flats list + flats_list = fetch.load_flats_list(housing_file) + + # Do a first pass with the available infos to try to remove as much + # unwanted postings as possible + if config["passes"] > 0: + flats_list, ignored_flats = flatisfy.filters.first_pass(flats_list, + config) + + # Do a second pass to consolidate all the infos we found + if config["passes"] > 1: + flats_list, extra_ignored_flats = flatisfy.filters.second_pass( + flats_list, config + ) + ignored_flats.extend(extra_ignored_flats) + + return flats_list, ignored_flats + + +def import_and_filter(config): + """ + Fetch the available flats list. Then, filter it according to criteria. + Finally, store it in the database. + + :param config: A config dict. + :return: ``None``. + """ + # Fetch and filter flats list + flats_list, purged_list = fetch_and_filter(config) + # Create database connection + get_session = database.init_db(config["database"]) + + with get_session() as session: + for flat_dict in flats_list: + flat = flat_model.Flat.from_dict(flat_dict) + session.merge(flat) + + for flat_dict in purged_list: + flat = flat_model.Flat.from_dict(flat_dict) + flat.status = flat_model.FlatStatus.purged + session.merge(flat) + + +def serve(config): + """ + Serve the web app. + + :param config: A config dict. + :return: ``None``, long-running process. + """ + app = web_app.get_app(config) + # TODO: Make Bottle use logging module + app.run(host=config["host"], port=config["port"]) diff --git a/flatisfy/config.py b/flatisfy/config.py new file mode 100644 index 0000000..35e694d --- /dev/null +++ b/flatisfy/config.py @@ -0,0 +1,208 @@ +# coding: utf-8 +""" +This module handles the configuration management for Flatisfy. + +It loads the default configuration, then overloads it with the provided config +file and then overloads it with command-line options. +""" +from __future__ import absolute_import, print_function, unicode_literals +from builtins import str + +import json +import logging +import os +import sys +import traceback + +import appdirs + +from flatisfy import tools + + +# Default configuration +DEFAULT_CONFIG = { + # Flatboob queries to fetch + "queries": [], + # Constraints to match + "constraints": { + "postal_codes": [], # List of postal codes + "area": (None, None), # (min, max) in m^2 + "cost": (None, None), # (min, max) in currency unit + "rooms": (None, None), # (min, max) + "bedrooms": (None, None), # (min, max) + "time_to": {} # Dict mapping names to {"gps": [lat, lng], + # "time": (min, max) } + # Time is in seconds + }, + # Navitia API key + "navitia_api_key": None, + # Number of filtering passes to run + "passes": 2, + # Maximum number of entries to fetch + "max_entries": None, + # Directory in wich data will be put. ``None`` is XDG default location. + "data_directory": None, + # SQLAlchemy URI to the database to use + "database": None, + # Web app port + "port": 8080, + # Web app host to listen on + "host": "127.0.0.1" +} + +LOGGER = logging.getLogger(__name__) + + +def validate_config(config): + """ + Check that the config passed as argument is a valid configuration. + + :param config: A config dictionary to fetch. + :return: ``True`` if the configuration is valid, ``False`` otherwise. + """ + def _check_constraints_bounds(bounds): + """ + Check the bounds for numeric constraints. + """ + assert len(bounds) == 2 + assert all( + x is None or + ( + (isinstance(x, int) or isinstance(x, float)) and + x >= 0 + ) + for x in bounds + ) + if bounds[0] is not None and bounds[1] is not None: + assert bounds[1] > bounds[0] + + try: + # Note: The traceback fetching code only handle single line asserts. + # Then, we disable line-too-long pylint check and E501 flake8 checks + # and use long lines whenever needed, in order to have the full assert + # message in the log output. + # pylint: disable=line-too-long + assert "postal_codes" in config["constraints"] + assert len(config["constraints"]["postal_codes"]) > 0 + + assert "area" in config["constraints"] + _check_constraints_bounds(config["constraints"]["area"]) + + assert "cost" in config["constraints"] + _check_constraints_bounds(config["constraints"]["cost"]) + + assert "rooms" in config["constraints"] + _check_constraints_bounds(config["constraints"]["rooms"]) + + assert "bedrooms" in config["constraints"] + _check_constraints_bounds(config["constraints"]["bedrooms"]) + + assert "time_to" in config["constraints"] + assert isinstance(config["constraints"]["time_to"], dict) + for name, item in config["constraints"]["time_to"].items(): + assert isinstance(name, str) + assert "gps" in item + assert isinstance(item["gps"], list) + assert len(item["gps"]) == 2 + assert "time" in item + _check_constraints_bounds(item["time"]) + + assert config["passes"] in [0, 1, 2] + assert config["max_entries"] is None or (isinstance(config["max_entries"], int) and config["max_entries"] > 0) # noqa: E501 + + assert config["data_directory"] is None or isinstance(config["data_directory"], str) # noqa: E501 + + assert config["database"] is None or isinstance(config["database"], str) # noqa: E501 + + assert isinstance(config["port"], int) + assert isinstance(config["host"], str) + + return True + except (AssertionError, KeyError): + _, _, exc_traceback = sys.exc_info() + return traceback.extract_tb(exc_traceback)[-1][-1] + + +def load_config(args=None): + """ + Load the configuration from file. + + :param args: An argparse args structure. + :return: The loaded config dict. + """ + LOGGER.info("Initializing configuration...") + # Default configuration + config_data = DEFAULT_CONFIG.copy() + + # Load config from specified JSON + if args and getattr(args, "config", None): + LOGGER.debug("Loading configuration from %s.", args.config) + try: + with open(args.config, "r") as fh: + config_data.update(json.load(fh)) + except (IOError, ValueError): + LOGGER.error( + "Unable to load configuration from file, " + "using default configuration." + ) + + # Overload config with arguments + if args and getattr(args, "passes", None) is not None: + LOGGER.debug( + "Overloading number of passes from CLI arguments: %d.", + args.passes + ) + config_data["passes"] = args.passes + if args and getattr(args, "max_entries", None) is not None: + LOGGER.debug( + "Overloading maximum number of entries from CLI arguments: %d.", + args.max_entries + ) + config_data["max_entries"] = args.max_entries + if args and getattr(args, "port", None) is not None: + LOGGER.debug("Overloading web app port: %d.", args.port) + config_data["port"] = args.port + if args and getattr(args, "host", None) is not None: + LOGGER.debug("Overloading web app host: %s.", args.host) + config_data["host"] = str(args.host) + + # Handle data_directory option + if args and getattr(args, "data_dir", None) is not None: + LOGGER.debug("Overloading data directory from CLI arguments.") + config_data["data_directory"] = args.data_dir + elif config_data["data_directory"] is None: + config_data["data_directory"] = appdirs.user_data_dir( + "flatisfy", + "flatisfy" + ) + LOGGER.debug("Using default XDG data directory: %s.", + config_data["data_directory"]) + + if config_data["database"] is None: + config_data["database"] = "sqlite:///" + os.path.join( + config_data["data_directory"], + "flatisfy.db" + ) + + config_validation = validate_config(config_data) + if config_validation is True: + LOGGER.info("Config has been fully initialized.") + return config_data + else: + LOGGER.error("Error in configuration: %s.", config_validation) + return None + + +def init_config(output=None): + """ + Initialize an empty configuration file. + + :param output: File to output content to. Defaults to ``stdin``. + """ + config_data = DEFAULT_CONFIG.copy() + + if output and output != "-": + with open(output, "w") as fh: + fh.write(tools.pretty_json(config_data)) + else: + print(tools.pretty_json(config_data)) diff --git a/flatisfy/data.py b/flatisfy/data.py new file mode 100644 index 0000000..5f766c6 --- /dev/null +++ b/flatisfy/data.py @@ -0,0 +1,163 @@ +# coding : utf-8 +""" +This module contains all the code related to building necessary data files from +the source opendata files. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import collections +import json +import logging +import os + +import flatisfy.exceptions + + +LOGGER = logging.getLogger(__name__) +MODULE_DIR = os.path.dirname(os.path.realpath(__file__)) + + +def _preprocess_ratp(output_dir): + """ + Build RATP file from the RATP data. + + :param output_dir: Directory in which the output file should reside. + :return: ``True`` on successful build, ``False`` otherwise. + """ + ratp_data_raw = [] + # Load opendata file + try: + with open(os.path.join(MODULE_DIR, "data_files/ratp.json"), "r") as fh: + ratp_data_raw = json.load(fh) + except (IOError, ValueError): + LOGGER.error("Invalid raw RATP opendata file.") + return False + + # Process it + ratp_data = collections.defaultdict(list) + for item in ratp_data_raw: + stop_name = item["fields"]["stop_name"].lower() + ratp_data[stop_name].append(item["fields"]["coord"]) + + # Output it + with open(os.path.join(output_dir, "ratp.json"), "w") as fh: + json.dump(ratp_data, fh) + + return True + + +def _preprocess_laposte(output_dir): + """ + Build JSON files from the postal codes data. + + :param output_dir: Directory in which the output file should reside. + :return: ``True`` on successful build, ``False`` otherwise. + """ + raw_laposte_data = [] + # Load opendata file + try: + with open( + os.path.join(MODULE_DIR, "data_files/laposte.json"), "r" + ) as fh: + raw_laposte_data = json.load(fh) + except (IOError, ValueError): + LOGGER.error("Invalid raw LaPoste opendata file.") + return False + + # Build postal codes to other infos file + postal_codes_data = {} + for item in raw_laposte_data: + try: + postal_codes_data[item["fields"]["code_postal"]] = { + "gps": item["fields"]["coordonnees_gps"], + "nom": item["fields"]["nom_de_la_commune"].title() + } + except KeyError: + LOGGER.info("Missing data for postal code %s, skipping it.", + item["fields"]["code_postal"]) + with open(os.path.join(output_dir, "postal_codes.json"), "w") as fh: + json.dump(postal_codes_data, fh) + + # Build city name to postal codes and other infos file + cities_data = {} + for item in raw_laposte_data: + try: + cities_data[item["fields"]["nom_de_la_commune"].title()] = { + "gps": item["fields"]["coordonnees_gps"], + "postal_code": item["fields"]["code_postal"] + } + except KeyError: + LOGGER.info("Missing data for city %s, skipping it.", + item["fields"]["nom_de_la_commune"]) + with open(os.path.join(output_dir, "cities.json"), "w") as fh: + json.dump(cities_data, fh) + + return True + + +def preprocess_data(config, force=False): + """ + Ensures that all the necessary data files have been built from the raw + opendata files. + + :params config: A config dictionary. + :params force: Whether to force rebuild or not. + """ + LOGGER.debug("Data directory is %s.", config["data_directory"]) + opendata_directory = os.path.join(config["data_directory"], "opendata") + try: + LOGGER.info("Ensuring the data directory exists.") + os.makedirs(opendata_directory) + LOGGER.debug("Created opendata directory at %s.", opendata_directory) + except OSError: + LOGGER.debug("Opendata directory already existed, doing nothing.") + + is_built_ratp = os.path.isfile( + os.path.join(opendata_directory, "ratp.json") + ) + if not is_built_ratp or force: + LOGGER.info("Building from RATP data.") + if not _preprocess_ratp(opendata_directory): + raise flatisfy.exceptions.DataBuildError("Error with RATP data.") + + is_built_laposte = ( + os.path.isfile(os.path.join(opendata_directory, "cities.json")) and + os.path.isfile(os.path.join(opendata_directory, "postal_codes.json")) + ) + if not is_built_laposte or force: + LOGGER.info("Building from LaPoste data.") + if not _preprocess_laposte(opendata_directory): + raise flatisfy.exceptions.DataBuildError( + "Error with LaPoste data." + ) + + +def load_data(data_type, config): + """ + Load a given built data file. + + :param data_type: A valid data identifier. + :param config: A config dictionary. + :return: The loaded data. ``None`` if the query is incorrect. + """ + if data_type not in ["postal_codes", "cities", "ratp"]: + LOGGER.error("Invalid request. No %s data file.", data_type) + return None + + opendata_directory = os.path.join(config["data_directory"], "opendata") + datafile_path = os.path.join(opendata_directory, "%s.json" % data_type) + data = {} + try: + with open(datafile_path, "r") as fh: + data = json.load(fh) + except IOError: + LOGGER.error("No such data file: %s.", datafile_path) + return None + except ValueError: + LOGGER.error("Invalid JSON data file: %s.", datafile_path) + return None + + if len(data) == 0: + LOGGER.warning("Loading empty data for %s.", data_type) + + return data diff --git a/flatisfy/data_files/laposte.json b/flatisfy/data_files/laposte.json new file mode 100644 index 0000000..843116c --- /dev/null +++ b/flatisfy/data_files/laposte.json @@ -0,0 +1 @@ +[{"datasetid": "laposte_hexasmal", "recordid": "4499b8bdaaf05e98cdcce1f56cdf109ac186343c", "fields": {"nom_de_la_commune": "MAROLLES SOUS LIGNIERES", "libell_d_acheminement": "MAROLLES SOUS LIGNIERES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10227"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d1e0bb46554992f39915a9d680dbcbd6445899", "fields": {"nom_de_la_commune": "LES GRANDES CHAPELLES", "libell_d_acheminement": "LES GRANDES CHAPELLES", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10166"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d16a1afc1db6e8add407ffdd9af60100a00c09", "fields": {"nom_de_la_commune": "MERREY SUR ARCE", "libell_d_acheminement": "MERREY SUR ARCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10232"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17db4712b98c34d823a46cd7d2d7a56160501192", "fields": {"nom_de_la_commune": "JUVANCOURT", "libell_d_acheminement": "JUVANCOURT", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10182"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b728af56d134fc596229380d40f7dceb74e233", "fields": {"nom_de_la_commune": "LAUBRESSEL", "libell_d_acheminement": "LAUBRESSEL", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10190"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232cf438279e89392abd430f64fdc0797334c7f0", "fields": {"nom_de_la_commune": "ISLE AUMONT", "libell_d_acheminement": "ISLE AUMONT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10173"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331a057958dc06091aca52b7ee389600bbc32e6e", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10196"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e7fe7ab1c04bc3380b5b32f0c91ebdc6bce2af", "fields": {"nom_de_la_commune": "MERGEY", "libell_d_acheminement": "MERGEY", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10230"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b810fc1304cf83e80daa14dfa56949f1cdef97b", "fields": {"nom_de_la_commune": "MACHY", "libell_d_acheminement": "MACHY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10212"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe3c326eee658042c1ac733a071d49d6d8e5323", "fields": {"nom_de_la_commune": "CRUSCADES", "libell_d_acheminement": "CRUSCADES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11111"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae0c7d27370fd4962c5e2ad1aac50110e35808f", "fields": {"nom_de_la_commune": "CUBIERES SUR CINOBLE", "libell_d_acheminement": "CUBIERES SUR CINOBLE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11112"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e81b03d64b8a8ab375443c25d24df4fbf5b0203", "fields": {"nom_de_la_commune": "CUCUGNAN", "libell_d_acheminement": "CUCUGNAN", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11113"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4645435e79cdf6a346b8153695be2dc70e2901db", "fields": {"nom_de_la_commune": "DONAZAC", "libell_d_acheminement": "DONAZAC", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11121"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63cc6685cdf754929d8ffaac040fc17afe03cef0", "fields": {"nom_de_la_commune": "FAJAC EN VAL", "libell_d_acheminement": "FAJAC EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11133"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0daf5aac73cc20b9c7f66d4ae71f58cee3d586", "fields": {"nom_de_la_commune": "FESTES ET ST ANDRE", "libell_d_acheminement": "FESTES ET ST ANDRE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11142"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cebeb0b0bc312ee2d2ac25704364f71c968a6fe", "fields": {"nom_de_la_commune": "FONTANES DE SAULT", "libell_d_acheminement": "FONTANES DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11147"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502e4312b3f87da6fa520dc2db46ab2048557adf", "fields": {"nom_de_la_commune": "FONTCOUVERTE", "libell_d_acheminement": "FONTCOUVERTE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11148"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9fa119137e18f3f66d1fb1d5624052d2b74bc0c", "fields": {"nom_de_la_commune": "FONTJONCOUSE", "libell_d_acheminement": "FONTJONCOUSE", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11152"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eaf74902265e69955c7cd781458b5048fd8ef7c", "fields": {"nom_de_la_commune": "GALINAGUES", "libell_d_acheminement": "GALINAGUES", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11160"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2186d90188014d178b1c89f7ff51226cdf852c", "fields": {"nom_de_la_commune": "GENERVILLE", "libell_d_acheminement": "GENERVILLE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11162"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ff9b548e127272a1757063f8dbed324dcbd70b", "fields": {"nom_de_la_commune": "GINESTAS", "libell_d_acheminement": "GINESTAS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11164"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068ce05ed1fb45f02e15cf4f4c4cbaf95542c9a8", "fields": {"nom_de_la_commune": "GREFFEIL", "libell_d_acheminement": "GREFFEIL", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11169"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c79848a79110125b9ef8764d64f6a4ec1ae63b", "fields": {"nom_de_la_commune": "GRUISSAN", "libell_d_acheminement": "GRUISSAN", "code_postal": "11430", "coordonnees_gps": [43.1033671547, 3.08203415117], "code_commune_insee": "11170"}, "geometry": {"type": "Point", "coordinates": [3.08203415117, 43.1033671547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c17329e709bee3c5e9f8e44be14d6bb9caedc3f", "fields": {"nom_de_la_commune": "HOMPS", "libell_d_acheminement": "HOMPS", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11172"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93a729e11ed0b93a098faaa46928e1e36d825f8", "fields": {"nom_de_la_commune": "ISSEL", "libell_d_acheminement": "ISSEL", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11175"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af373e17db3079884b47b620013edbc1239abb5b", "fields": {"nom_de_la_commune": "JOUCOU", "libell_d_acheminement": "JOUCOU", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11177"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d24af598cc1693d3a849877ddee622add817035", "fields": {"nom_de_la_commune": "LABASTIDE ESPARBAIRENQUE", "libell_d_acheminement": "LABASTIDE ESPARBAIRENQUE", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11180"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb885052ebdc142367da630db3f4f3e4090f2ea", "fields": {"nom_de_la_commune": "LACOMBE", "libell_d_acheminement": "LACOMBE", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11182"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c86c38749641132105eb92d5fbcef0ff66801ab", "fields": {"nom_de_la_commune": "LAGRASSE", "libell_d_acheminement": "LAGRASSE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11185"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9f3cd604b86cc0833b2eeaee1b483991594ba7", "fields": {"nom_de_la_commune": "LAPRADE", "libell_d_acheminement": "LAPRADE", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11189"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df662cbeea91241499090e4fe4e6cb6b869affe", "fields": {"nom_de_la_commune": "LA REDORTE", "libell_d_acheminement": "LA REDORTE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11190"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a75c49203782514536f35d7f97413a7a975ee7", "fields": {"nom_de_la_commune": "LASBORDES", "libell_d_acheminement": "LASBORDES", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11192"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3f71ddac5fc6b8ed3d6242156d3264c4cc185f7", "fields": {"nom_de_la_commune": "LAURAC", "libell_d_acheminement": "LAURAC", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11196"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094c95ae8f4229ce25076a9d9db605749360a8dc", "fields": {"nom_de_la_commune": "LEUCATE", "libell_d_acheminement": "LEUCATE", "code_postal": "11370", "coordonnees_gps": [42.8990754596, 3.02622378383], "code_commune_insee": "11202"}, "geometry": {"type": "Point", "coordinates": [3.02622378383, 42.8990754596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6832d9f5f015a7759bb60d51e18ac018f7e7073", "fields": {"code_postal": "11370", "code_commune_insee": "11202", "libell_d_acheminement": "LEUCATE", "ligne_5": "PORT LEUCATE", "nom_de_la_commune": "LEUCATE", "coordonnees_gps": [42.8990754596, 3.02622378383]}, "geometry": {"type": "Point", "coordinates": [3.02622378383, 42.8990754596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb85de7da232e0658244f7dd8fc04485d4e1fb4", "fields": {"nom_de_la_commune": "MAILHAC", "libell_d_acheminement": "MAILHAC", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11212"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd508ba40d99fc64da375016e5687b3cb0141b92", "fields": {"nom_de_la_commune": "MAYREVILLE", "libell_d_acheminement": "MAYREVILLE", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11226"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1114c4273aacbcfed1b71d190a105595e7273f01", "fields": {"nom_de_la_commune": "MERIAL", "libell_d_acheminement": "MERIAL", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11230"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78333f9a5cc3a2dd68c2e7ecbccecab7943ee4e9", "fields": {"nom_de_la_commune": "MONTBRUN DES CORBIERES", "libell_d_acheminement": "MONTBRUN DES CORBIERES", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11241"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb0dee91e46e80f28ce2e129082e2706ed55809", "fields": {"nom_de_la_commune": "MONTCLAR", "libell_d_acheminement": "MONTCLAR", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11242"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e6fe2bcbb9dd4dedecd7ed64ad69402a37086a", "fields": {"nom_de_la_commune": "MONTGRADAIL", "libell_d_acheminement": "MONTGRADAIL", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11246"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0cff377b3e0b0486da8f4c7565588e532c9963", "fields": {"nom_de_la_commune": "MONTHAUT", "libell_d_acheminement": "MONTHAUT", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11247"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643b14723e7638c2d50d6771c07810634343cca1", "fields": {"nom_de_la_commune": "MONTLAUR", "libell_d_acheminement": "MONTLAUR", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11251"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6369fc44c54a92f06deefd85e8348e7efaa4ced9", "fields": {"nom_de_la_commune": "MONTREDON DES CORBIERES", "libell_d_acheminement": "MONTREDON DES CORBIERES", "code_postal": "11100", "coordonnees_gps": [43.1614428329, 3.00768633064], "code_commune_insee": "11255"}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea23f48c0fc7fc0de5777d1ac3055d341c3128a", "fields": {"nom_de_la_commune": "MOUTHOUMET", "libell_d_acheminement": "MOUTHOUMET", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11260"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e482b01043039fdd8802568ac3e2bf2f9f93fb", "fields": {"nom_de_la_commune": "NEVIAN", "libell_d_acheminement": "NEVIAN", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11264"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4738a1c1719fc15755a21d6e145a9f64476f3f88", "fields": {"nom_de_la_commune": "PADERN", "libell_d_acheminement": "PADERN", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11270"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3183e7623d37b89fb1b4d37d2e87c9872a3e48e", "fields": {"nom_de_la_commune": "PENNAUTIER", "libell_d_acheminement": "PENNAUTIER", "code_postal": "11610", "coordonnees_gps": [43.2600787186, 2.30202617457], "code_commune_insee": "11279"}, "geometry": {"type": "Point", "coordinates": [2.30202617457, 43.2600787186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24aabd2030591127d2e531c35e7188081a4aaec", "fields": {"nom_de_la_commune": "PEYREFITTE SUR L HERS", "libell_d_acheminement": "PEYREFITTE SUR L HERS", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11283"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2208a3772cd9a24fd9ec9afb1f3923f8623035d", "fields": {"nom_de_la_commune": "PEYRIAC DE MER", "libell_d_acheminement": "PEYRIAC DE MER", "code_postal": "11440", "coordonnees_gps": [43.0899544333, 2.94880546616], "code_commune_insee": "11285"}, "geometry": {"type": "Point", "coordinates": [2.94880546616, 43.0899544333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dbb4e8085d296fed444244b0e5517d6ca5f241", "fields": {"nom_de_la_commune": "PEZENS", "libell_d_acheminement": "PEZENS", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11288"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e61d131ebe1a320e885d7a05c87eb94e490680e", "fields": {"nom_de_la_commune": "POMAS", "libell_d_acheminement": "POMAS", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11293"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce34e1ab890f35a39171718c430276ad6421d42a", "fields": {"nom_de_la_commune": "PRADELLES CABARDES", "libell_d_acheminement": "PRADELLES CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11297"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d8f12492a04722a06d27052714b4ed7a66719c", "fields": {"nom_de_la_commune": "PRADELLES EN VAL", "libell_d_acheminement": "PRADELLES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11298"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ec5d3335850673d3948e81ed7bc07378973a8", "fields": {"nom_de_la_commune": "PREIXAN", "libell_d_acheminement": "PREIXAN", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11299"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156aefcacd3571fb3620847911a6c62d9c18fb7f", "fields": {"code_postal": "11140", "code_commune_insee": "11302", "libell_d_acheminement": "PUILAURENS", "ligne_5": "LAPRADELLE", "nom_de_la_commune": "PUILAURENS", "coordonnees_gps": [42.7657925357, 2.16672255446]}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201823eeeeca11f84db5b029c2535aac94dc80e9", "fields": {"code_postal": "11500", "code_commune_insee": "11304", "libell_d_acheminement": "QUILLAN", "ligne_5": "BRENAC", "nom_de_la_commune": "QUILLAN", "coordonnees_gps": [42.8642681542, 2.2143101342]}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca74d95a62f08b9abe021e08acfd0118ad2615a2", "fields": {"nom_de_la_commune": "RIEUX EN VAL", "libell_d_acheminement": "RIEUX EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11314"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4585e329567a697c29c574df0a93b33fbfc43139", "fields": {"nom_de_la_commune": "ROQUECOURBE MINERVOIS", "libell_d_acheminement": "ROQUECOURBE MINERVOIS", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11318"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370221bef036f9fb92f558bf535787fa94a2e78b", "fields": {"nom_de_la_commune": "ROQUEFEUIL", "libell_d_acheminement": "ROQUEFEUIL", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11320"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9ef2309aa20c11e25fd7d98b80c2b31a438bf6", "fields": {"nom_de_la_commune": "ROQUEFORT DE SAULT", "libell_d_acheminement": "ROQUEFORT DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11321"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef642befc7d059fb9034a692d5e4e69a24e4245a", "fields": {"nom_de_la_commune": "STE COLOMBE SUR GUETTE", "libell_d_acheminement": "STE COLOMBE SUR GUETTE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11335"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30155784c70e9e6b3616796d3148a5e248615e3", "fields": {"nom_de_la_commune": "ST COUAT DU RAZES", "libell_d_acheminement": "ST COUAT DU RAZES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11338"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3614e360118d31a9fd7f6061d980ea37d3b9f7bb", "fields": {"nom_de_la_commune": "ST LAURENT DE LA CABRERISSE", "libell_d_acheminement": "ST LAURENT DE LA CABRERISSE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11351"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0c7d41bb71e20a28335f8c1b12000e8bd18f97", "fields": {"nom_de_la_commune": "ST PAPOUL", "libell_d_acheminement": "ST PAPOUL", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11361"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e976fc12549f2642eb276549437143bf10d7f0c0", "fields": {"nom_de_la_commune": "SAISSAC", "libell_d_acheminement": "SAISSAC", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11367"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d272e7fb2bc48793ca82267928af34c68a404b60", "fields": {"nom_de_la_commune": "SOUPEX", "libell_d_acheminement": "SOUPEX", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11385"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2788aea2680c867c90bbbf0fb3fb5e25d3c9d93", "fields": {"nom_de_la_commune": "TREBES", "libell_d_acheminement": "TREBES", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11397"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409ee0e533ec3f12087547d91d1c9896f98d7865", "fields": {"nom_de_la_commune": "TREZIERS", "libell_d_acheminement": "TREZIERS", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11400"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f1beb8401f32fa26477d6e5aa2cf0eb87b1459", "fields": {"nom_de_la_commune": "VILLARDEBELLE", "libell_d_acheminement": "VILLARDEBELLE", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11412"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb312bc81a921a69bcce3755ad92fd330a2587a", "fields": {"nom_de_la_commune": "VILLARZEL DU RAZES", "libell_d_acheminement": "VILLARZEL DU RAZES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11417"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d90d48a23124f5e911a3b4def8bb94d780cf064", "fields": {"nom_de_la_commune": "VILLEMOUSTAUSSOU", "libell_d_acheminement": "VILLEMOUSTAUSSOU", "code_postal": "11620", "coordonnees_gps": [43.2496570838, 2.3662986021], "code_commune_insee": "11429"}, "geometry": {"type": "Point", "coordinates": [2.3662986021, 43.2496570838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5ed6db167cd544aedfe24d5e1f9299d5e52d29", "fields": {"nom_de_la_commune": "VILLENEUVE LES CORBIERES", "libell_d_acheminement": "VILLENEUVE LES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11431"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3fdc8b36dcd438429859d06d305ea8db5e8e20", "fields": {"nom_de_la_commune": "VILLENEUVE LES MONTREAL", "libell_d_acheminement": "VILLENEUVE LES MONTREAL", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11432"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa3c8be911e31fa4df5abef9362229e716fc0db", "fields": {"nom_de_la_commune": "VILLEPINTE", "libell_d_acheminement": "VILLEPINTE", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11434"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c2c258d92472b80e04c27deaf0de47e334f3bc", "fields": {"nom_de_la_commune": "AGUESSAC", "libell_d_acheminement": "AGUESSAC", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12002"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4988602566e1077375a46257e5dbb177c5b5d6e6", "fields": {"nom_de_la_commune": "BALAGUIER D OLT", "libell_d_acheminement": "BALAGUIER D OLT", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12018"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e615bbcff3a68b7c1791c4e1de6fbfbc0d33d75", "fields": {"nom_de_la_commune": "LA BASTIDE SOLAGES", "libell_d_acheminement": "LA BASTIDE SOLAGES", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12023"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38e42a016fce159bf62c9e05bfd6922a454f38f", "fields": {"nom_de_la_commune": "BELMONT SUR RANCE", "libell_d_acheminement": "BELMONT SUR RANCE", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12025"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb4510d42dd4541912d7e1e3374d551917b096e", "fields": {"nom_de_la_commune": "BOR ET BAR", "libell_d_acheminement": "BOR ET BAR", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12029"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c208fed74f8e7e5f53280c3d1b7e8b24a7d24f", "fields": {"nom_de_la_commune": "BROMMAT", "libell_d_acheminement": "BROMMAT", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12036"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a074dba7f22b68e417a3c810492c7f02f03d7a71", "fields": {"nom_de_la_commune": "BROQUIES", "libell_d_acheminement": "BROQUIES", "code_postal": "12480", "coordonnees_gps": [43.9974313835, 2.69341373502], "code_commune_insee": "12037"}, "geometry": {"type": "Point", "coordinates": [2.69341373502, 43.9974313835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d747ce10aee015304b61032720bf2f16f36c12a4", "fields": {"code_postal": "12450", "code_commune_insee": "12043", "libell_d_acheminement": "CALMONT", "ligne_5": "CEIGNAC", "nom_de_la_commune": "CALMONT", "coordonnees_gps": [44.2840952345, 2.5725628832]}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64656d70c4c52654069799132990c3b9a95056d", "fields": {"nom_de_la_commune": "LA CAPELLE BALAGUIER", "libell_d_acheminement": "LA CAPELLE BALAGUIER", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12053"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477a3fd7f7b9c3b020bdf62b83ec99d3edac2c87", "fields": {"nom_de_la_commune": "LE CLAPIER", "libell_d_acheminement": "LE CLAPIER", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12067"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601875963ef82d7859655e07a4bfcbe2528eaafd", "fields": {"nom_de_la_commune": "COMPS LA GRAND VILLE", "libell_d_acheminement": "COMPS LA GRAND VILLE", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12073"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459f42946dcbe3f063e3ca02b4f3108dbedd1aaa", "fields": {"code_postal": "12320", "code_commune_insee": "12076", "libell_d_acheminement": "CONQUES EN ROUERGUE", "ligne_5": "NOAILHAC", "nom_de_la_commune": "CONQUES EN ROUERGUE", "coordonnees_gps": [44.5837975359, 2.46440638377]}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a4d40430044c5b87d51c80190b5b0a693e9b4c", "fields": {"code_postal": "12320", "code_commune_insee": "12076", "libell_d_acheminement": "CONQUES EN ROUERGUE", "ligne_5": "ST CYPRIEN SUR DOURDOU", "nom_de_la_commune": "CONQUES EN ROUERGUE", "coordonnees_gps": [44.5837975359, 2.46440638377]}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1163746d28c1be5273307a2742fbc7545184118", "fields": {"nom_de_la_commune": "CREISSELS", "libell_d_acheminement": "CREISSELS", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12084"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf4ab4624915436a0fe93cadeaef65d8c62c0018", "fields": {"nom_de_la_commune": "ENTRAYGUES SUR TRUYERE", "libell_d_acheminement": "ENTRAYGUES SUR TRUYERE", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12094"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eddc282e8e9698a2246ca25eeb65b1332ce020f", "fields": {"nom_de_la_commune": "FAYET", "libell_d_acheminement": "FAYET", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12099"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97e3bb1c2193318c0716b1cf8988071bbe4e272", "fields": {"nom_de_la_commune": "FIRMI", "libell_d_acheminement": "FIRMI", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12100"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56378fdf3d7ee24bfc31438d79c2e4f3b2ea4eaf", "fields": {"nom_de_la_commune": "GALGAN", "libell_d_acheminement": "GALGAN", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12108"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032229a2b68aa93ee5c30c73277a8a50a43d635b", "fields": {"nom_de_la_commune": "GISSAC", "libell_d_acheminement": "GISSAC", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12109"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38988f819f3230cd5b94802d5efd5edc9fc5fa8", "fields": {"nom_de_la_commune": "GOLINHAC", "libell_d_acheminement": "GOLINHAC", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12110"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1036e9a10248b2f5084b2e863c385f2ed3ed8e2", "fields": {"nom_de_la_commune": "LEDERGUES", "libell_d_acheminement": "LEDERGUES", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12127"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6140dc0fd334648b24364c0689d929f5908177", "fields": {"nom_de_la_commune": "LESTRADE ET THOUELS", "libell_d_acheminement": "LESTRADE ET THOUELS", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12129"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252b9a44571bd2b88b22d003d33e5c84a88a3c51", "fields": {"nom_de_la_commune": "MELJAC", "libell_d_acheminement": "MELJAC", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12144"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044abea709009317d00363f2f8c65584a29d6fe3", "fields": {"nom_de_la_commune": "MILLAU", "libell_d_acheminement": "MILLAU", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12145"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8a53eee268af7e8b67c194685b7a3aef5fa098", "fields": {"code_postal": "12360", "code_commune_insee": "12147", "libell_d_acheminement": "MONTAGNOL", "ligne_5": "CENOMES", "nom_de_la_commune": "MONTAGNOL", "coordonnees_gps": [43.7904240706, 2.95795996186]}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1ab2f764912295fc87e5bf457bdea86b2b494a", "fields": {"nom_de_la_commune": "BRUGAIROLLES", "libell_d_acheminement": "BRUGAIROLLES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11053"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b136585e761415fd59a5217745465ce9f184cc9", "fields": {"nom_de_la_commune": "CABRESPINE", "libell_d_acheminement": "CABRESPINE", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11056"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9642165b43d5647bd255ed2aaae866ece944ad", "fields": {"nom_de_la_commune": "CASSAIGNES", "libell_d_acheminement": "CASSAIGNES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11073"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9089cb582919801587bd913e6abf525fb441f482", "fields": {"nom_de_la_commune": "BOURIGEOLE", "libell_d_acheminement": "BOURIGEOLE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11046"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647e2910385be473028a8e422b974b9a5a98323e", "fields": {"nom_de_la_commune": "CAILHAVEL", "libell_d_acheminement": "CAILHAVEL", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11059"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791649335c83f96b498a49ece1e94a912bf0e3cf", "fields": {"nom_de_la_commune": "BOUTENAC", "libell_d_acheminement": "BOUTENAC", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11048"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ae14d51e1b6017248cf194841863aecb2ed38b", "fields": {"nom_de_la_commune": "BOUISSE", "libell_d_acheminement": "BOUISSE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11044"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740a6f18b34eff886a659b46f9ff834962414852", "fields": {"nom_de_la_commune": "CARLIPA", "libell_d_acheminement": "CARLIPA", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11070"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ecbbc890015fecbb3331ccdb5bb65552d037ac", "fields": {"nom_de_la_commune": "CAILLA", "libell_d_acheminement": "CAILLA", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11060"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e33a5f07ff609db55701c1970c3a642f1f4c5a", "fields": {"nom_de_la_commune": "L ABERGEMENT CLEMENCIAT", "libell_d_acheminement": "L ABERGEMENT CLEMENCIAT", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01001"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8739d2f399ecf584a02a0df914d87d3e8d2cc874", "fields": {"nom_de_la_commune": "ARS SUR FORMANS", "libell_d_acheminement": "ARS SUR FORMANS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01021"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8eb826a3c36a4a5d87306387420c3d65d42cbaf", "fields": {"nom_de_la_commune": "AMBLEON", "libell_d_acheminement": "AMBLEON", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01006"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d096caa71e1e9dfb2cdeb6b14ca107412b664d91", "fields": {"nom_de_la_commune": "BRANCOURT EN LAONNOIS", "libell_d_acheminement": "BRANCOURT EN LAONNOIS", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02111"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f015a93ce3266aa4a0504df48761006d2aefbc91", "fields": {"nom_de_la_commune": "BUCY LES PIERREPONT", "libell_d_acheminement": "BUCY LES PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02133"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c9992a309f9ea8eefea280fbb8993469932a56", "fields": {"nom_de_la_commune": "CHATILLON LES SONS", "libell_d_acheminement": "CHATILLON LES SONS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02169"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15641f625f9949347b40f034eefc77a80c0ae211", "fields": {"nom_de_la_commune": "BRUYERES SUR FERE", "libell_d_acheminement": "BRUYERES SUR FERE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02127"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa61e18cd1a7a8c47f7476e51743a3d2ed181a0", "fields": {"nom_de_la_commune": "LA CAPELLE", "libell_d_acheminement": "LA CAPELLE", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02141"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b6df89b1a283bf2b13ff16870c0032eaf1c651", "fields": {"nom_de_la_commune": "CHAVIGNY", "libell_d_acheminement": "CHAVIGNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02175"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc801e9c3198e5fd536a377d5694d6070e229ec", "fields": {"nom_de_la_commune": "CERSEUIL", "libell_d_acheminement": "CERSEUIL", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02152"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7dab246acce367ebc036574b838a58923632c3", "fields": {"nom_de_la_commune": "BRENY", "libell_d_acheminement": "BRENY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02121"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3295152fc1172a77ebc7326b676372ad9a66fb87", "fields": {"nom_de_la_commune": "BRUYS", "libell_d_acheminement": "BRUYS", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02129"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "104807a40ec83cb02164565102b6277324752b0f", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "LE GRAND ABERGEMENT", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645e8032462bdfaed5900bdd6a0f01dc116566a9", "fields": {"code_postal": "01090", "code_commune_insee": "01165", "libell_d_acheminement": "FRANCHELEINS", "ligne_5": "CESSEINS", "nom_de_la_commune": "FRANCHELEINS", "coordonnees_gps": [46.0869886552, 4.79611073763]}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddde7a9bb4bd6e0f32b109c01357be9f44fdbb24", "fields": {"nom_de_la_commune": "DOMPIERRE SUR CHALARONNE", "libell_d_acheminement": "DOMPIERRE SUR CHALARONNE", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01146"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7382f5b406974ae2c10a3097a2a14f90a503baf", "fields": {"nom_de_la_commune": "DOMPIERRE SUR VEYLE", "libell_d_acheminement": "DOMPIERRE SUR VEYLE", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01145"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "353c57bd61c4caf812953b04d7bd371e20130f4a", "fields": {"nom_de_la_commune": "GENOUILLEUX", "libell_d_acheminement": "GENOUILLEUX", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01169"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf34e4f3018a9177751d47d1f5703c8bb6d7ca3", "fields": {"nom_de_la_commune": "DRUILLAT", "libell_d_acheminement": "DRUILLAT", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01151"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca15b6ceb7a3ef8b6e723f11a9d8fd0f2ae289c2", "fields": {"nom_de_la_commune": "GORREVOD", "libell_d_acheminement": "GORREVOD", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01175"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d6bbdc36b8710f9ac2ef9f6ac680cba87c4484", "fields": {"nom_de_la_commune": "FAREINS", "libell_d_acheminement": "FAREINS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01157"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7002ba28cc9d4c9c390120047be74466403665", "fields": {"nom_de_la_commune": "FLAXIEU", "libell_d_acheminement": "FLAXIEU", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01162"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20dfdeedd936ed0697b8398708d8d43cd9c06e98", "fields": {"nom_de_la_commune": "GEX", "libell_d_acheminement": "GEX", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01173"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7a99d89cbb95ccc10d81b7d4380de26556e19b", "fields": {"code_postal": "01580", "code_commune_insee": "01410", "libell_d_acheminement": "SONTHONNAX LA MONTAGNE", "ligne_5": "NAPT", "nom_de_la_commune": "SONTHONNAX LA MONTAGNE", "coordonnees_gps": [46.2402104429, 5.54908625912]}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78aa799a0310a1668bfb623f437c9d7fbb94bcf2", "fields": {"nom_de_la_commune": "SONTHONNAX LA MONTAGNE", "libell_d_acheminement": "SONTHONNAX LA MONTAGNE", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01410"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "682a8a1f42141ef6547255ff7ca22eb6fd244053", "fields": {"nom_de_la_commune": "SERRIERES DE BRIORD", "libell_d_acheminement": "SERRIERES DE BRIORD", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01403"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf21f76d9d1b3a2c4b6d10245ae241bc82eea971", "fields": {"nom_de_la_commune": "ST RAMBERT EN BUGEY", "libell_d_acheminement": "ST RAMBERT EN BUGEY", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01384"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea08cb420749e40d397e908680f3502ec07486f", "fields": {"nom_de_la_commune": "ST PAUL DE VARAX", "libell_d_acheminement": "ST PAUL DE VARAX", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01383"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdd09503ae1c131085d194517ca9592b485ddc8", "fields": {"nom_de_la_commune": "THEZILLIEU", "libell_d_acheminement": "THEZILLIEU", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01417"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c60b2ead754bf27ce59a48bc7634cb8737c0c1", "fields": {"nom_de_la_commune": "SERVIGNAT", "libell_d_acheminement": "SERVIGNAT", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01406"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461f2218d1c430df724a1b0975eebfeae5ee2e8f", "fields": {"nom_de_la_commune": "THOISSEY", "libell_d_acheminement": "THOISSEY", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01420"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af38002440d8966a325fd16d61be4d58e975784d", "fields": {"nom_de_la_commune": "SOUCLIN", "libell_d_acheminement": "SOUCLIN", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01411"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7cf06bacc858379bffa405f5a3ddca9246e8ab", "fields": {"nom_de_la_commune": "SERGY", "libell_d_acheminement": "SERGY", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01401"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9ddcaaec5e77b12dd418887e9974a6bf92a45e", "fields": {"code_postal": "01260", "code_commune_insee": "01079", "libell_d_acheminement": "CHAMPAGNE EN VALROMEY", "ligne_5": "PASSIN", "nom_de_la_commune": "CHAMPAGNE EN VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486943e01c8f16d6667bd3e30b2e29132a9ad8c8", "fields": {"nom_de_la_commune": "CHARNOZ SUR AIN", "libell_d_acheminement": "CHARNOZ SUR AIN", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01088"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a09bf4ca8e0b4414d8ceb1c765c84b1e7bce1f8", "fields": {"nom_de_la_commune": "CHAMPFROMIER", "libell_d_acheminement": "CHAMPFROMIER", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01081"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c31de2ac1a4b5e69d50811bc4830d69d7a8d148", "fields": {"nom_de_la_commune": "CHAZEY BONS", "libell_d_acheminement": "CHAZEY BONS", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01098"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7bd80c02da3c515f1e179f0c9840c1821f9c42", "fields": {"nom_de_la_commune": "CONFRANCON", "libell_d_acheminement": "CONFRANCON", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01115"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c7aa4f5f17804d77095d620926f0a23574104a", "fields": {"nom_de_la_commune": "COLLONGES", "libell_d_acheminement": "COLLONGES", "code_postal": "01550", "coordonnees_gps": [46.1521009626, 5.90976446888], "code_commune_insee": "01109"}, "geometry": {"type": "Point", "coordinates": [5.90976446888, 46.1521009626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f32591e40cc875af59e51bd2a4bb4ed9c4c21c", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01144"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd9dff6af31149b48048c1e04dc4c1b7bacfe32", "fields": {"nom_de_la_commune": "CHALEINS", "libell_d_acheminement": "CHALEINS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01075"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be079ef9545833c16faf3eb7eb3279bc099f22e6", "fields": {"nom_de_la_commune": "COLOMIEU", "libell_d_acheminement": "COLOMIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01110"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3421da623212508103591c934ca59f5304d63c1", "fields": {"nom_de_la_commune": "CROTTET", "libell_d_acheminement": "CROTTET", "code_postal": "01750", "coordonnees_gps": [46.2973437135, 4.87546330177], "code_commune_insee": "01134"}, "geometry": {"type": "Point", "coordinates": [4.87546330177, 46.2973437135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4606ec8af36e4cd4799ed077fb59a6e7c517c7d1", "fields": {"code_postal": "01680", "code_commune_insee": "01338", "libell_d_acheminement": "GROSLEE ST BENOIT", "ligne_5": "GROSLEE", "nom_de_la_commune": "GROSLEE ST BENOIT", "coordonnees_gps": [45.752622921, 5.55446422211]}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212cc8229cda99d93d80d3242449008d542ec365", "fields": {"nom_de_la_commune": "PARVES ET NATTAGES", "libell_d_acheminement": "PARVES ET NATTAGES", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01286"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c272ef824da4c309feba3289fefb8526ecbccfb2", "fields": {"nom_de_la_commune": "ST ANDRE DE BAGE", "libell_d_acheminement": "ST ANDRE DE BAGE", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01332"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad5ff22730ab10b63c2c712e4a8da9ee7ec46e9", "fields": {"nom_de_la_commune": "ST BENIGNE", "libell_d_acheminement": "ST BENIGNE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01337"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d55e29fcdafc8ef236958f5dfc6914491987aa3", "fields": {"nom_de_la_commune": "REYSSOUZE", "libell_d_acheminement": "REYSSOUZE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01323"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69ce4e7e6f1c952c351f42518435b493e2b3dcd", "fields": {"nom_de_la_commune": "RELEVANT", "libell_d_acheminement": "RELEVANT", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01319"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54d7eed1145a8e4a5cde91970c9845def676f859", "fields": {"nom_de_la_commune": "ST ALBAN", "libell_d_acheminement": "ST ALBAN", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01331"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0889a3cac70c4e9856e81ae927c251119b3e75c3", "fields": {"nom_de_la_commune": "PONCIN", "libell_d_acheminement": "PONCIN", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01303"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde25577994098b6e0798e021288464188ec7741", "fields": {"nom_de_la_commune": "POUGNY", "libell_d_acheminement": "POUGNY", "code_postal": "01550", "coordonnees_gps": [46.1521009626, 5.90976446888], "code_commune_insee": "01308"}, "geometry": {"type": "Point", "coordinates": [5.90976446888, 46.1521009626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb486152d0e0b1266fb87cfafa9d820f41dcd9c8", "fields": {"nom_de_la_commune": "PERON", "libell_d_acheminement": "PERON", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01288"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d007560d11898de6aa40376803e2adc156bf11f", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "LE PETIT ABERGEMENT", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e607cd3b5a4762842983de8cb212e8340f9b070", "fields": {"code_postal": "01580", "code_commune_insee": "01240", "libell_d_acheminement": "MATAFELON GRANGES", "ligne_5": "GRANGES", "nom_de_la_commune": "MATAFELON GRANGES", "coordonnees_gps": [46.2402104429, 5.54908625912]}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87f886d52cd2596201d1304af5cda60aa0a330f", "fields": {"nom_de_la_commune": "MATAFELON GRANGES", "libell_d_acheminement": "MATAFELON GRANGES", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01240"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a0791bcc9f1137b5023a1e7504e5dbf96083cc", "fields": {"nom_de_la_commune": "MALAFRETAZ", "libell_d_acheminement": "MALAFRETAZ", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01229"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df510fe4ae7ccdc2f18f8d48d2796567c350f266", "fields": {"nom_de_la_commune": "JOURNANS", "libell_d_acheminement": "JOURNANS", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01197"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf00b2373f5ddc4425cf5d93214f79e2c806f50f", "fields": {"nom_de_la_commune": "JAYAT", "libell_d_acheminement": "JAYAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01196"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2dac7e6135721b23b7b338029ea398d44306527", "fields": {"nom_de_la_commune": "LURCY", "libell_d_acheminement": "LURCY", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01225"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65761055d08832eac03aff0df79c1853c030befd", "fields": {"nom_de_la_commune": "LHUIS", "libell_d_acheminement": "LHUIS", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01216"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f20a140ab1ff71229d2fbba1e322f0a7b56177", "fields": {"nom_de_la_commune": "LENT", "libell_d_acheminement": "LENT", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01211"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e796dc6b4c1abd5b6223be24b5023ab76ce654", "fields": {"nom_de_la_commune": "LEAZ", "libell_d_acheminement": "LEAZ", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01209"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3083b242c4bcd7e262a26d5cdb1ebd2323729fc", "fields": {"code_postal": "01250", "code_commune_insee": "01245", "libell_d_acheminement": "BOHAS MEYRIAT RIGNAT", "ligne_5": "BOHAS", "nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", "coordonnees_gps": [46.2066710432, 5.38605889851]}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f2b009826e7a84fb5d8401a93040a4b88ed367", "fields": {"nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", "libell_d_acheminement": "BOHAS MEYRIAT RIGNAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01245"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b257e2c17581cd157f5506cc98758ad9cc63d2", "fields": {"nom_de_la_commune": "MESSIMY SUR SAONE", "libell_d_acheminement": "MESSIMY SUR SAONE", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01243"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1373f587c02226cc0f27c173bf4cb06631e62510", "fields": {"nom_de_la_commune": "MOGNENEINS", "libell_d_acheminement": "MOGNENEINS", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01252"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c34cae17c168d34f9ef307ad4bfe8fd3b11b4fe", "fields": {"nom_de_la_commune": "ORDONNAZ", "libell_d_acheminement": "ORDONNAZ", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01280"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71443a64350410e68d2f506fea9a5f01622f184", "fields": {"nom_de_la_commune": "MIRIBEL", "libell_d_acheminement": "MIRIBEL", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01249"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86258fbb835c27ae595d653f372c9ce81e076d2c", "fields": {"nom_de_la_commune": "MIONNAY", "libell_d_acheminement": "MIONNAY", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01248"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8387e0fbdcfb4139e1131ad6c09a437f1a90273e", "fields": {"nom_de_la_commune": "MIJOUX", "libell_d_acheminement": "MIJOUX", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01247"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be9aae87ab46bd430a18307d3bf2dd9ef8bb163", "fields": {"nom_de_la_commune": "MIJOUX", "libell_d_acheminement": "MIJOUX", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01247"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f965c7da9493ad4fe653347bc4be4eaef8ac58f9", "fields": {"nom_de_la_commune": "OZAN", "libell_d_acheminement": "OZAN", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01284"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da880cbf415492ba735c4a024e08abf8f100548", "fields": {"nom_de_la_commune": "ANIZY LE CHATEAU", "libell_d_acheminement": "ANIZY LE CHATEAU", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02018"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3a4dca629f516a51fc461c0f50d8e56110d0d4", "fields": {"nom_de_la_commune": "ATHIES SOUS LAON", "libell_d_acheminement": "ATHIES SOUS LAON", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02028"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f87c6cc4397bf0a7ee4370414871b0df38ebc06", "fields": {"nom_de_la_commune": "ANCIENVILLE", "libell_d_acheminement": "ANCIENVILLE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02015"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333a2ebeb11843e821f6475cb1f2ecfa7039f2a5", "fields": {"nom_de_la_commune": "ANDELAIN", "libell_d_acheminement": "ANDELAIN", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02016"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7701a5852dae374a9dfae856698dbff2204ed7c", "fields": {"code_postal": "01800", "code_commune_insee": "01054", "libell_d_acheminement": "BOURG ST CHRISTOPHE", "ligne_5": "MARFOZ", "nom_de_la_commune": "BOURG ST CHRISTOPHE", "coordonnees_gps": [45.8984701804, 5.16340257624]}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05e002ff1454ba601b110fa807ed892a9f49eeb", "fields": {"code_postal": "01360", "code_commune_insee": "01032", "libell_d_acheminement": "BELIGNEUX", "ligne_5": "CAMP DE LA VALBONNE", "nom_de_la_commune": "BELIGNEUX", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186ddeb8955df52f1c29fc3e474f397ee5df94b5", "fields": {"nom_de_la_commune": "BOYEUX ST JEROME", "libell_d_acheminement": "BOYEUX ST JEROME", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01056"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd8356f0bde5e9039eb05747a2486d223d9ae87", "fields": {"nom_de_la_commune": "BOULIGNEUX", "libell_d_acheminement": "BOULIGNEUX", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01052"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9006b47281df6d2c561f690a20845063731ac1", "fields": {"nom_de_la_commune": "CEYZERIAT", "libell_d_acheminement": "CEYZERIAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01072"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f271a3729125889807b204d0e1391e83adfac0f0", "fields": {"nom_de_la_commune": "ATTIGNAT", "libell_d_acheminement": "ATTIGNAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01024"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34969a0b34a587297dca67ef8b2c6bd3dde9cbac", "fields": {"nom_de_la_commune": "BEAUPONT", "libell_d_acheminement": "BEAUPONT", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01029"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921fc8a8c0459a9ec70f92d83018f1c9ba915b3e", "fields": {"nom_de_la_commune": "BOLOZON", "libell_d_acheminement": "BOLOZON", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01051"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290784a0f7610fc9a519a3f11db1edfc53fd7010", "fields": {"nom_de_la_commune": "BIRIEUX", "libell_d_acheminement": "BIRIEUX", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01045"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547ab4fce136c95ab812871b3aa028180a15fe69", "fields": {"nom_de_la_commune": "BRENAZ", "libell_d_acheminement": "BRENAZ", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01059"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf1d3f415c8ba365dbf9df00e51bd8b31b10337", "fields": {"nom_de_la_commune": "ST GERMAIN LES PAROISSES", "libell_d_acheminement": "ST GERMAIN LES PAROISSES", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01358"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b92500e9a68b8148ea2aed0b39b5a3973989d1a", "fields": {"nom_de_la_commune": "ST JULIEN SUR REYSSOUZE", "libell_d_acheminement": "ST JULIEN SUR REYSSOUZE", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01367"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf68271dc9920c68b261a9ab56302f778cd338e6", "fields": {"nom_de_la_commune": "ST JEAN DE THURIGNEUX", "libell_d_acheminement": "ST JEAN DE THURIGNEUX", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01362"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506140448a93e52a378d2df7460363a210a113ee", "fields": {"nom_de_la_commune": "ST MAURICE DE BEYNOST", "libell_d_acheminement": "ST MAURICE DE BEYNOST", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01376"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a80ce32e6f9b41730d0108e524273ed35d41bc", "fields": {"nom_de_la_commune": "ST JULIEN SUR VEYLE", "libell_d_acheminement": "ST JULIEN SUR VEYLE", "code_postal": "01540", "coordonnees_gps": [46.2212986861, 4.98198011208], "code_commune_insee": "01368"}, "geometry": {"type": "Point", "coordinates": [4.98198011208, 46.2212986861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f241bfb1e301e182896cc55162e49b87df37c587", "fields": {"nom_de_la_commune": "BANNOST VILLEGAGNON", "libell_d_acheminement": "BANNOST VILLEGAGNON", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77020"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0564b01001b35623a2762e011624c1f827328c", "fields": {"nom_de_la_commune": "BARBEY", "libell_d_acheminement": "BARBEY", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77021"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b204810c933809072dc8334e487b3ccc35b1cc", "fields": {"nom_de_la_commune": "BAZOCHES LES BRAY", "libell_d_acheminement": "BAZOCHES LES BRAY", "code_postal": "77118", "coordonnees_gps": [48.3962434685, 3.16889442918], "code_commune_insee": "77025"}, "geometry": {"type": "Point", "coordinates": [3.16889442918, 48.3962434685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c75201c065074ae923fae38029f63af8360ef0", "fields": {"nom_de_la_commune": "BEAUMONT DU GATINAIS", "libell_d_acheminement": "BEAUMONT DU GATINAIS", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77027"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f4e61d9b28a0062da8789149022b13d01ab0a6", "fields": {"nom_de_la_commune": "BLANDY", "libell_d_acheminement": "BLANDY", "code_postal": "77115", "coordonnees_gps": [48.5423516758, 2.77150375047], "code_commune_insee": "77034"}, "geometry": {"type": "Point", "coordinates": [2.77150375047, 48.5423516758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825727bb18c5960f3c2d3221c5a566bdeaf0b253", "fields": {"nom_de_la_commune": "BLENNES", "libell_d_acheminement": "BLENNES", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77035"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49729b2a5e71ef7d81f2887a6cec324d680ae2ca", "fields": {"nom_de_la_commune": "BOIS LE ROI", "libell_d_acheminement": "BOIS LE ROI", "code_postal": "77590", "coordonnees_gps": [48.4860029495, 2.72692404848], "code_commune_insee": "77037"}, "geometry": {"type": "Point", "coordinates": [2.72692404848, 48.4860029495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a59ddfb0f373c00cdf78eb4755d4edda9b683f", "fields": {"nom_de_la_commune": "BOISSETTES", "libell_d_acheminement": "BOISSETTES", "code_postal": "77350", "coordonnees_gps": [48.5350739052, 2.60727189442], "code_commune_insee": "77038"}, "geometry": {"type": "Point", "coordinates": [2.60727189442, 48.5350739052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c62f4e8a33163d25c5abc684fe87e3344e3c7a4", "fields": {"nom_de_la_commune": "BOISSISE LA BERTRAND", "libell_d_acheminement": "BOISSISE LA BERTRAND", "code_postal": "77350", "coordonnees_gps": [48.5350739052, 2.60727189442], "code_commune_insee": "77039"}, "geometry": {"type": "Point", "coordinates": [2.60727189442, 48.5350739052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97343e6dd1b047ad880cae3487df39acfb3e7fe9", "fields": {"nom_de_la_commune": "BOUGLIGNY", "libell_d_acheminement": "BOUGLIGNY", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77045"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47d83f2f163dcb10c0055db7e375f9c6d01cd19", "fields": {"nom_de_la_commune": "BOURRON MARLOTTE", "libell_d_acheminement": "BOURRON MARLOTTE", "code_postal": "77780", "coordonnees_gps": [48.334846204, 2.70118147516], "code_commune_insee": "77048"}, "geometry": {"type": "Point", "coordinates": [2.70118147516, 48.334846204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2265e75293ea7e89c4a07498bbeb88ad4e9deaa", "fields": {"nom_de_la_commune": "BRANSLES", "libell_d_acheminement": "BRANSLES", "code_postal": "77620", "coordonnees_gps": [48.1721615922, 2.86730865487], "code_commune_insee": "77050"}, "geometry": {"type": "Point", "coordinates": [2.86730865487, 48.1721615922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c23246f5508fefe1a60c749d3fa4e13765a6af", "fields": {"nom_de_la_commune": "BRAY SUR SEINE", "libell_d_acheminement": "BRAY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77051"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991f0ce266374c2985eae1678dd4750577a736f1", "fields": {"nom_de_la_commune": "BREAU", "libell_d_acheminement": "BREAU", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77052"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aeefb09ec5584c4f4cdc545ae1e703419cf0463", "fields": {"nom_de_la_commune": "BUSSY ST MARTIN", "libell_d_acheminement": "BUSSY ST MARTIN", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77059"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01bf8841d2373f61b264c80879e41ee93d1a283b", "fields": {"nom_de_la_commune": "BUTHIERS", "libell_d_acheminement": "BUTHIERS", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77060"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4533350c0420ff092bd3ad88941d40ad8d86d00d", "fields": {"nom_de_la_commune": "CHALAUTRE LA PETITE", "libell_d_acheminement": "CHALAUTRE LA PETITE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77073"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f064ece52923140cf8e0ef168c499065b91d72", "fields": {"nom_de_la_commune": "CHAMPDEUIL", "libell_d_acheminement": "CHAMPDEUIL", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77081"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274e0ecb66bf20905d186fed45a13cb233ada3b4", "fields": {"nom_de_la_commune": "LA CHAPELLE RABLAIS", "libell_d_acheminement": "LA CHAPELLE RABLAIS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77089"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c9a0b6e520cf2f1de7de65273437a9bd964a07", "fields": {"nom_de_la_commune": "CHATRES", "libell_d_acheminement": "CHATRES", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77104"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7924f3a8dd95b4752c1ac995e0713c8ee068488", "fields": {"code_postal": "77500", "code_commune_insee": "77108", "libell_d_acheminement": "CHELLES", "ligne_5": "CHANTEREINE", "nom_de_la_commune": "CHELLES", "coordonnees_gps": [48.8836002438, 2.59608427563]}, "geometry": {"type": "Point", "coordinates": [2.59608427563, 48.8836002438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f72833f9f556335bee2dabdc72c4aa174647807", "fields": {"code_postal": "77173", "code_commune_insee": "77114", "libell_d_acheminement": "CHEVRY COSSIGNY", "ligne_5": "COSSIGNY", "nom_de_la_commune": "CHEVRY COSSIGNY", "coordonnees_gps": [48.7235256788, 2.6769970058]}, "geometry": {"type": "Point", "coordinates": [2.6769970058, 48.7235256788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead9feac0ab66f6235976daa62dd732f1700acf2", "fields": {"nom_de_la_commune": "COMBS LA VILLE", "libell_d_acheminement": "COMBS LA VILLE", "code_postal": "77380", "coordonnees_gps": [48.657625449, 2.57531812256], "code_commune_insee": "77122"}, "geometry": {"type": "Point", "coordinates": [2.57531812256, 48.657625449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e9610259146e86bd09cc0c364970a4a164e275", "fields": {"nom_de_la_commune": "COMPANS", "libell_d_acheminement": "COMPANS", "code_postal": "77290", "coordonnees_gps": [48.979596619, 2.61891087151], "code_commune_insee": "77123"}, "geometry": {"type": "Point", "coordinates": [2.61891087151, 48.979596619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13c01dda2db6cbb039c5a1d99d869056689ed9a", "fields": {"nom_de_la_commune": "CONDE STE LIBIAIRE", "libell_d_acheminement": "CONDE STE LIBIAIRE", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77125"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5fd8c81c9fc83a65ea811d019a7fa4e40dcd94", "fields": {"nom_de_la_commune": "COULOMMIERS", "libell_d_acheminement": "COULOMMIERS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77131"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f2bd20444cbc9dc7ff0b78fc8e7612e971c993", "fields": {"nom_de_la_commune": "COURTACON", "libell_d_acheminement": "COURTACON", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77137"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eece60d24b8c3bac387366ef6d59a4d07addd2ff", "fields": {"nom_de_la_commune": "COUTENCON", "libell_d_acheminement": "COUTENCON", "code_postal": "77154", "coordonnees_gps": [48.4891565609, 3.02294060118], "code_commune_insee": "77140"}, "geometry": {"type": "Point", "coordinates": [3.02294060118, 48.4891565609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703591379c6148d40dae323b7fcb4c1306f4cabf", "fields": {"code_postal": "77183", "code_commune_insee": "77146", "libell_d_acheminement": "CROISSY BEAUBOURG", "ligne_5": "BEAUBOURG", "nom_de_la_commune": "CROISSY BEAUBOURG", "coordonnees_gps": [48.8166135478, 2.65568100478]}, "geometry": {"type": "Point", "coordinates": [2.65568100478, 48.8166135478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d33d5856415c492c2b4bccd4fd8b21cd3f53f6", "fields": {"nom_de_la_commune": "DARVAULT", "libell_d_acheminement": "DARVAULT", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77156"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4653cd048f254e77aa2762d5acddc169ee20343d", "fields": {"nom_de_la_commune": "FAY LES NEMOURS", "libell_d_acheminement": "FAY LES NEMOURS", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77178"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfe06b329a8ec88d2b235387d67f53ed9415a870", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77194"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9611f98bef99b8f81ef5331a9e3e90314af1765", "fields": {"nom_de_la_commune": "FROMONT", "libell_d_acheminement": "FROMONT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77198"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eebdbc8b2e66cccda88edb7fe6413b11714da51", "fields": {"nom_de_la_commune": "FUBLAINES", "libell_d_acheminement": "FUBLAINES", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77199"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c0db82849e09f0800325b1a7e7946c89e3754b", "fields": {"nom_de_la_commune": "GIREMOUTIERS", "libell_d_acheminement": "GIREMOUTIERS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77206"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114e9189c3688cf25bdfe40a500221180616f3f5", "fields": {"nom_de_la_commune": "GRANDPUITS BAILLY CARROIS", "libell_d_acheminement": "GRANDPUITS BAILLY CARROIS", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77211"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73da723d40d6ac8204898b07f3116272b25008c9", "fields": {"code_postal": "77720", "code_commune_insee": "77211", "libell_d_acheminement": "GRANDPUITS BAILLY CARROIS", "ligne_5": "BAILLY CARROIS", "nom_de_la_commune": "GRANDPUITS BAILLY CARROIS", "coordonnees_gps": [48.5850477632, 2.89649549396]}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5318bf089e4faad1cf6f568e85dbf9de98e6b8", "fields": {"nom_de_la_commune": "GRETZ ARMAINVILLIERS", "libell_d_acheminement": "GRETZ ARMAINVILLIERS", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77215"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0b0541310a4abd0b4cac60de40993b3cbe570c", "fields": {"nom_de_la_commune": "GRISY SUISNES", "libell_d_acheminement": "GRISY SUISNES", "code_postal": "77166", "coordonnees_gps": [48.6689119155, 2.65738604224], "code_commune_insee": "77217"}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90978822cfd38c66f6b449b737ccb9c49cb6568", "fields": {"nom_de_la_commune": "GUERMANTES", "libell_d_acheminement": "GUERMANTES", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77221"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6ca46ebc41d6e18f42affce5ea47086cd486ff0", "fields": {"nom_de_la_commune": "HERICY", "libell_d_acheminement": "HERICY", "code_postal": "77850", "coordonnees_gps": [48.4420531578, 2.78873977925], "code_commune_insee": "77226"}, "geometry": {"type": "Point", "coordinates": [2.78873977925, 48.4420531578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da142c37c9f2c75f7d8261d0957c0403361d6466", "fields": {"nom_de_la_commune": "HONDEVILLIERS", "libell_d_acheminement": "HONDEVILLIERS", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77228"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c89294fb3db11df967a52e9ef7513c08cc5bbc0", "fields": {"nom_de_la_commune": "ISLES LES VILLENOY", "libell_d_acheminement": "ISLES LES VILLENOY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77232"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d8ab90524fb0131388dec241e183f3649da5d9", "fields": {"nom_de_la_commune": "JOUARRE", "libell_d_acheminement": "JOUARRE", "code_postal": "77640", "coordonnees_gps": [48.9061273296, 3.10099022317], "code_commune_insee": "77238"}, "geometry": {"type": "Point", "coordinates": [3.10099022317, 48.9061273296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2447543fe5bad0d08f6ed8f1e5cc8b8ac650b6c2", "fields": {"nom_de_la_commune": "LESIGNY", "libell_d_acheminement": "LESIGNY", "code_postal": "77150", "coordonnees_gps": [48.7409851538, 2.62903924486], "code_commune_insee": "77249"}, "geometry": {"type": "Point", "coordinates": [2.62903924486, 48.7409851538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a717443a85538a63d5dc31adcc838f7f1b5afd", "fields": {"nom_de_la_commune": "LIZINES", "libell_d_acheminement": "LIZINES", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77256"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e01613366ce4ca087140c8aa3b08b29813480a8", "fields": {"nom_de_la_commune": "LIZY SUR OURCQ", "libell_d_acheminement": "LIZY SUR OURCQ", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77257"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44737c2c172f0c082f67e460f351800501d7404", "fields": {"code_postal": "77710", "code_commune_insee": "77261", "libell_d_acheminement": "LORREZ LE BOCAGE PREAUX", "ligne_5": "PREAUX", "nom_de_la_commune": "LORREZ LE BOCAGE PREAUX", "coordonnees_gps": [48.2430767523, 2.88428828636]}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e546dc17951b854966e5034b290701ffdf710e5", "fields": {"nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", "libell_d_acheminement": "LUMIGNY NESLES ORMEAUX", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77264"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35b5c2f8d7705da16604a50e2fb4f6a058ccc94f", "fields": {"nom_de_la_commune": "LA MADELEINE SUR LOING", "libell_d_acheminement": "LA MADELEINE SUR LOING", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77267"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d866b7037b05d104328a5d07bd9ce81aee8c89d0", "fields": {"nom_de_la_commune": "MAINCY", "libell_d_acheminement": "MAINCY", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77269"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4783d4dd4531571235e7b80bfc0118458468ac", "fields": {"nom_de_la_commune": "MAISONCELLES EN BRIE", "libell_d_acheminement": "MAISONCELLES EN BRIE", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77270"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e27c19cf96e118d8b3587c387ebfab46f81a02de", "fields": {"nom_de_la_commune": "MARY SUR MARNE", "libell_d_acheminement": "MARY SUR MARNE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77280"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10e2d258cb5e8d2728fc437390b1816cff3c5f24", "fields": {"nom_de_la_commune": "MAUPERTHUIS", "libell_d_acheminement": "MAUPERTHUIS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77281"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253710070f44db40bdfae5748b36f1264eeee003", "fields": {"nom_de_la_commune": "MAY EN MULTIEN", "libell_d_acheminement": "MAY EN MULTIEN", "code_postal": "77145", "coordonnees_gps": [49.0701288323, 3.02511074107], "code_commune_insee": "77283"}, "geometry": {"type": "Point", "coordinates": [3.02511074107, 49.0701288323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b978c26f0e229039162e47883e14991e2d9fcc7", "fields": {"nom_de_la_commune": "MEAUX", "libell_d_acheminement": "MEAUX", "code_postal": "77100", "coordonnees_gps": [48.9417341013, 2.89233400365], "code_commune_insee": "77284"}, "geometry": {"type": "Point", "coordinates": [2.89233400365, 48.9417341013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aeee6e520619f45a75e0e00de95a088cd4400ae", "fields": {"nom_de_la_commune": "LE MEE SUR SEINE", "libell_d_acheminement": "LE MEE SUR SEINE", "code_postal": "77350", "coordonnees_gps": [48.5350739052, 2.60727189442], "code_commune_insee": "77285"}, "geometry": {"type": "Point", "coordinates": [2.60727189442, 48.5350739052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38240262bcbfc818e055de088865a79f4e21e0c8", "fields": {"nom_de_la_commune": "MEILLERAY", "libell_d_acheminement": "MEILLERAY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77287"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3eb377922a369b73d48d6e85224846fe7a12d46", "fields": {"nom_de_la_commune": "MOISENAY", "libell_d_acheminement": "MOISENAY", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77295"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4c42459e30148bbc80bfe06d199a9f2a97668b0", "fields": {"nom_de_la_commune": "MONTCEAUX LES MEAUX", "libell_d_acheminement": "MONTCEAUX LES MEAUX", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77300"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23cebcf18b6c4450eaf3b750db0915a7bbf9fdcb", "fields": {"nom_de_la_commune": "MONTEREAU FAULT YONNE", "libell_d_acheminement": "MONTEREAU FAULT YONNE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77305"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3738c5f93cabf8a6292ed24483fa191ae9c90681", "fields": {"nom_de_la_commune": "MONTEREAU SUR LE JARD", "libell_d_acheminement": "MONTEREAU SUR LE JARD", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77306"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490b8e5e88d8bc8e8fd59e5f848453e86afc0db8", "fields": {"nom_de_la_commune": "MONTEVRAIN", "libell_d_acheminement": "MONTEVRAIN", "code_postal": "77144", "coordonnees_gps": [48.8764616468, 2.75749686803], "code_commune_insee": "77307"}, "geometry": {"type": "Point", "coordinates": [2.75749686803, 48.8764616468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6022ef3f972baa28356780a4c7715bb694a8d2e9", "fields": {"nom_de_la_commune": "MONTMACHOUX", "libell_d_acheminement": "MONTMACHOUX", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77313"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09bffae2a676838862673d287c99049cc97c4f88", "fields": {"nom_de_la_commune": "MORET LOING ET ORVANNE", "libell_d_acheminement": "MORET LOING ET ORVANNE", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77316"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fe365b0ef679c5f90f1336ca4b4ad276b77da3", "fields": {"code_postal": "77250", "code_commune_insee": "77316", "libell_d_acheminement": "MORET LOING ET ORVANNE", "ligne_5": "ECUELLES", "nom_de_la_commune": "MORET LOING ET ORVANNE", "coordonnees_gps": [48.3334508388, 2.82847916513]}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4e856bc591c3169cc7dc73b77f242abe474508", "fields": {"nom_de_la_commune": "MORTCERF", "libell_d_acheminement": "MORTCERF", "code_postal": "77163", "coordonnees_gps": [48.7979316478, 2.90271680607], "code_commune_insee": "77318"}, "geometry": {"type": "Point", "coordinates": [2.90271680607, 48.7979316478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1998c1b8270e69d6cc3c5b6f47b1afed72e69c8b", "fields": {"nom_de_la_commune": "NANTEAU SUR ESSONNE", "libell_d_acheminement": "NANTEAU SUR ESSONNE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77328"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e521861298f12d913d2df33fa8d79d9b1d144097", "fields": {"nom_de_la_commune": "NANTEUIL LES MEAUX", "libell_d_acheminement": "NANTEUIL LES MEAUX", "code_postal": "77100", "coordonnees_gps": [48.9417341013, 2.89233400365], "code_commune_insee": "77330"}, "geometry": {"type": "Point", "coordinates": [2.89233400365, 48.9417341013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3384b22aa4cbb64cb5d9a827d9b7f8b0e4bfcf", "fields": {"code_postal": "77124", "code_commune_insee": "77335", "libell_d_acheminement": "CHAUCONIN NEUFMONTIERS", "ligne_5": "NEUFMONTIERS LES MEAUX", "nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", "coordonnees_gps": [48.9687525452, 2.84384652509]}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4cf672edcdaa2aca4b2c277108900d138689c6", "fields": {"nom_de_la_commune": "NOISY RUDIGNON", "libell_d_acheminement": "NOISY RUDIGNON", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77338"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058e71163eab46cadcaf0c9bc1fac4bb245a5715", "fields": {"nom_de_la_commune": "NOISY SUR ECOLE", "libell_d_acheminement": "NOISY SUR ECOLE", "code_postal": "77123", "coordonnees_gps": [48.3612793646, 2.50123990973], "code_commune_insee": "77339"}, "geometry": {"type": "Point", "coordinates": [2.50123990973, 48.3612793646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72768fa21c9ad6144a76baf31d8dad31538eae11", "fields": {"nom_de_la_commune": "OTHIS", "libell_d_acheminement": "OTHIS", "code_postal": "77280", "coordonnees_gps": [49.0831743052, 2.65347938812], "code_commune_insee": "77349"}, "geometry": {"type": "Point", "coordinates": [2.65347938812, 49.0831743052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "342c7d637ad0d9b93c70d78fd131bb05d0271931", "fields": {"nom_de_la_commune": "PAMFOU", "libell_d_acheminement": "PAMFOU", "code_postal": "77830", "coordonnees_gps": [48.4598569753, 2.90486661459], "code_commune_insee": "77354"}, "geometry": {"type": "Point", "coordinates": [2.90486661459, 48.4598569753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e48792a7cafc2d938182d18c8b7ea664aa8c21b", "fields": {"nom_de_la_commune": "PASSY SUR SEINE", "libell_d_acheminement": "PASSY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77356"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23b6cdd935d4c42b2db30d173bb92083ca9dad6", "fields": {"nom_de_la_commune": "PERTHES", "libell_d_acheminement": "PERTHES", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77359"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb11e87df366d391888eed47a01ad8a27a4bfe6", "fields": {"nom_de_la_commune": "PIERRE LEVEE", "libell_d_acheminement": "PIERRE LEVEE", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77361"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39fcf2c34782a335b8d91de50e564c7eec93b561", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "77181", "coordonnees_gps": [48.9151571578, 2.61878172318], "code_commune_insee": "77363"}, "geometry": {"type": "Point", "coordinates": [2.61878172318, 48.9151571578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1a92716178ac30dc09f8487c32ea23ea3387ba", "fields": {"nom_de_la_commune": "PONTAULT COMBAULT", "libell_d_acheminement": "PONTAULT COMBAULT", "code_postal": "77340", "coordonnees_gps": [48.7869451025, 2.6135089739], "code_commune_insee": "77373"}, "geometry": {"type": "Point", "coordinates": [2.6135089739, 48.7869451025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c317ddfaa3f4e1b68eaa2fbfb5035ecf355fb9b4", "fields": {"nom_de_la_commune": "PRECY SUR MARNE", "libell_d_acheminement": "PRECY SUR MARNE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77376"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900997aa2d5df08cc29a6131cca3180c261ab35a", "fields": {"nom_de_la_commune": "QUINCY VOISINS", "libell_d_acheminement": "QUINCY VOISINS", "code_postal": "77860", "coordonnees_gps": [48.889293661, 2.86625543445], "code_commune_insee": "77382"}, "geometry": {"type": "Point", "coordinates": [2.86625543445, 48.889293661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453fc7d1bdade0da052c19803e1fdfbda02267b9", "fields": {"nom_de_la_commune": "REBAIS", "libell_d_acheminement": "REBAIS", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77385"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5075b7cb8ff05c730e4fa1a5e9c0c8c2d9749f3", "fields": {"nom_de_la_commune": "RECLOSES", "libell_d_acheminement": "RECLOSES", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77386"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370517acbb0e6ef4e78523bcdd24a01396e8dd2e", "fields": {"nom_de_la_commune": "REMAUVILLE", "libell_d_acheminement": "REMAUVILLE", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77387"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847d8b47183d4e2a9a5d67e8c75cb3ff464d265f", "fields": {"nom_de_la_commune": "ROZAY EN BRIE", "libell_d_acheminement": "ROZAY EN BRIE", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77393"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a6ef7e888d9a499e07f24df92e426519adc7e3", "fields": {"nom_de_la_commune": "RUMONT", "libell_d_acheminement": "RUMONT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77395"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6750d6ab360d1bc09d1c548a1f41d48707d94734", "fields": {"nom_de_la_commune": "STE AULDE", "libell_d_acheminement": "STE AULDE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77401"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ecdf83db71bccacb1c8a5e89ae048868046eca4", "fields": {"nom_de_la_commune": "ST CYR SUR MORIN", "libell_d_acheminement": "ST CYR SUR MORIN", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77405"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a3c88a27b265e9cbf4df2214724370e9852cb9", "fields": {"code_postal": "77310", "code_commune_insee": "77407", "libell_d_acheminement": "ST FARGEAU PONTHIERRY", "ligne_5": "PONTHIERRY", "nom_de_la_commune": "ST FARGEAU PONTHIERRY", "coordonnees_gps": [48.5292083362, 2.53978127085]}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12518d6e439c39ce2b4becb8437d8a68482adf54", "fields": {"nom_de_la_commune": "ST GERMAIN LAVAL", "libell_d_acheminement": "ST GERMAIN LAVAL", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77409"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d219e0b5b7a8360e76101e41f9abad4bbeb2b48", "fields": {"nom_de_la_commune": "ST GERMAIN SOUS DOUE", "libell_d_acheminement": "ST GERMAIN SOUS DOUE", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77411"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "716d0ad6916768db86807411b703b0b492fcb0c2", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77417"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4611498eca8f7de5d50036af485ffe452f663d1e", "fields": {"nom_de_la_commune": "ST OUEN EN BRIE", "libell_d_acheminement": "ST OUEN EN BRIE", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77428"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82289f9fb8cdb8555adc1b962ec1f83530b48c9a", "fields": {"nom_de_la_commune": "ST PIERRE LES NEMOURS", "libell_d_acheminement": "ST PIERRE LES NEMOURS", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77431"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114f20b651a8ddc5fa28948826a9745fb6111a6c", "fields": {"nom_de_la_commune": "ST REMY LA VANNE", "libell_d_acheminement": "ST REMY LA VANNE", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77432"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83ac710653b821288bf0f549ab0ac921c130284", "fields": {"nom_de_la_commune": "ST SAUVEUR SUR ECOLE", "libell_d_acheminement": "ST SAUVEUR SUR ECOLE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77435"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d6078c0be22a709179c3cb82e7458a6dc5d1aa", "fields": {"nom_de_la_commune": "ST SIMEON", "libell_d_acheminement": "ST SIMEON", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77436"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af73247455642a90abd99756d0002b873eb360c3", "fields": {"nom_de_la_commune": "SANCY LES PROVINS", "libell_d_acheminement": "SANCY LES PROVINS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77444"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631bad24669f35e87656072c1abd0738436df09a", "fields": {"nom_de_la_commune": "SEINE PORT", "libell_d_acheminement": "SEINE PORT", "code_postal": "77240", "coordonnees_gps": [48.5645874906, 2.60004351705], "code_commune_insee": "77447"}, "geometry": {"type": "Point", "coordinates": [2.60004351705, 48.5645874906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b18723d279abce171a68468f73b319f3dbd42cb", "fields": {"nom_de_la_commune": "SIGNY SIGNETS", "libell_d_acheminement": "SIGNY SIGNETS", "code_postal": "77640", "coordonnees_gps": [48.9061273296, 3.10099022317], "code_commune_insee": "77451"}, "geometry": {"type": "Point", "coordinates": [3.10099022317, 48.9061273296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d152b697f6244ca4b76ff467d1ec12b92457db", "fields": {"code_postal": "01300", "code_commune_insee": "01015", "libell_d_acheminement": "ARBOYS EN BUGEY", "ligne_5": "ARBIGNIEU", "nom_de_la_commune": "ARBOYS EN BUGEY", "coordonnees_gps": [45.7328309975, 5.65715901636]}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0534a20767f868798533fb5979d8e70d24f94267", "fields": {"code_postal": "01360", "code_commune_insee": "01032", "libell_d_acheminement": "BELIGNEUX", "ligne_5": "CHANES", "nom_de_la_commune": "BELIGNEUX", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db75dfe07e737e6f4373bc7333d9a8f9c123c877", "fields": {"nom_de_la_commune": "AMBERIEUX EN DOMBES", "libell_d_acheminement": "AMBERIEUX EN DOMBES", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01005"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3be3287610f8f2038e0bfbeb7de8caf4710d89", "fields": {"nom_de_la_commune": "ANDERT ET CONDON", "libell_d_acheminement": "ANDERT ET CONDON", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01009"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e217a061a69604bd02390697bec704af21e1cbd", "fields": {"nom_de_la_commune": "BAGE LE CHATEL", "libell_d_acheminement": "BAGE LE CHATEL", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01026"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0acff03b7a0409ed4dcb2c41b2ffd35e801ee49e", "fields": {"nom_de_la_commune": "AMBUTRIX", "libell_d_acheminement": "AMBUTRIX", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01008"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116c2a2a94067cac644802a1d0b3e1c671055ff4", "fields": {"nom_de_la_commune": "ARBENT", "libell_d_acheminement": "ARBENT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01014"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1b9ffcc4bd57ead454d962a459d9937518c7bd", "fields": {"nom_de_la_commune": "ARANC", "libell_d_acheminement": "ARANC", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01012"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835a80331950a12c5ffdbbb51e8c4aece3b59990", "fields": {"code_postal": "02210", "code_commune_insee": "02580", "libell_d_acheminement": "OULCHY LE CHATEAU", "ligne_5": "CUGNY LES CROUTTES", "nom_de_la_commune": "OULCHY LE CHATEAU", "coordonnees_gps": [49.2129002416, 3.35011614589]}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab8365887f1a967697085dcfb16a424047d9d81", "fields": {"nom_de_la_commune": "OULCHES LA VALLEE FOULON", "libell_d_acheminement": "OULCHES LA VALLEE FOULON", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02578"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cabb1ebd5a1bda3dc27621c0cc9e77877f5d209", "fields": {"nom_de_la_commune": "PRESLES ET THIERNY", "libell_d_acheminement": "PRESLES ET THIERNY", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02621"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b29688bf8dcfebbb04bb968598dcd086ef43be", "fields": {"nom_de_la_commune": "OULCHY LE CHATEAU", "libell_d_acheminement": "OULCHY LE CHATEAU", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02580"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3543d68d6bd992d97f62f32a897c0952147d04", "fields": {"nom_de_la_commune": "PLEINE SELVE", "libell_d_acheminement": "PLEINE SELVE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02605"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a18f74844de6c8efe2ebfc20f757d15289a90c6", "fields": {"nom_de_la_commune": "PIERREMANDE", "libell_d_acheminement": "PIERREMANDE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02599"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf9fe49360f7272ea3300efe42ac4eae9e1c597", "fields": {"nom_de_la_commune": "PONTAVERT", "libell_d_acheminement": "PONTAVERT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02613"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c96e240a82f1784953095daacffdf142655a2a", "fields": {"nom_de_la_commune": "PITHON", "libell_d_acheminement": "PITHON", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02604"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a47101e839e7ff485ac3cbc7a8448cc4a97c3c8", "fields": {"nom_de_la_commune": "PAVANT", "libell_d_acheminement": "PAVANT", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02596"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193277e449a56ce7bbe2c082a504c82b587ac2b7", "fields": {"nom_de_la_commune": "ST CHRISTOPHE A BERRY", "libell_d_acheminement": "ST CHRISTOPHE A BERRY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02673"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85049149417ebd37cccf6b34602721ddd648d46f", "fields": {"nom_de_la_commune": "SANCY LES CHEMINOTS", "libell_d_acheminement": "SANCY LES CHEMINOTS", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02698"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6de6f17b52e1f9f370414378885996edc873b9", "fields": {"nom_de_la_commune": "SACONIN ET BREUIL", "libell_d_acheminement": "SACONIN ET BREUIL", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02667"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd55aaacb6f71ac772c8be0929039eff56e48e6", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02678"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce8e73a637ebdf848171ab0357edf7408eccac4", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02674"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a00dbf9bfd6d33e378ee7054320e7136bd03c3d6", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02671"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289dfaddd1669deef12a1e416a223f4470de0d40", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02675"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a73135309fcbe938efc1590bac0fdcce951a177", "fields": {"nom_de_la_commune": "ST ALGIS", "libell_d_acheminement": "ST ALGIS", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02670"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c39ae5ba20e2aac9d4a9575f52b61df978ce7d", "fields": {"nom_de_la_commune": "SERCHES", "libell_d_acheminement": "SERCHES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02711"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936c25e2a1cefe00fa9f37fd72d168ee53b1e626", "fields": {"code_postal": "02540", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "FONTENELLE EN BRIE", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9128673746, 3.4403848461]}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46abbc6d8fe14b3e3f61e46d8657b0a206ed5fb2", "fields": {"nom_de_la_commune": "MARTIGNY COURPIERRE", "libell_d_acheminement": "MARTIGNY COURPIERRE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02471"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46f5b5bfa89ebb5cab83e3ea951edf5ebc8e4a26", "fields": {"nom_de_la_commune": "MEZIERES SUR OISE", "libell_d_acheminement": "MEZIERES SUR OISE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02483"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82667dc62b05c156ab47cfdf3c38d2812c71cf66", "fields": {"nom_de_la_commune": "MARCY SOUS MARLE", "libell_d_acheminement": "MARCY SOUS MARLE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02460"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4677a42b84b4130d15ec40913eea7864d823ebf3", "fields": {"nom_de_la_commune": "MERCIN ET VAUX", "libell_d_acheminement": "MERCIN ET VAUX", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02477"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5ad755cff7b4c0745d06794f91adced077c7a97", "fields": {"nom_de_la_commune": "MARIZY ST MARD", "libell_d_acheminement": "MARIZY ST MARD", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02467"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4491b05132006983e9d024b9e3f9e55ff64d51ec", "fields": {"nom_de_la_commune": "MONAMPTEUIL", "libell_d_acheminement": "MONAMPTEUIL", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02490"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f41c54fabab929feca51a46b1dc237794fb35c", "fields": {"nom_de_la_commune": "MENNESSIS", "libell_d_acheminement": "MENNESSIS", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02474"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cebe00dbc1f87c193d193ae8aa5a171b9246c4", "fields": {"nom_de_la_commune": "MEURIVAL", "libell_d_acheminement": "MEURIVAL", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02482"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f908f90dae7b97d836ac0e9bb2709d6071970a", "fields": {"nom_de_la_commune": "MAIZY", "libell_d_acheminement": "MAIZY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02453"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0c49fca9880d33817ed7b8f7ea1845109527b5", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "MERVAL", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6e31db10f556fe610bd15dff23217cba907ce1", "fields": {"nom_de_la_commune": "LESQUIELLES ST GERMAIN", "libell_d_acheminement": "LESQUIELLES ST GERMAIN", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02422"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491a4d917f3bdb6226dc9ec0e93161cbb8d47973", "fields": {"nom_de_la_commune": "LOGNY LES AUBENTON", "libell_d_acheminement": "LOGNY LES AUBENTON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02435"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6247275db181410215e3068cf9ee9df7c270472", "fields": {"nom_de_la_commune": "MAGNY LA FOSSE", "libell_d_acheminement": "MAGNY LA FOSSE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02451"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfdce15b9062d042add25021da545f86566da6b", "fields": {"nom_de_la_commune": "LICY CLIGNON", "libell_d_acheminement": "LICY CLIGNON", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02428"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c131f116e210f164a3ac896379805f05584f90b3", "fields": {"nom_de_la_commune": "MACHECOURT", "libell_d_acheminement": "MACHECOURT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02448"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61636f73843fa092a5f911efcaa6ac3eae596fd8", "fields": {"nom_de_la_commune": "LY FONTAINE", "libell_d_acheminement": "LY FONTAINE", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02446"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2441d24b86784debe9d38e89a7c298a73352e0d8", "fields": {"nom_de_la_commune": "LEVERGIES", "libell_d_acheminement": "LEVERGIES", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02426"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4063fc8c5fcdeb4ad26bf9d0948dae32258b1c7", "fields": {"nom_de_la_commune": "MACOGNY", "libell_d_acheminement": "MACOGNY", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02449"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699fd29a277f231834118953b2232945936a7093", "fields": {"nom_de_la_commune": "LHUYS", "libell_d_acheminement": "LHUYS", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02427"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5163c843793654e148b20bf1ffa094b9975557", "fields": {"nom_de_la_commune": "LE NOUVION EN THIERACHE", "libell_d_acheminement": "LE NOUVION EN THIERACHE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02558"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325b95ddb47f168e44ba3166aae252ac05207344", "fields": {"nom_de_la_commune": "NANTEUIL NOTRE DAME", "libell_d_acheminement": "NANTEUIL NOTRE DAME", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02538"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfda22200eedbc7657dd4884816a345596ddf92", "fields": {"nom_de_la_commune": "NAMPCELLES LA COUR", "libell_d_acheminement": "NAMPCELLES LA COUR", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02535"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a8252867a6f3fd6513559cf3757415ea0393f7", "fields": {"nom_de_la_commune": "NANTEUIL LA FOSSE", "libell_d_acheminement": "NANTEUIL LA FOSSE", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02537"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf7f2628df4406a5e368140442208519995de64", "fields": {"nom_de_la_commune": "MURET ET CROUTTES", "libell_d_acheminement": "MURET ET CROUTTES", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02533"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a03c09381b76365cae9d43a98182b7ccc8a94e0", "fields": {"nom_de_la_commune": "MOY DE L AISNE", "libell_d_acheminement": "MOY DE L AISNE", "code_postal": "02610", "coordonnees_gps": [49.7503485769, 3.3508195834], "code_commune_insee": "02532"}, "geometry": {"type": "Point", "coordinates": [3.3508195834, 49.7503485769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8062fa27eb9c7de40ba415e874f6c2aca8f9dd3c", "fields": {"nom_de_la_commune": "NEUVILLETTE", "libell_d_acheminement": "NEUVILLETTE", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02552"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b26d7409d54f1874c2087d7de5dc7444b28978", "fields": {"nom_de_la_commune": "NEUFLIEUX", "libell_d_acheminement": "NEUFLIEUX", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02542"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec493b9fbb9b05ae0997e88a4143cc602948187f", "fields": {"nom_de_la_commune": "NOGENTEL", "libell_d_acheminement": "NOGENTEL", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02554"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6eb6689f052cb4fbd90aaaf2edb37db16df8a7", "fields": {"nom_de_la_commune": "NAUROY", "libell_d_acheminement": "NAUROY", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02539"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a69512b1d290e175b65b3eb8c716c209d937b7", "fields": {"nom_de_la_commune": "MONTIGNY EN ARROUAISE", "libell_d_acheminement": "MONTIGNY EN ARROUAISE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02511"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5771d64d641119c2539f1e2e43b756c3c53bd8a", "fields": {"nom_de_la_commune": "MONTIGNY LES CONDE", "libell_d_acheminement": "MONTIGNY LES CONDE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02515"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe11ed939416ddb372754080630f795af61f3a00", "fields": {"nom_de_la_commune": "MONTIGNY L ALLIER", "libell_d_acheminement": "MONTIGNY L ALLIER", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02512"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff8aeeaa86ceddc56765b7644537e2b78eaf6d9", "fields": {"nom_de_la_commune": "MONTCHALONS", "libell_d_acheminement": "MONTCHALONS", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02501"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58fe25696c2e29482065012c74b1f56a5f80076", "fields": {"nom_de_la_commune": "MONTBREHAIN", "libell_d_acheminement": "MONTBREHAIN", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02500"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5e367d43be7d6a612ffac03e496ccd9a22d9f1", "fields": {"nom_de_la_commune": "MONTCORNET", "libell_d_acheminement": "MONTCORNET", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02502"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fccab98fc1eac7f04139aa25b53499d89eaa3f0", "fields": {"nom_de_la_commune": "MONTLEVON", "libell_d_acheminement": "MONTLEVON", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02518"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cfa08ef351ad5c1daed34fcf7d97e305f09b94a", "fields": {"nom_de_la_commune": "MONTBAVIN", "libell_d_acheminement": "MONTBAVIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02499"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0833d9cc475ee80be12622adc14a2cf28181d385", "fields": {"nom_de_la_commune": "MORCOURT", "libell_d_acheminement": "MORCOURT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02525"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0790771bcc8da402b9ca53d3c41bd7139ad31545", "fields": {"nom_de_la_commune": "MORTIERS", "libell_d_acheminement": "MORTIERS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02529"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47530f416832ebf7bfcd64f0f0b1d591fad0b7d", "fields": {"nom_de_la_commune": "LANDIFAY ET BERTAIGNEMONT", "libell_d_acheminement": "LANDIFAY ET BERTAIGNEMONT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02403"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c013de230de91438cdafd2d0afd6e3e6ac0473", "fields": {"nom_de_la_commune": "LANDOUZY LA VILLE", "libell_d_acheminement": "LANDOUZY LA VILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02405"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31118bbba5febb62f802a4a9157f14b9cb825e0", "fields": {"nom_de_la_commune": "JOUAIGNES", "libell_d_acheminement": "JOUAIGNES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02393"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a1fa2820c6eb2207e7764aab7b80c3244ba228", "fields": {"nom_de_la_commune": "LA HERIE", "libell_d_acheminement": "LA HERIE", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02378"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1949cdfe0ea7f540b80c326be39dcf4f424f87f", "fields": {"nom_de_la_commune": "JUVIGNY", "libell_d_acheminement": "JUVIGNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02398"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bca0111d14cde42d56b30cd95194b07652225b", "fields": {"nom_de_la_commune": "JEANTES", "libell_d_acheminement": "JEANTES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02391"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "762310d4dd213c480b0dc92c9ff66ff70db0c2ed", "fields": {"nom_de_la_commune": "HOUSSET", "libell_d_acheminement": "HOUSSET", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02385"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78cc04f1b122952adb0c25418e3435a341ee118f", "fields": {"nom_de_la_commune": "HOURY", "libell_d_acheminement": "HOURY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02384"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182d26d1dbc9a21ef48e6592bc4df90bc01b8a15", "fields": {"nom_de_la_commune": "LERZY", "libell_d_acheminement": "LERZY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02418"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b6272a4f24c0e163bf57f60194241d14e8f0dc", "fields": {"nom_de_la_commune": "HARY", "libell_d_acheminement": "HARY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02373"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c581820dbae4927f9d9d18aa8382a0c3fe746fe2", "fields": {"code_postal": "02270", "code_commune_insee": "02559", "libell_d_acheminement": "NOUVION ET CATILLON", "ligne_5": "PONT A BUCY", "nom_de_la_commune": "NOUVION ET CATILLON", "coordonnees_gps": [49.714634271, 3.5968851996]}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56201369d5f66eb82800ae95c8ed5adf273fd092", "fields": {"nom_de_la_commune": "OSTEL", "libell_d_acheminement": "OSTEL", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02577"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9aba8b969f18bf4abf711a82fc9e33185f4db61", "fields": {"nom_de_la_commune": "OGNES", "libell_d_acheminement": "OGNES", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02566"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9e21c45038ed1e9893507a663d169a028afa93", "fields": {"nom_de_la_commune": "OISY", "libell_d_acheminement": "OISY", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02569"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae3fff21f7424e143d535e1eafe9f8874f959cda", "fields": {"nom_de_la_commune": "OHIS", "libell_d_acheminement": "OHIS", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02567"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68eb84a00f02dc55aeff9c7ed270b9fc4171f699", "fields": {"nom_de_la_commune": "ROYAUCOURT ET CHAILVET", "libell_d_acheminement": "ROYAUCOURT ET CHAILVET", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02661"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac15637f9a2721d373d18420be1b688a02af219a", "fields": {"nom_de_la_commune": "QUINCY SOUS LE MONT", "libell_d_acheminement": "QUINCY SOUS LE MONT", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02633"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7025c082d6984c85559b86dcf71b09d5c0a943f0", "fields": {"nom_de_la_commune": "ROMENY SUR MARNE", "libell_d_acheminement": "ROMENY SUR MARNE", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02653"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a349c9fd43631168dcf64a77d5e659bad7506798", "fields": {"nom_de_la_commune": "REMAUCOURT", "libell_d_acheminement": "REMAUCOURT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02637"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f80b646c9a004a55014a6346400d40a7489c48", "fields": {"nom_de_la_commune": "RENNEVAL", "libell_d_acheminement": "RENNEVAL", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02641"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238a5d5a3e21f7edc488347aef7b3a2c4a51c28c", "fields": {"nom_de_la_commune": "RETHEUIL", "libell_d_acheminement": "RETHEUIL", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02644"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d860ca664d50289a42edc26a6e5758afd199c3a5", "fields": {"nom_de_la_commune": "PROISY", "libell_d_acheminement": "PROISY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02624"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ac00d7635242ea688494d90f7846052ed6a5627", "fields": {"nom_de_la_commune": "REMIES", "libell_d_acheminement": "REMIES", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02638"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e49646f1183463f54b58513eb3cd1ee68918ce4", "fields": {"nom_de_la_commune": "PROIX", "libell_d_acheminement": "PROIX", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02625"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ea67f034090e668d58a3c8f654d396482d8e1d", "fields": {"nom_de_la_commune": "TAVAUX ET PONTSERICOURT", "libell_d_acheminement": "TAVAUX ET PONTSERICOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02737"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d42d6b5c923933130923b8ee1a306cf363a08bd3", "fields": {"nom_de_la_commune": "SERINGES ET NESLES", "libell_d_acheminement": "SERINGES ET NESLES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02713"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5922d2061c5bac82da257c82340fef3249d91379", "fields": {"nom_de_la_commune": "SOMMETTE EAUCOURT", "libell_d_acheminement": "SOMMETTE EAUCOURT", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02726"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f95ba6b8beb7158e9261ffd312bba3d81be8e2e", "fields": {"nom_de_la_commune": "SILLY LA POTERIE", "libell_d_acheminement": "SILLY LA POTERIE", "code_postal": "02460", "coordonnees_gps": [49.1801295296, 3.14646603898], "code_commune_insee": "02718"}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2b49f7d0c4a86306b79317e57eb7d18dd0d844", "fields": {"nom_de_la_commune": "SURFONTAINE", "libell_d_acheminement": "SURFONTAINE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02732"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791adf0c16c1ba6bc9b5f30f50b6707e106e9bb7", "fields": {"nom_de_la_commune": "TANNIERES", "libell_d_acheminement": "TANNIERES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02735"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6898f1c157217a5f78368d6a865fa9a3cd6fe49e", "fields": {"nom_de_la_commune": "TERGNIER", "libell_d_acheminement": "TERGNIER", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02738"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a51f786120076aceb1238179871db7eaf01dacf", "fields": {"nom_de_la_commune": "SERVAIS", "libell_d_acheminement": "SERVAIS", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02716"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d100ca819588ee1b15a56bd302f5937f442c6cf2", "fields": {"nom_de_la_commune": "SOUCY", "libell_d_acheminement": "SOUCY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02729"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55f50ba996f03fad0cd92ff672a388050d8a6c7", "fields": {"code_postal": "02700", "code_commune_insee": "02738", "libell_d_acheminement": "TERGNIER", "ligne_5": "FARGNIERS", "nom_de_la_commune": "TERGNIER", "coordonnees_gps": [49.6402663387, 3.29629531322]}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4b52b4bbcf9f0d775ebc180a68b084fdee694d", "fields": {"nom_de_la_commune": "AMBERIEU EN BUGEY", "libell_d_acheminement": "AMBERIEU EN BUGEY", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01004"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ad9dd3929fa222fa9dcf1e3293d6a1ebdd7707", "fields": {"nom_de_la_commune": "VINCY REUIL ET MAGNY", "libell_d_acheminement": "VINCY REUIL ET MAGNY", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02819"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc62f3db47e754c66cb6a79811027ef357ce99d", "fields": {"nom_de_la_commune": "WISSIGNICOURT", "libell_d_acheminement": "WISSIGNICOURT", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02834"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa17d7686d8c0d079d423642bd3307f57bda9a2", "fields": {"nom_de_la_commune": "BELLENAVES", "libell_d_acheminement": "BELLENAVES", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03022"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06fd54399c9d4a8379eb96d4b52e8f05a295c0d", "fields": {"nom_de_la_commune": "LE BOUCHAUD", "libell_d_acheminement": "LE BOUCHAUD", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03035"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "018680f99f39a8e54dd1cdb55fa493186a575614", "fields": {"nom_de_la_commune": "ARCHIGNAT", "libell_d_acheminement": "ARCHIGNAT", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03005"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dfd79ada917f402631a4664cb0c47f68f324d3", "fields": {"nom_de_la_commune": "VOHARIES", "libell_d_acheminement": "VOHARIES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02823"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bc526b5457d57d8abcbeda20f47b864f0d6a921", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03015"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d122bb00db29942ac8281660c791df1e9a0bfde", "fields": {"nom_de_la_commune": "VORGES", "libell_d_acheminement": "VORGES", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02824"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a8377d514d74629dceed641f1bf705babf218e", "fields": {"nom_de_la_commune": "BRAIZE", "libell_d_acheminement": "BRAIZE", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03037"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f393e35380196171498a8a504b56e51707f7de0", "fields": {"code_postal": "04000", "code_commune_insee": "04167", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "ligne_5": "LAMBERT", "nom_de_la_commune": "LA ROBINE SUR GALABRE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf5e85dc7463ebaeb644431b8a7e94bf8d11fa0d", "fields": {"code_postal": "04420", "code_commune_insee": "04155", "libell_d_acheminement": "PRADS HAUTE BLEONE", "ligne_5": "MARIAUD", "nom_de_la_commune": "PRADS HAUTE BLEONE", "coordonnees_gps": [44.1915370123, 6.39634951994]}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fec2a25abc7a31791bf87b84af39cfa648daa75", "fields": {"code_postal": "04380", "code_commune_insee": "04177", "libell_d_acheminement": "HAUTES DUYES", "ligne_5": "AURIBEAU", "nom_de_la_commune": "HAUTES DUYES", "coordonnees_gps": [44.1606174491, 6.13108296701]}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42dca5e76a4950b3052853418372343a4605a84c", "fields": {"code_postal": "04340", "code_commune_insee": "04161", "libell_d_acheminement": "MEOLANS REVEL", "ligne_5": "REVEL", "nom_de_la_commune": "MEOLANS REVEL", "coordonnees_gps": [44.4048142358, 6.43134796483]}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91a61bda7f707a73b252425d765a3aa8dca1ccb", "fields": {"nom_de_la_commune": "REVEST DES BROUSSES", "libell_d_acheminement": "REVEST DES BROUSSES", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04162"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ce0819f89e9e8bc4375fbff1a3fd0a0886f8fa", "fields": {"nom_de_la_commune": "PRADS HAUTE BLEONE", "libell_d_acheminement": "PRADS HAUTE BLEONE", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04155"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32339f442b3d2b87e236a03703b7b8643d72ae7c", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "04170"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82369bd16e524c0f184fe7d31a37f26a915aa3bd", "fields": {"nom_de_la_commune": "PUIMOISSON", "libell_d_acheminement": "PUIMOISSON", "code_postal": "04410", "coordonnees_gps": [43.8849946548, 6.15663492635], "code_commune_insee": "04157"}, "geometry": {"type": "Point", "coordinates": [6.15663492635, 43.8849946548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1387cc54ae275786c4e6691b4039ccaa5e70189f", "fields": {"nom_de_la_commune": "REDORTIERS", "libell_d_acheminement": "REDORTIERS", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04159"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03f6e537b4d33a5e95cf30085715c480352959f", "fields": {"nom_de_la_commune": "CROS DE GEORAND", "libell_d_acheminement": "CROS DE GEORAND", "code_postal": "07630", "coordonnees_gps": [44.823196527, 4.12827779008], "code_commune_insee": "07075"}, "geometry": {"type": "Point", "coordinates": [4.12827779008, 44.823196527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fcff40ef1d4476cf0c08ef971aaaf01cf0b3f7", "fields": {"nom_de_la_commune": "CHATEAUBOURG", "libell_d_acheminement": "CHATEAUBOURG", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07059"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c5b1c464f2fd614c375378a63c508fb727cc6f", "fields": {"nom_de_la_commune": "CHANDOLAS", "libell_d_acheminement": "CHANDOLAS", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07053"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7258f3b1e3bf5d4d3f1d32b0a4ac882e3a6efe1", "fields": {"nom_de_la_commune": "CHALENCON", "libell_d_acheminement": "CHALENCON", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07048"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8b09950ff611a8e6f0e101e4b6c6b565ccf12b", "fields": {"nom_de_la_commune": "CHAMPAGNE", "libell_d_acheminement": "CHAMPAGNE", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07051"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b3f912245fe7c7cb9c12b82651bdcfba6ac782", "fields": {"nom_de_la_commune": "CHIROLS", "libell_d_acheminement": "CHIROLS", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07065"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a041d119b254d6f573df5622b03c351a4d79cfe", "fields": {"nom_de_la_commune": "DARBRES", "libell_d_acheminement": "DARBRES", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07077"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e25d43cfee30aba7fe7d48ac847aef316bd6d0f", "fields": {"nom_de_la_commune": "CHAMPIS", "libell_d_acheminement": "CHAMPIS", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07052"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4162206ee4e84d851cff00079c0ba78b8500b1", "fields": {"nom_de_la_commune": "BOZAS", "libell_d_acheminement": "BOZAS", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07039"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717e35f809d59fd5ef653b714339937388e14db1", "fields": {"code_postal": "08390", "code_commune_insee": "08116", "libell_d_acheminement": "BAIRON ET SES ENVIRONS", "ligne_5": "LOUVERGNY", "nom_de_la_commune": "BAIRON ET SES ENVIRONS", "coordonnees_gps": [49.5311407275, 4.82165471787]}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bee62b8a03aa3612134b561f2bf05a6103ce17b", "fields": {"code_postal": "08220", "code_commune_insee": "08113", "libell_d_acheminement": "CHAUMONT PORCIEN", "ligne_5": "WADIMONT", "nom_de_la_commune": "CHAUMONT PORCIEN", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a5a395bfcb9dffeb5e50a445e56f527b612c8b", "fields": {"code_postal": "08450", "code_commune_insee": "08115", "libell_d_acheminement": "CHEMERY CHEHERY", "ligne_5": "MALMY", "nom_de_la_commune": "CHEMERY CHEHERY", "coordonnees_gps": [49.6051172684, 4.92625814673]}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318abb31542ffde83e09d882d77de1d0627cdee7", "fields": {"code_postal": "08240", "code_commune_insee": "08089", "libell_d_acheminement": "BUZANCY", "ligne_5": "SIVRY LES BUZANCY", "nom_de_la_commune": "BUZANCY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43270a79af741aa40428b516071cb5cdd4142ea7", "fields": {"nom_de_la_commune": "CHATEAU PORCIEN", "libell_d_acheminement": "CHATEAU PORCIEN", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08107"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d53d96412e89cb29364b921a0deb5010c09c951", "fields": {"nom_de_la_commune": "CHEMERY CHEHERY", "libell_d_acheminement": "CHEMERY CHEHERY", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08115"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cf4bef92d407f8118ee12b02007bf1916e45ac", "fields": {"nom_de_la_commune": "BRECY BRIERES", "libell_d_acheminement": "BRECY BRIERES", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08082"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a450289a331a1ff40f9f4e0c736842776340100", "fields": {"nom_de_la_commune": "CHALLERANGE", "libell_d_acheminement": "CHALLERANGE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08097"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0817721f8166c74648f2f9158319075ae8637cea", "fields": {"nom_de_la_commune": "CHEVIERES", "libell_d_acheminement": "CHEVIERES", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08120"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b808e5dca9161895f826fdd6a06beff6c2e145", "fields": {"nom_de_la_commune": "CHARDENY", "libell_d_acheminement": "CHARDENY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08104"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f9f9625975db0a773f3cd36dfdd60cdf4c08e7b", "fields": {"code_postal": "08260", "code_commune_insee": "08169", "libell_d_acheminement": "FLAIGNES HAVYS", "ligne_5": "HAVYS", "nom_de_la_commune": "FLAIGNES HAVYS", "coordonnees_gps": [49.8443145713, 4.39580518668]}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d7a332c34d802c6367c421bf3202e0602cbd55", "fields": {"code_postal": "08600", "code_commune_insee": "08183", "libell_d_acheminement": "FROMELENNES", "ligne_5": "FLOHIMONT", "nom_de_la_commune": "FROMELENNES", "coordonnees_gps": [50.1133571937, 4.82014456381]}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f6102fbce1d9e644918f4378d2a6fdd1547b6b", "fields": {"nom_de_la_commune": "GUIGNICOURT SUR VENCE", "libell_d_acheminement": "GUIGNICOURT SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08203"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1bf4f981dd3d59399dd3e010741da2f1da8679", "fields": {"nom_de_la_commune": "LA FRANCHEVILLE", "libell_d_acheminement": "LA FRANCHEVILLE", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08180"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88430a7c17c1e7585e165b8be883f070ef356862", "fields": {"nom_de_la_commune": "GRIVY LOISY", "libell_d_acheminement": "GRIVY LOISY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08200"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f879f05f0b80937e88196bac80e791bb180e5841", "fields": {"nom_de_la_commune": "HARAUCOURT", "libell_d_acheminement": "HARAUCOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08211"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ab6757f3e9422270969974900f62633bc9abec", "fields": {"nom_de_la_commune": "HERBEUVAL", "libell_d_acheminement": "HERBEUVAL", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08223"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059ae6cda457337c1a6f538b893c6760773ec9e8", "fields": {"nom_de_la_commune": "HAUVINE", "libell_d_acheminement": "HAUVINE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08220"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2db93bd0adc53ed053218c6a83d36eb0182fa6c", "fields": {"nom_de_la_commune": "FLIGNY", "libell_d_acheminement": "FLIGNY", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08172"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc83057298fd4f34a918a352f20744105679f9d", "fields": {"code_postal": "08800", "code_commune_insee": "08242", "libell_d_acheminement": "LAIFOUR", "ligne_5": "LA PETITE COMMUNE", "nom_de_la_commune": "LAIFOUR", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebd3fc8cc21573705dd59ed8bff2b77e1faac64", "fields": {"nom_de_la_commune": "ISSANCOURT ET RUMEL", "libell_d_acheminement": "ISSANCOURT ET RUMEL", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08235"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e974f4e7fa8606860ef30b55fb4b737f6ceeb10e", "fields": {"nom_de_la_commune": "HERPY L ARLESIENNE", "libell_d_acheminement": "HERPY L ARLESIENNE", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08225"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac630b7f54b8d81a84ccad7a70c6a5dafd72be3b", "fields": {"nom_de_la_commune": "MARS SOUS BOURCQ", "libell_d_acheminement": "MARS SOUS BOURCQ", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08279"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122a00d3853143b0447894ff9cf842f8324f37b6", "fields": {"nom_de_la_commune": "LAVAL MORENCY", "libell_d_acheminement": "LAVAL MORENCY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08249"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446214160e5f9589c81cdbbc6f9145a99f7036ab", "fields": {"nom_de_la_commune": "MARQUIGNY", "libell_d_acheminement": "MARQUIGNY", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08278"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acce2367d618dc2c48d92bb3580cc54a427b4e90", "fields": {"nom_de_la_commune": "MALANDRY", "libell_d_acheminement": "MALANDRY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08269"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9238e88f60a1465a37407dae3e34bb62dc2d4f93", "fields": {"nom_de_la_commune": "LUCQUY", "libell_d_acheminement": "LUCQUY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08262"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba05718e90a989c38adb509f5164da04198d5dc", "fields": {"nom_de_la_commune": "LANCON", "libell_d_acheminement": "LANCON", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08245"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b98064115015391998154673f651e35f986a0d0", "fields": {"nom_de_la_commune": "ILLY", "libell_d_acheminement": "ILLY", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08232"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7893d1f66eab273773181d0708d419284e0448da", "fields": {"code_postal": "08300", "code_commune_insee": "08362", "libell_d_acheminement": "RETHEL", "ligne_5": "PARGNY RESSON", "nom_de_la_commune": "RETHEL", "coordonnees_gps": [49.4890710736, 4.33770775217]}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fb94de2ea5a09015cb8591e2274e409a52ee0c", "fields": {"code_postal": "08230", "code_commune_insee": "08367", "libell_d_acheminement": "ROCROI", "ligne_5": "HONGREAU", "nom_de_la_commune": "ROCROI", "coordonnees_gps": [49.9157903394, 4.51147538743]}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43df4adc9444358ce8d6bd7e83a056b9624f982f", "fields": {"nom_de_la_commune": "ST LAMBERT ET MONT DE JEUX", "libell_d_acheminement": "ST LAMBERT ET MONT DE JEUX", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08384"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc6268db1d57d70b65ef642a59692b2b2e7d352", "fields": {"nom_de_la_commune": "ST LOUP EN CHAMPAGNE", "libell_d_acheminement": "ST LOUP EN CHAMPAGNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08386"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ff0b212d46bc09a0b15a951b02243bd7582830", "fields": {"nom_de_la_commune": "ST REMY LE PETIT", "libell_d_acheminement": "ST REMY LE PETIT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08397"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f547af88d89c3b21698be8c68a4819309974abf3", "fields": {"nom_de_la_commune": "PRIX LES MEZIERES", "libell_d_acheminement": "PRIX LES MEZIERES", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08346"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63125d7b867cb6f02593562527f80d4302c744b", "fields": {"nom_de_la_commune": "REMAUCOURT", "libell_d_acheminement": "REMAUCOURT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08356"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a84c28c53cec741b1528bc69b6bd88593bb2c9", "fields": {"nom_de_la_commune": "ST FERGEUX", "libell_d_acheminement": "ST FERGEUX", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08380"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5525708e7452f3236b92cca13d271a6d7f2469", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08385"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6e461b7d736aacbd631411a5b7e148b51fcb08", "fields": {"nom_de_la_commune": "ST MARCEAU", "libell_d_acheminement": "ST MARCEAU", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08388"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77716467a2e2c78304a48e4a9ec07251ff2e617d", "fields": {"code_postal": "08800", "code_commune_insee": "08302", "libell_d_acheminement": "MONTHERME", "ligne_5": "PHADE", "nom_de_la_commune": "MONTHERME", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d450225d380e0796bb29bda42c4d9870d7bfaba4", "fields": {"code_postal": "08240", "code_commune_insee": "08326", "libell_d_acheminement": "NOUART", "ligne_5": "LE CHAMPY", "nom_de_la_commune": "NOUART", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edabbc9e5bae3c0e3d2585134c824003ca265d8c", "fields": {"code_postal": "08210", "code_commune_insee": "08311", "libell_d_acheminement": "MOUZON", "ligne_5": "AMBLIMONT", "nom_de_la_commune": "MOUZON", "coordonnees_gps": [49.5753580184, 5.05747412854]}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "248262ad423f2680eb575bc5582bdfa30efe0862", "fields": {"nom_de_la_commune": "LA NEUVILLE A MAIRE", "libell_d_acheminement": "LA NEUVILLE A MAIRE", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08317"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc6631819c3d51dded5c8566b2976b19d93807a", "fields": {"nom_de_la_commune": "NANTEUIL SUR AISNE", "libell_d_acheminement": "NANTEUIL SUR AISNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08313"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f435457bb74c4fbe94ce06da63be4093d60b9c0", "fields": {"nom_de_la_commune": "MONTIGNY SUR MEUSE", "libell_d_acheminement": "MONTIGNY SUR MEUSE", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08304"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38aae79d789217a78b360d897fb945bd0e8f3ff7", "fields": {"nom_de_la_commune": "MONTCHEUTIN", "libell_d_acheminement": "MONTCHEUTIN", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08296"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3b6897ef3cdb6b646b87c7b311490f339c7d563", "fields": {"nom_de_la_commune": "LA MONCELLE", "libell_d_acheminement": "LA MONCELLE", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08294"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8752a5bb1c27bd32a199c2ed4cdd83062a1e17cd", "fields": {"nom_de_la_commune": "NOUART", "libell_d_acheminement": "NOUART", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08326"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffc8c1825fedb570fcc6bb329494ebb19d50be4e", "fields": {"nom_de_la_commune": "OSNES", "libell_d_acheminement": "OSNES", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08336"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977927820b135b8cc74314a18d3cc9557aab8377", "fields": {"code_postal": "08460", "code_commune_insee": "08419", "libell_d_acheminement": "SIGNY L ABBAYE", "ligne_5": "LIBRECY", "nom_de_la_commune": "SIGNY L ABBAYE", "coordonnees_gps": [49.7134288186, 4.4616721559]}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7a83bd9a749ad15b01e0fdd51c8d339183b45f", "fields": {"code_postal": "08220", "code_commune_insee": "08413", "libell_d_acheminement": "SERAINCOURT", "ligne_5": "FOREST", "nom_de_la_commune": "SERAINCOURT", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0fd50c925674cac9377f1aca3fb21ca9028445b", "fields": {"nom_de_la_commune": "SEVIGNY LA FORET", "libell_d_acheminement": "SEVIGNY LA FORET", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08417"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2f6576e37f58c4632b25fb0ca3d612b99aa711", "fields": {"nom_de_la_commune": "SIGNY L ABBAYE", "libell_d_acheminement": "SIGNY L ABBAYE", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08419"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140012bf1865c86a68f9a42bbcf188aaad77f05c", "fields": {"nom_de_la_commune": "SEMIDE", "libell_d_acheminement": "SEMIDE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08410"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf85e145dc8dc60f1757bc4ff7d320e36eb3b369", "fields": {"nom_de_la_commune": "SEMUY", "libell_d_acheminement": "SEMUY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08411"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cbabb7abc8785e2a979789ef51ba0d71741e09d", "fields": {"code_postal": "08240", "code_commune_insee": "08437", "libell_d_acheminement": "TAILLY", "ligne_5": "REMONVILLE", "nom_de_la_commune": "TAILLY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f8c97a1c35fec656f77963bf8a042359cb221c", "fields": {"nom_de_la_commune": "THENORGUES", "libell_d_acheminement": "THENORGUES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08446"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4fb44e39994f0a654349365a3016bfd2214636", "fields": {"nom_de_la_commune": "THELONNE", "libell_d_acheminement": "THELONNE", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08445"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec8f507221b953e7b96b39160567b536702c277a", "fields": {"nom_de_la_commune": "LE THOUR", "libell_d_acheminement": "LE THOUR", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08451"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c202e815778aa3aa410d14c7ababf61aaa74f7e", "fields": {"nom_de_la_commune": "TOURNES", "libell_d_acheminement": "TOURNES", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08457"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc602d817eb333669a2e270fabf20cfa499a4731", "fields": {"nom_de_la_commune": "TANNAY", "libell_d_acheminement": "TANNAY", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08439"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99b90170fab32a08cbced63dac79664ccc6b262", "fields": {"nom_de_la_commune": "SINGLY", "libell_d_acheminement": "SINGLY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08422"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f05c73bbfd498eb9c6940d282e48fa03d99c49b", "fields": {"nom_de_la_commune": "TAIZY", "libell_d_acheminement": "TAIZY", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08438"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425d5e0098bfe2094067f671f38b6a628c552b0e", "fields": {"nom_de_la_commune": "TOGES", "libell_d_acheminement": "TOGES", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08453"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77ae3e24dcee79a46c68ebe68198d32d20d39cb", "fields": {"nom_de_la_commune": "TREMBLOIS LES ROCROI", "libell_d_acheminement": "TREMBLOIS LES ROCROI", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08460"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87253d92e89736684b5f2d0dd956ccd0b89c1061", "fields": {"nom_de_la_commune": "VILLERS LE TOURNEUR", "libell_d_acheminement": "VILLERS LE TOURNEUR", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08479"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d0ad655fb5c0837a0308b97d018dfd923cfa1a4", "fields": {"nom_de_la_commune": "VAUX EN DIEULET", "libell_d_acheminement": "VAUX EN DIEULET", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08463"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b434fe09094b283094410bee693efa8188f6c4", "fields": {"nom_de_la_commune": "VAUX LES MOURON", "libell_d_acheminement": "VAUX LES MOURON", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08464"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c9d4b94f8bd488d37ad4c42be234d88844a43c", "fields": {"nom_de_la_commune": "VIREUX MOLHAIN", "libell_d_acheminement": "VIREUX MOLHAIN", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08486"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c692010797ca5dfafd64f044c25b3b95cef0e94", "fields": {"nom_de_la_commune": "AIGUES JUNTES", "libell_d_acheminement": "AIGUES JUNTES", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09001"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbef78120e72263fc12ac70388b98599b64eef88", "fields": {"nom_de_la_commune": "ALLIERES", "libell_d_acheminement": "ALLIERES", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09007"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb22594df73a882a56f3accf9afc938584890fa7", "fields": {"nom_de_la_commune": "ARIGNAC", "libell_d_acheminement": "ARIGNAC", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09015"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f92a48bc3afc782c71f8fcbab9d76801908297", "fields": {"nom_de_la_commune": "MONTCLAR", "libell_d_acheminement": "MONTCLAR", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12149"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bd2056046544371683b0e2173616500f8b2607", "fields": {"nom_de_la_commune": "MONTROZIER", "libell_d_acheminement": "MONTROZIER", "code_postal": "12630", "coordonnees_gps": [44.3813386273, 2.71254776972], "code_commune_insee": "12157"}, "geometry": {"type": "Point", "coordinates": [2.71254776972, 44.3813386273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58f701921b7cbd33891ce8fbb47deb4ead6df23b", "fields": {"nom_de_la_commune": "MUROLS", "libell_d_acheminement": "MUROLS", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12166"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d7edc50c395956a4612c3c1dba9d0332f5aa58", "fields": {"code_postal": "12850", "code_commune_insee": "12176", "libell_d_acheminement": "ONET LE CHATEAU", "ligne_5": "QUATRE SAISONS", "nom_de_la_commune": "ONET LE CHATEAU", "coordonnees_gps": [44.3602453055, 2.59175422847]}, "geometry": {"type": "Point", "coordinates": [2.59175422847, 44.3602453055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b7bb343e8cff858ebf72eb0ad061bfdf446958", "fields": {"code_postal": "12340", "code_commune_insee": "12177", "libell_d_acheminement": "PALMAS D AVEYRON", "ligne_5": "CRUEJOULS", "nom_de_la_commune": "PALMAS D AVEYRON", "coordonnees_gps": [44.4656002773, 2.70710459278]}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4141be0ccf486452b49f7a0de1dec43e236e76a9", "fields": {"nom_de_la_commune": "PAULHE", "libell_d_acheminement": "PAULHE", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12178"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d2078846341f707353214260411cfba668bb18", "fields": {"nom_de_la_commune": "PIERREFICHE", "libell_d_acheminement": "PIERREFICHE", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12182"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aeb0566b191459d89d9b1a10ecf025aecc2f960", "fields": {"nom_de_la_commune": "PRIVEZAC", "libell_d_acheminement": "PRIVEZAC", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12191"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b332ad7752a813fce59bfc059edcf65ad49a73", "fields": {"code_postal": "12800", "code_commune_insee": "12194", "libell_d_acheminement": "QUINS", "ligne_5": "LA MOTHE", "nom_de_la_commune": "QUINS", "coordonnees_gps": [44.1851158215, 2.33730989448]}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa96193866ca789c50bc7788b199b656008285d", "fields": {"nom_de_la_commune": "RIGNAC", "libell_d_acheminement": "RIGNAC", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12199"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c317059af79523d8f064cfbb5c706b180af7457", "fields": {"nom_de_la_commune": "RULLAC ST CIRQ", "libell_d_acheminement": "RULLAC ST CIRQ", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12207"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8a4f4275f3a14e984e6f63311048ffb937622d", "fields": {"nom_de_la_commune": "ST BEAULIZE", "libell_d_acheminement": "ST BEAULIZE", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12212"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d883c7bf159a5a0312f1f9aa9168da85ec18f1", "fields": {"nom_de_la_commune": "STE EULALIE D OLT", "libell_d_acheminement": "STE EULALIE D OLT", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12219"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6ad6e279717e9e7aea7dc5e2f5141ec2116e1c", "fields": {"nom_de_la_commune": "STE EULALIE DE CERNON", "libell_d_acheminement": "STE EULALIE DE CERNON", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12220"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcec055b5d117300579cbbe5c8d0babf3b45b0a7", "fields": {"code_postal": "12210", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "ALPUECH", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.6915069372, 2.81638954446]}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcda1f6e362d7f285deb0b520cf8e6be44deefb", "fields": {"nom_de_la_commune": "ST GEORGES DE LUZENCON", "libell_d_acheminement": "ST GEORGES DE LUZENCON", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12225"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40caf1b36ac7db1059bef492dedea45e3f18e2be", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12226"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c106e291bec7a4e4beadc91ed3e5a5ead3d402", "fields": {"nom_de_la_commune": "ST IGEST", "libell_d_acheminement": "ST IGEST", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12227"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f8b68d94dcecf0fdf777a588c00877ed1a89a9d", "fields": {"nom_de_la_commune": "ST JEAN DELNOUS", "libell_d_acheminement": "ST JEAN DELNOUS", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12230"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5504d18e7bccfd4068b829e789cb53af9077e05a", "fields": {"nom_de_la_commune": "ST JUST SUR VIAUR", "libell_d_acheminement": "ST JUST SUR VIAUR", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12235"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e36ce7634af8fd98fd1e40b476480f1b177c30", "fields": {"nom_de_la_commune": "ST LAURENT DE LEVEZOU", "libell_d_acheminement": "ST LAURENT DE LEVEZOU", "code_postal": "12620", "coordonnees_gps": [44.1639182272, 2.94123371794], "code_commune_insee": "12236"}, "geometry": {"type": "Point", "coordinates": [2.94123371794, 44.1639182272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe1c0d46f957f95be746187d1d60a4abf97a19d", "fields": {"nom_de_la_commune": "ST PARTHEM", "libell_d_acheminement": "ST PARTHEM", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12240"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da03fa4837746f227ea9be40752e4f9d8733cfcb", "fields": {"nom_de_la_commune": "SALLES LA SOURCE", "libell_d_acheminement": "SALLES LA SOURCE", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12254"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb0d11f6a4e96794b9c5bab04954f4af00039ce", "fields": {"nom_de_la_commune": "SEBAZAC CONCOURES", "libell_d_acheminement": "SEBAZAC CONCOURES", "code_postal": "12740", "coordonnees_gps": [44.4071370966, 2.63127194747], "code_commune_insee": "12264"}, "geometry": {"type": "Point", "coordinates": [2.63127194747, 44.4071370966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76c69b8921905296c9db1374ee8cbd057b195cc", "fields": {"nom_de_la_commune": "SEBRAZAC", "libell_d_acheminement": "SEBRAZAC", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12265"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9643b07fa9a2e15281f3c2b14c21042e0e45254", "fields": {"nom_de_la_commune": "TAUSSAC", "libell_d_acheminement": "TAUSSAC", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12277"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "679accb8fe73875d30e78428c54ad8638d732936", "fields": {"nom_de_la_commune": "TAYRAC", "libell_d_acheminement": "TAYRAC", "code_postal": "12440", "coordonnees_gps": [44.2188237556, 2.19456712254], "code_commune_insee": "12278"}, "geometry": {"type": "Point", "coordinates": [2.19456712254, 44.2188237556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940f11055dfaf9a65b6437e96b89638e2bc88995", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12291"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e37c28fb290101b6864ae8bf26493821349b99", "fields": {"nom_de_la_commune": "VEYREAU", "libell_d_acheminement": "VEYREAU", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12293"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f1111ef1a46ac0759ad991a331d12b9902dc19", "fields": {"nom_de_la_commune": "VIALA DU PAS DE JAUX", "libell_d_acheminement": "VIALA DU PAS DE JAUX", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12295"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c030f2e91dd3568cdef8453e64de44d2207ec2", "fields": {"nom_de_la_commune": "VIMENET", "libell_d_acheminement": "VIMENET", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12303"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce134c39d550773134c4aeb96be0b6769bfb55f4", "fields": {"code_postal": "13540", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "PUYRICARD", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5360221556, 5.3983786513]}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31ce4f2f45df397179e26c897c5c6e5d86a24ad", "fields": {"code_postal": "13129", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "SALIN DE GIRAUD", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1db68dedc9181c7c1bda0befa3798865401df54", "fields": {"code_postal": "13280", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "MOULES", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77007b115bf8a7b2ffb4bc8600749928c5e0785b", "fields": {"nom_de_la_commune": "BARBENTANE", "libell_d_acheminement": "BARBENTANE", "code_postal": "13570", "coordonnees_gps": [43.8946430262, 4.749492461], "code_commune_insee": "13010"}, "geometry": {"type": "Point", "coordinates": [4.749492461, 43.8946430262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6daf5de9fe4e232dd2fac4f17ab12a073e049344", "fields": {"nom_de_la_commune": "BERRE L ETANG", "libell_d_acheminement": "BERRE L ETANG", "code_postal": "13130", "coordonnees_gps": [43.5038264894, 5.16082559313], "code_commune_insee": "13014"}, "geometry": {"type": "Point", "coordinates": [5.16082559313, 43.5038264894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb4a1d4d9c32e024b249a78fba226110be0cf20b", "fields": {"nom_de_la_commune": "BOUC BEL AIR", "libell_d_acheminement": "BOUC BEL AIR", "code_postal": "13320", "coordonnees_gps": [43.44709567, 5.41278086105], "code_commune_insee": "13015"}, "geometry": {"type": "Point", "coordinates": [5.41278086105, 43.44709567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3f38a9eaf6d5acfee8efe3783795c2421c5df55", "fields": {"nom_de_la_commune": "CABANNES", "libell_d_acheminement": "CABANNES", "code_postal": "13440", "coordonnees_gps": [43.8590936432, 4.95774539793], "code_commune_insee": "13018"}, "geometry": {"type": "Point", "coordinates": [4.95774539793, 43.8590936432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ce92a6ebac4fefae06b327ba88015717ada0d8", "fields": {"nom_de_la_commune": "CEYRESTE", "libell_d_acheminement": "CEYRESTE", "code_postal": "13600", "coordonnees_gps": [43.2057739447, 5.6225082578], "code_commune_insee": "13023"}, "geometry": {"type": "Point", "coordinates": [5.6225082578, 43.2057739447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a33aa1b1fbcb19aad1cbcde503b7950614e63f", "fields": {"nom_de_la_commune": "ENSUES LA REDONNE", "libell_d_acheminement": "ENSUES LA REDONNE", "code_postal": "13820", "coordonnees_gps": [43.3537890025, 5.19969508788], "code_commune_insee": "13033"}, "geometry": {"type": "Point", "coordinates": [5.19969508788, 43.3537890025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa054497181ba90243a1d1b53fc20f28b6db4be", "fields": {"nom_de_la_commune": "EYGUIERES", "libell_d_acheminement": "EYGUIERES", "code_postal": "13430", "coordonnees_gps": [43.7025400757, 5.01572210445], "code_commune_insee": "13035"}, "geometry": {"type": "Point", "coordinates": [5.01572210445, 43.7025400757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3202233ef040a62dcd4b3907d6dad19e86075a7f", "fields": {"nom_de_la_commune": "EYRAGUES", "libell_d_acheminement": "EYRAGUES", "code_postal": "13630", "coordonnees_gps": [43.8430965536, 4.84389669406], "code_commune_insee": "13036"}, "geometry": {"type": "Point", "coordinates": [4.84389669406, 43.8430965536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9bb60362f1cd16866a737b0260bf7af8d55793", "fields": {"code_postal": "13120", "code_commune_insee": "13041", "libell_d_acheminement": "GARDANNE", "ligne_5": "BIVER", "nom_de_la_commune": "GARDANNE", "coordonnees_gps": [43.4527470657, 5.47999296124]}, "geometry": {"type": "Point", "coordinates": [5.47999296124, 43.4527470657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbc30520eb53009a40e2192ef2e781b0b2d8307", "fields": {"nom_de_la_commune": "GEMENOS", "libell_d_acheminement": "GEMENOS", "code_postal": "13420", "coordonnees_gps": [43.2982409252, 5.64453739923], "code_commune_insee": "13042"}, "geometry": {"type": "Point", "coordinates": [5.64453739923, 43.2982409252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8dd212071a43b937d06f370a9c03f01cc2590e", "fields": {"nom_de_la_commune": "GIGNAC LA NERTHE", "libell_d_acheminement": "GIGNAC LA NERTHE", "code_postal": "13180", "coordonnees_gps": [43.390482869, 5.22788588973], "code_commune_insee": "13043"}, "geometry": {"type": "Point", "coordinates": [5.22788588973, 43.390482869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7820e9820b190731dc8a94b1d9b570c5c6815192", "fields": {"nom_de_la_commune": "GRAVESON", "libell_d_acheminement": "GRAVESON", "code_postal": "13690", "coordonnees_gps": [43.8539709841, 4.76690510609], "code_commune_insee": "13045"}, "geometry": {"type": "Point", "coordinates": [4.76690510609, 43.8539709841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73ea2f925f81d51335fd59bc7338af62034e3b5", "fields": {"nom_de_la_commune": "GREASQUE", "libell_d_acheminement": "GREASQUE", "code_postal": "13850", "coordonnees_gps": [43.4267657218, 5.54724216538], "code_commune_insee": "13046"}, "geometry": {"type": "Point", "coordinates": [5.54724216538, 43.4267657218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca048281f9d039a1d4ecae7c24b6ebbc891424bc", "fields": {"nom_de_la_commune": "ST PIERRE DE MEZOARGUES", "libell_d_acheminement": "ST PIERRE DE MEZOARGUES", "code_postal": "13150", "coordonnees_gps": [43.811635575, 4.68697564727], "code_commune_insee": "13061"}, "geometry": {"type": "Point", "coordinates": [4.68697564727, 43.811635575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "073dbc0ebcbc8d4707478ba29bb4d1e8eb543c9f", "fields": {"nom_de_la_commune": "MIMET", "libell_d_acheminement": "MIMET", "code_postal": "13105", "coordonnees_gps": [43.4125486694, 5.49850212317], "code_commune_insee": "13062"}, "geometry": {"type": "Point", "coordinates": [5.49850212317, 43.4125486694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2ee4f650f5997b24825fc82480cbfc52aea560c", "fields": {"nom_de_la_commune": "PEYNIER", "libell_d_acheminement": "PEYNIER", "code_postal": "13790", "coordonnees_gps": [43.466397869, 5.61228660864], "code_commune_insee": "13072"}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e6907a1ca34d457d2772153aae3eb2f02d87526", "fields": {"nom_de_la_commune": "PORT ST LOUIS DU RHONE", "libell_d_acheminement": "PORT ST LOUIS DU RHONE", "code_postal": "13230", "coordonnees_gps": [43.4159102575, 4.80600123608], "code_commune_insee": "13078"}, "geometry": {"type": "Point", "coordinates": [4.80600123608, 43.4159102575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f108dd3827b69ccc07eb1ef265334e3bf0c8d668", "fields": {"nom_de_la_commune": "LA ROQUE D ANTHERON", "libell_d_acheminement": "LA ROQUE D ANTHERON", "code_postal": "13640", "coordonnees_gps": [43.717611873, 5.3021029918], "code_commune_insee": "13084"}, "geometry": {"type": "Point", "coordinates": [5.3021029918, 43.717611873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae971cc9a3745a504af96d7d6f3eb616a95510ab", "fields": {"nom_de_la_commune": "ROQUEFORT LA BEDOULE", "libell_d_acheminement": "ROQUEFORT LA BEDOULE", "code_postal": "13830", "coordonnees_gps": [43.2511968677, 5.62904629531], "code_commune_insee": "13085"}, "geometry": {"type": "Point", "coordinates": [5.62904629531, 43.2511968677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5d768c6030c551c9ef6fb20053ad02f3989ac5", "fields": {"code_postal": "13740", "code_commune_insee": "13088", "libell_d_acheminement": "LE ROVE", "ligne_5": "LE DOUARD", "nom_de_la_commune": "LE ROVE", "coordonnees_gps": [43.3653006845, 5.25320648556]}, "geometry": {"type": "Point", "coordinates": [5.25320648556, 43.3653006845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d564ff51b7c15635a044939a71bdd6c3a825bce", "fields": {"nom_de_la_commune": "ST MARTIN DE CRAU", "libell_d_acheminement": "ST MARTIN DE CRAU", "code_postal": "13310", "coordonnees_gps": [43.6121626168, 4.85649120656], "code_commune_insee": "13097"}, "geometry": {"type": "Point", "coordinates": [4.85649120656, 43.6121626168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccb2736430d6a692adb5d9c056ad5e1a1380ed3", "fields": {"nom_de_la_commune": "SAUSSET LES PINS", "libell_d_acheminement": "SAUSSET LES PINS", "code_postal": "13960", "coordonnees_gps": [43.3457310767, 5.11745553052], "code_commune_insee": "13104"}, "geometry": {"type": "Point", "coordinates": [5.11745553052, 43.3457310767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e897399c911327c810ff71e125851d981fa650d2", "fields": {"nom_de_la_commune": "SIMIANE COLLONGUE", "libell_d_acheminement": "SIMIANE COLLONGUE", "code_postal": "13109", "coordonnees_gps": [43.4114697377, 5.43791091838], "code_commune_insee": "13107"}, "geometry": {"type": "Point", "coordinates": [5.43791091838, 43.4114697377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed8f2205e6f74d6b7bee550be8980d2d352bff5", "fields": {"nom_de_la_commune": "TRETS", "libell_d_acheminement": "TRETS", "code_postal": "13530", "coordonnees_gps": [43.4378404321, 5.70012599644], "code_commune_insee": "13110"}, "geometry": {"type": "Point", "coordinates": [5.70012599644, 43.4378404321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d399eb9bc7e0f3ca4aa00d252da229e017ba86", "fields": {"code_postal": "13530", "code_commune_insee": "13110", "libell_d_acheminement": "TRETS", "ligne_5": "CADENET", "nom_de_la_commune": "TRETS", "coordonnees_gps": [43.4378404321, 5.70012599644]}, "geometry": {"type": "Point", "coordinates": [5.70012599644, 43.4378404321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab98e89d5ff311f13da07468fe541cb56c48685f", "fields": {"nom_de_la_commune": "MARSEILLE 02", "libell_d_acheminement": "MARSEILLE", "code_postal": "13002", "coordonnees_gps": [43.3127325556, 5.36355601234], "code_commune_insee": "13202"}, "geometry": {"type": "Point", "coordinates": [5.36355601234, 43.3127325556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786f4d6a0bb21af289daf9f7a4bb252ab897fd71", "fields": {"nom_de_la_commune": "MARSEILLE 05", "libell_d_acheminement": "MARSEILLE", "code_postal": "13005", "coordonnees_gps": [43.2924809562, 5.39796837854], "code_commune_insee": "13205"}, "geometry": {"type": "Point", "coordinates": [5.39796837854, 43.2924809562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb4c5a61cd18c5687c7730ed453680dc07e1d5b", "fields": {"code_postal": "13009", "code_commune_insee": "13209", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LES BAUMETTES", "nom_de_la_commune": "MARSEILLE 09", "coordonnees_gps": [43.2344717573, 5.45254070973]}, "geometry": {"type": "Point", "coordinates": [5.45254070973, 43.2344717573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3275d4d85e761685c97a8a0c831e2cb98054b5", "fields": {"code_postal": "13011", "code_commune_insee": "13211", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LA VALENTINE", "nom_de_la_commune": "MARSEILLE 11", "coordonnees_gps": [43.2885052354, 5.4838251453]}, "geometry": {"type": "Point", "coordinates": [5.4838251453, 43.2885052354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59d8e81c50077b127d63c8cfba2f59f9df38e7e3", "fields": {"nom_de_la_commune": "MARSEILLE 12", "libell_d_acheminement": "MARSEILLE", "code_postal": "13012", "coordonnees_gps": [43.3077980395, 5.43935485792], "code_commune_insee": "13212"}, "geometry": {"type": "Point", "coordinates": [5.43935485792, 43.3077980395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4c99e27b8cd54b79e4ed4b52b4c721d47334d3", "fields": {"nom_de_la_commune": "MARSEILLE 13", "libell_d_acheminement": "MARSEILLE", "code_postal": "13013", "coordonnees_gps": [43.3495227907, 5.43359654239], "code_commune_insee": "13213"}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4511ad0efbc39e21bca93545953c693f6b22514", "fields": {"nom_de_la_commune": "AIRAN", "libell_d_acheminement": "AIRAN", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14005"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb421cf42b62ffb25a52d864d1e996ac1673c89", "fields": {"nom_de_la_commune": "AMAYE SUR ORNE", "libell_d_acheminement": "AMAYE SUR ORNE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14006"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d31ffd5ecfe2fa1f5ccb04237b95034d11cbda5", "fields": {"nom_de_la_commune": "ANNEBAULT", "libell_d_acheminement": "ANNEBAULT", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14016"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e138764cc2778dc47a6ca01074e870e7d02d6f00", "fields": {"nom_de_la_commune": "LES AUTHIEUX PAPION", "libell_d_acheminement": "LES AUTHIEUX PAPION", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14031"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a89ce1902f6f46f022ea773b8d241e44c80871e", "fields": {"nom_de_la_commune": "AVENAY", "libell_d_acheminement": "AVENAY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14034"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd20f16e0fb6d9fe247ce2591a165e712ab56090", "fields": {"nom_de_la_commune": "BANNEVILLE LA CAMPAGNE", "libell_d_acheminement": "BANNEVILLE LA CAMPAGNE", "code_postal": "14940", "coordonnees_gps": [49.1833480619, -0.224513518796], "code_commune_insee": "14036"}, "geometry": {"type": "Point", "coordinates": [-0.224513518796, 49.1833480619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ca66eb06bcc5d390bec9516456ff2545012de1", "fields": {"nom_de_la_commune": "BASLY", "libell_d_acheminement": "BASLY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14044"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f6749549556a2cd2884e418685c2b011c1318d", "fields": {"nom_de_la_commune": "BASSENEVILLE", "libell_d_acheminement": "BASSENEVILLE", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14045"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3d0e6b92bf30ef6b68ed3351d31e42053a5a97", "fields": {"nom_de_la_commune": "BAYEUX", "libell_d_acheminement": "BAYEUX", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14047"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273474b643f61bab8e1eb1386c81a76ea3dac124", "fields": {"nom_de_la_commune": "BEAUMESNIL", "libell_d_acheminement": "BEAUMESNIL", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14054"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b1b709546bf23b66a8e2888886c2e6d8b1c86f", "fields": {"nom_de_la_commune": "BEAUMONT EN AUGE", "libell_d_acheminement": "BEAUMONT EN AUGE", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14055"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec80a8a2126bdbc9ada7debd0121d880ff5e8944", "fields": {"nom_de_la_commune": "BELLENGREVILLE", "libell_d_acheminement": "BELLENGREVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14057"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab1241ca0bef38a51c2007699b8a89b956cb45", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "BURES LES MONTS", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cfd0f5d0add2c079cf91e512b4382a1b0f808ce", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST OUEN DES BESACES", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115c83d922cc4fe1f15ad5149e80dd4777a220dd", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "STE MARIE LAUMONT", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f92ed99320e554d6ac8fdf15337d2fa53334e3", "fields": {"nom_de_la_commune": "LA BIGNE", "libell_d_acheminement": "LA BIGNE", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14073"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "837f915c3b7ee8cb0657908b40a8c27514fd7085", "fields": {"nom_de_la_commune": "BOISSEY", "libell_d_acheminement": "BOISSEY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14081"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5585015727d4174fd56843c79d475451beb722b4", "fields": {"nom_de_la_commune": "BRANVILLE", "libell_d_acheminement": "BRANVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14093"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245dc475179692daae6012f63c02a97a6abd4eb6", "fields": {"nom_de_la_commune": "LA CAMBE", "libell_d_acheminement": "LA CAMBE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14124"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b1cc9e50731d649c227c5b53b537eb4592ea39", "fields": {"nom_de_la_commune": "CAMBES EN PLAINE", "libell_d_acheminement": "CAMBES EN PLAINE", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14125"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e6f2229774fddfda615d45e57b550f217c049b", "fields": {"code_postal": "14340", "code_commune_insee": "14126", "libell_d_acheminement": "CAMBREMER", "ligne_5": "ST AUBIN SUR ALGOT", "nom_de_la_commune": "CAMBREMER", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519fe83b1a1e5aeef3cf09ebe34d2b80142be9ef", "fields": {"nom_de_la_commune": "CANTELOUP", "libell_d_acheminement": "CANTELOUP", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14134"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf8ca41f1fbd9568566a1abd77c33bf7e9d7764", "fields": {"nom_de_la_commune": "CARDONVILLE", "libell_d_acheminement": "CARDONVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14136"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebbc07ef051411973b58119ff68727407d20c9d", "fields": {"nom_de_la_commune": "CASTILLON EN AUGE", "libell_d_acheminement": "CASTILLON EN AUGE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14141"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9545f373624b35924833b151dd74c0b52871230c", "fields": {"nom_de_la_commune": "CASTILLY", "libell_d_acheminement": "CASTILLY", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14142"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee30d0381ef8744304b9b36656cbe1a40aa3826", "fields": {"nom_de_la_commune": "CAUMONT L EVENTE", "libell_d_acheminement": "CAUMONT L EVENTE", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14143"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f2b8c8c03c42bd10f3f29fa434ecb061c257e3", "fields": {"nom_de_la_commune": "CAUVICOURT", "libell_d_acheminement": "CAUVICOURT", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14145"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68b85c07b6662cbe25fd1842b89054fa94829c6", "fields": {"nom_de_la_commune": "CAUVILLE", "libell_d_acheminement": "CAUVILLE", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14146"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae8e4e0633472820642984031d9f4c0ba405774", "fields": {"nom_de_la_commune": "CESNY BOIS HALBOUT", "libell_d_acheminement": "CESNY BOIS HALBOUT", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14150"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8884b71d5a9ad119c5fe46e5a972cbc27bf3b2", "fields": {"nom_de_la_commune": "CHICHEBOVILLE", "libell_d_acheminement": "CHICHEBOVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14158"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a043edbb5c9f97077abffc1e1176176aad601443", "fields": {"nom_de_la_commune": "CLEVILLE", "libell_d_acheminement": "CLEVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14163"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dbced57f496a71bb46045ba30ec453ccddecb9", "fields": {"nom_de_la_commune": "CLINCHAMPS SUR ORNE", "libell_d_acheminement": "CLINCHAMPS SUR ORNE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14164"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a68cc3859c4c9f5c51da545e0c6fbfea8489c16", "fields": {"nom_de_la_commune": "COMMES", "libell_d_acheminement": "COMMES", "code_postal": "14520", "coordonnees_gps": [49.3400701436, -0.771788294928], "code_commune_insee": "14172"}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e0206e6d8e714c8f67a0f5d91b4c4c26c3727d", "fields": {"code_postal": "14110", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "ST GERMAIN DU CRIOULT", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.8603879133, -0.538857121596]}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842c17c6270bf00845b54389a64e28c59a0797df", "fields": {"code_postal": "14770", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "LA CHAPELLE ENGERBOLD", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d64f6c5a4fc1b0cbf1db72f2b865d96cf4256e", "fields": {"nom_de_la_commune": "ST MARTIN DE BAVEL", "libell_d_acheminement": "ST MARTIN DE BAVEL", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01372"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24cc1c7eae9ed85698438f73c7f390b39e8999fc", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01339"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9178dd9c04ae0a8a8be387ee3e08e79937ec6d3", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01371"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf2657c23a4e5f7018a30bfedcbc84dbb8510be", "fields": {"nom_de_la_commune": "ST ELOI", "libell_d_acheminement": "ST ELOI", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01349"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd217fea415d2bcca848900cbab0f8df1efb195", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01369"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bca6c7735634b626c29753e493b7ade4c22dd95", "fields": {"code_postal": "02370", "code_commune_insee": "02008", "libell_d_acheminement": "AIZY JOUY", "ligne_5": "JOUY", "nom_de_la_commune": "AIZY JOUY", "coordonnees_gps": [49.4107346804, 3.51937274632]}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869692d183dfa11c0e55fe1ccf8d95f9f55e8537", "fields": {"nom_de_la_commune": "AISONVILLE ET BERNOVILLE", "libell_d_acheminement": "AISONVILLE ET BERNOVILLE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02006"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ac9bbc421ff27180ad763eedd5aa7cd8201255", "fields": {"nom_de_la_commune": "VILLETTE SUR AIN", "libell_d_acheminement": "VILLETTE SUR AIN", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01449"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e6f0782222d0ab588517c103d306a81f1b1384", "fields": {"nom_de_la_commune": "AMIFONTAINE", "libell_d_acheminement": "AMIFONTAINE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02013"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ce69e9ecbdb3c2306fc53481616929db6bba90", "fields": {"nom_de_la_commune": "AGUILCOURT", "libell_d_acheminement": "AGUILCOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02005"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d7a9a5ef0e12a575ee15b188977954a37f8a97", "fields": {"nom_de_la_commune": "VILLEBOIS", "libell_d_acheminement": "VILLEBOIS", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01444"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241c656797dae0d3e6da4436232ee1b2cf76e6e3", "fields": {"nom_de_la_commune": "AIZY JOUY", "libell_d_acheminement": "AIZY JOUY", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02008"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ea6a6f8c89c3f39e5a751449f1e3a342368252", "fields": {"nom_de_la_commune": "VARAMBON", "libell_d_acheminement": "VARAMBON", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01430"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0c59d45c1aadfa9199062df81e5745560227b3", "fields": {"nom_de_la_commune": "TRAMOYES", "libell_d_acheminement": "TRAMOYES", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01424"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60af320298fa1ccaff4e64f9ea5f26a60e582f40", "fields": {"nom_de_la_commune": "VIRIAT", "libell_d_acheminement": "VIRIAT", "code_postal": "01440", "coordonnees_gps": [46.2508236356, 5.22311457024], "code_commune_insee": "01451"}, "geometry": {"type": "Point", "coordinates": [5.22311457024, 46.2508236356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a7607d08e2b51ce471e1218630cb455fc895b8", "fields": {"nom_de_la_commune": "AUBIGNY EN LAONNOIS", "libell_d_acheminement": "AUBIGNY EN LAONNOIS", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02033"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6713f80806aac71f4d4b898aedae195813f3934", "fields": {"nom_de_la_commune": "BARZY EN THIERACHE", "libell_d_acheminement": "BARZY EN THIERACHE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02050"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908b35408a6f1e4acfa1a8e50d753fb52ca76187", "fields": {"nom_de_la_commune": "AUDIGNICOURT", "libell_d_acheminement": "AUDIGNICOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02034"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e10c6fe2df2c40009d6e4de85f22595326bfa09", "fields": {"nom_de_la_commune": "AZY SUR MARNE", "libell_d_acheminement": "AZY SUR MARNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02042"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9731150abecdc118f341dd78517544d30a144b0b", "fields": {"nom_de_la_commune": "BARENTON CEL", "libell_d_acheminement": "BARENTON CEL", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02047"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7dd7b922e0ece5a98e1ac4759ec2fd2d7117e3", "fields": {"nom_de_la_commune": "AUDIGNY", "libell_d_acheminement": "AUDIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02035"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59c1743a28270aee2f613c0027b1b895aa10ab9", "fields": {"nom_de_la_commune": "BEAUVOIS EN VERMANDOIS", "libell_d_acheminement": "BEAUVOIS EN VERMANDOIS", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02060"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb1e857f427a62e11657a2680ecb644fd32838a", "fields": {"nom_de_la_commune": "BOSMONT SUR SERRE", "libell_d_acheminement": "BOSMONT SUR SERRE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02101"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97648c95b6cf408be020b4f4fdb4f4032e03b1e6", "fields": {"nom_de_la_commune": "BESNY ET LOIZY", "libell_d_acheminement": "BESNY ET LOIZY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02080"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab313a327e2a2fe838b9b3efbedcbfa88ae85552", "fields": {"nom_de_la_commune": "BLERANCOURT", "libell_d_acheminement": "BLERANCOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02093"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0be7495e0663d52a081b58e662c6b59d97994eb", "fields": {"nom_de_la_commune": "BEAURIEUX", "libell_d_acheminement": "BEAURIEUX", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02058"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6535a211cda546252af1b118d75fcd986ce94425", "fields": {"nom_de_la_commune": "BESMONT", "libell_d_acheminement": "BESMONT", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02079"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d476155d4dd75b8c2c8a3aa2dfde85b2ce245aed", "fields": {"nom_de_la_commune": "BLESMES", "libell_d_acheminement": "BLESMES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02094"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82898637f0cb63d48ac51d4d48b11055c271c5ca", "fields": {"nom_de_la_commune": "BERNOT", "libell_d_acheminement": "BERNOT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02070"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c14d4d61e09b0d757e797c318b24486d161845", "fields": {"nom_de_la_commune": "BELLEU", "libell_d_acheminement": "BELLEU", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02064"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce10d396dc060500630f0d8d0be01a60726a920", "fields": {"nom_de_la_commune": "BOUE", "libell_d_acheminement": "BOUE", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02103"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5282059f563bd4dd2603f0bc8511b6d2467c6e87", "fields": {"nom_de_la_commune": "COLLIGIS CRANDELAIN", "libell_d_acheminement": "COLLIGIS CRANDELAIN", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02205"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65a3c84dd40f968a1feb6360e05ab878650212d", "fields": {"nom_de_la_commune": "CHERMIZY AILLES", "libell_d_acheminement": "CHERMIZY AILLES", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02178"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f14477717ac159bb4cba533f93f4a834ee35711", "fields": {"nom_de_la_commune": "CLAIRFONTAINE", "libell_d_acheminement": "CLAIRFONTAINE", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02197"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e869c458b3189a86d5ea04caefd2271f29bcc8c5", "fields": {"nom_de_la_commune": "CHIVRES VAL", "libell_d_acheminement": "CHIVRES VAL", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02190"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce13c3a9227ad1736b552c26131a1b7c37cdebc", "fields": {"nom_de_la_commune": "COMMENCHON", "libell_d_acheminement": "COMMENCHON", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02207"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e61f195f2c43d171b54d2a37d2dcfb3934765d", "fields": {"nom_de_la_commune": "CHEVENNES", "libell_d_acheminement": "CHEVENNES", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02182"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7875fbc369f55b9f7b22ccada6361df91740adc3", "fields": {"nom_de_la_commune": "COLONFAY", "libell_d_acheminement": "COLONFAY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02206"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f206cb16bd97448cc61fbd242dbea2249ec8313", "fields": {"nom_de_la_commune": "CHIERRY", "libell_d_acheminement": "CHIERRY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02187"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b21dd1d27ffbebce4de91716fae92d8ca1a0ef5", "fields": {"nom_de_la_commune": "COULONGES COHAN", "libell_d_acheminement": "COULONGES COHAN", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02220"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc2706a0a041db0d2a2586cc033db8a5444e9e9", "fields": {"nom_de_la_commune": "CUISY EN ALMONT", "libell_d_acheminement": "CUISY EN ALMONT", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02253"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cd37ff0eed3d7ce9c34024ecfd57c3fd5a5390", "fields": {"nom_de_la_commune": "CRAMAILLE", "libell_d_acheminement": "CRAMAILLE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02233"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e87f6ac65f95a3eb7be24e09b3b64f96e7667f4", "fields": {"nom_de_la_commune": "CUIRIEUX", "libell_d_acheminement": "CUIRIEUX", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02248"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8582adb5498159dbbe217db4f9530907df670b62", "fields": {"nom_de_la_commune": "DOLIGNON", "libell_d_acheminement": "DOLIGNON", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02266"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9e5c9b15af8edc52d856eff17ed6aa2b8c94d3", "fields": {"nom_de_la_commune": "CRAONNE", "libell_d_acheminement": "CRAONNE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02234"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00084384b65e0cf78ddd02306c7ab90cb3b30492", "fields": {"nom_de_la_commune": "DHUIZEL", "libell_d_acheminement": "DHUIZEL", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02263"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7972318bb71775399aa40f4637f5c698fe80fb4", "fields": {"nom_de_la_commune": "DOMPTIN", "libell_d_acheminement": "DOMPTIN", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02268"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5eeb3c55697fc57bd7f11cf1721f547a89715f0", "fields": {"nom_de_la_commune": "DOHIS", "libell_d_acheminement": "DOHIS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02265"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a564e2bc242c605c89ce94b99b4feeb00e163275", "fields": {"nom_de_la_commune": "DERCY", "libell_d_acheminement": "DERCY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02261"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d38486ce804695529505949490e3ff6f6cbb1f", "fields": {"nom_de_la_commune": "FLAVIGNY LE GRAND ET BEAURAIN", "libell_d_acheminement": "FLAVIGNY LE GRAND ET BEAURAIN", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02313"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f08087225997532798491a4a0a042cdc14eba0", "fields": {"nom_de_la_commune": "FONTAINE LES VERVINS", "libell_d_acheminement": "FONTAINE LES VERVINS", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02321"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87cf9a7bc7a01fb6736e6c1e2f403d41c06389b0", "fields": {"nom_de_la_commune": "ETAMPES SUR MARNE", "libell_d_acheminement": "ETAMPES SUR MARNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02292"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f69c05fe02d055992dd97d58beb83367b3283d", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02302"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c5fd8255bf75d182055f08db1a6a5b33e49127", "fields": {"nom_de_la_commune": "ETREPILLY", "libell_d_acheminement": "ETREPILLY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02297"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f248f051f0271cb4bb5dbcfbab7ef7db5d9e9b5", "fields": {"nom_de_la_commune": "LA FERE", "libell_d_acheminement": "LA FERE", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02304"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3722d7398523afcd1dde31ef79036ff38b94a036", "fields": {"nom_de_la_commune": "EPIEDS", "libell_d_acheminement": "EPIEDS", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02280"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d14b8019bad1a749dabf6f95dda76d71e8fea7a", "fields": {"nom_de_la_commune": "EPARCY", "libell_d_acheminement": "EPARCY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02278"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a816093035eb0e81004e4e9467d23cf18fa3de19", "fields": {"nom_de_la_commune": "FAYET", "libell_d_acheminement": "FAYET", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02303"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51648ec277be327ec1f0afd4af761bdc0444a31f", "fields": {"nom_de_la_commune": "GOUDELANCOURT LES BERRIEUX", "libell_d_acheminement": "GOUDELANCOURT LES BERRIEUX", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02349"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7bdd2dd60f905b157432f87cfe2b2e05d2eb6f2", "fields": {"nom_de_la_commune": "FRESNES EN TARDENOIS", "libell_d_acheminement": "FRESNES EN TARDENOIS", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02332"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c82e51ecee62b69aae92df4e6c2509fffc9503", "fields": {"nom_de_la_commune": "GRANDLUP ET FAY", "libell_d_acheminement": "GRANDLUP ET FAY", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02353"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139890dfe38ce19d68de8899231cafe7cb3152f8", "fields": {"nom_de_la_commune": "FRANQUEVILLE", "libell_d_acheminement": "FRANQUEVILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02331"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbc1432b779304619986f23e2adc3bae426bf09", "fields": {"nom_de_la_commune": "GROUGIS", "libell_d_acheminement": "GROUGIS", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02358"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ba45d3f07bf42c9022fa22fdd0af8d565ea294", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02333"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b18e41e52cb3457459ca5eb1c9069a14c683dd9", "fields": {"nom_de_la_commune": "FOSSOY", "libell_d_acheminement": "FOSSOY", "code_postal": "02650", "coordonnees_gps": [49.0487416682, 3.50137456467], "code_commune_insee": "02328"}, "geometry": {"type": "Point", "coordinates": [3.50137456467, 49.0487416682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313161d3bc57172f4e7d1dd2b497c847c5c97c05", "fields": {"nom_de_la_commune": "ST ANDRE D EMBRUN", "libell_d_acheminement": "ST ANDRE D EMBRUN", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05128"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4315dd9f38e789114d57ef4a0e925dde6e8b08ac", "fields": {"nom_de_la_commune": "LA ROCHE DE RAME", "libell_d_acheminement": "LA ROCHE DE RAME", "code_postal": "05310", "coordonnees_gps": [44.7404687507, 6.51315581075], "code_commune_insee": "05122"}, "geometry": {"type": "Point", "coordinates": [6.51315581075, 44.7404687507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5536a290b4970df6f9da4b45eba18822117392f3", "fields": {"nom_de_la_commune": "LA HAUTE BEAUME", "libell_d_acheminement": "LA HAUTE BEAUME", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05066"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a54a23a0e6b11a83a9e205481dacc1aa1afa91a", "fields": {"nom_de_la_commune": "ROCHEBRUNE", "libell_d_acheminement": "ROCHEBRUNE", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05121"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eab2962283def809d52a0efb57d481e9068c167", "fields": {"nom_de_la_commune": "LA GRAVE", "libell_d_acheminement": "LA GRAVE", "code_postal": "05320", "coordonnees_gps": [45.0603930366, 6.28395609682], "code_commune_insee": "05063"}, "geometry": {"type": "Point", "coordinates": [6.28395609682, 45.0603930366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa6d27b9331820da30a4e2eeb23f39ab6a5d837", "fields": {"nom_de_la_commune": "ORCIERES", "libell_d_acheminement": "ORCIERES", "code_postal": "05170", "coordonnees_gps": [44.6838701785, 6.34860583609], "code_commune_insee": "05096"}, "geometry": {"type": "Point", "coordinates": [6.34860583609, 44.6838701785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab4d445909ad085c1990c1f2a4bac9cb6d46171", "fields": {"nom_de_la_commune": "ROUSSET", "libell_d_acheminement": "ROUSSET", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05127"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0e4225b2b4408eb1ca42312b04d4930845d3f3", "fields": {"nom_de_la_commune": "REOTIER", "libell_d_acheminement": "REOTIER", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05116"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1339d41e2ee52d3beb3258fc982bbf9d79cf90e5", "fields": {"nom_de_la_commune": "GAP", "libell_d_acheminement": "GAP", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05061"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893475f298e63794d5910f039c6454551f0d35d4", "fields": {"nom_de_la_commune": "VILLAR ST PANCRACE", "libell_d_acheminement": "VILLAR ST PANCRACE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05183"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa68bfc0df9b509138e3ba0d0bf51eef4c58d2f0", "fields": {"nom_de_la_commune": "LES VIGNEAUX", "libell_d_acheminement": "LES VIGNEAUX", "code_postal": "05120", "coordonnees_gps": [44.8094841001, 6.52475602144], "code_commune_insee": "05180"}, "geometry": {"type": "Point", "coordinates": [6.52475602144, 44.8094841001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d411f5867123c39c1d5b9a9a5d54a194bb87ed", "fields": {"nom_de_la_commune": "TRESCLEOUX", "libell_d_acheminement": "TRESCLEOUX", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05172"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f334d4cf86038b6173a5968731b603acb4f278", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05156"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b11e2966c88569999f26da9235f334237772d5", "fields": {"nom_de_la_commune": "SAVOURNON", "libell_d_acheminement": "SAVOURNON", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05165"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48fa85a32387c8c6f18eeae9d10d4ac4058be6df", "fields": {"nom_de_la_commune": "VITROLLES", "libell_d_acheminement": "VITROLLES", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05184"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb606fa8cc21a8227bd4c2710b1f1eed0c711f3b", "fields": {"nom_de_la_commune": "SALERANS", "libell_d_acheminement": "SALERANS", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05160"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5f199a75cd70da2d0a9083dfba82ca685576b8", "fields": {"nom_de_la_commune": "VALSERRES", "libell_d_acheminement": "VALSERRES", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05176"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fa3074f85a0ecbb854894a921492efcd017b61", "fields": {"nom_de_la_commune": "ST VERAN", "libell_d_acheminement": "ST VERAN", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05157"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ec169ca1eb5c8c74d5c4068e402aeced5546d8", "fields": {"nom_de_la_commune": "LAURAC EN VIVARAIS", "libell_d_acheminement": "LAURAC EN VIVARAIS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07134"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0934ad07abbbfed8c6fb21781fc0e4fdd4e44e9c", "fields": {"nom_de_la_commune": "ORGNAC L AVEN", "libell_d_acheminement": "ORGNAC L AVEN", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07168"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05661db6b01e9cb6c94ee77a9e32612962ab4ab", "fields": {"nom_de_la_commune": "LAMASTRE", "libell_d_acheminement": "LAMASTRE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07129"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819558554c0c21e483a30b42832b47e1b83cf24c", "fields": {"nom_de_la_commune": "LESPERON", "libell_d_acheminement": "LESPERON", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07142"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2613c4958ae5ba3b99d3b99d16f1e8e81eea12ae", "fields": {"nom_de_la_commune": "NONIERES", "libell_d_acheminement": "NONIERES", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07165"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c835cb3c1e0bca7b0f79fddd836712bc3ac9ed5c", "fields": {"nom_de_la_commune": "LAVIOLLE", "libell_d_acheminement": "LAVIOLLE", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07139"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775162f8dca26316bf4571ec2f9bc472bee0c9b7", "fields": {"nom_de_la_commune": "MIRABEL", "libell_d_acheminement": "MIRABEL", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07159"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd4b7daf32bbd60105aaa2b8b654a378c1f100f", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07182"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6fce34276743f00fa95ae1311640eef37b2df1", "fields": {"nom_de_la_commune": "PRUNET", "libell_d_acheminement": "PRUNET", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07187"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d570fc424dff66f0bc9e1d8885c5ee7b016fd499", "fields": {"code_postal": "08250", "code_commune_insee": "08333", "libell_d_acheminement": "OLIZY PRIMAT", "ligne_5": "PRIMAT", "nom_de_la_commune": "OLIZY PRIMAT", "coordonnees_gps": [49.3052152829, 4.87924744188]}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfac4bfc047a84f3169cc105d25868a89f826290", "fields": {"nom_de_la_commune": "PUILLY ET CHARBEAUX", "libell_d_acheminement": "PUILLY ET CHARBEAUX", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08347"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54571eea9c7926d68fe206be5c78cde2aba9d598", "fields": {"nom_de_la_commune": "REMILLY LES POTHEES", "libell_d_acheminement": "REMILLY LES POTHEES", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08358"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b170b94d193d95e414ac97520879d41a12f3ca29", "fields": {"nom_de_la_commune": "REMILLY AILLICOURT", "libell_d_acheminement": "REMILLY AILLICOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08357"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b23615b89cc9c825aea86032919484e6bc2637c", "fields": {"nom_de_la_commune": "NOVY CHEVRIERES", "libell_d_acheminement": "NOVY CHEVRIERES", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08330"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d56ee0994ff4906b7c7118ab27b004c7576567", "fields": {"nom_de_la_commune": "POURU ST REMY", "libell_d_acheminement": "POURU ST REMY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08343"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf9a7981587288ccad5e6a96b3245afada8b5ac", "fields": {"nom_de_la_commune": "PERTHES", "libell_d_acheminement": "PERTHES", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08339"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158c8e79500a7ef2c129b432ed4b0c5dcd4a8646", "fields": {"nom_de_la_commune": "RENWEZ", "libell_d_acheminement": "RENWEZ", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08361"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319786d973ff44ef8f497dfc502dbb111e25eca9", "fields": {"nom_de_la_commune": "SIGY", "libell_d_acheminement": "SIGY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77452"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfeca90ce092522325fdb5db7cddb3878557eb5d", "fields": {"nom_de_la_commune": "SOIGNOLLES EN BRIE", "libell_d_acheminement": "SOIGNOLLES EN BRIE", "code_postal": "77111", "coordonnees_gps": [48.6502963027, 2.71437354828], "code_commune_insee": "77455"}, "geometry": {"type": "Point", "coordinates": [2.71437354828, 48.6502963027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcaf8db7174429633f07ede1d8e55ee6052f9a7", "fields": {"nom_de_la_commune": "SOISY BOUY", "libell_d_acheminement": "SOISY BOUY", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77456"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c985cad0e29c8009e80a90a19cb6a11dd732df7a", "fields": {"nom_de_la_commune": "SOUPPES SUR LOING", "libell_d_acheminement": "SOUPPES SUR LOING", "code_postal": "77460", "coordonnees_gps": [48.1889258767, 2.77893143311], "code_commune_insee": "77458"}, "geometry": {"type": "Point", "coordinates": [2.77893143311, 48.1889258767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c07261fa3ff3599075090bb1a730b8014ea7e4", "fields": {"nom_de_la_commune": "VAIRES SUR MARNE", "libell_d_acheminement": "VAIRES SUR MARNE", "code_postal": "77360", "coordonnees_gps": [48.870149545, 2.63599296332], "code_commune_insee": "77479"}, "geometry": {"type": "Point", "coordinates": [2.63599296332, 48.870149545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf072620f505b33cf7994d69a34dbeef1c9c2e30", "fields": {"nom_de_la_commune": "VALENCE EN BRIE", "libell_d_acheminement": "VALENCE EN BRIE", "code_postal": "77830", "coordonnees_gps": [48.4598569753, 2.90486661459], "code_commune_insee": "77480"}, "geometry": {"type": "Point", "coordinates": [2.90486661459, 48.4598569753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a08e5c8a224d5033f30b3eb0162fa76d2867ba", "fields": {"nom_de_la_commune": "VENEUX LES SABLONS", "libell_d_acheminement": "VENEUX LES SABLONS", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77491"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a71c9becc4183457951a900747697cf1628a6c2", "fields": {"nom_de_la_commune": "VERNEUIL L ETANG", "libell_d_acheminement": "VERNEUIL L ETANG", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77493"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc8613ceb3c79b72892b164b63f9b863e0f3de5", "fields": {"nom_de_la_commune": "VIEUX CHAMPAGNE", "libell_d_acheminement": "VIEUX CHAMPAGNE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77496"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a804921181f0d9f9eeb2246da3339f68246050c1", "fields": {"nom_de_la_commune": "VILLEBEON", "libell_d_acheminement": "VILLEBEON", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77500"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8342a6da9b9145b0139e877020616737e59c78f6", "fields": {"nom_de_la_commune": "VILLENEUVE LES BORDES", "libell_d_acheminement": "VILLENEUVE LES BORDES", "code_postal": "77154", "coordonnees_gps": [48.4891565609, 3.02294060118], "code_commune_insee": "77509"}, "geometry": {"type": "Point", "coordinates": [3.02294060118, 48.4891565609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271f7c707ca134d7c7aebb15915f885be2d4bcf9", "fields": {"nom_de_la_commune": "VILLIERS SUR MORIN", "libell_d_acheminement": "VILLIERS SUR MORIN", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77521"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a85bf3f031ed87000d31c8ca30982abba56a41", "fields": {"nom_de_la_commune": "VOULANGIS", "libell_d_acheminement": "VOULANGIS", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77529"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd450cd94aebf99d854636bebd037ac21a35a4c", "fields": {"nom_de_la_commune": "VULAINES LES PROVINS", "libell_d_acheminement": "VULAINES LES PROVINS", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77532"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa96d08b0ae577e39c0a53ab14a50c491306d026", "fields": {"nom_de_la_commune": "ANDELU", "libell_d_acheminement": "ANDELU", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78013"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e57b39f568d1c139b3af98b8e3e4bf21f9639f", "fields": {"code_postal": "78570", "code_commune_insee": "78015", "libell_d_acheminement": "ANDRESY", "ligne_5": "DENOUVAL", "nom_de_la_commune": "ANDRESY", "coordonnees_gps": [48.9796109181, 2.04393218537]}, "geometry": {"type": "Point", "coordinates": [2.04393218537, 48.9796109181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e85731cdfb901d68fa9868d68ae086be90251f3", "fields": {"nom_de_la_commune": "AUBERGENVILLE", "libell_d_acheminement": "AUBERGENVILLE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78029"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a80557e98ca803659f741b5687901f9f5f67bb", "fields": {"nom_de_la_commune": "AUFFARGIS", "libell_d_acheminement": "AUFFARGIS", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78030"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc5004f7b7f8429c1f380c19e850acfe3a2f940", "fields": {"nom_de_la_commune": "AUTEUIL", "libell_d_acheminement": "AUTEUIL", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78034"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e271a408f16c65f16227693db53a6dabeaadf5ee", "fields": {"nom_de_la_commune": "AUTOUILLET", "libell_d_acheminement": "AUTOUILLET", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78036"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3239a7b383e125c8e01e272274890453ea81d8", "fields": {"nom_de_la_commune": "BAZAINVILLE", "libell_d_acheminement": "BAZAINVILLE", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78048"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685df2303a2aafefb41a9d64bfc08ffe1d95e51a", "fields": {"nom_de_la_commune": "BEHOUST", "libell_d_acheminement": "BEHOUST", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78053"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d51b527e8fdad01cb2892a58032de690956c5a", "fields": {"nom_de_la_commune": "BLARU", "libell_d_acheminement": "BLARU", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78068"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4666bb3b620b5ac7faac81638867884cbdfbaa3", "fields": {"nom_de_la_commune": "BOIS D ARCY", "libell_d_acheminement": "BOIS D ARCY", "code_postal": "78390", "coordonnees_gps": [48.8043941773, 2.01866204781], "code_commune_insee": "78073"}, "geometry": {"type": "Point", "coordinates": [2.01866204781, 48.8043941773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09eb993b68d39f0f2e81461f498f1cb27a74fb2d", "fields": {"nom_de_la_commune": "BONNELLES", "libell_d_acheminement": "BONNELLES", "code_postal": "78830", "coordonnees_gps": [48.6221711105, 1.99864954313], "code_commune_insee": "78087"}, "geometry": {"type": "Point", "coordinates": [1.99864954313, 48.6221711105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f190de3b8c0fe7ffff9c06de4a34a4a29d80f18", "fields": {"nom_de_la_commune": "BOUAFLE", "libell_d_acheminement": "BOUAFLE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78090"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e1606900de82b6448d92f77fea00d1702176fe", "fields": {"nom_de_la_commune": "CARRIERES SOUS POISSY", "libell_d_acheminement": "CARRIERES SOUS POISSY", "code_postal": "78955", "coordonnees_gps": [48.9453564407, 2.02870519723], "code_commune_insee": "78123"}, "geometry": {"type": "Point", "coordinates": [2.02870519723, 48.9453564407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5b150f62ad542db038c9ea774c22bebe32c764", "fields": {"nom_de_la_commune": "CHATEAUFORT", "libell_d_acheminement": "CHATEAUFORT", "code_postal": "78117", "coordonnees_gps": [48.7426119196, 2.10563873194], "code_commune_insee": "78143"}, "geometry": {"type": "Point", "coordinates": [2.10563873194, 48.7426119196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e652c8c10344481bb9ce4ba829246ef5e803cc77", "fields": {"nom_de_la_commune": "CHAUFOUR LES BONNIERES", "libell_d_acheminement": "CHAUFOUR LES BONNIERES", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78147"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3680e1ebb9dec1ae55c7087e48dd369611d5e47b", "fields": {"nom_de_la_commune": "LES CLAYES SOUS BOIS", "libell_d_acheminement": "LES CLAYES SOUS BOIS", "code_postal": "78340", "coordonnees_gps": [48.8190038285, 1.98403362537], "code_commune_insee": "78165"}, "geometry": {"type": "Point", "coordinates": [1.98403362537, 48.8190038285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82811a3f12d8aa658924c5058460681f7c9e0aa4", "fields": {"nom_de_la_commune": "COIGNIERES", "libell_d_acheminement": "COIGNIERES", "code_postal": "78310", "coordonnees_gps": [48.7604855324, 1.91898209487], "code_commune_insee": "78168"}, "geometry": {"type": "Point", "coordinates": [1.91898209487, 48.7604855324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06565cf99d93e0e26a7d540dca412513537fdfa1", "fields": {"nom_de_la_commune": "DAMPIERRE EN YVELINES", "libell_d_acheminement": "DAMPIERRE EN YVELINES", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78193"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89515ce93438ed35127af61c1b5c55237b1063d", "fields": {"nom_de_la_commune": "DANNEMARIE", "libell_d_acheminement": "DANNEMARIE", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78194"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd54c7274eeba3d545f28bdf8d07907e6f73fc5", "fields": {"nom_de_la_commune": "FAVRIEUX", "libell_d_acheminement": "FAVRIEUX", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78231"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0589e82160ff592093a2ec944e2c5433ccf2f62c", "fields": {"nom_de_la_commune": "FLACOURT", "libell_d_acheminement": "FLACOURT", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78234"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50acd79cba5fad0321b413bd6ec4c12635b234c0", "fields": {"nom_de_la_commune": "GALLUIS", "libell_d_acheminement": "GALLUIS", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78262"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d7d35b978f8dae1b89c49691721fd4b9f7159d", "fields": {"nom_de_la_commune": "GARANCIERES", "libell_d_acheminement": "GARANCIERES", "code_postal": "78890", "coordonnees_gps": [48.8233853015, 1.75829198183], "code_commune_insee": "78265"}, "geometry": {"type": "Point", "coordinates": [1.75829198183, 48.8233853015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8f55a9f1ce82779fcc4c3e0b9d03af4b6b5902", "fields": {"nom_de_la_commune": "GRESSEY", "libell_d_acheminement": "GRESSEY", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78285"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54373b738ca7168e5f03008e85a48a10e7ccff96", "fields": {"nom_de_la_commune": "GUERVILLE", "libell_d_acheminement": "GUERVILLE", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78291"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f963ce6fa85d33ba382ca327323050b2cd0da23a", "fields": {"code_postal": "78280", "code_commune_insee": "78297", "libell_d_acheminement": "GUYANCOURT", "ligne_5": "VILLAROY", "nom_de_la_commune": "GUYANCOURT", "coordonnees_gps": [48.7729816592, 2.07605378449]}, "geometry": {"type": "Point", "coordinates": [2.07605378449, 48.7729816592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b03909467e102d64b1390f48b771d5d84485e92", "fields": {"nom_de_la_commune": "HARGEVILLE", "libell_d_acheminement": "HARGEVILLE", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78300"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8b200ca72866b529e7626a29a71beca01e4330", "fields": {"nom_de_la_commune": "JOUY MAUVOISIN", "libell_d_acheminement": "JOUY MAUVOISIN", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78324"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d58a8d204850454f99027de839d82149d04f0fd", "fields": {"nom_de_la_commune": "JUZIERS", "libell_d_acheminement": "JUZIERS", "code_postal": "78820", "coordonnees_gps": [49.0006712804, 1.84049263155], "code_commune_insee": "78327"}, "geometry": {"type": "Point", "coordinates": [1.84049263155, 49.0006712804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e7bbb4a0f2940b37d2ba73d5a09c21bc38dbb65", "fields": {"nom_de_la_commune": "LAINVILLE EN VEXIN", "libell_d_acheminement": "LAINVILLE EN VEXIN", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78329"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac52909833e6e456cd504239a9d52676c3224e7", "fields": {"nom_de_la_commune": "MANTES LA VILLE", "libell_d_acheminement": "MANTES LA VILLE", "code_postal": "78711", "coordonnees_gps": [48.9750839165, 1.71186276145], "code_commune_insee": "78362"}, "geometry": {"type": "Point", "coordinates": [1.71186276145, 48.9750839165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d249bd96f45882225a54023ae4505729f6d61cac", "fields": {"nom_de_la_commune": "MAREIL LE GUYON", "libell_d_acheminement": "MAREIL LE GUYON", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78366"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131a15686f3384a4a58b908724a7d474cef7589b", "fields": {"nom_de_la_commune": "LE MESNIL LE ROI", "libell_d_acheminement": "LE MESNIL LE ROI", "code_postal": "78600", "coordonnees_gps": [48.9430101305, 2.14143556123], "code_commune_insee": "78396"}, "geometry": {"type": "Point", "coordinates": [2.14143556123, 48.9430101305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d5bee88c7e60beb73a23fe6d7c0900a4e032a2", "fields": {"code_postal": "78600", "code_commune_insee": "78396", "libell_d_acheminement": "LE MESNIL LE ROI", "ligne_5": "CARRIERES SOUS BOIS", "nom_de_la_commune": "LE MESNIL LE ROI", "coordonnees_gps": [48.9430101305, 2.14143556123]}, "geometry": {"type": "Point", "coordinates": [2.14143556123, 48.9430101305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a17e6956662b2cada03555ad8cfca60bc900963", "fields": {"nom_de_la_commune": "LES MESNULS", "libell_d_acheminement": "LES MESNULS", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78398"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19742f860517051b79931b528616291798338b57", "fields": {"nom_de_la_commune": "MILON LA CHAPELLE", "libell_d_acheminement": "MILON LA CHAPELLE", "code_postal": "78470", "coordonnees_gps": [48.7175747571, 2.05026286373], "code_commune_insee": "78406"}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e216aafeea48b4bc1ee419e94662d80bb700dfb", "fields": {"nom_de_la_commune": "MITTAINVILLE", "libell_d_acheminement": "MITTAINVILLE", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78407"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ecdbbfbbcfd85487fde2598dd02583b6eae240a", "fields": {"nom_de_la_commune": "MONTAINVILLE", "libell_d_acheminement": "MONTAINVILLE", "code_postal": "78124", "coordonnees_gps": [48.884244051, 1.86268946991], "code_commune_insee": "78415"}, "geometry": {"type": "Point", "coordinates": [1.86268946991, 48.884244051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc17d2d03427a6d46af2061afe5c115d104567f", "fields": {"nom_de_la_commune": "MORAINVILLIERS", "libell_d_acheminement": "MORAINVILLIERS", "code_postal": "78630", "coordonnees_gps": [48.9218149018, 1.96212376753], "code_commune_insee": "78431"}, "geometry": {"type": "Point", "coordinates": [1.96212376753, 48.9218149018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c94913ce86673c293ca03d86526f1958eacb8c5", "fields": {"nom_de_la_commune": "NEAUPHLE LE VIEUX", "libell_d_acheminement": "NEAUPHLE LE VIEUX", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78443"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf4a19959b61979e2c5e2c8de7f2fa91be5a8ad", "fields": {"nom_de_la_commune": "NEAUPHLETTE", "libell_d_acheminement": "NEAUPHLETTE", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78444"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbc5b031fc6956185121745e669b0b6a56e3279", "fields": {"nom_de_la_commune": "ORPHIN", "libell_d_acheminement": "ORPHIN", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78470"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6f8dd1c858c8857c4fb5ac5af07e2fabeda844", "fields": {"nom_de_la_commune": "LE PERRAY EN YVELINES", "libell_d_acheminement": "LE PERRAY EN YVELINES", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78486"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65f9491e4492131b71b7570c34ea6e35c27b119", "fields": {"nom_de_la_commune": "POISSY", "libell_d_acheminement": "POISSY", "code_postal": "78300", "coordonnees_gps": [48.9238513521, 2.02821434005], "code_commune_insee": "78498"}, "geometry": {"type": "Point", "coordinates": [2.02821434005, 48.9238513521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fd376d6b364a6fecb12ffc07aa53b2a34327d6", "fields": {"nom_de_la_commune": "PORT VILLEZ", "libell_d_acheminement": "PORT VILLEZ", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78503"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8278d63097e056c07586a6029ea309c0b096db0a", "fields": {"code_postal": "78660", "code_commune_insee": "78506", "libell_d_acheminement": "PRUNAY EN YVELINES", "ligne_5": "CRACHES", "nom_de_la_commune": "PRUNAY EN YVELINES", "coordonnees_gps": [48.5043951327, 1.85801812038]}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58fe253bb2a882d3127fbeffd287ef2c0b505d6", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78536"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c9876228554aeb400612f72b91b8daebc2b736", "fields": {"nom_de_la_commune": "TACOIGNIERES", "libell_d_acheminement": "TACOIGNIERES", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78605"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30dd6cb714d435efaab90203695f7aba6cc5e4fb", "fields": {"nom_de_la_commune": "LE TARTRE GAUDRAN", "libell_d_acheminement": "LE TARTRE GAUDRAN", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78606"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ade4ba0de6533cf380c7677c5fa6733a7f20851", "fields": {"nom_de_la_commune": "TOUSSUS LE NOBLE", "libell_d_acheminement": "TOUSSUS LE NOBLE", "code_postal": "78117", "coordonnees_gps": [48.7426119196, 2.10563873194], "code_commune_insee": "78620"}, "geometry": {"type": "Point", "coordinates": [2.10563873194, 48.7426119196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d154a7fb514a7af0914a98cfcaa1acba639b41", "fields": {"nom_de_la_commune": "TRIEL SUR SEINE", "libell_d_acheminement": "TRIEL SUR SEINE", "code_postal": "78510", "coordonnees_gps": [48.9781198658, 2.00818427315], "code_commune_insee": "78624"}, "geometry": {"type": "Point", "coordinates": [2.00818427315, 48.9781198658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557df250294b9b22240f0a9595b774cb84133a41", "fields": {"code_postal": "78510", "code_commune_insee": "78624", "libell_d_acheminement": "TRIEL SUR SEINE", "ligne_5": "L HAUTIL", "nom_de_la_commune": "TRIEL SUR SEINE", "coordonnees_gps": [48.9781198658, 2.00818427315]}, "geometry": {"type": "Point", "coordinates": [2.00818427315, 48.9781198658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3079577866a041e12825f1900c3dd51f6de89df5", "fields": {"nom_de_la_commune": "VAUX SUR SEINE", "libell_d_acheminement": "VAUX SUR SEINE", "code_postal": "78740", "coordonnees_gps": [49.0109765215, 1.96738669464], "code_commune_insee": "78638"}, "geometry": {"type": "Point", "coordinates": [1.96738669464, 49.0109765215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d53123bcfc4deee7f8224adeee26a6c5d35827f2", "fields": {"nom_de_la_commune": "VERNOUILLET", "libell_d_acheminement": "VERNOUILLET", "code_postal": "78540", "coordonnees_gps": [48.9651204678, 1.97419104222], "code_commune_insee": "78643"}, "geometry": {"type": "Point", "coordinates": [1.97419104222, 48.9651204678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89a5221d7dd5cee461ac2b6017b4500706a4e54e", "fields": {"nom_de_la_commune": "VILLETTE", "libell_d_acheminement": "VILLETTE", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78677"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27035ee82b8e4d3b3b83ed70aa98fcca12466776", "fields": {"nom_de_la_commune": "VILLIERS ST FREDERIC", "libell_d_acheminement": "VILLIERS ST FREDERIC", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78683"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d969447ae092335a8655ca653b47cd9987903d", "fields": {"nom_de_la_commune": "VIROFLAY", "libell_d_acheminement": "VIROFLAY", "code_postal": "78220", "coordonnees_gps": [48.8027347247, 2.17103281984], "code_commune_insee": "78686"}, "geometry": {"type": "Point", "coordinates": [2.17103281984, 48.8027347247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14af0a101602622381a1033bb4deb29b77381f3", "fields": {"nom_de_la_commune": "VOISINS LE BRETONNEUX", "libell_d_acheminement": "VOISINS LE BRETONNEUX", "code_postal": "78960", "coordonnees_gps": [48.7588159702, 2.0488584635], "code_commune_insee": "78688"}, "geometry": {"type": "Point", "coordinates": [2.0488584635, 48.7588159702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38897f81eeb38b7a8143c169316deedf74d0bb9", "fields": {"nom_de_la_commune": "ADILLY", "libell_d_acheminement": "ADILLY", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79002"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca7f28b66e1184e35c239252fb692ba3ac3c65a3", "fields": {"nom_de_la_commune": "AIGONNAY", "libell_d_acheminement": "AIGONNAY", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79004"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa24ed626621af80ba9fff6783e661cdf0f7a1cc", "fields": {"code_postal": "79600", "code_commune_insee": "79005", "libell_d_acheminement": "AIRVAULT", "ligne_5": "SOULIEVRES", "nom_de_la_commune": "AIRVAULT", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ecef6c71eb20ed52a7d920c8d06b3bf1708a64", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "SANZAY", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936ea1aaa17117b07c1076d84c2c780a16d1fc0e", "fields": {"nom_de_la_commune": "AZAY LE BRULE", "libell_d_acheminement": "AZAY LE BRULE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79024"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6705db04307e1a1cf8ed4e9cfb1b1c42c0bf6cbb", "fields": {"nom_de_la_commune": "BEAULIEU SOUS PARTHENAY", "libell_d_acheminement": "BEAULIEU SOUS PARTHENAY", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79029"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e008ddf58028c1341b1adaf3fd1046c3d069e0", "fields": {"code_postal": "79370", "code_commune_insee": "79030", "libell_d_acheminement": "BEAUSSAIS VITRE", "ligne_5": "VITRE", "nom_de_la_commune": "BEAUSSAIS VITRE", "coordonnees_gps": [46.2791849908, -0.237039794874]}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d351675fd3b2247dfe4c5c0fcc762208c49aff", "fields": {"code_postal": "79360", "code_commune_insee": "79031", "libell_d_acheminement": "BEAUVOIR SUR NIORT", "ligne_5": "LA REVETIZON", "nom_de_la_commune": "BEAUVOIR SUR NIORT", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb9f98bede03f12ff3859de93095397339620025", "fields": {"nom_de_la_commune": "BOUGON", "libell_d_acheminement": "BOUGON", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79042"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca792062bca5d33a91af133723c61d720712d12", "fields": {"nom_de_la_commune": "LE BOURDET", "libell_d_acheminement": "LE BOURDET", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79046"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e319d843b786e7c4c1212eb3e6d7403407e93eeb", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "TERVES", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1064e21b58b27f3b0c461e5e3ca4f0ce83170f32", "fields": {"nom_de_la_commune": "BRETIGNOLLES", "libell_d_acheminement": "BRETIGNOLLES", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79050"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f225b5bb39118f3f843d5a25e76f94ecba6af548", "fields": {"nom_de_la_commune": "LE BREUIL BERNARD", "libell_d_acheminement": "LE BREUIL BERNARD", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79051"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a01371bb959271fb2de19b863e985315aa3c1b8", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79054"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9836fee605a86050fd0a72eaa0f10396872544", "fields": {"nom_de_la_commune": "BRIEUIL SUR CHIZE", "libell_d_acheminement": "BRIEUIL SUR CHIZE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79055"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369c9ab5f5a723c6943d3c22bfc7e9d314d731ba", "fields": {"code_postal": "79370", "code_commune_insee": "79061", "libell_d_acheminement": "CELLES SUR BELLE", "ligne_5": "MONTIGNE", "nom_de_la_commune": "CELLES SUR BELLE", "coordonnees_gps": [46.2791849908, -0.237039794874]}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479ef411cbffa6013276029878210100c96c46fb", "fields": {"nom_de_la_commune": "CHAMPDENIERS ST DENIS", "libell_d_acheminement": "CHAMPDENIERS ST DENIS", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79066"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3a0828e14310e3d4b456317a232f89f12e32a2", "fields": {"code_postal": "79220", "code_commune_insee": "79066", "libell_d_acheminement": "CHAMPDENIERS ST DENIS", "ligne_5": "ST DENIS", "nom_de_la_commune": "CHAMPDENIERS ST DENIS", "coordonnees_gps": [46.4780154702, -0.409601333646]}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235e14b27ecd2669553f64870484b5ab864f67f8", "fields": {"nom_de_la_commune": "LA CHAPELLE BATON", "libell_d_acheminement": "LA CHAPELLE BATON", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79070"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d110ac8d0b2665f434c0d36e8521212cdd7df33", "fields": {"nom_de_la_commune": "LA CHAPELLE BERTRAND", "libell_d_acheminement": "LA CHAPELLE BERTRAND", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79071"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705c2046479f3aa27bda61c2f81035ac8063dca5", "fields": {"nom_de_la_commune": "LA CHAPELLE ST ETIENNE", "libell_d_acheminement": "LA CHAPELLE ST ETIENNE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79075"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b8cc3ef1e3c61a7677427d62f25c60bb4c5c6b", "fields": {"nom_de_la_commune": "LA CHAPELLE THIREUIL", "libell_d_acheminement": "LA CHAPELLE THIREUIL", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79077"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbbaa5c005c868ab8dfe81bda9e5836e7733e282", "fields": {"nom_de_la_commune": "PRISSE LA CHARRIERE", "libell_d_acheminement": "PRISSE LA CHARRIERE", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79078"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf1d7ee85cf9d8dd44cf4253bc87e31a35c45fb", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "RORTHAIS", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b7018484680f05ecf4db28899bbf84da4513a4", "fields": {"nom_de_la_commune": "CHATILLON SUR THOUET", "libell_d_acheminement": "CHATILLON SUR THOUET", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79080"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee58c020bd927c638a6770fd93223f234c447abf", "fields": {"nom_de_la_commune": "CHENAY", "libell_d_acheminement": "CHENAY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79084"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89631472101069fd36429cd86be893a69e500aa7", "fields": {"nom_de_la_commune": "CHERIGNE", "libell_d_acheminement": "CHERIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79085"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0970218274f09a46246bca96c8d8035256515ed", "fields": {"nom_de_la_commune": "CHERVEUX", "libell_d_acheminement": "CHERVEUX", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79086"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc7942470fb6d140a573ee9d964d02486124188", "fields": {"nom_de_la_commune": "VAUCELLES ET BEFFECOURT", "libell_d_acheminement": "VAUCELLES ET BEFFECOURT", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02765"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5321d9159919263b4fd410c38a823a2610074f67", "fields": {"nom_de_la_commune": "TORCY EN VALOIS", "libell_d_acheminement": "TORCY EN VALOIS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02744"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c0d0a28340650d35ff938af252a8ed419a39dc", "fields": {"nom_de_la_commune": "VAUX ANDIGNY", "libell_d_acheminement": "VAUX ANDIGNY", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02769"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309ceb88a3c823f8a12ddacecea3edeb7ba49718", "fields": {"nom_de_la_commune": "VADENCOURT", "libell_d_acheminement": "VADENCOURT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02757"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb04ecff1724dc2ddb8e5aebc21435ff33479c4", "fields": {"nom_de_la_commune": "LE THUEL", "libell_d_acheminement": "LE THUEL", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02743"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accda59b81acda2e6aacb5482e4ea931af65b34a", "fields": {"nom_de_la_commune": "TROESNES", "libell_d_acheminement": "TROESNES", "code_postal": "02460", "coordonnees_gps": [49.1801295296, 3.14646603898], "code_commune_insee": "02749"}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f72459d838d72ee795e6fbf411be0f6fb706c7", "fields": {"nom_de_la_commune": "VASSOGNE", "libell_d_acheminement": "VASSOGNE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02764"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66eda156c7dcf33463fe756e1e1a2434b4eaa7eb", "fields": {"code_postal": "06430", "code_commune_insee": "06163", "libell_d_acheminement": "TENDE", "ligne_5": "ST DALMAS DE TENDE", "nom_de_la_commune": "TENDE", "coordonnees_gps": [44.0898751159, 7.57878055901]}, "geometry": {"type": "Point", "coordinates": [7.57878055901, 44.0898751159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84437415b031bb059fd3b476e8700f283135f594", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE VERNOUX", "libell_d_acheminement": "CHATEAUNEUF DE VERNOUX", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07060"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06e0b2c0e33c20221dac8ad16de3a1231b6e3a60", "fields": {"nom_de_la_commune": "ALBA LA ROMAINE", "libell_d_acheminement": "ALBA LA ROMAINE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07005"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320f31f4a2dbcca85c047c774e74af2e8a59f75f", "fields": {"nom_de_la_commune": "BOUCIEU LE ROI", "libell_d_acheminement": "BOUCIEU LE ROI", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07040"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e1f3387fca697f935b43379f9d2fd594e4f5fc", "fields": {"nom_de_la_commune": "LES ASSIONS", "libell_d_acheminement": "LES ASSIONS", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07017"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5aae904ac92cb02dc238f96fbcc215aeef7fed", "fields": {"nom_de_la_commune": "LE CHAMBON", "libell_d_acheminement": "LE CHAMBON", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07049"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff4a1132b3a37474af681b4ee5c6454e5052bf9", "fields": {"nom_de_la_commune": "ASPERJOC", "libell_d_acheminement": "ASPERJOC", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07016"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a51f2aae9f62e60e26ae0017714deb6b1de8e69", "fields": {"nom_de_la_commune": "ALISSAS", "libell_d_acheminement": "ALISSAS", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07008"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f156125849aeed65d1f9760f8b8453b4705f0f08", "fields": {"nom_de_la_commune": "AILHON", "libell_d_acheminement": "AILHON", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07002"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ce04d639a7e0da786b553a850bf3fa7c6aeaf2", "fields": {"nom_de_la_commune": "BOREE", "libell_d_acheminement": "BOREE", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07037"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9fc3f9989ccdb54a87f1a718d26fbdcad5302e", "fields": {"nom_de_la_commune": "LACHAPELLE GRAILLOUSE", "libell_d_acheminement": "LACHAPELLE GRAILLOUSE", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07121"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410aaa40f014af51f9872a4fc3a87daca4d6e2e0", "fields": {"nom_de_la_commune": "LE LAC D ISSARLES", "libell_d_acheminement": "LE LAC D ISSARLES", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07119"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d260a2d25751ecdff1db0a9c71971bca8630de64", "fields": {"nom_de_la_commune": "ISSAMOULENC", "libell_d_acheminement": "ISSAMOULENC", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07104"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a4d6db52801572c13087cddf675b2273e5be47", "fields": {"nom_de_la_commune": "LALOUVESC", "libell_d_acheminement": "LALOUVESC", "code_postal": "07520", "coordonnees_gps": [45.1121738943, 4.50340666434], "code_commune_insee": "07128"}, "geometry": {"type": "Point", "coordinates": [4.50340666434, 45.1121738943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3349f0c6ef69a023e3b9f9c55e011d2f9d41f02", "fields": {"nom_de_la_commune": "ISSANLAS", "libell_d_acheminement": "ISSANLAS", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07105"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33514704a6aad62592bddb8cc62d1bc25aaf77e2", "fields": {"nom_de_la_commune": "LABEGUDE", "libell_d_acheminement": "LABEGUDE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07116"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2e6442986f0ca91dd42c01c46589898d22001b", "fields": {"nom_de_la_commune": "JAUNAC", "libell_d_acheminement": "JAUNAC", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07108"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab918fbc54c8fd9ec6e4f6d43c62a40dd01414a7", "fields": {"nom_de_la_commune": "JAUJAC", "libell_d_acheminement": "JAUJAC", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07107"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677e72006bfa25d60a6130640707e0be4023033c", "fields": {"nom_de_la_commune": "LANAS", "libell_d_acheminement": "LANAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07131"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f49080f0f47013d0aaffae64f5d7b8518d1d3f", "fields": {"nom_de_la_commune": "LAVAL D AURELLE", "libell_d_acheminement": "LAVAL D AURELLE", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07135"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d52b8a43f393cadc1c20529cefa291529426cb", "fields": {"nom_de_la_commune": "LENTILLERES", "libell_d_acheminement": "LENTILLERES", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07141"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ff07e0362a56f01ebd0597d70a5281802624be", "fields": {"nom_de_la_commune": "PAILHARES", "libell_d_acheminement": "PAILHARES", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07170"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b255153e73dc7eaaa8e6d8495922b330609ecc0", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07162"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f07716aa3cf93bd8f0d79ead4b6e20e339d8473e", "fields": {"nom_de_la_commune": "MERCUER", "libell_d_acheminement": "MERCUER", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07155"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df89f9f2ba32d81b2a140315d0c61dfc9c0e8f8", "fields": {"nom_de_la_commune": "MARIAC", "libell_d_acheminement": "MARIAC", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07150"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ced48bdbf3afa254baf4127974a4d47e0a8bb2", "fields": {"nom_de_la_commune": "MEYRAS", "libell_d_acheminement": "MEYRAS", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07156"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfe20ba48682c57778346132b22df12f6679272", "fields": {"nom_de_la_commune": "LEMPS", "libell_d_acheminement": "LEMPS", "code_postal": "07610", "coordonnees_gps": [45.1098494748, 4.78303209156], "code_commune_insee": "07140"}, "geometry": {"type": "Point", "coordinates": [4.78303209156, 45.1098494748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dc4f179ae8e24a602ee0fb9b692a6a643e07864", "fields": {"code_postal": "08800", "code_commune_insee": "08302", "libell_d_acheminement": "MONTHERME", "ligne_5": "LES HAUTS BUTTES", "nom_de_la_commune": "MONTHERME", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fc3195dff66e59bc1af48e683a24c2cbfe4ae9", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08308"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0261a294896a8d635dd0e64f4ab121291c472762", "fields": {"nom_de_la_commune": "MENIL ANNELLES", "libell_d_acheminement": "MENIL ANNELLES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08286"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ef6e84dfbe1365b142ba623fc4e9a471b588a6", "fields": {"nom_de_la_commune": "MONT LAURENT", "libell_d_acheminement": "MONT LAURENT", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08306"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c9c864232fafab7c591ec355b52453f4c7e732", "fields": {"nom_de_la_commune": "NOUZONVILLE", "libell_d_acheminement": "NOUZONVILLE", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08328"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ac756a81434cf0f361a1a468ce7b803e5a151a", "fields": {"nom_de_la_commune": "MONTHOIS", "libell_d_acheminement": "MONTHOIS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08303"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a3f2d57b63265c0559091465638cc6d65bc6765", "fields": {"nom_de_la_commune": "OMICOURT", "libell_d_acheminement": "OMICOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08334"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cda06d6f7b6586b3d31e06655c7346d9a32b24f", "fields": {"nom_de_la_commune": "MONDIGNY", "libell_d_acheminement": "MONDIGNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08295"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c415d51245d8f37a4e9edbe286d7aa2623e50fa6", "fields": {"nom_de_la_commune": "NOIRVAL", "libell_d_acheminement": "NOIRVAL", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08325"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc2b9f0ba98ad919660b3a7c6eb9fc80f743620", "fields": {"nom_de_la_commune": "MOUZON", "libell_d_acheminement": "MOUZON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08311"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bbd47f55e7a0b8bed67c09dd1d55ca579c482c6", "fields": {"nom_de_la_commune": "POURU AUX BOIS", "libell_d_acheminement": "POURU AUX BOIS", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08342"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c179625f71da146e2f78716150c3551caf3dca6f", "fields": {"nom_de_la_commune": "QUATRE CHAMPS", "libell_d_acheminement": "QUATRE CHAMPS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08350"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74036672f543ca4dc9c820279d7c4fd54d60686c", "fields": {"nom_de_la_commune": "LA ROMAGNE", "libell_d_acheminement": "LA ROMAGNE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08369"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee16d1a9f8b6d7d574ce0afe08bfc2c3d9e7372", "fields": {"nom_de_la_commune": "REGNIOWEZ", "libell_d_acheminement": "REGNIOWEZ", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08355"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4845a0e5b6851355d5473bd8768fbdb86e489dd6", "fields": {"nom_de_la_commune": "ST JUVIN", "libell_d_acheminement": "ST JUVIN", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08383"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d866e12fa05eee1f03f107f162b343be9d9bb56", "fields": {"nom_de_la_commune": "RUMIGNY", "libell_d_acheminement": "RUMIGNY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08373"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553c8effd254bb3b00a2b81d26623990cc3b142d", "fields": {"nom_de_la_commune": "QUILLY", "libell_d_acheminement": "QUILLY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08351"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b577df183de4505f436f68f43fd66d660ed53e66", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08376"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda064881d32cb0c9e6b2372ace59d99cf2fbed5", "fields": {"nom_de_la_commune": "SACHY", "libell_d_acheminement": "SACHY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08375"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307276d63efa156ea6b6d4710893503433b8b713", "fields": {"nom_de_la_commune": "PURE", "libell_d_acheminement": "PURE", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08349"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd474d596560fbca3c6143271ea3b28580b144d6", "fields": {"nom_de_la_commune": "SAPOGNE ET FEUCHERES", "libell_d_acheminement": "SAPOGNE ET FEUCHERES", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08400"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c3861ed1021e5856a4ddee38dc2c4ec07b5033", "fields": {"nom_de_la_commune": "SAPOGNE SUR MARCHE", "libell_d_acheminement": "SAPOGNE SUR MARCHE", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08399"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf8859bd68c95dce47e4126d122fd9e6c625286", "fields": {"nom_de_la_commune": "ST PIERRE A ARNES", "libell_d_acheminement": "ST PIERRE A ARNES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08393"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51146dde1a21d208732bdeb438c44fb1f0359827", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08390"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d2f0110f332cda3ebba5962aae43426179fd88", "fields": {"nom_de_la_commune": "SAUVILLE", "libell_d_acheminement": "SAUVILLE", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08405"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85262625b26dd61588b375550f846f757c872e80", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08389"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "435d521a3ed25b2e5a14ff53b7827f43e5e39243", "fields": {"nom_de_la_commune": "SORBON", "libell_d_acheminement": "SORBON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08427"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5004d18aa2780fbde5616d29d8213a0ebc0ad8", "fields": {"nom_de_la_commune": "SON", "libell_d_acheminement": "SON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08426"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4722a2c58cff2f87512345713e5ce4d429c5a6c0", "fields": {"code_postal": "08800", "code_commune_insee": "08448", "libell_d_acheminement": "THILAY", "ligne_5": "NOHAN", "nom_de_la_commune": "THILAY", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d33d732f232cdfa660adbbafd8cc90d9e2c52fd", "fields": {"nom_de_la_commune": "VILLERS DEVANT LE THOUR", "libell_d_acheminement": "VILLERS DEVANT LE THOUR", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08476"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bbde99cb683effd0312a2b84dfc8b1cd55e681", "fields": {"nom_de_la_commune": "VILLERS SUR LE MONT", "libell_d_acheminement": "VILLERS SUR LE MONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08482"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c03b923e7e96fa77732da7ffdddf272fcc4a032", "fields": {"nom_de_la_commune": "SORCY BAUTHEMONT", "libell_d_acheminement": "SORCY BAUTHEMONT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08428"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae23adf06d9a9d7de65820de727cb826cdf5fbb3", "fields": {"nom_de_la_commune": "VIVIER AU COURT", "libell_d_acheminement": "VIVIER AU COURT", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08488"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb75481a90e4fc8a109907784f7d78405f0d0f1", "fields": {"nom_de_la_commune": "VIEL ST REMY", "libell_d_acheminement": "VIEL ST REMY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08472"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e069b03b515e0e058b5243753f2a8cf563690141", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08471"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8ff04928852a38d014cc6c2af1b9fd0b39cf20", "fields": {"nom_de_la_commune": "TAILLETTE", "libell_d_acheminement": "TAILLETTE", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08436"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a17d260fcb40ff689b5dde172b68c25ae8b0b4", "fields": {"nom_de_la_commune": "VERPEL", "libell_d_acheminement": "VERPEL", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08470"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496376da17d54b0c7359b8dd683da7227ed4fc98", "fields": {"code_postal": "08400", "code_commune_insee": "08490", "libell_d_acheminement": "VOUZIERS", "ligne_5": "BLAISE", "nom_de_la_commune": "VOUZIERS", "coordonnees_gps": [49.3759788124, 4.68476998487]}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2bdba1ce8696401936f45de00fbcc87dcfbf4e", "fields": {"nom_de_la_commune": "WADELINCOURT", "libell_d_acheminement": "WADELINCOURT", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08494"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ad789912d07288fb737e2dc46dadbf9cab6a19", "fields": {"nom_de_la_commune": "AUDRESSEIN", "libell_d_acheminement": "AUDRESSEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09026"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b8f6a046a7c7a857febb37aea57d24a5d48537", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09020"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82e652c07ef0cc4a02a4c28e277d64e10822666", "fields": {"nom_de_la_commune": "AUCAZEIN", "libell_d_acheminement": "AUCAZEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09025"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9781e1fa610e27fe8ae049c7472ba97102c4db3c", "fields": {"nom_de_la_commune": "WASIGNY", "libell_d_acheminement": "WASIGNY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08499"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5296017df659a543e4f09a5ceb2fc486c7b0e5ff", "fields": {"nom_de_la_commune": "ARGEIN", "libell_d_acheminement": "ARGEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09014"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b026c534f6f97866f72d70746d1d145c5d03b176", "fields": {"nom_de_la_commune": "VONCQ", "libell_d_acheminement": "VONCQ", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08489"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dac8f75cae21434e5b654f5df7512fbc0b1b36", "fields": {"nom_de_la_commune": "VRIZY", "libell_d_acheminement": "VRIZY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08493"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "628bb2d536630745ec29e2107d3eaadc9eb8d4f5", "fields": {"nom_de_la_commune": "ALZEN", "libell_d_acheminement": "ALZEN", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09009"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a483b15682fc105f43a09ff15946ff9b76bd56", "fields": {"nom_de_la_commune": "CAZENAVE SERRES ET ALLENS", "libell_d_acheminement": "CAZENAVE SERRES ET ALLENS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09092"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4207b35aea747ac42da9bf7d7cbe7b61c54e5f32", "fields": {"nom_de_la_commune": "CASTELNAU DURBAN", "libell_d_acheminement": "CASTELNAU DURBAN", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09082"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a492833db4f0249245b3af74ba2b533652cb16f8", "fields": {"nom_de_la_commune": "CARCANIERES", "libell_d_acheminement": "CARCANIERES", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09078"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55d6c32e67ece62af15b3b9d151ed1525584d1b", "fields": {"nom_de_la_commune": "DREUILHE", "libell_d_acheminement": "DREUILHE", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09106"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b019dd1924b24358978c697c135e858d7a852b0", "fields": {"nom_de_la_commune": "CASTERAS", "libell_d_acheminement": "CASTERAS", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09083"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69167fc5b724293abda1c6a72a84ee999cd6de8d", "fields": {"nom_de_la_commune": "CERIZOLS", "libell_d_acheminement": "CERIZOLS", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09094"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff45e22a3afc10c5259a73434bd2e0e73b8d51e", "fields": {"nom_de_la_commune": "ERCE", "libell_d_acheminement": "ERCE", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09113"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eea95e183654d196ba4cb965f318adcdced0345", "fields": {"nom_de_la_commune": "ORNOLAC USSAT LES BAINS", "libell_d_acheminement": "ORNOLAC USSAT LES BAINS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09221"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67374a97d468f3943f4566b7c8dd2b7adea6beb0", "fields": {"nom_de_la_commune": "MONTESQUIEU AVANTES", "libell_d_acheminement": "MONTESQUIEU AVANTES", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09204"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81004cfbfded282fa7553482d4db2493a26aa1d0", "fields": {"nom_de_la_commune": "MONTSERON", "libell_d_acheminement": "MONTSERON", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09212"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc56d0a3dfffdf2f1203f23e6dd5ce884001014", "fields": {"nom_de_la_commune": "MONESPLE", "libell_d_acheminement": "MONESPLE", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09195"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2029eec3e06fb1c48b4faf609401700d3e19bb64", "fields": {"nom_de_la_commune": "MERIGON", "libell_d_acheminement": "MERIGON", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09190"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644c64ca9cd428b89fc1a3f75de319201903686d", "fields": {"nom_de_la_commune": "MONTELS", "libell_d_acheminement": "MONTELS", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09203"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179f33cfcd6bed2f976c2cf169135794a4796aed", "fields": {"nom_de_la_commune": "MIGLOS", "libell_d_acheminement": "MIGLOS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09192"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dc27a7226b0d6fdd45029dbadb52019e841323c", "fields": {"nom_de_la_commune": "PECH", "libell_d_acheminement": "PECH", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09226"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3ca7e0308640d77a09a3f7387c5e6a49685c0f", "fields": {"nom_de_la_commune": "ORUS", "libell_d_acheminement": "ORUS", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09222"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ddf0825c47c82ce898631dc348ac1865ff6fb5", "fields": {"nom_de_la_commune": "CAPOULET ET JUNAC", "libell_d_acheminement": "CAPOULET ET JUNAC", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09077"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78ca4a4d20a59584205413334f91c0108d34f5d", "fields": {"nom_de_la_commune": "BALAGUERES", "libell_d_acheminement": "BALAGUERES", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09035"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d44e142c2dd96c277e672d909d9d44dbcb5cf808", "fields": {"nom_de_la_commune": "AUGIREIN", "libell_d_acheminement": "AUGIREIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09027"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576a936b8965ac7f59cb91f9b40d41c8107487fc", "fields": {"nom_de_la_commune": "VANDY", "libell_d_acheminement": "VANDY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08461"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22769879ed54f74331259298b349dd68928ff77b", "fields": {"nom_de_la_commune": "ALOS", "libell_d_acheminement": "ALOS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09008"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005ba3fe70b0c77661868919e7c5ceebaf35dd06", "fields": {"nom_de_la_commune": "CASTILLON EN COUSERANS", "libell_d_acheminement": "CASTILLON EN COUSERANS", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09085"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2268985f3732f4ffa569fe03891ad6b5ac8fdd19", "fields": {"nom_de_la_commune": "LES BORDES SUR LEZ", "libell_d_acheminement": "LES BORDES SUR LEZ", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09062"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f7637f28113869613dfe8069b52e061f590423", "fields": {"nom_de_la_commune": "CAMPAGNE SUR ARIZE", "libell_d_acheminement": "CAMPAGNE SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09075"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ca4a41adc849059646d6f5020450b0f418745a", "fields": {"nom_de_la_commune": "BRASSAC", "libell_d_acheminement": "BRASSAC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09066"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e546e0dd8515bc776bb677a1ccc425540e3808", "fields": {"nom_de_la_commune": "CAUSSOU", "libell_d_acheminement": "CAUSSOU", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09087"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc847723f14be188dfc5e1fc6e4f46ff4d89e71a", "fields": {"nom_de_la_commune": "CAYCHAX", "libell_d_acheminement": "CAYCHAX", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09088"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbaf38c927222b09322972447cf109e3df3a357", "fields": {"nom_de_la_commune": "CALZAN", "libell_d_acheminement": "CALZAN", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09072"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7e93ce347f9e245142c1bb6b71d8d40cef9708", "fields": {"nom_de_la_commune": "BOUAN", "libell_d_acheminement": "BOUAN", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09064"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "073d2608ca44f99197ffe0016f5dde924ebddb5a", "fields": {"code_postal": "10340", "code_commune_insee": "10058", "libell_d_acheminement": "BRAGELOGNE BEAUVOIR", "ligne_5": "BEAUVOIR SUR SARCE", "nom_de_la_commune": "BRAGELOGNE BEAUVOIR", "coordonnees_gps": [47.9929585912, 4.30782302551]}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03d4ddfd5db29625b4a236c0039a3429a115a3e", "fields": {"code_postal": "10450", "code_commune_insee": "10060", "libell_d_acheminement": "BREVIANDES", "ligne_5": "VILLEPART", "nom_de_la_commune": "BREVIANDES", "coordonnees_gps": [48.256436344, 4.1062065257]}, "geometry": {"type": "Point", "coordinates": [4.1062065257, 48.256436344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac10af6961a50936b4217cfe7836c52fdadb286", "fields": {"nom_de_la_commune": "BARBEREY ST SULPICE", "libell_d_acheminement": "BARBEREY ST SULPICE", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10030"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4582bb86838b8eb185c8070ecc70f3333a0f4c0c", "fields": {"nom_de_la_commune": "BALNOT SUR LAIGNES", "libell_d_acheminement": "BALNOT SUR LAIGNES", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10029"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275259b50e44950964e194b5adc11050334b7df7", "fields": {"nom_de_la_commune": "BALNOT LA GRANGE", "libell_d_acheminement": "BALNOT LA GRANGE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10028"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e51038da9fd227eb7f0b0b12aeb9c29df88008", "fields": {"nom_de_la_commune": "BOUY SUR ORVIN", "libell_d_acheminement": "BOUY SUR ORVIN", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10057"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df02863c8b0fdd934ce721a651396c993fc08c4", "fields": {"nom_de_la_commune": "BALIGNICOURT", "libell_d_acheminement": "BALIGNICOURT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10027"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1cdf844f3c6ba116a69ded50daabc85e390784", "fields": {"nom_de_la_commune": "BERTIGNOLLES", "libell_d_acheminement": "BERTIGNOLLES", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10041"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a79e8f57ec286d258630c24c6affff05226b98", "fields": {"nom_de_la_commune": "BAR SUR AUBE", "libell_d_acheminement": "BAR SUR AUBE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10033"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9febd9c0855eda1043096ea00748be01928f335b", "fields": {"nom_de_la_commune": "BOULAGES", "libell_d_acheminement": "BOULAGES", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10052"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb7c5684b5b8c4b580d9bab84eccdefbc0c7935", "fields": {"code_postal": "10150", "code_commune_insee": "10115", "libell_d_acheminement": "CRENEY PRES TROYES", "ligne_5": "ARGENTOLLES", "nom_de_la_commune": "CRENEY PRES TROYES", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e587903b99c6958362932efb96a2eb18c792bdd9", "fields": {"code_postal": "10800", "code_commune_insee": "10067", "libell_d_acheminement": "BUCHERES", "ligne_5": "COURGERENNES", "nom_de_la_commune": "BUCHERES", "coordonnees_gps": [48.2055801821, 4.1125140322]}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e5cd3327f4b1e4070f6b0e9cea48ef4d7e1a74", "fields": {"nom_de_la_commune": "CELLES SUR OURCE", "libell_d_acheminement": "CELLES SUR OURCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10070"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e7050cc56311cd156be386b0e4943a40bd0830", "fields": {"nom_de_la_commune": "BRIEL SUR BARSE", "libell_d_acheminement": "BRIEL SUR BARSE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10062"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0144d6bfddec94e2413905318d6a4b3381215b8", "fields": {"nom_de_la_commune": "COLOMBE LE SEC", "libell_d_acheminement": "COLOMBE LE SEC", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10103"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4912d5defb34e07b2afc75d3f1fbea8e48156b9", "fields": {"nom_de_la_commune": "CHAMPFLEURY", "libell_d_acheminement": "CHAMPFLEURY", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10075"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a3515205b46042331a67b5d202d58b80f7c00c", "fields": {"nom_de_la_commune": "CHAVANGES", "libell_d_acheminement": "CHAVANGES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10094"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790394e821ee2a7c8b1553d0677a812a6a5ba7cd", "fields": {"nom_de_la_commune": "BREVONNES", "libell_d_acheminement": "BREVONNES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10061"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c0ff106f2e2a85e984d1f5dc57904223f637ff2", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10121"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd0c90fe501dde70608453c29e1084ba813a0fa", "fields": {"nom_de_la_commune": "CHERVEY", "libell_d_acheminement": "CHERVEY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10097"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1572ae53bdf164f83fe765e72c01bf5486bddd20", "fields": {"nom_de_la_commune": "VILLENEUVE D OLMES", "libell_d_acheminement": "VILLENEUVE D OLMES", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09336"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba93dba152da6b3a03b2a7b4ffead08b95db7cab", "fields": {"nom_de_la_commune": "BAILLY LE FRANC", "libell_d_acheminement": "BAILLY LE FRANC", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10026"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2612c8b3b21a28dcb5b39335f1c8f530de7eacf", "fields": {"nom_de_la_commune": "STE SUZANNE", "libell_d_acheminement": "STE SUZANNE", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09342"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aca397ff5d75e21a3f4108fa71811c8413d2c40d", "fields": {"nom_de_la_commune": "VERNIOLLE", "libell_d_acheminement": "VERNIOLLE", "code_postal": "09340", "coordonnees_gps": [43.0813978691, 1.66183877783], "code_commune_insee": "09332"}, "geometry": {"type": "Point", "coordinates": [1.66183877783, 43.0813978691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bceaac1a393f27acbde9427dba2b65e0ee6d23", "fields": {"nom_de_la_commune": "AUBETERRE", "libell_d_acheminement": "AUBETERRE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10015"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cc6d71ef32f8caea8b0df99063297e5fa0e1ac", "fields": {"nom_de_la_commune": "VENTENAC", "libell_d_acheminement": "VENTENAC", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09327"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751fea174f9e39225bffacd3c65fb28486b1dae9", "fields": {"nom_de_la_commune": "ARGANCON", "libell_d_acheminement": "ARGANCON", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10008"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d044803103b3b2f3dd9f02e10517a6943a969e6", "fields": {"nom_de_la_commune": "VAYCHIS", "libell_d_acheminement": "VAYCHIS", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09325"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14c2695b4ec8314029003fede53dbdc934f2c55", "fields": {"nom_de_la_commune": "VERDUN", "libell_d_acheminement": "VERDUN", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09328"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9de97f84bfc043a18c217173b6ae6ba88a72e8", "fields": {"nom_de_la_commune": "URS", "libell_d_acheminement": "URS", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09320"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "089069acd06878ffcf5a707da23fb1e419b7b85d", "fields": {"nom_de_la_commune": "ST FELIX DE TOURNEGAT", "libell_d_acheminement": "ST FELIX DE TOURNEGAT", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09259"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a278b7a8d961913dde0df5e4f3290d7147138c", "fields": {"nom_de_la_commune": "MONTJOIE EN COUSERANS", "libell_d_acheminement": "MONTJOIE EN COUSERANS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09209"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f77cb6e4d4a2324591daa7bc6e47c555a477b6b", "fields": {"nom_de_la_commune": "ST FELIX DE RIEUTORD", "libell_d_acheminement": "ST FELIX DE RIEUTORD", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09258"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175ef22fef02e322a9c2c7e74c17d5a90da65923", "fields": {"nom_de_la_commune": "PRAT BONREPAUX", "libell_d_acheminement": "PRAT BONREPAUX", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09235"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454eb64888af95d5b495f534805c975a619350f1", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "09330", "coordonnees_gps": [42.9375288696, 1.64328854462], "code_commune_insee": "09207"}, "geometry": {"type": "Point", "coordinates": [1.64328854462, 42.9375288696]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971fb8d05d0ad1a18041950f02ea70d13fd8544f", "fields": {"nom_de_la_commune": "ST BAUZEIL", "libell_d_acheminement": "ST BAUZEIL", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09256"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7a3faa9e057eaab2db06e1a2a52647e6b5a992", "fields": {"nom_de_la_commune": "LES PUJOLS", "libell_d_acheminement": "LES PUJOLS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09238"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8040dd5e3bb64983a59b17134d8ea9276a55808e", "fields": {"nom_de_la_commune": "RIEUCROS", "libell_d_acheminement": "RIEUCROS", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09244"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5a65e299fa7f3abba0ee5e1d18e682c13178c2", "fields": {"nom_de_la_commune": "ST AMADOU", "libell_d_acheminement": "ST AMADOU", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09254"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a4012a7575bb459d9c2134747901625698aee8", "fields": {"nom_de_la_commune": "ST AMANS", "libell_d_acheminement": "ST AMANS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09255"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080f701ebd0244f364b2bdcf671f005c2b01305a", "fields": {"nom_de_la_commune": "LES ISSARDS", "libell_d_acheminement": "LES ISSARDS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09145"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9708bb6f9599e36cbe934393954034233838f6b", "fields": {"nom_de_la_commune": "ILLARTEIN", "libell_d_acheminement": "ILLARTEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09141"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9171b5b035a371d23b542e8c738186273aa3e9", "fields": {"nom_de_la_commune": "COUTENS", "libell_d_acheminement": "COUTENS", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09102"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff9359e25a13b037e83219b491bdbac6252fa41f", "fields": {"nom_de_la_commune": "GAUDIES", "libell_d_acheminement": "GAUDIES", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09132"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ed2828725f6cf4a5838b1fae8d7ba26167c3147", "fields": {"nom_de_la_commune": "ESCOSSE", "libell_d_acheminement": "ESCOSSE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09116"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cd1aca52c98c43705aa8c83594af0726ea6ee1", "fields": {"nom_de_la_commune": "LACOURT", "libell_d_acheminement": "LACOURT", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09149"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4902ba20e518ec9b5c1245322bc601c0ea4655", "fields": {"nom_de_la_commune": "ESPLAS", "libell_d_acheminement": "ESPLAS", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09117"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98973425f4ed958ccdeeb29d5829b1007b9b9a71", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09093"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef1f62394552151e142941984aaa1609747608c", "fields": {"nom_de_la_commune": "ILHAT", "libell_d_acheminement": "ILHAT", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09142"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846d7b7efbe645d64dea40376a566c9c3d14698f", "fields": {"nom_de_la_commune": "DUN", "libell_d_acheminement": "DUN", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09107"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0d04d07f6c7ee23acca1b0bb2e7805f347e159", "fields": {"code_postal": "10510", "code_commune_insee": "10220", "libell_d_acheminement": "MAIZIERES LA GRANDE PAROISSE", "ligne_5": "LES GRANGES", "nom_de_la_commune": "MAIZIERES LA GRANDE PAROISSE", "coordonnees_gps": [48.4879809815, 3.8003478172]}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea854cfb8fd69464c64582b6caa8f7d5aee077d", "fields": {"nom_de_la_commune": "MAISONS LES CHAOURCE", "libell_d_acheminement": "MAISONS LES CHAOURCE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10218"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74357657d99e7511dcf6071710f9aa0f8035c0bc", "fields": {"nom_de_la_commune": "MESGRIGNY", "libell_d_acheminement": "MESGRIGNY", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10234"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fcc5878779eb0744cf408ef4046df041667c37", "fields": {"nom_de_la_commune": "MATHAUX", "libell_d_acheminement": "MATHAUX", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10228"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00122d91016a227cd9141cbea22edcac993fa336", "fields": {"code_postal": "09140", "code_commune_insee": "09299", "libell_d_acheminement": "SOUEIX ROGALLE", "ligne_5": "ROGALLE", "nom_de_la_commune": "SOUEIX ROGALLE", "coordonnees_gps": [42.7992501708, 1.2327189582]}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb2b28ceb41d714c6d82d4b2f3450bb38ef9e71", "fields": {"nom_de_la_commune": "ST MARTIN DE CARALP", "libell_d_acheminement": "ST MARTIN DE CARALP", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09269"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0837e8ee05b7e057da1a0d153be74c1d30efe2", "fields": {"nom_de_la_commune": "ST QUENTIN LA TOUR", "libell_d_acheminement": "ST QUENTIN LA TOUR", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09274"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea97eb07a3f4c57029c46a66037d420be4238fc", "fields": {"nom_de_la_commune": "LA TOUR DU CRIEU", "libell_d_acheminement": "LA TOUR DU CRIEU", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09312"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3040199e38544da49cf8497e00a2a341608d8297", "fields": {"nom_de_la_commune": "UCHENTEIN", "libell_d_acheminement": "UCHENTEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09317"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba690d477baa8de690faf2b4eeb913271b5ece0e", "fields": {"nom_de_la_commune": "ST LIZIER", "libell_d_acheminement": "ST LIZIER", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09268"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af847499625532ea2e2422fdd61cbcc15d61faf", "fields": {"nom_de_la_commune": "SURBA", "libell_d_acheminement": "SURBA", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09303"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2b93ac207eb7ce0bc338b8d774f3e042372db5", "fields": {"nom_de_la_commune": "TABRE", "libell_d_acheminement": "TABRE", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09305"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbcfa75698cc1ce4d65929cc1c1d9302f318ee9", "fields": {"nom_de_la_commune": "UNAC", "libell_d_acheminement": "UNAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09318"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39d77456f91d13480524a72684f5b615dfc80aa", "fields": {"nom_de_la_commune": "SOR", "libell_d_acheminement": "SOR", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09297"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "304d1b5e1debde967c7fcbc9557662dc74d9a2ef", "fields": {"nom_de_la_commune": "MONTEGUT PLANTAUREL", "libell_d_acheminement": "MONTEGUT PLANTAUREL", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09202"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d3261daf0a281a252cbc43fc97697e53e62ad3", "fields": {"nom_de_la_commune": "MONTFERRIER", "libell_d_acheminement": "MONTFERRIER", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09206"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d8f37158af169e099bda309c41458abf3e2838", "fields": {"nom_de_la_commune": "MALEGOUDE", "libell_d_acheminement": "MALEGOUDE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09178"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8832437277326080d255ff62be2d1562de316d", "fields": {"nom_de_la_commune": "LIEURAC", "libell_d_acheminement": "LIEURAC", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09168"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3826534d707b31b59f40d9c52514b6c465296a4e", "fields": {"nom_de_la_commune": "LAPEGE", "libell_d_acheminement": "LAPEGE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09152"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a113c6529a7bf085d1218f85a3b0375c046825", "fields": {"nom_de_la_commune": "LANOUX", "libell_d_acheminement": "LANOUX", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09151"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019eada10327573b9e9f19973c63d4a47ead088b", "fields": {"nom_de_la_commune": "LARCAT", "libell_d_acheminement": "LARCAT", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09155"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8763c8be2eadd2e60f38770afae811549c13dd1c", "fields": {"nom_de_la_commune": "MASSAT", "libell_d_acheminement": "MASSAT", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09182"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2bcf1595a0a3a177ccf0d7a09a00dc1aa62c40", "fields": {"nom_de_la_commune": "LERAN", "libell_d_acheminement": "LERAN", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09161"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200ee038e3c502ebf597f498bce40fdd2db5acc7", "fields": {"nom_de_la_commune": "MERAS", "libell_d_acheminement": "MERAS", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09186"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa3f336ee4eb132d80aab4e0a82202418af1e6e", "fields": {"code_postal": "10300", "code_commune_insee": "10211", "libell_d_acheminement": "MACEY", "ligne_5": "GRANGE L EVEQUE", "nom_de_la_commune": "MACEY", "coordonnees_gps": [48.3017985875, 3.94562270532]}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c3fd88647460bf8c8acc2adf6c78109426e212", "fields": {"nom_de_la_commune": "LONGEVILLE SUR MOGNE", "libell_d_acheminement": "LONGEVILLE SUR MOGNE", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10204"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c531d8b28c4054aabbe834b0b9e1b405b6c3a0", "fields": {"nom_de_la_commune": "LA LOUPTIERE THENARD", "libell_d_acheminement": "LA LOUPTIERE THENARD", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10208"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c559a705724a5013a97c4c02a08936a0a8553ed8", "fields": {"nom_de_la_commune": "LONGCHAMP SUR AUJON", "libell_d_acheminement": "LONGCHAMP SUR AUJON", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10203"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a435a132e1c42fca9ef4fa2db9e1ea9d85f97d6c", "fields": {"nom_de_la_commune": "LAINES AUX BOIS", "libell_d_acheminement": "LAINES AUX BOIS", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10186"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e01d98097823dee7cccca155882ac8bbd8b346f", "fields": {"nom_de_la_commune": "MAILLY LE CAMP", "libell_d_acheminement": "MAILLY LE CAMP", "code_postal": "10230", "coordonnees_gps": [48.6745421809, 4.1855506569], "code_commune_insee": "10216"}, "geometry": {"type": "Point", "coordinates": [4.1855506569, 48.6745421809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f8433533d1c0616779277acff0c1c00cd5fe93", "fields": {"nom_de_la_commune": "MAGNY FOUCHARD", "libell_d_acheminement": "MAGNY FOUCHARD", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10215"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d7b27d3d1a165ce614fb63b0c4cfb9a04cc0f5", "fields": {"nom_de_la_commune": "LUYERES", "libell_d_acheminement": "LUYERES", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10210"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5542ae9397e8baa543b55551609ebcd0fbf86f2d", "fields": {"nom_de_la_commune": "FONTENAY DE BOSSERY", "libell_d_acheminement": "FONTENAY DE BOSSERY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10154"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcce1fd9d54ee851c4ef4b5ef173c54ee361c88e", "fields": {"nom_de_la_commune": "FAY LES MARCILLY", "libell_d_acheminement": "FAY LES MARCILLY", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10146"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f88ac91821c61b8fa63bfefe117861e1099954b", "fields": {"nom_de_la_commune": "FAUX VILLECERF", "libell_d_acheminement": "FAUX VILLECERF", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10145"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcfac1705b87933591b441a3e704e1ca90791b3d", "fields": {"nom_de_la_commune": "EAUX PUISEAUX", "libell_d_acheminement": "EAUX PUISEAUX", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10133"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5ccc6e533d1fb05847de4064b4445bdcfe46ea", "fields": {"nom_de_la_commune": "EPOTHEMONT", "libell_d_acheminement": "EPOTHEMONT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10139"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7d6512c76b918cbff644b7264abb7fdce8688c", "fields": {"nom_de_la_commune": "JUZANVIGNY", "libell_d_acheminement": "JUZANVIGNY", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10184"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7914bd7fa338a927da9a8b34235b26662c0a6423", "fields": {"nom_de_la_commune": "GRANDVILLE", "libell_d_acheminement": "GRANDVILLE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10167"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da8ba9773fcefc0044f6c033d2689a31f9d9f05", "fields": {"nom_de_la_commune": "LES GRANGES", "libell_d_acheminement": "LES GRANGES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10168"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b14cf733f49e41c0e1917e234922800f23c6ec4f", "fields": {"nom_de_la_commune": "COQUAINVILLIERS", "libell_d_acheminement": "COQUAINVILLIERS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14177"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbb635fbaff86fdc8b7b684f8038d84d30fa60e", "fields": {"nom_de_la_commune": "CORMOLAIN", "libell_d_acheminement": "CORMOLAIN", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14182"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394dfffa5ab479ace66c95b020e22453ce89b432", "fields": {"nom_de_la_commune": "COTTUN", "libell_d_acheminement": "COTTUN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14184"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44bc7f2b529afb854a6b286d751628fef6184388", "fields": {"nom_de_la_commune": "COURTONNE LA MEURDRAC", "libell_d_acheminement": "COURTONNE LA MEURDRAC", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14193"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82cf5faef81653d8f939ccac25eb092bd95e730", "fields": {"nom_de_la_commune": "CREULLY", "libell_d_acheminement": "CREULLY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14200"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be611fb6f1092ff4054219739e26b3112f74c643", "fields": {"nom_de_la_commune": "CRICQUEVILLE EN AUGE", "libell_d_acheminement": "CRICQUEVILLE EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14203"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9479bf0cbe55d32c44dfa7e208a936672407fc1", "fields": {"nom_de_la_commune": "CROCY", "libell_d_acheminement": "CROCY", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14206"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f008b5bb52eb17f99205ed102831fa0afcb5ac", "fields": {"nom_de_la_commune": "CROUAY", "libell_d_acheminement": "CROUAY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14209"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53749edb530cc5ed620488828457630c4ce665a", "fields": {"nom_de_la_commune": "CULLY", "libell_d_acheminement": "CULLY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14212"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8994f614aca39e553d5fa37c16e807857a51b3e", "fields": {"nom_de_la_commune": "CUVERVILLE", "libell_d_acheminement": "CUVERVILLE", "code_postal": "14840", "coordonnees_gps": [49.1829413019, -0.263699565464], "code_commune_insee": "14215"}, "geometry": {"type": "Point", "coordinates": [-0.263699565464, 49.1829413019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381d6d98c6f14a61c6971213cb512c81519b1be6", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "14350", "coordonnees_gps": [48.9220153608, -0.733098585986], "code_commune_insee": "14217"}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a7c386ff5fd39cb6a04c5a2b1ebbed3f83a8f4", "fields": {"code_postal": "14770", "code_commune_insee": "14219", "libell_d_acheminement": "DANVOU LA FERRIERE", "ligne_5": "LA FERRIERE DUVAL", "nom_de_la_commune": "DANVOU LA FERRIERE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf1daf59b6fc440af561e529f994f18f00fe185", "fields": {"nom_de_la_commune": "DEMOUVILLE", "libell_d_acheminement": "DEMOUVILLE", "code_postal": "14840", "coordonnees_gps": [49.1829413019, -0.263699565464], "code_commune_insee": "14221"}, "geometry": {"type": "Point", "coordinates": [-0.263699565464, 49.1829413019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7807cb233baae97de1ab864b710840e9b3716f2d", "fields": {"nom_de_la_commune": "DOZULE", "libell_d_acheminement": "DOZULE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14229"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45caa92f8def9ed70d44a78996f503c72bff8cf7", "fields": {"code_postal": "14340", "code_commune_insee": "14231", "libell_d_acheminement": "BEAUFOUR DRUVAL", "ligne_5": "BEAUFOUR", "nom_de_la_commune": "BEAUFOUR DRUVAL", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715ec41cb9e4afeb7d76a446ccef30c33d01d76d", "fields": {"code_postal": "14340", "code_commune_insee": "14231", "libell_d_acheminement": "BEAUFOUR DRUVAL", "ligne_5": "ST AUBIN LEBIZAY", "nom_de_la_commune": "BEAUFOUR DRUVAL", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c588058428899e3f3be2745becb4efd0aecdba7", "fields": {"nom_de_la_commune": "ENGLESQUEVILLE LA PERCEE", "libell_d_acheminement": "ENGLESQUEVILLE LA PERCEE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14239"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "451f86810979f167c74f8760702b5ca451aa23ef", "fields": {"nom_de_la_commune": "EPANEY", "libell_d_acheminement": "EPANEY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14240"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6858ceea85d40fd388fd3c036f251ba11c864a2", "fields": {"nom_de_la_commune": "ERAINES", "libell_d_acheminement": "ERAINES", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14244"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528e2632dc19e7d0e5ba60f388691674144cbe40", "fields": {"nom_de_la_commune": "ERNES", "libell_d_acheminement": "ERNES", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14245"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9dd224e93765ee57865fd83f9ae077ecaf8023", "fields": {"nom_de_la_commune": "ESSON", "libell_d_acheminement": "ESSON", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14251"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adda3c9f0ab70348bbc73396a5a2ddb39881d73", "fields": {"nom_de_la_commune": "ETERVILLE", "libell_d_acheminement": "ETERVILLE", "code_postal": "14930", "coordonnees_gps": [49.1299717664, -0.432158841819], "code_commune_insee": "14254"}, "geometry": {"type": "Point", "coordinates": [-0.432158841819, 49.1299717664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7062b9f9e26c6c7a2e24d17e013b4e385feca3d2", "fields": {"nom_de_la_commune": "LE FAULQ", "libell_d_acheminement": "LE FAULQ", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14261"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e152b8505087b6929001a483c652684c577e66", "fields": {"nom_de_la_commune": "FONTAINE LE PIN", "libell_d_acheminement": "FONTAINE LE PIN", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14276"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28f548bd232962e78430be78ac7a7e6760b9107", "fields": {"nom_de_la_commune": "FOURNEAUX LE VAL", "libell_d_acheminement": "FOURNEAUX LE VAL", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14284"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15af98dabbaf1d0d88196809e28c8f6d1b396110", "fields": {"nom_de_la_commune": "FRESNEY LE PUCEUX", "libell_d_acheminement": "FRESNEY LE PUCEUX", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14290"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a689426da77f283994c7a1a033d3b73151a6832", "fields": {"nom_de_la_commune": "FRESNEY LE VIEUX", "libell_d_acheminement": "FRESNEY LE VIEUX", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14291"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0f3fd1c9bd7a869a92ce38d5904155c44855439", "fields": {"nom_de_la_commune": "LE GAST", "libell_d_acheminement": "LE GAST", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14296"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b283679bc43d09c45e9c2655d893f02f203fbf96", "fields": {"nom_de_la_commune": "GIBERVILLE", "libell_d_acheminement": "GIBERVILLE", "code_postal": "14730", "coordonnees_gps": [49.1778233329, -0.286397043342], "code_commune_insee": "14301"}, "geometry": {"type": "Point", "coordinates": [-0.286397043342, 49.1778233329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac85564a893f7efeb0be75c81e6d1a12845c11c", "fields": {"nom_de_la_commune": "GLANVILLE", "libell_d_acheminement": "GLANVILLE", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14302"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40ebcc6343b6498a3bfc5b2f04c8ac82c9e6393", "fields": {"nom_de_la_commune": "GOUVIX", "libell_d_acheminement": "GOUVIX", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14309"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3cdff214e04b81ddeba459adc2d2b036f559475", "fields": {"nom_de_la_commune": "GRAINVILLE SUR ODON", "libell_d_acheminement": "GRAINVILLE SUR ODON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14311"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7913282f415dcd15c644f275b1533867e0d956", "fields": {"code_postal": "14450", "code_commune_insee": "14312", "libell_d_acheminement": "GRANDCAMP MAISY", "ligne_5": "MAISY", "nom_de_la_commune": "GRANDCAMP MAISY", "coordonnees_gps": [49.3773022601, -1.01912663237]}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a415a1ed2929828bb102753f9c22182b2a50a57", "fields": {"code_postal": "14600", "code_commune_insee": "14333", "libell_d_acheminement": "HONFLEUR", "ligne_5": "VASOUY", "nom_de_la_commune": "HONFLEUR", "coordonnees_gps": [49.3903552153, 0.241678986745]}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f249c3da945afa2c5fb4ca1c355b8c24ba2e15", "fields": {"code_postal": "14430", "code_commune_insee": "14335", "libell_d_acheminement": "HOTOT EN AUGE", "ligne_5": "LE HAM", "nom_de_la_commune": "HOTOT EN AUGE", "coordonnees_gps": [49.2183532057, -0.0305664652154]}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e59c14715f73a0f24b3119a35799c0f0c04a0b6", "fields": {"nom_de_la_commune": "HUBERT FOLIE", "libell_d_acheminement": "HUBERT FOLIE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14339"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8641b69e14b74a146e5f04fcffafbe548cc70a4c", "fields": {"nom_de_la_commune": "JURQUES", "libell_d_acheminement": "JURQUES", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14347"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3bb97ce28050b8bd4d8679e50a2d2ac99d32d8", "fields": {"nom_de_la_commune": "LANTHEUIL", "libell_d_acheminement": "LANTHEUIL", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14355"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe5819cdf0f8f86dccb540a76ebd1da04b6e2ce", "fields": {"nom_de_la_commune": "LESSARD ET LE CHENE", "libell_d_acheminement": "LESSARD ET LE CHENE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14362"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8addd04f29bb1b615ff6d2d51c9192ec321688ba", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "CHEFFREVILLE TONNENCOURT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a3997b7cf1baa612b7642715a0492d562676c4", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "FERVAQUES", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7ba8b91f2511bfee675028edb55a9987a29881", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LE MESNIL DURAND", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2740d0d7f11e81c37622cf6d9e0436f889bf093c", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LIVAROT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b12513c3b5c352eb75fde6aa980225ebd79b0ac", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "NOTRE DAME DE COURSON", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c466b3ba317100a6e42ef80ea8582c4e4a7f51d2", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "ST OUEN LE HOUX", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4d04cba6d8215819a6d61e4f7b3b8abc230336", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "TORTISAMBERT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "becf9c4eb4c31112326719f94789fc85b135e821", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "PREAUX ST SEBASTIEN", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c8001c821f012410f22903a6e3d4a83517c818", "fields": {"nom_de_la_commune": "LIVRY", "libell_d_acheminement": "LIVRY", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14372"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22522a66b3fd27e088be266fadaffe39d6cada07", "fields": {"nom_de_la_commune": "LES LOGES SAULCES", "libell_d_acheminement": "LES LOGES SAULCES", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14375"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d3980b8a14567973557b80e94bc8a4731863a5", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14378"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5225c26ebea54ad6624adce0acd530f4916ff7b0", "fields": {"nom_de_la_commune": "MAGNY EN BESSIN", "libell_d_acheminement": "MAGNY EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14385"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558b95896499e58a67176dd0d2e77f1fdf9100a1", "fields": {"nom_de_la_commune": "MAGNY LE FREULE", "libell_d_acheminement": "MAGNY LE FREULE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14387"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d97fdc2b5842fefd918fe6c1dd59abe969ced1", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14394"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d83ef70aaa29b17bf6f09dff88a80b0bbb137c", "fields": {"nom_de_la_commune": "MANERBE", "libell_d_acheminement": "MANERBE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14398"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c27078964fd79dc739eb54bdf1153cb9b283556", "fields": {"nom_de_la_commune": "LE MARAIS LA CHAPELLE", "libell_d_acheminement": "LE MARAIS LA CHAPELLE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14402"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0720c1d7f4cb6c0a6b98e92e51204ded5b3830", "fields": {"nom_de_la_commune": "MARTRAGNY", "libell_d_acheminement": "MARTRAGNY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14406"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b698b0d9894bdd2e388060d7757b69cf8330d48b", "fields": {"nom_de_la_commune": "MERY CORBON", "libell_d_acheminement": "MERY CORBON", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14410"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "473ae8866487262981f22822988aed29645b6350", "fields": {"nom_de_la_commune": "MESLAY", "libell_d_acheminement": "MESLAY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14411"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34acd682536386859f89e8023fbb8af61778d701", "fields": {"nom_de_la_commune": "LE MESNIL AU GRAIN", "libell_d_acheminement": "LE MESNIL AU GRAIN", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14412"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b46322e0857d512a122292328378ceb5c273ee8", "fields": {"nom_de_la_commune": "MESNIL CLINCHAMPS", "libell_d_acheminement": "MESNIL CLINCHAMPS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14417"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6718869ed6852d9ad799f8c047d10c7288224b17", "fields": {"nom_de_la_commune": "LE MESNIL SIMON", "libell_d_acheminement": "LE MESNIL SIMON", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14425"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80528fc6428887851e657d6b0d07c9e9fd338cd7", "fields": {"code_postal": "14270", "code_commune_insee": "14431", "libell_d_acheminement": "MEZIDON CANON", "ligne_5": "CANON", "nom_de_la_commune": "MEZIDON CANON", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76fef953179bd6dab688baff9bf9c0ac2c4eb1c", "fields": {"nom_de_la_commune": "LES MONCEAUX", "libell_d_acheminement": "LES MONCEAUX", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14435"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c93d3bf05269ff55bb234544c90b98263da6f5", "fields": {"nom_de_la_commune": "MONFREVILLE", "libell_d_acheminement": "MONFREVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14439"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "babaac342e34a214696466011fe9a838dfb107e4", "fields": {"nom_de_la_commune": "MOSLES", "libell_d_acheminement": "MOSLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14453"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54d96b701c278aa4693b07a354c0d428583d23f0", "fields": {"nom_de_la_commune": "MOULINES", "libell_d_acheminement": "MOULINES", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14455"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a9ff7c6c0a36913f505e2a69be937ee48d57e6", "fields": {"nom_de_la_commune": "MOULT", "libell_d_acheminement": "MOULT", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14456"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8edbf8f8f7d7cda4b2192a4b206f568b452ddab", "fields": {"nom_de_la_commune": "NONANT", "libell_d_acheminement": "NONANT", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14465"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b1359b3a297910bb7241c84d232dabaf6266eb", "fields": {"nom_de_la_commune": "NORON LA POTERIE", "libell_d_acheminement": "NORON LA POTERIE", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14468"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a223987a171d3f6c0f9c3633b1d59fc216d062c3", "fields": {"nom_de_la_commune": "NOYERS MISSY", "libell_d_acheminement": "NOYERS MISSY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14475"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d514f9f9f22e613e59981d0c8a2202fafec6afec", "fields": {"code_postal": "14210", "code_commune_insee": "14475", "libell_d_acheminement": "NOYERS MISSY", "ligne_5": "MISSY", "nom_de_la_commune": "NOYERS MISSY", "coordonnees_gps": [49.1001637748, -0.508327897598]}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92266437b23f05b8c7e983ed70a7bba6092d6f95", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14496"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eccb8959b4a3ae01efdcda3733bc92d596cd908b", "fields": {"nom_de_la_commune": "PONT BELLANGER", "libell_d_acheminement": "PONT BELLANGER", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14511"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76422594cc6e7a4e2770a3b779b1ce3853ddc025", "fields": {"nom_de_la_commune": "PONT L EVEQUE", "libell_d_acheminement": "PONT L EVEQUE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14514"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e259d0ee200a2405ea30c8a521bc304f3ae8ad", "fields": {"nom_de_la_commune": "LE PRE D AUGE", "libell_d_acheminement": "LE PRE D AUGE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14520"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da67f18890b75f299914e63c7e2b7c53633d85df", "fields": {"nom_de_la_commune": "RANVILLE", "libell_d_acheminement": "RANVILLE", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14530"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5460e1da7e8a8efd8b19d2e6892fe1072cdae12", "fields": {"nom_de_la_commune": "REPENTIGNY", "libell_d_acheminement": "REPENTIGNY", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14533"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed13cccdca0cf67ea987bb64a731f2bc97c959cb", "fields": {"nom_de_la_commune": "REUX", "libell_d_acheminement": "REUX", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14534"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ef94b4cdcbcbbe678c9b861ea89b765edb695c", "fields": {"code_postal": "14740", "code_commune_insee": "14543", "libell_d_acheminement": "ROTS", "ligne_5": "SECQUEVILLE EN BESSIN", "nom_de_la_commune": "ROTS", "coordonnees_gps": [49.2134618013, -0.521360272238]}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5af98254e60da00b307bc6d9f0b10c56e2ecb0", "fields": {"nom_de_la_commune": "ROUCAMPS", "libell_d_acheminement": "ROUCAMPS", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14544"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332d787a966627ead4d106f885309b3711e04f10", "fields": {"nom_de_la_commune": "RUCQUEVILLE", "libell_d_acheminement": "RUCQUEVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14548"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e320ec00a9dfd6520de376346171c89683c7948d", "fields": {"nom_de_la_commune": "RUSSY", "libell_d_acheminement": "RUSSY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14551"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdedbec5df779a7a81aab23529ebec363c24edaf", "fields": {"nom_de_la_commune": "ST ANDRE SUR ORNE", "libell_d_acheminement": "ST ANDRE SUR ORNE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14556"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd2c4f13162253e5e4b658e1e682c46e29421f4", "fields": {"nom_de_la_commune": "ST CONTEST", "libell_d_acheminement": "ST CONTEST", "code_postal": "14280", "coordonnees_gps": [49.2095685958, -0.412342557701], "code_commune_insee": "14566"}, "geometry": {"type": "Point", "coordinates": [-0.412342557701, 49.2095685958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517ddce4d1f4e08fc740c412283aeccb37b81813", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "LA CHAPELLE YVON", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b4e202ed526db91845de3a3d3a3e229c56ce33", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "ST JULIEN DE MAILLOC", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e132d65efef029331e11cc3b1cd2c0a963d46a58", "fields": {"nom_de_la_commune": "ST DENIS DE MERE", "libell_d_acheminement": "ST DENIS DE MERE", "code_postal": "14110", "coordonnees_gps": [48.8603879133, -0.538857121596], "code_commune_insee": "14572"}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50e633bf6ffb6ac14dd3028d5172717d8ed6a26", "fields": {"nom_de_la_commune": "ST GABRIEL BRECY", "libell_d_acheminement": "ST GABRIEL BRECY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14577"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cbfdd1010958d9763dadf6274b8832896ce8da", "fields": {"nom_de_la_commune": "STE HONORINE DES PERTES", "libell_d_acheminement": "STE HONORINE DES PERTES", "code_postal": "14520", "coordonnees_gps": [49.3400701436, -0.771788294928], "code_commune_insee": "14591"}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802bf8887533cf4cb308d6ec6c42c2b39635c7f1", "fields": {"nom_de_la_commune": "ST JEAN DE LIVET", "libell_d_acheminement": "ST JEAN DE LIVET", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14595"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27eedfa8b6c3d34b4a0d69f568359d7768fdb34", "fields": {"nom_de_la_commune": "ST JEAN LE BLANC", "libell_d_acheminement": "ST JEAN LE BLANC", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14597"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcdea85ecceb3742e4b51ef8c5af8b28ad6da1d", "fields": {"nom_de_la_commune": "ST LAURENT DE CONDEL", "libell_d_acheminement": "ST LAURENT DE CONDEL", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14603"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7291509b79a0ed62c90918d85fd1ba8b963cf75", "fields": {"code_postal": "14740", "code_commune_insee": "14610", "libell_d_acheminement": "ST MANVIEU NORREY", "ligne_5": "NORREY EN BESSIN", "nom_de_la_commune": "ST MANVIEU NORREY", "coordonnees_gps": [49.2134618013, -0.521360272238]}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "308d45105efa6f715c4e176354b1fe615fb3231f", "fields": {"nom_de_la_commune": "STE MARGUERITE DE VIETTE", "libell_d_acheminement": "STE MARGUERITE DE VIETTE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14616"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "085bf187200c2746df91ff31e9f475f14c3459a3", "fields": {"nom_de_la_commune": "ST MARTIN AUX CHARTRAINS", "libell_d_acheminement": "ST MARTIN AUX CHARTRAINS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14620"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2106ab19466599a06c9702d7faa601d8026f6593", "fields": {"nom_de_la_commune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE", "libell_d_acheminement": "ST MARTIN BIENFAITE CRESSONNIERE", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14621"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8d884689d0efeb61a01b1cb55804cdecc8e4e9", "fields": {"code_postal": "14290", "code_commune_insee": "14621", "libell_d_acheminement": "ST MARTIN BIENFAITE CRESSONNIERE", "ligne_5": "LA CRESSONNIERE", "nom_de_la_commune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a3e6223b3cd278f86795ad3eee3056709606528", "fields": {"nom_de_la_commune": "ST MARTIN DE MIEUX", "libell_d_acheminement": "ST MARTIN DE MIEUX", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14627"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839c45a9b3e63cad1cbd092dfb27a99538a93334", "fields": {"nom_de_la_commune": "ST PIERRE DU BU", "libell_d_acheminement": "ST PIERRE DU BU", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14649"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4814f7dec9ec1fc5ea43fb5945bfc9df8c1ffb1c", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14656"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b382e747ac489d0e5cf7c61afbfa840b516bcbfb", "fields": {"nom_de_la_commune": "PREZ", "libell_d_acheminement": "PREZ", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08344"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f11acba9b664ef152caffe94a1934368a21ed5", "fields": {"code_postal": "08240", "code_commune_insee": "08437", "libell_d_acheminement": "TAILLY", "ligne_5": "ANDEVANNE", "nom_de_la_commune": "TAILLY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6653d52308674fb52b96c9f264c53d793c0ba70", "fields": {"nom_de_la_commune": "TREMBLOIS LES CARIGNAN", "libell_d_acheminement": "TREMBLOIS LES CARIGNAN", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08459"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9325229d917f2a1a3977b0507f5e1b511f995253", "fields": {"nom_de_la_commune": "TERRON SUR AISNE", "libell_d_acheminement": "TERRON SUR AISNE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08443"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcf74105bc7dd92a23406756041081eccac1a8b", "fields": {"nom_de_la_commune": "THUGNY TRUGNY", "libell_d_acheminement": "THUGNY TRUGNY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08452"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9780dc6986d8f3229f0cf3c4c5569f05e91fb18", "fields": {"nom_de_la_commune": "STONNE", "libell_d_acheminement": "STONNE", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08430"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22bff2a8cb66848f98dca556596dfd89f5d0b8c9", "fields": {"nom_de_la_commune": "TAILLY", "libell_d_acheminement": "TAILLY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08437"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3cf10c49fa4eb040ad40e42c504857ba5c1becf", "fields": {"nom_de_la_commune": "THILAY", "libell_d_acheminement": "THILAY", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08448"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1e09f9166403116f8e46e6216d798c7862a5f5", "fields": {"nom_de_la_commune": "THIS", "libell_d_acheminement": "THIS", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08450"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517fc36891589d06465e79fa2d727c2d73701b23", "fields": {"nom_de_la_commune": "SY", "libell_d_acheminement": "SY", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08434"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ed36ca8ac1500cbf59a6c64eda9818022b7a23", "fields": {"code_postal": "10190", "code_commune_insee": "10003", "libell_d_acheminement": "AIX VILLEMAUR PALIS", "ligne_5": "VILLEMAUR SUR VANNE", "nom_de_la_commune": "AIX VILLEMAUR PALIS", "coordonnees_gps": [48.249510935, 3.83670117751]}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1758d6dd13d17e64f8cf9c0880dd676225f734", "fields": {"nom_de_la_commune": "AIX VILLEMAUR PALIS", "libell_d_acheminement": "AIX VILLEMAUR PALIS", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10003"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13c808f978a1377acde9f43c7d1b72c55033902", "fields": {"nom_de_la_commune": "THOUARS SUR ARIZE", "libell_d_acheminement": "THOUARS SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09310"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97100bae17bd6af8c884c4dc73d47ee41a7d77e5", "fields": {"nom_de_la_commune": "SERRES SUR ARGET", "libell_d_acheminement": "SERRES SUR ARGET", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09293"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74bcbaa251c213c33da589a2754d8c740ae560e1", "fields": {"nom_de_la_commune": "TROYE D ARIEGE", "libell_d_acheminement": "TROYE D ARIEGE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09316"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4d6bc1e71453916a2eab0fd7078dae3d8f9d6e", "fields": {"nom_de_la_commune": "VERNAJOUL", "libell_d_acheminement": "VERNAJOUL", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09329"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38d01b94987f3a43bd0b45f38a7175bc38f88f6", "fields": {"nom_de_la_commune": "VERNAUX", "libell_d_acheminement": "VERNAUX", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09330"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cabc6bf89d333cf0f83292f33c5daa22cc8e86", "fields": {"nom_de_la_commune": "SIEURAS", "libell_d_acheminement": "SIEURAS", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09294"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5f5b04f4763617f53e7bb9630a2bc5b5a15a6f", "fields": {"nom_de_la_commune": "SIGUER", "libell_d_acheminement": "SIGUER", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09295"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1476044f7d5b1b3d26f02073049a777d74278bcb", "fields": {"nom_de_la_commune": "SOULAN", "libell_d_acheminement": "SOULAN", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09301"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde4334883518022f408dcc258325498072ce011", "fields": {"code_postal": "08270", "code_commune_insee": "08472", "libell_d_acheminement": "VIEL ST REMY", "ligne_5": "MARGY", "nom_de_la_commune": "VIEL ST REMY", "coordonnees_gps": [49.6013662608, 4.45102282302]}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182af1355b863b1667b7bd2deb894042ef89ef41", "fields": {"nom_de_la_commune": "VIREUX WALLERAND", "libell_d_acheminement": "VIREUX WALLERAND", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08487"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9166a43276892bf83617c96c5b2692e0784b085f", "fields": {"nom_de_la_commune": "VILLERS SUR BAR", "libell_d_acheminement": "VILLERS SUR BAR", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08481"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be93b2e84bf92d75b0f04184bcfba4cb6c2cc87", "fields": {"nom_de_la_commune": "VILLE SUR LUMES", "libell_d_acheminement": "VILLE SUR LUMES", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08483"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6d855190fb05f94899e00cf9e732611a0cc24c", "fields": {"nom_de_la_commune": "VAUX CHAMPAGNE", "libell_d_acheminement": "VAUX CHAMPAGNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08462"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdbdf6331b80b5e84b46230ee737c74f2766848", "fields": {"nom_de_la_commune": "VAUX MONTREUIL", "libell_d_acheminement": "VAUX MONTREUIL", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08467"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a11aca1cdeced166c79e9b23cec2951d97c3d615", "fields": {"nom_de_la_commune": "WARNECOURT", "libell_d_acheminement": "WARNECOURT", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08498"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b22259ead9b74ca3c9079a51ed56c99548b9fa", "fields": {"nom_de_la_commune": "L AIGUILLON", "libell_d_acheminement": "L AIGUILLON", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09003"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa766e433c3f13b6314679172e28342cb71696d", "fields": {"nom_de_la_commune": "WIGNICOURT", "libell_d_acheminement": "WIGNICOURT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08500"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e6e958dcca4153812f9959a25c89c637f0ab7a", "fields": {"nom_de_la_commune": "VENDRESSE", "libell_d_acheminement": "VENDRESSE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08469"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac57559bf80e95d53524c8585cc4e9d0acf6da6b", "fields": {"code_postal": "09140", "code_commune_insee": "09100", "libell_d_acheminement": "COUFLENS", "ligne_5": "SALAU", "nom_de_la_commune": "COUFLENS", "coordonnees_gps": [42.7992501708, 1.2327189582]}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dfe1e2bd871349471985aabcb8f3f2f517d0e9", "fields": {"code_postal": "09600", "code_commune_insee": "09107", "libell_d_acheminement": "DUN", "ligne_5": "ENGRAVIES", "nom_de_la_commune": "DUN", "coordonnees_gps": [42.9966813157, 1.86782868426]}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89628b6d68bb6e08226e47327b7720a6d1413077", "fields": {"nom_de_la_commune": "FERRIERES SUR ARIEGE", "libell_d_acheminement": "FERRIERES SUR ARIEGE", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09121"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65a6f9ad3c83d80baf88796e9d9f6afe1fb629a", "fields": {"nom_de_la_commune": "DAUMAZAN SUR ARIZE", "libell_d_acheminement": "DAUMAZAN SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09105"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "856e4e5dd60b10a0d71b043e10dbfea5c0367d7b", "fields": {"nom_de_la_commune": "DURBAN SUR ARIZE", "libell_d_acheminement": "DURBAN SUR ARIZE", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09108"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd0656a87485b338a552f9a6c5b52f4475e9050", "fields": {"nom_de_la_commune": "CRAMPAGNA", "libell_d_acheminement": "CRAMPAGNA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09103"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed28f4e58030a15e810efafa39d2f44a24edce27", "fields": {"nom_de_la_commune": "LE FOSSAT", "libell_d_acheminement": "LE FOSSAT", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09124"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d60dda0af525875766509a208f534c270461d9", "fields": {"nom_de_la_commune": "COUFLENS", "libell_d_acheminement": "COUFLENS", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09100"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799c5c3da3802a5ced30e5c3c4bff515be3a50bb", "fields": {"nom_de_la_commune": "EYCHEIL", "libell_d_acheminement": "EYCHEIL", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09119"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02299c734c2187a367c1f550e4ea27ab151b6007", "fields": {"nom_de_la_commune": "DALOU", "libell_d_acheminement": "DALOU", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09104"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f898f011f71f0ef44d614aa9c96d55a206a7ead7", "fields": {"nom_de_la_commune": "LEZAT SUR LEZE", "libell_d_acheminement": "LEZAT SUR LEZE", "code_postal": "09210", "coordonnees_gps": [43.2658077144, 1.36518366912], "code_commune_insee": "09167"}, "geometry": {"type": "Point", "coordinates": [1.36518366912, 43.2658077144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2974403e9e65dacb1584574a1a7608ec74f5b13c", "fields": {"nom_de_la_commune": "LIMBRASSAC", "libell_d_acheminement": "LIMBRASSAC", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09169"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21951ed41260688921452cfc1229ff98b7c32276", "fields": {"nom_de_la_commune": "MONTARDIT", "libell_d_acheminement": "MONTARDIT", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09198"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0716724c1ff6ff8fe2688afad786c3246747bdf4", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09158"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac178c7e378aabc3e5fd3daad960d321babf460", "fields": {"nom_de_la_commune": "LABATUT", "libell_d_acheminement": "LABATUT", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09147"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49c8a7f7844b15e200da6ab844f75ee0186f6f1", "fields": {"nom_de_la_commune": "LUZENAC", "libell_d_acheminement": "LUZENAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09176"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7714a7d174f93d7100c40ee43ce07d1d314c022", "fields": {"nom_de_la_commune": "MALLEON", "libell_d_acheminement": "MALLEON", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09179"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2eb3f9eb651b95a9e2ff9e44f202f2520772252", "fields": {"nom_de_la_commune": "GESTIES", "libell_d_acheminement": "GESTIES", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09134"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b5d630e5b81bccace344181b713dbf3f0c985d", "fields": {"nom_de_la_commune": "MAZERES", "libell_d_acheminement": "MAZERES", "code_postal": "09270", "coordonnees_gps": [43.2305726862, 1.6788901115], "code_commune_insee": "09185"}, "geometry": {"type": "Point", "coordinates": [1.6788901115, 43.2305726862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273dca01f5c838d6e45e6c2d079e7cbf10cdb277", "fields": {"nom_de_la_commune": "GANAC", "libell_d_acheminement": "GANAC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09130"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23875c141aeae1f0b4d3b8c5b57db8ee9dd564f6", "fields": {"nom_de_la_commune": "CARLA BAYLE", "libell_d_acheminement": "CARLA BAYLE", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09079"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d274430ed20f73faaf705f5bc98ec7db55c324cc", "fields": {"nom_de_la_commune": "LE CARLARET", "libell_d_acheminement": "LE CARLARET", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09081"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20da3f569681f1a822fdb1d1eb410adfc8080227", "fields": {"nom_de_la_commune": "BOUSSENAC", "libell_d_acheminement": "BOUSSENAC", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09065"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5da6a7e796460965015be509d7b6d3da2b8b69", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09097"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e94464743b4ce4540d6c3dd10809c4bdd25087e", "fields": {"nom_de_la_commune": "CONTRAZY", "libell_d_acheminement": "CONTRAZY", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09098"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16aa2c04dc941e04919b410dd367849f2c965764", "fields": {"nom_de_la_commune": "BELESTA", "libell_d_acheminement": "BELESTA", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09047"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745734794ce751579288d2fd2e662815b68cf113", "fields": {"nom_de_la_commune": "CAZAVET", "libell_d_acheminement": "CAZAVET", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09091"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9bbbbb0b975d043910fd15f1137c8599db31886", "fields": {"nom_de_la_commune": "BONNAC", "libell_d_acheminement": "BONNAC", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09060"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13269c04cfcc48e6ab3c135a1ac6eaf88a81bbdd", "fields": {"nom_de_la_commune": "CASTEX", "libell_d_acheminement": "CASTEX", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09084"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7a732b05d8b8395818da36163f43582598ca60", "fields": {"nom_de_la_commune": "CAMON", "libell_d_acheminement": "CAMON", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09074"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8231d9a87986f3f633f4d05585ef4ee2ebe61fd", "fields": {"nom_de_la_commune": "MONTEGUT EN COUSERANS", "libell_d_acheminement": "MONTEGUT EN COUSERANS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09201"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0c9955cda8242649d55828f6793e727d3bc9b84", "fields": {"nom_de_la_commune": "MONTSEGUR", "libell_d_acheminement": "MONTSEGUR", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09211"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b76e98740e96263d7f5acbbf1782a1062d7bc8", "fields": {"nom_de_la_commune": "MONTGAUCH", "libell_d_acheminement": "MONTGAUCH", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09208"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b372afb93221ce71cab1af523b7a9e6be5d7b7a", "fields": {"nom_de_la_commune": "PRADETTES", "libell_d_acheminement": "PRADETTES", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09233"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6329383ed6ab2efed5719c1acd9ac50e488beca7", "fields": {"nom_de_la_commune": "LE PUCH", "libell_d_acheminement": "LE PUCH", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09237"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0e887ed6c2035d597ac0ed899eb8c076f3751c", "fields": {"nom_de_la_commune": "LE PLA", "libell_d_acheminement": "LE PLA", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09230"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e80c3f1b404f694f6dc3abad8e4d91551dd803", "fields": {"nom_de_la_commune": "MOULIS", "libell_d_acheminement": "MOULIS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09214"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1db3f92a964a946cd03786a400964cbe998ec17", "fields": {"nom_de_la_commune": "NESCUS", "libell_d_acheminement": "NESCUS", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09216"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd4bd2b6e8b30a96ad2a5002b5dc1f7f94f0e5f8", "fields": {"nom_de_la_commune": "ORGEIX", "libell_d_acheminement": "ORGEIX", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09218"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275d4bed79c09e9795c2c8337ceba66bbd6e4a19", "fields": {"nom_de_la_commune": "NIAUX", "libell_d_acheminement": "NIAUX", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09217"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8216f365a0bef246c895d8184621144037b195f3", "fields": {"nom_de_la_commune": "DOLANCOURT", "libell_d_acheminement": "DOLANCOURT", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10126"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0115f019ec3e3421e2aa861ee1babb117fe28399", "fields": {"nom_de_la_commune": "CUSSANGY", "libell_d_acheminement": "CUSSANGY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10120"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a4491492967c2c6423f623923b04a3b50d62e2", "fields": {"nom_de_la_commune": "CUNFIN", "libell_d_acheminement": "CUNFIN", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10119"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ebab59ec080c8a274dcdd14e53f2f9a262cb9a4", "fields": {"code_postal": "45100", "code_commune_insee": "45234", "libell_d_acheminement": "ORLEANS", "ligne_5": "LA SOURCE", "nom_de_la_commune": "ORLEANS", "coordonnees_gps": [47.8826248233, 1.91635582903]}, "geometry": {"type": "Point", "coordinates": [1.91635582903, 47.8826248233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74238f7a8ad2eb9ae011289e60774192faf5661b", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45237"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8c11e3624f7fd8b377f1a87785c71f31f2893e", "fields": {"nom_de_la_commune": "OUSSON SUR LOIRE", "libell_d_acheminement": "OUSSON SUR LOIRE", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45238"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40dd49f6c78ac6b3d4a2e7fcf333ac3bb941464f", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "ALLAINVILLE EN BEAUCE", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b1fab04c6344c1cd0092b3637a8e87c62c8475", "fields": {"nom_de_la_commune": "OUZOUER SOUS BELLEGARDE", "libell_d_acheminement": "OUZOUER SOUS BELLEGARDE", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45243"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d95a16f35bda24d2524a06e4e3a121258d9e0d", "fields": {"nom_de_la_commune": "OUZOUER SUR TREZEE", "libell_d_acheminement": "OUZOUER SUR TREZEE", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45245"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a775db4d2868c48f7174e5195613193b40d9f2", "fields": {"nom_de_la_commune": "PITHIVIERS", "libell_d_acheminement": "PITHIVIERS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45252"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de7dd28228904a9f4fb71cf40ab1ab8ee0dc883", "fields": {"nom_de_la_commune": "RAMOULU", "libell_d_acheminement": "RAMOULU", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45260"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5cd54e446c68c5679e70c5a530c66a6e14af168", "fields": {"nom_de_la_commune": "ST DENIS DE L HOTEL", "libell_d_acheminement": "ST DENIS DE L HOTEL", "code_postal": "45550", "coordonnees_gps": [47.8830814884, 2.1536101469], "code_commune_insee": "45273"}, "geometry": {"type": "Point", "coordinates": [2.1536101469, 47.8830814884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b65559cf00a5d66d9b0c977f1bcdf4ec881d8ee", "fields": {"nom_de_la_commune": "ST DENIS EN VAL", "libell_d_acheminement": "ST DENIS EN VAL", "code_postal": "45560", "coordonnees_gps": [47.8809759841, 1.97258529438], "code_commune_insee": "45274"}, "geometry": {"type": "Point", "coordinates": [1.97258529438, 47.8809759841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01d2348a245cb3d63138eac8ed65b68ae88e303", "fields": {"nom_de_la_commune": "ST HILAIRE ST MESMIN", "libell_d_acheminement": "ST HILAIRE ST MESMIN", "code_postal": "45160", "coordonnees_gps": [47.8140032252, 1.87690042129], "code_commune_insee": "45282"}, "geometry": {"type": "Point", "coordinates": [1.87690042129, 47.8140032252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e8209cba07ae8af2cecd39f4ecf2e693679c12", "fields": {"nom_de_la_commune": "ST JEAN DE BRAYE", "libell_d_acheminement": "ST JEAN DE BRAYE", "code_postal": "45800", "coordonnees_gps": [47.9164571685, 1.97410766394], "code_commune_insee": "45284"}, "geometry": {"type": "Point", "coordinates": [1.97410766394, 47.9164571685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d1c116046b884a7b0705ca81b8ae26ed2729a7", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45294"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdcfd642742f6a16c39a2a40e2bf48b98ec5f3ea", "fields": {"nom_de_la_commune": "ST PERAVY LA COLOMBE", "libell_d_acheminement": "ST PERAVY LA COLOMBE", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45296"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace933f30fd9c4aa86635a7b778c978cded9530e", "fields": {"nom_de_la_commune": "ST PERE SUR LOIRE", "libell_d_acheminement": "ST PERE SUR LOIRE", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45297"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c23bd28c5c7ab64f2cc8c22488daa8f06ceaad", "fields": {"nom_de_la_commune": "ST PRYVE ST MESMIN", "libell_d_acheminement": "ST PRYVE ST MESMIN", "code_postal": "45750", "coordonnees_gps": [47.8799809099, 1.85399682798], "code_commune_insee": "45298"}, "geometry": {"type": "Point", "coordinates": [1.85399682798, 47.8799809099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a173dc5dfdaa66a44b2da488c19e95918cfb47", "fields": {"nom_de_la_commune": "SANTEAU", "libell_d_acheminement": "SANTEAU", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45301"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5a2bc5c109ec6623b2c675dba23ca0f1b072ef", "fields": {"nom_de_la_commune": "SARAN", "libell_d_acheminement": "SARAN", "code_postal": "45770", "coordonnees_gps": [47.9497637523, 1.87835179014], "code_commune_insee": "45302"}, "geometry": {"type": "Point", "coordinates": [1.87835179014, 47.9497637523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57aad8a4bad196ab7bd1406c81862bba40087d2", "fields": {"nom_de_la_commune": "SCEAUX DU GATINAIS", "libell_d_acheminement": "SCEAUX DU GATINAIS", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45303"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae01c40368ff0c62807a9f594bf723a08c5801f5", "fields": {"nom_de_la_commune": "SIGLOY", "libell_d_acheminement": "SIGLOY", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45311"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a04313c55a5f7382f8337640424a62c06abd42d", "fields": {"nom_de_la_commune": "THIMORY", "libell_d_acheminement": "THIMORY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45321"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb8455d314b139ba99e911f913faf018a8d06fd", "fields": {"nom_de_la_commune": "THOU", "libell_d_acheminement": "THOU", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45323"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2654cb253c22306fcba60067199e5b4681f5bb6", "fields": {"nom_de_la_commune": "TIGY", "libell_d_acheminement": "TIGY", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45324"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a688773719c282393cbb625a0d2621e3149e1992", "fields": {"nom_de_la_commune": "TREILLES EN GATINAIS", "libell_d_acheminement": "TREILLES EN GATINAIS", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45328"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55ac008726ce6fb62b8a92f718de28de8d341cf4", "fields": {"nom_de_la_commune": "VIENNE EN VAL", "libell_d_acheminement": "VIENNE EN VAL", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45335"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f4e85e4128edb94a927d7c0609b18b9d2d32f4", "fields": {"nom_de_la_commune": "VILLEMANDEUR", "libell_d_acheminement": "VILLEMANDEUR", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45338"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307006b82e1611e1ecf80bac99133b77ab6410e1", "fields": {"nom_de_la_commune": "VILLORCEAU", "libell_d_acheminement": "VILLORCEAU", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45344"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6ce73259455f8455273c33c6a143620cb630f5", "fields": {"nom_de_la_commune": "LE CHILLOU", "libell_d_acheminement": "LE CHILLOU", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79089"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272656bfee3a27945bf5e9b511757cd5c1b27404", "fields": {"nom_de_la_commune": "CLAVE", "libell_d_acheminement": "CLAVE", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79092"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e86488bf78be462b4d02cb8ea6a2b872a1d7eba", "fields": {"nom_de_la_commune": "COULONGES THOUARSAIS", "libell_d_acheminement": "COULONGES THOUARSAIS", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79102"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495dfeff2dc8dd2856bb5ea2a237c04815f983f3", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79104"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f77be00b989374a03ead78e0fdad4ef16e4d4a2", "fields": {"nom_de_la_commune": "FOMPERRON", "libell_d_acheminement": "FOMPERRON", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79121"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b753a95704a1f70ce236aea93dc01c65cdf4614", "fields": {"code_postal": "79380", "code_commune_insee": "79123", "libell_d_acheminement": "LA FORET SUR SEVRE", "ligne_5": "MONTIGNY", "nom_de_la_commune": "LA FORET SUR SEVRE", "coordonnees_gps": [46.7639583246, -0.657227871413]}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb002454e68caf2c57394cefa6cef41f67b7228", "fields": {"nom_de_la_commune": "FRONTENAY ROHAN ROHAN", "libell_d_acheminement": "FRONTENAY ROHAN ROHAN", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79130"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8370b71d909bc62a4435973c907c874a685a3363", "fields": {"nom_de_la_commune": "GENNETON", "libell_d_acheminement": "GENNETON", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79132"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65b9761c28f03bc985119c59fa671bed24a4620", "fields": {"nom_de_la_commune": "GERMOND ROUVRE", "libell_d_acheminement": "GERMOND ROUVRE", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79133"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4674aea100c1f66ea0690ad977f14fa50cb6a832", "fields": {"nom_de_la_commune": "GOURNAY LOIZE", "libell_d_acheminement": "GOURNAY LOIZE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79136"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8ae3b35b0c069a6fdeae86db076710eb186991", "fields": {"nom_de_la_commune": "HANC", "libell_d_acheminement": "HANC", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79140"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a849978a734404638561c04956402d71b4c813", "fields": {"nom_de_la_commune": "JUSCORPS", "libell_d_acheminement": "JUSCORPS", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79144"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02276ce7553a0d7783c2813ca05fd99506f5eb39", "fields": {"nom_de_la_commune": "LUCHE SUR BRIOUX", "libell_d_acheminement": "LUCHE SUR BRIOUX", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79158"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad973b18b7404d1a0f1888781509f6e0f48d78", "fields": {"nom_de_la_commune": "MARNES", "libell_d_acheminement": "MARNES", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79167"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25cadc70511e96dc8d73865540098a9ce2dcf20", "fields": {"nom_de_la_commune": "MASSAIS", "libell_d_acheminement": "MASSAIS", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79168"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06e4dd4217ff70d9491fa91297f5f6f1f625275c", "fields": {"nom_de_la_commune": "LA MOTHE ST HERAY", "libell_d_acheminement": "LA MOTHE ST HERAY", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79184"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050908bd4f2cdcb8dcdd3b37d2f5c2145f8cd772", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "STE PEZENNE", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c353d7a7fc9d480e8a5c4199983e11362f09e137", "fields": {"code_postal": "79250", "code_commune_insee": "79195", "libell_d_acheminement": "NUEIL LES AUBIERS", "ligne_5": "LES AUBIERS", "nom_de_la_commune": "NUEIL LES AUBIERS", "coordonnees_gps": [46.9407689658, -0.596288357237]}, "geometry": {"type": "Point", "coordinates": [-0.596288357237, 46.9407689658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e44c9406a1fae14cc81be6874158a30082bb0c", "fields": {"code_postal": "79100", "code_commune_insee": "79196", "libell_d_acheminement": "OIRON", "ligne_5": "BILAZAIS", "nom_de_la_commune": "OIRON", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1dce811ce48e5619ac8fc21e8cc4610765a8b7", "fields": {"code_postal": "79100", "code_commune_insee": "79196", "libell_d_acheminement": "OIRON", "ligne_5": "NOIZE", "nom_de_la_commune": "OIRON", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5009f1056fdf4a162ae9fcf3ce74a073be2930ff", "fields": {"nom_de_la_commune": "PAMPROUX", "libell_d_acheminement": "PAMPROUX", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79201"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e51642e6f6b4a54105058c71737620dfd6dcef", "fields": {"nom_de_la_commune": "PAS DE JEU", "libell_d_acheminement": "PAS DE JEU", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79203"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c9ef04042087b5009229a2525aac783e375a06", "fields": {"nom_de_la_commune": "LA PETITE BOISSIERE", "libell_d_acheminement": "LA PETITE BOISSIERE", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79207"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b641630fb0a0accef6a909d639917a93215cb301", "fields": {"nom_de_la_commune": "LA PEYRATTE", "libell_d_acheminement": "LA PEYRATTE", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79208"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ea95d3175503494023924517a9327a041c3911", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79210"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2374c5516e92f75ddc48cee962ce53731ffbaf79", "fields": {"nom_de_la_commune": "PIOUSSAY", "libell_d_acheminement": "PIOUSSAY", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79211"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93c8e47316f61171451af21701e115efbc7b0bd", "fields": {"nom_de_la_commune": "PRIAIRES", "libell_d_acheminement": "PRIAIRES", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79219"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9b9a2088090cbbc3c1da0297295e8890e1b66f", "fields": {"nom_de_la_commune": "ROM", "libell_d_acheminement": "ROM", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79230"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f71bb16446c956479ad004bc46bb14ffc325d2", "fields": {"nom_de_la_commune": "ST ANDRE SUR SEVRE", "libell_d_acheminement": "ST ANDRE SUR SEVRE", "code_postal": "79380", "coordonnees_gps": [46.7639583246, -0.657227871413], "code_commune_insee": "79236"}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e404dab82c427b0dd8527aaebe94189f869372e3", "fields": {"nom_de_la_commune": "VOULMENTIN", "libell_d_acheminement": "VOULMENTIN", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79242"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a5d79cc6ad824bed01e925ee5d1e40c6a696a1", "fields": {"nom_de_la_commune": "ST GELAIS", "libell_d_acheminement": "ST GELAIS", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79249"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c46a0ed7803e8cb75ab4de1df33cd6639f639e3", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79250"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc941790e417a02bf98291f86bae3b7052c5d99", "fields": {"nom_de_la_commune": "ST GENEROUX", "libell_d_acheminement": "ST GENEROUX", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79252"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2038eac7d85c143669afea83907020345d772b", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79256"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca4f4ebc6cc6f9c98e84a7ad2d2f512ae1eca4d", "fields": {"nom_de_la_commune": "ST LEGER DE MONTBRUN", "libell_d_acheminement": "ST LEGER DE MONTBRUN", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79265"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1464531f09fea5b580785c5fd9f49991a865ff", "fields": {"nom_de_la_commune": "ST LOUP LAMAIRE", "libell_d_acheminement": "ST LOUP LAMAIRE", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79268"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "618cd36f6dfabbe1b1b0d26cc55e421e6c3b03df", "fields": {"nom_de_la_commune": "ST MARTIN LES MELLE", "libell_d_acheminement": "ST MARTIN LES MELLE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79279"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6c42e12fd2528f821459afaf7a60dd51de3a42", "fields": {"nom_de_la_commune": "ST MAXIRE", "libell_d_acheminement": "ST MAXIRE", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79281"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c83a1b1630b8a781b065f08b1046f16f499614f", "fields": {"nom_de_la_commune": "STE OUENNE", "libell_d_acheminement": "STE OUENNE", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79284"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3348a0b5d606a42d370f680e24bd10cad56f714d", "fields": {"nom_de_la_commune": "ST PIERRE DES ECHAUBROGNES", "libell_d_acheminement": "ST PIERRE DES ECHAUBROGNES", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79289"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1046eeee095d9b0d0be3cdfd7f8d52f6dda8bbf6", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79292"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f39b7e65939ed24596a568ace9955eb4f3d626b1", "fields": {"nom_de_la_commune": "SAIVRES", "libell_d_acheminement": "SAIVRES", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79302"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5725fd0bc1b7d69fc26d9b851256591404829984", "fields": {"nom_de_la_commune": "SECONDIGNY", "libell_d_acheminement": "SECONDIGNY", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79311"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1635c7004027a298e334ef64f1d6bd51dcf3a48", "fields": {"nom_de_la_commune": "SELIGNE", "libell_d_acheminement": "SELIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79312"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a53d0ed8a5bab775cf08bb77e97b9a77b24f2d", "fields": {"nom_de_la_commune": "SOUDAN", "libell_d_acheminement": "SOUDAN", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79316"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ab03d889ca6c060466efb30099919ab1038351", "fields": {"code_postal": "79100", "code_commune_insee": "79321", "libell_d_acheminement": "TAIZE", "ligne_5": "MAULAIS", "nom_de_la_commune": "TAIZE", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643695a726e5d022c0eeeebd21f4798514a1e6a9", "fields": {"nom_de_la_commune": "LE TALLUD", "libell_d_acheminement": "LE TALLUD", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79322"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db6e5ed26af0616a3c4376b086672a323932ff5", "fields": {"nom_de_la_commune": "THOUARS", "libell_d_acheminement": "THOUARS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79329"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcb8e48afca62cda6b0c5a72bf98a8e53e333ae", "fields": {"nom_de_la_commune": "TOURTENAY", "libell_d_acheminement": "TOURTENAY", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79331"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c748a3302f98015f8a327cec691064dcc065224", "fields": {"nom_de_la_commune": "VANCAIS", "libell_d_acheminement": "VANCAIS", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79336"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997ccb97410a3bfc39274d85e7ec274b3bc36f3a", "fields": {"nom_de_la_commune": "VILLEFOLLET", "libell_d_acheminement": "VILLEFOLLET", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79348"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6e0eb3c57cccbea436dd4d4949c8f14c1e3282", "fields": {"nom_de_la_commune": "VILLIERS SUR CHIZE", "libell_d_acheminement": "VILLIERS SUR CHIZE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79352"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5783a188bb7377368502deaf53d9cdc501f056c1", "fields": {"nom_de_la_commune": "ALLAINES", "libell_d_acheminement": "ALLAINES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80017"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91cd2610b1e6838e348eb1ceb413c6f8e811df69", "fields": {"nom_de_la_commune": "ALLENAY", "libell_d_acheminement": "ALLENAY", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80018"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea21f63a7271c4b5d37707abfabadc428440619", "fields": {"nom_de_la_commune": "ARRY", "libell_d_acheminement": "ARRY", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80030"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdcfec344147dfe97b4c1efe544829e95bf1a0c", "fields": {"nom_de_la_commune": "AULT", "libell_d_acheminement": "AULT", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80039"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e8197c1c09cbe3cd5fd484f6993c697bd2365f", "fields": {"nom_de_la_commune": "AYENCOURT", "libell_d_acheminement": "AYENCOURT LE MONCHEL", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80049"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f4c70ad13a14173dd2abd9284ae70ea7d5ca4b", "fields": {"nom_de_la_commune": "BACOUEL SUR SELLE", "libell_d_acheminement": "BACOUEL SUR SELLE", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80050"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4fba7856d189d876a908c1c526f758833ea04f9", "fields": {"nom_de_la_commune": "BAILLEUL", "libell_d_acheminement": "BAILLEUL", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80051"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db62cf73d2c9f113a24a8d9e6f05ea3ef89fce9", "fields": {"nom_de_la_commune": "BAYONVILLERS", "libell_d_acheminement": "BAYONVILLERS", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80058"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ec4812cce99b85ee102dc4899b820ab3aaca96", "fields": {"nom_de_la_commune": "BEALCOURT", "libell_d_acheminement": "BEALCOURT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80060"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d70e1ed8ecb6687167f57b2fe6d8b86fb1bf51", "fields": {"nom_de_la_commune": "BEAUCOURT SUR L ANCRE", "libell_d_acheminement": "BEAUCOURT SUR L ANCRE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80065"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e18c02295787a268e8fcfad343aefba4be6746", "fields": {"nom_de_la_commune": "BECORDEL BECOURT", "libell_d_acheminement": "BECORDEL BECOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80073"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b46f9e1da570ed4dd5ecfcf462fdc7ae8c1cdd8", "fields": {"nom_de_la_commune": "BEHEN", "libell_d_acheminement": "BEHEN", "code_postal": "80870", "coordonnees_gps": [50.0653042148, 1.7446378135], "code_commune_insee": "80076"}, "geometry": {"type": "Point", "coordinates": [1.7446378135, 50.0653042148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e45ed662145c7cb09afc30f2275bf6287451343", "fields": {"code_postal": "80140", "code_commune_insee": "80084", "libell_d_acheminement": "BERMESNIL", "ligne_5": "MESNIL EUDIN", "nom_de_la_commune": "BERMESNIL", "coordonnees_gps": [49.9469630616, 1.753960976]}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5d7592d017b3e46cd88c3d87864373c17fa901", "fields": {"nom_de_la_commune": "BERTRANCOURT", "libell_d_acheminement": "BERTRANCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80095"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2639a0ca492e0151947131390c692eafaec84588", "fields": {"nom_de_la_commune": "BETHENCOURT SUR SOMME", "libell_d_acheminement": "BETHENCOURT SUR SOMME", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80097"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c6d58b3a8281a7f8074c25e19e7f638c3ecafe", "fields": {"nom_de_la_commune": "BETTEMBOS", "libell_d_acheminement": "BETTEMBOS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80098"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842469b6db28b3b51d1d3b2655264fe68c2fa55b", "fields": {"nom_de_la_commune": "BIACHES", "libell_d_acheminement": "BIACHES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80102"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c4088a7e02b1d905b8fc9712361e5d56be3a0", "fields": {"nom_de_la_commune": "BILLANCOURT", "libell_d_acheminement": "BILLANCOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80105"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77bcf5e5928fde4b6753fd4f7f5ef043519f4c54", "fields": {"nom_de_la_commune": "BOUCHAVESNES BERGEN", "libell_d_acheminement": "BOUCHAVESNES BERGEN", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80115"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73012bedaa37489a9ffc07f2e7b1c4ed5e0221a8", "fields": {"nom_de_la_commune": "BOUGAINVILLE", "libell_d_acheminement": "BOUGAINVILLE", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80119"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0eb2f788e9c5ada05753c8e35784885ed4eb53", "fields": {"nom_de_la_commune": "BOUILLANCOURT EN SERY", "libell_d_acheminement": "BOUILLANCOURT EN SERY", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80120"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87a31a9f4eca5da639db9d5c13ffc7d307fc674", "fields": {"nom_de_la_commune": "BOUQUEMAISON", "libell_d_acheminement": "BOUQUEMAISON", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80122"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c04a652201cdfd5e1e9bb5870980bdfb703b34", "fields": {"nom_de_la_commune": "BOURDON", "libell_d_acheminement": "BOURDON", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80123"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ffc245bbdb40ef718cb10c9364031aca459f21", "fields": {"nom_de_la_commune": "BOUSSICOURT", "libell_d_acheminement": "BOUSSICOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80125"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24a3b2d25c4918a6869a92b157b5a731f91c985", "fields": {"nom_de_la_commune": "BOUVINCOURT EN VERMANDOIS", "libell_d_acheminement": "BOUVINCOURT EN VERMANDOIS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80128"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5212121f366672d09167487360c3fd1f464037b", "fields": {"nom_de_la_commune": "BRAY LES MAREUIL", "libell_d_acheminement": "BRAY LES MAREUIL", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80135"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa83bcd18c86d8975ab6eba0fee9003c6a49147", "fields": {"nom_de_la_commune": "BREILLY", "libell_d_acheminement": "BREILLY", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80137"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e87fa48622a78eba00fdebf37d1bc6c38a720a7", "fields": {"nom_de_la_commune": "BRUTELLES", "libell_d_acheminement": "BRUTELLES", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80146"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a682b415f5018ed69073c153e26d891e6146b5", "fields": {"nom_de_la_commune": "BUIGNY L ABBE", "libell_d_acheminement": "BUIGNY L ABBE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80147"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "654ab6b9c398055427aef126f49dfcc01cc32db4", "fields": {"nom_de_la_commune": "BUS LES ARTOIS", "libell_d_acheminement": "BUS LES ARTOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80153"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd43d8ac385c650bfd75aa75cb556917d27b7d31", "fields": {"nom_de_la_commune": "BUSSY LES POIX", "libell_d_acheminement": "BUSSY LES POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80157"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290104d524bb1287c436537c4f7db8ab47440bf2", "fields": {"nom_de_la_commune": "CAIX", "libell_d_acheminement": "CAIX", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80162"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b5311efb98e3e3df80aaaf646117460029d797c", "fields": {"nom_de_la_commune": "CAMON", "libell_d_acheminement": "CAMON", "code_postal": "80450", "coordonnees_gps": [49.8997826029, 2.37137484278], "code_commune_insee": "80164"}, "geometry": {"type": "Point", "coordinates": [2.37137484278, 49.8997826029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200decc163c26e2221e20281910a78ae48377b00", "fields": {"nom_de_la_commune": "CANCHY", "libell_d_acheminement": "CANCHY", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80167"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "746b464a97fa89b3f549e1f267af71bbf83a6c1a", "fields": {"nom_de_la_commune": "CAPPY", "libell_d_acheminement": "CAPPY", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80172"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801e0b86592e26411b0569787402682697fe8151", "fields": {"nom_de_la_commune": "CARNOY", "libell_d_acheminement": "CARNOY", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80175"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a771cc56ddd7931e6e9a3b68cab23fa01c6bee7", "fields": {"nom_de_la_commune": "CHAULNES", "libell_d_acheminement": "CHAULNES", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80186"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd076adb55a7cd840ff865f02c6c951e508ace9", "fields": {"nom_de_la_commune": "COIGNEUX", "libell_d_acheminement": "COIGNEUX", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80201"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236d451c9e836f2bc1ba05bdd3fe4a035428266d", "fields": {"nom_de_la_commune": "COLINCAMPS", "libell_d_acheminement": "COLINCAMPS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80203"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ecc1ba8ef48e85f56dd4def81faf4a2399bed1d", "fields": {"nom_de_la_commune": "COTTENCHY", "libell_d_acheminement": "COTTENCHY", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80213"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2b02b62d1202146e2e98d34a7707106902d14c", "fields": {"nom_de_la_commune": "COURTEMANCHE", "libell_d_acheminement": "COURTEMANCHE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80220"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc90cb7372900634fc39a73f21fc6935657aade", "fields": {"nom_de_la_commune": "CREUSE", "libell_d_acheminement": "CREUSE", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80225"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e543ba43e15675f837c1a4185922fc8ef5d8e49", "fields": {"nom_de_la_commune": "CROUY ST PIERRE", "libell_d_acheminement": "CROUY ST PIERRE", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80229"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce753fec8ca95756737e74a32696a2abb418918", "fields": {"code_postal": "80310", "code_commune_insee": "80229", "libell_d_acheminement": "CROUY ST PIERRE", "ligne_5": "ST PIERRE A GOUY", "nom_de_la_commune": "CROUY ST PIERRE", "coordonnees_gps": [49.9552776258, 2.09743129246]}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8211ef4903d73cdea14c6d29779683180b4f50b4", "fields": {"nom_de_la_commune": "DOMESMONT", "libell_d_acheminement": "DOMESMONT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80243"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fe18541ffba88ae7ffd9b6efe9f6cdb9adabd8", "fields": {"nom_de_la_commune": "DROMESNIL", "libell_d_acheminement": "DROMESNIL", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80259"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ed2d449654f06ee9e6c24bd88a8d28075c81a2", "fields": {"nom_de_la_commune": "EAUCOURT SUR SOMME", "libell_d_acheminement": "EAUCOURT SUR SOMME", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80262"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa52dfb90821e66d0f90b31357e9bef99574ba97", "fields": {"nom_de_la_commune": "ESCLAINVILLERS", "libell_d_acheminement": "ESCLAINVILLERS", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80283"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b5b7324b6a590336b54cf901d7815b074b0c26", "fields": {"nom_de_la_commune": "BENAGUES", "libell_d_acheminement": "BENAGUES", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09050"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41756b6926e244400678623ab6aa83589496da9a", "fields": {"nom_de_la_commune": "CAMARADE", "libell_d_acheminement": "CAMARADE", "code_postal": "09290", "coordonnees_gps": [43.0688947964, 1.3366340035], "code_commune_insee": "09073"}, "geometry": {"type": "Point", "coordinates": [1.3366340035, 43.0688947964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea27f7f944de9be57a907f005d6c49530fca5290", "fields": {"nom_de_la_commune": "BESTIAC", "libell_d_acheminement": "BESTIAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09053"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe18e29e68566a6bcc69da8f961f528fe658657", "fields": {"nom_de_la_commune": "BURRET", "libell_d_acheminement": "BURRET", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09068"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7983f5f7733063d43449b6f7c04b612b43e8eb1e", "fields": {"nom_de_la_commune": "BENAC", "libell_d_acheminement": "BENAC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09049"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a60c4fc3dd2fdf233d540d921f7b08b6e1f8add", "fields": {"nom_de_la_commune": "BIERT", "libell_d_acheminement": "BIERT", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09057"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d801d7fef337dc4b675533862636ac06b05fee8", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09067"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f04aeb204541c0c0cc8bdee45d67420ddb9d69c", "fields": {"nom_de_la_commune": "ESPLAS DE SEROU", "libell_d_acheminement": "ESPLAS DE SEROU", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09118"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b092bc3c516ab8e579fa7f1227205348fb88830", "fields": {"nom_de_la_commune": "FREYCHENET", "libell_d_acheminement": "FREYCHENET", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09126"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18bf1f8287dd9ea0ff0793bf70f14e3f456f5c9", "fields": {"nom_de_la_commune": "ESCLAGNE", "libell_d_acheminement": "ESCLAGNE", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09115"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0f040bcfb316d0dff3707031eada34fc37d209", "fields": {"nom_de_la_commune": "GOURBIT", "libell_d_acheminement": "GOURBIT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09136"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91bd54f3317581a251f7557b1f390943e78392f5", "fields": {"nom_de_la_commune": "LAPENNE", "libell_d_acheminement": "LAPENNE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09153"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18ee6737fc52bfc0b76e095e454fd39ce516aef", "fields": {"nom_de_la_commune": "GARANOU", "libell_d_acheminement": "GARANOU", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09131"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b95e4af2c115d28813922a29780881fe3a2894", "fields": {"nom_de_la_commune": "LACAVE", "libell_d_acheminement": "LACAVE", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09148"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ce5e090417f15e0890be7df5ca90957bfa3bf0", "fields": {"nom_de_la_commune": "LASSUR", "libell_d_acheminement": "LASSUR", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09159"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d198b28cd4ee98f7eaecd94a7a59fd85e11ba6d6", "fields": {"nom_de_la_commune": "IGNAUX", "libell_d_acheminement": "IGNAUX", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09140"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad4c608f51243387199cebd9eed6a0e80a0a470", "fields": {"nom_de_la_commune": "LE MAS D AZIL", "libell_d_acheminement": "LE MAS D AZIL", "code_postal": "09290", "coordonnees_gps": [43.0688947964, 1.3366340035], "code_commune_insee": "09181"}, "geometry": {"type": "Point", "coordinates": [1.3366340035, 43.0688947964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16ba247951d1cfe0d1dfcfc5347edfde12de9e2", "fields": {"nom_de_la_commune": "LESCOUSSE", "libell_d_acheminement": "LESCOUSSE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09163"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f74bbbd8c63fe24ff63835e810875c9c00aebc", "fields": {"nom_de_la_commune": "LEYCHERT", "libell_d_acheminement": "LEYCHERT", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09166"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0181f750515804d7d3fc27e833135c27ea68ba6d", "fields": {"nom_de_la_commune": "MERCENAC", "libell_d_acheminement": "MERCENAC", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09187"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7225498f5d3a67f011ffbbdc17a8039fd404c07e", "fields": {"nom_de_la_commune": "LESCURE", "libell_d_acheminement": "LESCURE", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09164"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f18715f9b31dc7a8170380298a4cfd31bf78c45", "fields": {"nom_de_la_commune": "LOUBENS", "libell_d_acheminement": "LOUBENS", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09173"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ae897790e9cf068b0497733fe56e8a2679d592", "fields": {"nom_de_la_commune": "MADIERE", "libell_d_acheminement": "MADIERE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09177"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c49182044deaa7d4461aeb1286098baf13136b", "fields": {"nom_de_la_commune": "LISSAC", "libell_d_acheminement": "LISSAC", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09170"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177975b047e01bb0a31641436a69162358d93d22", "fields": {"nom_de_la_commune": "MANSES", "libell_d_acheminement": "MANSES", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09180"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc53b50a7472dad6f160c09b09a61d5d96a2b50", "fields": {"nom_de_la_commune": "LUDIES", "libell_d_acheminement": "LUDIES", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09175"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e354175df8b69ecb76fb2d437590633837e055", "fields": {"nom_de_la_commune": "RIEUX DE PELLEPORT", "libell_d_acheminement": "RIEUX DE PELLEPORT", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09245"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497f846568fdcd9ba1bbfa6b4cf39b65a45e3158", "fields": {"nom_de_la_commune": "ROUMENGOUX", "libell_d_acheminement": "ROUMENGOUX", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09251"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efd609ad3ae7972558e81f126babb3535c064f63", "fields": {"nom_de_la_commune": "RIVERENERT", "libell_d_acheminement": "RIVERENERT", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09247"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3536904a13eeff27c9c3a4e1d2443cf2e8cb957", "fields": {"nom_de_la_commune": "LE PEYRAT", "libell_d_acheminement": "LE PEYRAT", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09229"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895b0f67a45ade3785ef966b27def0b218bd9646", "fields": {"nom_de_la_commune": "PRAYOLS", "libell_d_acheminement": "PRAYOLS", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09236"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bc26b743b0590bc00a3b3e506a33224265d1af", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09232"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5ac756ab3dbad256084915b583383df2cba560", "fields": {"nom_de_la_commune": "ROUZE", "libell_d_acheminement": "ROUZE", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09252"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b17b803fb9517edfd09ad0da72a84e106e9817a2", "fields": {"nom_de_la_commune": "QUIE", "libell_d_acheminement": "QUIE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09240"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19232c420aeaa5461a5bf6002a915451ccc73d8f", "fields": {"nom_de_la_commune": "TARASCON SUR ARIEGE", "libell_d_acheminement": "TARASCON SUR ARIEGE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09306"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d67212c9ad4c9d8f0129cd8b0ea02831ff6a377", "fields": {"nom_de_la_commune": "SENTENAC D OUST", "libell_d_acheminement": "SENTENAC D OUST", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09291"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13063e9c2e9d2bef5fd2dba87b95d8602445ed1d", "fields": {"nom_de_la_commune": "SUC ET SENTENAC", "libell_d_acheminement": "SUC ET SENTENAC", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09302"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b015bde672d645ed1233b7b3ea3c1a162f0e5c", "fields": {"nom_de_la_commune": "SENTEIN", "libell_d_acheminement": "SENTEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09290"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02692506a02960e8a1b53c38c96d1ea72f2b63e", "fields": {"nom_de_la_commune": "SORGEAT", "libell_d_acheminement": "SORGEAT", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09298"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0283504b86d193b1e56dcefeae436f10dad80be0", "fields": {"nom_de_la_commune": "SINSAT", "libell_d_acheminement": "SINSAT", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09296"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d777dfb1c51d425f67b7900ef7e57bb541e99f03", "fields": {"nom_de_la_commune": "SOULA", "libell_d_acheminement": "SOULA", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09300"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b856c8f0e94d0f72d431741d8c7906ee8579817e", "fields": {"nom_de_la_commune": "SEIX", "libell_d_acheminement": "SEIX", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09285"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c77471e00bcd810333e33115609fdeaad830820", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45235"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7edbe4ab6f160cdd783dc3c2d9c7619058d774", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "FARONVILLE", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf6491d230bacff4e5df0f3b9d6f493adf59441", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "TEILLAY LE GAUDIN", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea3d176985021d2fd66269a2f9a6cedb1422d43", "fields": {"nom_de_la_commune": "OUZOUER SUR LOIRE", "libell_d_acheminement": "OUZOUER SUR LOIRE", "code_postal": "45570", "coordonnees_gps": [47.7713399136, 2.51487040381], "code_commune_insee": "45244"}, "geometry": {"type": "Point", "coordinates": [2.51487040381, 47.7713399136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1051b0fef68797e43ac2647eb7dc6e74b766f01e", "fields": {"nom_de_la_commune": "PANNES", "libell_d_acheminement": "PANNES", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45247"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed1d264e17f9f159407e6c34d759cd54b63abfd0", "fields": {"nom_de_la_commune": "PERS EN GATINAIS", "libell_d_acheminement": "PERS EN GATINAIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45250"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262e7bc1999979c95bec5bb3532e0627f1489ef5", "fields": {"nom_de_la_commune": "QUIERS SUR BEZONDE", "libell_d_acheminement": "QUIERS SUR BEZONDE", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45259"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68cf6cdfc78f290bd58c37fcd4db77bd60dbb76", "fields": {"nom_de_la_commune": "ST AIGNAN DES GUES", "libell_d_acheminement": "ST AIGNAN DES GUES", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45267"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cc22542be34b31ec2bde6f0aceca17cac4ec45", "fields": {"nom_de_la_commune": "ST BRISSON SUR LOIRE", "libell_d_acheminement": "ST BRISSON SUR LOIRE", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45271"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800597ed2dff353e1f8197f71f73f9b5c7002599", "fields": {"nom_de_la_commune": "ST FIRMIN DES BOIS", "libell_d_acheminement": "ST FIRMIN DES BOIS", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45275"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d63e47d82e9ea3bc601c5db90a835211ea832e", "fields": {"nom_de_la_commune": "ST GONDON", "libell_d_acheminement": "ST GONDON", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45280"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e64c1751dd4304c1dd8820d61ee6b84886b472", "fields": {"nom_de_la_commune": "ST LOUP DES VIGNES", "libell_d_acheminement": "ST LOUP DES VIGNES", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45288"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c314e76871447738b5294dd96f1ec0af2f0aab", "fields": {"nom_de_la_commune": "ST MAURICE SUR AVEYRON", "libell_d_acheminement": "ST MAURICE SUR AVEYRON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45292"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe6ca49992a9b977a12b62d373fb58d9a157eaf", "fields": {"nom_de_la_commune": "ST MAURICE SUR FESSARD", "libell_d_acheminement": "ST MAURICE SUR FESSARD", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45293"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4c5b7fd8c8d3363f7b5e606be1e17ac6746c74", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45299"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bcb05008125ff4c716de4bd7c0fae637a3b2ac2", "fields": {"nom_de_la_commune": "SANDILLON", "libell_d_acheminement": "SANDILLON", "code_postal": "45640", "coordonnees_gps": [47.8367007411, 2.03001021128], "code_commune_insee": "45300"}, "geometry": {"type": "Point", "coordinates": [2.03001021128, 47.8367007411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6223e2b6fd7b23837538151ed3f81e9a909e82dc", "fields": {"nom_de_la_commune": "SEMOY", "libell_d_acheminement": "SEMOY", "code_postal": "45400", "coordonnees_gps": [47.9619656993, 1.95515679115], "code_commune_insee": "45308"}, "geometry": {"type": "Point", "coordinates": [1.95515679115, 47.9619656993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7c7fed5c3593706ee57f97815ad00ce2b686e4", "fields": {"nom_de_la_commune": "SULLY SUR LOIRE", "libell_d_acheminement": "SULLY SUR LOIRE", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45315"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1e5c8007595fe14e2149666f67b32ea3438f1c", "fields": {"nom_de_la_commune": "THIGNONVILLE", "libell_d_acheminement": "THIGNONVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45320"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288364b6411958336d35fe15ccb27e5227e47997", "fields": {"nom_de_la_commune": "THORAILLES", "libell_d_acheminement": "THORAILLES", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45322"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e7f9b1d7c3cc18e031be4c679d0c55309610cbe", "fields": {"nom_de_la_commune": "VANNES SUR COSSON", "libell_d_acheminement": "VANNES SUR COSSON", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45331"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d83460cd9860aa9d2d5a575029e89788dff33c1", "fields": {"nom_de_la_commune": "VIGLAIN", "libell_d_acheminement": "VIGLAIN", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45336"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f291694cc7b67f55c9d98fcc1faff153276f1954", "fields": {"nom_de_la_commune": "VILLEMURLIN", "libell_d_acheminement": "VILLEMURLIN", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45340"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8675d7c049fc901814bf0d719b7aee6789bf36f0", "fields": {"nom_de_la_commune": "VIMORY", "libell_d_acheminement": "VIMORY", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45345"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9badf380fd3b5ba3829365e30e6f3cf673216298", "fields": {"nom_de_la_commune": "ANGLARS JUILLAC", "libell_d_acheminement": "ANGLARS JUILLAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46005"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a172fb982cfbdf5f7517598364612f3862877f6f", "fields": {"nom_de_la_commune": "ARCAMBAL", "libell_d_acheminement": "ARCAMBAL", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46007"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7718b55b089e1d819370206a9697c0d6715452f4", "fields": {"nom_de_la_commune": "LES ARQUES", "libell_d_acheminement": "LES ARQUES", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46008"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f95899d11711adb220f9be20b69aea1d3ef908", "fields": {"nom_de_la_commune": "ASSIER", "libell_d_acheminement": "ASSIER", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46009"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d125c3851b5045efaa3b25835ae5a9cadf938310", "fields": {"nom_de_la_commune": "BELAYE", "libell_d_acheminement": "BELAYE", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46022"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3eecc0e96dfdafd9c9b4099f68dcfed1d43df8b", "fields": {"nom_de_la_commune": "BIO", "libell_d_acheminement": "BIO", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46030"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c3664281601bf97d632772e52c6ea395c7162a", "fields": {"nom_de_la_commune": "BLARS", "libell_d_acheminement": "BLARS", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46031"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7537b4b06d2cdcde2247ab70a78b4bca6dbf35", "fields": {"nom_de_la_commune": "BOISSIERES", "libell_d_acheminement": "BOISSIERES", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46032"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd0c2a26e79bbceaaa33c1805a3d5df109ab6c4", "fields": {"nom_de_la_commune": "CALES", "libell_d_acheminement": "CALES", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46047"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f938934ea291e3e8774603230997686fc4b3ca19", "fields": {"nom_de_la_commune": "CALVIGNAC", "libell_d_acheminement": "CALVIGNAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46049"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d82bd86b1bb98d8ded20eca9eb1acafa274bf47", "fields": {"nom_de_la_commune": "CAMBURAT", "libell_d_acheminement": "CAMBURAT", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46053"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b8d419c554c3b918194f43a623284c94e18ea2", "fields": {"nom_de_la_commune": "CENEVIERES", "libell_d_acheminement": "CENEVIERES", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46068"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6266144aa458693f764f42a4f68198c274fb26a", "fields": {"nom_de_la_commune": "CONCOTS", "libell_d_acheminement": "CONCOTS", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46073"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bac933cfdaf4a7c5014ac1c45a65ce2d0047c3", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46077"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb1f5dca8a14f12bd2f1b5aec83dbcc6deaec83", "fields": {"nom_de_la_commune": "CRESSENSAC", "libell_d_acheminement": "CRESSENSAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46083"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030f16862ba0bfcbbdf840a9f95afd4da2ceb489", "fields": {"nom_de_la_commune": "DEGAGNAC", "libell_d_acheminement": "DEGAGNAC", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46087"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b535f0d243d939f9b05cad9b5de51f3715c30797", "fields": {"nom_de_la_commune": "ESCAMPS", "libell_d_acheminement": "ESCAMPS", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46091"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d17935189b1a6d15cad5eb918ef4d9fe80a1298", "fields": {"nom_de_la_commune": "ESCLAUZELS", "libell_d_acheminement": "ESCLAUZELS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46092"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d9ba0c47b7dae1e9f38f37ab55642ae00ebe5a", "fields": {"nom_de_la_commune": "ESPEDAILLAC", "libell_d_acheminement": "ESPEDAILLAC", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46094"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03082f91897fdf6a8eb0428571c5553cfcdc5aac", "fields": {"nom_de_la_commune": "ESPEYROUX", "libell_d_acheminement": "ESPEYROUX", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46096"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "340ffebb4c066d1898975e1083cbd76516d4e6fc", "fields": {"nom_de_la_commune": "FAJOLES", "libell_d_acheminement": "FAJOLES", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46098"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9cd38e4cdd9af77af4cf85e9fda3a151cfbc977", "fields": {"nom_de_la_commune": "FIGEAC", "libell_d_acheminement": "FIGEAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46102"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdf11af4569c5087dddba2026a80d6c847dbcdb", "fields": {"nom_de_la_commune": "ST PAUL FLAUGNAC", "libell_d_acheminement": "ST PAUL FLAUGNAC", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46103"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce38a61d1ac06c059c23dc9693b6af89de37e60", "fields": {"nom_de_la_commune": "FRONTENAC", "libell_d_acheminement": "FRONTENAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46116"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b873b443d3b060fe758a8caaeb2ca9e594d07547", "fields": {"nom_de_la_commune": "GAGNAC SUR CERE", "libell_d_acheminement": "GAGNAC SUR CERE", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46117"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20d79a805cfd2e3d5f00b42feebda5ae2a684db", "fields": {"nom_de_la_commune": "GLANES", "libell_d_acheminement": "GLANES", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46124"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778ebe6cd3a71f9b34ec981427dfaae34d8cf74d", "fields": {"nom_de_la_commune": "GREALOU", "libell_d_acheminement": "GREALOU", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46129"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c72ad536fffe01dbba3294fc0ac65b8b204ce29b", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46131"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e156a10a088b2a8f823a084abb4809c82485ba", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "VAILLAC", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52b2b39e2c764d122be481e872450492ae488f4", "fields": {"nom_de_la_commune": "LABATHUDE", "libell_d_acheminement": "LABATHUDE", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46139"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b0cf93780a133f1e9e2ca4021a2ede85f65343", "fields": {"nom_de_la_commune": "LARNAGOL", "libell_d_acheminement": "LARNAGOL", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46155"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52203c643e80e691d60bff10f23bb472d26cfec", "fields": {"nom_de_la_commune": "LASCABANES", "libell_d_acheminement": "LASCABANES", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46158"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da188c27855d33743bb2743d8d2d75641e070a9", "fields": {"nom_de_la_commune": "LATRONQUIERE", "libell_d_acheminement": "LATRONQUIERE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46160"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c773491be7bc6661fa109bfa2cba3dcfb26cfd", "fields": {"nom_de_la_commune": "LAUZES", "libell_d_acheminement": "LAUZES", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46162"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a837aad028126dc5a9d24eae8ab44d3e70bfecb6", "fields": {"nom_de_la_commune": "FONTAINE", "libell_d_acheminement": "FONTAINE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10150"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b84b8e4429cf5edcfa19345c51c5d7925a198bd", "fields": {"nom_de_la_commune": "GERAUDOT", "libell_d_acheminement": "GERAUDOT", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10165"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb51b0d3e113c2b2c63ae73d783b00457dcc6e6", "fields": {"nom_de_la_commune": "MONTIGNY LES MONTS", "libell_d_acheminement": "MONTIGNY LES MONTS", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10251"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cddd0affda7981e392da39e699711faac9984a32", "fields": {"nom_de_la_commune": "MESNIL SELLIERES", "libell_d_acheminement": "MESNIL SELLIERES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10239"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b5113c3d418bd4ce4eec543b906d8d884261b43", "fields": {"nom_de_la_commune": "MOLINS SUR AUBE", "libell_d_acheminement": "MOLINS SUR AUBE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10243"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bbda591ecfcaa006b6404c41b874cc16700f3a", "fields": {"nom_de_la_commune": "MESNIL ST PERE", "libell_d_acheminement": "MESNIL ST PERE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10238"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af926943c273e8e0ffc8ff404809bf75666b836", "fields": {"nom_de_la_commune": "MESNIL LETTRE", "libell_d_acheminement": "MESNIL LETTRE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10236"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fb0c657fb8058399b3b162c5aa8f983c0d578ec", "fields": {"nom_de_la_commune": "MONTSUZAIN", "libell_d_acheminement": "MONTSUZAIN", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10256"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22991ce73ae677e1c1d773cefeee5acbc4af1b30", "fields": {"nom_de_la_commune": "MOUSSEY", "libell_d_acheminement": "MOUSSEY", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10260"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ff2bc0fece0ce59d1e509b975ca97c0c6c8c48", "fields": {"code_postal": "10380", "code_commune_insee": "10289", "libell_d_acheminement": "PLANCY L ABBAYE", "ligne_5": "VIAPRES LE GRAND", "nom_de_la_commune": "PLANCY L ABBAYE", "coordonnees_gps": [48.576907135, 3.98044859766]}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13393a1cc3c760c9832e8a61a5eccb0669af3abf", "fields": {"nom_de_la_commune": "NEUVILLE SUR VANNE", "libell_d_acheminement": "NEUVILLE SUR VANNE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10263"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f60d87069d219c15df92933b674d7e97e41442", "fields": {"nom_de_la_commune": "PRECY NOTRE DAME", "libell_d_acheminement": "PRECY NOTRE DAME", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10303"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6fd6067b4b5a653e843293b978952b2fb462313", "fields": {"nom_de_la_commune": "NOGENT SUR AUBE", "libell_d_acheminement": "NOGENT SUR AUBE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10267"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be87daafcf2052dd6488c5529e94f4a5cffb38ba", "fields": {"nom_de_la_commune": "PONT SUR SEINE", "libell_d_acheminement": "PONT SUR SEINE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10298"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee1d6fba263894c79df0bfff3547ec5211f4cf81", "fields": {"nom_de_la_commune": "POIVRES", "libell_d_acheminement": "POIVRES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10293"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717f2ac59be2cd4a74ac21549d3bd7c0fc52d1d9", "fields": {"nom_de_la_commune": "PLANTY", "libell_d_acheminement": "PLANTY", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10290"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f0b46a494b83183122750c5cf0cc7128d1c346", "fields": {"nom_de_la_commune": "PRUGNY", "libell_d_acheminement": "PRUGNY", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10307"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2f22d10c849b9ef44ee5bf4fcc82a362cae1ea", "fields": {"nom_de_la_commune": "NOZAY", "libell_d_acheminement": "NOZAY", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10269"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f93b054d344e1f7d55ee17a723f7152015e4f3c", "fields": {"nom_de_la_commune": "PINEY", "libell_d_acheminement": "PINEY", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10287"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db6e894c8a19f4baa1416dd3d5bb32d4fd17b53", "fields": {"code_postal": "10800", "code_commune_insee": "10329", "libell_d_acheminement": "ROUILLY ST LOUP", "ligne_5": "ROUILLEROT", "nom_de_la_commune": "ROUILLY ST LOUP", "coordonnees_gps": [48.2055801821, 4.1125140322]}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "399515385e5ecec49a70ab67fd1d0721e5917061", "fields": {"code_postal": "10120", "code_commune_insee": "10340", "libell_d_acheminement": "ST GERMAIN", "ligne_5": "LEPINE", "nom_de_la_commune": "ST GERMAIN", "coordonnees_gps": [48.2420570868, 4.01115012406]}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3515c2026bdf981615841cfb7f11b2e1af28431", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DODINICOURT", "libell_d_acheminement": "ST CHRISTOPHE DODINICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10337"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abea7294a2c99a6a8e0cb2bb9635d5b182675533", "fields": {"nom_de_la_commune": "ST MARTIN DE BOSSENAY", "libell_d_acheminement": "ST MARTIN DE BOSSENAY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10351"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d635d095f082979f45f0380d3689078d0211b5d", "fields": {"nom_de_la_commune": "ST MARDS EN OTHE", "libell_d_acheminement": "ST MARDS EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10350"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3936c917908f3e2d69d39e68e43857d76fd35b", "fields": {"nom_de_la_commune": "ROUILLY SACEY", "libell_d_acheminement": "ROUILLY SACEY", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10328"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54da3caff89343529dbd1715fe262505d4a783a", "fields": {"nom_de_la_commune": "RACINES", "libell_d_acheminement": "RACINES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10312"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be2229ee3d4999d3943df7606af8e929fb01327", "fields": {"nom_de_la_commune": "SERMOISE SUR LOIRE", "libell_d_acheminement": "SERMOISE SUR LOIRE", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58278"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19f029ceb880e257bc4c2d81c0fd25a1a1cab26", "fields": {"nom_de_la_commune": "TERNANT", "libell_d_acheminement": "TERNANT", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58289"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272bb14109520ac68c2552abb401c20acb19e53d", "fields": {"nom_de_la_commune": "TRACY SUR LOIRE", "libell_d_acheminement": "TRACY SUR LOIRE", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58295"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa768c9dee97541f15e424c07f72f32b176c617d", "fields": {"nom_de_la_commune": "ABSCON", "libell_d_acheminement": "ABSCON", "code_postal": "59215", "coordonnees_gps": [50.3278360338, 3.2977204551], "code_commune_insee": "59002"}, "geometry": {"type": "Point", "coordinates": [3.2977204551, 50.3278360338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbd033254c4e7aebf09e9721c42b6c998be749d", "fields": {"code_postal": "59280", "code_commune_insee": "59017", "libell_d_acheminement": "ARMENTIERES", "ligne_5": "LE BIZET", "nom_de_la_commune": "ARMENTIERES", "coordonnees_gps": [50.6683510107, 2.87630050545]}, "geometry": {"type": "Point", "coordinates": [2.87630050545, 50.6683510107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90036252846af4939b0ae5fbb017d3a1ad8f4a5f", "fields": {"nom_de_la_commune": "AUBY", "libell_d_acheminement": "AUBY", "code_postal": "59950", "coordonnees_gps": [50.4143759518, 3.06120580228], "code_commune_insee": "59028"}, "geometry": {"type": "Point", "coordinates": [3.06120580228, 50.4143759518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fe3ea0731e8c5a5491036861bba8e570c4d55c", "fields": {"nom_de_la_commune": "AUCHY LEZ ORCHIES", "libell_d_acheminement": "AUCHY LEZ ORCHIES", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59029"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac123befe3a1bb9f23ca41a1cbbe79a0883cebab", "fields": {"nom_de_la_commune": "BACHY", "libell_d_acheminement": "BACHY", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59042"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f6b5329f5ce4e81defee16ab45f5a2f452518a", "fields": {"nom_de_la_commune": "BAISIEUX", "libell_d_acheminement": "BAISIEUX", "code_postal": "59780", "coordonnees_gps": [50.6106542416, 3.2436665711], "code_commune_insee": "59044"}, "geometry": {"type": "Point", "coordinates": [3.2436665711, 50.6106542416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d292dcc077ab00e987b1f3d39d049da536a9c9", "fields": {"nom_de_la_commune": "LA BASSEE", "libell_d_acheminement": "LA BASSEE", "code_postal": "59480", "coordonnees_gps": [50.5558128425, 2.82300533087], "code_commune_insee": "59051"}, "geometry": {"type": "Point", "coordinates": [2.82300533087, 50.5558128425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c005f0b18abc99bbbd728121b7aac871600c44cf", "fields": {"nom_de_la_commune": "BAUVIN", "libell_d_acheminement": "BAUVIN", "code_postal": "59221", "coordonnees_gps": [50.5162330076, 2.89300264366], "code_commune_insee": "59052"}, "geometry": {"type": "Point", "coordinates": [2.89300264366, 50.5162330076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8d83b3d966d3d43cacfb18b3553977f65e98e74", "fields": {"code_postal": "59570", "code_commune_insee": "59053", "libell_d_acheminement": "BAVAY", "ligne_5": "LOUVIGNIES BAVAY", "nom_de_la_commune": "BAVAY", "coordonnees_gps": [50.3076854397, 3.80843098031]}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0916c68f554ddba070a6874300fdcc46ede968", "fields": {"nom_de_la_commune": "BAZUEL", "libell_d_acheminement": "BAZUEL", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59055"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0417125c0b90c69fa22fbc884f6f86b39383f9", "fields": {"nom_de_la_commune": "BEAUDIGNIES", "libell_d_acheminement": "BEAUDIGNIES", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59057"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae5f9177c08517b1972d95f251a35ac4cf571af", "fields": {"nom_de_la_commune": "BELLIGNIES", "libell_d_acheminement": "BELLIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59065"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9832bbff10a58404f8ac0053090dcb1ed448e9cc", "fields": {"nom_de_la_commune": "BERGUES", "libell_d_acheminement": "BERGUES", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59067"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b247ca5d4ccfe5dbadf2a63fdaa9f6c41622e256", "fields": {"nom_de_la_commune": "BERLAIMONT", "libell_d_acheminement": "BERLAIMONT", "code_postal": "59145", "coordonnees_gps": [50.1990593503, 3.79431721305], "code_commune_insee": "59068"}, "geometry": {"type": "Point", "coordinates": [3.79431721305, 50.1990593503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896bc9a70124c017f45d68bf8c97cc1f119c8d76", "fields": {"nom_de_la_commune": "BERSEE", "libell_d_acheminement": "BERSEE", "code_postal": "59235", "coordonnees_gps": [50.4806857231, 3.15123020584], "code_commune_insee": "59071"}, "geometry": {"type": "Point", "coordinates": [3.15123020584, 50.4806857231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9534e783ecc3d3cfd6028bcd7ccdf4e9687113a", "fields": {"nom_de_la_commune": "BERSILLIES", "libell_d_acheminement": "BERSILLIES", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59072"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a033f1b2b4d42f563ca3001fb35231d3626d70ea", "fields": {"nom_de_la_commune": "BERTHEN", "libell_d_acheminement": "BERTHEN", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59073"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0436a4d786320bfc3efed35e851b02f02cc76e7", "fields": {"code_postal": "59270", "code_commune_insee": "59073", "libell_d_acheminement": "BERTHEN", "ligne_5": "MONT DES CATS", "nom_de_la_commune": "BERTHEN", "coordonnees_gps": [50.744872534, 2.69409590473]}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9e6a5e91dbac907d11f90e54337453962a9793", "fields": {"nom_de_la_commune": "BERTRY", "libell_d_acheminement": "BERTRY", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59074"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31959a891cfedbdfa5765c26d1869af5675d98a", "fields": {"nom_de_la_commune": "BETTRECHIES", "libell_d_acheminement": "BETTRECHIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59077"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f54cd14ae55453587c60c8445bd386d55fb16d0", "fields": {"nom_de_la_commune": "BISSEZEELE", "libell_d_acheminement": "BISSEZEELE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59083"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9415d61360517e8ea26620fca5b310d107cd65c8", "fields": {"nom_de_la_commune": "BLARINGHEM", "libell_d_acheminement": "BLARINGHEM", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59084"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6e6fe9e030a3f07fc0c5740b755ad791ac67e7", "fields": {"nom_de_la_commune": "BOESCHEPE", "libell_d_acheminement": "BOESCHEPE", "code_postal": "59299", "coordonnees_gps": [50.7990963037, 2.69841501665], "code_commune_insee": "59086"}, "geometry": {"type": "Point", "coordinates": [2.69841501665, 50.7990963037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1f12efb82f1f59cd292be1da2ef638e46cc33b", "fields": {"nom_de_la_commune": "BOLLEZEELE", "libell_d_acheminement": "BOLLEZEELE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59089"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c94d08274c32bb8a442f640f2804d7c3be02f22", "fields": {"nom_de_la_commune": "BORRE", "libell_d_acheminement": "BORRE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59091"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9a21240bab9d5b05e02e087e4e720d4231e145", "fields": {"nom_de_la_commune": "BOUCHAIN", "libell_d_acheminement": "BOUCHAIN", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59092"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b61ab1389c138ebfd281982f3ca42e01bc832b", "fields": {"nom_de_la_commune": "BOURBOURG", "libell_d_acheminement": "BOURBOURG", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59094"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bdad941a06f9e8088581dfa8f9af3742f7be1e", "fields": {"nom_de_la_commune": "BOUSBECQUE", "libell_d_acheminement": "BOUSBECQUE", "code_postal": "59166", "coordonnees_gps": [50.7638173156, 3.07490254619], "code_commune_insee": "59098"}, "geometry": {"type": "Point", "coordinates": [3.07490254619, 50.7638173156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d4fe0c078403036ef5a8cfa4271c0cf9c4ac62d", "fields": {"nom_de_la_commune": "BOUSIGNIES SUR ROC", "libell_d_acheminement": "BOUSIGNIES SUR ROC", "code_postal": "59149", "coordonnees_gps": [50.2443056992, 4.15095520104], "code_commune_insee": "59101"}, "geometry": {"type": "Point", "coordinates": [4.15095520104, 50.2443056992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ca019655683811417db9e893ecc6037fd32a1a", "fields": {"nom_de_la_commune": "BOUSSIERES SUR SAMBRE", "libell_d_acheminement": "BOUSSIERES SUR SAMBRE", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59103"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952296e6f51f7083182504ded33a62b090b55eb2", "fields": {"nom_de_la_commune": "BOUSSOIS", "libell_d_acheminement": "BOUSSOIS", "code_postal": "59168", "coordonnees_gps": [50.2946104674, 4.04736259113], "code_commune_insee": "59104"}, "geometry": {"type": "Point", "coordinates": [4.04736259113, 50.2946104674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619109aa72674ffc27226189c51fd749ae115d10", "fields": {"nom_de_la_commune": "BOUVIGNIES", "libell_d_acheminement": "BOUVIGNIES", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59105"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35b671928d241ac428d77d6f34cd8647b65dcfac", "fields": {"nom_de_la_commune": "BRUNEMONT", "libell_d_acheminement": "BRUNEMONT", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59115"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d81bced465bde0bb2c5a0b0ceced6ba778ed58", "fields": {"nom_de_la_commune": "BRY", "libell_d_acheminement": "BRY", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59116"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468a418686c6bdf3f8d6fc2a62e654944e1deae6", "fields": {"nom_de_la_commune": "BUYSSCHEURE", "libell_d_acheminement": "BUYSSCHEURE", "code_postal": "59285", "coordonnees_gps": [50.8315857512, 2.37917573107], "code_commune_insee": "59119"}, "geometry": {"type": "Point", "coordinates": [2.37917573107, 50.8315857512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b9843339a981cabb484537e0ac30da6aef6f4e", "fields": {"nom_de_la_commune": "CAESTRE", "libell_d_acheminement": "CAESTRE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59120"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9a823280f1f2facfc5577c4721548f622e5410", "fields": {"nom_de_la_commune": "CANTIN", "libell_d_acheminement": "CANTIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59126"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d63c1c4a4e25e7865667bcfea2407610fefa27", "fields": {"nom_de_la_commune": "CARTIGNIES", "libell_d_acheminement": "CARTIGNIES", "code_postal": "59244", "coordonnees_gps": [50.0896425348, 3.83023391682], "code_commune_insee": "59134"}, "geometry": {"type": "Point", "coordinates": [3.83023391682, 50.0896425348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03444c1d457600f48dd2713a95dafb43b28c6d08", "fields": {"nom_de_la_commune": "CASSEL", "libell_d_acheminement": "CASSEL", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59135"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc0b7b52a5616f0b56f7f0ead6b8aa468d74f4e7", "fields": {"nom_de_la_commune": "CAUDRY", "libell_d_acheminement": "CAUDRY", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59139"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab1adadeee235ae8ed5578427e45587e40d8e46", "fields": {"nom_de_la_commune": "CAULLERY", "libell_d_acheminement": "CAULLERY", "code_postal": "59191", "coordonnees_gps": [50.1001907619, 3.36864533682], "code_commune_insee": "59140"}, "geometry": {"type": "Point", "coordinates": [3.36864533682, 50.1001907619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46c6f30743ef8c0aadaa2b1147d5683364f3677", "fields": {"code_postal": "59154", "code_commune_insee": "59160", "libell_d_acheminement": "CRESPIN", "ligne_5": "BLANC MISSERON ANF", "nom_de_la_commune": "CRESPIN", "coordonnees_gps": [50.4218005346, 3.65167545746]}, "geometry": {"type": "Point", "coordinates": [3.65167545746, 50.4218005346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e3a81813601f631739885b92c05aad7e9baae46", "fields": {"nom_de_la_commune": "CYSOING", "libell_d_acheminement": "CYSOING", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59168"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f2b133cc3fe7a157663c099176f7f214337a55", "fields": {"nom_de_la_commune": "DECHY", "libell_d_acheminement": "DECHY", "code_postal": "59187", "coordonnees_gps": [50.3496628506, 3.1300601478], "code_commune_insee": "59170"}, "geometry": {"type": "Point", "coordinates": [3.1300601478, 50.3496628506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1d9f93931a05d43427d62ce9aa3c757ab9dc6c", "fields": {"nom_de_la_commune": "DIMONT", "libell_d_acheminement": "DIMONT", "code_postal": "59216", "coordonnees_gps": [50.1687463201, 4.01936516486], "code_commune_insee": "59175"}, "geometry": {"type": "Point", "coordinates": [4.01936516486, 50.1687463201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e074bc6b91507da4b92dc96036779b8aeab9581", "fields": {"nom_de_la_commune": "DOUAI", "libell_d_acheminement": "DOUAI", "code_postal": "59500", "coordonnees_gps": [50.382032933, 3.09129729986], "code_commune_insee": "59178"}, "geometry": {"type": "Point", "coordinates": [3.09129729986, 50.382032933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9febf9061a3a6766210f74dee4b27e9e4ccd04bf", "fields": {"nom_de_la_commune": "DOURLERS", "libell_d_acheminement": "DOURLERS", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59181"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b8f45907f0262f9f7c83ef878e08904a54b47d9", "fields": {"nom_de_la_commune": "DRINCHAM", "libell_d_acheminement": "DRINCHAM", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59182"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5ab4ae98720442c34aa20e19caa9f210cd76f1", "fields": {"code_postal": "59279", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "MARDYCK", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0134149737, 2.28028859027]}, "geometry": {"type": "Point", "coordinates": [2.28028859027, 51.0134149737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8128544949d9cfaf5e0a22608b0963e67d7a3d8", "fields": {"code_postal": "59430", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "FORT MARDYCK", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b85195266a9d629f79f411c3f88b9a2ef5c1410", "fields": {"nom_de_la_commune": "ECUELIN", "libell_d_acheminement": "ECUELIN", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59188"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703cbf062f6914d254c06aec14b0eb7065474da7", "fields": {"nom_de_la_commune": "ENNEVELIN", "libell_d_acheminement": "ENNEVELIN", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59197"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f980ee7add19bfdfcd6edee9eb68c377c99a9b5", "fields": {"nom_de_la_commune": "ESCARMAIN", "libell_d_acheminement": "ESCARMAIN", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59204"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0883e4d0ab345e4a3d7bf6ba71effccb567e8dd3", "fields": {"nom_de_la_commune": "ESCAUDOEUVRES", "libell_d_acheminement": "ESCAUDOEUVRES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59206"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf50667f349077fcfd667246d6378d461c21fa7", "fields": {"nom_de_la_commune": "ESNES", "libell_d_acheminement": "ESNES", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59209"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cab409c55c14f912e741057fefc609df0030295", "fields": {"nom_de_la_commune": "ESTAIRES", "libell_d_acheminement": "ESTAIRES", "code_postal": "59940", "coordonnees_gps": [50.6663981785, 2.70159427049], "code_commune_insee": "59212"}, "geometry": {"type": "Point", "coordinates": [2.70159427049, 50.6663981785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88417c16364fe236a5d33fc0a877e4e4a2999c84", "fields": {"nom_de_la_commune": "ESTOURMEL", "libell_d_acheminement": "ESTOURMEL", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59213"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9b6af874dc73261fe4400324bbbe142d1d258c", "fields": {"nom_de_la_commune": "ESWARS", "libell_d_acheminement": "ESWARS", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59216"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "655c873addf456d466f4606b28b2361b95b06d5c", "fields": {"nom_de_la_commune": "ETROEUNGT", "libell_d_acheminement": "ETROEUNGT", "code_postal": "59219", "coordonnees_gps": [50.0518032549, 3.92131798693], "code_commune_insee": "59218"}, "geometry": {"type": "Point", "coordinates": [3.92131798693, 50.0518032549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d6c39f296ccdb453d58b4bad223f28f9d2484b", "fields": {"nom_de_la_commune": "FACHES THUMESNIL", "libell_d_acheminement": "FACHES THUMESNIL", "code_postal": "59155", "coordonnees_gps": [50.5939825721, 3.07223990633], "code_commune_insee": "59220"}, "geometry": {"type": "Point", "coordinates": [3.07223990633, 50.5939825721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6b325200b9cdf1e2a8d58737ee5f99fe314c52", "fields": {"nom_de_la_commune": "FERON", "libell_d_acheminement": "FERON", "code_postal": "59610", "coordonnees_gps": [50.0219945971, 4.04376753743], "code_commune_insee": "59229"}, "geometry": {"type": "Point", "coordinates": [4.04376753743, 50.0219945971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af389488222f5d6e4c20af29145796ad4b7b482f", "fields": {"nom_de_la_commune": "FLINES LEZ RACHES", "libell_d_acheminement": "FLINES LEZ RACHES", "code_postal": "59148", "coordonnees_gps": [50.4169084896, 3.18216827762], "code_commune_insee": "59239"}, "geometry": {"type": "Point", "coordinates": [3.18216827762, 50.4169084896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72b0121ba8c8cc775d7a3649c1ec67e92d551f9", "fields": {"nom_de_la_commune": "FOREST EN CAMBRESIS", "libell_d_acheminement": "FOREST EN CAMBRESIS", "code_postal": "59222", "coordonnees_gps": [50.1472445748, 3.59180512772], "code_commune_insee": "59246"}, "geometry": {"type": "Point", "coordinates": [3.59180512772, 50.1472445748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae37273f6dbb886072ee41e8cde53dc95c8a4fea", "fields": {"nom_de_la_commune": "FRASNOY", "libell_d_acheminement": "FRASNOY", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59251"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d538103708f5717ba8b091350326a6f6547880", "fields": {"nom_de_la_commune": "FRELINGHIEN", "libell_d_acheminement": "FRELINGHIEN", "code_postal": "59236", "coordonnees_gps": [50.7028060979, 2.95097432461], "code_commune_insee": "59252"}, "geometry": {"type": "Point", "coordinates": [2.95097432461, 50.7028060979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6bd4350cbdda7ea301312cffbed1b924c31c08", "fields": {"nom_de_la_commune": "GHISSIGNIES", "libell_d_acheminement": "GHISSIGNIES", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59259"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d1b8774bdb39d9fb9d933dc763b5eded96227d", "fields": {"nom_de_la_commune": "GLAGEON", "libell_d_acheminement": "GLAGEON", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59261"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a27371dbbe2ccaa3ab09d4f9838bf9a541416c9", "fields": {"nom_de_la_commune": "GONDECOURT", "libell_d_acheminement": "GONDECOURT", "code_postal": "59147", "coordonnees_gps": [50.5444177471, 2.98104516318], "code_commune_insee": "59266"}, "geometry": {"type": "Point", "coordinates": [2.98104516318, 50.5444177471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9bb936459ba655ba2298e0533cdbca501ce5691", "fields": {"nom_de_la_commune": "GRAND FORT PHILIPPE", "libell_d_acheminement": "GRAND FORT PHILIPPE", "code_postal": "59153", "coordonnees_gps": [50.9992920802, 2.10130581284], "code_commune_insee": "59272"}, "geometry": {"type": "Point", "coordinates": [2.10130581284, 50.9992920802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0240ef971c72da7658817db788e7c185135a3835", "fields": {"nom_de_la_commune": "GRAVELINES", "libell_d_acheminement": "GRAVELINES", "code_postal": "59820", "coordonnees_gps": [50.98845491, 2.14774710721], "code_commune_insee": "59273"}, "geometry": {"type": "Point", "coordinates": [2.14774710721, 50.98845491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31d8904283be41ef9814ec9719d2ad9182938ec", "fields": {"nom_de_la_commune": "LA GROISE", "libell_d_acheminement": "LA GROISE", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59274"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80637d2a1cac76bfe125b1b78eb277ea02e4dbf", "fields": {"nom_de_la_commune": "ST SAMSON", "libell_d_acheminement": "ST SAMSON", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14657"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f72a13e3566ef8e17bab278181127850f301e69", "fields": {"nom_de_la_commune": "SEPT VENTS", "libell_d_acheminement": "SEPT VENTS", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14672"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bae209129b9d9524b69fcaaafaab868da414fe", "fields": {"nom_de_la_commune": "SOIGNOLLES", "libell_d_acheminement": "SOIGNOLLES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14674"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012beef9b0bfcf66e8c8c676a1f9e83732c453d1", "fields": {"nom_de_la_commune": "SOLIERS", "libell_d_acheminement": "SOLIERS", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14675"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5599d150abffefbb60ed6a431d3a45ab90c138fb", "fields": {"nom_de_la_commune": "SOULANGY", "libell_d_acheminement": "SOULANGY", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14677"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0af2d24f11d8b0bd4e411d2c448a87bf3d7450e", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "ST MARTIN DE SALLEN", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fabc4edcc17360cdd8187ac4abd8f10cf6ad1ae6", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "THURY HARCOURT", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25cc6ce72598c5e5d69d7d5b2c76b42b5d79bbba", "fields": {"nom_de_la_commune": "TILLY SUR SEULLES", "libell_d_acheminement": "TILLY SUR SEULLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14692"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65bd7e6b7235fb2fa0ba4d4c271b80f2c70a3a0e", "fields": {"nom_de_la_commune": "LE TORQUESNE", "libell_d_acheminement": "LE TORQUESNE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14694"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73655e704e9ffcda9671ee2336b7714fc5a85e5e", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "ST MARTIN DE FRESNAY", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480c2c6e3bffb7fcf152a83ed56ac7a87a0163c0", "fields": {"nom_de_la_commune": "TOURGEVILLE", "libell_d_acheminement": "TOURGEVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14701"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e75208b87f1cfc5d876f164275e958633a39d7", "fields": {"nom_de_la_commune": "TOURVILLE EN AUGE", "libell_d_acheminement": "TOURVILLE EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14706"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5006000eab573e5008bdc2a2af20c2fafc631ec8", "fields": {"nom_de_la_commune": "TRACY SUR MER", "libell_d_acheminement": "TRACY SUR MER", "code_postal": "14117", "coordonnees_gps": [49.3341466257, -0.646070140255], "code_commune_insee": "14709"}, "geometry": {"type": "Point", "coordinates": [-0.646070140255, 49.3341466257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f655a77e597a853f97591151d45ac6970c27e190", "fields": {"code_postal": "14350", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "MONTCHAMP", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5090d6d92976d07abee98d53efb401db97f0c1ce", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "PRESLES", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0dbda9077edffd0fa772b46f2260fa8c4429598", "fields": {"nom_de_la_commune": "LE VEY", "libell_d_acheminement": "LE VEY", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14741"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751f2bb374373e17a128211a130d37bcf83d8933", "fields": {"nom_de_la_commune": "VICQUES", "libell_d_acheminement": "VICQUES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14742"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238faf994447e564d1d0e1ff99c7971914e1f5c7", "fields": {"nom_de_la_commune": "VIEUX BOURG", "libell_d_acheminement": "VIEUX BOURG", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14748"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4e01bdcf67329f242335769fab10774fa28f51c", "fields": {"nom_de_la_commune": "VILLERVILLE", "libell_d_acheminement": "VILLERVILLE", "code_postal": "14113", "coordonnees_gps": [49.392904808, 0.128649857058], "code_commune_insee": "14755"}, "geometry": {"type": "Point", "coordinates": [0.128649857058, 49.392904808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662504d3e3f2c46059925a3ef403677d4c30a552", "fields": {"nom_de_la_commune": "VILLONS LES BUISSONS", "libell_d_acheminement": "VILLONS LES BUISSONS", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14758"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22f016acc0a35b0361891a7a44d33f235b34948", "fields": {"nom_de_la_commune": "VILLY BOCAGE", "libell_d_acheminement": "VILLY BOCAGE", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14760"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c1a8691d6c4969a749d5ddcd51551838669fc6", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "VAUDRY", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f23039c87147cdfb74dd56961666c37ea6375c", "fields": {"nom_de_la_commune": "ALLANCHE", "libell_d_acheminement": "ALLANCHE", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15001"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a727c4349bd111e3def932c54599aaefecae6984", "fields": {"nom_de_la_commune": "ALLEUZE", "libell_d_acheminement": "ALLEUZE", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15002"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9d04cce285def1315052347049db773db7749a", "fields": {"nom_de_la_commune": "ANDELAT", "libell_d_acheminement": "ANDELAT", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15004"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9effbb34915f2130220e821a63987b7ae2e8ad4", "fields": {"nom_de_la_commune": "ANTIGNAC", "libell_d_acheminement": "ANTIGNAC", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15008"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d0f3366996dd6eff8c980d806d0b010b413849", "fields": {"nom_de_la_commune": "ARNAC", "libell_d_acheminement": "ARNAC", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15011"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9dccea0da944250400572e1b0482172bc483b2e", "fields": {"nom_de_la_commune": "AYRENS", "libell_d_acheminement": "AYRENS", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15016"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e2669ca83028aecda40f986dc8b264382996b6", "fields": {"nom_de_la_commune": "BADAILHAC", "libell_d_acheminement": "BADAILHAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15017"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8de91dedccd8a57e3a8fd07dd95813077c8690", "fields": {"nom_de_la_commune": "BASSIGNAC", "libell_d_acheminement": "BASSIGNAC", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15019"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3daf8bef8e2a0221e1d9ba7bf6632e905fd1b181", "fields": {"nom_de_la_commune": "CARLAT", "libell_d_acheminement": "CARLAT", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15028"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295c997730819f42123d0c614f1cc4371893f679", "fields": {"nom_de_la_commune": "CHALINARGUES", "libell_d_acheminement": "CHALINARGUES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15035"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a7d57ee3bbe70c561d1d6af2fe6d4fbd58f54c", "fields": {"nom_de_la_commune": "CHAUDES AIGUES", "libell_d_acheminement": "CHAUDES AIGUES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15045"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102dad44d2d1a0064f3a43e0667fd212afa2f31b", "fields": {"nom_de_la_commune": "CHAUSSENAC", "libell_d_acheminement": "CHAUSSENAC", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15046"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c219bd7cd0112b128d175bd8c8fcdb2b9d79baae", "fields": {"nom_de_la_commune": "LE CLAUX", "libell_d_acheminement": "LE CLAUX", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15050"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cc83c39d131615027adcc9c3b62f8cef75e24d", "fields": {"nom_de_la_commune": "DIENNE", "libell_d_acheminement": "DIENNE", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15061"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8139b12e2dec5090d9d0990fa843a5e1593cd3", "fields": {"nom_de_la_commune": "DRUGEAC", "libell_d_acheminement": "DRUGEAC", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15063"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89403846d0adbeabb229588abe0e4e04ece4d24e", "fields": {"nom_de_la_commune": "FRIDEFONT", "libell_d_acheminement": "FRIDEFONT", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15073"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd09ae65da94a6f15d9b9f7a9e896931b66d7a3", "fields": {"nom_de_la_commune": "JOU SOUS MONJOU", "libell_d_acheminement": "JOU SOUS MONJOU", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15081"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f34e6a037834ef423d5f80740d0b04f5d8a7151", "fields": {"nom_de_la_commune": "LABROUSSE", "libell_d_acheminement": "LABROUSSE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15085"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a28d06bf9d09fc8463f739b5d6ed5b5fa906b5", "fields": {"nom_de_la_commune": "LAPEYRUGUE", "libell_d_acheminement": "LAPEYRUGUE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15093"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5add3dc50835b02900971829548edf93d99eac", "fields": {"nom_de_la_commune": "LAURIE", "libell_d_acheminement": "LAURIE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15098"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5139f4e939adc5026c127be9fc09b81122392494", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "ST JUST", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f3fdb568d937cdadc2456a81c66bc301c76d9c", "fields": {"nom_de_la_commune": "MALBO", "libell_d_acheminement": "MALBO", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15112"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1222392bb88009566fa13c0148b66067220399d3", "fields": {"nom_de_la_commune": "MARMANHAC", "libell_d_acheminement": "MARMANHAC", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15118"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362b827a498a359e01b47aa6a455e757ea92de7b", "fields": {"nom_de_la_commune": "MAURINES", "libell_d_acheminement": "MAURINES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15121"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38341b75a11825901e19cc2866af349f15712ef4", "fields": {"nom_de_la_commune": "MONTBOUDIF", "libell_d_acheminement": "MONTBOUDIF", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15129"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b87d3153d051b31fd50a5d5a2d13d48abc55df", "fields": {"nom_de_la_commune": "MOURJOU", "libell_d_acheminement": "MOURJOU", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15136"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49a165d47045ca9568ef99e043c5cc0669aae0f", "fields": {"nom_de_la_commune": "MURAT", "libell_d_acheminement": "MURAT", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15138"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d175a485b5c7ba6e081ad8f53665c767838231b4", "fields": {"nom_de_la_commune": "NARNHAC", "libell_d_acheminement": "NARNHAC", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15139"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058af4e34ea9f79a236bb4289d8d46a79fa9bf13", "fields": {"nom_de_la_commune": "PARLAN", "libell_d_acheminement": "PARLAN", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15147"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f2e268a6a062fc357715a42fc4ce8d933e74e4", "fields": {"nom_de_la_commune": "PEYRUSSE", "libell_d_acheminement": "PEYRUSSE", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15151"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2afbf42bfe01740a3dc7c29a75e22a54e8221ceb", "fields": {"nom_de_la_commune": "QUEZAC", "libell_d_acheminement": "QUEZAC", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15157"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e25045a92afcac0f95bb1d1fc4d99e91709dd0", "fields": {"nom_de_la_commune": "RUYNES EN MARGERIDE", "libell_d_acheminement": "RUYNES EN MARGERIDE", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15168"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acd71aa280b01dd143edd4a8151204dac3afa95", "fields": {"nom_de_la_commune": "ST AMANDIN", "libell_d_acheminement": "ST AMANDIN", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15170"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4900f5f3bb9a5e83e7fe95df3bab977e8d402be8", "fields": {"nom_de_la_commune": "ST CERNIN", "libell_d_acheminement": "ST CERNIN", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15175"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27eb042c1cfc9a5f672aba8ddfbecccfb3f65c8", "fields": {"nom_de_la_commune": "ST FLOUR", "libell_d_acheminement": "ST FLOUR", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15187"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12390cd78a377f6348a07e9b650f6019a839569", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15190"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4bd3f042f37a1482fa94bc9ca2e590ed53d818b", "fields": {"nom_de_la_commune": "ST ILLIDE", "libell_d_acheminement": "ST ILLIDE", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15191"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc6381e3e74f83fdd5d81d9cf6691680428f6c5", "fields": {"nom_de_la_commune": "ST MARTIN CANTALES", "libell_d_acheminement": "ST MARTIN CANTALES", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15200"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10585127d4405f8c3bdbc50e6abe59118b9e8524", "fields": {"nom_de_la_commune": "ST MARTIN VALMEROUX", "libell_d_acheminement": "ST MARTIN VALMEROUX", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15202"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81010e7ba61e8d6981289bd861568be5c3c40615", "fields": {"nom_de_la_commune": "ST SAURY", "libell_d_acheminement": "ST SAURY", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15214"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c803dd48d05ca5b534b698a06f651962c259fad", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15215"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d51be1afe3681ea03538e97c2a70c14864649f", "fields": {"nom_de_la_commune": "SOULAGES", "libell_d_acheminement": "SOULAGES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15229"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a4d986e94bc716931ad149aa27ef9b4920959a", "fields": {"nom_de_la_commune": "TIVIERS", "libell_d_acheminement": "TIVIERS", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15237"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63daafe3b708936107d9071aaa157cee4e19db0a", "fields": {"nom_de_la_commune": "LA TRINITAT", "libell_d_acheminement": "LA TRINITAT", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15241"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f5e39491cce22d4adbf075021d92e2c20ca9ebf", "fields": {"nom_de_la_commune": "VEBRET", "libell_d_acheminement": "VEBRET", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15250"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66726dea67eaaf8496f987e0eda4b317fae6f9c", "fields": {"nom_de_la_commune": "VEDRINES ST LOUP", "libell_d_acheminement": "VEDRINES ST LOUP", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15251"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768bc44e536860628be897ffd62497cc7eff801a", "fields": {"nom_de_la_commune": "VEZELS ROUSSY", "libell_d_acheminement": "VEZELS ROUSSY", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15257"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd926469918b64e778d165b7f564e296e00e88d", "fields": {"nom_de_la_commune": "VILLEDIEU", "libell_d_acheminement": "VILLEDIEU", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15262"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e7d950df8949c9e82090f2cb0a8f03fc86835d", "fields": {"nom_de_la_commune": "YTRAC", "libell_d_acheminement": "YTRAC", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15267"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51dd5461ed060012dfc5ac876bffda5133c510c8", "fields": {"code_postal": "15290", "code_commune_insee": "15268", "libell_d_acheminement": "LE ROUGET PERS", "ligne_5": "PERS", "nom_de_la_commune": "LE ROUGET PERS", "coordonnees_gps": [44.8596655037, 2.18395827378]}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d7120388837874247eec3975aa5d80ef602218", "fields": {"nom_de_la_commune": "ABZAC", "libell_d_acheminement": "ABZAC", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16001"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde776639111090c8f30d4d59c1c3f787e10c3e5", "fields": {"nom_de_la_commune": "AGRIS", "libell_d_acheminement": "AGRIS", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16003"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4130248416e4ce972099adc349ddb8f7719bf804", "fields": {"nom_de_la_commune": "AMBERAC", "libell_d_acheminement": "AMBERAC", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16008"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dc41b3a2407c6dc8fc22834025ecbe91d04e492", "fields": {"nom_de_la_commune": "ANGOULEME", "libell_d_acheminement": "ANGOULEME", "code_postal": "16000", "coordonnees_gps": [45.6474756307, 0.145191503645], "code_commune_insee": "16015"}, "geometry": {"type": "Point", "coordinates": [0.145191503645, 45.6474756307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9d6952a5eabaf25e077d41e298e73d4e476d20", "fields": {"nom_de_la_commune": "ANVILLE", "libell_d_acheminement": "ANVILLE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16017"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5b1ff1795f421123529583c6e17185b00b1467", "fields": {"nom_de_la_commune": "BALZAC", "libell_d_acheminement": "BALZAC", "code_postal": "16430", "coordonnees_gps": [45.7168170917, 0.172931779313], "code_commune_insee": "16026"}, "geometry": {"type": "Point", "coordinates": [0.172931779313, 45.7168170917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5da50474d55a643aab04feb8decfd86e77848f", "fields": {"nom_de_la_commune": "BEAULIEU SUR SONNETTE", "libell_d_acheminement": "BEAULIEU SUR SONNETTE", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16035"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5268081f80a60393840b9f3221de289c65b475", "fields": {"nom_de_la_commune": "BIOUSSAC", "libell_d_acheminement": "BIOUSSAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16044"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c02ae7c980f4e71de4f7a0c345fdfd4d346a480", "fields": {"code_postal": "16250", "code_commune_insee": "16046", "libell_d_acheminement": "BLANZAC PORCHERESSE", "ligne_5": "PORCHERESSE", "nom_de_la_commune": "BLANZAC PORCHERESSE", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015dd7786b188988785aa7b5b996e26c302ac0fc", "fields": {"nom_de_la_commune": "BONNEUIL", "libell_d_acheminement": "BONNEUIL", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16050"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c22296ed9c983c97205e5e9c1ce2b352c6dfa0", "fields": {"nom_de_la_commune": "BONNEVILLE", "libell_d_acheminement": "BONNEVILLE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16051"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5241a649c44fb61cc59d70c51912f239fa7c6cd", "fields": {"nom_de_la_commune": "BORS DE MONTMOREAU", "libell_d_acheminement": "BORS DE MONTMOREAU", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16052"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d4ff01f8928db50d7ccbe2e3c9b7831063f810", "fields": {"nom_de_la_commune": "BORS DE BAIGNES", "libell_d_acheminement": "BORS DE BAIGNES", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16053"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80d15b7f5101ce0115b416b0c2442b1d72d7dc78", "fields": {"nom_de_la_commune": "BRIE SOUS BARBEZIEUX", "libell_d_acheminement": "BRIE SOUS BARBEZIEUX", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16062"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c851bdaef97a2595dde08d117ec95593e8498bf9", "fields": {"nom_de_la_commune": "BUNZAC", "libell_d_acheminement": "BUNZAC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16067"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d11538cd00b31ecb424336586728c2846a270e29", "fields": {"nom_de_la_commune": "CELLEFROUIN", "libell_d_acheminement": "CELLEFROUIN", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16068"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e127a86f037b8b59fb8626252f6652ceed42e10", "fields": {"nom_de_la_commune": "CHANTILLAC", "libell_d_acheminement": "CHANTILLAC", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16079"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de2501db9d98fe550b18993f6e0bcbfc0a66441", "fields": {"code_postal": "16320", "code_commune_insee": "16082", "libell_d_acheminement": "BOISNE LA TUDE", "ligne_5": "CHARMANT", "nom_de_la_commune": "BOISNE LA TUDE", "coordonnees_gps": [45.4895091736, 0.297130161872]}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1300b872e65c37b9831c3050a5b0520a2389ef2", "fields": {"nom_de_la_commune": "CHASSENEUIL SUR BONNIEURE", "libell_d_acheminement": "CHASSENEUIL SUR BONNIEURE", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16085"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce9c38a552ade44acd46396f019143d88de6259", "fields": {"nom_de_la_commune": "CHASSIECQ", "libell_d_acheminement": "CHASSIECQ", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16087"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa8d8e70ee6f1cee1c912e42f8ea6d4b1f566d5", "fields": {"nom_de_la_commune": "CHENOMMET", "libell_d_acheminement": "CHENOMMET", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16094"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681fdd3d6d18a6019b6f1fb9af2aaa44cad9d297", "fields": {"nom_de_la_commune": "CHERVES RICHEMONT", "libell_d_acheminement": "CHERVES RICHEMONT", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16097"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ee31cbbe65f7b60276f1430d631f282f28c0e2", "fields": {"nom_de_la_commune": "CHIRAC", "libell_d_acheminement": "CHIRAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16100"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7494adf3d80bd12454de309a0f8dc8fd265de52c", "fields": {"nom_de_la_commune": "CLAIX", "libell_d_acheminement": "CLAIX", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16101"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d2d9130887dd30f20eca143644ec37c0a90433", "fields": {"nom_de_la_commune": "CONDAC", "libell_d_acheminement": "CONDAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16104"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf22f714e61d0e6237ad028edb242c8ace88495", "fields": {"code_postal": "16500", "code_commune_insee": "16106", "libell_d_acheminement": "CONFOLENS", "ligne_5": "ST GERMAIN DE CONFOLENS", "nom_de_la_commune": "CONFOLENS", "coordonnees_gps": [46.0339142008, 0.700300422302]}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1e0b114da413db0e5ab24faadec495d1f449cc", "fields": {"nom_de_la_commune": "COURBILLAC", "libell_d_acheminement": "COURBILLAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16109"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9b39c8e748f030e324b76b3d22ea711f8db92c", "fields": {"nom_de_la_commune": "HANNOGNE ST REMY", "libell_d_acheminement": "HANNOGNE ST REMY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08210"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d712a742c336b0bba2e96d56832aa014dcc9eacc", "fields": {"code_postal": "45300", "code_commune_insee": "45348", "libell_d_acheminement": "YEVRE LA VILLE", "ligne_5": "YEVRE LE CHATEL", "nom_de_la_commune": "YEVRE LA VILLE", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d2f9bae6e0f0100d04920203a9790edf36ed52", "fields": {"nom_de_la_commune": "BELMONT STE FOI", "libell_d_acheminement": "BELMONT STE FOI", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46026"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f279b976c5e98e9be86da7a52ea75c3b8e8c7e", "fields": {"nom_de_la_commune": "BERGANTY", "libell_d_acheminement": "BERGANTY", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46027"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8d44ba7f2e1b90224679a95b67aa8a84a7e05a", "fields": {"nom_de_la_commune": "BOUSSAC", "libell_d_acheminement": "BOUSSAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46035"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bd30706f976fb40cfcab0a299b68f5494d277d", "fields": {"nom_de_la_commune": "LE BOUYSSOU", "libell_d_acheminement": "LE BOUYSSOU", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46036"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d4192c978b260a5b1a7b7833b516c6a4998c19", "fields": {"nom_de_la_commune": "BOUZIES", "libell_d_acheminement": "BOUZIES", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46037"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a26110bcafd69a6c7de121dce0fe2ef2b76de3a2", "fields": {"nom_de_la_commune": "CAJARC", "libell_d_acheminement": "CAJARC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46045"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9366a22d3e0e9e224de872842ccb065d45e397de", "fields": {"nom_de_la_commune": "CALAMANE", "libell_d_acheminement": "CALAMANE", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46046"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d8571421d430f67d74f29a60dc07ab9a53f0b", "fields": {"nom_de_la_commune": "CAMBOULIT", "libell_d_acheminement": "CAMBOULIT", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46052"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea499fad7f063b78e8063c899443c236c4e427bc", "fields": {"nom_de_la_commune": "CARLUCET", "libell_d_acheminement": "CARLUCET", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46059"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f0d92615c2d4ef944ee3c521d9ca9a740cb2e1", "fields": {"nom_de_la_commune": "CASTELNAU MONTRATIER", "libell_d_acheminement": "CASTELNAU MONTRATIER", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46063"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8152928f12eb8dcd34ef56c17e7f38fe2dbbe8a3", "fields": {"nom_de_la_commune": "CAZALS", "libell_d_acheminement": "CAZALS", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46066"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f0cc529a2f82ed6cbe68530fdd00c15c41dc51", "fields": {"nom_de_la_commune": "CAZILLAC", "libell_d_acheminement": "CAZILLAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46067"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c0ee74616b1b15307b4ff274793eb7e67de3a7b", "fields": {"nom_de_la_commune": "CONDAT", "libell_d_acheminement": "CONDAT", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46074"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "612316bfa3aa4b2d08a1ee705f66e7bcb4453bff", "fields": {"nom_de_la_commune": "CORN", "libell_d_acheminement": "CORN", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46075"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58614e8f4c48496e612e5fe86d8de38a50512da5", "fields": {"nom_de_la_commune": "CORNAC", "libell_d_acheminement": "CORNAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46076"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0387dc43615c3567858d6f8e78155b4ec296c0bf", "fields": {"nom_de_la_commune": "COUZOU", "libell_d_acheminement": "COUZOU", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46078"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a1f9095e72796703cd0175ddc6d7428c412715", "fields": {"nom_de_la_commune": "CUZAC", "libell_d_acheminement": "CUZAC", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46085"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54d48a3057754110dfff223c3c591adf838c4e52", "fields": {"nom_de_la_commune": "DURBANS", "libell_d_acheminement": "DURBANS", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46090"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66424615f2823dcac1b17056efe985840328ba13", "fields": {"nom_de_la_commune": "FELZINS", "libell_d_acheminement": "FELZINS", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46101"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8924e838bb86c7776a8a12deb0ff3704fff2ea03", "fields": {"code_postal": "46170", "code_commune_insee": "46103", "libell_d_acheminement": "ST PAUL FLAUGNAC", "ligne_5": "ST PAUL DE LOUBRESSAC", "nom_de_la_commune": "ST PAUL FLAUGNAC", "coordonnees_gps": [44.2978599733, 1.37150326445]}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda041e8b6a6ee6cad713726b43677f46ebe2bfd", "fields": {"nom_de_la_commune": "FRAYSSINET", "libell_d_acheminement": "FRAYSSINET", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46113"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa63ff6416b85b7297a9df2865304d3dfa7459b", "fields": {"nom_de_la_commune": "FRAYSSINET LE GELAT", "libell_d_acheminement": "FRAYSSINET LE GELAT", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46114"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f08e1a0166b03400096c84abee11795881d9d79", "fields": {"nom_de_la_commune": "GINOUILLAC", "libell_d_acheminement": "GINOUILLAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46121"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2d2e2a578e4875489eeebc2d3dddffe25ac090", "fields": {"nom_de_la_commune": "GORSES", "libell_d_acheminement": "GORSES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46125"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b8885328d9ed649d3ed716aefd70ad3101656e", "fields": {"nom_de_la_commune": "GOUJOUNAC", "libell_d_acheminement": "GOUJOUNAC", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46126"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842dfbce37a35eacc258fd3791f9182fe192ec0e", "fields": {"nom_de_la_commune": "LES JUNIES", "libell_d_acheminement": "LES JUNIES", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46134"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc75465f67cae5dce3c25a2b7880d8bf3c23479c", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "ST SAUVEUR LA VALLEE", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2235443ef54a11587492c64374514355cbdde51d", "fields": {"nom_de_la_commune": "LACAPELLE CABANAC", "libell_d_acheminement": "LACAPELLE CABANAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46142"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cedeed3765208ebf2cece5f6951a9d0271c0ca", "fields": {"nom_de_la_commune": "LACAPELLE MARIVAL", "libell_d_acheminement": "LACAPELLE MARIVAL", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46143"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e00bc93ba47799de185ce49a4af0d08811555c24", "fields": {"nom_de_la_commune": "LACAVE", "libell_d_acheminement": "LACAVE", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46144"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f58d806c9acd75eddc14b6be8ad074cd275804c", "fields": {"nom_de_la_commune": "LALBENQUE", "libell_d_acheminement": "LALBENQUE", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46148"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd801c5f41aaac88f1c9adfbcdc85aa795bd439", "fields": {"nom_de_la_commune": "LAMOTHE CASSEL", "libell_d_acheminement": "LAMOTHE CASSEL", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46151"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7891891aa009a884bd79e5168cf9a3c20fca4491", "fields": {"nom_de_la_commune": "LARAMIERE", "libell_d_acheminement": "LARAMIERE", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46154"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717a81ff111f71a963f5c60036999ee190c45b59", "fields": {"nom_de_la_commune": "LARROQUE TOIRAC", "libell_d_acheminement": "LARROQUE TOIRAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46157"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf8601fa5f512768b93ef0362cb93201caf730c", "fields": {"nom_de_la_commune": "LAURESSES", "libell_d_acheminement": "LAURESSES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46161"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77ca4fb6b0fe23471bd608505d91786b0bcfe606", "fields": {"nom_de_la_commune": "LAVAL DE CERE", "libell_d_acheminement": "LAVAL DE CERE", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46163"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f2171ae2e73d491e3fefe1896c8c683c791f68", "fields": {"nom_de_la_commune": "LEYME", "libell_d_acheminement": "LEYME", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46170"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b40f7122c4df2b83079ae793dc1b446cd340b25", "fields": {"nom_de_la_commune": "LINAC", "libell_d_acheminement": "LINAC", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46174"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958fbf1b95126848bd72c68dea57637846108a19", "fields": {"nom_de_la_commune": "LUGAGNAC", "libell_d_acheminement": "LUGAGNAC", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46179"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105d1fd1fef35c8be8e85e8910cbc2006c392fc9", "fields": {"nom_de_la_commune": "MARMINIAC", "libell_d_acheminement": "MARMINIAC", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46184"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ff3310b49187199877877a5d52d680c3bc1005", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "LEBREIL", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2617f18d7cda487d2c16a451262509cf32e11b", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46204"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0123f775cdd30565538904e8e3c577b0dd8ce434", "fields": {"nom_de_la_commune": "MONTVALENT", "libell_d_acheminement": "MONTVALENT", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46208"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d365af90ee6f72e9c2032dd2603f773f71678b20", "fields": {"nom_de_la_commune": "PONTCIRQ", "libell_d_acheminement": "PONTCIRQ", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46223"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a00b30ba9047ca1fab5f4f2d32c3ffa9d0d94be", "fields": {"nom_de_la_commune": "PRENDEIGNES", "libell_d_acheminement": "PRENDEIGNES", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46226"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f025a79ddd0d39a85439bbb9b544f9123d8cbe37", "fields": {"nom_de_la_commune": "PUY L EVEQUE", "libell_d_acheminement": "PUY L EVEQUE", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46231"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86356702db2091aa93f5aba5298d3fa44202f7be", "fields": {"nom_de_la_commune": "SAILLAC", "libell_d_acheminement": "SAILLAC", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46247"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b34adfd51296cc7b47fd1b9375bf0d915d1d38f", "fields": {"nom_de_la_commune": "ST CHAMARAND", "libell_d_acheminement": "ST CHAMARAND", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46253"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e021e8b5acd352c82b23ef99571500407a24ea", "fields": {"nom_de_la_commune": "ST CIRQ SOUILLAGUET", "libell_d_acheminement": "ST CIRQ SOUILLAGUET", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46258"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521d2e1d857fa98dee2843df56fbbb8eb10b34a7", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46262"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3858f63f3a8f58c4ad032382348c02a82311c68", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46266"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50fa95b01874a7a634f443afbf02fe45e1e3710", "fields": {"nom_de_la_commune": "ST MATRE", "libell_d_acheminement": "ST MATRE", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46278"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ba8abe820e4b3378cb20cafc68e654ad8dba93", "fields": {"nom_de_la_commune": "ST PAUL DE VERN", "libell_d_acheminement": "ST PAUL DE VERN", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46286"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd21402b4e242050e6170a23a251f8868ae13fee", "fields": {"nom_de_la_commune": "ST PERDOUX", "libell_d_acheminement": "ST PERDOUX", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46288"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18ac71414e186445c06dd390ba321746ca840f5", "fields": {"nom_de_la_commune": "ST VINCENT RIVE D OLT", "libell_d_acheminement": "ST VINCENT RIVE D OLT", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46296"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d5f7edd29b4bb45f98eda0054bd3c2a1486cb1", "fields": {"nom_de_la_commune": "TAURIAC", "libell_d_acheminement": "TAURIAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46313"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa296ddcd41829f859f714bf1729047947892656", "fields": {"nom_de_la_commune": "TEYSSIEU", "libell_d_acheminement": "TEYSSIEU", "code_postal": "46190", "coordonnees_gps": [44.886802824, 2.02091707559], "code_commune_insee": "46315"}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3942565250f878fe0804d409b123b0385c37d2", "fields": {"nom_de_la_commune": "TOUR DE FAURE", "libell_d_acheminement": "TOUR DE FAURE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46320"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262e8312ae229668532887cc09179ee109a53245", "fields": {"nom_de_la_commune": "TOUZAC", "libell_d_acheminement": "TOUZAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46321"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cef0c27b9eecf18ff252cc88ac47238f196980", "fields": {"nom_de_la_commune": "USSEL", "libell_d_acheminement": "USSEL", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46323"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1383717d3cca8373638d54f2a089f367ffa12d5", "fields": {"nom_de_la_commune": "ST PIERRE LAFEUILLE", "libell_d_acheminement": "ST PIERRE LAFEUILLE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46340"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cd8a5ac10edda7a51b7a4d1ac19c8a301cf2d0", "fields": {"nom_de_la_commune": "AIGUILLON", "libell_d_acheminement": "AIGUILLON", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47004"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d75e61a8a824712862f6bc792b26873334be396", "fields": {"nom_de_la_commune": "ALLEZ ET CAZENEUVE", "libell_d_acheminement": "ALLEZ ET CAZENEUVE", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47006"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c1addcda6e0016fd3e3908c185096c4d2e1970", "fields": {"nom_de_la_commune": "AMBRUS", "libell_d_acheminement": "AMBRUS", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47008"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce380728173dac170aeeb803fe66ecc8884e62bf", "fields": {"nom_de_la_commune": "ARGENTON", "libell_d_acheminement": "ARGENTON", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47013"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715829ea35815539bb0f7e292721965140dfbccf", "fields": {"nom_de_la_commune": "BAJAMONT", "libell_d_acheminement": "BAJAMONT", "code_postal": "47480", "coordonnees_gps": [44.2442520518, 0.685511945238], "code_commune_insee": "47019"}, "geometry": {"type": "Point", "coordinates": [0.685511945238, 44.2442520518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e9c78985f856909d38f97addd779163cea9f97f", "fields": {"nom_de_la_commune": "BARBASTE", "libell_d_acheminement": "BARBASTE", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47021"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59968ffee703d30d0dc37857c6776caf74319aca", "fields": {"nom_de_la_commune": "BEAUGAS", "libell_d_acheminement": "BEAUGAS", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47023"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e6137bc97974dbe30b128bb4b07a4e4b4484a2", "fields": {"nom_de_la_commune": "BIAS", "libell_d_acheminement": "BIAS", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47027"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83ff7c052ef5de9aa7064f52a90fc7046a5a8d8", "fields": {"nom_de_la_commune": "BOURNEL", "libell_d_acheminement": "BOURNEL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47037"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198fb995af68388a635e75fc2a0057698f629c48", "fields": {"nom_de_la_commune": "BRUGNAC", "libell_d_acheminement": "BRUGNAC", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47042"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738d88dc5eb74eae17f686d0e7359f5bd192c8a6", "fields": {"nom_de_la_commune": "CASTELLA", "libell_d_acheminement": "CASTELLA", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47053"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78bbd6c14b06e8da97659f0592a84198df836ffb", "fields": {"nom_de_la_commune": "CASTELMORON SUR LOT", "libell_d_acheminement": "CASTELMORON SUR LOT", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47054"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8855c21c7f7c76541d60b89af8b25c8949e5cb", "fields": {"nom_de_la_commune": "CASTELNAU SUR GUPIE", "libell_d_acheminement": "CASTELNAU SUR GUPIE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47056"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfb63c0bfe868f99d4b9f5aad6396bed71851d81", "fields": {"nom_de_la_commune": "CAUBON ST SAUVEUR", "libell_d_acheminement": "CAUBON ST SAUVEUR", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47059"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc1a55dc790431f1651b5dcb75d135785c297c9", "fields": {"nom_de_la_commune": "CAUDECOSTE", "libell_d_acheminement": "CAUDECOSTE", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47060"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f4ad0134c4d120f76f2a4811dcfeb147f9faff7", "fields": {"nom_de_la_commune": "CAVARC", "libell_d_acheminement": "CAVARC", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47063"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17304b37ec9e16b050dfaf1c8c7490be92d1b74", "fields": {"nom_de_la_commune": "CLAIRAC", "libell_d_acheminement": "CLAIRAC", "code_postal": "47320", "coordonnees_gps": [44.3563868406, 0.403122345242], "code_commune_insee": "47065"}, "geometry": {"type": "Point", "coordinates": [0.403122345242, 44.3563868406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175ec83dccfe273bdde334d474a4992a791162e9", "fields": {"nom_de_la_commune": "LA CROIX BLANCHE", "libell_d_acheminement": "LA CROIX BLANCHE", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47075"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcd87c36b3a11288c6d58bcb44a19c5ec8c8fe9", "fields": {"nom_de_la_commune": "GAVAUDUN", "libell_d_acheminement": "GAVAUDUN", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47109"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a86f0d29e76faa1279632712b91b59e17a8b6a", "fields": {"nom_de_la_commune": "GRAYSSAS", "libell_d_acheminement": "GRAYSSAS", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47113"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3963b0cb95325a29f342b5e147d4a2a17a78fea5", "fields": {"nom_de_la_commune": "HAUTESVIGNES", "libell_d_acheminement": "HAUTESVIGNES", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47118"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b48b431d4f7e991e578d513e2e5e8c8bc0a2c46", "fields": {"nom_de_la_commune": "JUSIX", "libell_d_acheminement": "JUSIX", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47120"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bbaff47a4d02756209cb70c231b74dc57fc3d1e", "fields": {"nom_de_la_commune": "LAFOX", "libell_d_acheminement": "LAFOX", "code_postal": "47240", "coordonnees_gps": [44.1950523774, 0.697905787009], "code_commune_insee": "47128"}, "geometry": {"type": "Point", "coordinates": [0.697905787009, 44.1950523774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cf63c57c44b850f01a58c050fe01e77757ecd8", "fields": {"nom_de_la_commune": "LAMONTJOIE", "libell_d_acheminement": "LAMONTJOIE", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47133"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e82703489c1625a88fd5a7a517ff094b799af5", "fields": {"nom_de_la_commune": "LAUGNAC", "libell_d_acheminement": "LAUGNAC", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47140"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6435ed9166900a34c1d2f4660de1673b3fce7156", "fields": {"nom_de_la_commune": "LAUSSOU", "libell_d_acheminement": "LAUSSOU", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47141"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935ec28ebfb1c71960d7614409f78bd10218ebd0", "fields": {"nom_de_la_commune": "LEDAT", "libell_d_acheminement": "LEDAT", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47146"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23d23fe2fa3a7cdd3722f06ecc9bdcd4ceac152", "fields": {"nom_de_la_commune": "LEVIGNAC DE GUYENNE", "libell_d_acheminement": "LEVIGNAC DE GUYENNE", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47147"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c7122d3d22ddc5d2c68f4736cf815ca796bdb3", "fields": {"nom_de_la_commune": "LEYRITZ MONCASSIN", "libell_d_acheminement": "LEYRITZ MONCASSIN", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47148"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3eb078daae8bcf62b30b3efee37266ba9c6135c", "fields": {"nom_de_la_commune": "LOUGRATTE", "libell_d_acheminement": "LOUGRATTE", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47152"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d639b32ce861e9d5d418aa0f37af95d52fa34ddb", "fields": {"nom_de_la_commune": "LUSIGNAN PETIT", "libell_d_acheminement": "LUSIGNAN PETIT", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47154"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1675ea8269121a198e09a46686b8f645ec508c", "fields": {"nom_de_la_commune": "MASSOULES", "libell_d_acheminement": "MASSOULES", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47162"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d41171af68dc74c9771b13afabfecc3e50945e2", "fields": {"nom_de_la_commune": "MEILHAN SUR GARONNE", "libell_d_acheminement": "MEILHAN SUR GARONNE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47165"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04c76cf9dc046602ba01fa3527cb5b4b6e74ce7", "fields": {"nom_de_la_commune": "MEZIN", "libell_d_acheminement": "MEZIN", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47167"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038d70df9e90ff47e1d7f9ee7457f76019056538", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47178"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a380ee3581bae291acec9067e50f98b41006c127", "fields": {"nom_de_la_commune": "MONTASTRUC", "libell_d_acheminement": "MONTASTRUC", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47182"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f18a5eba44c8f4c7331654ccc5878def172bbaa", "fields": {"nom_de_la_commune": "MONTETON", "libell_d_acheminement": "MONTETON", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47187"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b871d42750045facf1925a644c9be1b9917aeffc", "fields": {"nom_de_la_commune": "MONTIGNAC DE LAUZUN", "libell_d_acheminement": "MONTIGNAC DE LAUZUN", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47188"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b6ecb5609e78f54b4124cd2914e517fd560cfe5", "fields": {"nom_de_la_commune": "ESMERY HALLON", "libell_d_acheminement": "ESMERY HALLON", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80284"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a0e691c92050335a5119bac1bd3918f6125cc8c", "fields": {"nom_de_la_commune": "ESTREBOEUF", "libell_d_acheminement": "ESTREBOEUF", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80287"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4531f603a3660c7be689ac2588c07427efcb34", "fields": {"nom_de_la_commune": "FEUILLERES", "libell_d_acheminement": "FEUILLERES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80307"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c8eb0469e059a2f54398073eff683738699707", "fields": {"nom_de_la_commune": "FIGNIERES", "libell_d_acheminement": "FIGNIERES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80311"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd33e4b936e07bb904d0e06908d6555127626e6", "fields": {"nom_de_la_commune": "FINS", "libell_d_acheminement": "FINS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80312"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a27c56e1a3aba94c69a9b0bb915237b48d55590", "fields": {"nom_de_la_commune": "FLAUCOURT", "libell_d_acheminement": "FLAUCOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80313"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b51c86ffee9a2e0387e7529e05fea14c912c52e7", "fields": {"nom_de_la_commune": "FOLLEVILLE", "libell_d_acheminement": "FOLLEVILLE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80321"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3209e505a8ccc303977ce3e24d486c5c07c078a", "fields": {"nom_de_la_commune": "FONCHES FONCHETTE", "libell_d_acheminement": "FONCHES FONCHETTE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80322"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab3fa8684506fa904b052b42242c03a7d3eb7455", "fields": {"nom_de_la_commune": "FONTAINE SOUS MONTDIDIER", "libell_d_acheminement": "FONTAINE SOUS MONTDIDIER", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80326"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83394db0b4d47cb292266ed05356559939e01eb", "fields": {"nom_de_la_commune": "FORCEVILLE", "libell_d_acheminement": "FORCEVILLE EN AMIENOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80329"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb81112d1c25d5c860a13993b68ce587c7afb19", "fields": {"nom_de_la_commune": "FOREST L ABBAYE", "libell_d_acheminement": "FOREST L ABBAYE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80331"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbad0c9980c626c804bcc022795b2c57507924e8", "fields": {"nom_de_la_commune": "FOUILLOY", "libell_d_acheminement": "FOUILLOY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80338"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8d65243dcb583c9ee1b72a25e2e2fab6eeb7ac", "fields": {"nom_de_la_commune": "FOUQUESCOURT", "libell_d_acheminement": "FOUQUESCOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80339"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbc02e9b765f1e26fb84536fd1a72cb7944a4e0", "fields": {"nom_de_la_commune": "FOURDRINOY", "libell_d_acheminement": "FOURDRINOY", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80341"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcce8192afe1e360e1eed60de294db69b8922558", "fields": {"nom_de_la_commune": "FRAMICOURT", "libell_d_acheminement": "FRAMICOURT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80343"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47247b93f5ffe5a605ba7ad6a88ea714df76b27", "fields": {"nom_de_la_commune": "FRESNOY LES ROYE", "libell_d_acheminement": "FRESNOY LES ROYE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80359"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe7d5b013145833177e3527def2654dba6730d2", "fields": {"nom_de_la_commune": "FRICOURT", "libell_d_acheminement": "FRICOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80366"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186b02e9fb0915fdb82fea8975a503fd408ce4e1", "fields": {"nom_de_la_commune": "FROHEN SUR AUTHIE", "libell_d_acheminement": "FROHEN SUR AUTHIE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80369"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9dbca5a0031796ca0b3f7941e51663453adb86b", "fields": {"nom_de_la_commune": "GAMACHES", "libell_d_acheminement": "GAMACHES", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80373"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd24eae17a89afec9d30cbeff6a2a201db4eea8e", "fields": {"nom_de_la_commune": "GINCHY", "libell_d_acheminement": "GINCHY", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80378"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9a441045d71b79a3784fbcc385136d94ab7c54", "fields": {"nom_de_la_commune": "GREBAULT MESNIL", "libell_d_acheminement": "GREBAULT MESNIL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80388"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368d10040391c7bcafb1a2bc7166db1d9e1eec3e", "fields": {"nom_de_la_commune": "GRECOURT", "libell_d_acheminement": "GRECOURT", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80389"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58dbcea105d0d26cde43d7c81402e3c40afb477", "fields": {"nom_de_la_commune": "GROUCHES LUCHUEL", "libell_d_acheminement": "GROUCHES LUCHUEL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80392"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9211824429c950dc9b3a67d05183189be05db07d", "fields": {"nom_de_la_commune": "GUIZANCOURT", "libell_d_acheminement": "GUIZANCOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80402"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bf7dd71326b73afcbf5638de7b8fda0746aa62", "fields": {"nom_de_la_commune": "HALLOY LES PERNOIS", "libell_d_acheminement": "HALLOY LES PERNOIS", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80408"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e7913a7dd15b7c8f1ca21a3f6581056ec45826", "fields": {"nom_de_la_commune": "HARDECOURT AUX BOIS", "libell_d_acheminement": "HARDECOURT AUX BOIS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80418"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aca4416faf6a54c88f4c7c7d9b2cec41aca2fa9", "fields": {"nom_de_la_commune": "HAVERNAS", "libell_d_acheminement": "HAVERNAS", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80423"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f6dc61d5bc931d4bf563f9a30600236fcabe22", "fields": {"nom_de_la_commune": "HERISSART", "libell_d_acheminement": "HERISSART", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80431"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f177367294c2d2ab4d273ec86b2dcf74c8464b", "fields": {"nom_de_la_commune": "HERLEVILLE", "libell_d_acheminement": "HERLEVILLE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80432"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cd0eae6255a3eb735c72e0c616b8875f0c7157", "fields": {"code_postal": "80290", "code_commune_insee": "80436", "libell_d_acheminement": "HESCAMPS", "ligne_5": "AGNIERES", "nom_de_la_commune": "HESCAMPS", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd172d1c890685654b912075d6336b182e04f57", "fields": {"code_postal": "80290", "code_commune_insee": "80436", "libell_d_acheminement": "HESCAMPS", "ligne_5": "SOUPLICOURT", "nom_de_la_commune": "HESCAMPS", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356548b02ef3f8e85a45f18178a46efb4911ca7e", "fields": {"nom_de_la_commune": "HEUDICOURT", "libell_d_acheminement": "HEUDICOURT", "code_postal": "80122", "coordonnees_gps": [50.0269720778, 3.08990357556], "code_commune_insee": "80438"}, "geometry": {"type": "Point", "coordinates": [3.08990357556, 50.0269720778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df5ca2f8a7c5872e76322efaca0a98439b0445d", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "GOUY L HOPITAL", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d780cba02a5e3d4a7b8c81f585223e1a4cd3f6", "fields": {"nom_de_la_commune": "HYENCOURT LE GRAND", "libell_d_acheminement": "HYENCOURT LE GRAND", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80447"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc3a0308a8ba8d5f7a5f963c06f7763a1e6085e", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LA CHAPELLE SOUS POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80455"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ac6c4b318887088ad3a4990289adc403a6e478", "fields": {"nom_de_la_commune": "LAMOTTE WARFUSEE", "libell_d_acheminement": "LAMOTTE WARFUSEE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80463"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e02a19e777ac3a2f31203951f2849326cc0aee", "fields": {"nom_de_la_commune": "LEALVILLERS", "libell_d_acheminement": "LEALVILLERS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80470"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4693cf41bfa64a64a116f4dcfb01306c3f677bf4", "fields": {"nom_de_la_commune": "LIGESCOURT", "libell_d_acheminement": "LIGESCOURT", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80477"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa435952408833abd31c31ad59a0e2ec512c34f", "fields": {"nom_de_la_commune": "LONGUEVAL", "libell_d_acheminement": "LONGUEVAL", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80490"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82bff8a5290398a3310784f57a426f41ad08a690", "fields": {"nom_de_la_commune": "LOUVRECHY", "libell_d_acheminement": "LOUVRECHY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80494"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54582c578047f81a2434a876e5214ecd01677b46", "fields": {"nom_de_la_commune": "MACHIEL", "libell_d_acheminement": "MACHIEL", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80496"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a42ac25dba4ae057b0093baaf96450848cccd3e", "fields": {"nom_de_la_commune": "MAISON PONTHIEU", "libell_d_acheminement": "MAISON PONTHIEU", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80501"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a17a2a1369d2e88291eb7bf80f4ca1874302d08", "fields": {"nom_de_la_commune": "MARCELCAVE", "libell_d_acheminement": "MARCELCAVE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80507"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9e1e81b0d114d05b1e9a33677b2108ee582138", "fields": {"nom_de_la_commune": "MAREUIL CAUBERT", "libell_d_acheminement": "MAREUIL CAUBERT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80512"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385a9687b928280bad80b0ddff0195fadd0c68ae", "fields": {"nom_de_la_commune": "MARIEUX", "libell_d_acheminement": "MARIEUX", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80514"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9661c5f7423badc1b71a7cf47038c4e931d0bed1", "fields": {"nom_de_la_commune": "MARLERS", "libell_d_acheminement": "MARLERS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80515"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1081cf2d18fb3e48e932f1bac8dac4dab6a7cb6e", "fields": {"nom_de_la_commune": "MEAULTE", "libell_d_acheminement": "MEAULTE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80523"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41100edbda965b1faa73b3ae123ec8c25a2b7f89", "fields": {"nom_de_la_commune": "MERICOURT L ABBE", "libell_d_acheminement": "MERICOURT L ABBE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80530"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb1d19f0627db53863413cc74dc538eaef0c7c5", "fields": {"nom_de_la_commune": "MERS LES BAINS", "libell_d_acheminement": "MERS LES BAINS", "code_postal": "80350", "coordonnees_gps": [50.0708581708, 1.40527663021], "code_commune_insee": "80533"}, "geometry": {"type": "Point", "coordinates": [1.40527663021, 50.0708581708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da1411508dff193f7965f51e8f41570ee26eef0", "fields": {"nom_de_la_commune": "LE MESGE", "libell_d_acheminement": "LE MESGE", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80535"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37d7405f10f488f63cee2705d38dbe06a55b863", "fields": {"nom_de_la_commune": "MEZEROLLES", "libell_d_acheminement": "MEZEROLLES", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80544"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb6b928bab61bfe95ef9fffcafeffca9f7cb412", "fields": {"nom_de_la_commune": "MIRAUMONT", "libell_d_acheminement": "MIRAUMONT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80549"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b81b44c952d0492a1101e41708dade704e4f87e0", "fields": {"nom_de_la_commune": "MOLLIENS AU BOIS", "libell_d_acheminement": "MOLLIENS AU BOIS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80553"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d302927dde8e0417ea89d5126ea99180d30511", "fields": {"code_postal": "80200", "code_commune_insee": "80555", "libell_d_acheminement": "MONCHY LAGACHE", "ligne_5": "MEREAUCOURT", "nom_de_la_commune": "MONCHY LAGACHE", "coordonnees_gps": [49.9092274559, 2.93799194086]}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483841fa3a5e618ab12656f4925dec948e57136e", "fields": {"nom_de_la_commune": "MOUFLERS", "libell_d_acheminement": "MOUFLERS", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80574"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792638352bb937b54da9cbda316418e6b0875e18", "fields": {"nom_de_la_commune": "MOYENCOURT", "libell_d_acheminement": "MOYENCOURT", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80576"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fddbda3852a2ea42e45768fc5c02659e7e5b365f", "fields": {"nom_de_la_commune": "MOYENCOURT LES POIX", "libell_d_acheminement": "MOYENCOURT LES POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80577"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74c6307ad16d5d546e5067d5e47e3d6bfa1fc30", "fields": {"nom_de_la_commune": "MUILLE VILLETTE", "libell_d_acheminement": "MUILLE VILLETTE", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80579"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2680b90545c52e6c4af9121e79942ac2f3525e8c", "fields": {"code_postal": "80290", "code_commune_insee": "80582", "libell_d_acheminement": "NAMPS MAISNIL", "ligne_5": "NAMPS AU MONT", "nom_de_la_commune": "NAMPS MAISNIL", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337b4220b08dc75fd98ee18eb7daac5d1811a8cd", "fields": {"nom_de_la_commune": "NESLE", "libell_d_acheminement": "NESLE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80585"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a34dab4d37901eea6ffcb231e63cf84342388d", "fields": {"nom_de_la_commune": "NESLETTE", "libell_d_acheminement": "NESLETTE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80587"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1ad13b3fe5b7dd79d5a4fcc253b61f712514b2", "fields": {"nom_de_la_commune": "NEUVILLE AU BOIS", "libell_d_acheminement": "NEUVILLE AU BOIS", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80591"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46ac2d659490df2f787dcbe30bc8c873ea37f65", "fields": {"nom_de_la_commune": "NEUVILLETTE", "libell_d_acheminement": "NEUVILLETTE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80596"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25634f2927c4170e7833320db320c8ab38894287", "fields": {"nom_de_la_commune": "ONEUX", "libell_d_acheminement": "ONEUX", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80609"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2ff770fe5be18c30a7235f09f27d409dbb4409", "fields": {"nom_de_la_commune": "OUST MAREST", "libell_d_acheminement": "OUST MAREST", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80613"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c13b6175e4bc2a6d3d3c2d958b9065d3ff3296b", "fields": {"nom_de_la_commune": "OVILLERS LA BOISSELLE", "libell_d_acheminement": "OVILLERS LA BOISSELLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80615"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f5146599834f085a6c24d8f2d39f2c7a74af96", "fields": {"nom_de_la_commune": "PARGNY", "libell_d_acheminement": "PARGNY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80616"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31bce173ca2f97425ef76bc0e34ebb92a131838", "fields": {"code_postal": "80700", "code_commune_insee": "80617", "libell_d_acheminement": "PARVILLERS LE QUESNOY", "ligne_5": "LE QUESNOY", "nom_de_la_commune": "PARVILLERS LE QUESNOY", "coordonnees_gps": [49.7015900422, 2.77539756139]}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01d8e1f3e51ff6880bc6dd8d1e8cd6e6800f61ec", "fields": {"nom_de_la_commune": "PENDE", "libell_d_acheminement": "PENDE", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80618"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f40a58f12ff5c85eb65b4bc361fc7e152066865", "fields": {"nom_de_la_commune": "PIENNES ONVILLERS", "libell_d_acheminement": "PIENNES ONVILLERS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80623"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369de9ebb2d18f34090b28f4d304b2745ce85efd", "fields": {"nom_de_la_commune": "LE PLESSIER ROZAINVILLERS", "libell_d_acheminement": "LE PLESSIER ROZAINVILLERS", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80628"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ec27bdfa1de1186ce0444760e34284f773315a", "fields": {"nom_de_la_commune": "POEUILLY", "libell_d_acheminement": "POEUILLY", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80629"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f90398ee22530b3762c3916281f66fc17782838", "fields": {"nom_de_la_commune": "PONT NOYELLES", "libell_d_acheminement": "PONT NOYELLES", "code_postal": "80115", "coordonnees_gps": [49.9397690617, 2.43129149377], "code_commune_insee": "80634"}, "geometry": {"type": "Point", "coordinates": [2.43129149377, 49.9397690617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e71afe049a655dac7a800402d5862e0ec12d81", "fields": {"nom_de_la_commune": "PROUZEL", "libell_d_acheminement": "PROUZEL", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80643"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0854f0420e80cc1cda02621733f6eb09f0e67c0", "fields": {"nom_de_la_commune": "REGNIERE ECLUSE", "libell_d_acheminement": "REGNIERE ECLUSE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80665"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd4d6909b910950f064fad271b544745be504b46", "fields": {"nom_de_la_commune": "RETHONVILLERS", "libell_d_acheminement": "RETHONVILLERS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80669"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b56ac43df86cf99871ef11945be273407b39d491", "fields": {"nom_de_la_commune": "RIBEAUCOURT", "libell_d_acheminement": "RIBEAUCOURT", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80671"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc468a1fdcd38cc01deaf6aee5a9327894fb238", "fields": {"nom_de_la_commune": "RIBEMONT SUR ANCRE", "libell_d_acheminement": "RIBEMONT SUR ANCRE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80672"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc175811c96f97d66086c64c23ed81e450e490f4", "fields": {"nom_de_la_commune": "RIVERY", "libell_d_acheminement": "RIVERY", "code_postal": "80136", "coordonnees_gps": [49.9106398111, 2.33963434621], "code_commune_insee": "80674"}, "geometry": {"type": "Point", "coordinates": [2.33963434621, 49.9106398111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db1681135bc14b2a00286a468c8015bc4aed8d7", "fields": {"nom_de_la_commune": "ROUVROY EN SANTERRE", "libell_d_acheminement": "ROUVROY EN SANTERRE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80682"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e6176bdb0ad13521963d985fc8102fb1a7ea3a", "fields": {"nom_de_la_commune": "RUE", "libell_d_acheminement": "RUE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80688"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b289c9f85a414dce1934fe745bd7863093e203", "fields": {"nom_de_la_commune": "SAILLY LE SEC", "libell_d_acheminement": "SAILLY LE SEC", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80694"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae016be953b92c539dea6097665428a97eca2cca", "fields": {"nom_de_la_commune": "ST BLIMONT", "libell_d_acheminement": "ST BLIMONT", "code_postal": "80960", "coordonnees_gps": [50.1207974447, 1.56516731632], "code_commune_insee": "80700"}, "geometry": {"type": "Point", "coordinates": [1.56516731632, 50.1207974447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570be1e1133d1e60160ed3be6e668ed2056c6494", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80708"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf407ad8c1bc56d21472f5d7cdac483d98994cc2", "fields": {"nom_de_la_commune": "ST MAULVIS", "libell_d_acheminement": "ST MAULVIS", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80709"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d3fa0937bec75ff4d9676bd714ef031ca7e7b0", "fields": {"nom_de_la_commune": "ST OUEN", "libell_d_acheminement": "ST OUEN", "code_postal": "80610", "coordonnees_gps": [50.0237604844, 2.12528172421], "code_commune_insee": "80711"}, "geometry": {"type": "Point", "coordinates": [2.12528172421, 50.0237604844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4232a5c27b8ba354cd7a46e76dc91597fef63e0", "fields": {"nom_de_la_commune": "ST QUENTIN EN TOURMONT", "libell_d_acheminement": "ST QUENTIN EN TOURMONT", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80713"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de1b7aee0d429c563c2092f9caf36799686480a", "fields": {"nom_de_la_commune": "STE SEGREE", "libell_d_acheminement": "STE SEGREE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80719"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad884de86f933a799e8fccfef42c4ba326ff18d", "fields": {"nom_de_la_commune": "SENTELIE", "libell_d_acheminement": "SENTELIE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80734"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43dea80ed2e59f82bd49e94e9b283ba787e0c69b", "fields": {"nom_de_la_commune": "SOYECOURT", "libell_d_acheminement": "SOYECOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80741"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae742c586bbfe4a08de250a397ffb13a047f3899", "fields": {"nom_de_la_commune": "SURCAMPS", "libell_d_acheminement": "SURCAMPS", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80742"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feb4b8ce3617b5de35a6ee2b7980728131a77df9", "fields": {"nom_de_la_commune": "TAILLY", "libell_d_acheminement": "TAILLY L ARBRE A MOUCHES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80744"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1dc3103a3ec4248867c1b522113479a53e760dd", "fields": {"nom_de_la_commune": "THENNES", "libell_d_acheminement": "THENNES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80751"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98db06ae11ff30457e0b541af0d99f8d85ceba51", "fields": {"nom_de_la_commune": "THIEULLOY L ABBAYE", "libell_d_acheminement": "THIEULLOY L ABBAYE", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80754"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a53f220c701beeee94ac1a21340aa2d88bfd230", "fields": {"nom_de_la_commune": "TILLOY LES CONTY", "libell_d_acheminement": "TILLOY LES CONTY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80761"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afda0ca648978a808a4cfa5d294231758220d796", "fields": {"nom_de_la_commune": "TREUX", "libell_d_acheminement": "TREUX", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80769"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce5553d31290e6791ab58ee864aa34d97c79d95", "fields": {"nom_de_la_commune": "TULLY", "libell_d_acheminement": "TULLY", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80770"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3c0d634ae4ecddfb9f02620d07a46d22816641", "fields": {"nom_de_la_commune": "VAIRE SOUS CORBIE", "libell_d_acheminement": "VAIRE SOUS CORBIE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80774"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7309e0a65e7b7def47083620c63f5495bfc745be", "fields": {"nom_de_la_commune": "VAUCHELLES LES DOMART", "libell_d_acheminement": "VAUCHELLES LES DOMART", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80778"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aeebb81ead19b774b9e2d0b88959a1a8669ae00", "fields": {"nom_de_la_commune": "VAUCHELLES LES QUESNOY", "libell_d_acheminement": "VAUCHELLES LES QUESNOY", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80779"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49adcb14ffeb62a6587c23ea5db7be65a8db87c", "fields": {"nom_de_la_commune": "LENTILLAC DU CAUSSE", "libell_d_acheminement": "LENTILLAC DU CAUSSE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46167"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad288facdc95aad3a3d0fb558e6636f3431c0881", "fields": {"nom_de_la_commune": "LHERM", "libell_d_acheminement": "LHERM", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46171"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54957c2e1af1840309419be750475d8980c8081f", "fields": {"nom_de_la_commune": "LIMOGNE EN QUERCY", "libell_d_acheminement": "LIMOGNE EN QUERCY", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46173"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6806bbf867069f99ea39f9413718a9526de617", "fields": {"nom_de_la_commune": "LUNEGARDE", "libell_d_acheminement": "LUNEGARDE", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46181"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69cf64c99d71f263d3f0f934793dd8ebb4ae9ef0", "fields": {"nom_de_la_commune": "MARTEL", "libell_d_acheminement": "MARTEL", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46185"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b895c25d1fb41b0bad812e91602c1c23d2f95533", "fields": {"nom_de_la_commune": "MAXOU", "libell_d_acheminement": "MAXOU", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46188"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaaad8f977a1e1ba334e10018c94ffe7774908c", "fields": {"nom_de_la_commune": "MONTCABRIER", "libell_d_acheminement": "MONTCABRIER", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46199"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464e0960ab2ea0ca3f9b2956bc3451393b62879f", "fields": {"nom_de_la_commune": "MONTDOUMERC", "libell_d_acheminement": "MONTDOUMERC", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46202"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4026aaceec8068db75bd81df1dbca4f4347c45", "fields": {"nom_de_la_commune": "MONTLAUZUN", "libell_d_acheminement": "MONTLAUZUN", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46206"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46a899dd6a03a75f88f5ae67afa3d7709f475d1", "fields": {"nom_de_la_commune": "MONTREDON", "libell_d_acheminement": "MONTREDON", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46207"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a692999baffb9d35829e1993996be594019e95bb", "fields": {"nom_de_la_commune": "NADAILLAC DE ROUGE", "libell_d_acheminement": "NADAILLAC DE ROUGE", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46209"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac0f2f1b3331167ea4ab1abd2c8369162bfaed4", "fields": {"nom_de_la_commune": "PAYRIGNAC", "libell_d_acheminement": "PAYRIGNAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46216"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a3e9b5a1d2a531b206d37de0edc6c9a0ded325", "fields": {"nom_de_la_commune": "PERN", "libell_d_acheminement": "PERN", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46217"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82bee866ad4807f0b737c311e36d0a43987f9c69", "fields": {"nom_de_la_commune": "PEYRILLES", "libell_d_acheminement": "PEYRILLES", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46219"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e997f24a491198d72ba13e81bc9e071acefc775", "fields": {"nom_de_la_commune": "PRADINES", "libell_d_acheminement": "PRADINES", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46224"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd8d97dca5539f2a8defc454794b3f8af908531", "fields": {"nom_de_la_commune": "PROMILHANES", "libell_d_acheminement": "PROMILHANES", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46227"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1933b8a4489762981ab6a27a72f28d80c5302fc0", "fields": {"nom_de_la_commune": "PUYBRUN", "libell_d_acheminement": "PUYBRUN", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46229"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12368500cd77c575e2b3093250e40c05ae3d192e", "fields": {"nom_de_la_commune": "REILHAGUET", "libell_d_acheminement": "REILHAGUET", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46236"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750d553958051ffe08b2178bbe5482cb50458d7d", "fields": {"nom_de_la_commune": "LE ROC", "libell_d_acheminement": "LE ROC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46239"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6cdc725ebb8f9e101188d27d61c49b46f148868", "fields": {"nom_de_la_commune": "ROUFFILHAC", "libell_d_acheminement": "ROUFFILHAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46241"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e01516db3a4bcaaf17ac3c24dc26001214b75e9", "fields": {"nom_de_la_commune": "RUEYRES", "libell_d_acheminement": "RUEYRES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46243"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1bcec618ec583507da9c556956166bf61d9e88", "fields": {"nom_de_la_commune": "ST CHELS", "libell_d_acheminement": "ST CHELS", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46254"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "773d3f9de1a9964d1d43560205cbf0ae7a8b6875", "fields": {"nom_de_la_commune": "ST CIRGUES", "libell_d_acheminement": "ST CIRGUES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46255"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876bd3e24aaa4f729883106fc348b4a1038900af", "fields": {"nom_de_la_commune": "ST CIRQ MADELON", "libell_d_acheminement": "ST CIRQ MADELON", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46257"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e7877d76f4a307436abced3de700eda03dff40", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46259"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e5402e2621eb16b29d0e15df7b99eeaa42af915", "fields": {"nom_de_la_commune": "ST GERY", "libell_d_acheminement": "ST GERY", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46268"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984a815aa1569c7e10f65b8ad22ad0b4595d8000", "fields": {"nom_de_la_commune": "ST JEAN LESPINASSE", "libell_d_acheminement": "ST JEAN LESPINASSE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46271"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7be2419cbde288b0e581833c1e15ff6b0bcb90ea", "fields": {"nom_de_la_commune": "ST MARTIN LABOUVAL", "libell_d_acheminement": "ST MARTIN LABOUVAL", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46276"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55488aeccaeb1e4017e03ad89eddb8febc2006d", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46280"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914c41a227c149ad7aa677e01c1e501d4573cd02", "fields": {"nom_de_la_commune": "ST MEDARD NICOURBY", "libell_d_acheminement": "ST MEDARD NICOURBY", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46282"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43d28bd99fe3a0c8f20405dc44870d7b02680ec0", "fields": {"nom_de_la_commune": "ST PANTALEON", "libell_d_acheminement": "ST PANTALEON", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46285"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35316116be34bcb8594c51549c082ea4deb30ab", "fields": {"nom_de_la_commune": "ST PROJET", "libell_d_acheminement": "ST PROJET", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46290"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57fcbfcb17fa35ef333556d110bbea7dfc1c7eac", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46292"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b541ba78f7d8e3aadc8cf490434563d006e611", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46294"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05aedba0048f298fc2e390cf39154835ea90460", "fields": {"nom_de_la_commune": "SALVIAC", "libell_d_acheminement": "SALVIAC", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46297"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36307a881cd595fd1e066f56db51a2d6a0d36a0c", "fields": {"nom_de_la_commune": "SENAILLAC LATRONQUIERE", "libell_d_acheminement": "SENAILLAC LATRONQUIERE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46302"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57a22bf915e8e28b15886df894e41ee47806446", "fields": {"nom_de_la_commune": "SENIERGUES", "libell_d_acheminement": "SENIERGUES", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46304"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6182ef989ce79fff390cfa3dbde2c4c641d81de", "fields": {"nom_de_la_commune": "SERIGNAC", "libell_d_acheminement": "SERIGNAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46305"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b33b19ec6cff366813f912acd0205f8c1f75c10", "fields": {"nom_de_la_commune": "SOUILLAC", "libell_d_acheminement": "SOUILLAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46309"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d2b7dfd2c14f418f465b3751bae028d964cfab", "fields": {"nom_de_la_commune": "SOULOMES", "libell_d_acheminement": "SOULOMES", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46310"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a634d3aa0c38100e3f9014c6b29ef64bd1c28ce", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "CALVIAC", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2498721cbd7fffcabb836706f5c31edd5d27e4fc", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "LAMATIVIE", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbab42fb553f15cea66b001d9dca776d42fdf607", "fields": {"nom_de_la_commune": "STRENQUELS", "libell_d_acheminement": "STRENQUELS", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46312"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364740dba5cabd8ba448f872b63e3611337765c0", "fields": {"nom_de_la_commune": "THEMINETTES", "libell_d_acheminement": "THEMINETTES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46319"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8e401f2bb4f1d73a989e978b09dc9255c7c54d", "fields": {"nom_de_la_commune": "VARAIRE", "libell_d_acheminement": "VARAIRE", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46328"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43911e9f6922043efa4c5814db0c4a0fdbb9c2f", "fields": {"nom_de_la_commune": "VERS", "libell_d_acheminement": "VERS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46331"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b8d68b0cb015fa89df736427cecce531e6bc09", "fields": {"nom_de_la_commune": "VIAZAC", "libell_d_acheminement": "VIAZAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46332"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06adf834708f62d374b6afcfc4a52c06e3a6ad50", "fields": {"nom_de_la_commune": "LE VIGAN", "libell_d_acheminement": "LE VIGAN", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46334"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1826cda571b1eed46d82175a137192980213a7", "fields": {"nom_de_la_commune": "VIRE SUR LOT", "libell_d_acheminement": "VIRE SUR LOT", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46336"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd42cfa546e0ee01f89b9faac4c49a9e98db1c0d", "fields": {"nom_de_la_commune": "MAYRAC", "libell_d_acheminement": "MAYRAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46337"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1d61f688dbd371e1a5348a6df0c32ddd70d79c", "fields": {"nom_de_la_commune": "BESSONIES", "libell_d_acheminement": "BESSONIES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46338"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a096020378e0722c3844eb9846eb7c1515f3a40", "fields": {"nom_de_la_commune": "ST JEAN LAGINESTE", "libell_d_acheminement": "ST JEAN LAGINESTE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46339"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e557d8cb1715db5cfd05fdfa046ecf49903610fd", "fields": {"nom_de_la_commune": "AGME", "libell_d_acheminement": "AGME", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47002"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a7959dc50c6029cc951da09ae488a7f0ff4318e", "fields": {"nom_de_la_commune": "ALLONS", "libell_d_acheminement": "ALLONS", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47007"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da43fd68e774346e41ca158c4297966ee69c71e9", "fields": {"nom_de_la_commune": "ANTAGNAC", "libell_d_acheminement": "ANTAGNAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47010"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c792cdfd03e8fc8fdb8553c1b904cf3c6d8caa3e", "fields": {"nom_de_la_commune": "ASTAFFORT", "libell_d_acheminement": "ASTAFFORT", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47015"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d138703254ea3f75e885f26489af981010d19bd2", "fields": {"nom_de_la_commune": "BALEYSSAGUES", "libell_d_acheminement": "BALEYSSAGUES", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47020"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a480c9b12886336ba7e6336c756d4ce7864b6315", "fields": {"nom_de_la_commune": "BEAUZIAC", "libell_d_acheminement": "BEAUZIAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47026"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049dacb40b3411818be6f109218defd6dfcbb9bb", "fields": {"nom_de_la_commune": "BLAYMONT", "libell_d_acheminement": "BLAYMONT", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47030"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f09b792bf2989b762ad40604740953128714ad8", "fields": {"nom_de_la_commune": "BOUGLON", "libell_d_acheminement": "BOUGLON", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47034"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88916d2e8c746cd82783e9e84f65b7cd2fe37589", "fields": {"nom_de_la_commune": "CALIGNAC", "libell_d_acheminement": "CALIGNAC", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47045"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637764bb1b0e8714e3e8327e15f4a82d9b5a7e43", "fields": {"nom_de_la_commune": "CASTELJALOUX", "libell_d_acheminement": "CASTELJALOUX", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47052"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4289ec1ea8c303953c5fbd7ce6c37f8c33309e", "fields": {"nom_de_la_commune": "CASTELNAUD DE GRATECAMBE", "libell_d_acheminement": "CASTELNAUD DE GRATECAMBE", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47055"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07828033c66f936ed1af83e935374ea090404d68", "fields": {"nom_de_la_commune": "CAUMONT SUR GARONNE", "libell_d_acheminement": "CAUMONT SUR GARONNE", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47061"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415625fef828aa7a5e1ff2d739e5ce71b156d187", "fields": {"nom_de_la_commune": "CAUZAC", "libell_d_acheminement": "CAUZAC", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47062"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d20e5f7cedcdf289c1959a9bd9d13f9bffae9d93", "fields": {"nom_de_la_commune": "CAZIDEROQUE", "libell_d_acheminement": "CAZIDEROQUE", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47064"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fcb6642149ebea637c62f34fc97dd2ef98570c", "fields": {"nom_de_la_commune": "CONDEZAYGUES", "libell_d_acheminement": "CONDEZAYGUES", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47070"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98664d23cbbf775407d9a851f7e519e5f1361c2e", "fields": {"nom_de_la_commune": "COULX", "libell_d_acheminement": "COULX", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47071"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a4508498a50808a604a0b463b557561d2dfb8d0", "fields": {"nom_de_la_commune": "DAMAZAN", "libell_d_acheminement": "DAMAZAN", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47078"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6f3b57f9d5e2adbc36441d44c0b4d6be9c096a", "fields": {"nom_de_la_commune": "DOLMAYRAC", "libell_d_acheminement": "DOLMAYRAC", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47081"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41763c993786422bd60351140e9d09bee3b29a4a", "fields": {"nom_de_la_commune": "DURANCE", "libell_d_acheminement": "DURANCE", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47085"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ed434cf37e6737a9b4e139aedc62a34144c589", "fields": {"nom_de_la_commune": "ENGAYRAC", "libell_d_acheminement": "ENGAYRAC", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47087"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f09a60da387239130468b65bb7197405cd142e09", "fields": {"nom_de_la_commune": "ESCASSEFORT", "libell_d_acheminement": "ESCASSEFORT", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47088"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25618e2e685468f273b7d7423d3f9b9f9db9e931", "fields": {"nom_de_la_commune": "ESCLOTTES", "libell_d_acheminement": "ESCLOTTES", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47089"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e40aef2070d639a79d8e26a6c5610926daf1b5", "fields": {"nom_de_la_commune": "ESPIENS", "libell_d_acheminement": "ESPIENS", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47090"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e13ed2d95c6c00937f5c1375281a67575311258", "fields": {"nom_de_la_commune": "FERRENSAC", "libell_d_acheminement": "FERRENSAC", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47096"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37dafecc1830c30a42df8b15c99c451d4e33cd93", "fields": {"nom_de_la_commune": "FOULAYRONNES", "libell_d_acheminement": "FOULAYRONNES", "code_postal": "47510", "coordonnees_gps": [44.2540583421, 0.637133747867], "code_commune_insee": "47100"}, "geometry": {"type": "Point", "coordinates": [0.637133747867, 44.2540583421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b302a96f0ac94b6e77202af2c0e3c0fa0ffb18d0", "fields": {"nom_de_la_commune": "FOURQUES SUR GARONNE", "libell_d_acheminement": "FOURQUES SUR GARONNE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47101"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e6e8950383d60fce92fe011aeec21502cf98aa", "fields": {"nom_de_la_commune": "FRANCESCAS", "libell_d_acheminement": "FRANCESCAS", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47102"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4160279292fd4aea242e7911a7d7166c0edba5", "fields": {"nom_de_la_commune": "FREGIMONT", "libell_d_acheminement": "FREGIMONT", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47104"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d52d8fed47ea6d2575e7e08c684c63901ef24f", "fields": {"nom_de_la_commune": "GAUJAC", "libell_d_acheminement": "GAUJAC", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47108"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "090a357cb4660756a1d441d10b10cc754ecf44b8", "fields": {"nom_de_la_commune": "GREZET CAVAGNAN", "libell_d_acheminement": "GREZET CAVAGNAN", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47114"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621420912d79d80659f0afc1002f8197a683bc7d", "fields": {"nom_de_la_commune": "LACAPELLE BIRON", "libell_d_acheminement": "LACAPELLE BIRON", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47123"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad76c57c9e9eee2c579d29e9d9e481889847810", "fields": {"nom_de_la_commune": "LACAUSSADE", "libell_d_acheminement": "LACAUSSADE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47124"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07a0be6f48db506e00cf6ae2d0989df294a4203", "fields": {"nom_de_la_commune": "LACEPEDE", "libell_d_acheminement": "LACEPEDE", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47125"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008308051d393f206d19aeefc890c63db5a67025", "fields": {"nom_de_la_commune": "LAFITTE SUR LOT", "libell_d_acheminement": "LAFITTE SUR LOT", "code_postal": "47320", "coordonnees_gps": [44.3563868406, 0.403122345242], "code_commune_insee": "47127"}, "geometry": {"type": "Point", "coordinates": [0.403122345242, 44.3563868406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c057c781d65e207565ff185380ff8a6958a5065c", "fields": {"nom_de_la_commune": "LAGARRIGUE", "libell_d_acheminement": "LAGARRIGUE", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47129"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a482d4418ea9b21a87795ea599f2141ffabc01", "fields": {"nom_de_la_commune": "LAGUPIE", "libell_d_acheminement": "LAGUPIE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47131"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4657a90df3ce57bc2e0897ab9746449f57e092e", "fields": {"nom_de_la_commune": "LALANDUSSE", "libell_d_acheminement": "LALANDUSSE", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47132"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5689106f575bd94d3e18464a7a24a0f22ded33", "fields": {"nom_de_la_commune": "LANNES", "libell_d_acheminement": "LANNES", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47134"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95292d4ade285caf2ba4f108d8ead8941e35673", "fields": {"nom_de_la_commune": "LAPERCHE", "libell_d_acheminement": "LAPERCHE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47136"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eac6402660a97876268bf1f0f4a6fa8f7bd1691", "fields": {"nom_de_la_commune": "LAROQUE TIMBAUT", "libell_d_acheminement": "LAROQUE TIMBAUT", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47138"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b5b1118bcb79373d36e0a15b79a4187f9608df", "fields": {"nom_de_la_commune": "MARMANDE", "libell_d_acheminement": "MARMANDE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47157"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1ffae67d24fbd1ce0eafcd808268f8ec240abc", "fields": {"nom_de_la_commune": "MARMONT PACHAS", "libell_d_acheminement": "MARMONT PACHAS", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47158"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "277f51e483075ae55b840224262a6ca76012cc4f", "fields": {"nom_de_la_commune": "MONCAUT", "libell_d_acheminement": "MONCAUT", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47172"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62155e6da6bff9d44907a57fc7fde79c690fd61d", "fields": {"nom_de_la_commune": "MONCRABEAU", "libell_d_acheminement": "MONCRABEAU", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47174"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c6d37a67d98cce7bde298a5ac7347baaf4f20e", "fields": {"nom_de_la_commune": "MONGAILLARD", "libell_d_acheminement": "MONGAILLARD", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47176"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2990a96a9cccb9023bdfad0c3581659aaf18dd7f", "fields": {"nom_de_la_commune": "MONHEURT", "libell_d_acheminement": "MONHEURT", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47177"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e1d0dc3236271da5f88315dcec884eafa4e436", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47184"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff2c0097b26083e34615b0f8d3953a967ebfdc2", "fields": {"nom_de_la_commune": "PAILLOLES", "libell_d_acheminement": "PAILLOLES", "code_postal": "47440", "coordonnees_gps": [44.4570555688, 0.630745271337], "code_commune_insee": "47198"}, "geometry": {"type": "Point", "coordinates": [0.630745271337, 44.4570555688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26aa3ea3c76224dbc31c9a3f16b7dc54eaf8a6d", "fields": {"nom_de_la_commune": "HANTAY", "libell_d_acheminement": "HANTAY", "code_postal": "59496", "coordonnees_gps": [50.5368972316, 2.84563657471], "code_commune_insee": "59281"}, "geometry": {"type": "Point", "coordinates": [2.84563657471, 50.5368972316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b4f9fabcb03f2f7dcf04f222b4beac79910bac1", "fields": {"nom_de_la_commune": "HARDIFORT", "libell_d_acheminement": "HARDIFORT", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59282"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191a97e3a2d8e8379d99d83ae77d55691d6a01ff", "fields": {"nom_de_la_commune": "HARGNIES", "libell_d_acheminement": "HARGNIES", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59283"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8254bd5e40f4ec210934a1ebe32a96c4e87e1ca4", "fields": {"nom_de_la_commune": "HAVELUY", "libell_d_acheminement": "HAVELUY", "code_postal": "59255", "coordonnees_gps": [50.3532590231, 3.40316064365], "code_commune_insee": "59292"}, "geometry": {"type": "Point", "coordinates": [3.40316064365, 50.3532590231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d86997bf93bb1bef52192942983246f0de5c2bd", "fields": {"nom_de_la_commune": "HAVERSKERQUE", "libell_d_acheminement": "HAVERSKERQUE", "code_postal": "59660", "coordonnees_gps": [50.6440201212, 2.61424433004], "code_commune_insee": "59293"}, "geometry": {"type": "Point", "coordinates": [2.61424433004, 50.6440201212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3ae156dcc5b9d6051b0c53c2797588055d060e", "fields": {"nom_de_la_commune": "HEM", "libell_d_acheminement": "HEM", "code_postal": "59510", "coordonnees_gps": [50.6531377734, 3.19228219738], "code_commune_insee": "59299"}, "geometry": {"type": "Point", "coordinates": [3.19228219738, 50.6531377734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208a7555227e91ae88c766a9284ac4e3166c85f2", "fields": {"nom_de_la_commune": "HERGNIES", "libell_d_acheminement": "HERGNIES", "code_postal": "59199", "coordonnees_gps": [50.4740272864, 3.52059057701], "code_commune_insee": "59301"}, "geometry": {"type": "Point", "coordinates": [3.52059057701, 50.4740272864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b99faddd455db8632683359fbace386c638c9a8", "fields": {"nom_de_la_commune": "HON HERGIES", "libell_d_acheminement": "HON HERGIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59310"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa4811d2ac227bed761f3026231b6aaa59b9e63", "fields": {"nom_de_la_commune": "HORDAIN", "libell_d_acheminement": "HORDAIN", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59313"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5f5545f7cbd4caf7d814ed5aee603d712376f0", "fields": {"nom_de_la_commune": "HOUPLIN ANCOISNE", "libell_d_acheminement": "HOUPLIN ANCOISNE", "code_postal": "59263", "coordonnees_gps": [50.5700456203, 2.99396418059], "code_commune_insee": "59316"}, "geometry": {"type": "Point", "coordinates": [2.99396418059, 50.5700456203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8fb7dcc5cd27f4a891ed36ff3b2f052934da56e", "fields": {"nom_de_la_commune": "HOUPLINES", "libell_d_acheminement": "HOUPLINES", "code_postal": "59116", "coordonnees_gps": [50.683583177, 2.92666181317], "code_commune_insee": "59317"}, "geometry": {"type": "Point", "coordinates": [2.92666181317, 50.683583177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28415b312bbe7342258bf42d16461fa493d3f9d8", "fields": {"nom_de_la_commune": "INCHY", "libell_d_acheminement": "INCHY", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59321"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffb3598228b4b05fab729997f9945857df019b55", "fields": {"nom_de_la_commune": "JEUMONT", "libell_d_acheminement": "JEUMONT", "code_postal": "59460", "coordonnees_gps": [50.2913684518, 4.10406647856], "code_commune_insee": "59324"}, "geometry": {"type": "Point", "coordinates": [4.10406647856, 50.2913684518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3451a0b552ebaf38b72418e19db0836735bec6d", "fields": {"nom_de_la_commune": "LAMBERSART", "libell_d_acheminement": "LAMBERSART", "code_postal": "59130", "coordonnees_gps": [50.6519499889, 3.02477528313], "code_commune_insee": "59328"}, "geometry": {"type": "Point", "coordinates": [3.02477528313, 50.6519499889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bd5b84d85b8518ca8f14ba2fb2f0bea86f7f16", "fields": {"nom_de_la_commune": "LECLUSE", "libell_d_acheminement": "LECLUSE", "code_postal": "59259", "coordonnees_gps": [50.2769991269, 3.03143607671], "code_commune_insee": "59336"}, "geometry": {"type": "Point", "coordinates": [3.03143607671, 50.2769991269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d9ce15427a6c87f48ef6105cbd0d86fecc1964", "fields": {"nom_de_la_commune": "LEDERZEELE", "libell_d_acheminement": "LEDERZEELE", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59337"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab6f2731540ebacbcfc64fe7091ce8189271c2d", "fields": {"nom_de_la_commune": "LEERS", "libell_d_acheminement": "LEERS", "code_postal": "59115", "coordonnees_gps": [50.68149228, 3.23920791897], "code_commune_insee": "59339"}, "geometry": {"type": "Point", "coordinates": [3.23920791897, 50.68149228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02a347f6c88c0ec83ef14941df35ef18d3e2096", "fields": {"nom_de_la_commune": "LINSELLES", "libell_d_acheminement": "LINSELLES", "code_postal": "59126", "coordonnees_gps": [50.7357056476, 3.07372039494], "code_commune_insee": "59352"}, "geometry": {"type": "Point", "coordinates": [3.07372039494, 50.7357056476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d984dac1933d814e29157202b4533ffd45c03112", "fields": {"nom_de_la_commune": "LOOS", "libell_d_acheminement": "LOOS", "code_postal": "59120", "coordonnees_gps": [50.6086965938, 3.02028654276], "code_commune_insee": "59360"}, "geometry": {"type": "Point", "coordinates": [3.02028654276, 50.6086965938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab1c1709dda3303723879e106e0eb04af8a5472", "fields": {"nom_de_la_commune": "LA MADELEINE", "libell_d_acheminement": "LA MADELEINE", "code_postal": "59110", "coordonnees_gps": [50.6547630947, 3.06953793949], "code_commune_insee": "59368"}, "geometry": {"type": "Point", "coordinates": [3.06953793949, 50.6547630947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa3a8213e8145b251817ad751ca564403512403", "fields": {"nom_de_la_commune": "MAING", "libell_d_acheminement": "MAING", "code_postal": "59233", "coordonnees_gps": [50.3038379836, 3.48904199641], "code_commune_insee": "59369"}, "geometry": {"type": "Point", "coordinates": [3.48904199641, 50.3038379836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13c1e352f28f8eaaa4dfad628a2f364e0d4288e", "fields": {"nom_de_la_commune": "MAIRIEUX", "libell_d_acheminement": "MAIRIEUX", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59370"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee3cefc762873e9edef1d0bf79346d09c362fc4", "fields": {"nom_de_la_commune": "MARETZ", "libell_d_acheminement": "MARETZ", "code_postal": "59238", "coordonnees_gps": [50.0450304412, 3.42048694378], "code_commune_insee": "59382"}, "geometry": {"type": "Point", "coordinates": [3.42048694378, 50.0450304412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9388b00a30f55df47f5caaa8370a2dcbb0411e2a", "fields": {"nom_de_la_commune": "MILLONFOSSE", "libell_d_acheminement": "MILLONFOSSE", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59403"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e47241d1b00ea864ec725a3cf04b8976610209", "fields": {"nom_de_la_commune": "MONCHAUX SUR ECAILLON", "libell_d_acheminement": "MONCHAUX SUR ECAILLON", "code_postal": "59224", "coordonnees_gps": [50.2929263496, 3.44612493476], "code_commune_insee": "59407"}, "geometry": {"type": "Point", "coordinates": [3.44612493476, 50.2929263496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c93e0a7e8443179a211208258bcae607caf2344", "fields": {"nom_de_la_commune": "MONCHECOURT", "libell_d_acheminement": "MONCHECOURT", "code_postal": "59234", "coordonnees_gps": [50.2968410353, 3.19491530905], "code_commune_insee": "59409"}, "geometry": {"type": "Point", "coordinates": [3.19491530905, 50.2968410353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1d0b1cad18ced2af5043ae256f7dfb06d93287", "fields": {"nom_de_la_commune": "MONTRECOURT", "libell_d_acheminement": "MONTRECOURT", "code_postal": "59227", "coordonnees_gps": [50.2500185431, 3.45009234347], "code_commune_insee": "59415"}, "geometry": {"type": "Point", "coordinates": [3.45009234347, 50.2500185431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ab93f98b095104a37befc28316b5ad59ff45cb", "fields": {"nom_de_la_commune": "MOUCHIN", "libell_d_acheminement": "MOUCHIN", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59419"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df6028a480fd075bdcdeb45b1eef720388cf0f7", "fields": {"nom_de_la_commune": "MOUVAUX", "libell_d_acheminement": "MOUVAUX", "code_postal": "59420", "coordonnees_gps": [50.7041627546, 3.13760207242], "code_commune_insee": "59421"}, "geometry": {"type": "Point", "coordinates": [3.13760207242, 50.7041627546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac8123f41a74a4b158770514ccff75ff4e1346f8", "fields": {"nom_de_la_commune": "NEUVILLE EN AVESNOIS", "libell_d_acheminement": "NEUVILLE EN AVESNOIS", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59425"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4cc455ca17df19772b7d252159365955526cf9", "fields": {"nom_de_la_commune": "NEUVILLY", "libell_d_acheminement": "NEUVILLY", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59430"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b80f82b96a78d9b9361b3b2d60c77893efd0acc", "fields": {"nom_de_la_commune": "NOYELLES LES SECLIN", "libell_d_acheminement": "NOYELLES LES SECLIN", "code_postal": "59139", "coordonnees_gps": [50.5828466691, 3.03623136309], "code_commune_insee": "59437"}, "geometry": {"type": "Point", "coordinates": [3.03623136309, 50.5828466691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96c8d05b7d3c007173981dd314126792c74ce77", "fields": {"nom_de_la_commune": "OXELAERE", "libell_d_acheminement": "OXELAERE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59454"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eff221eac4bb23c0bcf83cbaa83118556f79e86", "fields": {"nom_de_la_commune": "PERONNE EN MELANTOIS", "libell_d_acheminement": "PERONNE EN MELANTOIS", "code_postal": "59273", "coordonnees_gps": [50.5659829271, 3.1352270312], "code_commune_insee": "59458"}, "geometry": {"type": "Point", "coordinates": [3.1352270312, 50.5659829271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52bca93225505bcfd2da623f93160ac96579ee05", "fields": {"nom_de_la_commune": "RENESCURE", "libell_d_acheminement": "RENESCURE", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59497"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810e16cae49af36c5ab071c25cdfb0df870a3e03", "fields": {"nom_de_la_commune": "REUMONT", "libell_d_acheminement": "REUMONT", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59498"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a314612c6a50d360cf457bb359ee7be9ce997d75", "fields": {"nom_de_la_commune": "RONCHIN", "libell_d_acheminement": "RONCHIN", "code_postal": "59790", "coordonnees_gps": [50.6048705857, 3.09209894113], "code_commune_insee": "59507"}, "geometry": {"type": "Point", "coordinates": [3.09209894113, 50.6048705857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253037cbad7dcf19965948ef91c6f4e0a43ef5d9", "fields": {"nom_de_la_commune": "ROUBAIX", "libell_d_acheminement": "ROUBAIX", "code_postal": "59100", "coordonnees_gps": [50.6882121889, 3.18169732773], "code_commune_insee": "59512"}, "geometry": {"type": "Point", "coordinates": [3.18169732773, 50.6882121889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef54d2d08b13ac2686472d73e53705e08bc658c4", "fields": {"nom_de_la_commune": "SAILLY LEZ CAMBRAI", "libell_d_acheminement": "SAILLY LEZ CAMBRAI", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59521"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6877e349d600095e0a351354a0420bbe14b89693", "fields": {"nom_de_la_commune": "SAINGHIN EN MELANTOIS", "libell_d_acheminement": "SAINGHIN EN MELANTOIS", "code_postal": "59262", "coordonnees_gps": [50.5877483285, 3.16330494676], "code_commune_insee": "59523"}, "geometry": {"type": "Point", "coordinates": [3.16330494676, 50.5877483285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d8a35f21fb17ee2212cbba40659ec2c5eebc1e", "fields": {"nom_de_la_commune": "ST ANDRE LEZ LILLE", "libell_d_acheminement": "ST ANDRE LEZ LILLE", "code_postal": "59350", "coordonnees_gps": [50.6605716565, 3.0470462263], "code_commune_insee": "59527"}, "geometry": {"type": "Point", "coordinates": [3.0470462263, 50.6605716565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbe753c9d11e8b5e5216638ab862e3f9dd356c8", "fields": {"nom_de_la_commune": "ST AUBERT", "libell_d_acheminement": "ST AUBERT", "code_postal": "59188", "coordonnees_gps": [50.2124042637, 3.41180746227], "code_commune_insee": "59528"}, "geometry": {"type": "Point", "coordinates": [3.41180746227, 50.2124042637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56a0b459924bff282e308ebbd1f3b827210f1bc", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59529"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "affdbf85d6dbc7c24c181ce4f2a4644bd700c60a", "fields": {"nom_de_la_commune": "ST AYBERT", "libell_d_acheminement": "ST AYBERT", "code_postal": "59163", "coordonnees_gps": [50.4613685751, 3.61604638041], "code_commune_insee": "59530"}, "geometry": {"type": "Point", "coordinates": [3.61604638041, 50.4613685751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136ac527831c3eb37422e747409dfdcacd33ddba", "fields": {"nom_de_la_commune": "ST WAAST", "libell_d_acheminement": "ST WAAST", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59548"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aec6d2f2526c73352a9afc88348858d93ed6059", "fields": {"nom_de_la_commune": "SARS POTERIES", "libell_d_acheminement": "SARS POTERIES", "code_postal": "59216", "coordonnees_gps": [50.1687463201, 4.01936516486], "code_commune_insee": "59555"}, "geometry": {"type": "Point", "coordinates": [4.01936516486, 50.1687463201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "176192110fec480d51e3e222a0c4842ea418f444", "fields": {"nom_de_la_commune": "SEMOUSIES", "libell_d_acheminement": "SEMOUSIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59563"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1d411245163bb6a1b51792006131ea8a47cdde", "fields": {"nom_de_la_commune": "SEPMERIES", "libell_d_acheminement": "SEPMERIES", "code_postal": "59269", "coordonnees_gps": [50.2865936592, 3.53807571429], "code_commune_insee": "59565"}, "geometry": {"type": "Point", "coordinates": [3.53807571429, 50.2865936592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "164907a69a86f4d2f5ccb8cd39397b18588e05e0", "fields": {"nom_de_la_commune": "SOLESMES", "libell_d_acheminement": "SOLESMES", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59571"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220062c443a7e9c7b61d0ca05af90a167f0c8c12", "fields": {"nom_de_la_commune": "STAPLE", "libell_d_acheminement": "STAPLE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59577"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a56f3fef1be7868d9c8676f71a0dd12cb7fb493", "fields": {"nom_de_la_commune": "TEMPLEMARS", "libell_d_acheminement": "TEMPLEMARS", "code_postal": "59175", "coordonnees_gps": [50.5711630173, 3.06780468809], "code_commune_insee": "59585"}, "geometry": {"type": "Point", "coordinates": [3.06780468809, 50.5711630173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1304fd4ea4afb86585c1b7234fc63bd38ef9c5", "fields": {"nom_de_la_commune": "THUN ST MARTIN", "libell_d_acheminement": "THUN ST MARTIN", "code_postal": "59141", "coordonnees_gps": [50.2278844933, 3.31468451895], "code_commune_insee": "59595"}, "geometry": {"type": "Point", "coordinates": [3.31468451895, 50.2278844933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061a4455f53d3796a569c7c828de8ed0ffe36db4", "fields": {"nom_de_la_commune": "TRESSIN", "libell_d_acheminement": "TRESSIN", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59602"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbbafa71813797723e99e35b1a47e2c20c9ed69", "fields": {"nom_de_la_commune": "TRITH ST LEGER", "libell_d_acheminement": "TRITH ST LEGER", "code_postal": "59125", "coordonnees_gps": [50.3306016516, 3.48702757261], "code_commune_insee": "59603"}, "geometry": {"type": "Point", "coordinates": [3.48702757261, 50.3306016516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d21cf5d38d12884d44a80c6b31864a6fcfcb6012", "fields": {"nom_de_la_commune": "TROISVILLES", "libell_d_acheminement": "TROISVILLES", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59604"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f52a272ab03090968256d16e2997c1d157a70cd", "fields": {"nom_de_la_commune": "VENDEGIES SUR ECAILLON", "libell_d_acheminement": "VENDEGIES SUR ECAILLON", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59608"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e0c60dd58eaa4e6f1a873a7d218f9a52573b58", "fields": {"nom_de_la_commune": "VERCHAIN MAUGRE", "libell_d_acheminement": "VERCHAIN MAUGRE", "code_postal": "59227", "coordonnees_gps": [50.2500185431, 3.45009234347], "code_commune_insee": "59610"}, "geometry": {"type": "Point", "coordinates": [3.45009234347, 50.2500185431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9bf511f4d01d192d83c577765611eeec7521c6", "fields": {"nom_de_la_commune": "VIEUX BERQUIN", "libell_d_acheminement": "VIEUX BERQUIN", "code_postal": "59232", "coordonnees_gps": [50.6936253004, 2.62004483657], "code_commune_insee": "59615"}, "geometry": {"type": "Point", "coordinates": [2.62004483657, 50.6936253004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de63da4ae9d7be890ad0544abc9dcb6de81c8d11", "fields": {"nom_de_la_commune": "VIEUX CONDE", "libell_d_acheminement": "VIEUX CONDE", "code_postal": "59690", "coordonnees_gps": [50.4733555541, 3.56593655083], "code_commune_insee": "59616"}, "geometry": {"type": "Point", "coordinates": [3.56593655083, 50.4733555541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777f9d073f3b8e76b5356579bbf645409c20bc24", "fields": {"nom_de_la_commune": "VILLERS AU TERTRE", "libell_d_acheminement": "VILLERS AU TERTRE", "code_postal": "59234", "coordonnees_gps": [50.2968410353, 3.19491530905], "code_commune_insee": "59620"}, "geometry": {"type": "Point", "coordinates": [3.19491530905, 50.2968410353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cedb26a96f0f5f1868db7ed59f7c02adcfff0a0", "fields": {"nom_de_la_commune": "VILLERS PLOUICH", "libell_d_acheminement": "VILLERS PLOUICH", "code_postal": "59231", "coordonnees_gps": [50.065671657, 3.13135649355], "code_commune_insee": "59625"}, "geometry": {"type": "Point", "coordinates": [3.13135649355, 50.065671657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a0081103e7fb0757cff4089ad7064deab46fa5", "fields": {"nom_de_la_commune": "VILLERS SIRE NICOLE", "libell_d_acheminement": "VILLERS SIRE NICOLE", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59627"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1351bb83436e0c280fa92196ad374b58bc3c9ce", "fields": {"nom_de_la_commune": "WALLERS EN FAGNE", "libell_d_acheminement": "WALLERS EN FAGNE", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59633"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212f6edff652509abb1bde013e1e0a97eb9aaefa", "fields": {"nom_de_la_commune": "WEMAERS CAPPEL", "libell_d_acheminement": "WEMAERS CAPPEL", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59655"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b2cf9374183ab2679548e000d4a8c66ce17b772", "fields": {"nom_de_la_commune": "WEST CAPPEL", "libell_d_acheminement": "WEST CAPPEL", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59657"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf49e8c2dfce7a2bcaa7d0080c0620ee51c8b95", "fields": {"nom_de_la_commune": "WINNEZEELE", "libell_d_acheminement": "WINNEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59662"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a5ee1ed5932c3f4ce9e6e422da1dea76494c53", "fields": {"nom_de_la_commune": "WYLDER", "libell_d_acheminement": "WYLDER", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59665"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13eb5584823626439ae1400514a3a7b7a337a51", "fields": {"nom_de_la_commune": "ZEGERSCAPPEL", "libell_d_acheminement": "ZEGERSCAPPEL", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59666"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c63389c57d49230242dda7595108de8355cc2077", "fields": {"nom_de_la_commune": "ZERMEZEELE", "libell_d_acheminement": "ZERMEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59667"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7f8ee63d4dad0fd620f550f1df34138ab04463", "fields": {"nom_de_la_commune": "ABBECOURT", "libell_d_acheminement": "ABBECOURT", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60002"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0590d4c8fc87c801e0292ba9880778fe6abee74e", "fields": {"nom_de_la_commune": "ACY EN MULTIEN", "libell_d_acheminement": "ACY EN MULTIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60005"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf6e614af141f1950c62907e051b550ec3982cd", "fields": {"nom_de_la_commune": "AMY", "libell_d_acheminement": "AMY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60011"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2601c269a34c114e09fbda328a33106f7468aa", "fields": {"nom_de_la_commune": "ANGY", "libell_d_acheminement": "ANGY", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60015"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8990c72e6ff6711dc57c3c80bb148e73a74c4021", "fields": {"nom_de_la_commune": "ANTHEUIL PORTES", "libell_d_acheminement": "ANTHEUIL PORTES", "code_postal": "60162", "coordonnees_gps": [49.4989023316, 2.74608596543], "code_commune_insee": "60019"}, "geometry": {"type": "Point", "coordinates": [2.74608596543, 49.4989023316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b06f1dd0bb1b696c1e4a7f521ebccdd3ab68d3", "fields": {"nom_de_la_commune": "AVRIGNY", "libell_d_acheminement": "AVRIGNY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60036"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fb2f923ec8f1d4edaa111d640b1f46c8035305", "fields": {"nom_de_la_commune": "BABOEUF", "libell_d_acheminement": "BABOEUF", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60037"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee5d01ac14f3bbeef02b2768b97bfa0b06ec1c6", "fields": {"nom_de_la_commune": "BAILLY", "libell_d_acheminement": "BAILLY", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60043"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1910e87de38927c0caca3ca2a4fdabc2586bfe", "fields": {"nom_de_la_commune": "BAZICOURT", "libell_d_acheminement": "BAZICOURT", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60050"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e7d2e6847766949d8833e9850027657dcf763b", "fields": {"nom_de_la_commune": "BEAUGIES SOUS BOIS", "libell_d_acheminement": "BEAUGIES SOUS BOIS", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60052"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e7da6fc0dc70a3e1eecb780183a4f6227268f6", "fields": {"nom_de_la_commune": "BEAUMONT LES NONAINS", "libell_d_acheminement": "BEAUMONT LES NONAINS", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60054"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d41bbb0b98cbbb569dd31427f1d697e4aed1512", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60058"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac42bd4b892d4a6d5fd2704dd165164d57f387d1", "fields": {"nom_de_la_commune": "BERTHECOURT", "libell_d_acheminement": "BERTHECOURT", "code_postal": "60370", "coordonnees_gps": [49.3538659848, 2.25221191124], "code_commune_insee": "60065"}, "geometry": {"type": "Point", "coordinates": [2.25221191124, 49.3538659848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ef42201f3f9ac85d46928ea66e61a6f3aca76f", "fields": {"nom_de_la_commune": "BETHANCOURT EN VALOIS", "libell_d_acheminement": "BETHANCOURT EN VALOIS", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60066"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09783de88be2d8557a97f2a749fc16c4c49079d8", "fields": {"nom_de_la_commune": "BIENVILLE", "libell_d_acheminement": "BIENVILLE", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60070"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b5619abeb33492b52de08db921f23261e54972", "fields": {"nom_de_la_commune": "BLAINCOURT LES PRECY", "libell_d_acheminement": "BLAINCOURT LES PRECY", "code_postal": "60460", "coordonnees_gps": [49.2147031001, 2.35428386438], "code_commune_insee": "60074"}, "geometry": {"type": "Point", "coordinates": [2.35428386438, 49.2147031001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "280eb84f08fde25a1c04318b72e2a6d15eb15926", "fields": {"nom_de_la_commune": "BLARGIES", "libell_d_acheminement": "BLARGIES", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60076"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706abca25a2ac164c0d82cd7c574ca57c6c25154", "fields": {"nom_de_la_commune": "BLICOURT", "libell_d_acheminement": "BLICOURT", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60077"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0446bc12bb6a70a1b58cbf2ff5dcd1bd526f65c5", "fields": {"nom_de_la_commune": "BLINCOURT", "libell_d_acheminement": "BLINCOURT", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60078"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fba4e61f9c03bfe3ff4122f52b4d1cc2d476d14", "fields": {"nom_de_la_commune": "BOISSY FRESNOY", "libell_d_acheminement": "BOISSY FRESNOY", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60079"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bfe18fd3217fd60fce35d62ee956a48c16c8225", "fields": {"nom_de_la_commune": "BOUCONVILLERS", "libell_d_acheminement": "BOUCONVILLERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60090"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85c102ae7411d069b6671226b6f05c5e9061272", "fields": {"nom_de_la_commune": "BOULLARRE", "libell_d_acheminement": "BOULLARRE", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60092"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1aa8b5383bdeffcc20b0caf7f607f64859bdd2", "fields": {"nom_de_la_commune": "BOURY EN VEXIN", "libell_d_acheminement": "BOURY EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60095"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af3a8f159c71419e6834b46226d080fbb43c540", "fields": {"nom_de_la_commune": "BRASSEUSE", "libell_d_acheminement": "BRASSEUSE", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60100"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfd6daf0d125580cda50060869bf609c8720317", "fields": {"nom_de_la_commune": "BRETEUIL", "libell_d_acheminement": "BRETEUIL", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60104"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9fcc5d490622cfe45ecdef0cefca00de209ba57", "fields": {"nom_de_la_commune": "BULLES", "libell_d_acheminement": "BULLES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60115"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa548d2459d82c7f32f46c8d00eb831eac52abf", "fields": {"nom_de_la_commune": "CAMBRONNE LES RIBECOURT", "libell_d_acheminement": "CAMBRONNE LES RIBECOURT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60119"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f20a63457ddfffac974ed666ec52327a52e27832", "fields": {"nom_de_la_commune": "CANLY", "libell_d_acheminement": "CANLY", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60125"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faca823c5df06292b5036763f1b8e2023438a417", "fields": {"nom_de_la_commune": "CANNECTANCOURT", "libell_d_acheminement": "CANNECTANCOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60126"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "511de2ff3ec5628c65e8d661a2498e1cc0c3ba42", "fields": {"nom_de_la_commune": "CARLEPONT", "libell_d_acheminement": "CARLEPONT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60129"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a0a27e976cad0ae72adad5a048692d65e74f23", "fields": {"nom_de_la_commune": "CERNOY", "libell_d_acheminement": "CERNOY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60137"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9df75e21bab5e7b05a88defac161b47c36f7ecd", "fields": {"nom_de_la_commune": "JUSTINE HERBIGNY", "libell_d_acheminement": "JUSTINE HERBIGNY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08240"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7def5f11b4adfd6181cbc0eab159a07a7ec63cd6", "fields": {"nom_de_la_commune": "LANDRICHAMPS", "libell_d_acheminement": "LANDRICHAMPS", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08247"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b8cde59077b322e3cb48a30526dfe7ed07559e", "fields": {"nom_de_la_commune": "INAUMONT", "libell_d_acheminement": "INAUMONT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08234"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8501c188a7b8b05271b502a1f2ac92a274427b4", "fields": {"nom_de_la_commune": "HAUDRECY", "libell_d_acheminement": "HAUDRECY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08216"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2339c12a326dead0f1568d573d910060c4885d", "fields": {"nom_de_la_commune": "IMECOURT", "libell_d_acheminement": "IMECOURT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08233"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3684d2adafdaae14846816c25f8a5010b316b7ce", "fields": {"nom_de_la_commune": "LAIFOUR", "libell_d_acheminement": "LAIFOUR", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08242"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae7cd6c9f177a5aea7cd48277718b7efd37f4b8", "fields": {"nom_de_la_commune": "LONGWE", "libell_d_acheminement": "LONGWE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08259"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ba000ab7dd1eafac3d7616257796f8cb4f88af", "fields": {"nom_de_la_commune": "LONNY", "libell_d_acheminement": "LONNY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08260"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70d18fec95decc2403ec37374f166775d2bab61", "fields": {"nom_de_la_commune": "LIRY", "libell_d_acheminement": "LIRY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08256"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e341ae2fcdd06232798c6e1e55a1d7f85c248fb2", "fields": {"code_postal": "08380", "code_commune_insee": "08420", "libell_d_acheminement": "SIGNY LE PETIT", "ligne_5": "LA GRUERIE", "nom_de_la_commune": "SIGNY LE PETIT", "coordonnees_gps": [49.91319612, 4.30466764624]}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60f3679c99afad8b2244a2894d9968a037beaf1", "fields": {"code_postal": "08240", "code_commune_insee": "08437", "libell_d_acheminement": "TAILLY", "ligne_5": "BARRICOURT", "nom_de_la_commune": "TAILLY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e804dc768868270c9e2fb8ca76f4e35af20223", "fields": {"nom_de_la_commune": "SIGNY MONTLIBERT", "libell_d_acheminement": "SIGNY MONTLIBERT", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08421"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e38f3e8fd37823667f790c7d89d4289d6d5f7f1", "fields": {"nom_de_la_commune": "TOULIGNY", "libell_d_acheminement": "TOULIGNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08454"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356c53b19b3b866b9db46986ae21905759c21356", "fields": {"nom_de_la_commune": "TETAIGNE", "libell_d_acheminement": "TETAIGNE", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08444"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9387ee5158e35e4d216a1ab467858612b16b722a", "fields": {"nom_de_la_commune": "SUZANNE", "libell_d_acheminement": "SUZANNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08433"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b01563fd30b4179b2aa32ad1f06de518cc406a7", "fields": {"nom_de_la_commune": "SUGNY", "libell_d_acheminement": "SUGNY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08431"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671db69ee557542271712b41ac0edd30bce398c3", "fields": {"nom_de_la_commune": "TARZY", "libell_d_acheminement": "TARZY", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08440"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b62fc849ba56974333c83a29a7d4a278d367d09c", "fields": {"nom_de_la_commune": "SURY", "libell_d_acheminement": "SURY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08432"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f32f9958f0765254ce9c9de3182f81be7b45635", "fields": {"code_postal": "08360", "code_commune_insee": "08380", "libell_d_acheminement": "ST FERGEUX", "ligne_5": "CHAUDION", "nom_de_la_commune": "ST FERGEUX", "coordonnees_gps": [49.5450302072, 4.21650848613]}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414c7538763d03d0e349b2078c3afe8fd841a29c", "fields": {"code_postal": "08220", "code_commune_insee": "08366", "libell_d_acheminement": "ROCQUIGNY", "ligne_5": "MAINBRESSY", "nom_de_la_commune": "ROCQUIGNY", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6330b292f15fa020428bd9d721d3798c80ae3976", "fields": {"code_postal": "08230", "code_commune_insee": "08367", "libell_d_acheminement": "ROCROI", "ligne_5": "HIRAUMONT", "nom_de_la_commune": "ROCROI", "coordonnees_gps": [49.9157903394, 4.51147538743]}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578aa7f8d974ffc7dabfac1a55f093b7c1b0a7ce", "fields": {"nom_de_la_commune": "ST CLEMENT A ARNES", "libell_d_acheminement": "ST CLEMENT A ARNES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08378"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8a3c691fa8d4a5a29faba4078f4f30309933be", "fields": {"nom_de_la_commune": "RAUCOURT ET FLABA", "libell_d_acheminement": "RAUCOURT ET FLABA", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08354"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f1d68c935f4dab6a048d9986e4d926f6ed7854", "fields": {"nom_de_la_commune": "LA SABOTTERIE", "libell_d_acheminement": "LA SABOTTERIE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08374"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d7409c480734635f571b62c9e6b74f5e178212", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08377"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9017ebeb885880807b19d45651956805c45f0068", "fields": {"nom_de_la_commune": "ST MOREL", "libell_d_acheminement": "ST MOREL", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08392"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863b021ac8c34bb169748f7eab40f5ce7c34115a", "fields": {"nom_de_la_commune": "ROCROI", "libell_d_acheminement": "ROCROI", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08367"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0697ffe958af570911b91c57aa71de88f95c5b", "fields": {"nom_de_la_commune": "REVIN", "libell_d_acheminement": "REVIN", "code_postal": "08500", "coordonnees_gps": [49.9165828539, 4.66313545428], "code_commune_insee": "08363"}, "geometry": {"type": "Point", "coordinates": [4.66313545428, 49.9165828539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523394ab4243532bcd0992b5309d35af5cb864a6", "fields": {"code_postal": "08290", "code_commune_insee": "08344", "libell_d_acheminement": "PREZ", "ligne_5": "LA CERLEAU", "nom_de_la_commune": "PREZ", "coordonnees_gps": [49.7819854475, 4.29783858253]}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0605f368b6d6925e8edc50e2fc55296b06609d4b", "fields": {"nom_de_la_commune": "NOYERS PONT MAUGIS", "libell_d_acheminement": "NOYERS PONT MAUGIS", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08331"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40a555acf6fba4bbee5cd884e2b1bdcdca08d6a", "fields": {"nom_de_la_commune": "NEUVILLE LES THIS", "libell_d_acheminement": "NEUVILLE LES THIS", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08322"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6372971bc26b83cdbe558e2414e489b6accbe7", "fields": {"nom_de_la_commune": "NOUVION SUR MEUSE", "libell_d_acheminement": "NOUVION SUR MEUSE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08327"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86d626d1dfb179b525dbd3e44fcc5c7f33e8b94", "fields": {"nom_de_la_commune": "RAILLICOURT", "libell_d_acheminement": "RAILLICOURT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08352"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ca6322568a86b028523e694190b576eae19f0c", "fields": {"nom_de_la_commune": "POIX TERRON", "libell_d_acheminement": "POIX TERRON", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08341"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07fc6da4db0e4d6b271dd99c7d843f43c565fd3a", "fields": {"nom_de_la_commune": "RANCENNES", "libell_d_acheminement": "RANCENNES", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08353"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a734b9f381438ae2d269ce31090a9bc1e73f976", "fields": {"nom_de_la_commune": "PAUVRES", "libell_d_acheminement": "PAUVRES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08338"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6e467cce5a69b9c8e5d0423fc005acb529215e", "fields": {"nom_de_la_commune": "PUISEUX", "libell_d_acheminement": "PUISEUX", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08348"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d3c3f1270ab9c43d126300b3d946370cb465b1e", "fields": {"nom_de_la_commune": "OCHES", "libell_d_acheminement": "OCHES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08332"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a54be8d777d06cd744853851403ae3e370895c", "fields": {"code_postal": "08260", "code_commune_insee": "08189", "libell_d_acheminement": "GIRONDELLE", "ligne_5": "FOULZY", "nom_de_la_commune": "GIRONDELLE", "coordonnees_gps": [49.8443145713, 4.39580518668]}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c980542ad4701ee5b413e8d7fc55390082b21d", "fields": {"nom_de_la_commune": "HAM LES MOINES", "libell_d_acheminement": "HAM LES MOINES", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08206"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0e7d7b425bf02fb2b835390ea0be4881e84bb5", "fields": {"nom_de_la_commune": "LA GRANDVILLE", "libell_d_acheminement": "LA GRANDVILLE", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08199"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfba4df70eac1a87ac337477057338fb3cf92f2", "fields": {"nom_de_la_commune": "GUE D HOSSUS", "libell_d_acheminement": "GUE D HOSSUS", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08202"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1099d9c62e827e58ebf2e9e5c3ca89d3fc6b9f1", "fields": {"nom_de_la_commune": "FLEIGNEUX", "libell_d_acheminement": "FLEIGNEUX", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08170"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e2a024c72fc63f82141248627b50c9cc176b5f", "fields": {"nom_de_la_commune": "FLEVILLE", "libell_d_acheminement": "FLEVILLE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08171"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d4b46cc635b90eacc8f444567927dcbf3593af", "fields": {"nom_de_la_commune": "GERMONT", "libell_d_acheminement": "GERMONT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08186"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ff442baae266c641d33ee77a8fd046cbcbcd10", "fields": {"nom_de_la_commune": "GLAIRE", "libell_d_acheminement": "GLAIRE", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08194"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ae61f1249386d11639fd4f0800062b8f302942", "fields": {"nom_de_la_commune": "FROMY", "libell_d_acheminement": "FROMY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08184"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0949df5c3a0f8457b60876aeab3613eb027983dc", "fields": {"nom_de_la_commune": "FUMAY", "libell_d_acheminement": "FUMAY", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08185"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de27908dc00e738f40e47a7bc176d57eca3c143", "fields": {"nom_de_la_commune": "NEUVILLE LEZ BEAULIEU", "libell_d_acheminement": "NEUVILLE LEZ BEAULIEU", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08319"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd64839bfc612a624ff8bf35ea4d1bf03c34432c", "fields": {"nom_de_la_commune": "MENIL LEPINOIS", "libell_d_acheminement": "MENIL LEPINOIS", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08287"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4d97e31618e61166bb813a2956092ce67a407b", "fields": {"nom_de_la_commune": "LES MAZURES", "libell_d_acheminement": "LES MAZURES", "code_postal": "08500", "coordonnees_gps": [49.9165828539, 4.66313545428], "code_commune_insee": "08284"}, "geometry": {"type": "Point", "coordinates": [4.66313545428, 49.9165828539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3e296bc535276cf706c359dae996c8d0adcba2", "fields": {"nom_de_la_commune": "MONTHERME", "libell_d_acheminement": "MONTHERME", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08302"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9561a24838e2d02cd1afe84c9542a3e15394bf1", "fields": {"nom_de_la_commune": "MARANWEZ", "libell_d_acheminement": "MARANWEZ", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08272"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd3fb61ea84607906d8ae372b159c364e0de44a", "fields": {"nom_de_la_commune": "MAZERNY", "libell_d_acheminement": "MAZERNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08283"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264278ed854e9fd54c59ab8fddd016359241ebb7", "fields": {"nom_de_la_commune": "MESMONT", "libell_d_acheminement": "MESMONT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08288"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25875eb7874ef706731620b59bb64c5d7a4fe1f", "fields": {"nom_de_la_commune": "MOURON", "libell_d_acheminement": "MOURON", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08310"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08503b57908d6344428afb86d76bbdbfe6edd63f", "fields": {"nom_de_la_commune": "MANRE", "libell_d_acheminement": "MANRE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08271"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2966bd883f4c0fda7b9bcf08e9003291bc354440", "fields": {"nom_de_la_commune": "MARBY", "libell_d_acheminement": "MARBY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08273"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329e893a23ff8c40e7996aae2fb5f05e8cf07e73", "fields": {"code_postal": "08160", "code_commune_insee": "08469", "libell_d_acheminement": "VENDRESSE", "ligne_5": "LA CASSINE", "nom_de_la_commune": "VENDRESSE", "coordonnees_gps": [49.6516847115, 4.77872166277]}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ad508099ee543e72b5fdbc2bf75ad01596dcea", "fields": {"nom_de_la_commune": "TOURCELLES CHAUMONT", "libell_d_acheminement": "TOURCELLES CHAUMONT", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08455"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc39739e5fa695584e3fd0e1e6d4466a986c194", "fields": {"nom_de_la_commune": "VILLERS CERNAY", "libell_d_acheminement": "VILLERS CERNAY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08475"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7890d3afa87ecb865b1db5fb1ee4efd7cbf755e9", "fields": {"nom_de_la_commune": "VAUX VILLAINE", "libell_d_acheminement": "VAUX VILLAINE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08468"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f1c5dae20735e9bed0c16f40645f652398b67c", "fields": {"nom_de_la_commune": "TOURNAVAUX", "libell_d_acheminement": "TOURNAVAUX", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08456"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee76419eaf5c41639ebcff6bb81cb1a8962a299c", "fields": {"code_postal": "09600", "code_commune_insee": "09107", "libell_d_acheminement": "DUN", "ligne_5": "SENESSE DE SENABUGUE", "nom_de_la_commune": "DUN", "coordonnees_gps": [42.9966813157, 1.86782868426]}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a3487b6c1f1e0ca466dafaf7a0448b7347b9a6", "fields": {"code_postal": "09600", "code_commune_insee": "09107", "libell_d_acheminement": "DUN", "ligne_5": "MERVIEL", "nom_de_la_commune": "DUN", "coordonnees_gps": [42.9966813157, 1.86782868426]}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca2648dad2b42be795d4bb1f15747bfb421b7eb", "fields": {"nom_de_la_commune": "LES BORDES SUR ARIZE", "libell_d_acheminement": "LES BORDES SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09061"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a277276066bda39ddf0b5bf9d5db8c3a255e29", "fields": {"nom_de_la_commune": "LES CABANNES", "libell_d_acheminement": "LES CABANNES", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09070"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a8b75076f6f61f1cb07ac7bf4fc3f234376361", "fields": {"nom_de_la_commune": "CADARCET", "libell_d_acheminement": "CADARCET", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09071"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d62f110192ce37af4ee7e5b068725d99135c635", "fields": {"nom_de_la_commune": "COUSSA", "libell_d_acheminement": "COUSSA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09101"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b2648f81efe666f510bdf62776e2380e4c2e92", "fields": {"nom_de_la_commune": "CANTE", "libell_d_acheminement": "CANTE", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09076"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b57b0922b8edb976cf4313d60936dbe850a28f", "fields": {"nom_de_la_commune": "GAJAN", "libell_d_acheminement": "GAJAN", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09128"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ab48c8609901c95569a353c39382b37da42296", "fields": {"nom_de_la_commune": "FABAS", "libell_d_acheminement": "FABAS", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09120"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20173c22117a6cfdce4b723c013102fcd3c6802e", "fields": {"nom_de_la_commune": "ERP", "libell_d_acheminement": "ERP", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09114"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58878601d91ca5e70613c97fff25cc8cb1cee0a6", "fields": {"code_postal": "09400", "code_commune_insee": "09306", "libell_d_acheminement": "TARASCON SUR ARIEGE", "ligne_5": "BANAT", "nom_de_la_commune": "TARASCON SUR ARIEGE", "coordonnees_gps": [42.8458484074, 1.57117119842]}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c55f89818397dfdf1dcccb143f73cd99e28846", "fields": {"nom_de_la_commune": "SENTENAC DE SEROU", "libell_d_acheminement": "SENTENAC DE SEROU", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09292"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae09f8426332e13cb786483437006f2a9ad647b", "fields": {"nom_de_la_commune": "TAURIGNAN CASTET", "libell_d_acheminement": "TAURIGNAN CASTET", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09307"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0eebaf1e508c84f9801afa38f730097e9eefa1", "fields": {"nom_de_la_commune": "SOUEIX ROGALLE", "libell_d_acheminement": "SOUEIX ROGALLE", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09299"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cced00f38218ea4dd9deef7ff82a29e95827c1f4", "fields": {"nom_de_la_commune": "TREMOULET", "libell_d_acheminement": "TREMOULET", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09315"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9842dbc535dfc539131e5e55affcb76a3f8930", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09331"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cac2f417aca296a0672ea69185be6b56979c574", "fields": {"nom_de_la_commune": "TOURTROL", "libell_d_acheminement": "TOURTROL", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09314"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6298d821862870cad4bc867b40fc1fefb1d431", "fields": {"nom_de_la_commune": "VARILHES", "libell_d_acheminement": "VARILHES", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09324"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2482e3a6c9dbe5f8f144d1aa2d82a9b900514d40", "fields": {"nom_de_la_commune": "TEILHET", "libell_d_acheminement": "TEILHET", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09309"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8273801c6ca7fd5c43943cc041d591588fcee76b", "fields": {"nom_de_la_commune": "SUZAN", "libell_d_acheminement": "SUZAN", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09304"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121f7376cc9c44adbfd9da7b095112fb1265bbf2", "fields": {"nom_de_la_commune": "L HOSPITALET PRES L ANDORRE", "libell_d_acheminement": "L HOSPITALET PRES L ANDORRE", "code_postal": "09390", "coordonnees_gps": [42.5954552828, 1.77758509923], "code_commune_insee": "09139"}, "geometry": {"type": "Point", "coordinates": [1.77758509923, 42.5954552828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad351b54cdda4f84b998b2c742576fc6bd14b0e", "fields": {"nom_de_la_commune": "ILLIER ET LARAMADE", "libell_d_acheminement": "ILLIER ET LARAMADE", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09143"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee31a412754a5898368687d525ba833b18b1efff", "fields": {"nom_de_la_commune": "MAUVEZIN DE PRAT", "libell_d_acheminement": "MAUVEZIN DE PRAT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09183"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d778db1cba40cb9319fe73e09a22f3babcc505", "fields": {"nom_de_la_commune": "MERCUS GARRABET", "libell_d_acheminement": "MERCUS GARRABET", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09188"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de2aad865e74edf09f318e775bebb2cd0f7aa397", "fields": {"nom_de_la_commune": "LAROQUE D OLMES", "libell_d_acheminement": "LAROQUE D OLMES", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09157"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ea5e88c7bf9315305b61eeab2421b4decccb99", "fields": {"nom_de_la_commune": "LOUBIERES", "libell_d_acheminement": "LOUBIERES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09174"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5083786ebb6ab519a710352888f5bbaccda317", "fields": {"nom_de_la_commune": "LERCOUL", "libell_d_acheminement": "LERCOUL", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09162"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51853952f791d96d12463739239b2c56544ab23", "fields": {"nom_de_la_commune": "LORDAT", "libell_d_acheminement": "LORDAT", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09171"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c5d13c4a6d8b3815b908f4b5f7bf649886baba", "fields": {"nom_de_la_commune": "GALEY", "libell_d_acheminement": "GALEY", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09129"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d9407cd52a8a880a98cabf192b7a74b7fe1528", "fields": {"nom_de_la_commune": "GUDAS", "libell_d_acheminement": "GUDAS", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09137"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216722cb7e3d56619805fcbf99cbc17eff7ef16f", "fields": {"nom_de_la_commune": "ST JEAN DU CASTILLONNAIS", "libell_d_acheminement": "ST JEAN DU CASTILLONNAIS", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09263"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be56960010b8a4128ffd5cf0d2e026949613b156", "fields": {"nom_de_la_commune": "ST JULIEN DE GRAS CAPOU", "libell_d_acheminement": "ST JULIEN DE GRAS CAPOU", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09266"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcb9af3c94831243f7c398b2dc6756780718f15", "fields": {"nom_de_la_commune": "ST VICTOR ROUZAUD", "libell_d_acheminement": "ST VICTOR ROUZAUD", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09276"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e21e9ea23510586906d8ca508bdddb4b5d1b6f0", "fields": {"nom_de_la_commune": "LORP SENTARAILLE", "libell_d_acheminement": "LORP SENTARAILLE", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09289"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a17bca857d27a9ae0018b470ff13cc01527a84", "fields": {"nom_de_la_commune": "QUERIGUT", "libell_d_acheminement": "QUERIGUT", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09239"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260d4a1de6a7b3ecbebf63e7f1ecfbb725bb8c7b", "fields": {"nom_de_la_commune": "SENCONAC", "libell_d_acheminement": "SENCONAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09287"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576ae5d11666d57d861a4d6625e58666fccbf4b0", "fields": {"nom_de_la_commune": "RAISSAC", "libell_d_acheminement": "RAISSAC", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09242"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecf00d017c72ea2ff7d4a43ff9a9e8a0ee6a3877", "fields": {"nom_de_la_commune": "MONTIGNAC TOUPINERIE", "libell_d_acheminement": "MONTIGNAC TOUPINERIE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47189"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88635dc052588a04d605164b9d7c4e868e32d37", "fields": {"nom_de_la_commune": "NERAC", "libell_d_acheminement": "NERAC", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47195"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5600874f8bb76375f6e2f9c203c2f3a07ddc21c", "fields": {"nom_de_la_commune": "NOMDIEU", "libell_d_acheminement": "NOMDIEU", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47197"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad5e4637c6662dae6aa50a7685bb8a5bb859980", "fields": {"nom_de_la_commune": "PINEL HAUTERIVE", "libell_d_acheminement": "PINEL HAUTERIVE", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47206"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07ff717164982195a615654a7304548a16d3d1f", "fields": {"nom_de_la_commune": "POMPOGNE", "libell_d_acheminement": "POMPOGNE", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47208"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54085923079b00f3825754471a703a10af6d994a", "fields": {"nom_de_la_commune": "POUDENAS", "libell_d_acheminement": "POUDENAS", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47211"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7235f4995ce3f05c433e3d7707ef9fd9d28c51e9", "fields": {"nom_de_la_commune": "PUCH D AGENAIS", "libell_d_acheminement": "PUCH D AGENAIS", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47214"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be09dc85a6e5f1441cdfa743dc036a8885b4aef", "fields": {"nom_de_la_commune": "PUJOLS", "libell_d_acheminement": "PUJOLS", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47215"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4b10380e0e50e2ed888619ca1c0502778529f6", "fields": {"code_postal": "47170", "code_commune_insee": "47221", "libell_d_acheminement": "REAUP LISSE", "ligne_5": "LISSE", "nom_de_la_commune": "REAUP LISSE", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96055cbc95370b4d3a0a990106343595c5d7daec", "fields": {"nom_de_la_commune": "LA REUNION", "libell_d_acheminement": "LA REUNION", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47222"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ddd36a7a965f36bfd1875fb03952ee6c69bf04e", "fields": {"nom_de_la_commune": "RUFFIAC", "libell_d_acheminement": "RUFFIAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47227"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4874f03e93e70f573c79984cce54c15bcd4862e0", "fields": {"nom_de_la_commune": "ST ASTIER", "libell_d_acheminement": "ST ASTIER", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47229"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6caa5039977552241b916b3476ee72e9bff64a6", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47230"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deae3c14fee108c45ab371af035535c859080b39", "fields": {"nom_de_la_commune": "STE COLOMBE EN BRUILHOIS", "libell_d_acheminement": "STE COLOMBE EN BRUILHOIS", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47238"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d99f043eea3537a83f482e48a5f0a18d9a66f7e", "fields": {"nom_de_la_commune": "ST MAURIN", "libell_d_acheminement": "ST MAURIN", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47260"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a88674c49f1ebbf58ceb7af9168ac30c3df7ae", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA BALERME", "libell_d_acheminement": "ST NICOLAS DE LA BALERME", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47262"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5b0732c3a9b64065a7d75041ff055d02bb5a37", "fields": {"nom_de_la_commune": "ST PIERRE DE BUZET", "libell_d_acheminement": "ST PIERRE DE BUZET", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47267"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06aa3a27a98640cb057023cf65317ba56ca05f7f", "fields": {"nom_de_la_commune": "ST ROBERT", "libell_d_acheminement": "ST ROBERT", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47273"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d07212bd7f279ed891ee299037227dff7fb32a", "fields": {"nom_de_la_commune": "ST SARDOS", "libell_d_acheminement": "ST SARDOS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47276"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df34b4b19bb457baf3be1c0064327b019ab46cb", "fields": {"nom_de_la_commune": "ST SIXTE", "libell_d_acheminement": "ST SIXTE", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47279"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c4c88e43dd08aecd32025d48ee51b00cba2c16", "fields": {"nom_de_la_commune": "ST URCISSE", "libell_d_acheminement": "ST URCISSE", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47281"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f6834af82643e6c565649c62c43e0142190a8d", "fields": {"nom_de_la_commune": "SAMAZAN", "libell_d_acheminement": "SAMAZAN", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47285"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71cf4258a137a8189abd0b73cbcae3898a747e43", "fields": {"nom_de_la_commune": "SAUMEJAN", "libell_d_acheminement": "SAUMEJAN", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47286"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb850024cc63c093c39da13ac4583e48d62da015", "fields": {"nom_de_la_commune": "SAUMONT", "libell_d_acheminement": "SAUMONT", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47287"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b265f720ae112a838cec2e9b108acafdbc49124a", "fields": {"nom_de_la_commune": "SAUVAGNAS", "libell_d_acheminement": "SAUVAGNAS", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47288"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1fbaa464768c72bd46581a8f711c42d384ee557", "fields": {"nom_de_la_commune": "LA SAUVETAT SUR LEDE", "libell_d_acheminement": "LA SAUVETAT SUR LEDE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47291"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0a4bfcadac5da343905821ec534f39bb073a66", "fields": {"nom_de_la_commune": "SEMBAS", "libell_d_acheminement": "SEMBAS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47297"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92d2b44686eeebbd23f7d849d7204b41436f9ce", "fields": {"nom_de_la_commune": "SOS", "libell_d_acheminement": "SOS", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47302"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136b13a1b7b7313f5ff72812280bbcb1d77ae082", "fields": {"nom_de_la_commune": "SOUMENSAC", "libell_d_acheminement": "SOUMENSAC", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47303"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e84f9638f4dfbb25fccf2e682883541a5aef0c", "fields": {"nom_de_la_commune": "LE TEMPLE SUR LOT", "libell_d_acheminement": "LE TEMPLE SUR LOT", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47306"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4fc14e0e178b55f954fe1dd284c017ad9397b7c", "fields": {"nom_de_la_commune": "TOURLIAC", "libell_d_acheminement": "TOURLIAC", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47311"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d626faaa15415c3591ed87106c113fd5328dde7c", "fields": {"nom_de_la_commune": "TRENTELS", "libell_d_acheminement": "TRENTELS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47315"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1035fbf27bd8902dd197582e9a546ea1ab68cce4", "fields": {"nom_de_la_commune": "VILLEFRANCHE DU QUEYRAN", "libell_d_acheminement": "VILLEFRANCHE DU QUEYRAN", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47320"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cb43efbde32004e832ed4331ea8113c2bc5e58", "fields": {"nom_de_la_commune": "VILLENEUVE SUR LOT", "libell_d_acheminement": "VILLENEUVE SUR LOT", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47323"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e381b8382b18ccd6139ff820684e0024bf75d9a8", "fields": {"nom_de_la_commune": "VIRAZEIL", "libell_d_acheminement": "VIRAZEIL", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47326"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58294195fbab441bf115ea6985361f24a6269b96", "fields": {"nom_de_la_commune": "ARZENC D APCHER", "libell_d_acheminement": "ARZENC D APCHER", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48007"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc1345784a1eb23d7b0416cb9cf591dd0ce895a", "fields": {"code_postal": "48200", "code_commune_insee": "48012", "libell_d_acheminement": "LES MONTS VERTS", "ligne_5": "BERC", "nom_de_la_commune": "LES MONTS VERTS", "coordonnees_gps": [44.8172105635, 3.26915609563]}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4b0ef9527c9776cc704cb2a732ab900a33e4b7", "fields": {"nom_de_la_commune": "PIED DE BORNE", "libell_d_acheminement": "PIED DE BORNE", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48015"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a291e87197ff8da246685e9590d0b06a3be8cb7", "fields": {"nom_de_la_commune": "BASSURELS", "libell_d_acheminement": "BASSURELS", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48020"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fdc3695b1c336d699ddfbc795e7ea19f3f940a8", "fields": {"nom_de_la_commune": "BELVEZET", "libell_d_acheminement": "BELVEZET", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48023"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eaf8de739a7bfc64fc8d899a7310abf95588117", "fields": {"nom_de_la_commune": "LE BLEYMARD", "libell_d_acheminement": "LE BLEYMARD", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48027"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b6daeabefecfe6a2646e8c7b619c2ee5b2e809", "fields": {"nom_de_la_commune": "LE BORN", "libell_d_acheminement": "LE BORN", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48029"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ca95cf70e9bfc205f512a6ba947485fb5b6587b", "fields": {"code_postal": "48500", "code_commune_insee": "48034", "libell_d_acheminement": "LA CANOURGUE", "ligne_5": "MONTJEZIEU", "nom_de_la_commune": "LA CANOURGUE", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3475058e851dd3144ccc297f99e2c1d1634b2a7e", "fields": {"nom_de_la_commune": "CHANAC", "libell_d_acheminement": "CHANAC", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48039"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28685a84c89a322a241f9116e223be5a8fc9523c", "fields": {"nom_de_la_commune": "CHAUCHAILLES", "libell_d_acheminement": "CHAUCHAILLES", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48044"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3984acd6e0bd830b4a014c682e1cd65c0b47baf2", "fields": {"nom_de_la_commune": "LA CHAZE DE PEYRE", "libell_d_acheminement": "LA CHAZE DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48047"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536af1642208fa702510a8a6e3cd690c67fb03c6", "fields": {"nom_de_la_commune": "CUBIERES", "libell_d_acheminement": "CUBIERES", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48053"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12c088eb12dc20c66527685ad51a34683a8e707", "fields": {"nom_de_la_commune": "CUBIERETTES", "libell_d_acheminement": "CUBIERETTES", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48054"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee7baf1852d8a6c1eaada24c16dd8a14b2541d4", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48072"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192135bca20074d8570a35a5c882fe632ecf2dbf", "fields": {"nom_de_la_commune": "ISPAGNAC", "libell_d_acheminement": "ISPAGNAC", "code_postal": "48320", "coordonnees_gps": [44.3839235672, 3.52688734054], "code_commune_insee": "48075"}, "geometry": {"type": "Point", "coordinates": [3.52688734054, 44.3839235672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0dcc9992055708c15a0406dbd12e35c83a6a127", "fields": {"nom_de_la_commune": "LANUEJOLS", "libell_d_acheminement": "LANUEJOLS", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48081"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53593626bab761c262d69fb66e2552cbacfa5c5d", "fields": {"nom_de_la_commune": "LAVAL DU TARN", "libell_d_acheminement": "LAVAL DU TARN", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48085"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa3a5961939c33d3da6782740c5dded580f6255", "fields": {"nom_de_la_commune": "LUC", "libell_d_acheminement": "LUC", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "48086"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9f2c681cea849336ed54611330f9b116a8231e2", "fields": {"nom_de_la_commune": "MALBOUZON", "libell_d_acheminement": "MALBOUZON", "code_postal": "48270", "coordonnees_gps": [44.7073469646, 3.13057049845], "code_commune_insee": "48087"}, "geometry": {"type": "Point", "coordinates": [3.13057049845, 44.7073469646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014de1d09ed9fabd09deac800699b39058d2336f", "fields": {"nom_de_la_commune": "MARVEJOLS", "libell_d_acheminement": "MARVEJOLS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48092"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa9fb8a1a700d5ac5f15bcdde1d64655a98a6db", "fields": {"nom_de_la_commune": "MENDE", "libell_d_acheminement": "MENDE", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48095"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36937ef956b122bb9e1b0c6042536fb19f3f82e4", "fields": {"nom_de_la_commune": "MOISSAC VALLEE FRANCAISE", "libell_d_acheminement": "MOISSAC VALLEE FRANCAISE", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48097"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c0d720ccf6f013b6e70cc5fdc6747ca9806d47", "fields": {"code_postal": "48100", "code_commune_insee": "48099", "libell_d_acheminement": "BOURGS SUR COLAGNE", "ligne_5": "PIN MORIES", "nom_de_la_commune": "BOURGS SUR COLAGNE", "coordonnees_gps": [44.5866860441, 3.24770669701]}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8702d65810622c218f10eb5754bca80e791cf3a0", "fields": {"code_postal": "48220", "code_commune_insee": "48116", "libell_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", "ligne_5": "ST MAURICE DE VENTALON", "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", "coordonnees_gps": [44.3629471664, 3.81136680024]}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d127e4fe3cd946fe66c7f0b06f8c031913b9c2ba", "fields": {"nom_de_la_commune": "POURCHARESSES", "libell_d_acheminement": "POURCHARESSES", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48117"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90b6b726a24252384f4d3d6caf6a098856477ec", "fields": {"nom_de_la_commune": "QUEZAC", "libell_d_acheminement": "QUEZAC", "code_postal": "48320", "coordonnees_gps": [44.3839235672, 3.52688734054], "code_commune_insee": "48122"}, "geometry": {"type": "Point", "coordinates": [3.52688734054, 44.3839235672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2061b672a4960ce6caa485843bfb14a9cb45bdc", "fields": {"nom_de_la_commune": "ST ALBAN SUR LIMAGNOLE", "libell_d_acheminement": "ST ALBAN SUR LIMAGNOLE", "code_postal": "48120", "coordonnees_gps": [44.8002915136, 3.42996631483], "code_commune_insee": "48132"}, "geometry": {"type": "Point", "coordinates": [3.42996631483, 44.8002915136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6983bbbbc7ee74b96d54f96a3c054b9da33e6c8c", "fields": {"nom_de_la_commune": "MAS ST CHELY", "libell_d_acheminement": "MAS ST CHELY", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48141"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f893bef31bfa612e585a9df32af32dd274d680", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "48120", "coordonnees_gps": [44.8002915136, 3.42996631483], "code_commune_insee": "48149"}, "geometry": {"type": "Point", "coordinates": [3.42996631483, 44.8002915136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cb9bc8e24519b3370a1b979456755eba07a5d7", "fields": {"nom_de_la_commune": "ST FLOUR DE MERCOIRE", "libell_d_acheminement": "ST FLOUR DE MERCOIRE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48150"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15650ee77f0eab779b2bbd9d2fc6c4c347dbdb3c", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48157"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efc7a0ec329b6a3047a54c26ae9c2ca59568ef1a", "fields": {"nom_de_la_commune": "ST HILAIRE DE LAVIT", "libell_d_acheminement": "ST HILAIRE DE LAVIT", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48158"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793abc0f51de257b46874f3c15bc2f580cb8cd58", "fields": {"nom_de_la_commune": "ST LEGER DU MALZIEU", "libell_d_acheminement": "ST LEGER DU MALZIEU", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48169"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4d9aa04fb41b36dbc8c4c70575575e6041022f", "fields": {"nom_de_la_commune": "ST MARTIN DE LANSUSCLE", "libell_d_acheminement": "ST MARTIN DE LANSUSCLE", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48171"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c7d390bf8669b96da84f79809704790f421e37", "fields": {"nom_de_la_commune": "ST MICHEL DE DEZE", "libell_d_acheminement": "ST MICHEL DE DEZE", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48173"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3343be8c75f75c743293ad72c493bfad7e2827ac", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48181"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d920c674424832cf06928fd45c837dc56c218e46", "fields": {"nom_de_la_commune": "ST SAUVEUR DE PEYRE", "libell_d_acheminement": "ST SAUVEUR DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48183"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d44d7fba4139ea53939f95794ab88b996409f5c", "fields": {"nom_de_la_commune": "LES SALCES", "libell_d_acheminement": "LES SALCES", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48187"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b78ef4eccad46307721e5f5cf7c90a26afe2d77", "fields": {"nom_de_la_commune": "SERVERETTE", "libell_d_acheminement": "SERVERETTE", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48188"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8b994eda4ffc651799505d4737b38a76b8e03b", "fields": {"nom_de_la_commune": "BAUGE EN ANJOU", "libell_d_acheminement": "BAUGE EN ANJOU", "code_postal": "49150", "coordonnees_gps": [47.5402607075, -0.0974658784366], "code_commune_insee": "49018"}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a82aa1c2fa790fde8a47e00a0b1e497f70dc77e", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "ECHEMIRE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24bc529ddeb8ca9d68204edfbdecdcb8d6932a9a", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "LE VIEIL BAUGE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545a202b20e9b63fae3f4432357a5542ce0bba49", "fields": {"nom_de_la_commune": "BEAUFORT EN ANJOU", "libell_d_acheminement": "BEAUFORT EN ANJOU", "code_postal": "49250", "coordonnees_gps": [47.4313983805, -0.244193438131], "code_commune_insee": "49021"}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0835813b8dcf5390e7f4fe2cd87fcde2f640d0f", "fields": {"code_postal": "49110", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LE PIN EN MAUGES", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb62763664c16de193e49c11fe45fb42fca23245", "fields": {"code_postal": "49450", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "VILLEDIEU LA BLOUERE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af17c755b2f3e0ffb27ea5d33d92e157c91480b2", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "ST PHILBERT EN MAUGES", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d130b68f93b3a50ebf0c0412a84a87d68071a854", "fields": {"nom_de_la_commune": "BEHUARD", "libell_d_acheminement": "BEHUARD", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49028"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98104ed0f5eb3796ad8e7d2cf6a7a3ce28f33a30", "fields": {"nom_de_la_commune": "BOUILLE MENARD", "libell_d_acheminement": "BOUILLE MENARD", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49036"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f2b0f575dde8d7184c7592c6b446183c5e13bb", "fields": {"nom_de_la_commune": "BRIGNE", "libell_d_acheminement": "BRIGNE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49047"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de1686e5e7d91969ba8e4dd3905a9b3788fbea1", "fields": {"nom_de_la_commune": "BRIOLLAY", "libell_d_acheminement": "BRIOLLAY", "code_postal": "49125", "coordonnees_gps": [47.6143418722, -0.475891019587], "code_commune_insee": "49048"}, "geometry": {"type": "Point", "coordinates": [-0.475891019587, 47.6143418722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2734d8741428ada32754f306e94471d979f52c", "fields": {"nom_de_la_commune": "BRISSARTHE", "libell_d_acheminement": "BRISSARTHE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49051"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee7634b6c77d907f217005395fa7d6ee4f1dc4f", "fields": {"nom_de_la_commune": "CERNUSSON", "libell_d_acheminement": "CERNUSSON", "code_postal": "49310", "coordonnees_gps": [47.1669501795, -0.609299799039], "code_commune_insee": "49057"}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a5d561078dfa4eb71f162ddaaef8dc907169ed", "fields": {"nom_de_la_commune": "CHALLAIN LA POTHERIE", "libell_d_acheminement": "CHALLAIN LA POTHERIE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49061"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c81b0f25796e8f97e9d0af12cb871a186cc2696", "fields": {"nom_de_la_commune": "CHALONNES SUR LOIRE", "libell_d_acheminement": "CHALONNES SUR LOIRE", "code_postal": "49290", "coordonnees_gps": [47.3431019383, -0.806177214608], "code_commune_insee": "49063"}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6e5daf949e8468ebf5c18868973c274380f8c2", "fields": {"nom_de_la_commune": "CHAMBELLAY", "libell_d_acheminement": "CHAMBELLAY", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49064"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86d8a8507a0f6f38df173f1e964795bd6020b668", "fields": {"nom_de_la_commune": "CHAMPIGNE", "libell_d_acheminement": "CHAMPIGNE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49065"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94bc8e4a0e31eccef82857dfd93459a8fa6f5bf", "fields": {"nom_de_la_commune": "CHENILLE CHAMPTEUSSE", "libell_d_acheminement": "CHENILLE CHAMPTEUSSE", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49067"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73669c3aee7c8745fb679dd8ab89f460043ce2da", "fields": {"code_postal": "49220", "code_commune_insee": "49067", "libell_d_acheminement": "CHENILLE CHAMPTEUSSE", "ligne_5": "CHENILLE CHANGE", "nom_de_la_commune": "CHENILLE CHAMPTEUSSE", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587b34274f77b11f81eed79a43eadf00328a7af5", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "LA VARENNE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1fbf6be931841ee90d5e5ec7292319890d87d4", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "LANDEMONT", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2161028ad28d86540a1ea877eb63dd2f8b933787", "fields": {"code_postal": "49530", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "BOUZILLE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3221427995, -1.26040062028]}, "geometry": {"type": "Point", "coordinates": [-1.26040062028, 47.3221427995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd2071154349118f10752073e2314515bbbe642", "fields": {"code_postal": "49530", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "DRAIN", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3221427995, -1.26040062028]}, "geometry": {"type": "Point", "coordinates": [-1.26040062028, 47.3221427995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "125befaada29c899c3e8d8e060e5592605e6f32e", "fields": {"nom_de_la_commune": "CHAZE HENRY", "libell_d_acheminement": "CHAZE HENRY", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49088"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ecd6eb2d0690ab52e0e19d6c0055f9d2018a488", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA JUMELLIERE", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd9bc4b08be71cf9e8c6f0f983d20e62dce3313", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA TOURLANDRY", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b061441b461ac8d6eed3b5ab3ac7270da682a4", "fields": {"nom_de_la_commune": "VERMANDOVILLERS", "libell_d_acheminement": "VERMANDOVILLERS", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80789"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d677135fb30add68b6dfe8b0903080af54e5240", "fields": {"nom_de_la_commune": "VIGNACOURT", "libell_d_acheminement": "VIGNACOURT", "code_postal": "80650", "coordonnees_gps": [50.0085699512, 2.18663552993], "code_commune_insee": "80793"}, "geometry": {"type": "Point", "coordinates": [2.18663552993, 50.0085699512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b2657030351d609ebedb29045fad2362f381a33", "fields": {"nom_de_la_commune": "VILLECOURT", "libell_d_acheminement": "VILLECOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80794"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2c70e2ec53cde78fa656991f653255d3bf4f47", "fields": {"nom_de_la_commune": "VILLERS AUX ERABLES", "libell_d_acheminement": "VILLERS AUX ERABLES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80797"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3afe7f38d71f1a87f14e23a81ed03fee52b7a0", "fields": {"nom_de_la_commune": "VILLERS BOCAGE", "libell_d_acheminement": "VILLERS BOCAGE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80798"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813a0b25d2106d2ef2acf2625df911c96e11fe66", "fields": {"nom_de_la_commune": "VILLERS BRETONNEUX", "libell_d_acheminement": "VILLERS BRETONNEUX", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80799"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4946101ba5d30c71cfa83f0ad6d4eebe66861388", "fields": {"nom_de_la_commune": "VILLERS CAMPSART", "libell_d_acheminement": "VILLERS CAMPSART", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80800"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b934602d1d1a950a9d54c1306f71268efa2303c", "fields": {"nom_de_la_commune": "VILLERS CARBONNEL", "libell_d_acheminement": "VILLERS CARBONNEL", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80801"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a730c3b2bd7b928c510bd7d8e81deec14c5913f4", "fields": {"nom_de_la_commune": "VILLERS LES ROYE", "libell_d_acheminement": "VILLERS LES ROYE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80803"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46225d5dbfb7b99cd747791c746c0fd73dbf5eb1", "fields": {"nom_de_la_commune": "VILLERS TOURNELLE", "libell_d_acheminement": "VILLERS TOURNELLE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80805"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f67ddb5e4374a261ac13fce23b4daa53c1914a2", "fields": {"nom_de_la_commune": "VISMES", "libell_d_acheminement": "VISMES AU VAL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80809"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244b8c8240c5e2c0e06580030605f668194f29b9", "fields": {"nom_de_la_commune": "VITZ SUR AUTHIE", "libell_d_acheminement": "VITZ SUR AUTHIE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80810"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d08db7e53ca1cd99796e6d3a7032ce7d520ac259", "fields": {"nom_de_la_commune": "WARGNIES", "libell_d_acheminement": "WARGNIES", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80819"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988d9fcd90550dc7af411854285470d4de2db0b3", "fields": {"nom_de_la_commune": "WOINCOURT", "libell_d_acheminement": "WOINCOURT", "code_postal": "80520", "coordonnees_gps": [50.0605501817, 1.51862547548], "code_commune_insee": "80827"}, "geometry": {"type": "Point", "coordinates": [1.51862547548, 50.0605501817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9061f0edfb306a7cdb96b8a45dce5a57682dfff", "fields": {"nom_de_la_commune": "ALBAN", "libell_d_acheminement": "ALBAN", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81003"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a16314442b1767d09631d21403aa8dff62b1290", "fields": {"nom_de_la_commune": "ALBI", "libell_d_acheminement": "ALBI", "code_postal": "81000", "coordonnees_gps": [43.9256363558, 2.14727658204], "code_commune_insee": "81004"}, "geometry": {"type": "Point", "coordinates": [2.14727658204, 43.9256363558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb5953f2369592495c0096cc207e45f94e7464a", "fields": {"nom_de_la_commune": "AMARENS", "libell_d_acheminement": "AMARENS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81009"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f7978b0adc90e47c638a979d8eef29371a17e7", "fields": {"nom_de_la_commune": "AMBRES", "libell_d_acheminement": "AMBRES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81011"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d114d0095438a76262393b444f3a8db297c110", "fields": {"nom_de_la_commune": "ANDOUQUE", "libell_d_acheminement": "ANDOUQUE", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81013"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36748f334fef0769ea95496343ea3d437f4398b3", "fields": {"code_postal": "01300", "code_commune_insee": "01015", "libell_d_acheminement": "ARBOYS EN BUGEY", "ligne_5": "ST BOIS", "nom_de_la_commune": "ARBOYS EN BUGEY", "coordonnees_gps": [45.7328309975, 5.65715901636]}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5e26b3de7398afdc77ef21429730b09eb438ed", "fields": {"nom_de_la_commune": "L ABERGEMENT DE VAREY", "libell_d_acheminement": "L ABERGEMENT DE VAREY", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01002"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c364b4a1f5190842074f6ce7627f7ef03d5929b3", "fields": {"nom_de_la_commune": "ASNIERES SUR SAONE", "libell_d_acheminement": "ASNIERES SUR SAONE", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01023"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "341e86663a89886d56ccbef4daf3c535e6d23f30", "fields": {"nom_de_la_commune": "BELLIGNAT", "libell_d_acheminement": "BELLIGNAT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01031"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4860e3cbb071e1fe15552849096589dc532d9de3", "fields": {"nom_de_la_commune": "ARMIX", "libell_d_acheminement": "ARMIX", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01019"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f5b46ad3935f0bd5d4e1aa4ce6e6ccee62d765", "fields": {"code_postal": "07140", "code_commune_insee": "07284", "libell_d_acheminement": "ST PIERRE ST JEAN", "ligne_5": "ST JEAN DE POURCHARESSE", "nom_de_la_commune": "ST PIERRE ST JEAN", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b4b5eb64dab619d6d6bc6c7bed39eb8c083f88", "fields": {"nom_de_la_commune": "ST MAURICE EN CHALENCON", "libell_d_acheminement": "ST MAURICE EN CHALENCON", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07274"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4180ef35b792749d254b50cdf3ba9a68a53b0e97", "fields": {"nom_de_la_commune": "ST PIERRE LA ROCHE", "libell_d_acheminement": "ST PIERRE LA ROCHE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07283"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c412e698263eaa791daa92d9bdec20eccb5ede31", "fields": {"nom_de_la_commune": "ST PAUL LE JEUNE", "libell_d_acheminement": "ST PAUL LE JEUNE", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07280"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09575fded2bd5f651ba8367e86be6cb9c38cd28", "fields": {"nom_de_la_commune": "ST SYLVESTRE", "libell_d_acheminement": "ST SYLVESTRE", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07297"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88e5099946156ee61b86297e2c9ab0798d330c2", "fields": {"nom_de_la_commune": "ST MELANY", "libell_d_acheminement": "ST MELANY", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07275"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192572bcb8fd1abc4241ae28fa4d40cadca8a8ae", "fields": {"nom_de_la_commune": "THORRENC", "libell_d_acheminement": "THORRENC", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07321"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a16c5a71352d9d1feefe1e4e71ab3bc63fdf51", "fields": {"nom_de_la_commune": "SECHERAS", "libell_d_acheminement": "SECHERAS", "code_postal": "07610", "coordonnees_gps": [45.1098494748, 4.78303209156], "code_commune_insee": "07312"}, "geometry": {"type": "Point", "coordinates": [4.78303209156, 45.1098494748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37986330ce68d432fe0cb0923093d2123eac3cc9", "fields": {"nom_de_la_commune": "ST REMEZE", "libell_d_acheminement": "ST REMEZE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07291"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a543a225948989fc8da3bb053d9f1a354f9f5e1", "fields": {"nom_de_la_commune": "SILHAC", "libell_d_acheminement": "SILHAC", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07314"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d9479e3ea34055392e6d4151c8daff6d0d7899", "fields": {"code_postal": "07140", "code_commune_insee": "07334", "libell_d_acheminement": "LES VANS", "ligne_5": "NAVES", "nom_de_la_commune": "LES VANS", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f4f576f529c993a640fad45c8b36fed78f9e3a", "fields": {"nom_de_la_commune": "LES GRANDES ARMOISES", "libell_d_acheminement": "LES GRANDES ARMOISES", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08019"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5e61fadb0077ee7af79bb0f1fc7ed294be709d", "fields": {"nom_de_la_commune": "LA VOULTE SUR RHONE", "libell_d_acheminement": "LA VOULTE SUR RHONE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07349"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae38b6b2f351f12c6c1c337f6183c6103285210", "fields": {"nom_de_la_commune": "VILLENEUVE DE BERG", "libell_d_acheminement": "VILLENEUVE DE BERG", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07341"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c813f7248d7c04dd13be2d2d5331627fc5030a0a", "fields": {"nom_de_la_commune": "TOURNON SUR RHONE", "libell_d_acheminement": "TOURNON SUR RHONE", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07324"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beec82eebf5b68b2aa0acb770e53d4652d35b69e", "fields": {"nom_de_la_commune": "VALVIGNERES", "libell_d_acheminement": "VALVIGNERES", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07332"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6370cf36c3cab09a2fc43ad666f4921841bde73f", "fields": {"nom_de_la_commune": "ARNICOURT", "libell_d_acheminement": "ARNICOURT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08021"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c17b2fc3c624addb9b696e1e5cfe24150a74c46", "fields": {"nom_de_la_commune": "VINZIEUX", "libell_d_acheminement": "VINZIEUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07344"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf4c9ee35b490fa9fc864976dd6d66a9ac365cc7", "fields": {"nom_de_la_commune": "AOUSTE", "libell_d_acheminement": "AOUSTE", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08016"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d26daab12c7b9672cffeac5caa246e9cd1bdb9", "fields": {"nom_de_la_commune": "VAGNAS", "libell_d_acheminement": "VAGNAS", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07328"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d36ac1ec9407217adfe731f21ccc57f5b91d732", "fields": {"code_postal": "07140", "code_commune_insee": "07147", "libell_d_acheminement": "MALARCE SUR LA THINES", "ligne_5": "THINES", "nom_de_la_commune": "MALARCE SUR LA THINES", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39ad6e7a1bbd33fca4fed99b9677e2d0fbe227c", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS AUBENAS", "libell_d_acheminement": "LACHAPELLE SOUS AUBENAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07122"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b164b1b959cda45888a0f5bc4821b9db1192b4", "fields": {"nom_de_la_commune": "LOUBARESSE", "libell_d_acheminement": "LOUBARESSE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07144"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8332d54ac5df497b0785365da22aca26b4114b6", "fields": {"nom_de_la_commune": "MEZILHAC", "libell_d_acheminement": "MEZILHAC", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07158"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c7d527e74cfddb335cc516a1aa91d6f309eed2", "fields": {"nom_de_la_commune": "PEAUGRES", "libell_d_acheminement": "PEAUGRES", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07172"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72c80a4ff9442543cadad1bf86666e0078db674", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07199"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142e70ce9b89859e23ca12e378672369d9be4c33", "fields": {"nom_de_la_commune": "PEYRAUD", "libell_d_acheminement": "PEYRAUD", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07174"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcd8e217b1cc5f1eaf659aeb87a9295f298e95e", "fields": {"nom_de_la_commune": "LARNAS", "libell_d_acheminement": "LARNAS", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07133"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56cbaa71ac4318a21363dd66516eda68181b6dd", "fields": {"nom_de_la_commune": "MAUVES", "libell_d_acheminement": "MAUVES", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07152"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3448f22b273ce73a4d978b3d3cae20f9afcc4faa", "fields": {"nom_de_la_commune": "PAYZAC", "libell_d_acheminement": "PAYZAC", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07171"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f0e061ae9dde726b1218bacb5ba2905189c22f", "fields": {"code_postal": "08220", "code_commune_insee": "08113", "libell_d_acheminement": "CHAUMONT PORCIEN", "ligne_5": "LOGNY LES CHAUMONT", "nom_de_la_commune": "CHAUMONT PORCIEN", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4efcc60b9b04735b96d4aecda5dcc398a01bed", "fields": {"nom_de_la_commune": "CHARLEVILLE MEZIERES", "libell_d_acheminement": "CHARLEVILLE MEZIERES", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08105"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed14d2d554456708397f2f97e659a1ce57adc64", "fields": {"nom_de_la_commune": "DOUMELY BEGNY", "libell_d_acheminement": "DOUMELY BEGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08143"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28c04354c5a5731f403d9914e6fe8cbe0d98e385", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08101"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5a29f8b69bf36bc1bee11d5515da8573c7397b", "fields": {"nom_de_la_commune": "CONTREUVE", "libell_d_acheminement": "CONTREUVE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08130"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa44fa05fb26cdf64f42d8d21c9a1019b50392c", "fields": {"nom_de_la_commune": "CHARBOGNE", "libell_d_acheminement": "CHARBOGNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08103"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93350ff441e0fe54924f9962d1e8841cf78a7b5", "fields": {"nom_de_la_commune": "DEVILLE", "libell_d_acheminement": "DEVILLE", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08139"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dbd5a9c16cee31658602a1dd122e68d8a32b89", "fields": {"nom_de_la_commune": "DOMMERY", "libell_d_acheminement": "DOMMERY", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08141"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296b1bca6db2df6a62a75734efabcb0822b9caac", "fields": {"nom_de_la_commune": "CHOOZ", "libell_d_acheminement": "CHOOZ", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08122"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48afe0933bd005e661f6738d31b12351bb5b0240", "fields": {"nom_de_la_commune": "DOUX", "libell_d_acheminement": "DOUX", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08144"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0f6111f3e728a4933e122c1d958836e54bd6e7", "fields": {"nom_de_la_commune": "BELLEVILLE ET CHATILLON SUR BAR", "libell_d_acheminement": "BELLEVILLE ET CHATILLON SUR BAR", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08057"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7118ebd8de2489e2b7759a82793c42fdcabfec1f", "fields": {"nom_de_la_commune": "BANOGNE RECOUVRANCE", "libell_d_acheminement": "BANOGNE RECOUVRANCE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08046"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949da258c1519ff2bd91bc68a6fae26e97aee879", "fields": {"nom_de_la_commune": "BALAIVES ET BUTZ", "libell_d_acheminement": "BALAIVES ET BUTZ", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08042"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebb3c0f1da79c5f239404373340cd06f5babf28", "fields": {"nom_de_la_commune": "BAR LES BUZANCY", "libell_d_acheminement": "BAR LES BUZANCY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08049"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138b86443e7062bb229c454206ee0f47f518faa4", "fields": {"nom_de_la_commune": "BAZEILLES", "libell_d_acheminement": "BAZEILLES", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08053"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e83dbf7d5b62c2c0155afe8cd6b079f9bdee79", "fields": {"nom_de_la_commune": "AUSSONCE", "libell_d_acheminement": "AUSSONCE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08032"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e2925718ff67434aa48d00db90cc15e7c1fd84", "fields": {"nom_de_la_commune": "AVANCON", "libell_d_acheminement": "AVANCON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08038"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235a912054aae94484701f1e8ac3b33c37a95b17", "fields": {"nom_de_la_commune": "BELVAL", "libell_d_acheminement": "BELVAL", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08058"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "051b1e2ea8d36cf0c4fc53e4359fedf14d8186f8", "fields": {"nom_de_la_commune": "ASFELD", "libell_d_acheminement": "ASFELD", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08024"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aadc49a748172dae4f224439068ace7605a29af2", "fields": {"nom_de_la_commune": "AURE", "libell_d_acheminement": "AURE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08031"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56890fc85fcb713274d0b92cad2732cb09f578ab", "fields": {"nom_de_la_commune": "BELVAL BOIS DES DAMES", "libell_d_acheminement": "BELVAL BOIS DES DAMES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08059"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e379f1e0ef79716ed870cfe05ff30561bebdeb", "fields": {"nom_de_la_commune": "BOSSUS LES RUMIGNY", "libell_d_acheminement": "BOSSUS LES RUMIGNY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08073"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a25a7d5c94b0a33a5d9c02359757d779f526328b", "fields": {"nom_de_la_commune": "BLANCHEFOSSE ET BAY", "libell_d_acheminement": "BLANCHEFOSSE ET BAY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08069"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d65cfea6fa744124c92144082c19ece65739b3", "fields": {"nom_de_la_commune": "BRIEULLES SUR BAR", "libell_d_acheminement": "BRIEULLES SUR BAR", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08085"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d75ae9bf4dcf07b0d12031940bd0981a5025e7e9", "fields": {"nom_de_la_commune": "BOUVELLEMONT", "libell_d_acheminement": "BOUVELLEMONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08080"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a0a950878c4dc2fdf86a1e620cdffb8033e548", "fields": {"nom_de_la_commune": "LA BERLIERE", "libell_d_acheminement": "LA BERLIERE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08061"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e501e9fb79f6b10a0f57201d77c66df0f9dd56b6", "fields": {"nom_de_la_commune": "BRIQUENAY", "libell_d_acheminement": "BRIQUENAY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08086"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa80ce411a14b15c044e31249ed50ebfbe5b4a55", "fields": {"nom_de_la_commune": "BIEVRES", "libell_d_acheminement": "BIEVRES", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08065"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791b521f44a793c1e0ad644733df82598c649ead", "fields": {"nom_de_la_commune": "BROGNON", "libell_d_acheminement": "BROGNON", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08087"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f072bbc4ceba45709ddc3ff3a46fcc7b9a758218", "fields": {"nom_de_la_commune": "CAUROY", "libell_d_acheminement": "CAUROY", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08092"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdec067550bba46a6757c36d462e17c59f6b38b5", "fields": {"nom_de_la_commune": "FOISCHES", "libell_d_acheminement": "FOISCHES", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08175"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4184b069a90c0c01d2e51fe628437216a3f0009e", "fields": {"nom_de_la_commune": "FALAISE", "libell_d_acheminement": "FALAISE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08164"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bceda5b551c970b92df9ff1ad67ea00e4143a0bd", "fields": {"nom_de_la_commune": "FOSSE", "libell_d_acheminement": "FOSSE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08176"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f56f5ef702cc8a6679ac1e5fe3d2ee659026eb7", "fields": {"nom_de_la_commune": "FEPIN", "libell_d_acheminement": "FEPIN", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08166"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a56f457ba6755d107d1d54bb15c7b30bb91c07", "fields": {"code_postal": "07320", "code_commune_insee": "07204", "libell_d_acheminement": "ST AGREVE", "ligne_5": "LE POUZAT", "nom_de_la_commune": "ST AGREVE", "coordonnees_gps": [45.0373045758, 4.40809753225]}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd3d042e210722c01319272245d79ed39bbf7fe", "fields": {"nom_de_la_commune": "STE MARGUERITE LAFIGERE", "libell_d_acheminement": "STE MARGUERITE LAFIGERE", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07266"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e03c630847d2dc312a8354f9fbeeaf00b2137cd", "fields": {"nom_de_la_commune": "ST ETIENNE DE LUGDARES", "libell_d_acheminement": "ST ETIENNE DE LUGDARES", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07232"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8599a0042b853817bc46a68e1e3700a6676bbb05", "fields": {"nom_de_la_commune": "ST JULIEN EN ST ALBAN", "libell_d_acheminement": "ST JULIEN EN ST ALBAN", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07255"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79cc7c1675af91a4751aaad17b0552708bb4186f", "fields": {"nom_de_la_commune": "ST MARTIN DE VALAMAS", "libell_d_acheminement": "ST MARTIN DE VALAMAS", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07269"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7771085699e162fc659e4a717f8a4432fb8b85d8", "fields": {"nom_de_la_commune": "ST GINEIS EN COIRON", "libell_d_acheminement": "ST GINEIS EN COIRON", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07242"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f58607f96f9bec4bafefc16386b2782f06425ff", "fields": {"nom_de_la_commune": "ST JOSEPH DES BANCS", "libell_d_acheminement": "ST JOSEPH DES BANCS", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07251"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db88259e107ee4152708b29b7042ab603692691", "fields": {"nom_de_la_commune": "ST JEURE D ANDAURE", "libell_d_acheminement": "ST JEURE D ANDAURE", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07249"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a3c327f7d574afc240d25c0711fd4b6c4b5285f", "fields": {"nom_de_la_commune": "ST GENEST LACHAMP", "libell_d_acheminement": "ST GENEST LACHAMP", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07239"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77290a8d3c7c3ce711269cf92e7ca3431edbe5bb", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07241"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56df3a961bbcaab64184928d74f95949a08497c6", "fields": {"nom_de_la_commune": "COLOMBIER LE VIEUX", "libell_d_acheminement": "COLOMBIER LE VIEUX", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07069"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58be8492d3c2114d0d155244c5366b0ed61956f7", "fields": {"nom_de_la_commune": "COLOMBIER LE JEUNE", "libell_d_acheminement": "COLOMBIER LE JEUNE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07068"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016313222be805b667bf8c64a3135d073d6780eb", "fields": {"nom_de_la_commune": "PARDAILLAN", "libell_d_acheminement": "PARDAILLAN", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47199"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587ac93d62591650ccb396fb4cd0bfd6ccfeddb6", "fields": {"nom_de_la_commune": "PINDERES", "libell_d_acheminement": "PINDERES", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47205"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d86c8b7ae9fac4310cdd897273fefc8e43a24c", "fields": {"nom_de_la_commune": "POMPIEY", "libell_d_acheminement": "POMPIEY", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47207"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f65ddd7bfdb94e22c3421c0108d3013cbff31a", "fields": {"nom_de_la_commune": "PONT DU CASSE", "libell_d_acheminement": "PONT DU CASSE", "code_postal": "47480", "coordonnees_gps": [44.2442520518, 0.685511945238], "code_commune_insee": "47209"}, "geometry": {"type": "Point", "coordinates": [0.685511945238, 44.2442520518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0449c3980cc0efdaee418fb5455ff028c5a3e7d7", "fields": {"nom_de_la_commune": "PORT STE MARIE", "libell_d_acheminement": "PORT STE MARIE", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47210"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e115cf420bc83f88324d76e7dcebc3bd09b22013", "fields": {"nom_de_la_commune": "POUSSIGNAC", "libell_d_acheminement": "POUSSIGNAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47212"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c1024d892c9cc2e0111e837aeda1e07853ee82", "fields": {"nom_de_la_commune": "PUYMICLAN", "libell_d_acheminement": "PUYMICLAN", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47216"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5628ba3c0323fe003dd11cad8764774c0d08e76", "fields": {"nom_de_la_commune": "ROMESTAING", "libell_d_acheminement": "ROMESTAING", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47224"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce49ea20b05351a06cf7efffa433a6347f64300", "fields": {"nom_de_la_commune": "STE COLOMBE DE DURAS", "libell_d_acheminement": "STE COLOMBE DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47236"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166a95523d1a9592a6db4ea1b877e8a2c8073e80", "fields": {"nom_de_la_commune": "ST JEAN DE DURAS", "libell_d_acheminement": "ST JEAN DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47247"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "667d251338d0f3b56ad9fe2fd6092b100249f236", "fields": {"nom_de_la_commune": "STE MAURE DE PEYRIAC", "libell_d_acheminement": "STE MAURE DE PEYRIAC", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47258"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12809d6ee021daab5b81068b9321e23fe9255d6f", "fields": {"nom_de_la_commune": "ST PIERRE SUR DROPT", "libell_d_acheminement": "ST PIERRE SUR DROPT", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47271"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c60d113a2cacd63bd38aa0424c0058dbec3a84a", "fields": {"nom_de_la_commune": "ST SERNIN", "libell_d_acheminement": "ST SERNIN", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47278"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d241c0ef15e36958da0abc06aa6980f3c48b697d", "fields": {"nom_de_la_commune": "ST VITE", "libell_d_acheminement": "ST VITE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47283"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480f13021d0848740e3f4fc865eafee4290d7111", "fields": {"nom_de_la_commune": "SAUVETERRE LA LEMANCE", "libell_d_acheminement": "SAUVETERRE LA LEMANCE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47292"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d06cb71de4077ca6e49ab9bf6130d8cfbb8148", "fields": {"code_postal": "47170", "code_commune_insee": "47302", "libell_d_acheminement": "SOS", "ligne_5": "MEYLAN", "nom_de_la_commune": "SOS", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78fff14938ce9b262ea391e1bbfcf6efc09598a", "fields": {"nom_de_la_commune": "TONNEINS", "libell_d_acheminement": "TONNEINS", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47310"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaa869c3ad4842480230e4490eeb6af912261bc", "fields": {"nom_de_la_commune": "TREMONS", "libell_d_acheminement": "TREMONS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47314"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a94d63eeaaf20144536d8994b5dd69cf54ec8ea", "fields": {"nom_de_la_commune": "VERTEUIL D AGENAIS", "libell_d_acheminement": "VERTEUIL D AGENAIS", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47317"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7f1166bb447f21e7b8bb7716a1600f60b6c2290", "fields": {"nom_de_la_commune": "VILLEBRAMAR", "libell_d_acheminement": "VILLEBRAMAR", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47319"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fede5fa8d063d482125ca8fdaf1f434c97c44def", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47328"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95e2b1b1a5ee623e01834185a524219412ae48a", "fields": {"nom_de_la_commune": "ALTIER", "libell_d_acheminement": "ALTIER", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48004"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b969f40a390cc21728cab86a91590afc47bfda4", "fields": {"nom_de_la_commune": "ANTRENAS", "libell_d_acheminement": "ANTRENAS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48005"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f2b57ee81c588bce1c8a6162d01f5fcdd5e6bc", "fields": {"nom_de_la_commune": "AUMONT AUBRAC", "libell_d_acheminement": "AUMONT AUBRAC", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48009"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4ffaa88d5f21e152c73ffb0490230e8c7e8b39", "fields": {"nom_de_la_commune": "LES MONTS VERTS", "libell_d_acheminement": "LES MONTS VERTS", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48012"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b30a34a5561f494174862583d6c5dd890415784", "fields": {"code_postal": "48200", "code_commune_insee": "48012", "libell_d_acheminement": "LES MONTS VERTS", "ligne_5": "ARCOMIE", "nom_de_la_commune": "LES MONTS VERTS", "coordonnees_gps": [44.8172105635, 3.26915609563]}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94ae79e1ece58097f1e748e7a96f2f2b590ae16", "fields": {"nom_de_la_commune": "BALSIEGES", "libell_d_acheminement": "BALSIEGES", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48016"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37deaaf7ffbe71e136f965076d7a2ccf7cbc1ac9", "fields": {"nom_de_la_commune": "BARJAC", "libell_d_acheminement": "BARJAC", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48018"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0f6bece135399be2aa8af9378fe8c612171cea", "fields": {"nom_de_la_commune": "BARRE DES CEVENNES", "libell_d_acheminement": "BARRE DES CEVENNES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48019"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937000cf680d7da04d41a5eaf5dfe99af265505a", "fields": {"nom_de_la_commune": "LA BASTIDE PUYLAURENT", "libell_d_acheminement": "LA BASTIDE PUYLAURENT", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "48021"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c241120801ae2f44533bf320adb0f9a7116b48", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48031"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adbb58aa76c0395e6d1526ed2c0eaf57280a5a1", "fields": {"code_postal": "48500", "code_commune_insee": "48034", "libell_d_acheminement": "LA CANOURGUE", "ligne_5": "AUXILLAC", "nom_de_la_commune": "LA CANOURGUE", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424bd88d95fb66ba49d078464d4ee251d0a83d36", "fields": {"nom_de_la_commune": "CHAMBON LE CHATEAU", "libell_d_acheminement": "CHAMBON LE CHATEAU", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48038"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16699a4b66566708045b1a95c82ccd980cdda21", "fields": {"code_postal": "48230", "code_commune_insee": "48039", "libell_d_acheminement": "CHANAC", "ligne_5": "LE VILLARD", "nom_de_la_commune": "CHANAC", "coordonnees_gps": [44.4596098281, 3.3408753793]}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643e364bb1c34e94526afed4b3abf7bce892150a", "fields": {"nom_de_la_commune": "CHASTANIER", "libell_d_acheminement": "CHASTANIER", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48041"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd039044c3e883495090aef6a8923babe6b9b72", "fields": {"nom_de_la_commune": "CHAUDEYRAC", "libell_d_acheminement": "CHAUDEYRAC", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48045"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eedfdca4fb109b9741d718f1ab2adb0b989ebb51", "fields": {"nom_de_la_commune": "CHAULHAC", "libell_d_acheminement": "CHAULHAC", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48046"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f7d7007659ba3319d7ac5993be4c2f3980b565", "fields": {"nom_de_la_commune": "ESCLANEDES", "libell_d_acheminement": "ESCLANEDES", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48056"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ac04e0499090f45449995f4460834296e451f8", "fields": {"nom_de_la_commune": "LA FAGE MONTIVERNOUX", "libell_d_acheminement": "LA FAGE MONTIVERNOUX", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48058"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc0d88230cdc94fc3a4c3e729f720d729f9f97e", "fields": {"nom_de_la_commune": "LA FAGE ST JULIEN", "libell_d_acheminement": "LA FAGE ST JULIEN", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48059"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4759ada334e82464f997abee7d8c4126731c6279", "fields": {"nom_de_la_commune": "FAU DE PEYRE", "libell_d_acheminement": "FAU DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48060"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e9c58d8d4947e046a6f78d2363624efc38abca", "fields": {"nom_de_la_commune": "FLORAC TROIS RIVIERES", "libell_d_acheminement": "FLORAC TROIS RIVIERES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48061"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06bc04e68aee98decb8b143e60775ee5096ace8", "fields": {"nom_de_la_commune": "FONTANS", "libell_d_acheminement": "FONTANS", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48063"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e653e7a1ecba9699b72ff27a9fb0b345bef24279", "fields": {"nom_de_la_commune": "JAVOLS", "libell_d_acheminement": "JAVOLS", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48076"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22f27c0c9d2a83fe01394d86183506ad95f55f4", "fields": {"nom_de_la_commune": "LAJO", "libell_d_acheminement": "LAJO", "code_postal": "48120", "coordonnees_gps": [44.8002915136, 3.42996631483], "code_commune_insee": "48079"}, "geometry": {"type": "Point", "coordinates": [3.42996631483, 44.8002915136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34004bf1d7765756b6024e8419b15b004d8c2588", "fields": {"nom_de_la_commune": "LE MALZIEU VILLE", "libell_d_acheminement": "LE MALZIEU VILLE", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48090"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc3a0c1c6757230fd2981bae99e47780066fd31e", "fields": {"nom_de_la_commune": "LE MASSEGROS", "libell_d_acheminement": "LE MASSEGROS", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48094"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c115afd52d12a6493c4efe5a3d82deb6595db16f", "fields": {"nom_de_la_commune": "MOLEZON", "libell_d_acheminement": "MOLEZON", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48098"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d8a877d50762565babe3eddd66ac288ade4b2e", "fields": {"nom_de_la_commune": "MONTBRUN", "libell_d_acheminement": "MONTBRUN", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48101"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13c6d0ccc593c25889bf7bff4b13b0ba0b65b75", "fields": {"code_postal": "48300", "code_commune_insee": "48105", "libell_d_acheminement": "NAUSSAC FONTANES", "ligne_5": "FONTANES", "nom_de_la_commune": "NAUSSAC FONTANES", "coordonnees_gps": [44.6949172347, 3.79841314883]}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e698f71814f6a8fda19e320b47d8c27d6e803272", "fields": {"nom_de_la_commune": "NOALHAC", "libell_d_acheminement": "NOALHAC", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48106"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c5b35b26b645194550558850a77e9ea198a04a", "fields": {"nom_de_la_commune": "LA PANOUSE", "libell_d_acheminement": "LA PANOUSE", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48108"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f19dd6538c7ad828e6216ccb4240b0d4f8b14a1", "fields": {"nom_de_la_commune": "LE RECOUX", "libell_d_acheminement": "LE RECOUX", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48125"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896a524e82c2dc9c51e8177e0b4f642194e06ec7", "fields": {"nom_de_la_commune": "RIEUTORT DE RANDON", "libell_d_acheminement": "RIEUTORT DE RANDON", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48127"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47e54717e1bba7bda0c6953bdeec9356becfb3c", "fields": {"nom_de_la_commune": "ST AMANS", "libell_d_acheminement": "ST AMANS", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48133"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e184851d739ccd5b5a940ed6fbb31ef286212f", "fields": {"nom_de_la_commune": "ST DENIS EN MARGERIDE", "libell_d_acheminement": "ST DENIS EN MARGERIDE", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48145"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d60cb323c3ddd9a664082bc37a965c9f6a9cf93e", "fields": {"nom_de_la_commune": "STE ENIMIE", "libell_d_acheminement": "STE ENIMIE", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48146"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0921e478c57d686f73d06abbf5d4bfc35d4a7b6f", "fields": {"nom_de_la_commune": "ST GEORGES DE LEVEJAC", "libell_d_acheminement": "ST GEORGES DE LEVEJAC", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48154"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9689532ee48abcffe9842c968511d607e9be12d7", "fields": {"nom_de_la_commune": "ST GERMAIN DU TEIL", "libell_d_acheminement": "ST GERMAIN DU TEIL", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48156"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f720d2a54ea384b94981e27a6e16b8ef462ba1c4", "fields": {"nom_de_la_commune": "ST JEAN LA FOUILLOUSE", "libell_d_acheminement": "ST JEAN LA FOUILLOUSE", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48160"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d698549282bde5be8e317da596b407f2c339c2", "fields": {"code_postal": "48400", "code_commune_insee": "48162", "libell_d_acheminement": "CANS ET CEVENNES", "ligne_5": "ST LAURENT DE TREVES", "nom_de_la_commune": "CANS ET CEVENNES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a177e4d28249ba8359f8fcb691809bfd2b2e7331", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48177"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7006abad356eaffed3818a41af00fb947c9217bd", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48184"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b88b872018e38d735d83aa372271bd169bbff79", "fields": {"nom_de_la_commune": "TRELANS", "libell_d_acheminement": "TRELANS", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48192"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef66f8ccd2c92bca70c98907254e5494f5ce539", "fields": {"nom_de_la_commune": "VEBRON", "libell_d_acheminement": "VEBRON", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48193"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cb8ea10f7ffee22d8f2150619629f0c6b3bb74", "fields": {"nom_de_la_commune": "VILLEFORT", "libell_d_acheminement": "VILLEFORT", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48198"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f15b2f33c15c84c529886f9046130599ea4225", "fields": {"code_postal": "49700", "code_commune_insee": "49003", "libell_d_acheminement": "TUFFALUN", "ligne_5": "AMBILLOU CHATEAU", "nom_de_la_commune": "TUFFALUN", "coordonnees_gps": [47.2078633163, -0.289977588534]}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbdd1392a45ae5ead23f1ec53c2b5e6c46932b5", "fields": {"code_postal": "49700", "code_commune_insee": "49003", "libell_d_acheminement": "TUFFALUN", "ligne_5": "NOYANT LA PLAINE", "nom_de_la_commune": "TUFFALUN", "coordonnees_gps": [47.2078633163, -0.289977588534]}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97c43577585da1c6e04d0e4f8c6b08dae5a1f71", "fields": {"nom_de_la_commune": "AUVERSE", "libell_d_acheminement": "AUVERSE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49013"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeca393dd4eeebdf5fb54486bc8c45e0eea07159", "fields": {"nom_de_la_commune": "AVIRE", "libell_d_acheminement": "AVIRE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49014"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda7dba3e19bdaaced9df0060263d463fc56dacb", "fields": {"nom_de_la_commune": "AVRILLE", "libell_d_acheminement": "AVRILLE", "code_postal": "49240", "coordonnees_gps": [47.505372368, -0.600668349269], "code_commune_insee": "49015"}, "geometry": {"type": "Point", "coordinates": [-0.600668349269, 47.505372368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9546ff3169b6d187949c9e7e337d48b09e7ecd9f", "fields": {"nom_de_la_commune": "BARACE", "libell_d_acheminement": "BARACE", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49017"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6184e9393546c48253369dbfec672e5046a91b5f", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "BOCE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28342a7a44d36c7ed8e3d880d49cf09ce3f045c0", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CLEFS VAL D ANJOU", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969f6beb44cf6043d0d0c76a8f88178dc07cc08b", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "PONTIGNE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25e973565fe0ae5c9b5e6cb4ba312e506c94d53", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "VAULANDRY", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b700d603fd8fe06f91d50fa7aa6dcac8b7d7507", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "ANDREZE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47d6639e43f0883ff903c4182dc021824f0b573", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LA CHAPELLE DU GENET", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6defa8c8729396ebca2d1c8555b13d4862a1dc53", "fields": {"code_postal": "49320", "code_commune_insee": "49029", "libell_d_acheminement": "BLAISON ST SULPICE", "ligne_5": "GOHIER", "nom_de_la_commune": "BLAISON ST SULPICE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c668b4d0aabd0c6d60296418124bd49ea1d97eb8", "fields": {"nom_de_la_commune": "BLOU", "libell_d_acheminement": "BLOU", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49030"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa86ec5b62a4a0eaaef8e951d39156863111db1", "fields": {"nom_de_la_commune": "BRISSAC QUINCE", "libell_d_acheminement": "BRISSAC QUINCE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49050"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e0827f8f0bc19a02dd290b8c345bdb8fbaf3b1", "fields": {"nom_de_la_commune": "CANDE", "libell_d_acheminement": "CANDE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49054"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e675cc4d196b4553bec5cd4f08e7932100d57102", "fields": {"nom_de_la_commune": "CANTENAY EPINARD", "libell_d_acheminement": "CANTENAY EPINARD", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49055"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2f748d15c0b4297e69045dbbf98da1bd4aa281", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "CHAMPTOCEAUX", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796dc3f1fe82f54720fdc6bc7413795fc812da7d", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "ST CHRISTOPHE LA COUPERIE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e01d91a6609ce2558e6bfb77272fd8f8d0ed20a", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "ST SAUVEUR DE LANDEMONT", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14320e0feb602cbbf9975af07c2fdb4c4a370cdb", "fields": {"code_postal": "49530", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "LIRE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3221427995, -1.26040062028]}, "geometry": {"type": "Point", "coordinates": [-1.26040062028, 47.3221427995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8754f7f568b65561991eb58b2e70ec6a8d014b", "fields": {"nom_de_la_commune": "CHANTELOUP LES BOIS", "libell_d_acheminement": "CHANTELOUP LES BOIS", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49070"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50858702dc2ff93b2163548ddeeee37628eeb9de", "fields": {"nom_de_la_commune": "CHAUDEFONDS SUR LAYON", "libell_d_acheminement": "CHAUDEFONDS SUR LAYON", "code_postal": "49290", "coordonnees_gps": [47.3431019383, -0.806177214608], "code_commune_insee": "49082"}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234ab116035d73102e4d970227341a22586c042f", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LES GARDES", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1caa99e7dc7e3009297edd50ce9c9b83455067e1", "fields": {"nom_de_la_commune": "CORNILLE LES CAVES", "libell_d_acheminement": "CORNILLE LES CAVES", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49107"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6533b1ebd56237b340942cc048a19b49cec3d2af", "fields": {"nom_de_la_commune": "CORZE", "libell_d_acheminement": "CORZE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49110"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e55504457e5f237b623307aa2d55b293c5396a", "fields": {"nom_de_la_commune": "LE COUDRAY MACOUARD", "libell_d_acheminement": "LE COUDRAY MACOUARD", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49112"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21adfe4789f2b40fc936a9bb06bfc8a8a194eee7", "fields": {"nom_de_la_commune": "DOUE LA FONTAINE", "libell_d_acheminement": "DOUE LA FONTAINE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49125"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8553bf9fb68104a62a7b1cf615599aca6e4d42e", "fields": {"nom_de_la_commune": "DURTAL", "libell_d_acheminement": "DURTAL", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49127"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d58b2ef10745679924e575b773e2cb6b775fe8", "fields": {"nom_de_la_commune": "EPIEDS", "libell_d_acheminement": "EPIEDS", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49131"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987918ac8d43f068d09d9e82bdc07d583be42b17", "fields": {"code_postal": "49250", "code_commune_insee": "49138", "libell_d_acheminement": "LES BOIS D ANJOU", "ligne_5": "BRION", "nom_de_la_commune": "LES BOIS D ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6136e1a20e2008d8ecf683ec0c8c3992b83797d", "fields": {"code_postal": "49250", "code_commune_insee": "49138", "libell_d_acheminement": "LES BOIS D ANJOU", "ligne_5": "ST GEORGES DU BOIS", "nom_de_la_commune": "LES BOIS D ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb4ac27582ce1fffe9c8060e71ad16ee7d5e007", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49141"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c735c8fe3d49e15806a4366eca4fc30eb2747037", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "TREVES CUNAULT", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099e72f2729b7f5a0e721ef6adab6dab3b1a2605", "fields": {"nom_de_la_commune": "CHAUMONT EN VEXIN", "libell_d_acheminement": "CHAUMONT EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60143"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a9a7fbff205c5c2c72bd02c80fc70b2a090c9c", "fields": {"nom_de_la_commune": "CHELLES", "libell_d_acheminement": "CHELLES", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60145"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f3c9c884254827262b7adc335aa869d18b0fa7", "fields": {"nom_de_la_commune": "CHOISY AU BAC", "libell_d_acheminement": "CHOISY AU BAC", "code_postal": "60750", "coordonnees_gps": [49.4422563272, 2.89617973742], "code_commune_insee": "60151"}, "geometry": {"type": "Point", "coordinates": [2.89617973742, 49.4422563272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e82090deed83fa6196954796dbba1b2dfd914f", "fields": {"nom_de_la_commune": "CINQUEUX", "libell_d_acheminement": "CINQUEUX", "code_postal": "60940", "coordonnees_gps": [49.322780883, 2.53673238341], "code_commune_insee": "60154"}, "geometry": {"type": "Point", "coordinates": [2.53673238341, 49.322780883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54954b50ea65bc1a9476138552fd7d2ec84e1fbe", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60161"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2759a5162ca21f1b0467d57249b51c857b5b29d", "fields": {"nom_de_la_commune": "CORBEIL CERF", "libell_d_acheminement": "CORBEIL CERF", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60162"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f278f0c5b3bba580eb3a7d6120def78bb895da", "fields": {"nom_de_la_commune": "CRAMOISY", "libell_d_acheminement": "CRAMOISY", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60173"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fc2a705fbdfe388dde9d100b76de66f8d1f5e9", "fields": {"nom_de_la_commune": "CRAPEAUMESNIL", "libell_d_acheminement": "CRAPEAUMESNIL", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60174"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff309876e6ce6c4b655f5acca2979db93a767684", "fields": {"nom_de_la_commune": "CRESSONSACQ", "libell_d_acheminement": "CRESSONSACQ", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60177"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4428adf49b79731df70cc5e5942611ea20786dd", "fields": {"nom_de_la_commune": "CRISOLLES", "libell_d_acheminement": "CRISOLLES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60181"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88232285b67414b2eb9560dbf044744590a08be0", "fields": {"nom_de_la_commune": "CROUTOY", "libell_d_acheminement": "CROUTOY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60184"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57c19c07e5f69d539462325129c57a987f9da54", "fields": {"nom_de_la_commune": "CUIGY EN BRAY", "libell_d_acheminement": "CUIGY EN BRAY", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60187"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b48f402c0642581ce084bf77b19daafbe23987", "fields": {"nom_de_la_commune": "CUISE LA MOTTE", "libell_d_acheminement": "CUISE LA MOTTE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60188"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba86751aa5f5180a8047bdc0bc49d1424ece381b", "fields": {"nom_de_la_commune": "DELINCOURT", "libell_d_acheminement": "DELINCOURT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60195"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc01b748ef7e4796c79c4c8690e26a8625c3ecb", "fields": {"nom_de_la_commune": "DIEUDONNE", "libell_d_acheminement": "DIEUDONNE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60197"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62901256e7407576d1b135f36a0010f08536c028", "fields": {"nom_de_la_commune": "DOMFRONT", "libell_d_acheminement": "DOMFRONT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60200"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2798d370365f0ec8caa4992ff6778fe41527e072", "fields": {"nom_de_la_commune": "ELENCOURT", "libell_d_acheminement": "ELENCOURT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60205"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a16478c61cb348fb6dd524e1e3b0cfdf3332c0", "fields": {"nom_de_la_commune": "ERAGNY SUR EPTE", "libell_d_acheminement": "ERAGNY SUR EPTE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60211"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92182345cbcc7185c118e3e93a93cc45f23dc7b8", "fields": {"nom_de_la_commune": "ERCUIS", "libell_d_acheminement": "ERCUIS", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60212"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55cd89efda29c099d0fccde454e4cfc8b306fe30", "fields": {"nom_de_la_commune": "ESPAUBOURG", "libell_d_acheminement": "ESPAUBOURG", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60220"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0990159e441b42fb4389d683aaebbd0d34e51ada", "fields": {"nom_de_la_commune": "ESQUENNOY", "libell_d_acheminement": "ESQUENNOY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60221"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7133a41d88a82a21c1774de27fa6e7b63bc91f3d", "fields": {"nom_de_la_commune": "ETOUY", "libell_d_acheminement": "ETOUY", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60225"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05836a11cfbc27910f532fd3c33f401fecee13ca", "fields": {"nom_de_la_commune": "LE FAYEL", "libell_d_acheminement": "LE FAYEL", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60229"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29e392802b9f57e3e07729da6dc97c9c36ae9e0f", "fields": {"nom_de_la_commune": "FLEURINES", "libell_d_acheminement": "FLEURINES", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60238"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1beba6007665c83d8120591f9a118c9f89c5f3", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60239"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ebcfe504e93ea75aeb69b123cbb6ceef74d7e08", "fields": {"nom_de_la_commune": "FONTAINE BONNELEAU", "libell_d_acheminement": "FONTAINE BONNELEAU", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60240"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b1cb909a68955d9e9b8641ddde73b3c8ef6e06", "fields": {"nom_de_la_commune": "FOUILLEUSE", "libell_d_acheminement": "FOUILLEUSE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60247"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20785317330a45d2227f27ed8b2d7376eacab70b", "fields": {"nom_de_la_commune": "FOULANGUES", "libell_d_acheminement": "FOULANGUES", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60249"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735d214b0a1404a3379d68551d594df204f043c1", "fields": {"nom_de_la_commune": "FOUQUENIES", "libell_d_acheminement": "FOUQUENIES", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60250"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f9af62fed24d8b09643c85a6d51a12c84c5325", "fields": {"nom_de_la_commune": "FRESNIERES", "libell_d_acheminement": "FRESNIERES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60258"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bef18a30256626bbac2304846941a12d8c7455f", "fields": {"nom_de_la_commune": "LE GALLET", "libell_d_acheminement": "LE GALLET", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60267"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1179c061266ec78a351db1d2decc6d0f9e777c", "fields": {"nom_de_la_commune": "GOURCHELLES", "libell_d_acheminement": "GOURCHELLES", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60280"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c46fec9d3d3c2bbd9a458520e63f88b71b967d", "fields": {"nom_de_la_commune": "GRANDVILLERS AUX BOIS", "libell_d_acheminement": "GRANDVILLERS AUX BOIS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60285"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "803b2137c2600ae6dafcb2f5014473c4cbeeb236", "fields": {"nom_de_la_commune": "HANNACHES", "libell_d_acheminement": "HANNACHES", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60296"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae485061f7e5ffd4ab17316a5ca54480d12037c3", "fields": {"nom_de_la_commune": "HAUTE EPINE", "libell_d_acheminement": "HAUTE EPINE", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60304"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3377e1a310373baaf12e746b0bca95ff2b5b290d", "fields": {"nom_de_la_commune": "HERCHIES", "libell_d_acheminement": "HERCHIES", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60310"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25be0020907f117021b1d63fe68a518bb8861fc7", "fields": {"nom_de_la_commune": "LA HERELLE", "libell_d_acheminement": "LA HERELLE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60311"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8fc660a1c95a6785bc827b0969ed11d5fa2f2c", "fields": {"nom_de_la_commune": "IVORS", "libell_d_acheminement": "IVORS", "code_postal": "60141", "coordonnees_gps": [49.1992405168, 3.02501632067], "code_commune_insee": "60320"}, "geometry": {"type": "Point", "coordinates": [3.02501632067, 49.1992405168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891f5a8847b8ad53ca7b3ca5d81428ae64ef1f31", "fields": {"nom_de_la_commune": "LABOSSE", "libell_d_acheminement": "LABOSSE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60331"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d987710be808b33684b8038a1b4aeb9d594c8170", "fields": {"nom_de_la_commune": "LAIGNEVILLE", "libell_d_acheminement": "LAIGNEVILLE", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60342"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76083744231af517417ebe31da2a6a5645102e8", "fields": {"nom_de_la_commune": "LANNOY CUILLERE", "libell_d_acheminement": "LANNOY CUILLERE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60347"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f38923ee2709960620481c8938243b8aa2759d8", "fields": {"nom_de_la_commune": "LARBROYE", "libell_d_acheminement": "LARBROYE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60348"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ddd6c29a8ecdf29aa8da7b55475ea9457882cc", "fields": {"nom_de_la_commune": "LATTAINVILLE", "libell_d_acheminement": "LATTAINVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60352"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6905acb734e4786d6b03828cb3cc066d0ce7390", "fields": {"nom_de_la_commune": "LAVERSINES", "libell_d_acheminement": "LAVERSINES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60355"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765ddb969517ba4ab58edda2aa9e2bf6e08b0d17", "fields": {"nom_de_la_commune": "LAVILLETERTRE", "libell_d_acheminement": "LAVILLETERTRE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60356"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b943b2448349cd933c73b498617c36e5e8ddfa88", "fields": {"nom_de_la_commune": "LIANCOURT", "libell_d_acheminement": "LIANCOURT", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60360"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7081f8f408072cfb34169eb034da2922cee05de7", "fields": {"nom_de_la_commune": "LIHUS", "libell_d_acheminement": "LIHUS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60365"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc5eac40d41635b3ad8f1f3d10f3aafb0ec13120", "fields": {"nom_de_la_commune": "LITZ", "libell_d_acheminement": "LITZ", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60366"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60fbe282be1255fa65c0ee8d5d542e2f62ac03e", "fields": {"nom_de_la_commune": "LUCHY", "libell_d_acheminement": "LUCHY", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60372"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a53e7a361f81d63693706664c8d42c67e5a27e93", "fields": {"nom_de_la_commune": "MACHEMONT", "libell_d_acheminement": "MACHEMONT", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60373"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaed0e7b86c48fe04fdcfbc74f5043f57ff912fd", "fields": {"nom_de_la_commune": "MAREUIL LA MOTTE", "libell_d_acheminement": "MAREUIL LA MOTTE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60379"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240818faa841a19f7d95479250b6b68f75d2ecb1", "fields": {"nom_de_la_commune": "MARTINCOURT", "libell_d_acheminement": "MARTINCOURT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60388"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5386f40496123363665a6448c5656a2544e9eb", "fields": {"nom_de_la_commune": "MELICOCQ", "libell_d_acheminement": "MELICOCQ", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60392"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e40ed5e01b830bccc55f457923d57c72bf2f0c", "fields": {"nom_de_la_commune": "LE MESNIL EN THELLE", "libell_d_acheminement": "LE MESNIL EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60398"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48ca6905c85727bf959957f341b77bcc9cfa78f", "fields": {"nom_de_la_commune": "LE MESNIL ST FIRMIN", "libell_d_acheminement": "LE MESNIL ST FIRMIN", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60399"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec728d8d1cba859c8f49fff92922988b3816908", "fields": {"nom_de_la_commune": "MOGNEVILLE", "libell_d_acheminement": "MOGNEVILLE", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60404"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d114b0ec5b342a7229d72026b4bb6925f5c38641", "fields": {"nom_de_la_commune": "MONCHY ST ELOI", "libell_d_acheminement": "MONCHY ST ELOI", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60409"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e41c2b6e49d822d2c02743c70fd959cc078dfa", "fields": {"nom_de_la_commune": "MONTGERAIN", "libell_d_acheminement": "MONTGERAIN", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60416"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783dbadb2b77ef59530ffb15ad3b4bd602c782fb", "fields": {"nom_de_la_commune": "MONTIERS", "libell_d_acheminement": "MONTIERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60418"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548434eb97cb9f731a17e08f9e24569ff44d5ac7", "fields": {"nom_de_la_commune": "MONTREUIL SUR BRECHE", "libell_d_acheminement": "MONTREUIL SUR BRECHE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60425"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "335b6bf486dbba2e0fc6fefb3befe1b771801fb0", "fields": {"nom_de_la_commune": "MOUY", "libell_d_acheminement": "MOUY", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60439"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b036ac98948686843a9f81e99939b329980b51", "fields": {"nom_de_la_commune": "MOYENNEVILLE", "libell_d_acheminement": "MOYENNEVILLE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60440"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743adf65095e3bb9da9eb19e3e6364ab07327d8c", "fields": {"nom_de_la_commune": "NEUVILLE BOSC", "libell_d_acheminement": "NEUVILLE BOSC", "code_postal": "60119", "coordonnees_gps": [49.2082498189, 2.02680448523], "code_commune_insee": "60452"}, "geometry": {"type": "Point", "coordinates": [2.02680448523, 49.2082498189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e935e358e1b084c4a70bfa2da96f1adea32d8c", "fields": {"nom_de_la_commune": "LA NEUVILLE GARNIER", "libell_d_acheminement": "LA NEUVILLE GARNIER", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60455"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b286cde10a1abc17cc8a19dc5eb8cbf7ce18f127", "fields": {"nom_de_la_commune": "LA NEUVILLE SUR OUDEUIL", "libell_d_acheminement": "LA NEUVILLE SUR OUDEUIL", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60458"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e4b1b47a9a3c8afc051287bd9101412cb35316", "fields": {"nom_de_la_commune": "NIVILLERS", "libell_d_acheminement": "NIVILLERS", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60461"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a47a792c0335ec1a9239cc7c9361464eb8780c73", "fields": {"nom_de_la_commune": "NOURARD LE FRANC", "libell_d_acheminement": "NOURARD LE FRANC", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60468"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d326f9593f8df3ead160ddb08e7d206a777e1a", "fields": {"nom_de_la_commune": "OMECOURT", "libell_d_acheminement": "OMECOURT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60476"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7fa7b34ab874d04e69c12edaea6acfba19a085", "fields": {"nom_de_la_commune": "ORVILLERS SOREL", "libell_d_acheminement": "ORVILLERS SOREL", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60483"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95f3815238eb35471c3ffa52e8f286bfe156ed1", "fields": {"nom_de_la_commune": "OUDEUIL", "libell_d_acheminement": "OUDEUIL", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60484"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07b364ef670deddb619b80798e92ae9a0e79e76", "fields": {"nom_de_la_commune": "OURSEL MAISON", "libell_d_acheminement": "OURSEL MAISON", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60485"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01744f77cf2da2c6ddbf245f6da41998ac16d2ca", "fields": {"nom_de_la_commune": "PIERREFONDS", "libell_d_acheminement": "PIERREFONDS", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60491"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39e3d163aef86d3fa3489e8858e2530a3c32a32", "fields": {"nom_de_la_commune": "PISSELEU", "libell_d_acheminement": "PISSELEU", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60493"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14d257e5e1174cada3263558d48d9d7872a5ea3d", "fields": {"nom_de_la_commune": "LE PLOYRON", "libell_d_acheminement": "LE PLOYRON", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60503"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd7657f9388fb53ec8acdd66d8cad45735cc797", "fields": {"nom_de_la_commune": "PONT STE MAXENCE", "libell_d_acheminement": "PONT STE MAXENCE", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60509"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8733c384207a68ef56eee2e7e6f1b76b90ab7d2d", "fields": {"nom_de_la_commune": "LE QUESNEL AUBRY", "libell_d_acheminement": "LE QUESNEL AUBRY", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60520"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bacea716d16863ec975196eeade06637babd3fd", "fields": {"nom_de_la_commune": "QUINCAMPOIX FLEUZY", "libell_d_acheminement": "QUINCAMPOIX FLEUZY", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60521"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8209f9005ea13ab6e3ae4df0f4d0691fcf48168", "fields": {"nom_de_la_commune": "QUINQUEMPOIX", "libell_d_acheminement": "QUINQUEMPOIX", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60522"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a24b22ce9f69e9dc6338857631ecea9ce6e130f", "fields": {"nom_de_la_commune": "RESSONS SUR MATZ", "libell_d_acheminement": "RESSONS SUR MATZ", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60533"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9642adedf0f323f07b3aea73a6b2c3418330101e", "fields": {"nom_de_la_commune": "ROCQUENCOURT", "libell_d_acheminement": "ROCQUENCOURT", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60544"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc001b1cfc09ae01cff36a2d2ae9e23e40f54d5d", "fields": {"nom_de_la_commune": "ROSOY EN MULTIEN", "libell_d_acheminement": "ROSOY EN MULTIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60548"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf552a8a7e7da441f0533435f1699e9bf2f8243d", "fields": {"nom_de_la_commune": "ROTHOIS", "libell_d_acheminement": "ROTHOIS", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60550"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b649e5ee6ce4b17ed9c9d3217dc9b44ffa2a8ae0", "fields": {"nom_de_la_commune": "ROUSSELOY", "libell_d_acheminement": "ROUSSELOY", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60551"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942296d84739afcbc7a8ffc5590c8771dba44356", "fields": {"nom_de_la_commune": "ROUVILLERS", "libell_d_acheminement": "ROUVILLERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60553"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6ac81dde63be7067a727fc7e2ce58695e9aad3", "fields": {"nom_de_la_commune": "ROUVRES EN MULTIEN", "libell_d_acheminement": "ROUVRES EN MULTIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60554"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2996c22091a64a869201939419fa26d9414407", "fields": {"nom_de_la_commune": "ROYAUCOURT", "libell_d_acheminement": "ROYAUCOURT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60556"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b9ced7e59dc53f8b5512943ed5f16dfc992705", "fields": {"nom_de_la_commune": "SACY LE GRAND", "libell_d_acheminement": "SACY LE GRAND", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60562"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c79a645a3f0bc47f37fbd4c8641ca29c875c27", "fields": {"nom_de_la_commune": "SACY LE PETIT", "libell_d_acheminement": "SACY LE PETIT", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60563"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6b37cbd72f4cece1de3c6188c2b67ad327cd35", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60566"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90904fe30fb131a193d757cbd5a0c9372d44588", "fields": {"nom_de_la_commune": "ST CREPIN IBOUVILLERS", "libell_d_acheminement": "ST CREPIN IBOUVILLERS", "code_postal": "60149", "coordonnees_gps": [49.2647702615, 2.06451028486], "code_commune_insee": "60570"}, "geometry": {"type": "Point", "coordinates": [2.06451028486, 49.2647702615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9ad467b35ad223f6164101e297ae7a1c423378", "fields": {"code_postal": "60790", "code_commune_insee": "60570", "libell_d_acheminement": "ST CREPIN IBOUVILLERS", "ligne_5": "MONTHERLANT", "nom_de_la_commune": "ST CREPIN IBOUVILLERS", "coordonnees_gps": [49.2852248633, 2.06991456979]}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981b239e194e894cf15303d5a75562755b3d3356", "fields": {"nom_de_la_commune": "SAINTINES", "libell_d_acheminement": "SAINTINES", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60578"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f639c7fde622d748062cf1244066419dffab21b", "fields": {"nom_de_la_commune": "ST LEGER AUX BOIS", "libell_d_acheminement": "ST LEGER AUX BOIS", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60582"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32412291b420a168ff7f79711153278f00131f6", "fields": {"nom_de_la_commune": "ST LEU D ESSERENT", "libell_d_acheminement": "ST LEU D ESSERENT", "code_postal": "60340", "coordonnees_gps": [49.2256444487, 2.40347710853], "code_commune_insee": "60584"}, "geometry": {"type": "Point", "coordinates": [2.40347710853, 49.2256444487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4028e7a7e5009b835a27eb24a02e0af89627de9", "fields": {"nom_de_la_commune": "ST MARTIN AUX BOIS", "libell_d_acheminement": "ST MARTIN AUX BOIS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60585"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5785e7660ae36ef409537c49726fec886d2dd2b", "fields": {"nom_de_la_commune": "ST MARTIN LE NOEUD", "libell_d_acheminement": "ST MARTIN LE NOEUD", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60586"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abc5b31b5c52361d84b6ebbc9e6b5fde962845e", "fields": {"nom_de_la_commune": "ST MARTIN LONGUEAU", "libell_d_acheminement": "ST MARTIN LONGUEAU", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60587"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf924168120270e6a386ec06d8248ca7f9a63a3", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60591"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b30eefe5724a84710c7ee72bb18beec29dfb42f8", "fields": {"nom_de_la_commune": "ST PIERRE ES CHAMPS", "libell_d_acheminement": "ST PIERRE ES CHAMPS", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60592"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "653204cba9cdb553cd97e141e59cab2370ad708e", "fields": {"nom_de_la_commune": "ST VALERY", "libell_d_acheminement": "ST VALERY", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60602"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d5ed853d025d4290697350ce10eb857502ed5a", "fields": {"nom_de_la_commune": "LE PORT", "libell_d_acheminement": "LE PORT", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09231"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930b7ef931b7db8c52df9160ae345fc19cb67335", "fields": {"nom_de_la_commune": "PAMIERS", "libell_d_acheminement": "PAMIERS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09225"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee804aeff5777bbe678ec799b9902edb5e74b9f", "fields": {"nom_de_la_commune": "REGAT", "libell_d_acheminement": "REGAT", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09243"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4bdf0847483fc9fa05b49139515ba99a702d892", "fields": {"nom_de_la_commune": "LES NOES PRES TROYES", "libell_d_acheminement": "LES NOES PRES TROYES", "code_postal": "10420", "coordonnees_gps": [48.303320135, 4.0410683197], "code_commune_insee": "10265"}, "geometry": {"type": "Point", "coordinates": [4.0410683197, 48.303320135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31484b16c2123d4edabc772329a661adf3e4843f", "fields": {"nom_de_la_commune": "MONTREUIL SUR BARSE", "libell_d_acheminement": "MONTREUIL SUR BARSE", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10255"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f284b5a4dc1210cc41da42de4209c41cbe77a47", "fields": {"nom_de_la_commune": "NOE LES MALLETS", "libell_d_acheminement": "NOE LES MALLETS", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10264"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb485f39ae68909524fd610f484cc69b469e2b6f", "fields": {"nom_de_la_commune": "MESNIL ST LOUP", "libell_d_acheminement": "MESNIL ST LOUP", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10237"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00847d0461d7adb1f561a8d0a137981a48eb837", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10272"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4df7093759dacfab0e53d9e3e8909a889382114", "fields": {"code_postal": "09200", "code_commune_insee": "09209", "libell_d_acheminement": "MONTJOIE EN COUSERANS", "ligne_5": "AUDINAC LES BAINS", "nom_de_la_commune": "MONTJOIE EN COUSERANS", "coordonnees_gps": [42.9618731428, 1.1680404037]}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fe26869ba340052e9dae9c010d1f0f9aa58276b", "fields": {"code_postal": "09400", "code_commune_insee": "09188", "libell_d_acheminement": "MERCUS GARRABET", "ligne_5": "AMPLAING", "nom_de_la_commune": "MERCUS GARRABET", "coordonnees_gps": [42.8458484074, 1.57117119842]}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa142ec2df1bc2ac92aaf11a89db996c289d20ef", "fields": {"nom_de_la_commune": "MONTOULIEU", "libell_d_acheminement": "MONTOULIEU", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09210"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7276a90bbab3c713976c90b8fce480f4a60fab36", "fields": {"nom_de_la_commune": "MOULIN NEUF", "libell_d_acheminement": "MOULIN NEUF", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09213"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe114af15c23ca262d1cc18c93a6adf35acb7106", "fields": {"nom_de_la_commune": "MONTAILLOU", "libell_d_acheminement": "MONTAILLOU", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09197"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea04ceb95f5f79474c00c48ddee05e6b220b4a9", "fields": {"nom_de_la_commune": "MIREPOIX", "libell_d_acheminement": "MIREPOIX", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09194"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e567b96aed9bd3050cc1f0db37775eacd6eafbe", "fields": {"nom_de_la_commune": "MIJANES", "libell_d_acheminement": "MIJANES", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09193"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dea81e903a4a90aa96e5587d4dabb75f57c1ac9", "fields": {"nom_de_la_commune": "ORGIBET", "libell_d_acheminement": "ORGIBET", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09219"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df78429fdde7d5da1a45cd378926a06702dd288", "fields": {"nom_de_la_commune": "PAILHES", "libell_d_acheminement": "PAILHES", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09224"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf272552fe04739d30cff244065c812e09306a74", "fields": {"nom_de_la_commune": "OUST", "libell_d_acheminement": "OUST", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09223"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47fcd532a09ad42a722d698165562c9137686a6", "fields": {"nom_de_la_commune": "VILLENEUVE DU PAREAGE", "libell_d_acheminement": "VILLENEUVE DU PAREAGE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09339"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968009a5fdcc710e3da84a98af432b66dc5a12a2", "fields": {"nom_de_la_commune": "BLAINCOURT SUR AUBE", "libell_d_acheminement": "BLAINCOURT SUR AUBE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10046"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac0ad07afdc19d91e267edc407f088250e1581b", "fields": {"nom_de_la_commune": "AVANT LES RAMERUPT", "libell_d_acheminement": "AVANT LES RAMERUPT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10021"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302dbe084090d416250571a7c8af702b6530cfbd", "fields": {"nom_de_la_commune": "BERCENAY LE HAYER", "libell_d_acheminement": "BERCENAY LE HAYER", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10038"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873702a77b9d9b04f224f0f031f924c5450f01ab", "fields": {"nom_de_la_commune": "BERCENAY EN OTHE", "libell_d_acheminement": "BERCENAY EN OTHE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10037"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b937c841e4df4851d28aec035d8aa32cdd1e0eb", "fields": {"nom_de_la_commune": "ARCIS SUR AUBE", "libell_d_acheminement": "ARCIS SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10006"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b248c88d870e718a4592b4398c0909eb3a6ec35", "fields": {"nom_de_la_commune": "BETIGNICOURT", "libell_d_acheminement": "BETIGNICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10044"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff00c3ea1ef048ea28d9d55015fe000360805025", "fields": {"nom_de_la_commune": "BOSSANCOURT", "libell_d_acheminement": "BOSSANCOURT", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10050"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a0de72ac3f958d4d7ae166f8a739c6e32b994a4", "fields": {"nom_de_la_commune": "BERULLE", "libell_d_acheminement": "BERULLE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10042"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6420c6e53c4f29592b2243a9b6b7d331958954", "fields": {"nom_de_la_commune": "AVREUIL", "libell_d_acheminement": "AVREUIL", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10024"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8cbba3f6c3e023e08f5c330eef790d80a883ac", "fields": {"nom_de_la_commune": "CRENEY PRES TROYES", "libell_d_acheminement": "CRENEY PRES TROYES", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10115"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c981c8040f29cbe68783ff138e7e025ddf4b7da", "fields": {"nom_de_la_commune": "CRESPY LE NEUF", "libell_d_acheminement": "CRESPY LE NEUF", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10117"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f76abce8e4e7b6856a90f9879833d9bc81b8e7", "fields": {"nom_de_la_commune": "FONTAINE MACON", "libell_d_acheminement": "FONTAINE MACON", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10153"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55fba7461b70e874002c0042789b20c78eeb190d", "fields": {"nom_de_la_commune": "COURTERANGES", "libell_d_acheminement": "COURTERANGES", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10110"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c0a90f7cb4d4335c6c5049aff0f6aab879ffe6", "fields": {"nom_de_la_commune": "CRESANTIGNES", "libell_d_acheminement": "CRESANTIGNES", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10116"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b151b68dc93fb08cbc63ffed674c224b9a72ee", "fields": {"nom_de_la_commune": "LES CROUTES", "libell_d_acheminement": "LES CROUTES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10118"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40998237229c47f08661d71b07de3f5af7a23725", "fields": {"nom_de_la_commune": "COUVIGNON", "libell_d_acheminement": "COUVIGNON", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10113"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826d2147c7c92f27f03f2a4e5ad95f9f2a23245c", "fields": {"nom_de_la_commune": "FRALIGNES", "libell_d_acheminement": "FRALIGNES", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10159"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f040e3225c8ac2f052402a22aa2d2b196fd38100", "fields": {"nom_de_la_commune": "FONTETTE", "libell_d_acheminement": "FONTETTE", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10155"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddc5476122e8cac4bf325e47886a6f4bd3c030e", "fields": {"nom_de_la_commune": "FULIGNY", "libell_d_acheminement": "FULIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10163"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bb53ad78959c51f2e68535cb6d2e8679074e4a3", "fields": {"nom_de_la_commune": "COURCELLES SUR VOIRE", "libell_d_acheminement": "COURCELLES SUR VOIRE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10105"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85767db61842f39adbc927b1057921f9e9860d6", "fields": {"nom_de_la_commune": "BRIENNE LA VIEILLE", "libell_d_acheminement": "BRIENNE LA VIEILLE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10063"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed5cb525419d2f762915af80304ac44f312b3eb", "fields": {"nom_de_la_commune": "CHAPELLE VALLON", "libell_d_acheminement": "CHAPELLE VALLON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10082"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482cf7acc3be46bd3898c0c465dacd976efdfae4", "fields": {"nom_de_la_commune": "CHAUCHIGNY", "libell_d_acheminement": "CHAUCHIGNY", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10090"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f9a49dd0934652ca9826b451acb7a5480dcdf8", "fields": {"nom_de_la_commune": "COURCEROY", "libell_d_acheminement": "COURCEROY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10106"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c604888347538e7f02f74da59758ca406e45da0", "fields": {"nom_de_la_commune": "CHAUDREY", "libell_d_acheminement": "CHAUDREY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10091"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0b16c9627cfa2152f5d263c32a5c773d8d888f", "fields": {"nom_de_la_commune": "CHARMOY", "libell_d_acheminement": "CHARMOY", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10085"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b855ab5300a28686df7684be3f7cc542a0dc46db", "fields": {"nom_de_la_commune": "BUXEUIL", "libell_d_acheminement": "BUXEUIL", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10068"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b564d88eba72908df96a81cf6f5316c0c5e730", "fields": {"nom_de_la_commune": "CHANNES", "libell_d_acheminement": "CHANNES", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10079"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd88c0397952abea7bf0dbb620f2b3b1859e8b45", "fields": {"nom_de_la_commune": "COCLOIS", "libell_d_acheminement": "COCLOIS", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10101"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7d755cc66d6280c8f74474c81372d22e1b6bd7", "fields": {"nom_de_la_commune": "PERTHES LES BRIENNE", "libell_d_acheminement": "PERTHES LES BRIENNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10285"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61463c49592070698ecf01bab7906a1f6dd28daf", "fields": {"nom_de_la_commune": "PARS LES CHAVANGES", "libell_d_acheminement": "PARS LES CHAVANGES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10279"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c622205e699ca3e91a595e682a8962b5520b72", "fields": {"nom_de_la_commune": "PARS LES ROMILLY", "libell_d_acheminement": "PARS LES ROMILLY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10280"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d00ec070e11978749b07177ce6fb569a09389cf", "fields": {"nom_de_la_commune": "PRECY ST MARTIN", "libell_d_acheminement": "PRECY ST MARTIN", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10304"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823ae22470c99429973bfeec2097a0d38cae4fa3", "fields": {"nom_de_la_commune": "PREMIERFAIT", "libell_d_acheminement": "PREMIERFAIT", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10305"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4ed47a0202837ff2f538b21b15c2ba46bc2555", "fields": {"nom_de_la_commune": "PRASLIN", "libell_d_acheminement": "PRASLIN", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10302"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e7936d6fdad47ffd0c82a6b43685de6758e2f0", "fields": {"nom_de_la_commune": "VILLE SUR RETOURNE", "libell_d_acheminement": "VILLE SUR RETOURNE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08484"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a375b129f975dcabe9699c5621014f947f1e4342", "fields": {"nom_de_la_commune": "VRIGNE AUX BOIS", "libell_d_acheminement": "VRIGNE AUX BOIS", "code_postal": "08330", "coordonnees_gps": [49.7370463134, 4.85637588742], "code_commune_insee": "08491"}, "geometry": {"type": "Point", "coordinates": [4.85637588742, 49.7370463134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84818cb2ca779f98ea718fdfbcb382c16385a633", "fields": {"nom_de_la_commune": "VILLERS SEMEUSE", "libell_d_acheminement": "VILLERS SEMEUSE", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08480"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781253f3d9f1fc41ea30e27393efd482b371e02c", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09002"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3976b4a4b4853e4bf648c2cc17001323428c7659", "fields": {"nom_de_la_commune": "YVERNAUMONT", "libell_d_acheminement": "YVERNAUMONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08503"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77d1e5a24eeb0f11b0ad84f613d4753f67a4651", "fields": {"nom_de_la_commune": "ARROUT", "libell_d_acheminement": "ARROUT", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09018"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b967430cdd462f314c5a5277282760dcd9b436", "fields": {"nom_de_la_commune": "BARJAC", "libell_d_acheminement": "BARJAC", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09037"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb6609a48a5d4ec33dc6635b79ea15f5974bc39", "fields": {"nom_de_la_commune": "AXIAT", "libell_d_acheminement": "AXIAT", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09031"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876924a1bbce4bd1a36ef2678bad4b208a4063a5", "fields": {"nom_de_la_commune": "ASCOU", "libell_d_acheminement": "ASCOU", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09023"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188f5a296bda0328e8680d56078ca812f4f5cc6f", "fields": {"nom_de_la_commune": "ALEU", "libell_d_acheminement": "ALEU", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09005"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff99aadb0fcdbb6e71968c655f78b54012d1ead", "fields": {"nom_de_la_commune": "LA BASTIDE DE BOUSIGNAC", "libell_d_acheminement": "LA BASTIDE DE BOUSIGNAC", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09039"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00ccc317fdf3d81c21b683870d8cbfa35b757cf", "fields": {"nom_de_la_commune": "LA BASTIDE DE LORDAT", "libell_d_acheminement": "LA BASTIDE DE LORDAT", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09040"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb582e72908c5fa2a2455d1c57e0f8ad5afd834", "fields": {"nom_de_la_commune": "LA BASTIDE DU SALAT", "libell_d_acheminement": "LA BASTIDE DU SALAT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09041"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca09c20da50712fe2b89cd4010bf97669238cae", "fields": {"nom_de_la_commune": "LA BASTIDE DE SEROU", "libell_d_acheminement": "LA BASTIDE DE SEROU", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09042"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b137ecad60da76a62b2b3460295df908ae1468a", "fields": {"nom_de_la_commune": "BONAC IRAZEIN", "libell_d_acheminement": "BONAC IRAZEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09059"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d231ae578d099bb6e492968dbbe3c9d48f50b33", "fields": {"nom_de_la_commune": "BETHMALE", "libell_d_acheminement": "BETHMALE", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09055"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c3b60872e6092b3c6a1b4eba7e44145016e854", "fields": {"nom_de_la_commune": "BENAIX", "libell_d_acheminement": "BENAIX", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09051"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7443eae824d6fa1b25a1bf828a8152e853116f87", "fields": {"nom_de_la_commune": "BOMPAS", "libell_d_acheminement": "BOMPAS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09058"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102dfdeeadd02e28a293f09a6bdd3a1370b2edc9", "fields": {"nom_de_la_commune": "BAULOU", "libell_d_acheminement": "BAULOU", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09044"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff6978fde0c945adfd4f46b090466116f79ef8e", "fields": {"nom_de_la_commune": "BELLOC", "libell_d_acheminement": "BELLOC", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09048"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89bd0833d06d69b70edc9b9eed2313f931138892", "fields": {"code_postal": "10120", "code_commune_insee": "10340", "libell_d_acheminement": "ST GERMAIN", "ligne_5": "CHEVILLELE", "nom_de_la_commune": "ST GERMAIN", "coordonnees_gps": [48.2420570868, 4.01115012406]}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f4be08f48f895e9536b71935d6b81e1d51f3a0", "fields": {"code_postal": "10240", "code_commune_insee": "10314", "libell_d_acheminement": "RAMERUPT", "ligne_5": "ROMAINES", "nom_de_la_commune": "RAMERUPT", "coordonnees_gps": [48.495152966, 4.31805671159]}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ddefbcd1b2ec98283fb258848d7f74d99bf7794", "fields": {"nom_de_la_commune": "ST ANDRE LES VERGERS", "libell_d_acheminement": "ST ANDRE LES VERGERS", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10333"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2a4943c85fa61a45d57e2d059d8206cd7fcbbc", "fields": {"nom_de_la_commune": "LA RIVIERE DE CORPS", "libell_d_acheminement": "LA RIVIERE DE CORPS", "code_postal": "10440", "coordonnees_gps": [48.277445493, 3.98700536658], "code_commune_insee": "10321"}, "geometry": {"type": "Point", "coordinates": [3.98700536658, 48.277445493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebe0ecffe535c9510856c35f781a3d4a3c25277", "fields": {"nom_de_la_commune": "PUITS ET NUISEMENT", "libell_d_acheminement": "PUITS ET NUISEMENT", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10310"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9f0dd8300b3b5f4dea3e552bb2992ccbd82b53", "fields": {"nom_de_la_commune": "ROSNAY L HOPITAL", "libell_d_acheminement": "ROSNAY L HOPITAL", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10326"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee57218c0bfbf4282d1d1032309771f95b5f205", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10340"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61384b3bebd1be03172506abf2d3f712f998392e", "fields": {"code_postal": "10150", "code_commune_insee": "10352", "libell_d_acheminement": "STE MAURE", "ligne_5": "CULOISON", "nom_de_la_commune": "STE MAURE", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4446653369e77115a6fe2f4d03f8d6d0dfcd6a", "fields": {"nom_de_la_commune": "ST LEGER SOUS MARGERIE", "libell_d_acheminement": "ST LEGER SOUS MARGERIE", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10346"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad46ef97cbca96dbba177b12ee401a6f4f28de75", "fields": {"nom_de_la_commune": "ST PARRES AUX TERTRES", "libell_d_acheminement": "ST PARRES AUX TERTRES", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10357"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b003d0ab1eb63d0030236f77073b8abbe45d47d1", "fields": {"nom_de_la_commune": "ST NABORD SUR AUBE", "libell_d_acheminement": "ST NABORD SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10354"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8bdba95bf489f1f25a6926eebfe0a18409d593", "fields": {"nom_de_la_commune": "ST THIBAULT", "libell_d_acheminement": "ST THIBAULT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10363"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fb05e1862e0e11804c2c377b58414058f4e8e1", "fields": {"nom_de_la_commune": "STE MAURE", "libell_d_acheminement": "STE MAURE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10352"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8a7f33dd450216ad4411fd717a0d267c1c1386", "fields": {"nom_de_la_commune": "ST OULPH", "libell_d_acheminement": "ST OULPH", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10356"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1c774377243fd676c121f803388159186cbb55", "fields": {"nom_de_la_commune": "SALON", "libell_d_acheminement": "SALON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10365"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99d54c992c60f307558681dbf2f74c10eafc28e", "fields": {"code_postal": "10700", "code_commune_insee": "10386", "libell_d_acheminement": "TROUANS", "ligne_5": "TROUAN LE GRAND", "nom_de_la_commune": "TROUANS", "coordonnees_gps": [48.5834551294, 4.16090274297]}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b028aaf635c2412e11ffe68207217f405c3a3f9", "fields": {"nom_de_la_commune": "VERPILLIERES SUR OURCE", "libell_d_acheminement": "VERPILLIERES SUR OURCE", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10404"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ecf13fc39b816b4b92dc53d2f6972e2082e337d", "fields": {"nom_de_la_commune": "VILLENAUXE LA GRANDE", "libell_d_acheminement": "VILLENAUXE LA GRANDE", "code_postal": "10370", "coordonnees_gps": [48.5945073105, 3.54815302668], "code_commune_insee": "10420"}, "geometry": {"type": "Point", "coordinates": [3.54815302668, 48.5945073105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edfa4fd5991ddc1ffae72867a971c130021ce5ed", "fields": {"nom_de_la_commune": "VILLE SOUS LA FERTE", "libell_d_acheminement": "VILLE SOUS LA FERTE", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10426"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f682c1fa072b4800fca8631d0094a26c8e98e203", "fields": {"nom_de_la_commune": "SOLIGNY LES ETANGS", "libell_d_acheminement": "SOLIGNY LES ETANGS", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10370"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c63709434fb51f5b1c9debe4044951bfa10e2b1", "fields": {"nom_de_la_commune": "LA VILLE AUX BOIS", "libell_d_acheminement": "LA VILLE AUX BOIS", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10411"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e3317a9ff6a1a02b016ef435cd41714ae450d7", "fields": {"nom_de_la_commune": "VIAPRES LE PETIT", "libell_d_acheminement": "VIAPRES LE PETIT", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10408"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822b337fa79ed9cefd5c47697acd4255269d0565", "fields": {"nom_de_la_commune": "SOULIGNY", "libell_d_acheminement": "SOULIGNY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10373"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6deac5eed10a8a0af0620394a7206320637cd41", "fields": {"nom_de_la_commune": "VILLERET", "libell_d_acheminement": "VILLERET", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10424"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d306cc29e2278f7469dea47ca5fb6e98f9f66186", "fields": {"nom_de_la_commune": "THORS", "libell_d_acheminement": "THORS", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10378"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693c759530f0b6d82eb53a0a24590fb461a6fe55", "fields": {"nom_de_la_commune": "VILLIERS SOUS PRASLIN", "libell_d_acheminement": "VILLIERS SOUS PRASLIN", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10432"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55c7a210ebcddf5947cfca8964359f5cf5ecffb", "fields": {"code_postal": "49310", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA SALLE DE VIHIERS", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c57a9c4b0542146920fed94694ce44b3ff2e2b", "fields": {"code_postal": "49750", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "CHANZEAUX", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2426647325, -0.667761115453]}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dbae98b94e6f43288d36d3585d7a61954ab8f4", "fields": {"nom_de_la_commune": "CLERE SUR LAYON", "libell_d_acheminement": "CLERE SUR LAYON", "code_postal": "49560", "coordonnees_gps": [47.1224159134, -0.517336528363], "code_commune_insee": "49102"}, "geometry": {"type": "Point", "coordinates": [-0.517336528363, 47.1224159134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226fcc5c31ede45626968336d8d18f2c9398d06c", "fields": {"code_postal": "49520", "code_commune_insee": "49103", "libell_d_acheminement": "COMBREE", "ligne_5": "BEL AIR", "nom_de_la_commune": "COMBREE", "coordonnees_gps": [47.7119047225, -1.00078562613]}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "164a3c8babb7119413d1a20ad7dcc23c322fd97d", "fields": {"nom_de_la_commune": "COURLEON", "libell_d_acheminement": "COURLEON", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49114"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a201172c47e957a0e6bb129cd7bb9337441cafd", "fields": {"nom_de_la_commune": "DAUMERAY", "libell_d_acheminement": "DAUMERAY", "code_postal": "49640", "coordonnees_gps": [47.7052254952, -0.382455900897], "code_commune_insee": "49119"}, "geometry": {"type": "Point", "coordinates": [-0.382455900897, 47.7052254952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbfbdab8e4c6e9ff9531705e126226ad5e45433c", "fields": {"nom_de_la_commune": "DENEZE SOUS DOUE", "libell_d_acheminement": "DENEZE SOUS DOUE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49121"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17978aba808c7cf1f21b8e1b81fd4c5cf7327095", "fields": {"nom_de_la_commune": "DISTRE", "libell_d_acheminement": "DISTRE", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49123"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af3368a1b0b4a00048dd2c9d20498755bc5e5ec", "fields": {"nom_de_la_commune": "L HOTELLERIE DE FLEE", "libell_d_acheminement": "L HOTELLERIE DE FLEE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49158"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e7422e89e619686904f98f0decc3d1417c7fcb", "fields": {"nom_de_la_commune": "JARZE VILLAGES", "libell_d_acheminement": "JARZE VILLAGES", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49163"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f7a59f668041cc8f78cbf30735063320c0b29f0", "fields": {"code_postal": "49140", "code_commune_insee": "49163", "libell_d_acheminement": "JARZE VILLAGES", "ligne_5": "CHAUMONT D ANJOU", "nom_de_la_commune": "JARZE VILLAGES", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01603fecdf6d0d51d3b3f242e7d4fa990e145fb5", "fields": {"code_postal": "49140", "code_commune_insee": "49163", "libell_d_acheminement": "JARZE VILLAGES", "ligne_5": "LUE EN BAUGEOIS", "nom_de_la_commune": "JARZE VILLAGES", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3741e64f61e7e87030b3bf58d4e0385ce17762c7", "fields": {"code_postal": "49220", "code_commune_insee": "49176", "libell_d_acheminement": "LE LION D ANGERS", "ligne_5": "ANDIGNE", "nom_de_la_commune": "LE LION D ANGERS", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5758edfec1759fa6809b8e243727a90be5b09f2b", "fields": {"nom_de_la_commune": "LOIRE", "libell_d_acheminement": "LOIRE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49178"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fe99f5c5f7d5fdc056afcc09dc1e25ea8ed30c", "fields": {"code_postal": "49140", "code_commune_insee": "49194", "libell_d_acheminement": "MAZE MILON", "ligne_5": "FONTAINE MILON", "nom_de_la_commune": "MAZE MILON", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199dd9ae97436bf6404956c154de72f4b1008e51", "fields": {"nom_de_la_commune": "MAZE MILON", "libell_d_acheminement": "MAZE MILON", "code_postal": "49630", "coordonnees_gps": [47.4461983754, -0.297232608581], "code_commune_insee": "49194"}, "geometry": {"type": "Point", "coordinates": [-0.297232608581, 47.4461983754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "400d510cb6f3144a537eb915d17637461f322bc1", "fields": {"code_postal": "49460", "code_commune_insee": "49214", "libell_d_acheminement": "MONTREUIL JUIGNE", "ligne_5": "JUIGNE BENE", "nom_de_la_commune": "MONTREUIL JUIGNE", "coordonnees_gps": [47.5717691196, -0.578911791129]}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fe17a139029c9e19d47ebee7cfe1be7d5cfa06", "fields": {"code_postal": "49260", "code_commune_insee": "49215", "libell_d_acheminement": "MONTREUIL BELLAY", "ligne_5": "MERON", "nom_de_la_commune": "MONTREUIL BELLAY", "coordonnees_gps": [47.1403136814, -0.132740231974]}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029007dca86a5f5f6fb9aecb58e9dadc8e833264", "fields": {"nom_de_la_commune": "MONTREUIL SUR MAINE", "libell_d_acheminement": "MONTREUIL SUR MAINE", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49217"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da12f7ae35a5d4f88981a8b67e55454c5209664", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LA SALLE ET CHAPELLE AUBRY", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0535e79985433443faf077aa1d519b317a8df4", "fields": {"code_postal": "49600", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LA CHAUSSAIRE", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d73ac73727db7ba70ef119d2a363e1f0f291aa4", "fields": {"code_postal": "49600", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LE PUISET DORE", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832f225ab1f29ecd9f11fc0a621107f835783547", "fields": {"nom_de_la_commune": "MONTSOREAU", "libell_d_acheminement": "MONTSOREAU", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49219"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b505085aca06ccc260473900132077dcf5070e", "fields": {"nom_de_la_commune": "MOZE SUR LOUET", "libell_d_acheminement": "MOZE SUR LOUET", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49222"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6c7e9d471d1f4904a0074284d0e616b35776e9", "fields": {"nom_de_la_commune": "NOELLET", "libell_d_acheminement": "NOELLET", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49226"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95d0ae78bc18dfe41631170974840e6e20ce4a6", "fields": {"nom_de_la_commune": "NUAILLE", "libell_d_acheminement": "NUAILLE", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49231"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c9aa555f3bc3a361a4e89a302a0a062a623b86", "fields": {"nom_de_la_commune": "PASSAVANT SUR LAYON", "libell_d_acheminement": "PASSAVANT SUR LAYON", "code_postal": "49560", "coordonnees_gps": [47.1224159134, -0.517336528363], "code_commune_insee": "49236"}, "geometry": {"type": "Point", "coordinates": [-0.517336528363, 47.1224159134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98e89bd139997baab0086a8c039b33e5e4becef", "fields": {"nom_de_la_commune": "LA PLAINE", "libell_d_acheminement": "LA PLAINE", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49240"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c3d3ac667e57101c2ea80b48a5603fea965b35", "fields": {"code_postal": "49290", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "ST LAURENT DE LA PLAINE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3431019383, -0.806177214608]}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195dcf3592c93f2ad173f593799749424bc56215", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "ST FLORENT LE VIEIL", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ce855da51718739177d0b9fa8bbe4ea32ddc4b", "fields": {"code_postal": "49130", "code_commune_insee": "49246", "libell_d_acheminement": "LES PONTS DE CE", "ligne_5": "SORGES", "nom_de_la_commune": "LES PONTS DE CE", "coordonnees_gps": [47.4268002737, -0.542779965339]}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553a584ff8384b7bfdada88f25d8dda06a98ebcc", "fields": {"nom_de_la_commune": "POUANCE", "libell_d_acheminement": "POUANCE", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49248"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a6e911b6d0385de1635fd36efdc6d4cd8829b5", "fields": {"nom_de_la_commune": "LA ROMAGNE", "libell_d_acheminement": "LA ROMAGNE", "code_postal": "49740", "coordonnees_gps": [47.0544001848, -1.00933945624], "code_commune_insee": "49260"}, "geometry": {"type": "Point", "coordinates": [-1.00933945624, 47.0544001848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baab72cb6c816c3d8b30542761a86369eda4bef8", "fields": {"nom_de_la_commune": "ST AUGUSTIN DES BOIS", "libell_d_acheminement": "ST AUGUSTIN DES BOIS", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49266"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "652635733c562c246163b7842d48c9ce3b394a3a", "fields": {"nom_de_la_commune": "ST CLEMENT DE LA PLACE", "libell_d_acheminement": "ST CLEMENT DE LA PLACE", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49271"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201579a350307790e858f8548d0b58512f9c7697", "fields": {"nom_de_la_commune": "ST CLEMENT DES LEVEES", "libell_d_acheminement": "ST CLEMENT DES LEVEES", "code_postal": "49350", "coordonnees_gps": [47.3419898447, -0.231335175854], "code_commune_insee": "49272"}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d07dbe89de3395a9d45976af69130437d86835e", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49284"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8a2ea68cb2ae19f4016dd5749c748a765996773", "fields": {"nom_de_la_commune": "ST JEAN DE LA CROIX", "libell_d_acheminement": "ST JEAN DE LA CROIX", "code_postal": "49130", "coordonnees_gps": [47.4268002737, -0.542779965339], "code_commune_insee": "49288"}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9ae051463a51453d93cb638d2aa1a50fd1fbf7", "fields": {"nom_de_la_commune": "ST JEAN DES MAUVRETS", "libell_d_acheminement": "ST JEAN DES MAUVRETS", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49290"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc1565b0edf134508f404faf093908c91028615", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "MONTIGNE SUR MOINE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dcb40ed2643ffbc6a76afcf0cf1e6b105c166d4", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST CRESPIN SUR MOINE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8c17cd851228abba66db83565d76b8d9aa539e", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "TILLIERES", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc916a5113899eeae67f2b9105691925b8cfcdbf", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "ANDARD", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12ce9a2eab8f22e49e2e6ab5c333186100bedae", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "DAMPIERRE SUR LOIRE", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1978a179907e5978235336db51f5421897c124d5", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "ST LAMBERT DES LEVEES", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16f68a3d6ad49cf0d1ad0ee2645bf30f0cec3e1", "fields": {"code_postal": "49140", "code_commune_insee": "49333", "libell_d_acheminement": "SEICHES SUR LE LOIR", "ligne_5": "MATHEFLON", "nom_de_la_commune": "SEICHES SUR LE LOIR", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f45881519cd5e679f7df741424710f0053d9b40", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "FAYE D ANJOU", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86b8cdb20f869ec0c4d36640cca8532712058f3", "fields": {"nom_de_la_commune": "TOUTLEMONDE", "libell_d_acheminement": "TOUTLEMONDE", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49352"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70922caa32de41335fdad230f7c1bdb38d9904f4", "fields": {"code_postal": "49220", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "VERN D ANJOU", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bb42ada89097a7762225b9d20aadac9a594615", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "TANCOIGNE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e12bbcccc875edf1ecbe4c96dbcdd21f1d55b9f", "fields": {"code_postal": "49540", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "LA FOSSE DE TIGNE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1719461736, -0.518340326258]}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f803842ae3b9d27984bc07813b7178496cd7d2fb", "fields": {"code_postal": "49540", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "TIGNE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1719461736, -0.518340326258]}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "901aea52a0e811ddfe91d881c2e131b88f147209", "fields": {"nom_de_la_commune": "VILLEBERNIER", "libell_d_acheminement": "VILLEBERNIER", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49374"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd551f239986699e4ded285bd958b55c7a14a989", "fields": {"nom_de_la_commune": "VILLEVEQUE", "libell_d_acheminement": "VILLEVEQUE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49377"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b22d3875b43ace919ce2130f4219c6071ab242", "fields": {"nom_de_la_commune": "YZERNAY", "libell_d_acheminement": "YZERNAY", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49381"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf28399ccbb0e6a134e6785b96f09b8baf27ca9", "fields": {"nom_de_la_commune": "AGNEAUX", "libell_d_acheminement": "AGNEAUX", "code_postal": "50180", "coordonnees_gps": [49.1138081989, -1.15891000484], "code_commune_insee": "50002"}, "geometry": {"type": "Point", "coordinates": [-1.15891000484, 49.1138081989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc814bacf9c4172802cf5c7bccf98d2bb9799f2", "fields": {"nom_de_la_commune": "AMIGNY", "libell_d_acheminement": "AMIGNY", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50006"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f68c62e1106b1c1694ad1aac09b10bad533abe", "fields": {"nom_de_la_commune": "ANCTEVILLE", "libell_d_acheminement": "ANCTEVILLE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50007"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15245c0eebffca954baa2f1f237ee90e9866a534", "fields": {"nom_de_la_commune": "ANCTOVILLE SUR BOSCQ", "libell_d_acheminement": "ANCTOVILLE SUR BOSCQ", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50008"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98daa709dbf5916f0f7d513b497f599ebee1eb9c", "fields": {"nom_de_la_commune": "AUCEY LA PLAINE", "libell_d_acheminement": "AUCEY LA PLAINE", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50019"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e817d773dc8c178f9c394a26a1b065875fbababa", "fields": {"nom_de_la_commune": "AUDOUVILLE LA HUBERT", "libell_d_acheminement": "AUDOUVILLE LA HUBERT", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50021"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59e2a6be6df6c5bde507bcd8a63db88ac695384", "fields": {"nom_de_la_commune": "AUXAIS", "libell_d_acheminement": "AUXAIS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50024"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7ef5ee163e261dffca15b0bd8c4bed59bac52d", "fields": {"nom_de_la_commune": "AZEVILLE", "libell_d_acheminement": "AZEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50026"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a94d552950334c4c8974a311dd7997efe7b439b", "fields": {"nom_de_la_commune": "BARENTON", "libell_d_acheminement": "BARENTON", "code_postal": "50720", "coordonnees_gps": [48.5983926972, -0.815007592926], "code_commune_insee": "50029"}, "geometry": {"type": "Point", "coordinates": [-0.815007592926, 48.5983926972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211c7382a3784450fd12222c80e73082265944f5", "fields": {"nom_de_la_commune": "BAUBIGNY", "libell_d_acheminement": "BAUBIGNY", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50033"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b10ef8bcc0d915e04ffd6124c42ca9e74db633", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50042"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f5d5c8e386fb5226d98bf617f8dae8e7cc6db4", "fields": {"nom_de_la_commune": "BESLON", "libell_d_acheminement": "BESLON", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50048"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937e3125ba5b39193bbdf2fb2581d2a001a759d7", "fields": {"nom_de_la_commune": "BEUZEVILLE LA BASTILLE", "libell_d_acheminement": "BEUZEVILLE LA BASTILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50052"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d186fca7a3768cda80f093219dbf88c3feeb0b3e", "fields": {"nom_de_la_commune": "BLOSVILLE", "libell_d_acheminement": "BLOSVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50059"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a032f23ecc8e380aecc9b93ff6e13c9338b463c", "fields": {"nom_de_la_commune": "BRANVILLE HAGUE", "libell_d_acheminement": "BRANVILLE HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50073"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505a1ed6416f374303e7a16b8903cb28b0b1ef73", "fields": {"code_postal": "50290", "code_commune_insee": "50076", "libell_d_acheminement": "BREHAL", "ligne_5": "ST MARTIN DE BREHAL", "nom_de_la_commune": "BREHAL", "coordonnees_gps": [48.8970159466, -1.52458100267]}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e2940f892fb88566fb69912aae89f08c96b910", "fields": {"nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50082"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca50d2d42b620aeeb3c26e0b8ad58cd9f7db1ff", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "LE VALDECIE", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b449878668a74811bca9fdcf9a6d90d9947db07", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "LE VRETOT", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97f1da97f31c471113f9442ba7c580a97ec83ca", "fields": {"nom_de_la_commune": "BRICQUEVILLE LA BLOUETTE", "libell_d_acheminement": "BRICQUEVILLE LA BLOUETTE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50084"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c87cc2abb34d27626c33cd72f43a30e2d471e6", "fields": {"nom_de_la_commune": "BRILLEVAST", "libell_d_acheminement": "BRILLEVAST", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50086"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94805a3575a895656c21ca2cf98f3ee5a56ea3bd", "fields": {"nom_de_la_commune": "CAMETOURS", "libell_d_acheminement": "CAMETOURS", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50093"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd92bfaa60d5ac9504e49c548e39da7a64c9ef6", "fields": {"code_postal": "50500", "code_commune_insee": "50099", "libell_d_acheminement": "CARENTAN LES MARAIS", "ligne_5": "ST COME DU MONT", "nom_de_la_commune": "CARENTAN LES MARAIS", "coordonnees_gps": [49.2869249451, -1.26541021444]}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87e20e3a7c7ea213d2788cb8ce846b359b48a3a", "fields": {"nom_de_la_commune": "CHANTELOUP", "libell_d_acheminement": "CHANTELOUP", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50120"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72474ae3395ac3e46c602b3c76c4f13a5ba2e845", "fields": {"nom_de_la_commune": "LA CHAPELLE UREE", "libell_d_acheminement": "LA CHAPELLE UREE", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50124"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7d1b574b7decbcb6984d787e42e24cceeac2106", "fields": {"nom_de_la_commune": "CHASSEGUEY", "libell_d_acheminement": "CHASSEGUEY", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50125"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3133a2ad64b6a89894d2b085ee4b9a7aeb27727a", "fields": {"nom_de_la_commune": "CHERBOURG EN COTENTIN", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "code_postal": "50130", "coordonnees_gps": [49.6331832109, -1.6338586934], "code_commune_insee": "50129"}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8264f6b81458fc423d2291a1727b337ff3e4e38", "fields": {"nom_de_la_commune": "COLOMBY", "libell_d_acheminement": "COLOMBY", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50138"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6e5416436042d7ce3c14a77163350f05a177f1", "fields": {"code_postal": "50420", "code_commune_insee": "50139", "libell_d_acheminement": "CONDE SUR VIRE", "ligne_5": "LE MESNIL RAOULT", "nom_de_la_commune": "CONDE SUR VIRE", "coordonnees_gps": [48.9843046983, -1.06508907903]}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85efb13a1cb1688260f05f48a28f76cd147dabf0", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "ANGOVILLE EN SAIRE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3339bdc1e0f0c69ecbf0d93eca47b67c60b78347", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "NEVILLE SUR MER", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8948debe664b66a9bd7ebb114ec4347b8373fdc6", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "RETHOVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0c31f1267c792e50494f3c30be97ae2f0ad874", "fields": {"nom_de_la_commune": "LA CROIX AVRANCHIN", "libell_d_acheminement": "LA CROIX AVRANCHIN", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50154"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43576d79321caba6e4ea307acf99abf2af83e214", "fields": {"nom_de_la_commune": "CROSVILLE SUR DOUVE", "libell_d_acheminement": "CROSVILLE SUR DOUVE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50156"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed1837e377c999b38ed12721186869c43cc3fc1", "fields": {"nom_de_la_commune": "LE DEZERT", "libell_d_acheminement": "LE DEZERT", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50161"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8accb703891bc208913456bd8e54f614825ab877", "fields": {"nom_de_la_commune": "DONVILLE LES BAINS", "libell_d_acheminement": "DONVILLE LES BAINS", "code_postal": "50350", "coordonnees_gps": [48.8509752582, -1.57276241598], "code_commune_insee": "50165"}, "geometry": {"type": "Point", "coordinates": [-1.57276241598, 48.8509752582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a70e3e9ed2e206dcbbe4f94a28bb73cab3cb0c50", "fields": {"nom_de_la_commune": "DOVILLE", "libell_d_acheminement": "DOVILLE", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50166"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14869113663ceaca0241b0d5f8a00f1986398fd4", "fields": {"nom_de_la_commune": "ECULLEVILLE", "libell_d_acheminement": "ECULLEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50171"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c5003e9a1cf44cb04275f65c800814db9fc724", "fields": {"nom_de_la_commune": "FEUGERES", "libell_d_acheminement": "FEUGERES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50181"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd84b2de9f9925ee7f6421869b03662e55791dd2", "fields": {"nom_de_la_commune": "LA FEUILLIE", "libell_d_acheminement": "LA FEUILLIE", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50182"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e98bf38cf026432392251df04f02fde591b72df", "fields": {"nom_de_la_commune": "FOLLIGNY", "libell_d_acheminement": "FOLLIGNY", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50188"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001b3bb0426c1feaa69f2d120debd5a1f3fee16b", "fields": {"nom_de_la_commune": "FRESVILLE", "libell_d_acheminement": "FRESVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50194"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c2ef453aa6ebdf94c06b4e906dc8c51299771c", "fields": {"code_postal": "50450", "code_commune_insee": "50197", "libell_d_acheminement": "GAVRAY", "ligne_5": "LE MESNIL HUE", "nom_de_la_commune": "GAVRAY", "coordonnees_gps": [48.9111916966, -1.32149043714]}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efad327825ef1dc04019c2e3002a0a551029afc", "fields": {"code_postal": "50330", "code_commune_insee": "50209", "libell_d_acheminement": "GONNEVILLE LE THEIL", "ligne_5": "LE THEIL", "nom_de_la_commune": "GONNEVILLE LE THEIL", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c59196c5e635c5dafdaeb9c03166841363fdb51", "fields": {"nom_de_la_commune": "GOUVILLE SUR MER", "libell_d_acheminement": "GOUVILLE SUR MER", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50215"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70888b67765704fcaa90a4dd84d07988d020472", "fields": {"nom_de_la_commune": "GENESTELLE", "libell_d_acheminement": "GENESTELLE", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07093"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf288850c694cc6738e3ccf8ea31353163a075f0", "fields": {"nom_de_la_commune": "CHAMBONAS", "libell_d_acheminement": "CHAMBONAS", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07050"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf60e7299de417e86f7d1057e3c72ce8044d54c0", "fields": {"nom_de_la_commune": "BROSSAINC", "libell_d_acheminement": "BROSSAINC", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07044"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85f0240a6399573da866aba005c1bdd2564ed480", "fields": {"nom_de_la_commune": "DEVESSET", "libell_d_acheminement": "DEVESSET", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07080"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5cb99408d41d7e527a13a7e96b7526bf2dec6e", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07098"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c861cbb12ae5d82d0718627ea744b35b354284ef", "fields": {"nom_de_la_commune": "BURZET", "libell_d_acheminement": "BURZET", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07045"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c7b7f8992acb96cae096a3b26b556f16445643", "fields": {"nom_de_la_commune": "INTRES", "libell_d_acheminement": "INTRES", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07103"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f453a3dea9028fff55b4bf8ffb1a99d40b9630", "fields": {"nom_de_la_commune": "COUX", "libell_d_acheminement": "COUX", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07072"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ca9124557d9c185c062d3b469dfe68cdcdae10", "fields": {"nom_de_la_commune": "ETREPIGNY", "libell_d_acheminement": "ETREPIGNY", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08158"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8cb0609646c14aa9c5e45e9449ec6c7440943e", "fields": {"nom_de_la_commune": "L ECAILLE", "libell_d_acheminement": "L ECAILLE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08148"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a93ccbf9433f2e74aaf2f27032c8d85adb789ec3", "fields": {"nom_de_la_commune": "L ECHELLE", "libell_d_acheminement": "L ECHELLE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08149"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f93b77ee268bddaf83c3c7ef50fbb48cfa737a", "fields": {"nom_de_la_commune": "ESTREBAY", "libell_d_acheminement": "ESTREBAY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08154"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b1c651bb8352ca8dcd6a0740e6c8d18f6c68827", "fields": {"nom_de_la_commune": "EXERMONT", "libell_d_acheminement": "EXERMONT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08161"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a34fd5023381756cc119dfaf2288c13f094e11e1", "fields": {"nom_de_la_commune": "ETALLE", "libell_d_acheminement": "ETALLE", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08155"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0548aa630766246a0c5c178cc994ddc5831c4bca", "fields": {"nom_de_la_commune": "DOUZY", "libell_d_acheminement": "DOUZY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08145"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b1e47a086e8f3521e4d230e84b01ffc7af7be4", "fields": {"nom_de_la_commune": "ECLY", "libell_d_acheminement": "ECLY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08150"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bd981fce377b4096e5bebcbfd03464fe2d3abf", "fields": {"nom_de_la_commune": "FRAILLICOURT", "libell_d_acheminement": "FRAILLICOURT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08178"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb74423f030b835686a61897a2e0895d3aee020f", "fields": {"nom_de_la_commune": "FROMELENNES", "libell_d_acheminement": "FROMELENNES", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08183"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217a6318a7a0af5c566d1606ba5210465ac2c14c", "fields": {"nom_de_la_commune": "HAGNICOURT", "libell_d_acheminement": "HAGNICOURT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08205"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2646ed321017c4b931d8b01e8cde8d672893242d", "fields": {"nom_de_la_commune": "GRANDHAM", "libell_d_acheminement": "GRANDHAM", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08197"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b3a87ac9785cb8740fcc90bb171ae0f31353af", "fields": {"nom_de_la_commune": "GRUYERES", "libell_d_acheminement": "GRUYERES", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08201"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df580b0b2bd3a35e340b6c76169f261fc78544d5", "fields": {"nom_de_la_commune": "LE FRETY", "libell_d_acheminement": "LE FRETY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08182"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4a1a7f26a213555e8474dc631243867dfe7a1f", "fields": {"nom_de_la_commune": "HARGNIES", "libell_d_acheminement": "HARGNIES", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08214"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23892928f1a81f6c3cced2a7c71f5be94a36800", "fields": {"nom_de_la_commune": "HARCY", "libell_d_acheminement": "HARCY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08212"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f1581d6d13187eb183d59b401925981305cced", "fields": {"code_postal": "08380", "code_commune_insee": "08319", "libell_d_acheminement": "NEUVILLE LEZ BEAULIEU", "ligne_5": "BEAULIEU", "nom_de_la_commune": "NEUVILLE LEZ BEAULIEU", "coordonnees_gps": [49.91319612, 4.30466764624]}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a77bd7c39785753ea97d79250f1e39098ff37e", "fields": {"code_postal": "08700", "code_commune_insee": "08328", "libell_d_acheminement": "NOUZONVILLE", "ligne_5": "MEILLIER FONTAINE", "nom_de_la_commune": "NOUZONVILLE", "coordonnees_gps": [49.8150344171, 4.80706022542]}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd06b6c8faaf94a9cad53437f4791a8a54fde0e", "fields": {"nom_de_la_commune": "LA NEUVILLE EN TOURNE A FUY", "libell_d_acheminement": "NEUVILLE EN TOURNE A FUY", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08320"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcd4fed8d1423c7638a5b35eea8bb469d6aaf87", "fields": {"nom_de_la_commune": "LA NEUVILLE AUX JOUTES", "libell_d_acheminement": "LA NEUVILLE AUX JOUTES", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08318"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7656f9385b5eafa0f0fa828c3ec8eb444d4ca7d8", "fields": {"nom_de_la_commune": "MURTIN ET BOGNY", "libell_d_acheminement": "MURTIN ET BOGNY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08312"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "335ae215178f6f7aee68863ee1023225f9e991d4", "fields": {"nom_de_la_commune": "NOVION PORCIEN", "libell_d_acheminement": "NOVION PORCIEN", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08329"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1470ccd425cd343b3f610948ed0f8fdca2c0e0e7", "fields": {"nom_de_la_commune": "NEUVILLE DAY", "libell_d_acheminement": "NEUVILLE DAY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08321"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cbe61d5b97ef0bac2898d5f01e75d3a00e7d0d", "fields": {"nom_de_la_commune": "OLIZY PRIMAT", "libell_d_acheminement": "OLIZY PRIMAT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08333"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c82a4c0448cd967c7c9bb5830b8a3f1dc1a1bdc", "fields": {"nom_de_la_commune": "NEUFMAISON", "libell_d_acheminement": "NEUFMAISON", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08315"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b4e3080fcc304e71244cec3f3a6fc13ff34f6e", "fields": {"nom_de_la_commune": "NEUVIZY", "libell_d_acheminement": "NEUVIZY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08324"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f26c08734b0c2dda0c4002cda50c6c0f6c13c1c", "fields": {"nom_de_la_commune": "VILLERS DEVANT MOUZON", "libell_d_acheminement": "VILLERS DEVANT MOUZON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08477"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d929cc6cd2257372dd86ca9241452310c987b9d0", "fields": {"nom_de_la_commune": "VILLERS LE TILLEUL", "libell_d_acheminement": "VILLERS LE TILLEUL", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08478"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1063cf7ac88b865aabd8d23dbd65f1649a5748ae", "fields": {"nom_de_la_commune": "VIEUX LES ASFELD", "libell_d_acheminement": "VIEUX LES ASFELD", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08473"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4d4deef4f00e4ec5cbdc14ec5788ee12052e7d", "fields": {"nom_de_la_commune": "VAUX LES RUBIGNY", "libell_d_acheminement": "VAUX LES RUBIGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08465"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cde2ed73be202f7deac17b78c6fe3fa30ebdff6", "fields": {"nom_de_la_commune": "VAUX LES MOUZON", "libell_d_acheminement": "VAUX LES MOUZON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08466"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ac2813e411ea5bee3d2041933d095de04fa8b27", "fields": {"nom_de_la_commune": "THIN LE MOUTIER", "libell_d_acheminement": "THIN LE MOUTIER", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08449"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1c8521ca59387e877841bf283782660374dba1", "fields": {"nom_de_la_commune": "VRIGNE MEUSE", "libell_d_acheminement": "VRIGNE MEUSE", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08492"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b9f5426f6da95d177f6680c7b35e2bfd46e3214", "fields": {"nom_de_la_commune": "TOURTERON", "libell_d_acheminement": "TOURTERON", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08458"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959f8b6886b50abff62595068bff6e86473b9b03", "fields": {"nom_de_la_commune": "VOUZIERS", "libell_d_acheminement": "VOUZIERS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08490"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d1b420e618dfab97d4557b886e261b1c6aa597", "fields": {"nom_de_la_commune": "VILLY", "libell_d_acheminement": "VILLY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08485"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae643e857ce12bbf5de50f476f4271a422dada95", "fields": {"nom_de_la_commune": "MATTON ET CLEMENCY", "libell_d_acheminement": "MATTON ET CLEMENCY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08281"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc54bdfcc0bc851054698250ef43db37524c9d9", "fields": {"nom_de_la_commune": "MONTIGNY SUR VENCE", "libell_d_acheminement": "MONTIGNY SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08305"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cb2ff58d2a7d8752e8af15ceba88c695179c75", "fields": {"nom_de_la_commune": "MONTCY NOTRE DAME", "libell_d_acheminement": "MONTCY NOTRE DAME", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08298"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37874ea19449afe68eeaeca8410f0eb319020aa0", "fields": {"nom_de_la_commune": "MAUBERT FONTAINE", "libell_d_acheminement": "MAUBERT FONTAINE", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08282"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5617ba65f03e8f207fdc17fd95aa6971c1006a", "fields": {"nom_de_la_commune": "LE MONT DIEU", "libell_d_acheminement": "LE MONT DIEU", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08300"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64c963b8f7ed61f7b99672f6637b65ae109da71", "fields": {"nom_de_la_commune": "MONTMEILLANT", "libell_d_acheminement": "MONTMEILLANT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08307"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f731e6dcd36e365924a6d4f53f6b13e3a0b0000a", "fields": {"nom_de_la_commune": "MONTCORNET", "libell_d_acheminement": "MONTCORNET", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08297"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16c3b7d0f3060704cf2ccc1a93705a8597a468d", "fields": {"nom_de_la_commune": "MONTGON", "libell_d_acheminement": "MONTGON", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08301"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c06fd67c294299863f764fb3f91b32cdac6d59", "fields": {"nom_de_la_commune": "MOIRY", "libell_d_acheminement": "MOIRY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08293"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf0eb2d7575aec14c1e9740fff187bd530b47987", "fields": {"nom_de_la_commune": "MARCQ", "libell_d_acheminement": "MARCQ", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08274"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2ab8ec5bc4db729f7e0ef18035a8f8bf64ab55", "fields": {"code_postal": "08220", "code_commune_insee": "08366", "libell_d_acheminement": "ROCQUIGNY", "ligne_5": "MAINBRESSON", "nom_de_la_commune": "ROCQUIGNY", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452ada11fd9de9a76f4fc1b34ab0ea22d20164eb", "fields": {"nom_de_la_commune": "ROUVROY SUR AUDRY", "libell_d_acheminement": "ROUVROY SUR AUDRY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08370"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78bef244e4d4c9e5d3c77b8c6256e210d07facec", "fields": {"nom_de_la_commune": "POILCOURT SYDNEY", "libell_d_acheminement": "POILCOURT SYDNEY", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08340"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637658abab66558877f5206a399cc3e55b1c2c89", "fields": {"nom_de_la_commune": "RILLY SUR AISNE", "libell_d_acheminement": "RILLY SUR AISNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08364"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f51eb59a7b913c435eba9d5c1269d2d8e4fb6ad", "fields": {"nom_de_la_commune": "RENNEVILLE", "libell_d_acheminement": "RENNEVILLE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08360"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd9cd7fcf2ddfcb1ba98a6fc02ab31094349dfd", "fields": {"nom_de_la_commune": "ROCQUIGNY", "libell_d_acheminement": "ROCQUIGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08366"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be8b982acc3eb20d5906c431cd76cbd4bfaf3afd", "fields": {"nom_de_la_commune": "ST MENGES", "libell_d_acheminement": "ST MENGES", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08391"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b97028eeb9ba29cc478263cea667a057fc957e2d", "fields": {"nom_de_la_commune": "RUBIGNY", "libell_d_acheminement": "RUBIGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08372"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20ef109b01e2ea311d1d84f8cbe3f9c7b270908", "fields": {"nom_de_la_commune": "ROIZY", "libell_d_acheminement": "ROIZY", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08368"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f32af2af41e8d2c039593041e89f26621c2815", "fields": {"nom_de_la_commune": "OMONT", "libell_d_acheminement": "OMONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08335"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2ac5829ecf0dee76fca059113b7d35ab777b59", "fields": {"nom_de_la_commune": "ST QUENTIN LE PETIT", "libell_d_acheminement": "ST QUENTIN LE PETIT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08396"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc5433248a2b2fdf7f7b6bc9be48feb9c8d709d", "fields": {"nom_de_la_commune": "SAVIGNY SUR AISNE", "libell_d_acheminement": "SAVIGNY SUR AISNE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08406"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cc0b55cf7210e057359dd1d2cdda1b4eca697c", "fields": {"nom_de_la_commune": "SAULT LES RETHEL", "libell_d_acheminement": "SAULT LES RETHEL", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08403"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610e85e379d85693ad7e1bc22fd0397c25a8049b", "fields": {"nom_de_la_commune": "SAULT ST REMY", "libell_d_acheminement": "SAULT ST REMY", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08404"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6870670009446250caad7cfd8088e39039f2a0", "fields": {"nom_de_la_commune": "SOMMERANCE", "libell_d_acheminement": "SOMMERANCE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08425"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074638a2aeac205ba6fd69f876d4a0dfa9f04d0f", "fields": {"nom_de_la_commune": "SOMMAUTHE", "libell_d_acheminement": "SOMMAUTHE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08424"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9d58cb9a6185ec78b4fe3350da48b7452224d5", "fields": {"nom_de_la_commune": "SECHAULT", "libell_d_acheminement": "SECHAULT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08407"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1a571ec9c358cd52c8c6a9b117257a870a03deb", "fields": {"nom_de_la_commune": "TAGNON", "libell_d_acheminement": "TAGNON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08435"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824951ffd35b4d65fdb2e62c5d653b6a4bee9b9f", "fields": {"nom_de_la_commune": "SEUIL", "libell_d_acheminement": "SEUIL", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08416"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5356223f354e6b3198e7e2c71559d9dbcb6f74f2", "fields": {"nom_de_la_commune": "SEDAN", "libell_d_acheminement": "SEDAN", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08409"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f03cbe68cd388197f0139a2beb409051b1b937", "fields": {"nom_de_la_commune": "CARLA DE ROQUEFORT", "libell_d_acheminement": "CARLA DE ROQUEFORT", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09080"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cdea2fab5904bfbdddac654aafb7bb1062f5b30", "fields": {"nom_de_la_commune": "ENCOURTIECH", "libell_d_acheminement": "ENCOURTIECH", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09110"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1609f9b073c92decd0e9c9b565c46d9612f40d74", "fields": {"nom_de_la_commune": "ENGOMER", "libell_d_acheminement": "ENGOMER", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09111"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40478e76d82339406ec4cb72e0b310e1b7bb756", "fields": {"nom_de_la_commune": "FORNEX", "libell_d_acheminement": "FORNEX", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09123"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d4d12aaf84890d4aec32fe0cf176ec78877e61", "fields": {"nom_de_la_commune": "FOIX", "libell_d_acheminement": "FOIX", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09122"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb89c475b64da897aeb471c36c11222f49535c0", "fields": {"code_postal": "09800", "code_commune_insee": "09035", "libell_d_acheminement": "BALAGUERES", "ligne_5": "BALAGUE", "nom_de_la_commune": "BALAGUERES", "coordonnees_gps": [42.8802373016, 0.976010210218]}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3835df97ff5ca989ecea2573b404d55f3c09f1dc", "fields": {"nom_de_la_commune": "BEDEILHAC ET AYNAT", "libell_d_acheminement": "BEDEILHAC ET AYNAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09045"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83ca98389dfd5aa3ca6416a012537e5289490c1", "fields": {"nom_de_la_commune": "WILLIERS", "libell_d_acheminement": "WILLIERS", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08501"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4827b2ebcf71cfaaf6bbd8465b09493f4458a43", "fields": {"nom_de_la_commune": "BALACET", "libell_d_acheminement": "BALACET", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09034"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb819046d7995ee54f3567d447cec04433e64d54", "fields": {"nom_de_la_commune": "WAGNON", "libell_d_acheminement": "WAGNON", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08496"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbd9878e4c840ec7088e4980f49b44a8514f335", "fields": {"nom_de_la_commune": "BAGERT", "libell_d_acheminement": "BAGERT", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09033"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b8846bae5869251deadae4890393671c0f42bb", "fields": {"nom_de_la_commune": "ARTIX", "libell_d_acheminement": "ARTIX", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09021"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770757e76cd882e611963b615db3395a08f78a43", "fields": {"nom_de_la_commune": "WARCQ", "libell_d_acheminement": "WARCQ", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08497"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbae88666533990c24d3f6f3fdad006e03718545", "fields": {"nom_de_la_commune": "AUZAT", "libell_d_acheminement": "AUZAT", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09030"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f209aacd369dcfdf528e71916ed0c6e252afc356", "fields": {"nom_de_la_commune": "YONCQ", "libell_d_acheminement": "YONCQ", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08502"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173ffea16b587d13e6b51cadbbed139e1c4a4dc0", "fields": {"nom_de_la_commune": "LEFFINCOURT", "libell_d_acheminement": "LEFFINCOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08250"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6756cf2d271411e3b42c838293fb8378870dc7d6", "fields": {"nom_de_la_commune": "HOUDILCOURT", "libell_d_acheminement": "HOUDILCOURT", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08229"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8f3c029a51bd904942e8cb0303f4b0c78adf6c", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08219"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7efe296d2bdc23479eb4d6e4e81a1a51f09d7e", "fields": {"nom_de_la_commune": "LOGNY BOGNY", "libell_d_acheminement": "LOGNY BOGNY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08257"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acad0ec1e454f9905a685678aa0a637e4aa09664", "fields": {"nom_de_la_commune": "HARRICOURT", "libell_d_acheminement": "HARRICOURT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08215"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b948a5b9a126bcd1b2774ed25c3a205f0a25e86", "fields": {"nom_de_la_commune": "JONVAL", "libell_d_acheminement": "JONVAL", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08238"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db85a34aba60fc08904934b19eb82dcbb2c4281", "fields": {"nom_de_la_commune": "JANDUN", "libell_d_acheminement": "JANDUN", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08236"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5baf98f4a76a8ccaf1770f621ec96aa5e7b4dd54", "fields": {"nom_de_la_commune": "HAYBES", "libell_d_acheminement": "HAYBES", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08222"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97f8f944d8823ed5a279e354417439499b5e9b8", "fields": {"nom_de_la_commune": "HAULME", "libell_d_acheminement": "HAULME", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08217"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7781fc7c15c8a25515844460b45b2ed6c1a2112d", "fields": {"nom_de_la_commune": "LUMES", "libell_d_acheminement": "LUMES", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08263"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2ef066ac1c95a9124c67b2a1d878300f5dd79c", "fields": {"nom_de_la_commune": "CAZALS DES BAYLES", "libell_d_acheminement": "CAZALS DES BAYLES", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09089"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b010c548365bbde105927502da3f0f04b5590dc7", "fields": {"nom_de_la_commune": "GENNETEIL", "libell_d_acheminement": "GENNETEIL", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49150"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a3b0fd923667989ecb0a53a98b1809d9fad978", "fields": {"nom_de_la_commune": "GREZ NEUVILLE", "libell_d_acheminement": "GREZ NEUVILLE", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49155"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e112fe8ca581e49abc8c3e10d7e689506297dd7", "fields": {"nom_de_la_commune": "GRUGE L HOPITAL", "libell_d_acheminement": "GRUGE L HOPITAL", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49156"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f03ea7be61fd93dd0cc7256249964cb7a36d08ce", "fields": {"nom_de_la_commune": "HUILLE", "libell_d_acheminement": "HUILLE", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49159"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d514889d47755568324a68858f71a59a8a2d4420", "fields": {"nom_de_la_commune": "LE LOUROUX BECONNAIS", "libell_d_acheminement": "LE LOUROUX BECONNAIS", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49183"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b243689ac2f58563bea42111d40c28dfe4dce72", "fields": {"nom_de_la_commune": "MARANS", "libell_d_acheminement": "MARANS", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49187"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c65f1a10af4a3b2981cdcf097ea6e8c16f2425", "fields": {"nom_de_la_commune": "MEIGNE LE VICOMTE", "libell_d_acheminement": "MEIGNE LE VICOMTE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49197"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5b3ad6d0e2b547e519d429a7406e311168eeb9", "fields": {"code_postal": "49220", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "PRUILLE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29cdc5c4f97379f292e3841ffdb2eea1eb08d926", "fields": {"code_postal": "49770", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "LE PLESSIS MACE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.5603869664, -0.682921091412]}, "geometry": {"type": "Point", "coordinates": [-0.682921091412, 47.5603869664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedef603b6a635fd252b02100490c8a5b640ba43", "fields": {"nom_de_la_commune": "MEON", "libell_d_acheminement": "MEON", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49202"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd09458186fbb7d8e3c233bac2f7749660dfec9", "fields": {"nom_de_la_commune": "MONTIGNE LES RAIRIES", "libell_d_acheminement": "MONTIGNE LES RAIRIES", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49209"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffe9da52e53e9e7e54fb1a638c55c906c6e5c02", "fields": {"nom_de_la_commune": "MONTREUIL BELLAY", "libell_d_acheminement": "MONTREUIL BELLAY", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49215"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3dc2e2590a684c62b834d8e72e581399afc1301", "fields": {"nom_de_la_commune": "NEUILLE", "libell_d_acheminement": "NEUILLE", "code_postal": "49680", "coordonnees_gps": [47.3279848999, -0.0489537921186], "code_commune_insee": "49224"}, "geometry": {"type": "Point", "coordinates": [-0.0489537921186, 47.3279848999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe886b534446485f90270ac53ca053cae361f457", "fields": {"nom_de_la_commune": "PARCAY LES PINS", "libell_d_acheminement": "PARCAY LES PINS", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49234"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b092b83af71f0fe92d6a7e77612cff6a00268a53", "fields": {"nom_de_la_commune": "LA PELLERINE", "libell_d_acheminement": "LA PELLERINE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49237"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfea641dda4a8b51cd786adf1acf1d0f19f8ba6a", "fields": {"nom_de_la_commune": "ST CYR EN BOURG", "libell_d_acheminement": "ST CYR EN BOURG", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49274"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fdf3dd0c0cfbd107d3d6a327703dc9d74314af", "fields": {"nom_de_la_commune": "ST LAMBERT LA POTHERIE", "libell_d_acheminement": "ST LAMBERT LA POTHERIE", "code_postal": "49070", "coordonnees_gps": [47.4753092045, -0.662263154222], "code_commune_insee": "49294"}, "geometry": {"type": "Point", "coordinates": [-0.662263154222, 47.4753092045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82deb4e5157efd92a4403fb350803d230456639e", "fields": {"nom_de_la_commune": "ST LEGER SOUS CHOLET", "libell_d_acheminement": "ST LEGER SOUS CHOLET", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49299"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38e711ccdbd2a65c7686b10fea31fcdff943f11d", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "MONTFAUCON MONTIGNE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544349458a48eb92f9717d08d999801b6b742ea3", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ROUSSAY", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d406b5b7596d9ebad200e8c560dd537b2676377", "fields": {"code_postal": "49250", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "ST MATHURIN SUR LOIRE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2216936457e6bbc937876df5c4d1e43e6e0c8b0", "fields": {"nom_de_la_commune": "ST REMY LA VARENNE", "libell_d_acheminement": "ST REMY LA VARENNE", "code_postal": "49250", "coordonnees_gps": [47.4313983805, -0.244193438131], "code_commune_insee": "49317"}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac92c66b0ed5a6884c541223b6ef65ff4b094e02", "fields": {"code_postal": "49480", "code_commune_insee": "49323", "libell_d_acheminement": "VERRIERES EN ANJOU", "ligne_5": "ST SYLVAIN D ANJOU", "nom_de_la_commune": "VERRIERES EN ANJOU", "coordonnees_gps": [47.5121402522, -0.476038939286]}, "geometry": {"type": "Point", "coordinates": [-0.476038939286, 47.5121402522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cd919580738f32c3d69c3d420f01a2d0cff170", "fields": {"nom_de_la_commune": "SARRIGNE", "libell_d_acheminement": "SARRIGNE", "code_postal": "49800", "coordonnees_gps": [47.4402094612, -0.379405488422], "code_commune_insee": "49326"}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0a4b7bcfd5ac54a00ae21e58118b188db922ad", "fields": {"nom_de_la_commune": "SAULGE L HOPITAL", "libell_d_acheminement": "SAULGE L HOPITAL", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49327"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eddee84721409826e2fef2cbb862afb690133960", "fields": {"nom_de_la_commune": "SAUMUR", "libell_d_acheminement": "SAUMUR", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49328"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87168810d4ffd92e7bedcd0361ca34dc07a8af81", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "ST HILAIRE ST FLORENT", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472f654ca585f4f765bc29558036e9e5753683e7", "fields": {"nom_de_la_commune": "SEGRE", "libell_d_acheminement": "SEGRE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49331"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1f5264ff21c2a230fa2f6ce4b7d1186482bde7", "fields": {"nom_de_la_commune": "SOEURDRES", "libell_d_acheminement": "SOEURDRES", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49335"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b9235d3755583408f8261ea351872d1af36061", "fields": {"nom_de_la_commune": "SOULAINES SUR AUBANCE", "libell_d_acheminement": "SOULAINES SUR AUBANCE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49338"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ac955b3a8d44a0a226151175ad354e4fa408ff", "fields": {"nom_de_la_commune": "SOULAIRE ET BOURG", "libell_d_acheminement": "SOULAIRE ET BOURG", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49339"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50fc178c81177ba959ed16d8af431f5b67f11804", "fields": {"nom_de_la_commune": "LA TESSOUALLE", "libell_d_acheminement": "LA TESSOUALLE", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49343"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001b7d58656b5e918bc930dd9d5c38d579fa6379", "fields": {"nom_de_la_commune": "TRELAZE", "libell_d_acheminement": "TRELAZE", "code_postal": "49800", "coordonnees_gps": [47.4402094612, -0.379405488422], "code_commune_insee": "49353"}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a85c321a677d016b1f4f1f21256149c845ecb4", "fields": {"nom_de_la_commune": "TREMENTINES", "libell_d_acheminement": "TREMENTINES", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49355"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa3ea4e752487f60bc95cb17c979dfae4d835e2", "fields": {"nom_de_la_commune": "VARENNES SUR LOIRE", "libell_d_acheminement": "VARENNES SUR LOIRE", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49361"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53df0789420fdf98de59042c322da9079a049203", "fields": {"nom_de_la_commune": "VARRAINS", "libell_d_acheminement": "VARRAINS", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49362"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56600958fcf82cb296de481e599bdd39572be801", "fields": {"code_postal": "49220", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "GENE", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f44039d153369a368e046292277a86cba9519b8", "fields": {"code_postal": "49370", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "LA POUEZE", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.5234772434, -0.840270654951]}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49ec5e64b1b06e7a185398bf27a95a874e5eb9c", "fields": {"nom_de_la_commune": "VERNANTES", "libell_d_acheminement": "VERNANTES", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49368"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d79eb9683fae2413e73b43033c3232836c4e2d", "fields": {"nom_de_la_commune": "VERRIE", "libell_d_acheminement": "VERRIE", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49370"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d41071abfa8c6c19dea4ea2b77edf7d8943861", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "TREMONT", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cbb3018f0c44da83bc559055799d6b4a5ba1609", "fields": {"nom_de_la_commune": "VIVY", "libell_d_acheminement": "VIVY", "code_postal": "49680", "coordonnees_gps": [47.3279848999, -0.0489537921186], "code_commune_insee": "49378"}, "geometry": {"type": "Point", "coordinates": [-0.0489537921186, 47.3279848999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc3eead4158c6c6acaf9f148d714d39e2f3c50d", "fields": {"nom_de_la_commune": "ANNEVILLE EN SAIRE", "libell_d_acheminement": "ANNEVILLE EN SAIRE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50013"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8812e0f192f1001779183ddc1b58cd0356cf4ec", "fields": {"nom_de_la_commune": "ANNOVILLE", "libell_d_acheminement": "ANNOVILLE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50015"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb03e8ce8160561313628cb12a45ebb1a0ca94d", "fields": {"nom_de_la_commune": "AUDERVILLE", "libell_d_acheminement": "AUDERVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50020"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4061ad8c361c73837ab0e2f4756cc38683b244b", "fields": {"nom_de_la_commune": "AUVERS", "libell_d_acheminement": "AUVERS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50023"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de138e322bc91506258a3f59b3b39e90308c130", "fields": {"nom_de_la_commune": "BESNEVILLE", "libell_d_acheminement": "BESNEVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50049"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9349d9f1fa60bde921e992befbd6f04e38b5b8", "fields": {"nom_de_la_commune": "BIEVILLE", "libell_d_acheminement": "BIEVILLE", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50054"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efbdccf89ab586af285b190a74924dced0ef0bf", "fields": {"nom_de_la_commune": "BINIVILLE", "libell_d_acheminement": "BINIVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50055"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea8f08601a6cc1f5f2ba526542f5300b4fc728b", "fields": {"nom_de_la_commune": "BIVILLE", "libell_d_acheminement": "BIVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50057"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce5484d212fd355ccb0cc1299c96fcd6c1a6eb6", "fields": {"nom_de_la_commune": "LA BLOUTIERE", "libell_d_acheminement": "LA BLOUTIERE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50060"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6461edefb4e7142aac7edbf184d43d9b7da234", "fields": {"nom_de_la_commune": "BOISYVON", "libell_d_acheminement": "BOISYVON", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50062"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17afe0fe9028ff0afbee52babc614329529b9b39", "fields": {"nom_de_la_commune": "BREHAL", "libell_d_acheminement": "BREHAL", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50076"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4a4d606bc97fdf3bfc8b480671143cccd1ab2c", "fields": {"nom_de_la_commune": "BRIX", "libell_d_acheminement": "BRIX", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50087"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4fa146630d3a36fd53942844821a1d99ab9696", "fields": {"nom_de_la_commune": "BROUAINS", "libell_d_acheminement": "BROUAINS", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50088"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cd7d883d926f34f7476f1a303ec9a780179793", "fields": {"nom_de_la_commune": "CAMPROND", "libell_d_acheminement": "CAMPROND", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50094"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9aa128a7e0531d68627a7a3d01a423b309bc9fb", "fields": {"code_postal": "50480", "code_commune_insee": "50099", "libell_d_acheminement": "CARENTAN LES MARAIS", "ligne_5": "ANGOVILLE AU PLAIN", "nom_de_la_commune": "CARENTAN LES MARAIS", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed9e0f503c13da420ba692e9f4063c332255a340", "fields": {"nom_de_la_commune": "CARQUEBUT", "libell_d_acheminement": "CARQUEBUT", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50103"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e954d7509fedd845c3669112abff17261ec6c4b", "fields": {"nom_de_la_commune": "CATTEVILLE", "libell_d_acheminement": "CATTEVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50105"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da809a67a8e08f0e582b88b191d409bb56a47ed", "fields": {"nom_de_la_commune": "CAVIGNY", "libell_d_acheminement": "CAVIGNY", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50106"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42152c835cf016f27408403264abf1e27434ecd", "fields": {"nom_de_la_commune": "CATZ", "libell_d_acheminement": "CATZ", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50107"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014422d508cc70832d67009b8151a55aa3c4fa9d", "fields": {"nom_de_la_commune": "CERENCES", "libell_d_acheminement": "CERENCES", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50109"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ede3a9f2066577e316d55f8db33c07fe0243ed", "fields": {"nom_de_la_commune": "LA CHAISE BAUDOUIN", "libell_d_acheminement": "LA CHAISE BAUDOUIN", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50112"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d6000b8fafff50c803e82040909d533ac3aeb7", "fields": {"nom_de_la_commune": "LES CHAMPS DE LOSQUE", "libell_d_acheminement": "LES CHAMPS DE LOSQUE", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50119"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c3149b672d3631ff7e2e2a8adfba24c4d3e648", "fields": {"nom_de_la_commune": "LA CHAPELLE CECELIN", "libell_d_acheminement": "LA CHAPELLE CECELIN", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50121"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6c49b4c6b42a3da0a246530178a984ed451974", "fields": {"nom_de_la_commune": "CHERBOURG EN COTENTIN", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "code_postal": "50100", "coordonnees_gps": [49.6331832109, -1.6338586934], "code_commune_insee": "50129"}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d8aac8af55e2fc4dc5f6cfc968cb58b3125f1e", "fields": {"code_postal": "50460", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "QUERQUEVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6466043222, -1.6849502548]}, "geometry": {"type": "Point", "coordinates": [-1.6849502548, 49.6466043222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe011033bb856f28f5f3adc33d89ca57c6d34a16", "fields": {"nom_de_la_commune": "CHERENCE LE HERON", "libell_d_acheminement": "CHERENCE LE HERON", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50130"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ceed14c4a625a6007047e0343990c4b9cf596d", "fields": {"nom_de_la_commune": "CHERENCE LE ROUSSEL", "libell_d_acheminement": "CHERENCE LE ROUSSEL", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50131"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b436bf9f0201e0206b0ff2ff4197cc82d0f4acc0", "fields": {"nom_de_la_commune": "LA COLOMBE", "libell_d_acheminement": "LA COLOMBE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50137"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f27b404d304a74400c6bc497531f12793fedbe6", "fields": {"nom_de_la_commune": "CONTRIERES", "libell_d_acheminement": "CONTRIERES", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50140"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37e36ae5a9ac0c02c89e67bef58efefd6c66284", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "VRASVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ec81ee7f9cb8f52aa4c94d10742c2e7cc37584", "fields": {"nom_de_la_commune": "DANGY", "libell_d_acheminement": "DANGY", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50159"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d82b01fe03239aa2dba231eeff7cae3199bc016", "fields": {"nom_de_la_commune": "DRAGEY RONTHON", "libell_d_acheminement": "DRAGEY RONTHON", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50167"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2a63006cd127077f4842e1d1f2de8853a7aec21", "fields": {"code_postal": "50220", "code_commune_insee": "50168", "libell_d_acheminement": "DUCEY LES CHERIS", "ligne_5": "LES CHERIS", "nom_de_la_commune": "DUCEY LES CHERIS", "coordonnees_gps": [48.63048639, -1.31317304025]}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2d1e3e33e4b6a73fb06e5857c531bf71256ceed", "fields": {"nom_de_la_commune": "FLOTTEMANVILLE HAGUE", "libell_d_acheminement": "FLOTTEMANVILLE HAGUE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50187"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b9d3a601c8c089fa545cacfb6bed88a7c99a5d", "fields": {"code_postal": "50320", "code_commune_insee": "50188", "libell_d_acheminement": "FOLLIGNY", "ligne_5": "LA BESLIERE", "nom_de_la_commune": "FOLLIGNY", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c06a15418a7ca346a7748f31fb3e9050f20adf", "fields": {"nom_de_la_commune": "LE FRESNE PORET", "libell_d_acheminement": "LE FRESNE PORET", "code_postal": "50850", "coordonnees_gps": [48.6787910778, -0.807041651633], "code_commune_insee": "50193"}, "geometry": {"type": "Point", "coordinates": [-0.807041651633, 48.6787910778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2efb39685ac51fec712561c3c23f14edaa0d550", "fields": {"nom_de_la_commune": "GATTEVILLE LE PHARE", "libell_d_acheminement": "GATTEVILLE LE PHARE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50196"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87b7ec19c3ee2deefbc8165e00d1c3cfeedb2f7", "fields": {"nom_de_la_commune": "GOLLEVILLE", "libell_d_acheminement": "GOLLEVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50207"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7aa47a8a96ca4da1d765b7cf7d724aeaf0bd09", "fields": {"nom_de_la_commune": "GORGES", "libell_d_acheminement": "GORGES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50210"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e7bf7b97c9febc19f5523d8516cc50831c00076", "fields": {"code_postal": "50400", "code_commune_insee": "50218", "libell_d_acheminement": "GRANVILLE", "ligne_5": "ILES CHAUSEY", "nom_de_la_commune": "GRANVILLE", "coordonnees_gps": [48.8338992843, -1.53304864714]}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71be867bc8207f4880e8d4db0774b6e463e3db74", "fields": {"nom_de_la_commune": "GUEHEBERT", "libell_d_acheminement": "GUEHEBERT", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50223"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44372468bfd99493f46820d2b4f3a45bad8ba4fa", "fields": {"nom_de_la_commune": "HAMELIN", "libell_d_acheminement": "HAMELIN", "code_postal": "50730", "coordonnees_gps": [48.5520322078, -1.12375344809], "code_commune_insee": "50229"}, "geometry": {"type": "Point", "coordinates": [-1.12375344809, 48.5520322078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb0bfc00e9bdc8aea5d57aae66f438976e1f270", "fields": {"nom_de_la_commune": "HARDINVAST", "libell_d_acheminement": "HARDINVAST", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50230"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2a86cc65af78ea5bb2bcd4c4d7fa11248ca52c", "fields": {"nom_de_la_commune": "LA HAYE BELLEFOND", "libell_d_acheminement": "LA HAYE BELLEFOND", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50234"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96d7b13e68dcf49f49a1a2b3977ec1594bb5889", "fields": {"nom_de_la_commune": "LA HAYE", "libell_d_acheminement": "LA HAYE", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50236"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff49503bb49902d69870de11f6a4429178e27e2", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "GLATIGNY", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7d2e0091dceb18917b612e1123c5ac7eaf3485", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "SURVILLE", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5424f2ba15df700ff3b2e34b6293d91d1354ac", "fields": {"nom_de_la_commune": "HELLEVILLE", "libell_d_acheminement": "HELLEVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50240"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3609943be56444c4d5f7effefb96f84df6b0e54", "fields": {"nom_de_la_commune": "LE HOMMET D ARTHENAY", "libell_d_acheminement": "LE HOMMET D ARTHENAY", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50248"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9693c419a513c7c1f12290abdee4fb2d4c302d79", "fields": {"nom_de_la_commune": "HUISNES SUR MER", "libell_d_acheminement": "HUISNES SUR MER", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50253"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70535e825d60ba77122ad384a493ebc41fa878cf", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LA MANCELLIERE", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc9f0c7fd43c227522e5170bd25610ad8900ebc", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LE MESNIL BOEUFS", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de379058fedac19a96ec7de8406e885c7fb12e5", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LE MESNIL THEBAULT", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe3ed4e4dbc30a6c6187cdcf18d6354f4b95d459", "fields": {"nom_de_la_commune": "LA LANDE D AIROU", "libell_d_acheminement": "LA LANDE D AIROU", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50262"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d1b7e50df013790944ea4f7205b807b150c5265", "fields": {"nom_de_la_commune": "LIESVILLE SUR DOUVE", "libell_d_acheminement": "LIESVILLE SUR DOUVE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50269"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b6151211e0c41244faa536e4b9fd2aa04f3d43", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "COIGNY", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d15a24b363b4b3e69773446c1560baf700c1ef6", "fields": {"nom_de_la_commune": "LE LUOT", "libell_d_acheminement": "LE LUOT", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50282"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1001c953e136ed7c02baceeb972c4d497e78d8", "fields": {"nom_de_la_commune": "LE MESNIL ADELEE", "libell_d_acheminement": "LE MESNIL ADELEE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50300"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99f1acd2d38daa55ede8d092a98aa09f1ef90ea", "fields": {"nom_de_la_commune": "SARCUS", "libell_d_acheminement": "SARCUS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60604"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9882e55e935813112d98feac5bca3b441fd56b2a", "fields": {"nom_de_la_commune": "SARNOIS", "libell_d_acheminement": "SARNOIS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60605"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561655fcb39e76ebea201f2007b04d150736baec", "fields": {"nom_de_la_commune": "SEMPIGNY", "libell_d_acheminement": "SEMPIGNY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60610"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4aaa5fd74502660142165258e92fcdbd2f901a", "fields": {"nom_de_la_commune": "SENLIS", "libell_d_acheminement": "SENLIS", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60612"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ed94bf0882443efa0f8c958e82f1eb261c674f", "fields": {"nom_de_la_commune": "SERY MAGNEVAL", "libell_d_acheminement": "SERY MAGNEVAL", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60618"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f33498c8db24c9c4100304f04bed08b1dc1a4ca", "fields": {"nom_de_la_commune": "SILLY LE LONG", "libell_d_acheminement": "SILLY LE LONG", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60619"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e6854e57198af8457d7819ff455094bb46d91d", "fields": {"nom_de_la_commune": "SULLY", "libell_d_acheminement": "SULLY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60624"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3755fcc262b7eaa97fc1509c46db47642e3ce2", "fields": {"nom_de_la_commune": "TALMONTIERS", "libell_d_acheminement": "TALMONTIERS", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60626"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d8a9c2beab77ba6effaae3267af525a4483ed4", "fields": {"nom_de_la_commune": "THERINES", "libell_d_acheminement": "THERINES", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60629"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8afcfa175d0da2b996a046fe16c4ba48438942", "fields": {"nom_de_la_commune": "THIEULOY ST ANTOINE", "libell_d_acheminement": "THIEULOY ST ANTOINE", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60633"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d9ff8ce468861f799d3daca82b81b6ab1af3d8", "fields": {"nom_de_la_commune": "THOUROTTE", "libell_d_acheminement": "THOUROTTE", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60636"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bb3645bddbf811f384d7033682dfbc7b5eb643", "fields": {"nom_de_la_commune": "TOURLY", "libell_d_acheminement": "TOURLY", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60640"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3289ab4156427e87eed34dd04a85909aec6483f5", "fields": {"nom_de_la_commune": "TROISSEREUX", "libell_d_acheminement": "TROISSEREUX", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60646"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5066166e598818a5cf361b08a3c814f9cd8d1764", "fields": {"nom_de_la_commune": "VANDELICOURT", "libell_d_acheminement": "VANDELICOURT", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60654"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ebd1198b198d82a1751289b443ff186afce52e", "fields": {"nom_de_la_commune": "VARESNES", "libell_d_acheminement": "VARESNES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60655"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41fbe8f8a7750a5fbb7237fd9d976a620adae57", "fields": {"nom_de_la_commune": "VARINFROY", "libell_d_acheminement": "VARINFROY", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60656"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2750fdd5d23293a574dda334f91e1fb95e5b0a", "fields": {"nom_de_la_commune": "VAUDANCOURT", "libell_d_acheminement": "VAUDANCOURT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60659"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09f9d3e0b16c2ac5d5f61caacb90b1442c31d4c3", "fields": {"nom_de_la_commune": "LE VAUMAIN", "libell_d_acheminement": "LE VAUMAIN", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60660"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9143ccf8e724d7cb8d4f0d02f54b8aa0d3300b1d", "fields": {"nom_de_la_commune": "VAUMOISE", "libell_d_acheminement": "VAUMOISE", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60661"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3adc04fced98df9a60d2122da8b02f48f88ceca3", "fields": {"nom_de_la_commune": "VENDEUIL CAPLY", "libell_d_acheminement": "VENDEUIL CAPLY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60664"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70cffc7e3e531120595cf82a2d0400f005fa6ab", "fields": {"nom_de_la_commune": "VERBERIE", "libell_d_acheminement": "VERBERIE", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60667"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "604c53af3cbf6a91dd6a0d5f3d34fda9df1d1b8e", "fields": {"nom_de_la_commune": "VERDEREL LES SAUQUEUSE", "libell_d_acheminement": "VERDEREL LES SAUQUEUSE", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60668"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de77946a45813ee4be03d6686848c57050f7378a", "fields": {"nom_de_la_commune": "VERNEUIL EN HALATTE", "libell_d_acheminement": "VERNEUIL EN HALATTE", "code_postal": "60550", "coordonnees_gps": [49.2734564463, 2.53426475561], "code_commune_insee": "60670"}, "geometry": {"type": "Point", "coordinates": [2.53426475561, 49.2734564463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4b15597e063f44188f0098c90a1d746bc78c9c", "fields": {"nom_de_la_commune": "VILLENEUVE LES SABLONS", "libell_d_acheminement": "VILLENEUVE LES SABLONS", "code_postal": "60175", "coordonnees_gps": [49.2336117395, 2.07412380556], "code_commune_insee": "60678"}, "geometry": {"type": "Point", "coordinates": [2.07412380556, 49.2336117395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "456305bf348238698a48898f02acc3e1d49baf50", "fields": {"nom_de_la_commune": "LA VILLENEUVE SOUS THURY", "libell_d_acheminement": "LA VILLENEUVE SOUS THURY", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60679"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a2c041da4296cf4019dec4ec3dc0584e4292de", "fields": {"nom_de_la_commune": "VILLERS SOUS ST LEU", "libell_d_acheminement": "VILLERS SOUS ST LEU", "code_postal": "60340", "coordonnees_gps": [49.2256444487, 2.40347710853], "code_commune_insee": "60686"}, "geometry": {"type": "Point", "coordinates": [2.40347710853, 49.2256444487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625d2a6cee298c04e160865e40e811ffd13ccd11", "fields": {"nom_de_la_commune": "VILLERS SUR AUCHY", "libell_d_acheminement": "VILLERS SUR AUCHY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60687"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc7e80235dff2452f94fa5eabf26850da0e976a", "fields": {"nom_de_la_commune": "VROCOURT", "libell_d_acheminement": "VROCOURT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60697"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9526f99c19b29ab6643320125d127dd3fb113a0e", "fields": {"nom_de_la_commune": "ALENCON", "libell_d_acheminement": "ALENCON", "code_postal": "61000", "coordonnees_gps": [48.4294187763, 0.088345615329], "code_commune_insee": "61001"}, "geometry": {"type": "Point", "coordinates": [0.088345615329, 48.4294187763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a32110deb996729dd8f7a7e0d2101d89eddd05f", "fields": {"nom_de_la_commune": "ALMENECHES", "libell_d_acheminement": "ALMENECHES", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61002"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c04c592772c4bf8c9822a7a2c871cab2cb9baac", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "NOTRE DAME DU ROCHER", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225dd699bf7dc4a506194d751c434212d46c9460", "fields": {"nom_de_la_commune": "AUNOU SUR ORNE", "libell_d_acheminement": "AUNOU SUR ORNE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61015"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0248e71fb208993c105fd48a24bf8c698ca3f09a", "fields": {"nom_de_la_commune": "AVERNES SOUS EXMES", "libell_d_acheminement": "AVERNES SOUS EXMES", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61019"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c9386b6d9ce56b6da4e9bd3fdc621115d31f8d", "fields": {"nom_de_la_commune": "AVOINE", "libell_d_acheminement": "AVOINE", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61020"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25319f8276149abb7eb4cc4409f800c7d0ab6e6a", "fields": {"nom_de_la_commune": "BAILLEUL", "libell_d_acheminement": "BAILLEUL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61023"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20768d27d3957eebd1a4dc12145a7ca0af11687b", "fields": {"nom_de_la_commune": "LA BELLIERE", "libell_d_acheminement": "LA BELLIERE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61039"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dd721a91590678df8e5fd7e9b5da4e60ce6d80", "fields": {"nom_de_la_commune": "BIZOU", "libell_d_acheminement": "BIZOU", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61046"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f27489e53ccd0bd911cdf72c806edae4293a39", "fields": {"nom_de_la_commune": "BOECE", "libell_d_acheminement": "BOECE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61048"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4cdc5be53a965a28fef4fbe93985db018c9d90", "fields": {"code_postal": "61110", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "BOISSY MAUGIS", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0565dccac3c20aa44c863e2d961ea7facc50c225", "fields": {"code_postal": "61110", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "MAISON MAUGIS", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71640d474cf9f808559f8155d90fdfc17027aecb", "fields": {"code_postal": "61340", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "COURCERAULT", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e254d2c314e5a2dfd816ec5c9b6b45f5715828", "fields": {"nom_de_la_commune": "LE BOUILLON", "libell_d_acheminement": "LE BOUILLON", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61056"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03491192e35408b20c77e0e0237eac9a4d6039ba", "fields": {"nom_de_la_commune": "BURES", "libell_d_acheminement": "BURES", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61067"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c4b1421097ae10f1c9b26bafde11116a98d028", "fields": {"nom_de_la_commune": "BURSARD", "libell_d_acheminement": "BURSARD", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61068"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3c3a8ac5a023c170264cd9f5a8c0640e8226de6", "fields": {"nom_de_la_commune": "CAMEMBERT", "libell_d_acheminement": "CAMEMBERT", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61071"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333e3747a331bbddceab9c7fa18cb6275c1e7492", "fields": {"nom_de_la_commune": "CEAUCE", "libell_d_acheminement": "CEAUCE", "code_postal": "61330", "coordonnees_gps": [48.5202783735, -0.60354646707], "code_commune_insee": "61075"}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ce416b2c00345a15f53109e678b4a273c9e13c", "fields": {"nom_de_la_commune": "CERISE", "libell_d_acheminement": "CERISE", "code_postal": "61000", "coordonnees_gps": [48.4294187763, 0.088345615329], "code_commune_insee": "61077"}, "geometry": {"type": "Point", "coordinates": [0.088345615329, 48.4294187763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0931b1241cd04d4ab57ae8608e81472b74f3be", "fields": {"nom_de_la_commune": "CHAILLOUE", "libell_d_acheminement": "CHAILLOUE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61081"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074b25692145b6ec386d02cb651fe14cfc13f020", "fields": {"nom_de_la_commune": "CHAMBOIS", "libell_d_acheminement": "CHAMBOIS", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61083"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b877deb560c0202df418ba5d7f7606023b1122ea", "fields": {"code_postal": "61410", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "COUTERNE", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5523953273, -0.396121387013]}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91b6072c83ca69112f5d1abd410453da77840383", "fields": {"code_postal": "61410", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "HALEINE", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5523953273, -0.396121387013]}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64524ab13417139b199ba05d6054d21f1cb3727c", "fields": {"nom_de_la_commune": "LA CHAPELLE PRES SEES", "libell_d_acheminement": "LA CHAPELLE PRES SEES", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61098"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14cd99845326a60c31fd704d36b212117780b16", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUEF", "libell_d_acheminement": "LA CHAPELLE SOUEF", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61099"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db81bc46ac336fc448c57b91d4b33432320900be", "fields": {"nom_de_la_commune": "LA CHAPELLE VIEL", "libell_d_acheminement": "LA CHAPELLE VIEL", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61100"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049543a217196a2b3e1aa43ad54a34482b2acd15", "fields": {"nom_de_la_commune": "CIRAL", "libell_d_acheminement": "CIRAL", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61107"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427dfc34cab3449bee04a250e5dc8fb09113b883", "fields": {"nom_de_la_commune": "COMBLOT", "libell_d_acheminement": "COMBLOT", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61113"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b4f97a708e20471991665c418c0ee032cee3bf", "fields": {"nom_de_la_commune": "COULMER", "libell_d_acheminement": "COULMER", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61122"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b2c160c175a5a8aa3957bbf45cf45cbb177e8eb", "fields": {"nom_de_la_commune": "COURGEON", "libell_d_acheminement": "COURGEON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61129"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71fdc2fd7a65ec2492c652294725ae52c84db02a", "fields": {"nom_de_la_commune": "COURMENIL", "libell_d_acheminement": "COURMENIL", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61131"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92e7141cd83d2f7c4503a54409cb3280ef19601", "fields": {"nom_de_la_commune": "CRULAI", "libell_d_acheminement": "CRULAI", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61140"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b3acf3595b2db09f0aa231cd3bbd048c455cbd", "fields": {"code_postal": "61700", "code_commune_insee": "61145", "libell_d_acheminement": "DOMFRONT EN POIRAIE", "ligne_5": "LA HAUTE CHAPELLE", "nom_de_la_commune": "DOMFRONT EN POIRAIE", "coordonnees_gps": [48.6167127072, -0.618978701151]}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd84a8a7323635d9eafac840280441dc71b40fc", "fields": {"nom_de_la_commune": "ECHALOU", "libell_d_acheminement": "ECHALOU", "code_postal": "61440", "coordonnees_gps": [48.7041117126, -0.523576215633], "code_commune_insee": "61149"}, "geometry": {"type": "Point", "coordinates": [-0.523576215633, 48.7041117126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10692ee8abe0730fe2b946a004aa34c49eaaab91", "fields": {"nom_de_la_commune": "ECORCEI", "libell_d_acheminement": "ECORCEI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61151"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44ac2c2021a0f9648962f32c7e4a83c2d31dc76", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "BOCQUENCE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d90089f75af6a42726f2f9f1d2a3b6e3babad1", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "MARNEFER", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea69e5580ce5bb3a53f82db6b49f109f7409452", "fields": {"nom_de_la_commune": "LA FERTE MACE", "libell_d_acheminement": "LA FERTE MACE", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61168"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71c8f3910e914851090e2f43951e939092db99a", "fields": {"nom_de_la_commune": "FLEURE", "libell_d_acheminement": "FLEURE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61170"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f211e79984b9cce7b45760b16a7af246e6ff9e", "fields": {"nom_de_la_commune": "LA FRESNAIE FAYEL", "libell_d_acheminement": "LA FRESNAIE FAYEL", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61178"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e267956a8875696009a5e42e96ce32bb48a00d", "fields": {"nom_de_la_commune": "GAPREE", "libell_d_acheminement": "GAPREE", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61183"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0d1d0b8e256f70752e0cdf1add34af167abe21", "fields": {"nom_de_la_commune": "GODISSON", "libell_d_acheminement": "GODISSON", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61192"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c84b3319ea3e7c6e3e08bb8d4b33ecb49bbf92d", "fields": {"nom_de_la_commune": "LE GRAIS", "libell_d_acheminement": "LE GRAIS", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61195"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a77888d2f4120376954c48bc6a92885fd9d11a5", "fields": {"nom_de_la_commune": "LE GUE DE LA CHAINE", "libell_d_acheminement": "LE GUE DE LA CHAINE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61196"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f878bdd4b6d3b2131390dc127727ef32acebfbba", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "LUCE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7fd43a573f6fe7854dc0b50e1423b497a33da50", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "SEPT FORGES", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e566e1d565afcded94412e3354e4836648a114f1", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "ST DENIS DE VILLENETTE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be399219d171f1da2b8ff92eb0b4b0b445f71b33", "fields": {"nom_de_la_commune": "LA LANDE PATRY", "libell_d_acheminement": "LA LANDE PATRY", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61218"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0280c4ed6485e0a5bbfab5ec2ab9147a13fcee6", "fields": {"nom_de_la_commune": "LA LANDE ST SIMEON", "libell_d_acheminement": "LA LANDE ST SIMEON", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61219"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bf66c2614ea377d705cc895e81364c27ca488a", "fields": {"nom_de_la_commune": "LARRE", "libell_d_acheminement": "LARRE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61224"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92676b7180d9e64598a49af4d2f34cc904755673", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MALETABLE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6187ad7723818d417446913b2311316eaf421602", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "ST VICTOR DE RENO", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f908902b4ab699ed77d5bd20b848a4cde296f61", "fields": {"nom_de_la_commune": "LONLAY L ABBAYE", "libell_d_acheminement": "LONLAY L ABBAYE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61232"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4f43c9c036784720fc82dcb3442e7411583080", "fields": {"nom_de_la_commune": "MACE", "libell_d_acheminement": "MACE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61240"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6008a76534a2892b90babf6d5fd0af0b35810edd", "fields": {"nom_de_la_commune": "LE MELE SUR SARTHE", "libell_d_acheminement": "LE MELE SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61258"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b74795122b8931300a5f0629d2db168955ad82", "fields": {"nom_de_la_commune": "LE MENIL DE BRIOUZE", "libell_d_acheminement": "LE MENIL DE BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61260"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd969380c6f48f92a8bc3f152024537959f87345", "fields": {"nom_de_la_commune": "MENIL ERREUX", "libell_d_acheminement": "MENIL ERREUX", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61263"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65991b3585916f4a04e97ffe79a57df427bb8529", "fields": {"nom_de_la_commune": "LE MENIL SCELLEUR", "libell_d_acheminement": "LE MENIL SCELLEUR", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61271"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da7f25fcc631c38197095dc62af734ff23d972b", "fields": {"nom_de_la_commune": "LA MESNIERE", "libell_d_acheminement": "LA MESNIERE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61277"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060a5b9e3d6588797d93db56b56a47d3bf835a38", "fields": {"nom_de_la_commune": "MONTABARD", "libell_d_acheminement": "MONTABARD", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61283"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2704ba19347007188a880fa754063be2cd9699", "fields": {"nom_de_la_commune": "MONTREUIL AU HOULME", "libell_d_acheminement": "MONTREUIL AU HOULME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61290"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b62d78a812bc0b5b4df4bc85d72f28ce8595bc7", "fields": {"nom_de_la_commune": "NEUVY AU HOULME", "libell_d_acheminement": "NEUVY AU HOULME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61308"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb43557243f7af644d06c86cbad0d75fc26168e", "fields": {"nom_de_la_commune": "ORGERES", "libell_d_acheminement": "ORGERES", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61317"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9438a5de5b07d3657df2359da16a78f01457a178", "fields": {"nom_de_la_commune": "PACE", "libell_d_acheminement": "PACE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61321"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37e6507c30e2f15f2442c42897a988cbe1279b6", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "PUTANGES PONT ECREPIN", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8509bb1fbf0c57aff766b83f46d0d62b4189cbd", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "STE CROIX SUR ORNE", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5068ff0cc15b2ed235b1f1bd2510a74effaedef", "fields": {"code_postal": "61250", "code_commune_insee": "61341", "libell_d_acheminement": "ECOUVES", "ligne_5": "RADON", "nom_de_la_commune": "ECOUVES", "coordonnees_gps": [48.4708532437, 0.079807061748]}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df7afd96cb15bcf78180b3b06b4bbfa1a3db9a7d", "fields": {"nom_de_la_commune": "RANES", "libell_d_acheminement": "RANES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61344"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f8a40c3aa03bd4792f04826c72d0a83835c9b3", "fields": {"code_postal": "61110", "code_commune_insee": "61345", "libell_d_acheminement": "REMALARD EN PERCHE", "ligne_5": "DORCEAU", "nom_de_la_commune": "REMALARD EN PERCHE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a2ce5f4ef4d8c1420e456402b61b4593e9b3f4", "fields": {"nom_de_la_commune": "LA ROCHE MABILE", "libell_d_acheminement": "LA ROCHE MABILE", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61350"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c58f3130c4dfb728ed0e0eaa311ae17228e554c", "fields": {"nom_de_la_commune": "ST AGNAN SUR SARTHE", "libell_d_acheminement": "ST AGNAN SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61360"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab20d285adfb4b6b176f9dee9fe557f29c483150", "fields": {"nom_de_la_commune": "ST AUBIN DE BONNEVAL", "libell_d_acheminement": "ST AUBIN DE BONNEVAL", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61366"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff22129d74fbec4d09f0b79bce5cfcf60317e83", "fields": {"nom_de_la_commune": "VIVIERS SUR ARTAUT", "libell_d_acheminement": "VIVIERS SUR ARTAUT", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10439"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0441a6bf4cf49aec6461aafc10c276d2944307d7", "fields": {"nom_de_la_commune": "VILLETTE SUR AUBE", "libell_d_acheminement": "VILLETTE SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10429"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9be43d5daf4e2bb012e2c511002ce2f9e6f4bf", "fields": {"nom_de_la_commune": "VILLY EN TRODES", "libell_d_acheminement": "VILLY EN TRODES", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10433"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff126d7b21e8acdcd6c3b08f5f3e700efd2b053", "fields": {"nom_de_la_commune": "VILLE SUR TERRE", "libell_d_acheminement": "VILLE SUR TERRE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10428"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55af1239ac1cfd5b1e630990ca27e3f9ea7f916d", "fields": {"nom_de_la_commune": "VIREY SOUS BAR", "libell_d_acheminement": "VIREY SOUS BAR", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10437"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e2639931a2d1cba9b1477061e4e46d047d0239", "fields": {"nom_de_la_commune": "ARGELIERS", "libell_d_acheminement": "ARGELIERS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11012"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8e28d52cf2ef2cf4fba5a5af2e576de028ef84", "fields": {"nom_de_la_commune": "VOUGREY", "libell_d_acheminement": "VOUGREY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10443"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c72c8e7be57a49bfa1f0981e7472dd6ba112fa6", "fields": {"nom_de_la_commune": "VOSNON", "libell_d_acheminement": "VOSNON", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10441"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edecadb0256e259d23dc2163f196dc77c22633a4", "fields": {"nom_de_la_commune": "AJAC", "libell_d_acheminement": "AJAC", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11003"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfb5d0130fe456e0e8d7ffb243f84621400adeb", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "GREZES HERMINIS", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6138ed561fe2ad910f4fb96eb43433214d059b", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "VILLALBE", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90f12dd047453518c6c5cca396bcc82fff27a27", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "MAQUENS", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85518aea4deb8bfbf132e8aa8d0a074ddbc0fd00", "fields": {"nom_de_la_commune": "CAMPAGNA DE SAULT", "libell_d_acheminement": "CAMPAGNA DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11062"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78d19b7a8c86f32745d361885b355aa9f4697b1", "fields": {"nom_de_la_commune": "CAMPS SUR L AGLY", "libell_d_acheminement": "CAMPS SUR L AGLY", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11065"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b8639800e18eccf272243a49966ea5088beea28", "fields": {"nom_de_la_commune": "LE BOUSQUET", "libell_d_acheminement": "LE BOUSQUET", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11047"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504b65d9978bde0b535714481f54e9d1ca100d17", "fields": {"nom_de_la_commune": "BARAIGNE", "libell_d_acheminement": "BARAIGNE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11026"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a51f4532d6a0dbc41c8c61c53745af911121211", "fields": {"nom_de_la_commune": "BIZANET", "libell_d_acheminement": "BIZANET", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11040"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2ea498a11ec7bf8aeba3ef5ced7fd980d56164", "fields": {"nom_de_la_commune": "BELPECH", "libell_d_acheminement": "BELPECH", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11033"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67981aff8b57aa7902d1f5d49820174bbc9d2401", "fields": {"nom_de_la_commune": "CANET", "libell_d_acheminement": "CANET", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11067"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dfb6acf0cbf9910d58a8f8070823a0838f85767", "fields": {"nom_de_la_commune": "CASCASTEL DES CORBIERES", "libell_d_acheminement": "CASCASTEL DES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11071"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c4136a6137df6e1016276e3f19efd98968f25e", "fields": {"nom_de_la_commune": "CAUX ET SAUZENS", "libell_d_acheminement": "CAUX ET SAUZENS", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11084"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f331707690b054544d05be6412d7445a70ecf0", "fields": {"nom_de_la_commune": "CENNE MONESTIES", "libell_d_acheminement": "CENNE MONESTIES", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11089"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a50f3e9d0a69e3b0412a0bd037cf67ae8ae747", "fields": {"nom_de_la_commune": "CASTELNAUDARY", "libell_d_acheminement": "CASTELNAUDARY", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11076"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc8c1dbf1680946f6daf76d716be43f51e3a56db", "fields": {"nom_de_la_commune": "CAZILHAC", "libell_d_acheminement": "CAZILHAC", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11088"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa043c3d3e501aa397e30c04db3f43d154f39130", "fields": {"nom_de_la_commune": "COMIGNE", "libell_d_acheminement": "COMIGNE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11095"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a67405a2169fccee87e213359f92ed6df16a93", "fields": {"nom_de_la_commune": "CASTANS", "libell_d_acheminement": "CASTANS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11075"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "221df9cb37377ecc0a2be96a999df436957b4f12", "fields": {"nom_de_la_commune": "CITOU", "libell_d_acheminement": "CITOU", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11092"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d38ce28a3cae2beaedb459767a7e8f6ba987df", "fields": {"nom_de_la_commune": "CEPIE", "libell_d_acheminement": "CEPIE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11090"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f238a09414d695bb2d9b0a54a65cafb99241ac", "fields": {"nom_de_la_commune": "CAVES", "libell_d_acheminement": "CAVES", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11086"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29105c8fd3a7243dac176f67f08bd1882a7f6fa4", "fields": {"nom_de_la_commune": "CONILHAC DE LA MONTAGNE", "libell_d_acheminement": "CONILHAC DE LA MONTAGNE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11097"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62c4adc9c2c973d895792f2d28df51831fcb6a5", "fields": {"nom_de_la_commune": "CORBIERES", "libell_d_acheminement": "CORBIERES", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11100"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6cb268986d087533862876decd5da8977f728f9", "fields": {"nom_de_la_commune": "COMUS", "libell_d_acheminement": "COMUS", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11096"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da0ab64c35be16576f8aa94cdc8c5793d71a1d0", "fields": {"nom_de_la_commune": "NANTERRE", "libell_d_acheminement": "NANTERRE", "code_postal": "92000", "coordonnees_gps": [48.8962161446, 2.2068493546], "code_commune_insee": "92050"}, "geometry": {"type": "Point", "coordinates": [2.2068493546, 48.8962161446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34d38eb6f469bd624a4f2d143c44e457c23c982f", "fields": {"nom_de_la_commune": "SURESNES", "libell_d_acheminement": "SURESNES", "code_postal": "92150", "coordonnees_gps": [48.8700470804, 2.21976930955], "code_commune_insee": "92073"}, "geometry": {"type": "Point", "coordinates": [2.21976930955, 48.8700470804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7639cfd4a6dcf2349d9e9cdc6409f900bc3eacf1", "fields": {"nom_de_la_commune": "VAUCRESSON", "libell_d_acheminement": "VAUCRESSON", "code_postal": "92420", "coordonnees_gps": [48.841686797, 2.16112497638], "code_commune_insee": "92076"}, "geometry": {"type": "Point", "coordinates": [2.16112497638, 48.841686797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260b16a3e203014ebe07c2ce0e6a8bc187486df8", "fields": {"nom_de_la_commune": "VILLE D AVRAY", "libell_d_acheminement": "VILLE D AVRAY", "code_postal": "92410", "coordonnees_gps": [48.8215001664, 2.17605556891], "code_commune_insee": "92077"}, "geometry": {"type": "Point", "coordinates": [2.17605556891, 48.8215001664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e29bb54fc12683c737a2e4c96512075833c2ee7", "fields": {"nom_de_la_commune": "VILLENEUVE LA GARENNE", "libell_d_acheminement": "VILLENEUVE LA GARENNE", "code_postal": "92390", "coordonnees_gps": [48.9370038707, 2.3254720877], "code_commune_insee": "92078"}, "geometry": {"type": "Point", "coordinates": [2.3254720877, 48.9370038707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f8d5bbcba66344d248d19be2e096741581b0a4", "fields": {"nom_de_la_commune": "BAGNOLET", "libell_d_acheminement": "BAGNOLET", "code_postal": "93170", "coordonnees_gps": [48.869693461, 2.42282027746], "code_commune_insee": "93006"}, "geometry": {"type": "Point", "coordinates": [2.42282027746, 48.869693461]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51359cfb0576e1c6f78fe4a712e2eeed2dcf537", "fields": {"nom_de_la_commune": "BOBIGNY", "libell_d_acheminement": "BOBIGNY", "code_postal": "93000", "coordonnees_gps": [48.9073872094, 2.43988733867], "code_commune_insee": "93008"}, "geometry": {"type": "Point", "coordinates": [2.43988733867, 48.9073872094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54cb293753373b1578478198c0db52c4b70e2eb3", "fields": {"nom_de_la_commune": "CLICHY SOUS BOIS", "libell_d_acheminement": "CLICHY SOUS BOIS", "code_postal": "93390", "coordonnees_gps": [48.9081483622, 2.54557176505], "code_commune_insee": "93014"}, "geometry": {"type": "Point", "coordinates": [2.54557176505, 48.9081483622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67f03e074a5146c543d789220bb42bf3e9ff3d2", "fields": {"nom_de_la_commune": "LA COURNEUVE", "libell_d_acheminement": "LA COURNEUVE", "code_postal": "93120", "coordonnees_gps": [48.9327015423, 2.39963456624], "code_commune_insee": "93027"}, "geometry": {"type": "Point", "coordinates": [2.39963456624, 48.9327015423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc433bd80cb040cea0ce24fe26075520f2e64ef8", "fields": {"nom_de_la_commune": "DRANCY", "libell_d_acheminement": "DRANCY", "code_postal": "93700", "coordonnees_gps": [48.9233885913, 2.44445418535], "code_commune_insee": "93029"}, "geometry": {"type": "Point", "coordinates": [2.44445418535, 48.9233885913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c2e73f2db50c4894d4f62f24df0263e708709f", "fields": {"nom_de_la_commune": "DUGNY", "libell_d_acheminement": "DUGNY", "code_postal": "93440", "coordonnees_gps": [48.9509287512, 2.42403288293], "code_commune_insee": "93030"}, "geometry": {"type": "Point", "coordinates": [2.42403288293, 48.9509287512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b36710abea94f3e7d875f9f6f600cff3d807548", "fields": {"nom_de_la_commune": "EPINAY SUR SEINE", "libell_d_acheminement": "EPINAY SUR SEINE", "code_postal": "93800", "coordonnees_gps": [48.95503927, 2.31470709398], "code_commune_insee": "93031"}, "geometry": {"type": "Point", "coordinates": [2.31470709398, 48.95503927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4622f02b5c5102ccfbd019a6368603a6f9bdc08", "fields": {"nom_de_la_commune": "GOURNAY SUR MARNE", "libell_d_acheminement": "GOURNAY SUR MARNE", "code_postal": "93460", "coordonnees_gps": [48.860886213, 2.5757798256], "code_commune_insee": "93033"}, "geometry": {"type": "Point", "coordinates": [2.5757798256, 48.860886213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f949bc74c38b0c743e51892e28b7f5caaae44096", "fields": {"nom_de_la_commune": "MONTFERMEIL", "libell_d_acheminement": "MONTFERMEIL", "code_postal": "93370", "coordonnees_gps": [48.8981258496, 2.56699754775], "code_commune_insee": "93047"}, "geometry": {"type": "Point", "coordinates": [2.56699754775, 48.8981258496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2dfca8ccd1d4f2b6b80fbcc498a2ecb1f32510", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "93100", "coordonnees_gps": [48.8631150275, 2.44833244212], "code_commune_insee": "93048"}, "geometry": {"type": "Point", "coordinates": [2.44833244212, 48.8631150275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a7f8436c4b27f84d9fcda4cc09fac30e09ea3d", "fields": {"nom_de_la_commune": "NEUILLY PLAISANCE", "libell_d_acheminement": "NEUILLY PLAISANCE", "code_postal": "93360", "coordonnees_gps": [48.8635953695, 2.51054009656], "code_commune_insee": "93049"}, "geometry": {"type": "Point", "coordinates": [2.51054009656, 48.8635953695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e42c3b780661b2389fa7b2847bc71cd45d136f52", "fields": {"nom_de_la_commune": "PIERREFITTE SUR SEINE", "libell_d_acheminement": "PIERREFITTE SUR SEINE", "code_postal": "93380", "coordonnees_gps": [48.9601575752, 2.36349767904], "code_commune_insee": "93059"}, "geometry": {"type": "Point", "coordinates": [2.36349767904, 48.9601575752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78af53d2db10724f8594b0bd881f8b9e91f6c7cd", "fields": {"nom_de_la_commune": "ROMAINVILLE", "libell_d_acheminement": "ROMAINVILLE", "code_postal": "93230", "coordonnees_gps": [48.8846043841, 2.43804330758], "code_commune_insee": "93063"}, "geometry": {"type": "Point", "coordinates": [2.43804330758, 48.8846043841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b00e2fa06e9d71f9e4d19fe7d50e495d2113e8", "fields": {"nom_de_la_commune": "ST OUEN", "libell_d_acheminement": "ST OUEN", "code_postal": "93400", "coordonnees_gps": [48.9096159679, 2.33315490092], "code_commune_insee": "93070"}, "geometry": {"type": "Point", "coordinates": [2.33315490092, 48.9096159679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c15b1c15e30458b97ca02d0888a28a4e47c3b5", "fields": {"nom_de_la_commune": "STAINS", "libell_d_acheminement": "STAINS", "code_postal": "93240", "coordonnees_gps": [48.9567913169, 2.3856852173], "code_commune_insee": "93072"}, "geometry": {"type": "Point", "coordinates": [2.3856852173, 48.9567913169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3ccd45c6d22976d28153d783c6e503a26b5d464", "fields": {"nom_de_la_commune": "ARCUEIL", "libell_d_acheminement": "ARCUEIL", "code_postal": "94110", "coordonnees_gps": [48.8054545839, 2.33403821483], "code_commune_insee": "94003"}, "geometry": {"type": "Point", "coordinates": [2.33403821483, 48.8054545839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3ba152a433ff203f2f51d30108d9da090c873d", "fields": {"nom_de_la_commune": "BRY SUR MARNE", "libell_d_acheminement": "BRY SUR MARNE", "code_postal": "94360", "coordonnees_gps": [48.839091496, 2.52374839829], "code_commune_insee": "94015"}, "geometry": {"type": "Point", "coordinates": [2.52374839829, 48.839091496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8dcd7b02d84b953b37ca0e447f21b563347818", "fields": {"nom_de_la_commune": "CHOISY LE ROI", "libell_d_acheminement": "CHOISY LE ROI", "code_postal": "94600", "coordonnees_gps": [48.7646580823, 2.41696553612], "code_commune_insee": "94022"}, "geometry": {"type": "Point", "coordinates": [2.41696553612, 48.7646580823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d6165a8895fd4c78c911089047db788a01bc6c", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "94260", "coordonnees_gps": [48.7570286866, 2.32584996209], "code_commune_insee": "94034"}, "geometry": {"type": "Point", "coordinates": [2.32584996209, 48.7570286866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471b80e65d5983690cf13a1058e1136d1fc97a13", "fields": {"nom_de_la_commune": "IVRY SUR SEINE", "libell_d_acheminement": "IVRY SUR SEINE", "code_postal": "94200", "coordonnees_gps": [48.8126036229, 2.38769451134], "code_commune_insee": "94041"}, "geometry": {"type": "Point", "coordinates": [2.38769451134, 48.8126036229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82779b8f19ee994fdbb58a22baa61f23a63f211", "fields": {"nom_de_la_commune": "LE PLESSIS TREVISE", "libell_d_acheminement": "LE PLESSIS TREVISE", "code_postal": "94420", "coordonnees_gps": [48.8064003438, 2.5749391761], "code_commune_insee": "94059"}, "geometry": {"type": "Point", "coordinates": [2.5749391761, 48.8064003438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207b5214e1b21fbc7aa3758b9e135a57b8fab9e2", "fields": {"nom_de_la_commune": "ST MANDE", "libell_d_acheminement": "ST MANDE", "code_postal": "94160", "coordonnees_gps": [48.8414086049, 2.41818317859], "code_commune_insee": "94067"}, "geometry": {"type": "Point", "coordinates": [2.41818317859, 48.8414086049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accad8f65c8966d93204389fb119428e4a441324", "fields": {"nom_de_la_commune": "THIAIS", "libell_d_acheminement": "THIAIS", "code_postal": "94320", "coordonnees_gps": [48.760796364, 2.38561449918], "code_commune_insee": "94073"}, "geometry": {"type": "Point", "coordinates": [2.38561449918, 48.760796364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78118ae81ae603b996f0427212a3a8fb3748439", "fields": {"nom_de_la_commune": "VALENTON", "libell_d_acheminement": "VALENTON", "code_postal": "94460", "coordonnees_gps": [48.7530822759, 2.46124565223], "code_commune_insee": "94074"}, "geometry": {"type": "Point", "coordinates": [2.46124565223, 48.7530822759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9f9d26b2d99d8a940cede4fa806c9cae19ebf8", "fields": {"nom_de_la_commune": "VILLECRESNES", "libell_d_acheminement": "VILLECRESNES", "code_postal": "94440", "coordonnees_gps": [48.7320439942, 2.55920831223], "code_commune_insee": "94075"}, "geometry": {"type": "Point", "coordinates": [2.55920831223, 48.7320439942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4954bf4e953f39dc9c1c8aa6018b2a3304a138eb", "fields": {"nom_de_la_commune": "VILLEJUIF", "libell_d_acheminement": "VILLEJUIF", "code_postal": "94800", "coordonnees_gps": [48.7924436118, 2.35977406843], "code_commune_insee": "94076"}, "geometry": {"type": "Point", "coordinates": [2.35977406843, 48.7924436118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9e7ee9252ce2350b3f65006181f63acdd92373", "fields": {"nom_de_la_commune": "AMBLEVILLE", "libell_d_acheminement": "AMBLEVILLE", "code_postal": "95710", "coordonnees_gps": [49.1290552989, 1.69526260075], "code_commune_insee": "95011"}, "geometry": {"type": "Point", "coordinates": [1.69526260075, 49.1290552989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcbfad306df82d2c7e37fad3e66bc3b0dcdfa457", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "95580", "coordonnees_gps": [49.0070961158, 2.30020142224], "code_commune_insee": "95014"}, "geometry": {"type": "Point", "coordinates": [2.30020142224, 49.0070961158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462b4143dad64412cf3c5b0c1b0e977d33d1c9c4", "fields": {"nom_de_la_commune": "ARGENTEUIL", "libell_d_acheminement": "ARGENTEUIL", "code_postal": "95100", "coordonnees_gps": [48.95173377, 2.24070535988], "code_commune_insee": "95018"}, "geometry": {"type": "Point", "coordinates": [2.24070535988, 48.95173377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bcf6ae8b6aeb9d93323e60c5669de329efcd3c", "fields": {"nom_de_la_commune": "ARNOUVILLE", "libell_d_acheminement": "ARNOUVILLE", "code_postal": "95400", "coordonnees_gps": [49.0014583896, 2.40751013382], "code_commune_insee": "95019"}, "geometry": {"type": "Point", "coordinates": [2.40751013382, 49.0014583896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b0607d5e80be98996a67e8508ac86b83746a83", "fields": {"nom_de_la_commune": "ARRONVILLE", "libell_d_acheminement": "ARRONVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95023"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a6569a9a06e764e15d5695f6ecd0fff373f4ee", "fields": {"nom_de_la_commune": "ARTHIES", "libell_d_acheminement": "ARTHIES", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95024"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd077b6169d8e00c574956e8a059c9732eed645", "fields": {"nom_de_la_commune": "ATTAINVILLE", "libell_d_acheminement": "ATTAINVILLE", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95028"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed1af6991bcd8d19d4112465324609417ff9b59", "fields": {"nom_de_la_commune": "BAILLET EN FRANCE", "libell_d_acheminement": "BAILLET EN FRANCE", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95042"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c9068e4d15c768dd45d03b528fb00fa124f931", "fields": {"nom_de_la_commune": "BEAUCHAMP", "libell_d_acheminement": "BEAUCHAMP", "code_postal": "95250", "coordonnees_gps": [49.0147161018, 2.19268576648], "code_commune_insee": "95051"}, "geometry": {"type": "Point", "coordinates": [2.19268576648, 49.0147161018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcfd96f4fd064252e32b3045226c27f0a376612", "fields": {"nom_de_la_commune": "BEAUMONT SUR OISE", "libell_d_acheminement": "BEAUMONT SUR OISE", "code_postal": "95260", "coordonnees_gps": [49.1373667054, 2.28877829148], "code_commune_insee": "95052"}, "geometry": {"type": "Point", "coordinates": [2.28877829148, 49.1373667054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b715684b377745d6061d54449c8535fe041e64", "fields": {"nom_de_la_commune": "BERVILLE", "libell_d_acheminement": "BERVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95059"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25099822222ae9c21d132be48d497665c88c50c1", "fields": {"nom_de_la_commune": "BEZONS", "libell_d_acheminement": "BEZONS", "code_postal": "95870", "coordonnees_gps": [48.9263133058, 2.21169036009], "code_commune_insee": "95063"}, "geometry": {"type": "Point", "coordinates": [2.21169036009, 48.9263133058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a618c92b4e59af98a76d7ea5166d8cfc1640e2e8", "fields": {"nom_de_la_commune": "BREANCON", "libell_d_acheminement": "BREANCON", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95102"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f195d88d46602720a580357e3f843801a8be3b4", "fields": {"nom_de_la_commune": "CHAUMONTEL", "libell_d_acheminement": "CHAUMONTEL", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95149"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2657281a8b539448c3dbe5248026cee967899fb5", "fields": {"nom_de_la_commune": "CHAUSSY", "libell_d_acheminement": "CHAUSSY", "code_postal": "95710", "coordonnees_gps": [49.1290552989, 1.69526260075], "code_commune_insee": "95150"}, "geometry": {"type": "Point", "coordinates": [1.69526260075, 49.1290552989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941c07b314e9ad663ee0056704a64fda8a933854", "fields": {"nom_de_la_commune": "CHAUVRY", "libell_d_acheminement": "CHAUVRY", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95151"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd65027931d643b8fb97fb47af1b7329b55f0dd7", "fields": {"nom_de_la_commune": "CHERENCE", "libell_d_acheminement": "CHERENCE", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95157"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1943ab79a784277fe7c42844ff030f718e4c35e3", "fields": {"nom_de_la_commune": "CORMEILLES EN PARISIS", "libell_d_acheminement": "CORMEILLES EN PARISIS", "code_postal": "95240", "coordonnees_gps": [48.9692349874, 2.19911393825], "code_commune_insee": "95176"}, "geometry": {"type": "Point", "coordinates": [2.19911393825, 48.9692349874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776ff5853883de39b225ac3e55e73d8b62ad065c", "fields": {"nom_de_la_commune": "ERAGNY", "libell_d_acheminement": "ERAGNY SUR OISE", "code_postal": "95610", "coordonnees_gps": [49.0206699576, 2.10149054381], "code_commune_insee": "95218"}, "geometry": {"type": "Point", "coordinates": [2.10149054381, 49.0206699576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cc865bf116f1b43e3ebaf2c87453e0a389846d", "fields": {"nom_de_la_commune": "EZANVILLE", "libell_d_acheminement": "EZANVILLE", "code_postal": "95460", "coordonnees_gps": [49.0385138041, 2.3630123433], "code_commune_insee": "95229"}, "geometry": {"type": "Point", "coordinates": [2.3630123433, 49.0385138041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd14965ca9776cbe1eaf31f0aba94cd5930d5ff", "fields": {"nom_de_la_commune": "LA FRETTE SUR SEINE", "libell_d_acheminement": "LA FRETTE SUR SEINE", "code_postal": "95530", "coordonnees_gps": [48.9743528726, 2.17813705819], "code_commune_insee": "95257"}, "geometry": {"type": "Point", "coordinates": [2.17813705819, 48.9743528726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993098caf3c93ef94c27d9a1603bf553c434b28d", "fields": {"nom_de_la_commune": "FROUVILLE", "libell_d_acheminement": "FROUVILLE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95258"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf428742a38b9e29eb93455a79e2358ace98380d", "fields": {"nom_de_la_commune": "GOUSSAINVILLE", "libell_d_acheminement": "GOUSSAINVILLE", "code_postal": "95190", "coordonnees_gps": [49.0402800937, 2.45734698588], "code_commune_insee": "95280"}, "geometry": {"type": "Point", "coordinates": [2.45734698588, 49.0402800937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88478d0115c56103e36a362fa977f57a23dfa1a7", "fields": {"nom_de_la_commune": "GUIRY EN VEXIN", "libell_d_acheminement": "GUIRY EN VEXIN", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95295"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b218917b1ea81881172f9ded71b100c9f03966ef", "fields": {"nom_de_la_commune": "HEDOUVILLE", "libell_d_acheminement": "HEDOUVILLE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95304"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096417639ce3070cdeddbd2a984cde220680fb7e", "fields": {"nom_de_la_commune": "HODENT", "libell_d_acheminement": "HODENT", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95309"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d8f87c25efde3d81fe4510e4d5e075b2d0d2162", "fields": {"nom_de_la_commune": "JAGNY SOUS BOIS", "libell_d_acheminement": "JAGNY SOUS BOIS", "code_postal": "95850", "coordonnees_gps": [49.0746281693, 2.42764597482], "code_commune_insee": "95316"}, "geometry": {"type": "Point", "coordinates": [2.42764597482, 49.0746281693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9facb7599a08395da837d19868d269d3c1a7637", "fields": {"code_postal": "95280", "code_commune_insee": "95323", "libell_d_acheminement": "JOUY LE MOUTIER", "ligne_5": "JOUY LA FONTAINE", "nom_de_la_commune": "JOUY LE MOUTIER", "coordonnees_gps": [49.0112311928, 2.03342738029]}, "geometry": {"type": "Point", "coordinates": [2.03342738029, 49.0112311928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c6044d634a55d3c36513f7a8088a969d28729d", "fields": {"nom_de_la_commune": "MARINES", "libell_d_acheminement": "MARINES", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95370"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6e00d78f9af8fc7a0011aeb9b96ead1e746ffc", "fields": {"nom_de_la_commune": "MARLY LA VILLE", "libell_d_acheminement": "MARLY LA VILLE", "code_postal": "95670", "coordonnees_gps": [49.0808886111, 2.50898274174], "code_commune_insee": "95371"}, "geometry": {"type": "Point", "coordinates": [2.50898274174, 49.0808886111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66bedc494ba8bd2aee41886e88a2ff469f19dba9", "fields": {"nom_de_la_commune": "LE MESNIL AUBRY", "libell_d_acheminement": "LE MESNIL AUBRY", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95395"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e08c33e8810f221ae0505347e7bb9ba00336fe", "fields": {"nom_de_la_commune": "MONTLIGNON", "libell_d_acheminement": "MONTLIGNON", "code_postal": "95680", "coordonnees_gps": [49.0142987876, 2.28971732713], "code_commune_insee": "95426"}, "geometry": {"type": "Point", "coordinates": [2.28971732713, 49.0142987876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b626a19902fbcf18544a09844ec0cf2b217eb5", "fields": {"nom_de_la_commune": "NEUVILLE SUR OISE", "libell_d_acheminement": "NEUVILLE SUR OISE", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95450"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85ba6054a873d1267e1f9351e3b9cf7bb2c13d8", "fields": {"nom_de_la_commune": "NOINTEL", "libell_d_acheminement": "NOINTEL", "code_postal": "95590", "coordonnees_gps": [49.1078677101, 2.28470413018], "code_commune_insee": "95452"}, "geometry": {"type": "Point", "coordinates": [2.28470413018, 49.1078677101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a99aea952fe80537696ac2f1dedac8d8d2cbde", "fields": {"nom_de_la_commune": "LE PERCHAY", "libell_d_acheminement": "LE PERCHAY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95483"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48a54de40756d2e481f49124114b3de711f21ed", "fields": {"nom_de_la_commune": "PERSAN", "libell_d_acheminement": "PERSAN", "code_postal": "95340", "coordonnees_gps": [49.1610028463, 2.26428490236], "code_commune_insee": "95487"}, "geometry": {"type": "Point", "coordinates": [2.26428490236, 49.1610028463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9c3f2280ba6952afc2205bb013cd551e1f5aad", "fields": {"nom_de_la_commune": "PIERRELAYE", "libell_d_acheminement": "PIERRELAYE", "code_postal": "95220", "coordonnees_gps": [49.0082603783, 2.15434312371], "code_commune_insee": "95488"}, "geometry": {"type": "Point", "coordinates": [2.15434312371, 49.0082603783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b51bbf51e9c03325edd36684e9fe61475804e71", "fields": {"nom_de_la_commune": "GRAIGNES MESNIL ANGOT", "libell_d_acheminement": "GRAIGNES MESNIL ANGOT", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50216"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38af80c13e3117bb6f54a2a6e27a3cde5d93843c", "fields": {"nom_de_la_commune": "HAMBYE", "libell_d_acheminement": "HAMBYE", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50228"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1868a34d94edb626e6c4eda4d5e05417760d58f", "fields": {"nom_de_la_commune": "HAUTEVILLE SUR MER", "libell_d_acheminement": "HAUTEVILLE SUR MER", "code_postal": "50590", "coordonnees_gps": [48.998351467, -1.53536168887], "code_commune_insee": "50231"}, "geometry": {"type": "Point", "coordinates": [-1.53536168887, 48.998351467]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1593c626d66cbeaa84852590626a20010c63446", "fields": {"nom_de_la_commune": "HAUTEVILLE LA GUICHARD", "libell_d_acheminement": "HAUTEVILLE LA GUICHARD", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50232"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7d5c88a40a75ea35cc7815482e413fed43c858", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "MOBECQ", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7a7c9a912a24c6a582e05f2e8008c2f5a8cdc6", "fields": {"nom_de_la_commune": "LA HAYE PESNEL", "libell_d_acheminement": "LA HAYE PESNEL", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50237"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd44bcd7086c23315b41aa2b568b9011f17b63d1", "fields": {"nom_de_la_commune": "HUDIMESNIL", "libell_d_acheminement": "HUDIMESNIL", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50252"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "073787581c49bb48f84f10abff86172f8d702a24", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "CHALANDREY", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f23b5e50f664caafa79a9daefb154be46075d3", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LES BIARDS", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17994b7de4b85c6da9ddd1d43f4d19077dd356c5", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "NAFTEL", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cc0373f23bc7d3012dd00cada8f22b872e5a4a", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "VEZINS", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20cfb5a556b66eedb05f1930e8f0bd6a76a3749d", "fields": {"nom_de_la_commune": "JUILLEY", "libell_d_acheminement": "JUILLEY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50259"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2216cd1a01dcf19cce1a011c4679da8a9997333f", "fields": {"nom_de_la_commune": "LAMBERVILLE", "libell_d_acheminement": "LAMBERVILLE", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50261"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f5c6b206973a8cfbb469636ee694d36b3829bf7", "fields": {"nom_de_la_commune": "LAPENTY", "libell_d_acheminement": "LAPENTY", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50263"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a984c34fa3fb370fa3cc9166f317c95e58ab4fd8", "fields": {"nom_de_la_commune": "LINGEARD", "libell_d_acheminement": "LINGEARD", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50271"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac3fb2bf92f762ab6da03b1322c23874c9d32e33", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "PRETOT STE SUZANNE", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f6edcb6ba361847bacb22e7841b1c437a5d3f2", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "ST JORES", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6db87f1d215fb72e1e031b904b710c664142b58", "fields": {"nom_de_la_commune": "LA LUZERNE", "libell_d_acheminement": "LA LUZERNE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50283"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d0f2d57535b66801b631d3644ce393cbabfe533", "fields": {"nom_de_la_commune": "MAGNEVILLE", "libell_d_acheminement": "MAGNEVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50285"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cfa0b111468e580ec45c9e3cebcbfa8aefb16e3", "fields": {"nom_de_la_commune": "MARCEY LES GREVES", "libell_d_acheminement": "MARCEY LES GREVES", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50288"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da475cd313e913104163b4b4494a396ed6cf523", "fields": {"nom_de_la_commune": "MARIGNY LE LOZON", "libell_d_acheminement": "MARIGNY LE LOZON", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50292"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570bcc90ed06dda0ec2f0ece72e88f59dd5b1ac2", "fields": {"nom_de_la_commune": "LE MESNIL", "libell_d_acheminement": "LE MESNIL", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50299"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737f034923d88c5a32837d28e805517690157303", "fields": {"nom_de_la_commune": "LE MESNIL AUBERT", "libell_d_acheminement": "LE MESNIL AUBERT", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50304"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55fb855015247aacbae630044a882ebdf7a9bd29", "fields": {"nom_de_la_commune": "LE MESNILBUS", "libell_d_acheminement": "LE MESNILBUS", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50308"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef37c1335090056fc9e529fae5d69bb6ee82a21e", "fields": {"nom_de_la_commune": "LE MESNIL GARNIER", "libell_d_acheminement": "LE MESNIL GARNIER", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50311"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df046f9e1017a74b581275b002a85369a3a6caf", "fields": {"nom_de_la_commune": "LE MESNIL HERMAN", "libell_d_acheminement": "LE MESNIL HERMAN", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50313"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cf8057b717d6217c4f4336a695bf4032352f9b", "fields": {"nom_de_la_commune": "MONTBRAY", "libell_d_acheminement": "MONTBRAY", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50338"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c7966d5435f8802a86941df378ca34a4a63f889", "fields": {"nom_de_la_commune": "MONTJOIE ST MARTIN", "libell_d_acheminement": "MONTJOIE ST MARTIN", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50347"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2803c7bbf5775700afa3ab98fddbe74673af617", "fields": {"nom_de_la_commune": "MONTPINCHON", "libell_d_acheminement": "MONTPINCHON", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50350"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d385e23600ee02e370f2b2f1a8ea326a762639", "fields": {"nom_de_la_commune": "MONTSURVENT", "libell_d_acheminement": "MONTSURVENT", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50354"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8463b2aa2ff013dd13ed1f299453227cad327dfc", "fields": {"nom_de_la_commune": "MORSALINES", "libell_d_acheminement": "MORSALINES", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50358"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99f2b1113e3d2c587b48969027488cafee7a47c", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "BION", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487ae6f58e4cd0582dc45433c8b40a67dd8f3a89", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "NOTRE DAME DU TOUCHET", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1a342de606eb483f5146e39b5710102c26671a", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "ST JEAN DU CORAIL", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b019ede89aa6c6af955689b8f6e00a669210b127", "fields": {"nom_de_la_commune": "MORVILLE", "libell_d_acheminement": "MORVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50360"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d50dbeafdf04d92a50f29e274694fb37060f2d9", "fields": {"nom_de_la_commune": "MUNEVILLE LE BINGARD", "libell_d_acheminement": "MUNEVILLE LE BINGARD", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50364"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7555ac669013e84e8ea8b011dc66368d9597f454", "fields": {"nom_de_la_commune": "NEGREVILLE", "libell_d_acheminement": "NEGREVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50369"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128998e293f927e86853b1aa39cfb80fccc929a3", "fields": {"nom_de_la_commune": "NEUFMESNIL", "libell_d_acheminement": "NEUFMESNIL", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50372"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33555fec67bcfaf4ba42472731a84b27ea554947", "fields": {"nom_de_la_commune": "NEUVILLE AU PLAIN", "libell_d_acheminement": "NEUVILLE AU PLAIN", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50373"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8887b24fe3c2e0360f62f5aec5aabc0280289ce5", "fields": {"nom_de_la_commune": "NEUVILLE EN BEAUMONT", "libell_d_acheminement": "NEUVILLE EN BEAUMONT", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50374"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57e6421fc2cf27f8b1288c1342254e4ac176ede", "fields": {"nom_de_la_commune": "NOTRE DAME DE CENILLY", "libell_d_acheminement": "NOTRE DAME DE CENILLY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50378"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c68b3d12432a4f53618ea179daca1adde67595", "fields": {"nom_de_la_commune": "NOUAINVILLE", "libell_d_acheminement": "NOUAINVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50382"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d83d7e119101091735a7389681ee3251f3e06bf", "fields": {"nom_de_la_commune": "OCTEVILLE L AVENEL", "libell_d_acheminement": "OCTEVILLE L AVENEL", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50384"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1110511ea21e5da1a29e75027f538e00ecf1833", "fields": {"nom_de_la_commune": "PERCY EN NORMANDIE", "libell_d_acheminement": "PERCY EN NORMANDIE", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50393"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f14fd1888d58572ed4c1fcb4b42c576451fb09", "fields": {"nom_de_la_commune": "LA PERNELLE", "libell_d_acheminement": "LA PERNELLE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50395"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d5ff12fed9a79e52c721878f8aadf02723d0dc", "fields": {"nom_de_la_commune": "POILLEY", "libell_d_acheminement": "POILLEY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50407"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7d1d2f4d9ba407634b4d928f859f65287c4cf4", "fields": {"nom_de_la_commune": "PONTORSON", "libell_d_acheminement": "PONTORSON", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50410"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e924bc125d798aa1d16d487810f7be4600e126", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "CORMERAY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586de51c40ca130ea0a8750870a0a771cfce4edf", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "CUREY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a430e8fab0e6553aa4e240d65125ffc6d69a025", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "LES PAS", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39601d079137b25b2f95e1b2f427db81cff333c", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "VESSEY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7797b021115064cd9b88620e0baa99aae5d2db", "fields": {"nom_de_la_commune": "PRECEY", "libell_d_acheminement": "PRECEY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50413"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15603dfa39cc4d9a3e272989b67f8122a31be5eb", "fields": {"code_postal": "50660", "code_commune_insee": "50419", "libell_d_acheminement": "QUETTREVILLE SUR SIENNE", "ligne_5": "HYENVILLE", "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", "coordonnees_gps": [48.9716894019, -1.47095914438]}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f08049fb03cf04ae0c7d9da4bb1ff3f7c530e82", "fields": {"nom_de_la_commune": "RAUVILLE LA PLACE", "libell_d_acheminement": "RAUVILLE LA PLACE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50426"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c18e4dfc252d35ba87a4aa904aa64820d724e1", "fields": {"nom_de_la_commune": "RAVENOVILLE", "libell_d_acheminement": "RAVENOVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50427"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe0ae829eed892a807f0709735324237e688b36", "fields": {"nom_de_la_commune": "ST AUBIN DE TERREGATTE", "libell_d_acheminement": "ST AUBIN DE TERREGATTE", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50448"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1f4eca241bf47da841551e8ca2dff17d935a21", "fields": {"nom_de_la_commune": "ST AUBIN DU PERRON", "libell_d_acheminement": "ST AUBIN DU PERRON", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50449"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264bffdb7d1f59464981903350d58cc5104d9f5b", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50451"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c392bedb8ad833b7a3760075c22dc538ee24e2f8", "fields": {"nom_de_la_commune": "ST CLAIR SUR L ELLE", "libell_d_acheminement": "ST CLAIR SUR L ELLE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50455"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf5ad81806f3d7fea99b99fe7ddaf79d85becb8", "fields": {"nom_de_la_commune": "ST CLEMENT RANCOUDRAY", "libell_d_acheminement": "ST CLEMENT RANCOUDRAY", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50456"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6fae8bd2b0574aa95195f5ecb5dfdfb056c4711", "fields": {"nom_de_la_commune": "ST FLOXEL", "libell_d_acheminement": "ST FLOXEL", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50467"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0445a3b9d44f12f3cd7b940e1ad93ed981af3d68", "fields": {"nom_de_la_commune": "ST FROMOND", "libell_d_acheminement": "ST FROMOND", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50468"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e8b1a623ba384bbabfe3129ce36ad0ef6170af", "fields": {"nom_de_la_commune": "ST GERMAIN D ELLE", "libell_d_acheminement": "ST GERMAIN D ELLE", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50476"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2427da548626b819caa1a053c63f560e5bfb1f6b", "fields": {"code_postal": "50730", "code_commune_insee": "50484", "libell_d_acheminement": "ST HILAIRE DU HARCOUET", "ligne_5": "ST MARTIN DE LANDELLES", "nom_de_la_commune": "ST HILAIRE DU HARCOUET", "coordonnees_gps": [48.5520322078, -1.12375344809]}, "geometry": {"type": "Point", "coordinates": [-1.12375344809, 48.5520322078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23bab85f1fda4795815a7230d4eae899a40db674", "fields": {"nom_de_la_commune": "ST JEAN DE DAYE", "libell_d_acheminement": "ST JEAN DE DAYE", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50488"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f10bb8826787e6821397548f70c0d26b06a08464", "fields": {"nom_de_la_commune": "ST JEAN D ELLE", "libell_d_acheminement": "ST JEAN D ELLE", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50492"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207117449abf504b7313cdd1afe57553bb92be93", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "ROUXEVILLE", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98df43139a26dca2d8249b277a444c368d9b4d9c", "fields": {"code_postal": "50320", "code_commune_insee": "50493", "libell_d_acheminement": "ST JEAN DES CHAMPS", "ligne_5": "ST LEGER", "nom_de_la_commune": "ST JEAN DES CHAMPS", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042c3e26567685b257be6cb068e666ae7e585fa8", "fields": {"code_postal": "50320", "code_commune_insee": "50493", "libell_d_acheminement": "ST JEAN DES CHAMPS", "ligne_5": "ST URSIN", "nom_de_la_commune": "ST JEAN DES CHAMPS", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43cabe6e1052e491803ea3f3eb585e51f025fda", "fields": {"nom_de_la_commune": "ST LO D OURVILLE", "libell_d_acheminement": "ST LO D OURVILLE", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50503"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfa21efa49780ef9c780c719c15e6832019720e", "fields": {"nom_de_la_commune": "STE MARIE DU MONT", "libell_d_acheminement": "STE MARIE DU MONT", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50509"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b73d2ff39c2eeebb53954d3cb1ab15a90e8668df", "fields": {"nom_de_la_commune": "ST MARTIN D AUDOUVILLE", "libell_d_acheminement": "ST MARTIN D AUDOUVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50511"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68daefd6b0d23e804fc8183397093a52afe5fd0", "fields": {"code_postal": "50150", "code_commune_insee": "50514", "libell_d_acheminement": "CHAULIEU", "ligne_5": "ST SAUVEUR DE CHAULIEU", "nom_de_la_commune": "CHAULIEU", "coordonnees_gps": [48.7316763227, -0.921013476497]}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b937c4b1101f4957a0819ab455e9fa0bbbad3fb", "fields": {"nom_de_la_commune": "ST MICHEL DE LA PIERRE", "libell_d_acheminement": "ST MICHEL DE LA PIERRE", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50524"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3ff13504d0b95a1fd41ac4b0f6f87a81fe34d5", "fields": {"nom_de_la_commune": "ST NICOLAS DES BOIS", "libell_d_acheminement": "ST NICOLAS DES BOIS", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50529"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8910c5ba91c94d5a649e28d9426416c01d8f75e", "fields": {"nom_de_la_commune": "ST PIERRE LANGERS", "libell_d_acheminement": "ST PIERRE LANGERS", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50540"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf247364c2cfae349234bfd594417d6d99f31413", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "ST SAMSON DE BONFOSSE", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740183100126e9089484705e5cd81b3509c079ed", "fields": {"nom_de_la_commune": "ST SAUVEUR LENDELIN", "libell_d_acheminement": "ST SAUVEUR LENDELIN", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50550"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a54f6565fd846f874bbe019b04b2813baf3789", "fields": {"nom_de_la_commune": "ST SEBASTIEN DE RAIDS", "libell_d_acheminement": "ST SEBASTIEN DE RAIDS", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50552"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f433a11acc9956ed07122641fde1597e8c4c06", "fields": {"nom_de_la_commune": "ST SENIER DE BEUVRON", "libell_d_acheminement": "ST SENIER DE BEUVRON", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50553"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd24cb79ce07f847aae21dc5f447f338e4b4b64", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "ANGEY", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff1321639d7be4921ebcc58315ece07b2473e7c", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "LA ROCHELLE NORMANDE", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d618c4530d614608464ac77077597f00427fde0", "fields": {"nom_de_la_commune": "SIOUVILLE HAGUE", "libell_d_acheminement": "SIOUVILLE HAGUE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50576"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f9c6db62930ef816d9a0f642417742d05458510", "fields": {"nom_de_la_commune": "SOTTEVILLE", "libell_d_acheminement": "SOTTEVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50580"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a4ead1f41c21c682bdf0034bb9ad835509de4b", "fields": {"nom_de_la_commune": "SUBLIGNY", "libell_d_acheminement": "SUBLIGNY", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50584"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2838478cbdcb388bfdbf9e55d8c14b704b550d83", "fields": {"nom_de_la_commune": "LE TEILLEUL", "libell_d_acheminement": "LE TEILLEUL", "code_postal": "50640", "coordonnees_gps": [48.5293564364, -0.941843015494], "code_commune_insee": "50591"}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b474287ae53853c9e9f072f24bc01d17cf1cb940", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "HUSSON", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ea12c63dae05e2b2b88780357871ce28e968e4", "fields": {"nom_de_la_commune": "TESSY BOCAGE", "libell_d_acheminement": "TESSY BOCAGE", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50592"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065ea16b4d0e27d5f25124d617227d9e50d6f20f", "fields": {"nom_de_la_commune": "TOCQUEVILLE", "libell_d_acheminement": "TOCQUEVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50598"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12b86c53c0a7391a978bf2f028fb70e984879f6", "fields": {"nom_de_la_commune": "TONNEVILLE", "libell_d_acheminement": "TONNEVILLE", "code_postal": "50460", "coordonnees_gps": [49.6466043222, -1.6849502548], "code_commune_insee": "50600"}, "geometry": {"type": "Point", "coordinates": [-1.6849502548, 49.6466043222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a530fc72015b7379824e31d7727054f4b79a86", "fields": {"code_postal": "50160", "code_commune_insee": "50601", "libell_d_acheminement": "TORIGNY LES VILLES", "ligne_5": "GIEVILLE", "nom_de_la_commune": "TORIGNY LES VILLES", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898d634502c49fbc1eaf009800513cc5e933206b", "fields": {"code_postal": "50160", "code_commune_insee": "50601", "libell_d_acheminement": "TORIGNY LES VILLES", "ligne_5": "GUILBERVILLE", "nom_de_la_commune": "TORIGNY LES VILLES", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a796b70ee9a6b610debf12e97233bac7bfa6d41", "fields": {"nom_de_la_commune": "TRELLY", "libell_d_acheminement": "TRELLY", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50605"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54828bb670e0d198c4429eff4543f2792893144", "fields": {"nom_de_la_commune": "TROISGOTS", "libell_d_acheminement": "TROISGOTS", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50608"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3130fb877d34902b89b6b510d1009b41a11f22e9", "fields": {"nom_de_la_commune": "VALCANVILLE", "libell_d_acheminement": "VALCANVILLE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50613"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3ba19f66fceb13253c1ede3641a6f7bd24010a", "fields": {"nom_de_la_commune": "VAUDREVILLE", "libell_d_acheminement": "VAUDREVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50621"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6693282db44c3244db2beebecda247307a0d00b6", "fields": {"nom_de_la_commune": "VERNIX", "libell_d_acheminement": "VERNIX", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50628"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd3434bce915b27d80a3fbd57c3de3e62dc6b0e", "fields": {"code_postal": "50430", "code_commune_insee": "50629", "libell_d_acheminement": "VESLY", "ligne_5": "GERVILLE LA FORET", "nom_de_la_commune": "VESLY", "coordonnees_gps": [49.238207059, -1.53592999138]}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed6a5c61d21d67248cb5a45670c06b868d3d863", "fields": {"nom_de_la_commune": "VIERVILLE", "libell_d_acheminement": "VIERVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50636"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cfced65d5a0e38470a2387e4807ab06ea846d8", "fields": {"nom_de_la_commune": "LAREE", "libell_d_acheminement": "LAREE", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32193"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29a94795fd373f234c34b48afcf88d23ab97bfe", "fields": {"nom_de_la_commune": "CHATEAU VERDUN", "libell_d_acheminement": "CHATEAU VERDUN", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09096"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1745cd3b33f673cb16850d1b171a3990aaae8745", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09086"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62bc72f5f38674d2dab69619f58b4cacedd67561", "fields": {"nom_de_la_commune": "DURFORT", "libell_d_acheminement": "DURFORT", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09109"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc8c2750ec252ac47822f6f842c3aef569ed7ef", "fields": {"nom_de_la_commune": "LE BOSC", "libell_d_acheminement": "LE BOSC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09063"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbccdf6445ba930400f0e1a3f5bbcbddbcc1a52", "fields": {"nom_de_la_commune": "CESCAU", "libell_d_acheminement": "CESCAU", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09095"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345e316824149137ae4067e851de7396b6458074", "fields": {"nom_de_la_commune": "CAZAUX", "libell_d_acheminement": "CAZAUX", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09090"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac454059f39cc9919eb6e6f148409e38c500d011", "fields": {"nom_de_la_commune": "BUZAN", "libell_d_acheminement": "BUZAN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09069"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c382909d949b13c8cdb4a85a8b97fa1a55978254", "fields": {"nom_de_la_commune": "BEZAC", "libell_d_acheminement": "BEZAC", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09056"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033073edd62bbc0a27f72a5eeda6fd61cfcf194a", "fields": {"nom_de_la_commune": "COS", "libell_d_acheminement": "COS", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09099"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1ad289acd425de42988fbc715f584d1c375f898", "fields": {"nom_de_la_commune": "FOUGAX ET BARRINEUF", "libell_d_acheminement": "FOUGAX ET BARRINEUF", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09125"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b6fe53a959503c191eb774805dcccc07267d5a", "fields": {"nom_de_la_commune": "GOULIER", "libell_d_acheminement": "GOULIER", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09135"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb732be5260cd3ee1bbf03819ed79d26b92b7ee8", "fields": {"nom_de_la_commune": "GENAT", "libell_d_acheminement": "GENAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09133"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c277ad213efe75629463f08b5d45b1348179a5fa", "fields": {"nom_de_la_commune": "GABRE", "libell_d_acheminement": "GABRE", "code_postal": "09290", "coordonnees_gps": [43.0688947964, 1.3366340035], "code_commune_insee": "09127"}, "geometry": {"type": "Point", "coordinates": [1.3366340035, 43.0688947964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1fe25ba777ded8f604476c291d723d124c3bd7", "fields": {"nom_de_la_commune": "COURTRIZY ET FUSSIGNY", "libell_d_acheminement": "COURTRIZY ET FUSSIGNY", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02229"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ea09d81333226b405fa89a4d1047112d4a5bf9", "fields": {"nom_de_la_commune": "CLERMONT LES FERMES", "libell_d_acheminement": "CLERMONT LES FERMES", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02200"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9426813e5c886c2a5aa902983efb8b941cbc2157", "fields": {"nom_de_la_commune": "LA CROIX SUR OURCQ", "libell_d_acheminement": "LA CROIX SUR OURCQ", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02241"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb354ed0b7784bc0702156f7c129b1656f22087", "fields": {"nom_de_la_commune": "CONDE SUR SUIPPE", "libell_d_acheminement": "CONDE SUR SUIPPE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02211"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63cc1bcfa46412911ef8576eaad592dee10e4bd7", "fields": {"nom_de_la_commune": "CONDE EN BRIE", "libell_d_acheminement": "CONDE EN BRIE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02209"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a83443726ea303481f40a68cf3b3ad7187f8422", "fields": {"nom_de_la_commune": "CHEVREGNY", "libell_d_acheminement": "CHEVREGNY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02183"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20aea32f1ef7e9cd5499b9b404a56fda967c1833", "fields": {"nom_de_la_commune": "CONNIGIS", "libell_d_acheminement": "CONNIGIS", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02213"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb9cc3aa621df44d32a8681b600164f3fce4316", "fields": {"nom_de_la_commune": "CONDREN", "libell_d_acheminement": "CONDREN", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02212"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ddb7e8819d438cac62e6ab3d9010ecfcaf37b2", "fields": {"nom_de_la_commune": "COINGT", "libell_d_acheminement": "COINGT", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02204"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61b7f58724d3fb77d53ca773f88bb776e81b633", "fields": {"nom_de_la_commune": "CHIGNY", "libell_d_acheminement": "CHIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02188"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c805db9a854d75c1dc6a01a09983c7b3178c05", "fields": {"nom_de_la_commune": "CAILLOUEL CREPIGNY", "libell_d_acheminement": "CAILLOUEL CREPIGNY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02139"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d307fe818f0d8e4af511907582094a67b9f040", "fields": {"nom_de_la_commune": "BILLY SUR OURCQ", "libell_d_acheminement": "BILLY SUR OURCQ", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02090"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96918f4614e935709bb63985f7809cc5416dbb86", "fields": {"nom_de_la_commune": "BOIS LES PARGNY", "libell_d_acheminement": "BOIS LES PARGNY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02096"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9c08869aa14ff93e4f082e44b2df2d8a16eaf8", "fields": {"nom_de_la_commune": "BUCY LES CERNY", "libell_d_acheminement": "BUCY LES CERNY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02132"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca097eb1f2c5fedf46247bb7ba4dfa132d54ef49", "fields": {"nom_de_la_commune": "BOURG ET COMIN", "libell_d_acheminement": "BOURG ET COMIN", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02106"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5773e58d876b0c52a4d8e440e8bdf12f8f373a9", "fields": {"nom_de_la_commune": "BUCY LE LONG", "libell_d_acheminement": "BUCY LE LONG", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02131"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f9762199ff730d1249f630d398346fc76e42bf", "fields": {"nom_de_la_commune": "BONNESVALYN", "libell_d_acheminement": "BONNESVALYN", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02099"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7316ab55dc15ee5c7a645d77e953cdc33551ee0", "fields": {"nom_de_la_commune": "BURELLES", "libell_d_acheminement": "BURELLES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02136"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751cb638858606c1967cda1d723d00f08ec36afc", "fields": {"nom_de_la_commune": "BRENELLE", "libell_d_acheminement": "BRENELLE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02120"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6932b65045abd9d85f131b8478ba936cfbaac2", "fields": {"nom_de_la_commune": "BRAINE", "libell_d_acheminement": "BRAINE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02110"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7744f1b725c0e20020e554005c13339ecb8cdba", "fields": {"nom_de_la_commune": "BETHANCOURT EN VAUX", "libell_d_acheminement": "BETHANCOURT EN VAUX", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02081"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d7b5862925238c1eb6526d125b7f7e4720a1a9", "fields": {"nom_de_la_commune": "BILLY SUR AISNE", "libell_d_acheminement": "BILLY SUR AISNE", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02089"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83c5f440b604a953219752fb390ac82d8637141", "fields": {"nom_de_la_commune": "BERNY RIVIERE", "libell_d_acheminement": "BERNY RIVIERE", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02071"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954ab2735b1de2b0264b3b7811727bfa0031d250", "fields": {"nom_de_la_commune": "BELLENGLISE", "libell_d_acheminement": "BELLENGLISE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02063"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f5bce45cd4c8f43a7427d8ede227864a19a0c1", "fields": {"nom_de_la_commune": "BERTRICOURT", "libell_d_acheminement": "BERTRICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02076"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f93500238672410c90b3fa7dbcab56d66a3edfc", "fields": {"nom_de_la_commune": "BECQUIGNY", "libell_d_acheminement": "BECQUIGNY", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02061"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a975f903fe394204b71340a4c1a783eedba0d02", "fields": {"nom_de_la_commune": "BEUVARDES", "libell_d_acheminement": "BEUVARDES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02083"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12d9d10359440a9add4809db366f40397e878097", "fields": {"nom_de_la_commune": "BERRIEUX", "libell_d_acheminement": "BERRIEUX", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02072"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452b14acdd0f8160c52ed6b9341b9fd8606d9d1a", "fields": {"nom_de_la_commune": "BERLISE", "libell_d_acheminement": "BERLISE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02069"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd573d731489a2c94f270b488f5925165f6a3386", "fields": {"nom_de_la_commune": "BEAUME", "libell_d_acheminement": "BEAUME", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02055"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b26fc514f5fa32e26976ccb519315c6ced121983", "fields": {"code_postal": "02300", "code_commune_insee": "02140", "libell_d_acheminement": "CAMELIN", "ligne_5": "LOMBRAY", "nom_de_la_commune": "CAMELIN", "coordonnees_gps": [49.5817295222, 3.19169688143]}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c17c3e6fa50770af53c5b86df5869436042df", "fields": {"nom_de_la_commune": "CELLES LES CONDE", "libell_d_acheminement": "CELLES LES CONDE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02146"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b9164b36dccbb6d45378674f9724ff69cb3c34", "fields": {"nom_de_la_commune": "CERNY LES BUCY", "libell_d_acheminement": "CERNY LES BUCY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02151"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da06423384a4b6738fadb801127411e00e13963", "fields": {"nom_de_la_commune": "CAULAINCOURT", "libell_d_acheminement": "CAULAINCOURT", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02144"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e0edd59dbbadf852e01b6cfc9b31f5f7a27ec0", "fields": {"nom_de_la_commune": "CHAUDARDES", "libell_d_acheminement": "CHAUDARDES", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02171"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0094817d2643da0391a54aa4aae06d653c65b2", "fields": {"nom_de_la_commune": "CHAVIGNON", "libell_d_acheminement": "CHAVIGNON", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02174"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0115cfbabf3be7debfd1e59331b1f4293bb6483", "fields": {"nom_de_la_commune": "CHASSEMY", "libell_d_acheminement": "CHASSEMY", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02167"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d136752f3c75defe8977537abf3da60eee0da7ce", "fields": {"nom_de_la_commune": "CAMELIN", "libell_d_acheminement": "CAMELIN", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02140"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb26c52e1f175634fe1793030b67e48cdd1a828b", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02165"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2483cb51bdb192fea170ef54114e8b06ba65f88c", "fields": {"nom_de_la_commune": "CHAUNY", "libell_d_acheminement": "CHAUNY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02173"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847be3808f3627db41256150edaddf788ed6d6cc", "fields": {"nom_de_la_commune": "FONTAINE LES CLERCS", "libell_d_acheminement": "FONTAINE LES CLERCS", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02320"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953c50fa575602f6937a85402e0c8ad589f42ca6", "fields": {"nom_de_la_commune": "FRESSANCOURT", "libell_d_acheminement": "FRESSANCOURT", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02335"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05bfa30993a5642f80293b7ea8eaf118165403b6", "fields": {"nom_de_la_commune": "FONTENELLE", "libell_d_acheminement": "FONTENELLE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02324"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88c6c7e350b417c737488fd7ada5d9674095f464", "fields": {"nom_de_la_commune": "FIEULAINE", "libell_d_acheminement": "FIEULAINE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02310"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6023a8e2568614728eb66359ca871fc0a46a9e3c", "fields": {"nom_de_la_commune": "FONTENOY", "libell_d_acheminement": "FONTENOY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02326"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd5a0eb2f1e9be6b7d914f2a2ef5ba66a6705b4", "fields": {"code_postal": "01260", "code_commune_insee": "01036", "libell_d_acheminement": "BELMONT LUTHEZIEU", "ligne_5": "LUTHEZIEU", "nom_de_la_commune": "BELMONT LUTHEZIEU", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "678a4c56dbdc758e6cff15aba7f8ed2d237a479f", "fields": {"nom_de_la_commune": "CHATILLON SUR CHALARONNE", "libell_d_acheminement": "CHATILLON SUR CHALARONNE", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01093"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82caabbec92a835b3061a202f3b6fbacc0f52982", "fields": {"nom_de_la_commune": "CHAVANNES SUR SURAN", "libell_d_acheminement": "CHAVANNES SUR SURAN", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01095"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14aa445432b9d0e5da84f5f8c4127e087ec7bbe2", "fields": {"nom_de_la_commune": "CHEIGNIEU LA BALME", "libell_d_acheminement": "CHEIGNIEU LA BALME", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01100"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466c45cb9b88e70e26f39f986427563e89488827", "fields": {"nom_de_la_commune": "CHANOZ CHATENAY", "libell_d_acheminement": "CHANOZ CHATENAY", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01084"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85aefed46e6b43f8d56e852aa42827e76ee17d05", "fields": {"nom_de_la_commune": "BENONCES", "libell_d_acheminement": "BENONCES", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01037"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfeba3fdf043d214b3a111ace0d7b4c17202670b", "fields": {"nom_de_la_commune": "BOISSEY", "libell_d_acheminement": "BOISSEY", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01050"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c072088559b1060feb5d139f449edf99a86002c", "fields": {"nom_de_la_commune": "BELLEY", "libell_d_acheminement": "BELLEY", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01034"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26ab074cfafe26b902aa66486a6bb82a4b7cd22", "fields": {"nom_de_la_commune": "CHALEY", "libell_d_acheminement": "CHALEY", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01076"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb884f617236dfcb59c2349090edc3cf61b0457", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01063"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b313d74651141a17392fb47a1073566b67be44f", "fields": {"code_postal": "01250", "code_commune_insee": "01184", "libell_d_acheminement": "HAUTECOURT ROMANECHE", "ligne_5": "ROMANECHE", "nom_de_la_commune": "HAUTECOURT ROMANECHE", "coordonnees_gps": [46.2066710432, 5.38605889851]}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8750a11fada0967e50fd4a379abad6fbf40e3116", "fields": {"code_postal": "01200", "code_commune_insee": "01189", "libell_d_acheminement": "INJOUX GENISSIAT", "ligne_5": "CRAZ", "nom_de_la_commune": "INJOUX GENISSIAT", "coordonnees_gps": [46.1338706653, 5.81259483702]}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bdee0cae35b9b5768efc749e3ff5df7338f73af", "fields": {"nom_de_la_commune": "JASSANS RIOTTIER", "libell_d_acheminement": "JASSANS RIOTTIER", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01194"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496044ecc3704ad879702c02ba538345f97aaa34", "fields": {"nom_de_la_commune": "INNIMOND", "libell_d_acheminement": "INNIMOND", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01190"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51b7f409d857c804e711e8df8d40b6feead2a12", "fields": {"nom_de_la_commune": "LABALME", "libell_d_acheminement": "LABALME", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01200"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a70ea23ac78f659efcf31b4d48108d1e8eb5fa9", "fields": {"nom_de_la_commune": "IZENAVE", "libell_d_acheminement": "IZENAVE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01191"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a415baf0d61d36f520530cc1168b52eeff54076", "fields": {"nom_de_la_commune": "LAGNIEU", "libell_d_acheminement": "LAGNIEU", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01202"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3732a849eef11f8ffcdaf6d5add823e86f6f5dff", "fields": {"nom_de_la_commune": "JOYEUX", "libell_d_acheminement": "JOYEUX", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01198"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e7210d9dde6af85e7b8f3c6604d19af9614b046", "fields": {"nom_de_la_commune": "ILLIAT", "libell_d_acheminement": "ILLIAT", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01188"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0e667ae10715ee7b512b594dcb9616c4c4f76d5", "fields": {"nom_de_la_commune": "IZIEU", "libell_d_acheminement": "IZIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01193"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822a2a98d6a0b2de9a6e3a4f7c22a540009b34ab", "fields": {"code_postal": "01120", "code_commune_insee": "01262", "libell_d_acheminement": "MONTLUEL", "ligne_5": "CORDIEUX", "nom_de_la_commune": "MONTLUEL", "coordonnees_gps": [45.8725197955, 5.04054729356]}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecff53db02b6a3267f6bca1c0b3d69e926bfc2b3", "fields": {"code_postal": "01100", "code_commune_insee": "01283", "libell_d_acheminement": "OYONNAX", "ligne_5": "VEYZIAT", "nom_de_la_commune": "OYONNAX", "coordonnees_gps": [46.2468792013, 5.65226081977]}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c042f57a5f38f12f957606f19c73b15e630845", "fields": {"nom_de_la_commune": "NIVOLLET MONTGRIFFON", "libell_d_acheminement": "NIVOLLET MONTGRIFFON", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01277"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96d25a93ac4fe806832d067545a6083a45935d4", "fields": {"nom_de_la_commune": "MONTREAL LA CLUSE", "libell_d_acheminement": "MONTREAL LA CLUSE", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01265"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fe011d9e384b8f43cd58a5a5b1eddad7b4604c", "fields": {"nom_de_la_commune": "MISERIEUX", "libell_d_acheminement": "MISERIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01250"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173fe80747096a70b68c29640182669d2d34daee", "fields": {"nom_de_la_commune": "MONTCEAUX", "libell_d_acheminement": "MONTCEAUX", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01258"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2606321772797ed60305655e1d2284ae61f1ba0a", "fields": {"nom_de_la_commune": "NANTUA", "libell_d_acheminement": "NANTUA", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01269"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd62e9184cbdef8e4a7527b2b232dd785128d8e", "fields": {"nom_de_la_commune": "NEYRON", "libell_d_acheminement": "NEYRON", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01275"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c789a7672075a83360302fd85c83020b7b6090ad", "fields": {"nom_de_la_commune": "NANTUA", "libell_d_acheminement": "NANTUA", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01269"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162fa0777090536f6469e78681a4d786b1aa6033", "fields": {"nom_de_la_commune": "ORNEX", "libell_d_acheminement": "ORNEX", "code_postal": "01210", "coordonnees_gps": [46.2774426572, 6.10074151675], "code_commune_insee": "01281"}, "geometry": {"type": "Point", "coordinates": [6.10074151675, 46.2774426572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815f78a12a77c8a6a5f96bf9d8b07a85e3004335", "fields": {"nom_de_la_commune": "CURCIAT DONGALON", "libell_d_acheminement": "CURCIAT DONGALON", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01139"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d203af7bd3a42feaa30e661abe045ef82a76866", "fields": {"nom_de_la_commune": "CHEZERY FORENS", "libell_d_acheminement": "CHEZERY FORENS", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01104"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2496392e4d18cca25760fa242f4448cbe706c536", "fields": {"nom_de_la_commune": "CORVEISSIAT", "libell_d_acheminement": "CORVEISSIAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01125"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cd1ac408d2ad3081fb6c6c670881778ea41a8c", "fields": {"nom_de_la_commune": "CURTAFOND", "libell_d_acheminement": "CURTAFOND", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01140"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce71846d9de8d4a6e0e315f116227d0ed17c3e24", "fields": {"nom_de_la_commune": "GROISSIAT", "libell_d_acheminement": "GROISSIAT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01181"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56a22f24677f5d3ba9ec03cbc7b50a350c682ad9", "fields": {"nom_de_la_commune": "GUEREINS", "libell_d_acheminement": "GUEREINS", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01183"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5aad2d2d93f180ec101725378063fad11e5c0cc", "fields": {"nom_de_la_commune": "ECHALLON", "libell_d_acheminement": "ECHALLON", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01152"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "912fd66e322fe3f91289d816e7aa8a215cfdc457", "fields": {"nom_de_la_commune": "CLEYZIEU", "libell_d_acheminement": "CLEYZIEU", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01107"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5132a410843fcbb1858fd14220c60dd226f4eb4a", "fields": {"nom_de_la_commune": "EVOSGES", "libell_d_acheminement": "EVOSGES", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01155"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d3aa64a57cac5b55f103fbd2c4b6c57e8ede63", "fields": {"nom_de_la_commune": "CIZE", "libell_d_acheminement": "CIZE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01106"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce135331ea87bd839bef8d2cb14ecc73b93009ab", "fields": {"nom_de_la_commune": "ARMENTIERES SUR OURCQ", "libell_d_acheminement": "ARMENTIERES SUR OURCQ", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02023"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9e2879dc85f550ea467685ab00002339f68c5c", "fields": {"nom_de_la_commune": "ANGUILCOURT LE SART", "libell_d_acheminement": "ANGUILCOURT LE SART", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02017"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd314442e528b813dd1c49ae7f28a13066ec099d", "fields": {"nom_de_la_commune": "LE MESNIL AMAND", "libell_d_acheminement": "LE MESNIL AMAND", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50301"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe199bc67e2793740c8401c0f72ebea284c8d2d9", "fields": {"nom_de_la_commune": "LE MESNIL AMEY", "libell_d_acheminement": "LE MESNIL AMEY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50302"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad2e117c8406b42a6c0fd2972f45e519d7a647d", "fields": {"nom_de_la_commune": "LE MESNIL AU VAL", "libell_d_acheminement": "LE MESNIL AU VAL", "code_postal": "50110", "coordonnees_gps": [49.6236287204, -1.56289409844], "code_commune_insee": "50305"}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c9120443047ed6de097618c652d2e1b70be7f8", "fields": {"nom_de_la_commune": "LE MESNILLARD", "libell_d_acheminement": "LE MESNILLARD", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50315"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e9935838d6692733bba30ddb0808202a9356d2", "fields": {"nom_de_la_commune": "LE MESNIL RAINFRAY", "libell_d_acheminement": "LE MESNIL RAINFRAY", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50318"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b78053079cebe9ccfadaa2222fc04692bce179", "fields": {"nom_de_la_commune": "LE MESNIL ROGUES", "libell_d_acheminement": "LE MESNIL ROGUES", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50320"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360b6f7515ff903744fa2be113e21ebea27a25c7", "fields": {"nom_de_la_commune": "LES MOITIERS EN BAUPTOIS", "libell_d_acheminement": "LES MOITIERS EN BAUPTOIS", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50333"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e708e7109e7f3993045de5f26d544b288f4e0049", "fields": {"nom_de_la_commune": "MONTEBOURG", "libell_d_acheminement": "MONTEBOURG", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50341"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e6d8ffbc96206d13f9312b46272737fa8f803d8", "fields": {"nom_de_la_commune": "MONTMARTIN EN GRAIGNES", "libell_d_acheminement": "MONTMARTIN EN GRAIGNES", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50348"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfa3cceeaccba8df3e955a943a8bb9b8cce3190", "fields": {"nom_de_la_commune": "MONTMARTIN SUR MER", "libell_d_acheminement": "MONTMARTIN SUR MER", "code_postal": "50590", "coordonnees_gps": [48.998351467, -1.53536168887], "code_commune_insee": "50349"}, "geometry": {"type": "Point", "coordinates": [-1.53536168887, 48.998351467]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f31303f5c6e10749ff3665deecc33723289b2b", "fields": {"nom_de_la_commune": "MONTRABOT", "libell_d_acheminement": "MONTRABOT", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50351"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ff9814a6c1bdb73c8e9c4afa4917cf357c2505", "fields": {"nom_de_la_commune": "LE MONT ST MICHEL", "libell_d_acheminement": "LE MONT ST MICHEL", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50353"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adc0408089973738abf9d27e671ff1c86554174", "fields": {"nom_de_la_commune": "MORTAIN BOCAGE", "libell_d_acheminement": "MORTAIN BOCAGE", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50359"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804414b6a7bbdc4b766192b56c0da1a30f1f0f09", "fields": {"nom_de_la_commune": "NOTRE DAME DE LIVOYE", "libell_d_acheminement": "NOTRE DAME DE LIVOYE", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50379"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0b2b2e16f22535dc84738b7ed494d89fa8a486", "fields": {"nom_de_la_commune": "PERRIERS EN BEAUFICEL", "libell_d_acheminement": "PERRIERS EN BEAUFICEL", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50397"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3f6c063f3828d33c78d8e4fa9461e4dbeb6f7d", "fields": {"nom_de_la_commune": "LE PERRON", "libell_d_acheminement": "LE PERRON", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50398"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bd7ce796952efad03e8f8034a46c3075a22304", "fields": {"code_postal": "50480", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "AMFREVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc011eeac05f85d03c565a09abc831e2814d7fa", "fields": {"nom_de_la_commune": "PIROU", "libell_d_acheminement": "PIROU", "code_postal": "50770", "coordonnees_gps": [49.1645993546, -1.55877779757], "code_commune_insee": "50403"}, "geometry": {"type": "Point", "coordinates": [-1.55877779757, 49.1645993546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf5f62beb51fe2c9e03c1d2656af3d9b285d71f", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "BOUCEY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbfa2003bf87c9bfcfe197b9522358527faf95d", "fields": {"nom_de_la_commune": "QUINEVILLE", "libell_d_acheminement": "QUINEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50421"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3b9f5ce9c716e42946736ba37f2b612eecc705", "fields": {"nom_de_la_commune": "RAUVILLE LA BIGOT", "libell_d_acheminement": "RAUVILLE LA BIGOT", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50425"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1676f8b76e73c75a82c48729d2fcbe986fcb7c6c", "fields": {"nom_de_la_commune": "REGNEVILLE SUR MER", "libell_d_acheminement": "REGNEVILLE SUR MER", "code_postal": "50590", "coordonnees_gps": [48.998351467, -1.53536168887], "code_commune_insee": "50429"}, "geometry": {"type": "Point", "coordinates": [-1.53536168887, 48.998351467]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb84edd9b1465eba005724fc26c03731af9d1b35", "fields": {"nom_de_la_commune": "ROCHEVILLE", "libell_d_acheminement": "ROCHEVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50435"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66eff6590d167ab7b30eab4d2a0e6e898d3f62a", "fields": {"nom_de_la_commune": "ST AMAND", "libell_d_acheminement": "ST AMAND", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50444"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675ed4dacbbb4dab5daa9e06c61f3743d0c53c1b", "fields": {"nom_de_la_commune": "ST ANDRE DE BOHON", "libell_d_acheminement": "ST ANDRE DE BOHON", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50445"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f77b8df9181bcc34225c090fd6ea14e95a1c87b", "fields": {"nom_de_la_commune": "ST ANDRE DE L EPINE", "libell_d_acheminement": "ST ANDRE DE L EPINE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50446"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a71c966dbe97f0dea8c3f9bf49a6e5be5c2d561", "fields": {"code_postal": "50140", "code_commune_insee": "50456", "libell_d_acheminement": "ST CLEMENT RANCOUDRAY", "ligne_5": "RANCOUDRAY", "nom_de_la_commune": "ST CLEMENT RANCOUDRAY", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef6449ea7ebe421c0a49de717e6fad039d41a14", "fields": {"nom_de_la_commune": "STE CROIX HAGUE", "libell_d_acheminement": "STE CROIX HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50460"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01c815fb4bc6eee826fa9518c45010d1e2c412d", "fields": {"nom_de_la_commune": "ST GEORGES DE LA RIVIERE", "libell_d_acheminement": "ST GEORGES DE LA RIVIERE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50471"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03a69749c722470e978783ddbfd87c65b753db8b", "fields": {"nom_de_la_commune": "ST GEORGES DE LIVOYE", "libell_d_acheminement": "ST GEORGES DE LIVOYE", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50472"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4670056301132a47b177b53632682bb25bc23b2e", "fields": {"nom_de_la_commune": "ST GEORGES MONTCOCQ", "libell_d_acheminement": "ST GEORGES MONTCOCQ", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50475"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b347db1058a47010a005bd42ddd98e038d7fb724", "fields": {"nom_de_la_commune": "ST HILAIRE DU HARCOUET", "libell_d_acheminement": "ST HILAIRE DU HARCOUET", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50484"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3233c2a2a1df702304d0e0b1962a81e551e8a6f9", "fields": {"nom_de_la_commune": "ST HILAIRE PETITVILLE", "libell_d_acheminement": "ST HILAIRE PETITVILLE", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50485"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ba727246ecca36ece798311aad5eca7e1c77dc", "fields": {"nom_de_la_commune": "ST JACQUES DE NEHOU", "libell_d_acheminement": "ST JACQUES DE NEHOU", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50486"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe037334da91c7bccb6ce8aad6c3a4ce891d208d", "fields": {"nom_de_la_commune": "ST JEAN DE SAVIGNY", "libell_d_acheminement": "ST JEAN DE SAVIGNY", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50491"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a02864968f19cee5488e739f029482020dc779", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "PRECORBIN", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57531fba75993da69f215d90b4200bef726c1e58", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50498"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cf59854092ca131857d3d226324d5b21dd705b", "fields": {"nom_de_la_commune": "ST LO", "libell_d_acheminement": "ST LO", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50502"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71b2b2c2832ee76671ada0b8ad47477c07366aa", "fields": {"nom_de_la_commune": "ST LOUET SUR VIRE", "libell_d_acheminement": "ST LOUET SUR VIRE", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50504"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469f13399f8fc3ba32fc8881e5dfdae482ee20d0", "fields": {"nom_de_la_commune": "ST MARTIN D AUBIGNY", "libell_d_acheminement": "ST MARTIN D AUBIGNY", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50510"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a2d6068acb671d45abcde2a8da52de6917ce0d", "fields": {"nom_de_la_commune": "ST MARTIN DE CENILLY", "libell_d_acheminement": "ST MARTIN DE CENILLY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50513"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d484ff1305000aab3280d215acaaa2f46780338", "fields": {"nom_de_la_commune": "ST MARTIN DE VARREVILLE", "libell_d_acheminement": "ST MARTIN DE VARREVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50517"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4a27100faa5677f0178a91d7b1b00112306225", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "ECOQUENEAUVILLE", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c09e402014c05a2960e983d8e5b663a5f89334e", "fields": {"code_postal": "50220", "code_commune_insee": "50531", "libell_d_acheminement": "ST OVIN", "ligne_5": "LA BOULOUZE", "nom_de_la_commune": "ST OVIN", "coordonnees_gps": [48.63048639, -1.31317304025]}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d32ca644bdf6a6c879bac1e4f9e83b600631254", "fields": {"nom_de_la_commune": "ST OVIN", "libell_d_acheminement": "ST OVIN", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50531"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5547df996ec874b3c1de74718c2d7faa6c41c21f", "fields": {"nom_de_la_commune": "ST PATRICE DE CLAIDS", "libell_d_acheminement": "ST PATRICE DE CLAIDS", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50533"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0b428a35ac38dec76554d32793fc79803f7978", "fields": {"code_postal": "50870", "code_commune_insee": "50535", "libell_d_acheminement": "LE PARC", "ligne_5": "BRAFFAIS", "nom_de_la_commune": "LE PARC", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1b035258f0ffb800dc4363a9773442d51d58e5", "fields": {"code_postal": "50870", "code_commune_insee": "50535", "libell_d_acheminement": "LE PARC", "ligne_5": "PLOMB", "nom_de_la_commune": "LE PARC", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765dd7ad4d89f0c7910b6c937a415d0719147c79", "fields": {"nom_de_la_commune": "ST POIS", "libell_d_acheminement": "ST POIS", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50542"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64507607bfd45dfe89f15d07761727ddecec9fa1", "fields": {"nom_de_la_commune": "ST SAUVEUR LE VICOMTE", "libell_d_acheminement": "ST SAUVEUR LE VICOMTE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50551"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cffc04a6b97b74d8beea8fa518abaaab0f4eeb", "fields": {"nom_de_la_commune": "ST VIGOR DES MONTS", "libell_d_acheminement": "ST VIGOR DES MONTS", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50563"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc649c4085023a2c924771eaff1b5e3c338deddc", "fields": {"nom_de_la_commune": "SARTILLY BAIE BOCAGE", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50565"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4257a22177e555d5bb23064e7a2fe93a2cacd6a", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "CHAMPCEY", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebdbcc20f2f363c5231e4a1e88c81fa1bc5836f", "fields": {"nom_de_la_commune": "SAUSSEMESNIL", "libell_d_acheminement": "SAUSSEMESNIL", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50567"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aaceb92fa62ebe413d67164c9462c6e1b7285d1", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50569"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41880c17e59aceb6e570b08c8826c01660bbc3e8", "fields": {"nom_de_la_commune": "SAVIGNY LE VIEUX", "libell_d_acheminement": "SAVIGNY LE VIEUX", "code_postal": "50640", "coordonnees_gps": [48.5293564364, -0.941843015494], "code_commune_insee": "50570"}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319a41b2ef30daedec738715ee57b125b52c26bc", "fields": {"nom_de_la_commune": "SERVIGNY", "libell_d_acheminement": "SERVIGNY", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50573"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4496dea0e149c402a85a708fe14a5ff932cde51", "fields": {"nom_de_la_commune": "SORTOSVILLE EN BEAUMONT", "libell_d_acheminement": "SORTOSVILLE EN BEAUMONT", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50577"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e178190e739c19e80da7459c921521dc4c2e9a", "fields": {"nom_de_la_commune": "SOTTEVAST", "libell_d_acheminement": "SOTTEVAST", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50579"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9218cdbda1be71479570e673d9487a59f8655bd8", "fields": {"nom_de_la_commune": "SOURDEVAL", "libell_d_acheminement": "SOURDEVAL", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50582"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0ee4a8bb7aafd8416d6462df33de9e40dc6c55c", "fields": {"nom_de_la_commune": "TAILLEPIED", "libell_d_acheminement": "TAILLEPIED", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50587"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479a4fe688d2257ffee0b521a8de3edd3cfe3749", "fields": {"nom_de_la_commune": "TAMERVILLE", "libell_d_acheminement": "TAMERVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50588"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e14db58779d7fe2365fda305c836bfda933bba0", "fields": {"code_postal": "50320", "code_commune_insee": "50590", "libell_d_acheminement": "LE TANU", "ligne_5": "NOIRPALU", "nom_de_la_commune": "LE TANU", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3ae190ae68797abcfd9c5525715b8e2b873907", "fields": {"nom_de_la_commune": "TEURTHEVILLE BOCAGE", "libell_d_acheminement": "TEURTHEVILLE BOCAGE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50593"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7808fc4051f74c36b26d7fecb23611ae9361fc", "fields": {"nom_de_la_commune": "THEVILLE", "libell_d_acheminement": "THEVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50596"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f772db143aedd6e687805a9caf4917742302087", "fields": {"nom_de_la_commune": "TOURVILLE SUR SIENNE", "libell_d_acheminement": "TOURVILLE SUR SIENNE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50603"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c56956b886efbda85088f408c5c4fdbffa3b6f", "fields": {"nom_de_la_commune": "LE VAL ST PERE", "libell_d_acheminement": "LE VAL ST PERE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50616"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c62dbda2aaaf10c24b6542309cca31f61f881eb", "fields": {"nom_de_la_commune": "VASTEVILLE", "libell_d_acheminement": "VASTEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50620"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7a317f56214692f0d8c5e608082302d5b31024", "fields": {"nom_de_la_commune": "LE VICEL", "libell_d_acheminement": "LE VICEL", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50633"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b742254b89ddad1fb283bbb061e2c0c70d7175f", "fields": {"nom_de_la_commune": "VIDECOSVILLE", "libell_d_acheminement": "VIDECOSVILLE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50634"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c43e581e181a80c9d0e9a0e527411cd1351100", "fields": {"nom_de_la_commune": "VILLEBAUDON", "libell_d_acheminement": "VILLEBAUDON", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50637"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e375b443b8d1337c455c52db2e74955e5068d17", "fields": {"nom_de_la_commune": "LES CHAMPEAUX", "libell_d_acheminement": "LES CHAMPEAUX", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61086"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af890c5a6c2e0a0d1734fc0c41a94289578afb0d", "fields": {"nom_de_la_commune": "CHAMPSECRET", "libell_d_acheminement": "CHAMPSECRET", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61091"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6394b248fe12767261725aad21abfc07870708", "fields": {"nom_de_la_commune": "CHANU", "libell_d_acheminement": "CHANU", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61093"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec10fe8e8b413783d346b87f3a90cfc54e44fac", "fields": {"nom_de_la_commune": "LA CHAPELLE AU MOINE", "libell_d_acheminement": "LA CHAPELLE AU MOINE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61094"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede77cb2d70806887aeb45b4d471d554f545390b", "fields": {"code_postal": "61140", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "GENESLAY", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5525924741, -0.471509032545]}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f72fef00ba567b2f667df20b9487a0cad45baaa", "fields": {"nom_de_la_commune": "CHEMILLI", "libell_d_acheminement": "CHEMILLI", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61105"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c25bdd114e823178727d0a865fb30c88fbd89b7", "fields": {"nom_de_la_commune": "LA COCHERE", "libell_d_acheminement": "LA COCHERE", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61110"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775d0db790d2e3fa94f19b1fb913f731315aa183", "fields": {"code_postal": "61110", "code_commune_insee": "61116", "libell_d_acheminement": "SABLONS SUR HUISNE", "ligne_5": "COULONGES LES SABLONS", "nom_de_la_commune": "SABLONS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90aeab02662bdd5202b068ec8fc001156c89637f", "fields": {"nom_de_la_commune": "COULONGES SUR SARTHE", "libell_d_acheminement": "COULONGES SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61126"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ea2310a8df7052f8e41575d6717d31c8a5eec8", "fields": {"nom_de_la_commune": "COURTOMER", "libell_d_acheminement": "COURTOMER", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61133"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db07bde2ff5796b687daecf4605fa17cfd8189c", "fields": {"nom_de_la_commune": "CROUTTES", "libell_d_acheminement": "CROUTTES", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61139"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2623fbe088f32331f54720d7019586acae10d917", "fields": {"nom_de_la_commune": "DAME MARIE", "libell_d_acheminement": "DAME MARIE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61142"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c6969502fa75095ce4a75453be159dd9190fad", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "BATILLY", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6038f21120159f3a4f138a80478dd9657aa6d907", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "ST OUEN SUR MAIRE", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec561053e461293eeee948980091a2498ea268b", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61158"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe99269b33ad997b21b3edb71a985307125474e", "fields": {"nom_de_la_commune": "FEL", "libell_d_acheminement": "FEL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61161"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f3c747d03ab853449b4db6431e1acdd258e22a", "fields": {"nom_de_la_commune": "LA FERRIERE BECHET", "libell_d_acheminement": "LA FERRIERE BECHET", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61164"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256344750cf284fcb794e6b83321661f581a4b93", "fields": {"nom_de_la_commune": "LA FERRIERE BOCHARD", "libell_d_acheminement": "LA FERRIERE BOCHARD", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61165"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6496fb11390e42ff83e29d5a951ef67de8642b07", "fields": {"nom_de_la_commune": "FERRIERES LA VERRERIE", "libell_d_acheminement": "FERRIERES LA VERRERIE", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61166"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fbe23cb585ef65b7594320ae1bfc39c279c7e0", "fields": {"code_postal": "61470", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "HEUGON", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.9094876471, 0.356722862934]}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da025d45e6c63575f7e63bbbace9d9575cfecc16", "fields": {"code_postal": "61470", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "MONNAI", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.9094876471, 0.356722862934]}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d0c8edf97c43c2f8d18d3fb561dc47d289a1aa6", "fields": {"nom_de_la_commune": "LA FERTE EN OUCHE", "libell_d_acheminement": "LA FERTE EN OUCHE", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61167"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f843e4b9bdbe2af690e9f3fda03f22dd48552abc", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "ANCEINS", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523def01d46718bc9a823efb8e9fae56bd5b6444", "fields": {"nom_de_la_commune": "FLERS", "libell_d_acheminement": "FLERS", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61169"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d20409a4308257baca7050231f16b76fdca7662", "fields": {"nom_de_la_commune": "FONTENAI SUR ORNE", "libell_d_acheminement": "FONTENAI SUR ORNE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61173"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18797b3c07f466758c0f6f2813ed3b8d362449e2", "fields": {"nom_de_la_commune": "FRESNAY LE SAMSON", "libell_d_acheminement": "FRESNAY LE SAMSON", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61180"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8005281b760643bc66fcd62d44f8d0c55b29fe51", "fields": {"nom_de_la_commune": "GANDELAIN", "libell_d_acheminement": "GANDELAIN", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61182"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe637296d485d4d8bab21bb4d0c7b97c79306cb2", "fields": {"nom_de_la_commune": "LES GENETTES", "libell_d_acheminement": "LES GENETTES", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61187"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fcab788be3bfdb883ac29e6961b73342a936dbd", "fields": {"nom_de_la_commune": "HELOUP", "libell_d_acheminement": "HELOUP", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61203"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de88cc5bd4202efc1534a07056f4dfc35e118195", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61370"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf33939a0ed23c463d49555835b98db06ef4f3c", "fields": {"nom_de_la_commune": "ST BRICE SOUS RANES", "libell_d_acheminement": "ST BRICE SOUS RANES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61371"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "160b1838bda325062583976f442c42f096f1182f", "fields": {"nom_de_la_commune": "ST CYR LA ROSIERE", "libell_d_acheminement": "ST CYR LA ROSIERE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61379"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca9958ae9bb682f8c7b8534c7091fb5173fce3bf", "fields": {"nom_de_la_commune": "ST DIDIER SOUS ECOUVES", "libell_d_acheminement": "ST DIDIER SOUS ECOUVES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61383"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2807e1e722a5db6ae986baefc7890479525eec", "fields": {"nom_de_la_commune": "ST GERMAIN DU CORBEIS", "libell_d_acheminement": "ST GERMAIN DU CORBEIS", "code_postal": "61000", "coordonnees_gps": [48.4294187763, 0.088345615329], "code_commune_insee": "61397"}, "geometry": {"type": "Point", "coordinates": [0.088345615329, 48.4294187763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6154eb74da0cc732d4f3edf3daabdcf1a76fb431", "fields": {"nom_de_la_commune": "ST GERVAIS DES SABLONS", "libell_d_acheminement": "ST GERVAIS DES SABLONS", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61399"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f025f5959cd70434a68106a4efe9510a9aa5f68", "fields": {"nom_de_la_commune": "ST JOUIN DE BLAVOU", "libell_d_acheminement": "ST JOUIN DE BLAVOU", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61411"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cccffe6c2d63c87a18c9ef668143a81162fb2ff5", "fields": {"nom_de_la_commune": "ST MARD DE RENO", "libell_d_acheminement": "ST MARD DE RENO", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61418"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "147493f1578f9ecfe1cea59b34c3ce8982aca33b", "fields": {"nom_de_la_commune": "STE MARGUERITE DE CARROUGES", "libell_d_acheminement": "STE MARGUERITE DE CARROUGES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61419"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f714634363c7ae7f609b2c79b0efa2bc2acd9b43", "fields": {"nom_de_la_commune": "LES ASPRES", "libell_d_acheminement": "LES ASPRES", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61422"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4181a577a1339cba202025b65efd881890bfe2b2", "fields": {"nom_de_la_commune": "ST MARTIN DES LANDES", "libell_d_acheminement": "ST MARTIN DES LANDES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61424"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964ae560ec37bd3f3de1215edb2ac66c64a574d7", "fields": {"nom_de_la_commune": "ST MARTIN DES PEZERITS", "libell_d_acheminement": "ST MARTIN DES PEZERITS", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61425"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87612894f0abab7b7b1888789591e0825fac2a39", "fields": {"nom_de_la_commune": "ST MARTIN L AIGUILLON", "libell_d_acheminement": "ST MARTIN L AIGUILLON", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61427"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d765abc4a856ee128e31623c9abb78c4618f0e", "fields": {"nom_de_la_commune": "ST PATRICE DU DESERT", "libell_d_acheminement": "ST PATRICE DU DESERT", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61442"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87adb33d511582531a353bdf29bd35bcbbaaf51", "fields": {"code_postal": "61470", "code_commune_insee": "61460", "libell_d_acheminement": "SAP EN AUGE", "ligne_5": "LE SAP", "nom_de_la_commune": "SAP EN AUGE", "coordonnees_gps": [48.9094876471, 0.356722862934]}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f9fc7401fd9fc19e35e8c8bed19cbb07feff1f", "fields": {"nom_de_la_commune": "LE SAP ANDRE", "libell_d_acheminement": "LE SAP ANDRE", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61461"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156acaffae6e8a0fcaee5e79db105d121306421f", "fields": {"nom_de_la_commune": "SEES", "libell_d_acheminement": "SEES", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61464"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbdf39a634eb4c591c492c6dfccb2b465badf55", "fields": {"nom_de_la_commune": "LA SELLE LA FORGE", "libell_d_acheminement": "LA SELLE LA FORGE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61466"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d8188b2e66dd1cd988a49063d4d5de3569e57d", "fields": {"nom_de_la_commune": "SENTILLY", "libell_d_acheminement": "SENTILLY", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61468"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb765f9621ee613b45eebded61caf8c4711a06f8", "fields": {"nom_de_la_commune": "SURE", "libell_d_acheminement": "SURE", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61476"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8fc4f593a0c7e478fa4c669add73a15fbcf2e9", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "MALE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8d6e939b31c70f09ce8dbc6bb23e628c9e56a5", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "BEAUCHENE", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e215f8506c48091aeed537c3897b481840a426", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "PREPOTIN", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501c8a2384d27aa3aebd93238b006c0135ff043e", "fields": {"nom_de_la_commune": "TRUN", "libell_d_acheminement": "TRUN", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61494"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9997b91b4d2e103e24939e6da5a5a8e2012a34c", "fields": {"nom_de_la_commune": "LA VENTROUZE", "libell_d_acheminement": "LA VENTROUZE", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61500"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daeb128ef6554d2df71ee1c45dedfa34c4ec0ff1", "fields": {"nom_de_la_commune": "VIDAI", "libell_d_acheminement": "VIDAI", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61502"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dba593fbd3152245846921eabda2fd0cb8bfbe4", "fields": {"nom_de_la_commune": "VILLIERS SOUS MORTAGNE", "libell_d_acheminement": "VILLIERS SOUS MORTAGNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61507"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f54099c276011e021f805cebe704c7f83e18c94", "fields": {"nom_de_la_commune": "VIMOUTIERS", "libell_d_acheminement": "VIMOUTIERS", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61508"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643e4416011470d038c43a0d9af33a6f4f1f767b", "fields": {"nom_de_la_commune": "VITRAI SOUS LAIGLE", "libell_d_acheminement": "VITRAI SOUS LAIGLE", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61510"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80540013fc42a89e153ce2a113cbd8b982ca667", "fields": {"nom_de_la_commune": "ACQ", "libell_d_acheminement": "ACQ", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62007"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348533fd8453d16d928da51459af6c9e2309aee1", "fields": {"nom_de_la_commune": "AGNEZ LES DUISANS", "libell_d_acheminement": "AGNEZ LES DUISANS", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62011"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23d00dfdef13bce58dd1005a0d6d06b37d593eb", "fields": {"nom_de_la_commune": "AIRON ST VAAST", "libell_d_acheminement": "AIRON ST VAAST", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62016"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936b2822365bfbe953865ef2af28f3e73283684f", "fields": {"nom_de_la_commune": "AIX EN ISSART", "libell_d_acheminement": "AIX EN ISSART", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62018"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c498f6568bdf96e980623ddcaeb9f3c8cb7fb033", "fields": {"nom_de_la_commune": "ALLOUAGNE", "libell_d_acheminement": "ALLOUAGNE", "code_postal": "62157", "coordonnees_gps": [50.5321289482, 2.50476847832], "code_commune_insee": "62023"}, "geometry": {"type": "Point", "coordinates": [2.50476847832, 50.5321289482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6591ccdce979c6a4b5ced5141ffe145417ca911c", "fields": {"nom_de_la_commune": "AMBLETEUSE", "libell_d_acheminement": "AMBLETEUSE", "code_postal": "62164", "coordonnees_gps": [50.8206720031, 1.61493156182], "code_commune_insee": "62025"}, "geometry": {"type": "Point", "coordinates": [1.61493156182, 50.8206720031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65428121ab7df47ea5bf9f1f3b0d4615913d105b", "fields": {"nom_de_la_commune": "ANGRES", "libell_d_acheminement": "ANGRES", "code_postal": "62143", "coordonnees_gps": [50.410493959, 2.75180387692], "code_commune_insee": "62032"}, "geometry": {"type": "Point", "coordinates": [2.75180387692, 50.410493959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18131cc02faf1f0f3a43c819bf7f1e2c9f81b75", "fields": {"nom_de_la_commune": "ANNEQUIN", "libell_d_acheminement": "ANNEQUIN", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62034"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b4af142f2c421c7a98f0e65f20a65cf0bd67a5", "fields": {"nom_de_la_commune": "ANNEZIN", "libell_d_acheminement": "ANNEZIN", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62035"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7791a45683f5b8f4d66a22e74b384d23e5638015", "fields": {"nom_de_la_commune": "ARLEUX EN GOHELLE", "libell_d_acheminement": "ARLEUX EN GOHELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62039"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6d6b8efd110a1e24c25a86190bd406e4588643", "fields": {"nom_de_la_commune": "ST LOUP DE VARENNES", "libell_d_acheminement": "ST LOUP DE VARENNES", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71444"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91137b0121577f6ade71d1364c1baad4bf13a65e", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71445"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac032b0bc019f2525e72509b9abcba1bb2bfaf16", "fields": {"nom_de_la_commune": "ST MARTIN BELLE ROCHE", "libell_d_acheminement": "ST MARTIN BELLE ROCHE", "code_postal": "71118", "coordonnees_gps": [46.3801138456, 4.85427569985], "code_commune_insee": "71448"}, "geometry": {"type": "Point", "coordinates": [4.85427569985, 46.3801138456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b217a0529468f5603714ee2dcf3ce15f6bcd49eb", "fields": {"nom_de_la_commune": "ST MARTIN EN BRESSE", "libell_d_acheminement": "ST MARTIN EN BRESSE", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71456"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246c7450e3cf0099d6a349644c53d068843d4271", "fields": {"nom_de_la_commune": "ST MARTIN SOUS MONTAIGU", "libell_d_acheminement": "ST MARTIN SOUS MONTAIGU", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71459"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e96903f11138d6f09c76f09fb15c7f5e8b216f", "fields": {"nom_de_la_commune": "ST MAURICE DE SATONNAY", "libell_d_acheminement": "ST MAURICE DE SATONNAY", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71460"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a000757ce0a384fbb4b0b42f47b2fc28f89823", "fields": {"nom_de_la_commune": "ST SERNIN DU BOIS", "libell_d_acheminement": "ST SERNIN DU BOIS", "code_postal": "71200", "coordonnees_gps": [46.8208702724, 4.42565613274], "code_commune_insee": "71479"}, "geometry": {"type": "Point", "coordinates": [4.42565613274, 46.8208702724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ff5208e80ebfc85e38d460890f10414be37ac0", "fields": {"nom_de_la_commune": "ST SYMPHORIEN D ANCELLES", "libell_d_acheminement": "ST SYMPHORIEN D ANCELLES", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71481"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3893bff5cc19f3b4e5ec9c9ae7fb1caac2e043", "fields": {"nom_de_la_commune": "ST VALLERIN", "libell_d_acheminement": "ST VALLERIN", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71485"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4475c799a93eba90f49c2b0186f3da6fde5d07", "fields": {"nom_de_la_commune": "ST VINCENT BRAGNY", "libell_d_acheminement": "ST VINCENT BRAGNY", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71490"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b547e29aff0608b1b6e867caa5f91e077549cc7c", "fields": {"code_postal": "71430", "code_commune_insee": "71490", "libell_d_acheminement": "ST VINCENT BRAGNY", "ligne_5": "BRAGNY EN CHAROLLAIS", "nom_de_la_commune": "ST VINCENT BRAGNY", "coordonnees_gps": [46.5278181999, 4.19290320019]}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22234bc92d31f6438b224d9a80ec0b566db9ca8f", "fields": {"nom_de_la_commune": "ST YAN", "libell_d_acheminement": "ST YAN", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71491"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c1d1e0b0e3d407a0519303ee2dc83824db120a", "fields": {"nom_de_la_commune": "SAISY", "libell_d_acheminement": "SAISY", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71493"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e352ed27b0590405d47c4fdb48e1ced9b04bef3d", "fields": {"nom_de_la_commune": "SERRIGNY EN BRESSE", "libell_d_acheminement": "SERRIGNY EN BRESSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71519"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d15ba6e9346d7655a54cdb2d4db51b83091018", "fields": {"nom_de_la_commune": "SEVREY", "libell_d_acheminement": "SEVREY", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71520"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44012278ea8079e05b5ae09a32305cbac29dd89", "fields": {"nom_de_la_commune": "SULLY", "libell_d_acheminement": "SULLY", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71530"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1361f4d23c2a383b073e18ff3f004df68929c3", "fields": {"nom_de_la_commune": "TAIZE", "libell_d_acheminement": "TAIZE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71532"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc2cde5ad3fa495140dee38a476405336ed73dc", "fields": {"code_postal": "71250", "code_commune_insee": "71532", "libell_d_acheminement": "TAIZE", "ligne_5": "TAIZE COMMUNAUTE", "nom_de_la_commune": "TAIZE", "coordonnees_gps": [46.4606602983, 4.62757728392]}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e03a01348dad52afbfff3b0f3ff705a65ee773b", "fields": {"nom_de_la_commune": "TAVERNAY", "libell_d_acheminement": "TAVERNAY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71535"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93843bf69a843c74472f6157ea51d13ba87fde02", "fields": {"nom_de_la_commune": "TORCY", "libell_d_acheminement": "TORCY", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71540"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb386e4663e341417c7809a9968b73600ae5137c", "fields": {"nom_de_la_commune": "TORPES", "libell_d_acheminement": "TORPES", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71541"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6866bfb6b21f2a82c603c3aa935ae51a7a0b410f", "fields": {"nom_de_la_commune": "TOULON SUR ARROUX", "libell_d_acheminement": "TOULON SUR ARROUX", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71542"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6313c4689ba9c107b3ca6d515599aad66725bb52", "fields": {"nom_de_la_commune": "TOURNUS", "libell_d_acheminement": "TOURNUS", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71543"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0ae7d20660f31d4a569e96d679b4cb2913ad5a", "fields": {"nom_de_la_commune": "TRAMAYES", "libell_d_acheminement": "TRAMAYES", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71545"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b09327fae2380cbd4c8619ade37b2e2bbb7fef1", "fields": {"nom_de_la_commune": "TRAMBLY", "libell_d_acheminement": "TRAMBLY", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71546"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52a4d7b0ceb0750a1d917748ad22931126f0258", "fields": {"nom_de_la_commune": "LA TRUCHERE", "libell_d_acheminement": "LA TRUCHERE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71549"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a66a7f53526f922e072815ddea7f94928e3351", "fields": {"nom_de_la_commune": "VARENNE L ARCONCE", "libell_d_acheminement": "VARENNE L ARCONCE", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71554"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db8fc076775e90935329cb0884f8cd712b8a8c6", "fields": {"nom_de_la_commune": "VARENNES LE GRAND", "libell_d_acheminement": "VARENNES LE GRAND", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71555"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dca7db758f70a0ee3785ad02040862a4c83ca69", "fields": {"nom_de_la_commune": "VERGISSON", "libell_d_acheminement": "VERGISSON", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71567"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f3b3e15a81b2a9f4b6acdf875f7c1fe9392814", "fields": {"nom_de_la_commune": "VERISSEY", "libell_d_acheminement": "VERISSEY", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71568"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65479bc628a8d46a786da4c2771d2bf033107b1b", "fields": {"nom_de_la_commune": "VERJUX", "libell_d_acheminement": "VERJUX", "code_postal": "71590", "coordonnees_gps": [46.8788694225, 4.93402646483], "code_commune_insee": "71570"}, "geometry": {"type": "Point", "coordinates": [4.93402646483, 46.8788694225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc0a81c7fccc61a1ee63aa5468a8b30eeaa7e7b", "fields": {"nom_de_la_commune": "VERZE", "libell_d_acheminement": "VERZE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71574"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d670cdc7fcfb2c9898aaea9296042a4df9c8f8", "fields": {"code_postal": "71270", "code_commune_insee": "71578", "libell_d_acheminement": "CLUX VILLENEUVE", "ligne_5": "CLUX", "nom_de_la_commune": "CLUX VILLENEUVE", "coordonnees_gps": [46.8994601906, 5.25743617076]}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94de7b4cdbc594962afdc20a070240facee93bae", "fields": {"nom_de_la_commune": "VITRY LES CLUNY", "libell_d_acheminement": "VITRY LES CLUNY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71587"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3551931c6dc5ae1622b825f89b496107abe4bc2a", "fields": {"nom_de_la_commune": "ARDENAY SUR MERIZE", "libell_d_acheminement": "ARDENAY SUR MERIZE", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72007"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1781610663c5f2cf245b38605073ce6e1f454837", "fields": {"nom_de_la_commune": "ARTHEZE", "libell_d_acheminement": "ARTHEZE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72009"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1c24ea3833f7e7ca117cc376d561eeb8f22e4a3", "fields": {"nom_de_la_commune": "BEAUMONT SUR SARTHE", "libell_d_acheminement": "BEAUMONT SUR SARTHE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72029"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaa29849a3d8a6fb4827e413a0f1adf84113177", "fields": {"nom_de_la_commune": "BRAINS SUR GEE", "libell_d_acheminement": "BRAINS SUR GEE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72045"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1b4a8f941c1bd1197e84c5045777486e93ed866", "fields": {"nom_de_la_commune": "BRIOSNE LES SABLES", "libell_d_acheminement": "BRIOSNE LES SABLES", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72048"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68552342338184d8b8a9f62b820cc21ab1960ec", "fields": {"nom_de_la_commune": "CHAHAIGNES", "libell_d_acheminement": "CHAHAIGNES", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72052"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee50da9b76f8ef7b1cdcee037698a86df8cc5eea", "fields": {"nom_de_la_commune": "CHAMPAGNE", "libell_d_acheminement": "CHAMPAGNE", "code_postal": "72470", "coordonnees_gps": [48.0204564826, 0.363077616761], "code_commune_insee": "72054"}, "geometry": {"type": "Point", "coordinates": [0.363077616761, 48.0204564826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f10778835a6c31efe6d66057f8240aad4d9efa9a", "fields": {"nom_de_la_commune": "CHANGE", "libell_d_acheminement": "CHANGE", "code_postal": "72560", "coordonnees_gps": [47.9788443928, 0.29728955076], "code_commune_insee": "72058"}, "geometry": {"type": "Point", "coordinates": [0.29728955076, 47.9788443928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f2ff3d94666426bf70b2a3854dd1dddde2a705", "fields": {"nom_de_la_commune": "LA CHAPELLE ST AUBIN", "libell_d_acheminement": "LA CHAPELLE ST AUBIN", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72065"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ec8694acfa07370b95bd83a3744a7c7d1f9cbf", "fields": {"nom_de_la_commune": "LA CHAPELLE ST FRAY", "libell_d_acheminement": "LA CHAPELLE ST FRAY", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72066"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4e1ed2d2b043fbc48574f2fa1b41098921bb21", "fields": {"nom_de_la_commune": "LA CHAPELLE ST REMY", "libell_d_acheminement": "LA CHAPELLE ST REMY", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72067"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909e8269fad58ee9b16b2f514bc8cdc6153e37ef", "fields": {"nom_de_la_commune": "CHASSILLE", "libell_d_acheminement": "CHASSILLE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72070"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d123117bc0a25ff480a48ac0bc328d6a82ed4e6", "fields": {"nom_de_la_commune": "CHAUFOUR NOTRE DAME", "libell_d_acheminement": "CHAUFOUR NOTRE DAME", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72073"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a06161a3378d21d01bd6f060b220cb158ae0d5", "fields": {"nom_de_la_commune": "CHERANCE", "libell_d_acheminement": "CHERANCE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72078"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97eb0d9543871563c33032e1b4d23ffcd3576a12", "fields": {"nom_de_la_commune": "CHERISAY", "libell_d_acheminement": "CHERISAY", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72079"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e873b2cd0d03ac40a2b2dda298b80598030e48d5", "fields": {"nom_de_la_commune": "CONTILLY", "libell_d_acheminement": "CONTILLY", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72091"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f7aace6e525c166d6025fba6c96907b11a99562", "fields": {"nom_de_la_commune": "COULAINES", "libell_d_acheminement": "COULAINES", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72095"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e1245b4eac965a076e9c5aca88338e241d8ffc", "fields": {"nom_de_la_commune": "COULOMBIERS", "libell_d_acheminement": "COULOMBIERS", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72097"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493ee41eaf69556bbb003cbbe490d5f4c057c76f", "fields": {"nom_de_la_commune": "COULONGE", "libell_d_acheminement": "COULONGE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72098"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ca5100ca403dda70a0f692e573db401b08364d", "fields": {"nom_de_la_commune": "COURCEMONT", "libell_d_acheminement": "COURCEMONT", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72101"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357c05f59ae32a19d927044d90c28d395cea0006", "fields": {"nom_de_la_commune": "COURCIVAL", "libell_d_acheminement": "COURCIVAL", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72102"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe54b64fde93d80487ab2c7bd328e5af149a8fe", "fields": {"nom_de_la_commune": "COURDEMANCHE", "libell_d_acheminement": "COURDEMANCHE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72103"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a985f5d4ad2380ace61d546b92530d59ffde884", "fields": {"nom_de_la_commune": "COURTILLERS", "libell_d_acheminement": "COURTILLERS", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72106"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ab0724c14b02f438553664103e984ef21fca7b", "fields": {"nom_de_la_commune": "CROSMIERES", "libell_d_acheminement": "CROSMIERES", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72110"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e992c5e3bf7b20253f321e8d4fbef45adedb8637", "fields": {"nom_de_la_commune": "DISSE SOUS LE LUDE", "libell_d_acheminement": "DISSE SOUS LE LUDE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72117"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afff6159a003f1d2e84e468e3f1a8dfe43bd29f", "fields": {"code_postal": "72610", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "LE BUISSON", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3894746655, 0.168582736306]}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73fcb144559b9766600ff238db67b1738c99f11", "fields": {"code_postal": "72610", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "LIGNIERES LA CARELLE", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3894746655, 0.168582736306]}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779f0e34bcf49555c5d824accdf1dfe9d478b2ee", "fields": {"nom_de_la_commune": "LE PLESSIS GASSOT", "libell_d_acheminement": "LE PLESSIS GASSOT", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95492"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9779620f570ef69d87e1b60aed0d79008944eed7", "fields": {"nom_de_la_commune": "PONTOISE", "libell_d_acheminement": "PONTOISE", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95500"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c339a14c3526a19cbf162e4157a0de7209d435", "fields": {"nom_de_la_commune": "PUISEUX EN FRANCE", "libell_d_acheminement": "PUISEUX EN FRANCE", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95509"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44ce610e11b7d16904b5206ac0073ced1d49e467", "fields": {"nom_de_la_commune": "LA ROCHE GUYON", "libell_d_acheminement": "LA ROCHE GUYON", "code_postal": "95780", "coordonnees_gps": [49.0867183905, 1.64440422629], "code_commune_insee": "95523"}, "geometry": {"type": "Point", "coordinates": [1.64440422629, 49.0867183905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86389c27e1f30cf6cf225e28cfccfca393db463", "fields": {"code_postal": "95700", "code_commune_insee": "95527", "libell_d_acheminement": "ROISSY EN FRANCE", "ligne_5": "ROISSY AEROPORT CHARLES DE GAULLE", "nom_de_la_commune": "ROISSY EN FRANCE", "coordonnees_gps": [49.0063802146, 2.51398787772]}, "geometry": {"type": "Point", "coordinates": [2.51398787772, 49.0063802146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71114cc33cc4598a354f25e362d6e3d7b04025f", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95554"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0278b816e98b4c0f893f2e8d08fb96108a6af3e", "fields": {"nom_de_la_commune": "ST OUEN L AUMONE", "libell_d_acheminement": "ST OUEN L AUMONE", "code_postal": "95310", "coordonnees_gps": [49.0444511055, 2.12902407572], "code_commune_insee": "95572"}, "geometry": {"type": "Point", "coordinates": [2.12902407572, 49.0444511055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf698174ab6177c0eb95f11fc7d578c7f3ee79c", "fields": {"nom_de_la_commune": "ST WITZ", "libell_d_acheminement": "ST WITZ", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95580"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298d5959a2d9542988372bbc18fc745a185a7607", "fields": {"nom_de_la_commune": "VAUREAL", "libell_d_acheminement": "VAUREAL", "code_postal": "95490", "coordonnees_gps": [49.030094494, 2.02389531327], "code_commune_insee": "95637"}, "geometry": {"type": "Point", "coordinates": [2.02389531327, 49.030094494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e963d57fb8743c158e5d9c16d923fee02ed74fd", "fields": {"nom_de_la_commune": "VETHEUIL", "libell_d_acheminement": "VETHEUIL", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95651"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e0d5bb4c7e9076a02ee1f0026b33a5350d74ae", "fields": {"nom_de_la_commune": "LES ABYMES", "libell_d_acheminement": "LES ABYMES", "code_postal": "97142", "coordonnees_gps": [16.2727902074, -61.5015764802], "code_commune_insee": "97101"}, "geometry": {"type": "Point", "coordinates": [-61.5015764802, 16.2727902074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37001b01334658d8982c1e5bb39969bc68dfbaaa", "fields": {"nom_de_la_commune": "BAIE MAHAULT", "libell_d_acheminement": "BAIE MAHAULT", "code_postal": "97122", "coordonnees_gps": [16.25152894, -61.5922445843], "code_commune_insee": "97103"}, "geometry": {"type": "Point", "coordinates": [-61.5922445843, 16.25152894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0c41084b4f166bd6f4bafd148b7b28d24e81182", "fields": {"nom_de_la_commune": "CAPESTERRE BELLE EAU", "libell_d_acheminement": "CAPESTERRE BELLE EAU", "code_postal": "97130", "coordonnees_gps": [16.0552203846, -61.6118226443], "code_commune_insee": "97107"}, "geometry": {"type": "Point", "coordinates": [-61.6118226443, 16.0552203846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9964f25a7c2a8a33e134332da7e58ccf5e75e8", "fields": {"nom_de_la_commune": "DESHAIES", "libell_d_acheminement": "DESHAIES", "code_postal": "97126", "coordonnees_gps": [16.3035227992, -61.779966949], "code_commune_insee": "97111"}, "geometry": {"type": "Point", "coordinates": [-61.779966949, 16.3035227992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcba486bb91a9d59d94fd614168b0e98d5ecb50", "fields": {"nom_de_la_commune": "MORNE A L EAU", "libell_d_acheminement": "MORNE A L EAU", "code_postal": "97111", "coordonnees_gps": [16.3244916771, -61.4713968563], "code_commune_insee": "97116"}, "geometry": {"type": "Point", "coordinates": [-61.4713968563, 16.3244916771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51814f7a6a29152570d6a36ad6f43f56b49d47bc", "fields": {"code_postal": "97131", "code_commune_insee": "97119", "libell_d_acheminement": "PETIT CANAL", "ligne_5": "LES MANGLES", "nom_de_la_commune": "PETIT CANAL", "coordonnees_gps": [16.389934769, -61.4497015093]}, "geometry": {"type": "Point", "coordinates": [-61.4497015093, 16.389934769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847a8a89ed178fc690e8f2a92f0e99032dccb873", "fields": {"nom_de_la_commune": "ST CLAUDE", "libell_d_acheminement": "ST CLAUDE", "code_postal": "97120", "coordonnees_gps": [16.0334826913, -61.6899946851], "code_commune_insee": "97124"}, "geometry": {"type": "Point", "coordinates": [-61.6899946851, 16.0334826913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5bbfb292fc013a2120762334f6660152803876", "fields": {"nom_de_la_commune": "STE ROSE", "libell_d_acheminement": "STE ROSE", "code_postal": "97115", "coordonnees_gps": [16.293918217, -61.7108031609], "code_commune_insee": "97129"}, "geometry": {"type": "Point", "coordinates": [-61.7108031609, 16.293918217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6c32c5a81991c1f5658bb6bc5ee7252050d124", "fields": {"nom_de_la_commune": "GROS MORNE", "libell_d_acheminement": "GROS MORNE", "code_postal": "97213", "coordonnees_gps": [14.7120628914, -61.0259258054], "code_commune_insee": "97212"}, "geometry": {"type": "Point", "coordinates": [-61.0259258054, 14.7120628914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e7a0fc8889cbb116aa108482a21f491e3b0cb9a", "fields": {"nom_de_la_commune": "LE LAMENTIN", "libell_d_acheminement": "LE LAMENTIN", "code_postal": "97232", "coordonnees_gps": [14.6244810943, -60.9936556882], "code_commune_insee": "97213"}, "geometry": {"type": "Point", "coordinates": [-60.9936556882, 14.6244810943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283617f87fc9edb04cbb81febf0edff7b70e179d", "fields": {"nom_de_la_commune": "MACOUBA", "libell_d_acheminement": "MACOUBA", "code_postal": "97218", "coordonnees_gps": [14.8474849535, -61.1459690766], "code_commune_insee": "97215"}, "geometry": {"type": "Point", "coordinates": [-61.1459690766, 14.8474849535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503f7f22b59370939e66f4ea7478a9d26e53ea62", "fields": {"nom_de_la_commune": "LE MARIGOT", "libell_d_acheminement": "LE MARIGOT", "code_postal": "97225", "coordonnees_gps": [14.7798790652, -61.0516892997], "code_commune_insee": "97216"}, "geometry": {"type": "Point", "coordinates": [-61.0516892997, 14.7798790652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52b8d1a9b19144f6316910db48329ca9c4d7bed", "fields": {"nom_de_la_commune": "LE PRECHEUR", "libell_d_acheminement": "LE PRECHEUR", "code_postal": "97250", "coordonnees_gps": [14.777738804, -61.1678676514], "code_commune_insee": "97219"}, "geometry": {"type": "Point", "coordinates": [-61.1678676514, 14.777738804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23297b852549b5b6f4ce454cbe6868baeb2eb343", "fields": {"nom_de_la_commune": "RIVIERE SALEE", "libell_d_acheminement": "RIVIERE SALEE", "code_postal": "97215", "coordonnees_gps": [14.5259859391, -60.9645824677], "code_commune_insee": "97221"}, "geometry": {"type": "Point", "coordinates": [-60.9645824677, 14.5259859391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3682089d03b9c9cc95e3ca2a101798e38bf9aa39", "fields": {"nom_de_la_commune": "STE LUCE", "libell_d_acheminement": "STE LUCE", "code_postal": "97228", "coordonnees_gps": [14.4855126977, -60.9447898865], "code_commune_insee": "97227"}, "geometry": {"type": "Point", "coordinates": [-60.9447898865, 14.4855126977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa51f51fbb2599c95b86fc01e8f447870398d01", "fields": {"code_postal": "97230", "code_commune_insee": "97228", "libell_d_acheminement": "STE MARIE", "ligne_5": "STE MARIE MORNE DES ESSES", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [14.7693102054, -61.0177300072]}, "geometry": {"type": "Point", "coordinates": [-61.0177300072, 14.7693102054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7abb8b6fe1d5f694cb44e23aebe5c9c4363c3c70", "fields": {"nom_de_la_commune": "LE VAUCLIN", "libell_d_acheminement": "LE VAUCLIN", "code_postal": "97280", "coordonnees_gps": [14.5433463499, -60.8567392953], "code_commune_insee": "97232"}, "geometry": {"type": "Point", "coordinates": [-60.8567392953, 14.5433463499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cab568f0b24c253687ae23790d32e47f51587b", "fields": {"nom_de_la_commune": "CAYENNE", "libell_d_acheminement": "CAYENNE", "code_postal": "97300", "coordonnees_gps": [5.02932589838, -52.5159620872], "code_commune_insee": "97302"}, "geometry": {"type": "Point", "coordinates": [-52.5159620872, 5.02932589838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb6e0ea117776bcc80ff5c3a3bc71f3faeafabd", "fields": {"code_postal": "97352", "code_commune_insee": "97310", "libell_d_acheminement": "ROURA", "ligne_5": "CACAO", "nom_de_la_commune": "ROURA", "coordonnees_gps": [4.46467206988, -52.5129184542]}, "geometry": {"type": "Point", "coordinates": [-52.5129184542, 4.46467206988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a9fa952cd254214abad44ce1346e37e8f54ff6", "fields": {"nom_de_la_commune": "ST ELIE", "libell_d_acheminement": "ST ELIE", "code_postal": "97312", "coordonnees_gps": [4.52927437476, -53.1006646796], "code_commune_insee": "97358"}, "geometry": {"type": "Point", "coordinates": [-53.1006646796, 4.52927437476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67df11f0a0a011ffff60a79d6cf84453ac119213", "fields": {"nom_de_la_commune": "AWALA YALIMAPO", "libell_d_acheminement": "AWALA YALIMAPO", "code_postal": "97319", "coordonnees_gps": [5.68354920544, -53.9164375378], "code_commune_insee": "97361"}, "geometry": {"type": "Point", "coordinates": [-53.9164375378, 5.68354920544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ed90c8e3ddb444c5659768ec02f4e0b1c560bb", "fields": {"nom_de_la_commune": "PAPAICHTON", "libell_d_acheminement": "POMPIDOU PAPA ICHTON", "code_postal": "97316", "coordonnees_gps": [4.04272709596, -54.0355703954], "code_commune_insee": "97362"}, "geometry": {"type": "Point", "coordinates": [-54.0355703954, 4.04272709596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa7a2434657d803a81dc3505c387a2156b8a8f0", "fields": {"code_postal": "97429", "code_commune_insee": "97405", "libell_d_acheminement": "PETITE ILE", "ligne_5": "PITON GOYAVES", "nom_de_la_commune": "PETITE ILE", "coordonnees_gps": [-21.3396693857, 55.5689349201]}, "geometry": {"type": "Point", "coordinates": [55.5689349201, -21.3396693857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d25a86896ee1f1106aa86c2429ccecb530e355f", "fields": {"nom_de_la_commune": "LA POSSESSION", "libell_d_acheminement": "LA POSSESSION", "code_postal": "97419", "coordonnees_gps": [-20.99459115, 55.3979867416], "code_commune_insee": "97408"}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afd6e51e1765b2d7cdbd70fac04788bb91fa610", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "97440", "coordonnees_gps": [-20.9634830614, 55.6422659103], "code_commune_insee": "97409"}, "geometry": {"type": "Point", "coordinates": [55.6422659103, -20.9634830614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3280ab3debe6f3b1575d98acb510d57926d22ee", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST DENIS TADAR", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e83282835cf7dcd9574813bbf9e90edf67704f", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "BOIS DE NEFLES ST DENIS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2485b270c94b006c6e8a6b4a27e7beab3d339cde", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "MOUFIA", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3abedb19cad2fe8cb3dbdc56d4cc6c961394bb17", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "STE CLOTILDE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b497a23f7b455630f74cf2e6cb8e9eff859a50e", "fields": {"code_postal": "97480", "code_commune_insee": "97412", "libell_d_acheminement": "ST JOSEPH", "ligne_5": "JEAN PETIT", "nom_de_la_commune": "ST JOSEPH", "coordonnees_gps": [-21.3061982734, 55.6419643354]}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d244260dd22c80ca6769a80b8670527d315bfd5", "fields": {"code_postal": "97424", "code_commune_insee": "97413", "libell_d_acheminement": "ST LEU", "ligne_5": "LE PLATE", "nom_de_la_commune": "ST LEU", "coordonnees_gps": [-21.1657814773, 55.3335929857]}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a6293cb8defd1dda2776950650b07f7379904b", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "97460", "coordonnees_gps": [-21.044558662, 55.3221880362], "code_commune_insee": "97415"}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8080e571eaa019486eab2cedad51606afdbcafae", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "97410", "coordonnees_gps": [-21.3123020427, 55.4942837134], "code_commune_insee": "97416"}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6802154bb42d7007f088ecc9d612d067f32d7fdd", "fields": {"code_postal": "97442", "code_commune_insee": "97417", "libell_d_acheminement": "ST PHILIPPE", "ligne_5": "BASSE VALLEE", "nom_de_la_commune": "ST PHILIPPE", "coordonnees_gps": [-21.3038963279, 55.7450487772]}, "geometry": {"type": "Point", "coordinates": [55.7450487772, -21.3038963279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84dd46dea83670ce7fc77a7299f8171794af2a26", "fields": {"code_postal": "97438", "code_commune_insee": "97418", "libell_d_acheminement": "STE MARIE", "ligne_5": "ROLAND GARROS AEROPORT", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [-20.9470117135, 55.5304413195]}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c24efb7415ff7932e1dd981c79cd51874e6406a9", "fields": {"code_postal": "97439", "code_commune_insee": "97419", "libell_d_acheminement": "STE ROSE", "ligne_5": "LE PITON STE ROSE", "nom_de_la_commune": "STE ROSE", "coordonnees_gps": [-21.1923490823, 55.7545391105]}, "geometry": {"type": "Point", "coordinates": [55.7545391105, -21.1923490823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2781182b60909e0e0d9634f40f0153a2ea97df", "fields": {"code_postal": "97433", "code_commune_insee": "97421", "libell_d_acheminement": "SALAZIE", "ligne_5": "HELL BOURG", "nom_de_la_commune": "SALAZIE", "coordonnees_gps": [-21.0468656868, 55.5080493418]}, "geometry": {"type": "Point", "coordinates": [55.5080493418, -21.0468656868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b8b001d5010020d41be623df3b6e2e872050c7", "fields": {"code_postal": "97430", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "TAMPON 14EME KM", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385dbca026d5dbc8133f4bce0261a9eb70ce09b8", "fields": {"code_postal": "97413", "code_commune_insee": "97424", "libell_d_acheminement": "CILAOS", "ligne_5": "PALMISTE ROUGE", "nom_de_la_commune": "CILAOS", "coordonnees_gps": [-21.1439238354, 55.4586896242]}, "geometry": {"type": "Point", "coordinates": [55.4586896242, -21.1439238354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9cca8213b0978d4e3ae9aca8935dd4c3bb12b1", "fields": {"nom_de_la_commune": "CHICONI", "libell_d_acheminement": "CHICONI", "code_postal": "97670", "coordonnees_gps": [-12.8328062861, 45.1308284247], "code_commune_insee": "97605"}, "geometry": {"type": "Point", "coordinates": [45.1308284247, -12.8328062861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6595791fd615f23553e47b0e02db8b7ac575328a", "fields": {"nom_de_la_commune": "DZAOUDZI", "libell_d_acheminement": "DZAOUDZI", "code_postal": "97615", "coordonnees_gps": [-12.785467309, 45.2832655596], "code_commune_insee": "97608"}, "geometry": {"type": "Point", "coordinates": [45.2832655596, -12.785467309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e259612e31dddbd936221d8be7d2fc11d4cf451d", "fields": {"code_postal": "97600", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "KAWENI", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.7725574763, 45.1908759365]}, "geometry": {"type": "Point", "coordinates": [45.1908759365, -12.7725574763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df1bb96a40f06cde52c1e5a4ce8c0420cd384a0", "fields": {"nom_de_la_commune": "MTSAMBORO", "libell_d_acheminement": "MTSAMBORO", "code_postal": "97630", "coordonnees_gps": [-12.7037438123, 45.0717293646], "code_commune_insee": "97612"}, "geometry": {"type": "Point", "coordinates": [45.0717293646, -12.7037438123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128db9f2338facf0e285c2779c0c54103d804fbe", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "97133", "code_commune_insee": "97701"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b53274342b62d1618dd8e3778348ba622a0174fb", "fields": {"nom_de_la_commune": "ANAA", "libell_d_acheminement": "HITIANAU", "code_postal": "98786", "ligne_5": "ANAA", "code_commune_insee": "98711"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbccb676254409d7c9727db1804fa6fab51af8dc", "fields": {"nom_de_la_commune": "ARUTUA", "libell_d_acheminement": "RAUTINI", "code_postal": "98761", "ligne_5": "ARUTUA", "code_commune_insee": "98713"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2cb61001f6aea48ac60c6935d11f1f0b48237cb", "fields": {"nom_de_la_commune": "FANGATAU", "libell_d_acheminement": "TEANA", "code_postal": "98765", "ligne_5": "FANGATAU", "code_commune_insee": "98717"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990d0aee357b0d422e16b02a60d68eed18213153", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "AMANU", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033b084f84b72debf180baf038beb073752abdfa", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "TEANOGA", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f32598405c473b5b4065bfb7dfecfeba66ca49", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "MAHAENA", "code_postal": "98706", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abac4806a0fb2f929c17f324597ebd8edf889602", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "TIAREI", "code_postal": "98708", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6380b8eaa56698dde6ad50aa9860f46a7bdf1a17", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "MAEVA", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35cecf683a9cf3e3f42f516c2b5d11a6f59d6949", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "PAREA", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ece9b1fb163c65781649258625c5af1fd9b9c6", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HITI", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d20f231ee1c24e3b0d9dd8ffb64183dfdca99b", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "MOPELIA", "code_postal": "98732", "ligne_5": "MAUPITI", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4d2df060efd54f19213595e50bf2edc65e6c93", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TIAIA", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab49680f56c350a42ec573b4c92cd2482dc10f9c", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PIHAENA", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e95c3522458ede74a1e5677fad7430848e084708", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "NUKUATAHA", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606345182a54f4827d72459e748deeb60f1a5e2f", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "EIAO", "code_postal": "98796", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e451f5a9b5199abcf506c0db020581a663b11c01", "fields": {"nom_de_la_commune": "NUKUTAVAKE", "libell_d_acheminement": "TEMANUFAARA", "code_postal": "98788", "ligne_5": "NUKUTAVAKE", "code_commune_insee": "98732"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15e2974e099552e466689f666ac60d454270eb0", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "PAHUA", "code_postal": "98777", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38aa1eadabef8bf3879d3fc52a7c943302b4d323", "fields": {"nom_de_la_commune": "RAPA", "libell_d_acheminement": "AHUREI", "code_postal": "98751", "ligne_5": "RAPA", "code_commune_insee": "98741"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e334709d3e283a58e89d0464bf19ea834ff0da3c", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "AMARU", "code_postal": "98752", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f72707aa192e7fa7753a85e980aec5aca058b7", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "MARIA ILOTS", "code_postal": "98795", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632f5146648662d8ce001ba6cb33c4005ae7ec9a", "fields": {"nom_de_la_commune": "RURUTU", "libell_d_acheminement": "HAUTI", "code_postal": "98753", "ligne_5": "RURUTU", "code_commune_insee": "98744"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d220f6fedce6c50f5c135aac5c8ecbc16da774", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "PATIO", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a593b20ec89118553fb8337d28c2891f55d3d2ef", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "RUUTIA", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c936e5b1fdb2281115ba7e9a41c1d0945659ad8", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "TIVA", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da92418e5921b014dd2eb3350208a4b49b875a62", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "POUTORU", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df61cb850cd2727739598b776417204588900b38", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "VAITOARE", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3a065848e17d6c2dd050f5542b22c121bcb8d5", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "VAITAHU", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b8b948e8063a8a0136d317259f1db54adba31c", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "PUEU", "code_postal": "98721", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a418343cbc44a1eee5cf08fb54d6e1a60dd18fb7", "fields": {"nom_de_la_commune": "TAKAROA", "libell_d_acheminement": "TIKEI", "code_postal": "98790", "ligne_5": "TAKAROA", "code_commune_insee": "98749"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d47393c6f8376ece46e70ea9ce02fcda0241192", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "OPOA", "code_postal": "98735", "ligne_5": "TAPUTAPUATEA", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73715bf4a312d24c9eb390a5c3ffb39d97af358", "fields": {"nom_de_la_commune": "TEVA I UTA", "libell_d_acheminement": "MATAIEA", "code_postal": "98726", "ligne_5": "TEVA I UTA", "code_commune_insee": "98752"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4b4cd49ea4193c2e05555130c75dc1885dffe2", "fields": {"nom_de_la_commune": "UA HUKA", "libell_d_acheminement": "VAIPAEE", "code_postal": "98744", "ligne_5": "UA HUKA", "code_commune_insee": "98756"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415c8ac427edfeba60a3ab0df24fa767fc503eff", "fields": {"nom_de_la_commune": "UTUROA", "libell_d_acheminement": "UTUROA", "code_postal": "98735", "code_commune_insee": "98758"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc2f01f514a7bd25ee589074497af835eb079cf", "fields": {"nom_de_la_commune": "BOULOUPARI", "libell_d_acheminement": "BOULOUPARIS", "code_postal": "98812", "code_commune_insee": "98802"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f2466e6e99a1668c2055cfde59b1511c6c91dc", "fields": {"nom_de_la_commune": "HOUAILOU", "libell_d_acheminement": "HOUAILOU", "code_postal": "98816", "code_commune_insee": "98808"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d38fc541c4f026a570656bef33671d01e68d2b", "fields": {"nom_de_la_commune": "KOUMAC", "libell_d_acheminement": "KOUMAC", "code_postal": "98850", "code_commune_insee": "98812"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dadfd8306c2bf7b90c33e76704508f558bcc819f", "fields": {"nom_de_la_commune": "LA FOA", "libell_d_acheminement": "LA FOA", "code_postal": "98880", "code_commune_insee": "98813"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a06fcaf0708e8052c965e74da6a47dcda70256e", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "MONT DORE", "code_postal": "98810", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7621cb1034bbddf198588d83e31842c017ac8c2", "fields": {"nom_de_la_commune": "OUEGOA", "libell_d_acheminement": "OUEGOA", "code_postal": "98821", "code_commune_insee": "98819"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6978a815736897d59633b1c8fd3d57478c37d34", "fields": {"nom_de_la_commune": "POINDIMIE", "libell_d_acheminement": "POINDIMIE", "code_postal": "98822", "code_commune_insee": "98822"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db10289bd074cc9cf3317b96e4ae20f4001d94b4", "fields": {"nom_de_la_commune": "POUEBO", "libell_d_acheminement": "POUEBO", "code_postal": "98824", "code_commune_insee": "98824"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374ee5d680c1d98f11193b918ace83cc14b0be8c", "fields": {"nom_de_la_commune": "YATE", "libell_d_acheminement": "YATE", "code_postal": "98834", "code_commune_insee": "98832"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d22bc4b4cdd7a895c402c53846cc6db07bbc49d", "fields": {"nom_de_la_commune": "KOUAOUA", "libell_d_acheminement": "KOUAOUA", "code_postal": "98818", "code_commune_insee": "98833"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5cda7b045c7d82b6e8d4903e93025d2bd00844", "fields": {"nom_de_la_commune": "AFA", "libell_d_acheminement": "AFA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A001"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c51fedf4e02709717968f3659a0dd1565c625f", "fields": {"code_postal": "20167", "code_commune_insee": "2A004", "libell_d_acheminement": "AJACCIO", "ligne_5": "MEZZAVIA", "nom_de_la_commune": "AJACCIO", "coordonnees_gps": [41.9750629665, 8.77513294931]}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e97e4015b29b85f34b64106cbedd0955ba6d616", "fields": {"nom_de_la_commune": "ALTAGENE", "libell_d_acheminement": "ALTAGENE", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A011"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525cf34ff47f8d7a472b6ca7c0030772ece7574c", "fields": {"nom_de_la_commune": "LARRESSINGLE", "libell_d_acheminement": "LARRESSINGLE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32194"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249f6902760de608655d433bfce1dbbbd18e2093", "fields": {"nom_de_la_commune": "LASSERADE", "libell_d_acheminement": "LASSERADE", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32199"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce6a4cbd815678ddc844564a4961ca5bdb0ff363", "fields": {"nom_de_la_commune": "LUPIAC", "libell_d_acheminement": "LUPIAC", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32219"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fb3bbfa11761c59c32da6908066563b4f4f079", "fields": {"nom_de_la_commune": "MANENT MONTANE", "libell_d_acheminement": "MANENT MONTANE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32228"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5859c3df7f0cff67420fcf9d5a22e7fb8bbe62bf", "fields": {"nom_de_la_commune": "MARGUESTAU", "libell_d_acheminement": "MARGUESTAU", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32236"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d3d522a201cec3587ca7e75e3aca15aec021ee", "fields": {"nom_de_la_commune": "MASCARAS", "libell_d_acheminement": "MASCARAS", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32240"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38d078970a80474e432d5b975c7508cc4d1e19e", "fields": {"nom_de_la_commune": "MASSEUBE", "libell_d_acheminement": "MASSEUBE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32242"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f22e5fec414bc07e52c97410f9b7f0e5ce7944", "fields": {"nom_de_la_commune": "MAUPAS", "libell_d_acheminement": "MAUPAS", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32246"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3a5a1f40b731ce981bbd3ebb5194d4b51d5825", "fields": {"nom_de_la_commune": "MIRAMONT LATOUR", "libell_d_acheminement": "MIRAMONT LATOUR", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32255"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8175f7030f02fc11bb1a966216d10c3ec8b00d", "fields": {"nom_de_la_commune": "MONCASSIN", "libell_d_acheminement": "MONCASSIN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32263"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359f7e05fca8cfe408eea352f02d57f346302de9", "fields": {"nom_de_la_commune": "MONCLAR", "libell_d_acheminement": "MONCLAR D ARMAGNAC", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32264"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ff52bd45ca14b74abdcc110462a9970c98f279", "fields": {"nom_de_la_commune": "MONFERRAN SAVES", "libell_d_acheminement": "MONFERRAN SAVES", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32268"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4712c047593a7d27fd1c6292f82dd768efa5ec11", "fields": {"nom_de_la_commune": "MONFORT", "libell_d_acheminement": "MONFORT", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32269"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1369ba5ee45145f124a9b00bffe1a4f6aef67a88", "fields": {"nom_de_la_commune": "MONGUILHEM", "libell_d_acheminement": "MONGUILHEM", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32271"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512fd7c5be61b26f79140e4dc7200b43b75cf3f4", "fields": {"nom_de_la_commune": "MONLEZUN", "libell_d_acheminement": "MONLEZUN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32273"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e28ffe583c6e683dfbd612e8e5735f505732107", "fields": {"nom_de_la_commune": "MONTAMAT", "libell_d_acheminement": "MONTAMAT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32277"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97cfcbaa4047d2ed8ce0d36f1816aba33d7f2648", "fields": {"nom_de_la_commune": "NOGARO", "libell_d_acheminement": "NOGARO", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32296"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a53d2ade056a440d59bf2b96e17d951991330a", "fields": {"nom_de_la_commune": "NOILHAN", "libell_d_acheminement": "NOILHAN", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32297"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0da8f2666c19c9867e309ed43de4300d74dff58", "fields": {"nom_de_la_commune": "ORDAN LARROQUE", "libell_d_acheminement": "ORDAN LARROQUE", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32301"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0212fa3d1e2ad371b2f688ced4679c25d77b285", "fields": {"nom_de_la_commune": "PANJAS", "libell_d_acheminement": "PANJAS", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32305"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d884a6645331ff1303aab905d22e694c8b428ef", "fields": {"nom_de_la_commune": "PERCHEDE", "libell_d_acheminement": "PERCHEDE", "code_postal": "32460", "coordonnees_gps": [43.7705722167, -0.178992315741], "code_commune_insee": "32310"}, "geometry": {"type": "Point", "coordinates": [-0.178992315741, 43.7705722167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8163c5421711382dcafd5e1c0123f3f0d0a3b61", "fields": {"nom_de_la_commune": "PESSOULENS", "libell_d_acheminement": "PESSOULENS", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32313"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b54c2f22e0a14e14c5f85f4a2bee9f41af25271", "fields": {"nom_de_la_commune": "PEYRECAVE", "libell_d_acheminement": "PEYRECAVE", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32314"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95915293c53e67ad16f72c6198569474e6b96350", "fields": {"nom_de_la_commune": "PEYRUSSE VIEILLE", "libell_d_acheminement": "PEYRUSSE VIEILLE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32317"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255f2f3db978b0be4dd6f5d9ae3dba1599ed7a49", "fields": {"nom_de_la_commune": "POUY ROQUELAURE", "libell_d_acheminement": "POUY ROQUELAURE", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32328"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0558d3fe5a7fa9a46d9b4ec5875bf5e7a91024", "fields": {"nom_de_la_commune": "PRECHAC", "libell_d_acheminement": "PRECHAC", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32329"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cd1aaaabb188ffddf22cab6d24387b389e03f4", "fields": {"nom_de_la_commune": "PRENERON", "libell_d_acheminement": "PRENERON", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32332"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb5843e8e26096772911aafe5916dbcf44d7da8", "fields": {"nom_de_la_commune": "PUJAUDRAN", "libell_d_acheminement": "PUJAUDRAN", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32334"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8de49d10a19e0a4a1cb00f19fd157f0e5870b1", "fields": {"nom_de_la_commune": "PUYLAUSIC", "libell_d_acheminement": "PUYLAUSIC", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32336"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "762d6bd0c0e96edd687328598fe7f96ff9f03e71", "fields": {"nom_de_la_commune": "RAMOUZENS", "libell_d_acheminement": "RAMOUZENS", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32338"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720ea52da4a75f9c2af9b90ec9e7020a17ed38b7", "fields": {"nom_de_la_commune": "REANS", "libell_d_acheminement": "REANS", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32340"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8269bfb7f811cf18d2a6bbfce2ae6280a5a7683b", "fields": {"nom_de_la_commune": "RISCLE", "libell_d_acheminement": "RISCLE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32344"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a334d992865156203364e57b9cf31d48e7a1732c", "fields": {"nom_de_la_commune": "SABAILLAN", "libell_d_acheminement": "SABAILLAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32353"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274d5646dab920665d36f2e6a83bc5df401b78b9", "fields": {"nom_de_la_commune": "SADEILLAN", "libell_d_acheminement": "SADEILLAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32355"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8920b68e3eefb666668de4634dbbd847911a1e", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32356"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609353020b59beefaab4446c90dcc783d126eef4", "fields": {"nom_de_la_commune": "ST ANTONIN", "libell_d_acheminement": "ST ANTONIN", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32359"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7aebe8f3203acc6068693d2179add0e9b91ee0", "fields": {"nom_de_la_commune": "ST AUNIX LENGROS", "libell_d_acheminement": "ST AUNIX LENGROS", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32362"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ec9f48c63b4d42bf9a1b5d8c7cc92cd3bd9c60", "fields": {"nom_de_la_commune": "ST ELIX", "libell_d_acheminement": "ST ELIX", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32374"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e60ac9e218fa22a7cd308663bbafeef7e30519d", "fields": {"nom_de_la_commune": "ST GERME", "libell_d_acheminement": "ST GERME", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32378"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be820e88a0d1b7840abafca7374476964dca125", "fields": {"nom_de_la_commune": "ST JUSTIN", "libell_d_acheminement": "ST JUSTIN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32383"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4eb26339d88f74c031ba15ab5ea9d90c1480dc", "fields": {"nom_de_la_commune": "ST LOUBE", "libell_d_acheminement": "ST LOUBE", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32387"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2b19c31715da6f673014c326c198695e1aaf34", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32393"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd8f98f6815c1e70171ad80cbfc8b71b42509dd", "fields": {"nom_de_la_commune": "ST SAUVY", "libell_d_acheminement": "ST SAUVY", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32406"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8da7a4447b2ec9f812c92ab7fc6d8785a3ec040", "fields": {"nom_de_la_commune": "SAMARAN", "libell_d_acheminement": "SAMARAN", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32409"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537bb8ec4687565eb47eaa8e91fb839f9a741c61", "fields": {"nom_de_la_commune": "SARCOS", "libell_d_acheminement": "SARCOS", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32413"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0087a01bc418adbd9726830aeaaf8dc79391d519", "fields": {"nom_de_la_commune": "LA SAUVETAT", "libell_d_acheminement": "LA SAUVETAT", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32417"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7eb91063051e98ced61a66887a37edb2bdbb219", "fields": {"nom_de_la_commune": "SEGOS", "libell_d_acheminement": "SEGOS", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32424"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2648cf762aab52f5e70669c454732d02e5d486d3", "fields": {"code_postal": "32260", "code_commune_insee": "32426", "libell_d_acheminement": "SEISSAN", "ligne_5": "ARTIGUEDIEU", "nom_de_la_commune": "SEISSAN", "coordonnees_gps": [43.4999610882, 0.608034644011]}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca07c5bf67e6f9d8bb49258412a16517168521a", "fields": {"nom_de_la_commune": "SERE", "libell_d_acheminement": "SERE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32430"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c7ac5bf87cea25e826a6da2a9e71775134262c", "fields": {"nom_de_la_commune": "TOURNAN", "libell_d_acheminement": "TOURNAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32451"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c162e052007aab64e83f6bf5bb6595eb9ba3f5", "fields": {"nom_de_la_commune": "TOURNECOUPE", "libell_d_acheminement": "TOURNECOUPE", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32452"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a153449d23d7cf6869ce09f4fb61a6104d338a", "fields": {"nom_de_la_commune": "TUDELLE", "libell_d_acheminement": "TUDELLE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32456"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95506e820738f93153f7a9eb75a47e0af9e762c", "fields": {"nom_de_la_commune": "VILLECOMTAL SUR ARROS", "libell_d_acheminement": "VILLECOMTAL SUR ARROS", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32464"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f489da9509c34230c93b5e4d9fc88aed6adcf58d", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32467"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c898881153f81e8fb86f495b9a166e421a9844", "fields": {"nom_de_la_commune": "ANGLADE", "libell_d_acheminement": "ANGLADE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33006"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dbf8d48e540fbe68a727cba36fdd06b4818806", "fields": {"nom_de_la_commune": "ARVEYRES", "libell_d_acheminement": "ARVEYRES", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33015"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74fbdfca276e5cae41a797f47a7ac28401cbdf1", "fields": {"code_postal": "33240", "code_commune_insee": "33018", "libell_d_acheminement": "VAL DE VIRVEE", "ligne_5": "AUBIE ET ESPESSAS", "nom_de_la_commune": "VAL DE VIRVEE", "coordonnees_gps": [44.9990310815, -0.398251913536]}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c4ca6d272537ebf542480956cfc60324750179f", "fields": {"nom_de_la_commune": "AYGUEMORTE LES GRAVES", "libell_d_acheminement": "AYGUEMORTE LES GRAVES", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33023"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2819101ba8aca8421eb796be78c11f5d1b4ec5", "fields": {"nom_de_la_commune": "BAIGNEAUX", "libell_d_acheminement": "BAIGNEAUX", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33025"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf29aa83ccc4bbc9cfd7bfc35057c412f947600b", "fields": {"nom_de_la_commune": "BALIZAC", "libell_d_acheminement": "BALIZAC", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33026"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fdae512890cc702300f7c3dc69415b6bce8882d", "fields": {"nom_de_la_commune": "BASSANNE", "libell_d_acheminement": "BASSANNE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33031"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d901824292a368af0b9d99cc1220b88b8c72d0db", "fields": {"code_postal": "33830", "code_commune_insee": "33042", "libell_d_acheminement": "BELIN BELIET", "ligne_5": "BELIET", "nom_de_la_commune": "BELIN BELIET", "coordonnees_gps": [44.48117634, -0.823096035056]}, "geometry": {"type": "Point", "coordinates": [-0.823096035056, 44.48117634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4ea3161e127509f7d27dd9e561b7c24e262b4c", "fields": {"nom_de_la_commune": "BIEUJAC", "libell_d_acheminement": "BIEUJAC", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33050"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5a19f1f75b791c7929ca02d1145c5ec82eaaf5", "fields": {"nom_de_la_commune": "BLAIGNAC", "libell_d_acheminement": "BLAIGNAC", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33054"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f13ea4432c9789fbee13d5dd23bb8eac886bcb", "fields": {"nom_de_la_commune": "BLAYE", "libell_d_acheminement": "BLAYE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33058"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cf8c9f97c1d32cc72a8f3866443a319012ff1b", "fields": {"nom_de_la_commune": "BONZAC", "libell_d_acheminement": "BONZAC", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33062"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1c7e2e01a8e0efaefc315e6a2d20717268ccec", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33000", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3955bb5e3d8dbaf15736e68c2ab06fb4c5baf5", "fields": {"nom_de_la_commune": "BOURDELLES", "libell_d_acheminement": "BOURDELLES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33066"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41c3edb0fc10c6e563e05991f6490376e6229e8", "fields": {"nom_de_la_commune": "BRANNE", "libell_d_acheminement": "BRANNE", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33071"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8e1042778e04bd4c1d05126178a79c04c205f5", "fields": {"nom_de_la_commune": "BRANNENS", "libell_d_acheminement": "BRANNENS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33072"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3436209c75919a867d0bd30a851ce4ab2319b87c", "fields": {"nom_de_la_commune": "BROUQUEYRAN", "libell_d_acheminement": "BROUQUEYRAN", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33074"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3d40419e72c301d53da02e4afdfeecd5326f8a", "fields": {"nom_de_la_commune": "BRUGES", "libell_d_acheminement": "BRUGES", "code_postal": "33520", "coordonnees_gps": [44.8889664062, -0.600701691049], "code_commune_insee": "33075"}, "geometry": {"type": "Point", "coordinates": [-0.600701691049, 44.8889664062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d9511aa384bced2c7df877d67d5d97abb63298", "fields": {"nom_de_la_commune": "CADARSAC", "libell_d_acheminement": "CADARSAC", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33079"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476a823f1cbba6f74fef593a2d398076bb5e8b1e", "fields": {"nom_de_la_commune": "CAMIAC ET ST DENIS", "libell_d_acheminement": "CAMIAC ET ST DENIS", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33086"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41c3e5767838f15663e586393f045cabbf4e5d4", "fields": {"nom_de_la_commune": "CANTENAC", "libell_d_acheminement": "CANTENAC", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33091"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b10bd5a62c9edeb5a85027964b008cd79357588", "fields": {"nom_de_la_commune": "CAPTIEUX", "libell_d_acheminement": "CAPTIEUX", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33095"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ec197444f1b94045840b786862b98552cd7764", "fields": {"nom_de_la_commune": "CARIGNAN DE BORDEAUX", "libell_d_acheminement": "CARIGNAN DE BORDEAUX", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33099"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63e2494a633d46370b7320652206523a88f8fee", "fields": {"nom_de_la_commune": "CASTELNAU DE MEDOC", "libell_d_acheminement": "CASTELNAU DE MEDOC", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33104"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17939732ba91772ea059efde37b9449ab34add0", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33112"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bad7ddbab84f4f16949c11854164f17dcbae799", "fields": {"nom_de_la_commune": "CAZAUGITAT", "libell_d_acheminement": "CAZAUGITAT", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33117"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0884bb5d1ec24608dc764e86fb5fbf60e586c98", "fields": {"nom_de_la_commune": "CENON", "libell_d_acheminement": "CENON", "code_postal": "33150", "coordonnees_gps": [44.8547270837, -0.521285030715], "code_commune_insee": "33119"}, "geometry": {"type": "Point", "coordinates": [-0.521285030715, 44.8547270837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d2fa857cd5fa74270acd033109d874c1f5e733", "fields": {"nom_de_la_commune": "CESSAC", "libell_d_acheminement": "CESSAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33121"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7145ab72e1a5427b79a58eacf09cade46a0b8830", "fields": {"nom_de_la_commune": "CESTAS", "libell_d_acheminement": "CESTAS", "code_postal": "33610", "coordonnees_gps": [44.7278908774, -0.719193509806], "code_commune_insee": "33122"}, "geometry": {"type": "Point", "coordinates": [-0.719193509806, 44.7278908774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1178383a5b85bbdef9652605548b0d7df90834", "fields": {"nom_de_la_commune": "CIVRAC DE BLAYE", "libell_d_acheminement": "CIVRAC DE BLAYE", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33126"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f68d3cfc3f667dbcb966fd5d012c710697339ab", "fields": {"nom_de_la_commune": "CLEYRAC", "libell_d_acheminement": "CLEYRAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33129"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235495d2b92fd2fb009264583495914afad868f6", "fields": {"nom_de_la_commune": "COURPIAC", "libell_d_acheminement": "COURPIAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33135"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc160aa03bb7094e4cc8ac628fc7b15737e57645", "fields": {"nom_de_la_commune": "CUDOS", "libell_d_acheminement": "CUDOS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33144"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5811231578d1b36dd6789282cee14d3a544d9784", "fields": {"nom_de_la_commune": "DAIGNAC", "libell_d_acheminement": "DAIGNAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33147"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06716f5ff497bd1cad90418f32aee67d0d69d37a", "fields": {"nom_de_la_commune": "ESCOUSSANS", "libell_d_acheminement": "ESCOUSSANS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33156"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253d32341985f16ad57ea950165f44a7caa1c99e", "fields": {"nom_de_la_commune": "EYRANS", "libell_d_acheminement": "EYRANS", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33161"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b650703c5b1bfc6e19d99d24e13a6de395dc6bbc", "fields": {"nom_de_la_commune": "FOSSES ET BALEYSSAC", "libell_d_acheminement": "FOSSES ET BALEYSSAC", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33171"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c233a310ee1d34cfc9aeb5b3e07a581fedf4237b", "fields": {"nom_de_la_commune": "GARDEGAN ET TOURTIRAC", "libell_d_acheminement": "GARDEGAN ET TOURTIRAC", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33181"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a725f43551debd7c79779f4c932c5da26967805", "fields": {"nom_de_la_commune": "GAURIAC", "libell_d_acheminement": "GAURIAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33182"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199cd2a4ff10f1da5a704d4cc20d646969b6f7f7", "fields": {"nom_de_la_commune": "GENERAC", "libell_d_acheminement": "GENERAC", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33184"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2347cc6dffa21d520948cd7a23e100c957bf6b2", "fields": {"nom_de_la_commune": "GISCOS", "libell_d_acheminement": "GISCOS", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33188"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1ddbc31378497a46f812e4e2d14ec5ce3d900d", "fields": {"nom_de_la_commune": "GORNAC", "libell_d_acheminement": "GORNAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33189"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed66d0ab25e7c0cd013e2cf0ee0ca784be0a8d74", "fields": {"nom_de_la_commune": "GRADIGNAN", "libell_d_acheminement": "GRADIGNAN", "code_postal": "33170", "coordonnees_gps": [44.770757337, -0.616500801555], "code_commune_insee": "33192"}, "geometry": {"type": "Point", "coordinates": [-0.616500801555, 44.770757337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66996b504be782b996fb7e34a04993eb8c9d896d", "fields": {"nom_de_la_commune": "GUILLOS", "libell_d_acheminement": "GUILLOS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33197"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb17ee031de0fb8b5f0c7e776eec514d226fdb4", "fields": {"nom_de_la_commune": "LABESCAU", "libell_d_acheminement": "LABESCAU", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33212"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f48d3cfc63d560c563c78efca09ce67440ee86", "fields": {"nom_de_la_commune": "LADAUX", "libell_d_acheminement": "LADAUX", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33215"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7f455fec3ce02e957abafa044b4981d415fd10", "fields": {"nom_de_la_commune": "AUBIGNY AUX KAISNES", "libell_d_acheminement": "AUBIGNY AUX KAISNES", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02032"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14214fa4afcdc1b635e78d2556b8e4661cb82a8b", "fields": {"nom_de_la_commune": "AUBENCHEUL AUX BOIS", "libell_d_acheminement": "AUBENCHEUL AUX BOIS", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02030"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408b5bc51665630cc9015a9f47aa23b305c3abdc", "fields": {"nom_de_la_commune": "ARCHON", "libell_d_acheminement": "ARCHON", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02021"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52baf56f20431c4724fe70d4394053151a8fcd8e", "fields": {"nom_de_la_commune": "AUGY", "libell_d_acheminement": "AUGY", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02036"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1147aa913d906b13537199519edaa193d7295653", "fields": {"code_postal": "01800", "code_commune_insee": "01450", "libell_d_acheminement": "VILLIEU LOYES MOLLON", "ligne_5": "MOLLON", "nom_de_la_commune": "VILLIEU LOYES MOLLON", "coordonnees_gps": [45.8984701804, 5.16340257624]}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c7e1e38a6e16270aca7e7e32a7628400486aaf", "fields": {"nom_de_la_commune": "VIRIEU LE GRAND", "libell_d_acheminement": "VIRIEU LE GRAND", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01452"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126e0e1c7cf86a42e0030649e6e4c160a18c2e6a", "fields": {"nom_de_la_commune": "VILLEREVERSURE", "libell_d_acheminement": "VILLEREVERSURE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01447"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a7cf5d8e6aa265c9bc57669e16de5180e00dd5", "fields": {"nom_de_la_commune": "AMIGNY ROUY", "libell_d_acheminement": "AMIGNY ROUY", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02014"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8047874e3607f8679557a52928e021904bcf5b", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01446"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3eb31ba9083cb91581b9f9fcb8bdb9099b3763", "fields": {"nom_de_la_commune": "VESCOURS", "libell_d_acheminement": "VESCOURS", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01437"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a365fbf35650be4d2fa4a6b36b1ab8b0d4ee0c83", "fields": {"nom_de_la_commune": "VESANCY", "libell_d_acheminement": "VESANCY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01436"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3289845b3c639d1f246ac9d2c855d4d7b0f8c056", "fields": {"nom_de_la_commune": "VONNAS", "libell_d_acheminement": "VONNAS", "code_postal": "01540", "coordonnees_gps": [46.2212986861, 4.98198011208], "code_commune_insee": "01457"}, "geometry": {"type": "Point", "coordinates": [4.98198011208, 46.2212986861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "107bfe3a7d4c7a797814062824ed10cb3ab76f72", "fields": {"nom_de_la_commune": "VIEU", "libell_d_acheminement": "VIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01442"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf2366088abe455ff5374fd50115a5669560c49", "fields": {"nom_de_la_commune": "ACY", "libell_d_acheminement": "ACY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02003"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86918f1f9eb35f26d0d8a90e7754dd098334b4f2", "fields": {"code_postal": "01370", "code_commune_insee": "01426", "libell_d_acheminement": "VAL REVERMONT", "ligne_5": "PRESSIAT", "nom_de_la_commune": "VAL REVERMONT", "coordonnees_gps": [46.2853749129, 5.32614321781]}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fddc39a11467a677b2d701886b6d450dd32bd618", "fields": {"code_postal": "01260", "code_commune_insee": "01414", "libell_d_acheminement": "SUTRIEU", "ligne_5": "CHARANCIN", "nom_de_la_commune": "SUTRIEU", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829896cbb9a44e055a4ef3b674806c966ef81d35", "fields": {"nom_de_la_commune": "VAUX EN BUGEY", "libell_d_acheminement": "VAUX EN BUGEY", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01431"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56648a0d22c98f397d7cb290da5c30671a8f9cc7", "fields": {"nom_de_la_commune": "LA TRANCLIERE", "libell_d_acheminement": "LA TRANCLIERE", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01425"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18446756fffd775f27da01d42be5832651212b14", "fields": {"nom_de_la_commune": "VERSAILLEUX", "libell_d_acheminement": "VERSAILLEUX", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01434"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57f78251029929ce9d429381ca3ae7b04a0198e", "fields": {"nom_de_la_commune": "TALISSIEU", "libell_d_acheminement": "TALISSIEU", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01415"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b766fbab1cad7b7bd2458ab5586ab854947e8e5c", "fields": {"nom_de_la_commune": "TOUSSIEUX", "libell_d_acheminement": "TOUSSIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01423"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bfacef941a37ba7db1d39d3f9848e1702b4796a", "fields": {"nom_de_la_commune": "TREVOUX", "libell_d_acheminement": "TREVOUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01427"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffc514deece5654fb832536720bc6a749424ae3", "fields": {"nom_de_la_commune": "VALEINS", "libell_d_acheminement": "VALEINS", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01428"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82d546326069df8602babdc581f81d3a7375caf", "fields": {"nom_de_la_commune": "THOIRY", "libell_d_acheminement": "THOIRY", "code_postal": "01710", "coordonnees_gps": [46.243919719, 5.96461682999], "code_commune_insee": "01419"}, "geometry": {"type": "Point", "coordinates": [5.96461682999, 46.243919719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79eab25c7be69f533116e3c76da4ebe9fc004bf", "fields": {"nom_de_la_commune": "ST ETIENNE SUR REYSSOUZE", "libell_d_acheminement": "ST ETIENNE SUR REYSSOUZE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01352"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9927902a6ba16849dd48c65bf67b7f42858e7d1", "fields": {"nom_de_la_commune": "ST ANDRE LE BOUCHOUX", "libell_d_acheminement": "ST ANDRE LE BOUCHOUX", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01335"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8abb49a5b8711bc62d691a394d7a337947c590b", "fields": {"nom_de_la_commune": "ST MARTIN LE CHATEL", "libell_d_acheminement": "ST MARTIN LE CHATEL", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01375"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e092f25d0c896d6dce162f3eeee475bf7c4a31da", "fields": {"nom_de_la_commune": "ST MARTIN DU MONT", "libell_d_acheminement": "ST MARTIN DU MONT", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01374"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df667fec817f10e4408d494f56a70870409fa11", "fields": {"nom_de_la_commune": "ST JEAN LE VIEUX", "libell_d_acheminement": "ST JEAN LE VIEUX", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01363"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23dd047948174644a3bdb0218449429e49f1de9", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01387"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5151ef6beaf5a3603f8671ac2889c9983e75aa9", "fields": {"nom_de_la_commune": "ROSSILLON", "libell_d_acheminement": "ROSSILLON", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01329"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cc2d841b1c617d8e69547fc54fd965aabb0f0f", "fields": {"nom_de_la_commune": "SAMOGNAT", "libell_d_acheminement": "SAMOGNAT", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01392"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f2dbe48d4a808bb72cc1973a30ea8a50ac4a3", "fields": {"nom_de_la_commune": "SANDRANS", "libell_d_acheminement": "SANDRANS", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01393"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f33292f9a011ab79afdd8e1edd531105eb6208f", "fields": {"nom_de_la_commune": "SALAVRE", "libell_d_acheminement": "SALAVRE", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01391"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7b3ab644c9672b9790337ec3fecd3ac35c427e", "fields": {"code_postal": "01130", "code_commune_insee": "01204", "libell_d_acheminement": "LE POIZAT LALLEYRIAT", "ligne_5": "LE POIZAT", "nom_de_la_commune": "LE POIZAT LALLEYRIAT", "coordonnees_gps": [46.1948352393, 5.7148151411]}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bba9e3b3f3a45ad060df70f681c068c7cb71a6b", "fields": {"code_postal": "01700", "code_commune_insee": "01249", "libell_d_acheminement": "MIRIBEL", "ligne_5": "LE MAS RILLIER", "nom_de_la_commune": "MIRIBEL", "coordonnees_gps": [45.8388521429, 4.95806179291]}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16b209a0edc580eb8ca18a50459df73fab96d0f", "fields": {"nom_de_la_commune": "LE POIZAT LALLEYRIAT", "libell_d_acheminement": "LE POIZAT LALLEYRIAT", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01204"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aacb05fdd8d6d3174142da4542212137191bb4c", "fields": {"nom_de_la_commune": "MASSIGNIEU DE RIVES", "libell_d_acheminement": "MASSIGNIEU DE RIVES", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01239"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311ec43e6eb69b9392735f8cbac10e77e4a33c53", "fields": {"nom_de_la_commune": "LOMPNIEU", "libell_d_acheminement": "LOMPNIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01221"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3c7ebfef15d8247f00e6dfd348ba1d80a17895", "fields": {"nom_de_la_commune": "MASSIEUX", "libell_d_acheminement": "MASSIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01238"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc5596eddc34f00de2f399e751bf5a452d0f98f", "fields": {"nom_de_la_commune": "MARCHAMP", "libell_d_acheminement": "MARCHAMP", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01233"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "301052f8dabfd10df3bae8d086a6609bf41dc7b2", "fields": {"nom_de_la_commune": "LEYMENT", "libell_d_acheminement": "LEYMENT", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01213"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc16cb248b29b49500fa2d583313a07a8316655", "fields": {"nom_de_la_commune": "MANZIAT", "libell_d_acheminement": "MANZIAT", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01231"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6fa171be1d430a68118252ab0e9869b71ae608", "fields": {"nom_de_la_commune": "LOMPNAS", "libell_d_acheminement": "LOMPNAS", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01219"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce44e00299883bbd5b80f633fda425e766bab75c", "fields": {"nom_de_la_commune": "PEYZIEUX SUR SAONE", "libell_d_acheminement": "PEYZIEUX SUR SAONE", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01295"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f02cded5bb7f7bd43b561a484cc0dcb025df3205", "fields": {"nom_de_la_commune": "PONT DE VEYLE", "libell_d_acheminement": "PONT DE VEYLE", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01306"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55eca30fd54d9243106ae48d40a875ae58afa3ce", "fields": {"nom_de_la_commune": "PIRAJOUX", "libell_d_acheminement": "PIRAJOUX", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01296"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386f89b6ca3a4574c464628054a265d1a9368557", "fields": {"nom_de_la_commune": "REVONNAS", "libell_d_acheminement": "REVONNAS", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01321"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80c6a5584b4da2cd890fbedb8cb3d8d854b2ef2", "fields": {"nom_de_la_commune": "POLLIAT", "libell_d_acheminement": "POLLIAT", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01301"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c1e315abaed4a1507a7c2d32348733c696788e0", "fields": {"nom_de_la_commune": "POLLIEU", "libell_d_acheminement": "POLLIEU", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01302"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33d9038bc40923e3fda091cec8136eda4d37240", "fields": {"nom_de_la_commune": "PUGIEU", "libell_d_acheminement": "PUGIEU", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01316"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4422eb96ceb5e9923e4716d84d06e01e45c57ec", "fields": {"nom_de_la_commune": "ROMANS", "libell_d_acheminement": "ROMANS", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01328"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbe3f87c9b063fe867acd0d7d189b4c49eb3482", "fields": {"nom_de_la_commune": "PLAGNE", "libell_d_acheminement": "PLAGNE", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01298"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0eadc27227ec4de5011e7f8d8098a66f6e34b13", "fields": {"nom_de_la_commune": "PORT", "libell_d_acheminement": "PORT", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01307"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c3d43ef5d0a613113fd3f48b9462c46275aa4a4", "fields": {"nom_de_la_commune": "BARZY SUR MARNE", "libell_d_acheminement": "BARZY SUR MARNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02051"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10eb9379751cdeaa317e6bc5999c3807add3a68", "fields": {"nom_de_la_commune": "BARENTON BUGNY", "libell_d_acheminement": "BARENTON BUGNY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02046"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e6aeb48c5936b9e57cfcee7e81d13ea0899976", "fields": {"nom_de_la_commune": "LES AUTELS", "libell_d_acheminement": "LES AUTELS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02038"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ded77358eeaaa1ce34c7c1aa3569ad714337d91", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02043"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8c906b9ecba558e5deb169b6f7f0070e1a43a7", "fields": {"nom_de_la_commune": "CUIRY LES CHAUDARDES", "libell_d_acheminement": "CUIRY LES CHAUDARDES", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02250"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58e9aa9a587e9e7a817a458ff41355a667b8455", "fields": {"nom_de_la_commune": "ETAVES ET BOCQUIAUX", "libell_d_acheminement": "ETAVES ET BOCQUIAUX", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02293"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22d5958d37b6e7aa6d66b61acbd06b6efb673e1", "fields": {"nom_de_la_commune": "LA FERTE CHEVRESIS", "libell_d_acheminement": "LA FERTE CHEVRESIS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02306"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "634320efbbeba7aa6ed15d6e4de317b7a105427a", "fields": {"nom_de_la_commune": "ETREAUPONT", "libell_d_acheminement": "ETREAUPONT", "code_postal": "02580", "coordonnees_gps": [49.9024615408, 3.89676959472], "code_commune_insee": "02295"}, "geometry": {"type": "Point", "coordinates": [3.89676959472, 49.9024615408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff590292068f27c644d0481f1f40a68163be622", "fields": {"nom_de_la_commune": "DORENGT", "libell_d_acheminement": "DORENGT", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02269"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcab3292cb542f0e9b94889f90f7c4b514526bb4", "fields": {"nom_de_la_commune": "CROUY", "libell_d_acheminement": "CROUY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02243"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "077b9b6614826ef8a51d6833e76634d92eb83081", "fields": {"nom_de_la_commune": "CUTRY", "libell_d_acheminement": "CUTRY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02254"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9935bf562ea76ca4dbd82aa9db5519f8bb1eea", "fields": {"nom_de_la_commune": "EPPES", "libell_d_acheminement": "EPPES", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02282"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a531d50bd3bcd624d33006f41065b1fb784a6c", "fields": {"nom_de_la_commune": "ERLON", "libell_d_acheminement": "ERLON", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02283"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c577102298543dc8dac4b6bbb279851f36b874", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02376"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c13f19b7ed11ceb47f522609e565c64d8a12d71", "fields": {"nom_de_la_commune": "GRISOLLES", "libell_d_acheminement": "GRISOLLES", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02356"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0ca1dfa7eb7ec69b58c68f950b8863bd4e5a55f", "fields": {"nom_de_la_commune": "HARCIGNY", "libell_d_acheminement": "HARCIGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02369"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2febaf7b8129268a11ff993c62d587213fbe8f85", "fields": {"nom_de_la_commune": "HARAMONT", "libell_d_acheminement": "HARAMONT", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02368"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86000f1736f7a2cc872e4fe8c72e1c9ec89a50d8", "fields": {"nom_de_la_commune": "GERMAINE", "libell_d_acheminement": "GERMAINE", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02343"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7778275f20e2894527d1995e18a3a93758c349a", "fields": {"nom_de_la_commune": "GRONARD", "libell_d_acheminement": "GRONARD", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02357"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f570e4b604faacd4110939a12e750ef4a86c558", "fields": {"nom_de_la_commune": "HARLY", "libell_d_acheminement": "HARLY", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02371"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc227248e2ea50a11836eff9875d6c29b981be2", "fields": {"nom_de_la_commune": "GERCY", "libell_d_acheminement": "GERCY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02341"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3bf7b68cbbfd1e5cdc94b486070e53dac7ebb0", "fields": {"nom_de_la_commune": "GOUY", "libell_d_acheminement": "GOUY", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02352"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de61a4a4517b23d94d387af408da2349e1e86583", "fields": {"nom_de_la_commune": "LA NEUVILLE LES DORENGT", "libell_d_acheminement": "LA NEUVILLE LES DORENGT", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02548"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "614664848f4c3e9bdb2d2d2fc507e48c2fa674ad", "fields": {"nom_de_la_commune": "NEUVILLE SUR AILETTE", "libell_d_acheminement": "NEUVILLE SUR AILETTE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02550"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed9a2d4e5c147326199008278cdfd4604871ac11", "fields": {"nom_de_la_commune": "NAMPTEUIL SOUS MURET", "libell_d_acheminement": "NAMPTEUIL SOUS MURET", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02536"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ac1273baed18b91c7e2d47bd0242bafe773372", "fields": {"nom_de_la_commune": "NESLES LA MONTAGNE", "libell_d_acheminement": "NESLES LA MONTAGNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02540"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776196b6ad8dc1e5184addc45c3b699273b6d473", "fields": {"nom_de_la_commune": "MONCEAU LES LEUPS", "libell_d_acheminement": "MONCEAU LES LEUPS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02492"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78254e8f851322ef521ed3a0bc045174c16196cd", "fields": {"nom_de_la_commune": "NEUVE MAISON", "libell_d_acheminement": "NEUVE MAISON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02544"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d37bc8efe7ed666b4099c6267afc38152c16be4", "fields": {"nom_de_la_commune": "MOULINS", "libell_d_acheminement": "MOULINS", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02530"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c654af96dd673b87e1a9d343f90f58d8a04f92", "fields": {"nom_de_la_commune": "MOLAIN", "libell_d_acheminement": "MOLAIN", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02488"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f5bf36f4f17e887e222ac1915d77b5bb751ca5", "fields": {"code_postal": "04000", "code_commune_insee": "04070", "libell_d_acheminement": "DIGNE LES BAINS", "ligne_5": "LES DOURBES", "nom_de_la_commune": "DIGNE LES BAINS", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfc890703230039e5ea042e25eedab78b32187e", "fields": {"code_postal": "04000", "code_commune_insee": "04097", "libell_d_acheminement": "LA JAVIE", "ligne_5": "ESCLANGON", "nom_de_la_commune": "LA JAVIE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edabdf13c19f43aa6b86bbd8816b46bf2f6df5a0", "fields": {"nom_de_la_commune": "NOYERS SUR JABRON", "libell_d_acheminement": "NOYERS SUR JABRON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04139"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da7c491387620ad106bf901074c4bfa0e2ca17e", "fields": {"nom_de_la_commune": "LA MURE ARGENS", "libell_d_acheminement": "LA MURE ARGENS", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04136"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8619fffbd8bd2a28b13bce4ea4ceb7379eca9922", "fields": {"nom_de_la_commune": "JAUSIERS", "libell_d_acheminement": "JAUSIERS", "code_postal": "04850", "coordonnees_gps": [44.3877674828, 6.78607548219], "code_commune_insee": "04096"}, "geometry": {"type": "Point", "coordinates": [6.78607548219, 44.3877674828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5e19d7e6cb333143933473c30e1d7e0760da03", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "04600", "coordonnees_gps": [44.0744156003, 5.97645847949], "code_commune_insee": "04127"}, "geometry": {"type": "Point", "coordinates": [5.97645847949, 44.0744156003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5265bf2052eee42c347909851eb57dd703e63c6e", "fields": {"nom_de_la_commune": "CLUMANC", "libell_d_acheminement": "CLUMANC", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04059"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da02c34df93979cd5bd31607ae44dd844048f159", "fields": {"nom_de_la_commune": "DAUPHIN", "libell_d_acheminement": "DAUPHIN", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04068"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1c2244c93f493e2b42ad74f22b13676b457ca3", "fields": {"nom_de_la_commune": "ORAISON", "libell_d_acheminement": "ORAISON", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04143"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd4c8ad79f3047deb3a961ec7fb592539e2518a", "fields": {"code_postal": "02540", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "LA CELLE SOUS MONTMIRAIL", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9128673746, 3.4403848461]}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f4e36d62904da47351be9d0e0f78a7c68aa61ab", "fields": {"code_postal": "02330", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "ARTONGES", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74477ac6117401b587287b2aebb00af1329c275b", "fields": {"nom_de_la_commune": "MESBRECOURT RICHECOURT", "libell_d_acheminement": "MESBRECOURT RICHECOURT", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02480"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce3e176a02a2b84554d7c37e27b7ed1186509f8", "fields": {"nom_de_la_commune": "MISSY SUR AISNE", "libell_d_acheminement": "MISSY SUR AISNE", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02487"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fec213b87f6978272f0e5ae0a3fa631cc8af914", "fields": {"nom_de_la_commune": "MEZY MOULINS", "libell_d_acheminement": "MEZY MOULINS", "code_postal": "02650", "coordonnees_gps": [49.0487416682, 3.50137456467], "code_commune_insee": "02484"}, "geometry": {"type": "Point", "coordinates": [3.50137456467, 49.0487416682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd251549a505762a6fd3360e89b42849992499b", "fields": {"nom_de_la_commune": "MARTIGNY", "libell_d_acheminement": "MARTIGNY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02470"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e769facf60bcec5d426eb82d9994c14ee0b982", "fields": {"nom_de_la_commune": "LISLET", "libell_d_acheminement": "LISLET", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02433"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4936addad75774e77757fe0c1b0a713ca29a5ee", "fields": {"nom_de_la_commune": "LALEU", "libell_d_acheminement": "LALEU", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61215"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c547dd844b4f87b92b58c5353c23a00400391c55", "fields": {"nom_de_la_commune": "LANDIGOU", "libell_d_acheminement": "LANDIGOU", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61221"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e98b72e344abe6e2ef5956245091c346594eea", "fields": {"nom_de_la_commune": "LIGNERES", "libell_d_acheminement": "LIGNERES", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61225"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d25c845e4be7848e1e1b2cfb60dc35a11ca78e1", "fields": {"nom_de_la_commune": "LIGNOU", "libell_d_acheminement": "LIGNOU", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61227"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9dfb81d63bbed14c0d5bd5fd6d805256d5c5b4", "fields": {"nom_de_la_commune": "LONGNY LES VILLAGES", "libell_d_acheminement": "LONGNY LES VILLAGES", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61230"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2de1227cd1e9efceebe2064d73c70cf821430c1", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "NEUILLY SUR EURE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "277c298856311316efb19698ccf91bebf6d7677b", "fields": {"nom_de_la_commune": "LONGUENOE", "libell_d_acheminement": "LONGUENOE", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61231"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28320d618d8003a5a2d629b4b285d8dac669c038", "fields": {"nom_de_la_commune": "LONLAY LE TESSON", "libell_d_acheminement": "LONLAY LE TESSON", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61233"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ec677a17c6c2e65932293e09d5e116c3c06d1a", "fields": {"nom_de_la_commune": "LA MADELEINE BOUVET", "libell_d_acheminement": "LA MADELEINE BOUVET", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61241"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e1f3b318a953258f68d95012da7aaeb00f4d4d", "fields": {"nom_de_la_commune": "MAHERU", "libell_d_acheminement": "MAHERU", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61244"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2264203e2da0dade43cdec47ed035b64c6c91e", "fields": {"nom_de_la_commune": "MANTILLY", "libell_d_acheminement": "MANTILLY", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61248"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a4bc23e2c86e595b439d457bde04d9f28e259c", "fields": {"nom_de_la_commune": "MARDILLY", "libell_d_acheminement": "MARDILLY", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61252"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6044bea4de70d3b17eb1f6d2a4163c516d7fb791", "fields": {"nom_de_la_commune": "LE MENIL BERARD", "libell_d_acheminement": "LE MENIL BERARD", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61259"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440c916cd9280f68a1bdde45f35323afb3548d51", "fields": {"nom_de_la_commune": "MENIL HERMEI", "libell_d_acheminement": "MENIL HERMEI", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61267"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6313c71c5fc3931bb029431d69ad35904164042b", "fields": {"nom_de_la_commune": "MENIL HUBERT SUR ORNE", "libell_d_acheminement": "MENIL HUBERT SUR ORNE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61269"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94be80bc09251c1de06e07b5c5dd6b0efbf23ab5", "fields": {"nom_de_la_commune": "MERRI", "libell_d_acheminement": "MERRI", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61276"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13a61739d5552a79308b9fd3ff36793ea2a2239", "fields": {"nom_de_la_commune": "MESSEI", "libell_d_acheminement": "MESSEI", "code_postal": "61440", "coordonnees_gps": [48.7041117126, -0.523576215633], "code_commune_insee": "61278"}, "geometry": {"type": "Point", "coordinates": [-0.523576215633, 48.7041117126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ce360d513eff505a37784df31c2aac1d98123e", "fields": {"nom_de_la_commune": "MONCY", "libell_d_acheminement": "MONCY", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61281"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a6800c6c9ba7965ac230dcbb2fb71a198f24f3", "fields": {"nom_de_la_commune": "MONTREUIL LA CAMBE", "libell_d_acheminement": "MONTREUIL LA CAMBE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61291"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96487d7106bc353b60d8ab03f01e9bf6c5a274ef", "fields": {"nom_de_la_commune": "MORTAGNE AU PERCHE", "libell_d_acheminement": "MORTAGNE AU PERCHE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61293"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "837543b9f1a1ca74811df7904367e96167870c51", "fields": {"nom_de_la_commune": "LA MOTTE FOUQUET", "libell_d_acheminement": "LA MOTTE FOUQUET", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61295"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1097e18b185528ffa1daba63733ff168394fe00b", "fields": {"nom_de_la_commune": "NEAUPHE SOUS ESSAI", "libell_d_acheminement": "NEAUPHE SOUS ESSAI", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61301"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a14fd147ec49aaa5f24780e9f8d837ee4846d5a", "fields": {"nom_de_la_commune": "NECY", "libell_d_acheminement": "NECY", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61303"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1750b0172c2684a8e73f4321de23068a146071e7", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "DANCE", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59072c118901f80bb44e88069c2f070843dadaaf", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "NOCE", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b87dc446127971f9997c36c6898dfb8891ef7eb", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "ST JEAN DE LA FORET", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb6937baebd51824f7b53ee8a6d47761340e23d", "fields": {"nom_de_la_commune": "NONANT LE PIN", "libell_d_acheminement": "NONANT LE PIN", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61310"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796b94716ffd599e617b9c9ecc64b3282b754013", "fields": {"nom_de_la_commune": "OCCAGNES", "libell_d_acheminement": "OCCAGNES", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61314"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f418942ac3b1646e7ed9ba7e025d8b319cc7daa", "fields": {"nom_de_la_commune": "OMMOY", "libell_d_acheminement": "OMMOY", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61316"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6425e84d68cd55bf0c011e34ac28e04d670612", "fields": {"nom_de_la_commune": "ORIGNY LE BUTIN", "libell_d_acheminement": "ORIGNY LE BUTIN", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61318"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25450c1b8b28c8ade8ec2a68c393039d8e8df28f", "fields": {"nom_de_la_commune": "ORIGNY LE ROUX", "libell_d_acheminement": "ORIGNY LE ROUX", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61319"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b404fd5aba54ff83c69b0429e1a3cbafb36e6c", "fields": {"nom_de_la_commune": "PASSAIS VILLAGES", "libell_d_acheminement": "PASSAIS VILLAGES", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61324"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8360441be95298f0a23cee3a57bd195cdfce6a60", "fields": {"code_postal": "61350", "code_commune_insee": "61324", "libell_d_acheminement": "PASSAIS VILLAGES", "ligne_5": "L EPINAY LE COMTE", "nom_de_la_commune": "PASSAIS VILLAGES", "coordonnees_gps": [48.5245489295, -0.754028854445]}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80c1723185b41b79dc62ca5f2d3409be313c413", "fields": {"code_postal": "61350", "code_commune_insee": "61324", "libell_d_acheminement": "PASSAIS VILLAGES", "ligne_5": "ST SIMEON", "nom_de_la_commune": "PASSAIS VILLAGES", "coordonnees_gps": [48.5245489295, -0.754028854445]}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9120183c5d85218087eac68a9f904c8f70a7d7", "fields": {"nom_de_la_commune": "PERROU", "libell_d_acheminement": "PERROU", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61326"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3081817eaa85a71ce86494e03be7091f6f805331", "fields": {"nom_de_la_commune": "PERVENCHERES", "libell_d_acheminement": "PERVENCHERES", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61327"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b7fe7e96e3120ec004ff15ba83bb7c9368cbcf", "fields": {"nom_de_la_commune": "LE PLANTIS", "libell_d_acheminement": "LE PLANTIS", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61331"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92456923efa7569e910ac98a8d4b40344b08938", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "LA FORET AUVRAY", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128af1296625ac3f910713f3cc869d11edf18c6e", "fields": {"nom_de_la_commune": "REMALARD EN PERCHE", "libell_d_acheminement": "REMALARD EN PERCHE", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61345"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db4cf54b668c9ae411716e4955d0922b17d879e7", "fields": {"code_postal": "61110", "code_commune_insee": "61345", "libell_d_acheminement": "REMALARD EN PERCHE", "ligne_5": "BELLOU SUR HUISNE", "nom_de_la_commune": "REMALARD EN PERCHE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793e449e657fb5401ce9b1f4a1913c3879ad9c98", "fields": {"nom_de_la_commune": "LE RENOUARD", "libell_d_acheminement": "LE RENOUARD", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61346"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42863b2ef80267b61b4825459458ca9b07b7ae07", "fields": {"nom_de_la_commune": "ST ANDRE DE MESSEI", "libell_d_acheminement": "ST ANDRE DE MESSEI", "code_postal": "61440", "coordonnees_gps": [48.7041117126, -0.523576215633], "code_commune_insee": "61362"}, "geometry": {"type": "Point", "coordinates": [-0.523576215633, 48.7041117126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b609c80d1ba172bba2dcd0026d2c594150c27e", "fields": {"nom_de_la_commune": "ST AUBIN D APPENAI", "libell_d_acheminement": "ST AUBIN D APPENAI", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61365"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4924a70b6fb103a6dd9116dc83e3fcab83bfe57", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DE CHAULIEU", "libell_d_acheminement": "ST CHRISTOPHE DE CHAULIEU", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61374"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06d5a72af2547ff9b9b96f1a98c80473d61bbd3", "fields": {"nom_de_la_commune": "ST CLAIR DE HALOUZE", "libell_d_acheminement": "ST CLAIR DE HALOUZE", "code_postal": "61490", "coordonnees_gps": [48.6891046892, -0.625914458568], "code_commune_insee": "61376"}, "geometry": {"type": "Point", "coordinates": [-0.625914458568, 48.6891046892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa79a799ead460954f5b1ffa95726d3c32af20d", "fields": {"nom_de_la_commune": "ST ELLIER LES BOIS", "libell_d_acheminement": "ST ELLIER LES BOIS", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61384"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383d30a8bfe56b0ebe04b75c8d616fea7493d921", "fields": {"nom_de_la_commune": "STE GAUBURGE STE COLOMBE", "libell_d_acheminement": "STE GAUBURGE STE COLOMBE", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61389"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae899a404d4390b6f9d61c0d41870ca8ce8f8602", "fields": {"nom_de_la_commune": "ST GEORGES D ANNEBECQ", "libell_d_acheminement": "ST GEORGES D ANNEBECQ", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61390"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e9bae1c71c9c135e7ca32481e950fb7d528cca", "fields": {"nom_de_la_commune": "ST GERMAIN D AUNAY", "libell_d_acheminement": "ST GERMAIN D AUNAY", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61392"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208362f846e54445769bd6cff6ad40d557846cd1", "fields": {"nom_de_la_commune": "ST GERMAIN DE MARTIGNY", "libell_d_acheminement": "ST GERMAIN DE MARTIGNY", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61396"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd333608c1a1899c92895ad624cbea125299c631", "fields": {"nom_de_la_commune": "ST HILAIRE SUR ERRE", "libell_d_acheminement": "ST HILAIRE SUR ERRE", "code_postal": "61340", "coordonnees_gps": [48.372155968, 0.719847889248], "code_commune_insee": "61405"}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bbc37175718efd1b5349c4a75657a5441fe9c9", "fields": {"nom_de_la_commune": "ST HILAIRE SUR RISLE", "libell_d_acheminement": "ST HILAIRE SUR RISLE", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61406"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca5650d9506b4cd55a48eeee0728a8184a62fd5", "fields": {"nom_de_la_commune": "ST LEGER SUR SARTHE", "libell_d_acheminement": "ST LEGER SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61415"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461d11a6663b647a2bd6d0589597216ff1729f31", "fields": {"nom_de_la_commune": "ST LEONARD DES PARCS", "libell_d_acheminement": "ST LEONARD DES PARCS", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61416"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b745205dbddde8428fbdea7a4ace6e558c486e5a", "fields": {"nom_de_la_commune": "STE MARIE LA ROBERT", "libell_d_acheminement": "STE MARIE LA ROBERT", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61420"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7675ae680457b5fdbbddc0e443100aeb67d536be", "fields": {"nom_de_la_commune": "ST MICHEL TUBOEUF", "libell_d_acheminement": "ST MICHEL TUBOEUF", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61432"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b6b755df98bfec51be0c491a7b6479f78f9195", "fields": {"nom_de_la_commune": "ST PIERRE LA RIVIERE", "libell_d_acheminement": "ST PIERRE LA RIVIERE", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61449"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8279df5e59fbca6948cc4d3c43f6539538b8f13f", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "LE THEIL", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6866722c79881d3ead23ef34e3d153f954e90391", "fields": {"code_postal": "61340", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "ST AGNAN SUR ERRE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631a7a0cbbd240493cd64f7b8153c2f277cbd7c8", "fields": {"nom_de_la_commune": "TOUQUETTES", "libell_d_acheminement": "TOUQUETTES", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61488"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca923b4a762c67bd5909b726952065aeaddd5ba0", "fields": {"nom_de_la_commune": "TOUROUVRE AU PERCHE", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61491"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bd5c20f0e9e1d623e0624a733f53441ce4e7c1", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "BRESOLETTES", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472554e4d787bfb2f6cab0d0ed76a41a7d97e55a", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "BUBERTRE", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db91301479fa1e8309e8f426b5a957da75c9fb09", "fields": {"nom_de_la_commune": "UROU ET CRENNES", "libell_d_acheminement": "UROU ET CRENNES", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61496"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a492a4c25622d1010bb2088abf975425b60dbe75", "fields": {"nom_de_la_commune": "VIEUX PONT", "libell_d_acheminement": "VIEUX PONT", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61503"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d649d8e6d4a26fea5574d911768404d34cdec7", "fields": {"nom_de_la_commune": "VILLEDIEU LES BAILLEUL", "libell_d_acheminement": "VILLEDIEU LES BAILLEUL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61505"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81155755112614546093bc506cb4ebb42bd63887", "fields": {"nom_de_la_commune": "ABLAIN ST NAZAIRE", "libell_d_acheminement": "ABLAIN ST NAZAIRE", "code_postal": "62153", "coordonnees_gps": [50.3936626748, 2.71627583927], "code_commune_insee": "62001"}, "geometry": {"type": "Point", "coordinates": [2.71627583927, 50.3936626748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0e3b29ca682c02b2644f79e0084dc38365632e", "fields": {"nom_de_la_commune": "ABLAINZEVELLE", "libell_d_acheminement": "ABLAINZEVELLE", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62002"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e797175046a42db3c8d95eb0b78d774f76c3ee", "fields": {"nom_de_la_commune": "ACHEVILLE", "libell_d_acheminement": "ACHEVILLE", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62003"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8fe6ff0480ca95ede6390296a84d9993f1e8fa", "fields": {"nom_de_la_commune": "ACHICOURT", "libell_d_acheminement": "ACHICOURT", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62004"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5898d5ef24f8086760dc474de3875ec103ee0683", "fields": {"nom_de_la_commune": "AIX EN ERGNY", "libell_d_acheminement": "AIX EN ERGNY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62017"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8c25f2157d4d609aac4f1ed152d1bbd81595c4", "fields": {"nom_de_la_commune": "ALETTE", "libell_d_acheminement": "ALETTE", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62021"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0db8b16fcf611b294a4bb772e037086c94c1dd", "fields": {"nom_de_la_commune": "AMBRICOURT", "libell_d_acheminement": "AMBRICOURT", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62026"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609e44d13f415e06fa073e5da719012c24c62837", "fields": {"nom_de_la_commune": "AMETTES", "libell_d_acheminement": "AMETTES", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62029"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03890915577b78778bc955ea0feb86f4deecda47", "fields": {"nom_de_la_commune": "AMPLIER", "libell_d_acheminement": "AMPLIER", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62030"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0543d21c6d396a5fbe9b9013b02b24890d27d17", "fields": {"nom_de_la_commune": "ANZIN ST AUBIN", "libell_d_acheminement": "ANZIN ST AUBIN", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62037"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70002447fc3f61fe1a6512fd5ee3e3ed84faf78", "fields": {"nom_de_la_commune": "ARQUES", "libell_d_acheminement": "ARQUES", "code_postal": "62510", "coordonnees_gps": [50.7408395038, 2.31945979843], "code_commune_insee": "62040"}, "geometry": {"type": "Point", "coordinates": [2.31945979843, 50.7408395038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2daeaef08b50dc81e1a636e79de95a919904ef41", "fields": {"nom_de_la_commune": "ATHIES", "libell_d_acheminement": "ATHIES", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62042"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401061d92065a70cad176c38d4225a2acf0fb1cb", "fields": {"nom_de_la_commune": "AUBIGNY EN ARTOIS", "libell_d_acheminement": "AUBIGNY EN ARTOIS", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62045"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ab72202854e3ebd4a9fb2205fe0adbe32aca0a", "fields": {"nom_de_la_commune": "AUBIN ST VAAST", "libell_d_acheminement": "AUBIN ST VAAST", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62046"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1166cb83a5d90f1554018150c32324be19fa427d", "fields": {"nom_de_la_commune": "AVESNES LE COMTE", "libell_d_acheminement": "AVESNES LE COMTE", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62063"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620d3cc798649709744799d20e71bbfa0b4c0ce0", "fields": {"nom_de_la_commune": "AVONDANCE", "libell_d_acheminement": "AVONDANCE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62066"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c9ce3aafe89249f95943e359e4108b8b8e1738", "fields": {"nom_de_la_commune": "AYETTE", "libell_d_acheminement": "AYETTE", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62068"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49efa9fa83cbdfe6d6d79aea5c9a27ddc9bc6173", "fields": {"nom_de_la_commune": "BAILLEUL AUX CORNAILLES", "libell_d_acheminement": "BAILLEUL AUX CORNAILLES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62070"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019c017f6e36dff31d7e235515e65d445f77488c", "fields": {"nom_de_la_commune": "BAILLEULMONT", "libell_d_acheminement": "BAILLEULMONT", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62072"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e73d3fb39e2ef925d7a18d7839bcd1af077e0a", "fields": {"nom_de_la_commune": "BAPAUME", "libell_d_acheminement": "BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62080"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc86478ae8f360421491bdb968fd7d2e7df1925", "fields": {"nom_de_la_commune": "BARALLE", "libell_d_acheminement": "BARALLE", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62081"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aef7ba5d49a972d1f0404f8cac679c82cf12b70", "fields": {"code_postal": "62158", "code_commune_insee": "62086", "libell_d_acheminement": "BAVINCOURT", "ligne_5": "L ARBRET", "nom_de_la_commune": "BAVINCOURT", "coordonnees_gps": [50.2103213159, 2.53947447725]}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469d03aae1c35bd470081bcfcea4d7a3480c31b0", "fields": {"nom_de_la_commune": "BEALENCOURT", "libell_d_acheminement": "BEALENCOURT", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62090"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae48c599d88cba7ccc78f88b58d10ad6761e365a", "fields": {"nom_de_la_commune": "BEAULENCOURT", "libell_d_acheminement": "BEAULENCOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62093"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002e415526c7079925b0da8398e3fce49a4d6522", "fields": {"nom_de_la_commune": "BEAUMETZ LES CAMBRAI", "libell_d_acheminement": "BEAUMETZ LES CAMBRAI", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62096"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "498a3558cec5239f474746230f2f5b9e59f3e675", "fields": {"nom_de_la_commune": "BEAUMETZ LES LOGES", "libell_d_acheminement": "BEAUMETZ LES LOGES", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62097"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c266c94e5db941af4f685f13cea0cea9dc1691", "fields": {"nom_de_la_commune": "BEAURAINS", "libell_d_acheminement": "BEAURAINS", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62099"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b996fdf68de98563587ef9ec6ab095759121320", "fields": {"nom_de_la_commune": "BEAUVOIS", "libell_d_acheminement": "BEAUVOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62101"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f117847e0b95400dac9ce67738da7526b582cdf2", "fields": {"nom_de_la_commune": "BEHAGNIES", "libell_d_acheminement": "BEHAGNIES", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62103"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988b00adb2b8bec980110b00ddb66991872d9696", "fields": {"nom_de_la_commune": "BELLE ET HOULLEFORT", "libell_d_acheminement": "BELLE ET HOULLEFORT", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62105"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a8b9713360dd8e3fc73dde9176c1e97dde2275", "fields": {"nom_de_la_commune": "BERLENCOURT LE CAUROY", "libell_d_acheminement": "BERLENCOURT LE CAUROY", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62111"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05b8478cbb8a1b964aa43404b5c8a07da0f9c76", "fields": {"nom_de_la_commune": "BERLES AU BOIS", "libell_d_acheminement": "BERLES AU BOIS", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62112"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3835a2dad674c1415625ae7661737e38f5f6d9cf", "fields": {"nom_de_la_commune": "BERLES MONCHEL", "libell_d_acheminement": "BERLES MONCHEL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62113"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26aef98b19d7d3288d060e63873ad0ca3e6045d", "fields": {"nom_de_la_commune": "BETHONSART", "libell_d_acheminement": "BETHONSART", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62118"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acab097d7ae9d07fe1e3f94fee28e6f168657f8", "fields": {"code_postal": "72610", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "ST RIGOMER DES BOIS", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3894746655, 0.168582736306]}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c6ade6f32c5eabed0ad9dd74ca929cde959d6a", "fields": {"nom_de_la_commune": "FRESNAY SUR SARTHE", "libell_d_acheminement": "FRESNAY SUR SARTHE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72138"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4953dc460efc0ed4d3fd90b57b8eb45a52e7457", "fields": {"nom_de_la_commune": "JOUE L ABBE", "libell_d_acheminement": "JOUE L ABBE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72150"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9db7f5a4010d0c5de5dee822aae8d42f374e89", "fields": {"nom_de_la_commune": "JUPILLES", "libell_d_acheminement": "JUPILLES", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72153"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65e4869a99f4f12966699998f4fc4f5bb414f82", "fields": {"nom_de_la_commune": "LAMNAY", "libell_d_acheminement": "LAMNAY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72156"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01dd02530a6a14a503d4a0d0f7613218d0983011", "fields": {"nom_de_la_commune": "LAVENAY", "libell_d_acheminement": "LAVENAY", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72159"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a77a28fd28c17021dd7824a53fe8709879c21b", "fields": {"nom_de_la_commune": "LAVERNAT", "libell_d_acheminement": "LAVERNAT", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72160"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f33682608bd6067b0eb4399c1da18f6b36e244", "fields": {"nom_de_la_commune": "LOUE", "libell_d_acheminement": "LOUE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72168"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85f4bdbb18e144c43ff9e519ea66e926de169be7", "fields": {"nom_de_la_commune": "LOUZES", "libell_d_acheminement": "LOUZES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72171"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d269e356d5e1ff069d0c1fa223908d7d0cc7a17", "fields": {"nom_de_la_commune": "LE LUART", "libell_d_acheminement": "LE LUART", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72172"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc177acf4e42053491171245b386d59f47fb86b", "fields": {"nom_de_la_commune": "LE LUDE", "libell_d_acheminement": "LE LUDE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72176"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7968bb6e1750488d93e9a53a9058a5cc289dd20", "fields": {"nom_de_la_commune": "MARCON", "libell_d_acheminement": "MARCON", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72183"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311bfbded144b4d2026cbdd05c504b69a4c6acff", "fields": {"nom_de_la_commune": "MARESCHE", "libell_d_acheminement": "MARESCHE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72186"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b120aa0199d71f851b3b71220c6116025fdc5f", "fields": {"nom_de_la_commune": "MAROLLES LES BRAULTS", "libell_d_acheminement": "MAROLLES LES BRAULTS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72189"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d18c7469e8486160e30cc7dd9c48f8c0bb1295", "fields": {"nom_de_la_commune": "MEZERAY", "libell_d_acheminement": "MEZERAY", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72195"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158923ed25435be2973a95fcab803786f2a2b022", "fields": {"nom_de_la_commune": "LA MILESSE", "libell_d_acheminement": "LA MILESSE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72198"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e431659121ab6122e01a7313e8188dc4e9346fc", "fields": {"nom_de_la_commune": "MOITRON SUR SARTHE", "libell_d_acheminement": "MOITRON SUR SARTHE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72199"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f09bae3205a4799a05da4ced1d06e0614ba3f31", "fields": {"nom_de_la_commune": "MONHOUDOU", "libell_d_acheminement": "MONHOUDOU", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72202"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209a87ad4a3d5bb67ad63a7b67a35fd650ecbaa4", "fields": {"nom_de_la_commune": "MONTABON", "libell_d_acheminement": "MONTABON", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72203"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da12ace76766189429d1df7b1933c101bef9238", "fields": {"nom_de_la_commune": "MONTREUIL LE HENRI", "libell_d_acheminement": "MONTREUIL LE HENRI", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72210"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d624a2fe7d6d8981990415b6fdc3ac549a9072e", "fields": {"nom_de_la_commune": "NOGENT LE BERNARD", "libell_d_acheminement": "NOGENT LE BERNARD", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72220"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c30273da3b3e0f74f9897fba6a67a3ef7db0998", "fields": {"nom_de_la_commune": "OIZE", "libell_d_acheminement": "OIZE", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72226"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a020bc4432fe63c6397ed71669d9d728f0b5c429", "fields": {"nom_de_la_commune": "NOTRE DAME DU PE", "libell_d_acheminement": "NOTRE DAME DU PE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72232"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537c3adf361833ae48f22297b18b51d480cf0e2b", "fields": {"nom_de_la_commune": "PRECIGNE", "libell_d_acheminement": "PRECIGNE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72244"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0b2b125edf33677bda8d2153c36376901549aa", "fields": {"nom_de_la_commune": "RENE", "libell_d_acheminement": "RENE", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72251"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ceab067e2b21fc6ede60aa6854b30143064b26", "fields": {"nom_de_la_commune": "STE CEROTTE", "libell_d_acheminement": "STE CEROTTE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72272"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9686b6754ac5f2c40a5c2ce60484c0aa196b8ac6", "fields": {"nom_de_la_commune": "ST DENIS DES COUDRAIS", "libell_d_acheminement": "ST DENIS DES COUDRAIS", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72277"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0429d3b36647e7c49f05a405a725a979b05a4b5f", "fields": {"nom_de_la_commune": "ST GEORGES DU BOIS", "libell_d_acheminement": "ST GEORGES DU BOIS", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72280"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9f0cc494ebc4966486b90d43db0283be33c53d", "fields": {"nom_de_la_commune": "ST GERVAIS DE VIC", "libell_d_acheminement": "ST GERVAIS DE VIC", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72286"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61187246f2707c8813faeb358d18354b368ee46c", "fields": {"nom_de_la_commune": "ST GERVAIS EN BELIN", "libell_d_acheminement": "ST GERVAIS EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72287"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9ac004be62e7987c5be08d7819898bf3ba3697", "fields": {"nom_de_la_commune": "ST JEAN DE LA MOTTE", "libell_d_acheminement": "ST JEAN DE LA MOTTE", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72291"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abcda2fd1fdc05f39a513c6bbef9d4ae1de9119d", "fields": {"nom_de_la_commune": "ST LONGIS", "libell_d_acheminement": "ST LONGIS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72295"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b8235240bc3715bc9dbfd7edf9f4a5fc68a903", "fields": {"nom_de_la_commune": "ST OUEN DE MIMBRE", "libell_d_acheminement": "ST OUEN DE MIMBRE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72305"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2c6b84c349b7ae035199586f8bf885e1bc2d42", "fields": {"nom_de_la_commune": "ST PIERRE DES BOIS", "libell_d_acheminement": "ST PIERRE DES BOIS", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72312"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142190ab634ada3a11e0bea52964a28d83095d93", "fields": {"nom_de_la_commune": "ST REMY DU VAL", "libell_d_acheminement": "ST REMY DU VAL", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72317"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbac79572a6d4dba098f6c356fc48c6f616ee4ec", "fields": {"nom_de_la_commune": "SARCE", "libell_d_acheminement": "SARCE", "code_postal": "72360", "coordonnees_gps": [47.7503941662, 0.276407152429], "code_commune_insee": "72327"}, "geometry": {"type": "Point", "coordinates": [0.276407152429, 47.7503941662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bba16f11f0792e332cc9857a8da7a588d68c2a0", "fields": {"nom_de_la_commune": "SEMUR EN VALLON", "libell_d_acheminement": "SEMUR EN VALLON", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72333"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e12f45efe29d3da1dc5636906c3f30859f912f1", "fields": {"nom_de_la_commune": "SILLE LE PHILIPPE", "libell_d_acheminement": "SILLE LE PHILIPPE", "code_postal": "72460", "coordonnees_gps": [48.0865226783, 0.31265862637], "code_commune_insee": "72335"}, "geometry": {"type": "Point", "coordinates": [0.31265862637, 48.0865226783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf386e73cd9f08e9bd0f9fe8c2f157c8ffb5479", "fields": {"nom_de_la_commune": "LA SUZE SUR SARTHE", "libell_d_acheminement": "LA SUZE SUR SARTHE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72346"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb0d00c7f09ec90bbd4e76645055695008e4324", "fields": {"nom_de_la_commune": "TASSE", "libell_d_acheminement": "TASSE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72347"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fe3ab3810044360776f4866668c546c6e50042", "fields": {"nom_de_la_commune": "THELIGNY", "libell_d_acheminement": "THELIGNY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72353"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f201523b5ef0d19aa344afa8b79b3277fea2e175", "fields": {"nom_de_la_commune": "TORCE EN VALLEE", "libell_d_acheminement": "TORCE EN VALLEE", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72359"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156b6c418b878f1dd9ba70e7a8304e020011f27f", "fields": {"nom_de_la_commune": "VOUVRAY SUR HUISNE", "libell_d_acheminement": "VOUVRAY SUR HUISNE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72383"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eade2e422cf4aec37cd87f82abcce63ad2f2e7d6", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "LONGEFOY", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928e2eaeb45fbef786261f8ebe77e8646ae3f40e", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "MONTGIROD", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a4c4f7769a137213f7d514cab0712699b762de", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ST GERMAIN LA CHAMBOTTE", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ba3f327a42456391cc1cea97a79a226b3c0efd", "fields": {"nom_de_la_commune": "ALBIEZ MONTROND", "libell_d_acheminement": "ALBIEZ MONTROND", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73013"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4fbeb34e8e5310708d323089072ef0f20494f13", "fields": {"nom_de_la_commune": "ARITH", "libell_d_acheminement": "ARITH", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73020"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2f4649cd4353824112d9f9aef9690d7ff0ab88", "fields": {"nom_de_la_commune": "LES AVANCHERS VALMOREL", "libell_d_acheminement": "LES AVANCHERS VALMOREL", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73024"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8984bf24fa7a0c93911e8e7fe9ec14ec94bb335", "fields": {"nom_de_la_commune": "AVRESSIEUX", "libell_d_acheminement": "AVRESSIEUX", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73025"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0bd0eb75dddd3f90acd9a289085e79310f0595", "fields": {"nom_de_la_commune": "BESSANS", "libell_d_acheminement": "BESSANS", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73040"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941effb16ea44de166671a06ec8ed36b2df58454", "fields": {"nom_de_la_commune": "BILLIEME", "libell_d_acheminement": "BILLIEME", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73042"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "146022e5d4a17566ed96e1f7153d4a2ac0bc7b9f", "fields": {"nom_de_la_commune": "BONVILLARD", "libell_d_acheminement": "BONVILLARD", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73048"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e171e1bf3611b90868670cdbb4e25689b6d437", "fields": {"nom_de_la_commune": "BOURDEAU", "libell_d_acheminement": "BOURDEAU", "code_postal": "73370", "coordonnees_gps": [45.6697379458, 5.85011777535], "code_commune_insee": "73050"}, "geometry": {"type": "Point", "coordinates": [5.85011777535, 45.6697379458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1308cdb1b3fb1cc06b5937d2b811dd3425b8f17", "fields": {"nom_de_la_commune": "LE BOURGET DU LAC", "libell_d_acheminement": "LE BOURGET DU LAC", "code_postal": "73370", "coordonnees_gps": [45.6697379458, 5.85011777535], "code_commune_insee": "73051"}, "geometry": {"type": "Point", "coordinates": [5.85011777535, 45.6697379458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a7e5ecf0293bc49c85b98fe16070c7153abd07", "fields": {"nom_de_la_commune": "CHAMOUSSET", "libell_d_acheminement": "CHAMOUSSET", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73068"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6876595aa0f47d175c30ac6d1fd18bf59232c3da", "fields": {"nom_de_la_commune": "LA CHAPELLE BLANCHE", "libell_d_acheminement": "LA CHAPELLE BLANCHE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73075"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e389e3ecc9f59dc50e905cabd15ceb631d9e05", "fields": {"nom_de_la_commune": "LE CHATEL", "libell_d_acheminement": "LE CHATEL", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73080"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091d74c4ee3210da3e57e84dd5687ec731dc9588", "fields": {"nom_de_la_commune": "LE CHATELARD", "libell_d_acheminement": "LE CHATELARD", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73081"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9e7af61bc77d15c6f67f621cbaa07ba0363502", "fields": {"nom_de_la_commune": "CHIGNIN", "libell_d_acheminement": "CHIGNIN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73084"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33d835853bc7e96fc93b26d14c9222fe205c2e6", "fields": {"nom_de_la_commune": "CHINDRIEUX", "libell_d_acheminement": "CHINDRIEUX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73085"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fd3f3b0668e3cabe5c950a19c06c3e6cfdbcbb", "fields": {"nom_de_la_commune": "COHENNOZ", "libell_d_acheminement": "COHENNOZ", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73088"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0d71a0dc9f9f82eec51b8a92b0208e9973a59d", "fields": {"nom_de_la_commune": "CREST VOLAND", "libell_d_acheminement": "CREST VOLAND", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73094"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20126b73692e26dd02bdd97bfade082cbbd679db", "fields": {"nom_de_la_commune": "CURIENNE", "libell_d_acheminement": "CURIENNE", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73097"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd31a375595e4a0b201a5eb6cfaaf29c10660f80", "fields": {"code_postal": "73230", "code_commune_insee": "73098", "libell_d_acheminement": "LES DESERTS", "ligne_5": "LA FECLAZ", "nom_de_la_commune": "LES DESERTS", "coordonnees_gps": [45.6155984939, 5.99766818006]}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39e1a1ae02efdbc1f3461bbd7816ded4f0b10a9", "fields": {"nom_de_la_commune": "DOUCY EN BAUGES", "libell_d_acheminement": "DOUCY EN BAUGES", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73101"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b74775a08e6c9fb9bb2d990a3c598962e4f5f84", "fields": {"nom_de_la_commune": "LES ECHELLES", "libell_d_acheminement": "LES ECHELLES", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73105"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e1665c5a9a3509fe254dc22dfb3af0949b062e", "fields": {"nom_de_la_commune": "FEISSONS SUR SALINS", "libell_d_acheminement": "FEISSONS SUR SALINS", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73113"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7902e19f3d3cd286645ba4e3178739a433a78c", "fields": {"nom_de_la_commune": "JARRIER", "libell_d_acheminement": "JARRIER", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73138"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe87fcbff66e63d26fedb2d5394cf6e35c7b393", "fields": {"nom_de_la_commune": "LESCHERAINES", "libell_d_acheminement": "LESCHERAINES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73146"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a83438cfebb6c221bc6a9eacc39e9a9e08b4c30", "fields": {"nom_de_la_commune": "MONTENDRY", "libell_d_acheminement": "MONTENDRY", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73166"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab70e91b416cef769773573879213b616dc3ee6", "fields": {"nom_de_la_commune": "MONTGELLAFREY", "libell_d_acheminement": "MONTGELLAFREY", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73167"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0543a21b160a85d5906aff8ad22e715d2fe057ee", "fields": {"nom_de_la_commune": "MONTVALEZAN", "libell_d_acheminement": "MONTVALEZAN", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73176"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bc82d4fe6b68b94b30411f220bfea54667fc29", "fields": {"nom_de_la_commune": "MOUXY", "libell_d_acheminement": "MOUXY", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73182"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c369a70afa8c4fdbc8bb5edd82a69f7793f3cfb", "fields": {"nom_de_la_commune": "NOTRE DAME DE BELLECOMBE", "libell_d_acheminement": "NOTRE DAME DE BELLECOMBE", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73186"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d7a8dfddd0250b336f457ae48455e0212c7336", "fields": {"nom_de_la_commune": "NOTRE DAME DU PRE", "libell_d_acheminement": "NOTRE DAME DU PRE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73190"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a89470c251a814f9643f043168d14a8592adaa", "fields": {"nom_de_la_commune": "PLANCHERINE", "libell_d_acheminement": "PLANCHERINE", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73202"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de812da12a20d9c1cd5a08aa28df0f2b6eca561", "fields": {"nom_de_la_commune": "LE PONTET", "libell_d_acheminement": "LE PONTET", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73205"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066f2b16b0b3d2c1a2401a39cc69a343c4e484ab", "fields": {"nom_de_la_commune": "PRALOGNAN LA VANOISE", "libell_d_acheminement": "PRALOGNAN LA VANOISE", "code_postal": "73710", "coordonnees_gps": [45.3499786689, 6.72072474972], "code_commune_insee": "73206"}, "geometry": {"type": "Point", "coordinates": [6.72072474972, 45.3499786689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cbcf79f81bb3462ed8f8c382f1fd13849246e64", "fields": {"nom_de_la_commune": "LA RAVOIRE", "libell_d_acheminement": "LA RAVOIRE", "code_postal": "73490", "coordonnees_gps": [45.5563713647, 5.96040910822], "code_commune_insee": "73213"}, "geometry": {"type": "Point", "coordinates": [5.96040910822, 45.5563713647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "004f55bf2d39cb37b5e08e82ecff28620d4e1b97", "fields": {"nom_de_la_commune": "ROTHERENS", "libell_d_acheminement": "ROTHERENS", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73217"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e456d7e78fa3c1d69e39e51cd4b1c87479767880", "fields": {"nom_de_la_commune": "ST ALBAN DE MONTBEL", "libell_d_acheminement": "ST ALBAN DE MONTBEL", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73219"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b376eec8941e6e09b83131e66c1339c84202dcb", "fields": {"nom_de_la_commune": "ST ALBAN LEYSSE", "libell_d_acheminement": "ST ALBAN LEYSSE", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73222"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453e45f5ef06d283126462edfeb74874b8c7388c", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73223"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf03c0cc258c44858ad45f5380f3007f160042f", "fields": {"nom_de_la_commune": "ST AVRE", "libell_d_acheminement": "ST AVRE", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73224"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343b791ba54f0864bfddac10f8badb9ab2cb6cf9", "fields": {"nom_de_la_commune": "ST ETIENNE DE CUINES", "libell_d_acheminement": "ST ETIENNE DE CUINES", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73231"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e110eb3ed6efe96dd7bc50336d347cbf45ea9f", "fields": {"nom_de_la_commune": "ST GEORGES D HURTIERES", "libell_d_acheminement": "ST GEORGES D HURTIERES", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73237"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dcf4c5d42d44ec95b5042b9248151ad4f2a70c", "fields": {"nom_de_la_commune": "ST JEAN DE BELLEVILLE", "libell_d_acheminement": "ST JEAN DE BELLEVILLE", "code_postal": "73440", "coordonnees_gps": [45.3533056918, 6.49727541624], "code_commune_insee": "73244"}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4507ea3b5f0305a300860101c60a15210574ea", "fields": {"nom_de_la_commune": "ST JEOIRE PRIEURE", "libell_d_acheminement": "ST JEOIRE PRIEURE", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73249"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4cc320b83a1a5e58ffe1938387ae4a6870a5cf", "fields": {"nom_de_la_commune": "ST MAURICE DE ROTHERENS", "libell_d_acheminement": "ST MAURICE DE ROTHERENS", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73260"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd46b747e79cfcef790a7272da8be1c6f7d8fa4", "fields": {"code_postal": "73140", "code_commune_insee": "73261", "libell_d_acheminement": "ST MICHEL DE MAURIENNE", "ligne_5": "BEAUNE", "nom_de_la_commune": "ST MICHEL DE MAURIENNE", "coordonnees_gps": [45.2191220888, 6.52414175582]}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bb5f1e0377504d33827a4dad8a3c8dd1c993ba", "fields": {"nom_de_la_commune": "ST PANCRACE", "libell_d_acheminement": "ST PANCRACE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73267"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a36508fe4cf74b09cbfd6d5ad9dd3f05755f6f", "fields": {"nom_de_la_commune": "ST PAUL SUR ISERE", "libell_d_acheminement": "ST PAUL SUR ISERE", "code_postal": "73730", "coordonnees_gps": [45.5966737513, 6.45704572923], "code_commune_insee": "73268"}, "geometry": {"type": "Point", "coordinates": [6.45704572923, 45.5966737513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587c401c81c5608c7af710bb31ac6d090c61d04a", "fields": {"nom_de_la_commune": "STE REINE", "libell_d_acheminement": "STE REINE", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73277"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a5782f82db25b41eb4df10077ba5c94918f9df", "fields": {"nom_de_la_commune": "ST SORLIN D ARVES", "libell_d_acheminement": "ST SORLIN D ARVES", "code_postal": "73530", "coordonnees_gps": [45.179061484, 6.24624710738], "code_commune_insee": "73280"}, "geometry": {"type": "Point", "coordinates": [6.24624710738, 45.179061484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76092e7361118fa4bdb24b3328bebd8594f2944", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73281"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1d991b6032bfef4201d34cb29a0baccea3f156", "fields": {"nom_de_la_commune": "ST VITAL", "libell_d_acheminement": "ST VITAL", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73283"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedaafb557f31ea83ada223dc597e0fe6f5db786", "fields": {"nom_de_la_commune": "SERRIERES EN CHAUTAGNE", "libell_d_acheminement": "SERRIERES EN CHAUTAGNE", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73286"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671a50bd5b40c18c3428d94a9ce622efcd56f7d4", "fields": {"nom_de_la_commune": "SONNAZ", "libell_d_acheminement": "SONNAZ", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73288"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5271b35384119c1e3b282030e78fa67bba6adb", "fields": {"nom_de_la_commune": "LA TABLE", "libell_d_acheminement": "LA TABLE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73289"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0571c675b891cb4b9d073929c90a75f8b7e5b123", "fields": {"nom_de_la_commune": "ARBELLARA", "libell_d_acheminement": "ARBELLARA", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A018"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2de0728358dff38713f8da1b7d3696821dbf12", "fields": {"nom_de_la_commune": "ARBORI", "libell_d_acheminement": "ARBORI", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A019"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da385487f7bd65359de92cacb437fb599dded511", "fields": {"nom_de_la_commune": "AULLENE", "libell_d_acheminement": "AULLENE", "code_postal": "20116", "coordonnees_gps": [41.7931582051, 9.08407548301], "code_commune_insee": "2A024"}, "geometry": {"type": "Point", "coordinates": [9.08407548301, 41.7931582051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e356a07423619984a666ef820f0baf36708521cb", "fields": {"nom_de_la_commune": "AZZANA", "libell_d_acheminement": "AZZANA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A027"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6bf2d5c25974bd0051a735e1937dde1903ff9", "fields": {"nom_de_la_commune": "CARBUCCIA", "libell_d_acheminement": "CARBUCCIA", "code_postal": "20133", "coordonnees_gps": [42.0416509531, 8.96678147455], "code_commune_insee": "2A062"}, "geometry": {"type": "Point", "coordinates": [8.96678147455, 42.0416509531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e857a43050c8a1e0530f5b1779629b603a7319", "fields": {"nom_de_la_commune": "CARDO TORGIA", "libell_d_acheminement": "CARDO TORGIA", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A064"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5e7eb8fc649d1588814c871382de40df8b7a1a", "fields": {"nom_de_la_commune": "COGGIA", "libell_d_acheminement": "COGGIA", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A090"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b505bf603a0f450739357f6c10750577d0f4a738", "fields": {"nom_de_la_commune": "CONCA", "libell_d_acheminement": "CONCA", "code_postal": "20135", "coordonnees_gps": [41.7534275718, 9.32990211235], "code_commune_insee": "2A092"}, "geometry": {"type": "Point", "coordinates": [9.32990211235, 41.7534275718]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e41f0b2450a02214cf3a65abe62235457f112b6", "fields": {"nom_de_la_commune": "ECCICA SUARELLA", "libell_d_acheminement": "ECCICA SUARELLA", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A104"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c772f7460e98eb9a521f8ecd0532d41be82d1faf", "fields": {"nom_de_la_commune": "GUARGUALE", "libell_d_acheminement": "GUARGUALE", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A132"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c607c975e38013b58e9aaa2ab37b9752b9c498e9", "fields": {"nom_de_la_commune": "GUITERA LES BAINS", "libell_d_acheminement": "GUITERA LES BAINS", "code_postal": "20153", "coordonnees_gps": [41.9220249127, 9.07829951647], "code_commune_insee": "2A133"}, "geometry": {"type": "Point", "coordinates": [9.07829951647, 41.9220249127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7295a9a4d1bd2f414d4add1ab9257357ee830b22", "fields": {"nom_de_la_commune": "MARIGNANA", "libell_d_acheminement": "MARIGNANA", "code_postal": "20141", "coordonnees_gps": [42.2079791644, 8.71954575533], "code_commune_insee": "2A154"}, "geometry": {"type": "Point", "coordinates": [8.71954575533, 42.2079791644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207f90813782d4c81635fc6250e67fd1fed7288f", "fields": {"nom_de_la_commune": "MONACIA D AULLENE", "libell_d_acheminement": "MONACIA D AULLENE", "code_postal": "20171", "coordonnees_gps": [41.5251189721, 9.01190530271], "code_commune_insee": "2A163"}, "geometry": {"type": "Point", "coordinates": [9.01190530271, 41.5251189721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7954f9adb390cf952fc6e846c0963be7d1b6b868", "fields": {"nom_de_la_commune": "OTA", "libell_d_acheminement": "OTA", "code_postal": "20150", "coordonnees_gps": [42.2552083617, 8.7336084267], "code_commune_insee": "2A198"}, "geometry": {"type": "Point", "coordinates": [8.7336084267, 42.2552083617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d357d86767cf20679081eadf4ebb37ab6abd62ef", "fields": {"nom_de_la_commune": "PASTRICCIOLA", "libell_d_acheminement": "PASTRICCIOLA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A204"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa0c15a7ccfc467d7bb1ae38472f78ed7859efe", "fields": {"nom_de_la_commune": "PIANA", "libell_d_acheminement": "PIANA", "code_postal": "20115", "coordonnees_gps": [42.2260921925, 8.62892028244], "code_commune_insee": "2A212"}, "geometry": {"type": "Point", "coordinates": [8.62892028244, 42.2260921925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a4b4071c50fbaed995ebbf48752a3efc679ac9", "fields": {"nom_de_la_commune": "PIANOTTOLI CALDARELLO", "libell_d_acheminement": "PIANOTTOLI CALDARELLO", "code_postal": "20131", "coordonnees_gps": [41.5046327192, 9.04865885374], "code_commune_insee": "2A215"}, "geometry": {"type": "Point", "coordinates": [9.04865885374, 41.5046327192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028773332f0468f8b3854d9a8254cfd6a8fa8173", "fields": {"code_postal": "20145", "code_commune_insee": "2A269", "libell_d_acheminement": "SARI SOLENZARA", "ligne_5": "SOLENZARA", "nom_de_la_commune": "SARI SOLENZARA", "coordonnees_gps": [41.813622565, 9.35248683062]}, "geometry": {"type": "Point", "coordinates": [9.35248683062, 41.813622565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb24a1485bfdcfbd5576688beb71468eebc6a182", "fields": {"nom_de_la_commune": "SOCCIA", "libell_d_acheminement": "SOCCIA", "code_postal": "20125", "coordonnees_gps": [42.1964321132, 8.92767106471], "code_commune_insee": "2A282"}, "geometry": {"type": "Point", "coordinates": [8.92767106471, 42.1964321132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8071182a439bb30d0c37b958afc36199a7955ef2", "fields": {"nom_de_la_commune": "SOTTA", "libell_d_acheminement": "SOTTA", "code_postal": "20146", "coordonnees_gps": [41.5556655137, 9.18156271217], "code_commune_insee": "2A288"}, "geometry": {"type": "Point", "coordinates": [9.18156271217, 41.5556655137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429f68d0d827284f9664d23e6a6a35eb857bfbb3", "fields": {"nom_de_la_commune": "SANTA MARIA FIGANIELLA", "libell_d_acheminement": "SANTA MARIA FIGANIELLA", "code_postal": "20143", "coordonnees_gps": [41.708872053, 8.99627693971], "code_commune_insee": "2A310"}, "geometry": {"type": "Point", "coordinates": [8.99627693971, 41.708872053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1e08ef744df23ab25d375dd6ca8b24b42a55d4", "fields": {"nom_de_la_commune": "TASSO", "libell_d_acheminement": "TASSO", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A322"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8178818bce2ad7efd037ec7ccb740afeea144826", "fields": {"nom_de_la_commune": "UCCIANI", "libell_d_acheminement": "UCCIANI", "code_postal": "20133", "coordonnees_gps": [42.0416509531, 8.96678147455], "code_commune_insee": "2A330"}, "geometry": {"type": "Point", "coordinates": [8.96678147455, 42.0416509531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad7996c71af8332eb89829f078476a3566f937d", "fields": {"nom_de_la_commune": "ZONZA", "libell_d_acheminement": "ZONZA", "code_postal": "20124", "coordonnees_gps": [41.7212935715, 9.26676147812], "code_commune_insee": "2A362"}, "geometry": {"type": "Point", "coordinates": [9.26676147812, 41.7212935715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2da2e22e0bf904290e1a0a0acd88eb33ff4cfe", "fields": {"nom_de_la_commune": "ALBERTACCE", "libell_d_acheminement": "ALBERTACCE", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B007"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122fd5bdc665c78e50d6040333a762c752c6e4b5", "fields": {"nom_de_la_commune": "ANTISANTI", "libell_d_acheminement": "ANTISANTI", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B016"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57bb103d9d30f3ace373ebe4612bb785a6e9dff", "fields": {"nom_de_la_commune": "BASTIA", "libell_d_acheminement": "BASTIA", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B033"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819e7ad71512fbb7c62f179541d434afe1974b65", "fields": {"code_postal": "20620", "code_commune_insee": "2B037", "libell_d_acheminement": "BIGUGLIA", "ligne_5": "CASATORRA", "nom_de_la_commune": "BIGUGLIA", "coordonnees_gps": [42.6164230367, 9.44067026759]}, "geometry": {"type": "Point", "coordinates": [9.44067026759, 42.6164230367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac5eada53541608325232865a4516694d101365", "fields": {"code_postal": "20222", "code_commune_insee": "2B043", "libell_d_acheminement": "BRANDO", "ligne_5": "LAVASINA", "nom_de_la_commune": "BRANDO", "coordonnees_gps": [42.7794898116, 9.45079121274]}, "geometry": {"type": "Point", "coordinates": [9.45079121274, 42.7794898116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3f2934665ce095bee59191c0a3eca0052dfb93", "fields": {"code_postal": "20260", "code_commune_insee": "2B049", "libell_d_acheminement": "CALENZANA", "ligne_5": "ARGENTELLA", "nom_de_la_commune": "CALENZANA", "coordonnees_gps": [42.4957918886, 8.79984001369]}, "geometry": {"type": "Point", "coordinates": [8.79984001369, 42.4957918886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800c5c926174a88c22502214730aab11534a569f", "fields": {"nom_de_la_commune": "CAMBIA", "libell_d_acheminement": "CAMBIA", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B051"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7109bc9f12789070cc73c41d13a175130d7a24", "fields": {"nom_de_la_commune": "CAMPANA", "libell_d_acheminement": "CAMPANA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B052"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7b1a329b4eaf5e96550861d22c2279798d0653", "fields": {"nom_de_la_commune": "CANAVAGGIA", "libell_d_acheminement": "CANAVAGGIA", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B059"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b87b315fa344f97d59a1e7c43402ce7d6f17db4", "fields": {"nom_de_la_commune": "CASABIANCA", "libell_d_acheminement": "CASABIANCA", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B069"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30be6719e23e34a3f797d7afd1a689fec49020f", "fields": {"code_postal": "20221", "code_commune_insee": "2B087", "libell_d_acheminement": "CERVIONE", "ligne_5": "PRUNETE", "nom_de_la_commune": "CERVIONE", "coordonnees_gps": [42.3298486664, 9.50290145478]}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a541f9e967d1dd35afbf703018eac8d16ea86cfb", "fields": {"nom_de_la_commune": "CORSCIA", "libell_d_acheminement": "CORSCIA", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B095"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b426adb16b3185cb25c05372bc1d1ab3c36273b", "fields": {"nom_de_la_commune": "CROCE", "libell_d_acheminement": "CROCE", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B101"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbd0a94ca822d6d1ad5906898ea226ec0041a1c", "fields": {"nom_de_la_commune": "ERSA", "libell_d_acheminement": "ERSA", "code_postal": "20275", "coordonnees_gps": [42.9871426439, 9.38299677565], "code_commune_insee": "2B107"}, "geometry": {"type": "Point", "coordinates": [9.38299677565, 42.9871426439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d3b55c4d5dcea0860f255c2b3817bc2a07845b", "fields": {"nom_de_la_commune": "FARINOLE", "libell_d_acheminement": "FARINOLE", "code_postal": "20253", "coordonnees_gps": [42.7087957082, 9.36671940301], "code_commune_insee": "2B109"}, "geometry": {"type": "Point", "coordinates": [9.36671940301, 42.7087957082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa3675638167131d4713c9ec269e96a637edc55", "fields": {"nom_de_la_commune": "FAVALELLO", "libell_d_acheminement": "FAVALELLO DE BOZIO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B110"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c8d29275f368d9350892343c8b7215dedc1b26", "fields": {"code_postal": "20240", "code_commune_insee": "2B123", "libell_d_acheminement": "GHISONACCIA", "ligne_5": "ALZITONE", "nom_de_la_commune": "GHISONACCIA", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5840be872c8118f8735e7bf6ccd95572c1fd3f33", "fields": {"code_postal": "20243", "code_commune_insee": "2B135", "libell_d_acheminement": "ISOLACCIO DI FIUMORBO", "ligne_5": "PIETRAPOLA", "nom_de_la_commune": "ISOLACCIO DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8941a876211bd0e9a36b81f0219abd119145fcb8", "fields": {"code_postal": "20230", "code_commune_insee": "2B143", "libell_d_acheminement": "LINGUIZZETTA", "ligne_5": "BRAVONE", "nom_de_la_commune": "LINGUIZZETTA", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0480f144f6e6040d187ba81e3063f268508d7863", "fields": {"nom_de_la_commune": "LORETO DI CASINCA", "libell_d_acheminement": "LORETO DI CASINCA", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B145"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f583e1d6dda71bff390e99283b07051eab6bf4", "fields": {"nom_de_la_commune": "LURI", "libell_d_acheminement": "LURI", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B152"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad5f92709cd23a5063b64e9c1124de6d725258d", "fields": {"nom_de_la_commune": "MANSO", "libell_d_acheminement": "MANSO", "code_postal": "20245", "coordonnees_gps": [42.3904066097, 8.75959311785], "code_commune_insee": "2B153"}, "geometry": {"type": "Point", "coordinates": [8.75959311785, 42.3904066097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807c9a6755b95a93e66970241fb2098dd7e89c03", "fields": {"nom_de_la_commune": "MONTE", "libell_d_acheminement": "MONTE", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B166"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e969fa2c07246908fc88ff36cc05dacd1f6099a", "fields": {"code_postal": "20214", "code_commune_insee": "2B167", "libell_d_acheminement": "MONTEGROSSO", "ligne_5": "CASSANO", "nom_de_la_commune": "MONTEGROSSO", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38637ba1012fb220587d8d81e7be0982cd638129", "fields": {"code_postal": "20214", "code_commune_insee": "2B167", "libell_d_acheminement": "MONTEGROSSO", "ligne_5": "ST RAINIER DE BALAGNE", "nom_de_la_commune": "MONTEGROSSO", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ae60a00381d9ebf10dafad5c539fed767350c3", "fields": {"nom_de_la_commune": "MONTICELLO", "libell_d_acheminement": "MONTICELLO", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B168"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101f0578c673b47446d1c65ee6b19228d605a99f", "fields": {"nom_de_la_commune": "NOCARIO", "libell_d_acheminement": "NOCARIO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B176"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47b0cb7781dfe551a9858542ccd30a044797af41", "fields": {"nom_de_la_commune": "NONZA", "libell_d_acheminement": "NONZA", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B178"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba5077b7eef40e9b8dbc2c28e773278414bc7e5", "fields": {"nom_de_la_commune": "OLCANI", "libell_d_acheminement": "OLCANI", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B184"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ca0b8600657bcb332936aad87bea40b325c488", "fields": {"nom_de_la_commune": "OLETTA", "libell_d_acheminement": "OLETTA", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B185"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92fa243d1bf71e0685570a3548dcd84fbcb2ad9", "fields": {"nom_de_la_commune": "OLMETA DI TUDA", "libell_d_acheminement": "OLMETA DI TUDA", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B188"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a5402469f0a0f344cb1d928df598bee4867fa4", "fields": {"code_postal": "20236", "code_commune_insee": "2B193", "libell_d_acheminement": "OMESSA", "ligne_5": "FRANCARDO", "nom_de_la_commune": "OMESSA", "coordonnees_gps": [42.3752519871, 9.15942302041]}, "geometry": {"type": "Point", "coordinates": [9.15942302041, 42.3752519871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350ca03c1848d52322d67fa001832b24eb33ca41", "fields": {"code_postal": "20270", "code_commune_insee": "2B201", "libell_d_acheminement": "PANCHERACCIA", "ligne_5": "CASAPERTA", "nom_de_la_commune": "PANCHERACCIA", "coordonnees_gps": [42.1585517957, 9.43977225577]}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d861050b61834f272109e8548db13086e441f0df", "fields": {"nom_de_la_commune": "PERELLI", "libell_d_acheminement": "PERELLI", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B208"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "552e3516a225e56946f069591c796dcfb6fd45c4", "fields": {"nom_de_la_commune": "PIANELLO", "libell_d_acheminement": "PIANELLO", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B213"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fcc3ae999645c754d486e276005e008dd1dbff", "fields": {"nom_de_la_commune": "PIETRALBA", "libell_d_acheminement": "PIETRALBA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B223"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7131c70417394aac7105b05a221a389a1c7c43", "fields": {"nom_de_la_commune": "PIEVE", "libell_d_acheminement": "PIEVE", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B230"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2044a7404939ce88427c5d8469d19033d27a9469", "fields": {"nom_de_la_commune": "PIGNA", "libell_d_acheminement": "PIGNA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B231"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a4e30c5cef2aefba936376469c8a3f8b1ec491", "fields": {"nom_de_la_commune": "POGGIO DI NAZZA", "libell_d_acheminement": "POGGIO DI NAZZA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B236"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f620a848ffbf4a8467896e34cab2d5e1c86ddc3a", "fields": {"nom_de_la_commune": "POGGIO MARINACCIO", "libell_d_acheminement": "POGGIO MARINACCIO", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B241"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ef3b641e3b8699061180c492a9b07285a61da0", "fields": {"nom_de_la_commune": "POPOLASCA", "libell_d_acheminement": "POPOLASCA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B244"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050ebc64676ac31ffe880e7fb4fba14153526184", "fields": {"nom_de_la_commune": "LA PORTA", "libell_d_acheminement": "LA PORTA", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B246"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ac2c9ecefe428144312d19cdbb5612e7d1f8970", "fields": {"code_postal": "20243", "code_commune_insee": "2B251", "libell_d_acheminement": "PRUNELLI DI FIUMORBO", "ligne_5": "ABBAZIA", "nom_de_la_commune": "PRUNELLI DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3698d92dd1e60db00e029dc4c74ad41b98200c4", "fields": {"code_postal": "20213", "code_commune_insee": "2B252", "libell_d_acheminement": "PRUNO", "ligne_5": "CHAMPLAN", "nom_de_la_commune": "PRUNO", "coordonnees_gps": [42.4502169346, 9.47301730801]}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a776eddf3f2c5aac669379d0ac3109cdd0cf99b3", "fields": {"nom_de_la_commune": "ROSPIGLIANI", "libell_d_acheminement": "ROSPIGLIANI", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B263"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d065d496b203522fc83b1321ff31df9e4817f115", "fields": {"code_postal": "20213", "code_commune_insee": "2B286", "libell_d_acheminement": "SORBO OCAGNANO", "ligne_5": "QUERCIOLO", "nom_de_la_commune": "SORBO OCAGNANO", "coordonnees_gps": [42.4502169346, 9.47301730801]}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baec0b790cf4f1d8308fa8e0e710612f80b3b1d9", "fields": {"nom_de_la_commune": "SANT ANDREA DI COTONE", "libell_d_acheminement": "SANT ANDREA DI COTONE", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B293"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983e39523257f142f51c936b396d4f42f08e9275", "fields": {"nom_de_la_commune": "SAN DAMIANO", "libell_d_acheminement": "SAN DAMIANO", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B297"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b261530955611bab70298d46f7802430784b2d", "fields": {"code_postal": "20200", "code_commune_insee": "2B305", "libell_d_acheminement": "SAN MARTINO DI LOTA", "ligne_5": "PIETRANERA", "nom_de_la_commune": "SAN MARTINO DI LOTA", "coordonnees_gps": [42.7169845542, 9.42659304409]}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d4dbf630c615d5adf6dbfe5c0fb888fc743e58", "fields": {"nom_de_la_commune": "SANTA LUCIA DI MORIANI", "libell_d_acheminement": "SANTA LUCIA DI MORIANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B307"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88babdabf67b5b4c126fd2b8c71890789b9a7d4b", "fields": {"nom_de_la_commune": "TAGLIO ISOLACCIO", "libell_d_acheminement": "TAGLIO ISOLACCIO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B318"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015e145e795aa24318b542d61428cb5a746da7b8", "fields": {"nom_de_la_commune": "TALLONE", "libell_d_acheminement": "TALLONE", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B320"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52a1f08943010efdf13e718c28ff19d156942404", "fields": {"nom_de_la_commune": "TOX", "libell_d_acheminement": "TOX", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B328"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc98be7df830aac44cfee8c6bf70a413d0e3d92f", "fields": {"nom_de_la_commune": "VALLE D OREZZA", "libell_d_acheminement": "VALLE D OREZZA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B338"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfc13352fc633ed82d064fb8dc13fe66309164ad", "fields": {"nom_de_la_commune": "VILLE DI PARASO", "libell_d_acheminement": "VILLE DI PARASO", "code_postal": "20279", "coordonnees_gps": [42.5823551626, 8.98937313441], "code_commune_insee": "2B352"}, "geometry": {"type": "Point", "coordinates": [8.98937313441, 42.5823551626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaedc89639d572b7847be1e35d14d2aff378b53a", "fields": {"nom_de_la_commune": "VILLE DI PIETRABUGNO", "libell_d_acheminement": "VILLE DI PIETRABUGNO", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B353"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc58ecaf164d4fe9398934127b9500de499bddb", "fields": {"nom_de_la_commune": "SAN GAVINO DI FIUMORBO", "libell_d_acheminement": "SAN GAVINO DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B365"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c399ac41afbc2c43f72cde8a8943adc29f2d82b1", "fields": {"nom_de_la_commune": "CHISA", "libell_d_acheminement": "CHISA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B366"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054f9cd3eb26f2cd1424b4bc2eecbb1ffaee30a8", "fields": {"nom_de_la_commune": "BEAUREGARD", "libell_d_acheminement": "BEAUREGARD", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01030"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6655784320c85ce069cae77a5de9eaeda4615d1", "fields": {"nom_de_la_commune": "BELIGNEUX", "libell_d_acheminement": "BELIGNEUX", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01032"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d646848bad1cafb1566d5ea6e987b57a4ebf64be", "fields": {"nom_de_la_commune": "ARTEMARE", "libell_d_acheminement": "ARTEMARE", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01022"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc22c2188e277c334d033c75e6981b581aa03d5", "fields": {"nom_de_la_commune": "ARANDAS", "libell_d_acheminement": "ARANDAS", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01013"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca2830e7edf18f6d2068d2c17c117ce4ee51781", "fields": {"nom_de_la_commune": "ARGIS", "libell_d_acheminement": "ARGIS", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01017"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba0167a4727f3314acc9ce8e81a6fc986eaa309", "fields": {"nom_de_la_commune": "BENY", "libell_d_acheminement": "BENY", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01038"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67b0fdb5e09f87a21b4c4bb406d282e6aebbfca", "fields": {"code_postal": "01250", "code_commune_insee": "01245", "libell_d_acheminement": "BOHAS MEYRIAT RIGNAT", "ligne_5": "RIGNAT", "nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", "coordonnees_gps": [46.2066710432, 5.38605889851]}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feb823c4e1b2d72220cff2b9f59ec68a5f3bce04", "fields": {"nom_de_la_commune": "INJOUX GENISSIAT", "libell_d_acheminement": "INJOUX GENISSIAT", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01189"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3751e3220859d8cd99eadd1f8d638b2f1898556b", "fields": {"nom_de_la_commune": "GEOVREISSET", "libell_d_acheminement": "GEOVREISSET", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01171"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afea42698059b7b4a2f53b02b7f7939aa5e6b13", "fields": {"nom_de_la_commune": "LAPEYROUSE", "libell_d_acheminement": "LAPEYROUSE", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01207"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea662f257b4faabdf79314fa98f515b7b8d12802", "fields": {"nom_de_la_commune": "MONTAGNIEU", "libell_d_acheminement": "MONTAGNIEU", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01255"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a287fb7803380900e986ac67b2eb206afd53b7e3", "fields": {"nom_de_la_commune": "MARTIGNAT", "libell_d_acheminement": "MARTIGNAT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01237"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e063abb7cb49e089cd245e191f2de5ff4580376", "fields": {"nom_de_la_commune": "LEYSSARD", "libell_d_acheminement": "LEYSSARD", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01214"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f3d9f77a9df500436bd40e88c139ab66095bba", "fields": {"nom_de_la_commune": "MONTLUEL", "libell_d_acheminement": "MONTLUEL", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01262"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a3897718fa96ddec42a8f2fc6544547b94d931", "fields": {"nom_de_la_commune": "LAVOURS", "libell_d_acheminement": "LAVOURS", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01208"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e64545cfb9d2a5bbac311d2d05984ae2d95551", "fields": {"nom_de_la_commune": "GRIEGES", "libell_d_acheminement": "GRIEGES", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01179"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8c0695eff8b220e619505a9f74a6b7086e8302", "fields": {"nom_de_la_commune": "CORMARANCHE EN BUGEY", "libell_d_acheminement": "CORMARANCHE EN BUGEY", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01122"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b7483b6fa95130fc6a8b09d13cdae815b185428", "fields": {"nom_de_la_commune": "CHEZERY FORENS", "libell_d_acheminement": "CHEZERY FORENS", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01104"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa77c121a7771566139d6649c8da69824f77a3e", "fields": {"nom_de_la_commune": "LAGORCE", "libell_d_acheminement": "LAGORCE", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33218"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328870da2206f999ecfe1c968df5e34a7a7e0062", "fields": {"nom_de_la_commune": "LAMARQUE", "libell_d_acheminement": "LAMARQUE", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33220"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4e4360927ef2141a702c636f677cf5e72a1845", "fields": {"nom_de_la_commune": "LAMOTHE LANDERRON", "libell_d_acheminement": "LAMOTHE LANDERRON", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33221"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397e9e67a4d0da42307d4ae3b1c0db0a330c53bc", "fields": {"nom_de_la_commune": "LATRESNE", "libell_d_acheminement": "LATRESNE", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33234"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a22bd2a34dca8d44d8b44d8915dbb36e1369775", "fields": {"nom_de_la_commune": "LESTIAC SUR GARONNE", "libell_d_acheminement": "LESTIAC SUR GARONNE", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33241"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb0640fdd66eaa2c5f72d866a8f1b21ecef7e7f", "fields": {"nom_de_la_commune": "LIGNAN DE BORDEAUX", "libell_d_acheminement": "LIGNAN DE BORDEAUX", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33245"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94184d7c9e2bf50d7bdcabb38e40f6e2147d5799", "fields": {"nom_de_la_commune": "LOUBENS", "libell_d_acheminement": "LOUBENS", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33250"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c09a3176a73c6ac497e45eded37b685f1e2981", "fields": {"nom_de_la_commune": "LOUPIAC", "libell_d_acheminement": "LOUPIAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33253"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebc062ba347748e8212985724293076c572c3bf", "fields": {"nom_de_la_commune": "MARGAUX", "libell_d_acheminement": "MARGAUX", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33268"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f26a5591f7d8a780c0a1da2ab6acadfabe3cde6f", "fields": {"nom_de_la_commune": "MARIMBAULT", "libell_d_acheminement": "MARIMBAULT", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33270"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbb7456dbb42f5c167b511c7dadf236ec1979d49", "fields": {"nom_de_la_commune": "MARTILLAC", "libell_d_acheminement": "MARTILLAC", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33274"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bba23253f80fe3cbd1acb5484f81f568001cde1", "fields": {"nom_de_la_commune": "MASSUGAS", "libell_d_acheminement": "MASSUGAS", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33277"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10886a045b3951957e49964368cc1e57f185264b", "fields": {"nom_de_la_commune": "MAZION", "libell_d_acheminement": "MAZION", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33280"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844fc1d4cd64173e0158d6a8fe2439d11a6baa71", "fields": {"nom_de_la_commune": "MERIGNAC", "libell_d_acheminement": "MERIGNAC", "code_postal": "33700", "coordonnees_gps": [44.8322478118, -0.682174144265], "code_commune_insee": "33281"}, "geometry": {"type": "Point", "coordinates": [-0.682174144265, 44.8322478118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecfc41cda7610294b436897484bea73edb8461f", "fields": {"nom_de_la_commune": "MOMBRIER", "libell_d_acheminement": "MOMBRIER", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33285"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bafa64bd80f413f1c4a761dad0f6fe44cf1fb561", "fields": {"nom_de_la_commune": "MONTIGNAC", "libell_d_acheminement": "MONTIGNAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33292"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afd4cee0a7b20c8a521b4a780a3f1bfb6f10411", "fields": {"nom_de_la_commune": "MORIZES", "libell_d_acheminement": "MORIZES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33294"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33add346eaa6c10c18373e25d98a2e52458a5a8b", "fields": {"nom_de_la_commune": "NAUJAN ET POSTIAC", "libell_d_acheminement": "NAUJAN ET POSTIAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33301"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a812a6cc51850cb226a6974722936ad9b1d87ab5", "fields": {"nom_de_la_commune": "NEAC", "libell_d_acheminement": "NEAC", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33302"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a35ff67d2f3b7c2f234ff8fa9b663b27cf1040a", "fields": {"nom_de_la_commune": "NERIGEAN", "libell_d_acheminement": "NERIGEAN", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33303"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bc5dc0c2f6d03746d15a50cbd450974e6d4c68", "fields": {"nom_de_la_commune": "NOAILLAC", "libell_d_acheminement": "NOAILLAC", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33306"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b1742344b3abe2206dcfe3938b9db12c737227", "fields": {"nom_de_la_commune": "ORIGNE", "libell_d_acheminement": "ORIGNE", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33310"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af30aa6f4ed5b02b5ec3fbd8a9bc5910bc8dbc89", "fields": {"nom_de_la_commune": "POMPIGNAC", "libell_d_acheminement": "POMPIGNAC", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33330"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7888d712cf14609b0bae42ec0137a0adf7a15cb2", "fields": {"nom_de_la_commune": "PONDAURAT", "libell_d_acheminement": "PONDAURAT", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33331"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1312dae0ee9ed99e9eae1665a06ce65d192eba09", "fields": {"nom_de_la_commune": "PUYNORMAND", "libell_d_acheminement": "PUYNORMAND", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33347"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59e1027d77801b409486088e9a0f713181b31d2", "fields": {"nom_de_la_commune": "QUEYRAC", "libell_d_acheminement": "QUEYRAC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33348"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5966b7b8cc32abe06701d215c18690fe86f7b556", "fields": {"nom_de_la_commune": "RIOCAUD", "libell_d_acheminement": "RIOCAUD", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33354"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92480b673dee5f18ed2b59cbf628db7948c30cff", "fields": {"nom_de_la_commune": "ROQUEBRUNE", "libell_d_acheminement": "ROQUEBRUNE", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33359"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf15e1a70a5e0036f5027717a2a2c4295c01c11", "fields": {"nom_de_la_commune": "ST ANDRE DU BOIS", "libell_d_acheminement": "ST ANDRE DU BOIS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33367"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1166f508e9dfd98952aa7ea1554be361491d01", "fields": {"nom_de_la_commune": "ST ANDRONY", "libell_d_acheminement": "ST ANDRONY", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33370"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf7751672e42c7e885ababa4eeed85efb61f5e4", "fields": {"nom_de_la_commune": "ST ANTOINE DU QUEYRET", "libell_d_acheminement": "ST ANTOINE DU QUEYRET", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33372"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42debd00f8cd73d6e1584d03de742fa05270b791", "fields": {"nom_de_la_commune": "ST AUBIN DE BLAYE", "libell_d_acheminement": "ST AUBIN DE BLAYE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33374"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385965265bc39663ccf38b45bba1c69641b95f78", "fields": {"nom_de_la_commune": "ST AUBIN DE MEDOC", "libell_d_acheminement": "ST AUBIN DE MEDOC", "code_postal": "33160", "coordonnees_gps": [44.9057111601, -0.79310499686], "code_commune_insee": "33376"}, "geometry": {"type": "Point", "coordinates": [-0.79310499686, 44.9057111601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178b7a7ad18e57b3a2f8dbe20c33639b4cbdfbbe", "fields": {"code_postal": "33220", "code_commune_insee": "33378", "libell_d_acheminement": "ST AVIT ST NAZAIRE", "ligne_5": "ST NAZAIRE", "nom_de_la_commune": "ST AVIT ST NAZAIRE", "coordonnees_gps": [44.8116133881, 0.20923854264]}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d098ea758791417800ade8bd8f53c9442db9b43", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DE DOUBLE", "libell_d_acheminement": "ST CHRISTOPHE DE DOUBLE", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33385"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcbd3a0ec964b22174e12e76c701a4e83982c71", "fields": {"nom_de_la_commune": "ST EMILION", "libell_d_acheminement": "ST EMILION", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33394"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934527b8d8c44a26d06a0fe0e6e198b13819def1", "fields": {"nom_de_la_commune": "ST ETIENNE DE LISSE", "libell_d_acheminement": "ST ETIENNE DE LISSE", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33396"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ecdf21fe33f20e72be08790de180850c048c14", "fields": {"nom_de_la_commune": "ST FERME", "libell_d_acheminement": "ST FERME", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33400"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cc7d7db9201914f0950770ea718f6f44585f2d", "fields": {"nom_de_la_commune": "ST GENES DE BLAYE", "libell_d_acheminement": "ST GENES DE BLAYE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33405"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb740ec46768f211fac30b826bc98155d376d08b", "fields": {"nom_de_la_commune": "ST GENES DE CASTILLON", "libell_d_acheminement": "ST GENES DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33406"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5a6cca3785d649e0bac31a548abecf8eab1716", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33417"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76eed81c35bc3d7ac30e6ce558eceb28443a824a", "fields": {"nom_de_la_commune": "ST LAURENT DU BOIS", "libell_d_acheminement": "ST LAURENT DU BOIS", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33427"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7e2863f7532f337d500d378ceb2ebad3c3fdc8", "fields": {"nom_de_la_commune": "ST LEGER DE BALSON", "libell_d_acheminement": "ST LEGER DE BALSON", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33429"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da2e61b63d967eec539b4f8fd06a0732a8be693", "fields": {"nom_de_la_commune": "ST MAGNE DE CASTILLON", "libell_d_acheminement": "ST MAGNE DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33437"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9ddae9cbcccbb9bb81083097e8f9352333922d", "fields": {"nom_de_la_commune": "ST MARTIN LACAUSSADE", "libell_d_acheminement": "ST MARTIN LACAUSSADE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33441"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091a5bde173beb50c3bfd6b32727b95644bcb9ed", "fields": {"nom_de_la_commune": "ST MEDARD EN JALLES", "libell_d_acheminement": "ST MEDARD EN JALLES", "code_postal": "33160", "coordonnees_gps": [44.9057111601, -0.79310499686], "code_commune_insee": "33449"}, "geometry": {"type": "Point", "coordinates": [-0.79310499686, 44.9057111601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6e5c32fa371bdf9927cc22f01cc24d9ede82ad", "fields": {"nom_de_la_commune": "ST MICHEL DE FRONSAC", "libell_d_acheminement": "ST MICHEL DE FRONSAC", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33451"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9278aaef82806028534aa251a9dcd9eaa1a95a", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33456"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ef863c4fb5f3809f99659a77794bfca81420c4", "fields": {"nom_de_la_commune": "ST PARDON DE CONQUES", "libell_d_acheminement": "ST PARDON DE CONQUES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33457"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10aa9f307595a95913c5614ea8769bfb35bc236a", "fields": {"nom_de_la_commune": "ST PEY D ARMENS", "libell_d_acheminement": "ST PEY D ARMENS", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33459"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4969e4fde976f0b7e63ee5afa64f6d75fb2b222", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33473"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685bc289cd3eb78fdb0644549ce792a1b06c7a5c", "fields": {"nom_de_la_commune": "ST SEURIN SUR L ISLE", "libell_d_acheminement": "ST SEURIN SUR L ISLE", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33478"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcd93a3b05c983666f6067cdb217bc3252cbd22", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33484"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f325fbbee1c5f76ba8398156fb02175b70a56276", "fields": {"nom_de_la_commune": "SAMONAC", "libell_d_acheminement": "SAMONAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33500"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2fa24e1c0ad098e509da73ce09271a21af8605", "fields": {"nom_de_la_commune": "LA SAUVE", "libell_d_acheminement": "LA SAUVE", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33505"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9684103899335baa77f89f21be69b4c8118f075", "fields": {"nom_de_la_commune": "SAUVETERRE DE GUYENNE", "libell_d_acheminement": "SAUVETERRE DE GUYENNE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33506"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a1e1897936e1b00a3521a3cd1b8499c3f4f670", "fields": {"nom_de_la_commune": "SAUVIAC", "libell_d_acheminement": "SAUVIAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33507"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814af2eb2f4612c139c3e4decde26106d5aafdc9", "fields": {"nom_de_la_commune": "SAVIGNAC", "libell_d_acheminement": "SAVIGNAC", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33508"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eded712cf082653147a3b7e1cf44f7ead4a2273", "fields": {"nom_de_la_commune": "SEMENS", "libell_d_acheminement": "SEMENS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33510"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1eb2b91360788c2f5ab92cb8932f465b1a763b", "fields": {"nom_de_la_commune": "SILLAS", "libell_d_acheminement": "SILLAS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33513"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3f849d58455865a1409f2bfc325c54a4153bc3", "fields": {"nom_de_la_commune": "LE TAILLAN MEDOC", "libell_d_acheminement": "LE TAILLAN MEDOC", "code_postal": "33320", "coordonnees_gps": [44.8968698852, -0.666404713084], "code_commune_insee": "33519"}, "geometry": {"type": "Point", "coordinates": [-0.666404713084, 44.8968698852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5023d798d2d6ed2e12cb72e490fc2d5d3e728f6b", "fields": {"nom_de_la_commune": "TARGON", "libell_d_acheminement": "TARGON", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33523"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ba3e9be9a9f8877463b9d8a0eec63ae8bf725e", "fields": {"nom_de_la_commune": "LE TEICH", "libell_d_acheminement": "LE TEICH", "code_postal": "33470", "coordonnees_gps": [44.5836668839, -1.04638835904], "code_commune_insee": "33527"}, "geometry": {"type": "Point", "coordinates": [-1.04638835904, 44.5836668839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ed8a9f744645bc8d2f92fa93e580b9d4774a66", "fields": {"code_postal": "33115", "code_commune_insee": "33529", "libell_d_acheminement": "LA TESTE DE BUCH", "ligne_5": "PYLA PLAGE", "nom_de_la_commune": "LA TESTE DE BUCH", "coordonnees_gps": [44.5562733518, -1.17522251719]}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501e531bb58df4ae1a9a3ff91680ab2ad12e222c", "fields": {"code_postal": "33115", "code_commune_insee": "33529", "libell_d_acheminement": "LA TESTE DE BUCH", "ligne_5": "PYLA SUR MER", "nom_de_la_commune": "LA TESTE DE BUCH", "coordonnees_gps": [44.5562733518, -1.17522251719]}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c0c4bfa357eef3d166f8c4e97b7d7dd87cb9f2", "fields": {"nom_de_la_commune": "LA TESTE DE BUCH", "libell_d_acheminement": "LA TESTE DE BUCH", "code_postal": "33260", "coordonnees_gps": [44.5562733518, -1.17522251719], "code_commune_insee": "33529"}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eda3ba5f95fc83e2a06571bb0c80d13acf7b56f", "fields": {"nom_de_la_commune": "VALEYRAC", "libell_d_acheminement": "VALEYRAC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33538"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2cf982559a18d7bec6e3065b79e052d03b1cf0", "fields": {"nom_de_la_commune": "VENDAYS MONTALIVET", "libell_d_acheminement": "VENDAYS MONTALIVET", "code_postal": "33930", "coordonnees_gps": [45.3397159027, -1.10046795084], "code_commune_insee": "33540"}, "geometry": {"type": "Point", "coordinates": [-1.10046795084, 45.3397159027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677639a6e14245521831adc206eac07353b4dccb", "fields": {"nom_de_la_commune": "VERDELAIS", "libell_d_acheminement": "VERDELAIS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33543"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cfab7532012094c1b04a9a7a2dc7f48486aa79", "fields": {"nom_de_la_commune": "LE VERDON SUR MER", "libell_d_acheminement": "LE VERDON SUR MER", "code_postal": "33123", "coordonnees_gps": [45.5385336761, -1.08033408498], "code_commune_insee": "33544"}, "geometry": {"type": "Point", "coordinates": [-1.08033408498, 45.5385336761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efe6abeaa63af8449c94f7afe9659b51472793a", "fields": {"nom_de_la_commune": "VILLENAVE D ORNON", "libell_d_acheminement": "VILLENAVE D ORNON", "code_postal": "33140", "coordonnees_gps": [44.7623336559, -0.546471923225], "code_commune_insee": "33550"}, "geometry": {"type": "Point", "coordinates": [-0.546471923225, 44.7623336559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2440b35e1e77405275bc7c1a6e66050ee7d228bc", "fields": {"code_postal": "33140", "code_commune_insee": "33550", "libell_d_acheminement": "VILLENAVE D ORNON", "ligne_5": "PONT DE LA MAYE", "nom_de_la_commune": "VILLENAVE D ORNON", "coordonnees_gps": [44.7623336559, -0.546471923225]}, "geometry": {"type": "Point", "coordinates": [-0.546471923225, 44.7623336559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffb4e5ef37d2e4bc6412bba7dd33df3eab1a7cec", "fields": {"nom_de_la_commune": "VIRELADE", "libell_d_acheminement": "VIRELADE", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33552"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a95a7c13ea993daf9aa8f762b4728434a0e42f", "fields": {"nom_de_la_commune": "YVRAC", "libell_d_acheminement": "YVRAC", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33554"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84cf6edc53fe4db30ba506b2e4970b5ebe4a229e", "fields": {"nom_de_la_commune": "ADISSAN", "libell_d_acheminement": "ADISSAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34002"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942b0398391eeffeaa89f33bd14226ee8017966b", "fields": {"nom_de_la_commune": "AIGNE", "libell_d_acheminement": "AIGNE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34006"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249fab797f97862255c66f764a4cc42bd4670287", "fields": {"nom_de_la_commune": "ARBORAS", "libell_d_acheminement": "ARBORAS", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34011"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477ded45614ece1781d93e3490a79217dace85a5", "fields": {"nom_de_la_commune": "BABEAU BOULDOUX", "libell_d_acheminement": "BABEAU BOULDOUX", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34021"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19babe317ffa14fc2bd9843879b001f52bdc3133", "fields": {"nom_de_la_commune": "BALARUC LES BAINS", "libell_d_acheminement": "BALARUC LES BAINS", "code_postal": "34540", "coordonnees_gps": [43.4557715487, 3.69388023516], "code_commune_insee": "34023"}, "geometry": {"type": "Point", "coordinates": [3.69388023516, 43.4557715487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d26275025e5cee46013a920ece4a05f7f0ff33", "fields": {"nom_de_la_commune": "BERLOU", "libell_d_acheminement": "BERLOU", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34030"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6972aa0738774815dd2cfb6a46dc9309b566fc1f", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34035"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1908ac186e80bcdc1ed6b75a58ae0cdeffb5a0fa", "fields": {"nom_de_la_commune": "CAUX", "libell_d_acheminement": "CAUX", "code_postal": "34720", "coordonnees_gps": [43.5050183405, 3.36706967492], "code_commune_insee": "34063"}, "geometry": {"type": "Point", "coordinates": [3.36706967492, 43.5050183405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3312df263f5681a38dd9045b4ede6c0ac2de83", "fields": {"nom_de_la_commune": "CAZEDARNES", "libell_d_acheminement": "CAZEDARNES", "code_postal": "34460", "coordonnees_gps": [43.4734338181, 3.02585092661], "code_commune_insee": "34065"}, "geometry": {"type": "Point", "coordinates": [3.02585092661, 43.4734338181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f69e20a2c19fe8a97efbed181df7f56233bf3d7", "fields": {"nom_de_la_commune": "CLAPIERS", "libell_d_acheminement": "CLAPIERS", "code_postal": "34830", "coordonnees_gps": [43.6624822527, 3.89381826906], "code_commune_insee": "34077"}, "geometry": {"type": "Point", "coordinates": [3.89381826906, 43.6624822527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73bb073020bdd03e8f0261b5617ace2d68861aa", "fields": {"nom_de_la_commune": "COLOMBIERES SUR ORB", "libell_d_acheminement": "COLOMBIERES SUR ORB", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34080"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade33161511a2f25048e9f4d50f64f671a96b6d0", "fields": {"nom_de_la_commune": "CORNEILHAN", "libell_d_acheminement": "CORNEILHAN", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34084"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8649c98d5c6417a7e56532972f62f391919ff85", "fields": {"nom_de_la_commune": "LE CRES", "libell_d_acheminement": "LE CRES", "code_postal": "34920", "coordonnees_gps": [43.6526313405, 3.93657648045], "code_commune_insee": "34090"}, "geometry": {"type": "Point", "coordinates": [3.93657648045, 43.6526313405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7439e47fa6737052f90ec80e2290f9db6a99179c", "fields": {"nom_de_la_commune": "LE CROS", "libell_d_acheminement": "LE CROS", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34091"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d9d35d07decc7a3c607ca727bc522c759133a6", "fields": {"nom_de_la_commune": "FAUGERES", "libell_d_acheminement": "FAUGERES", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34096"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196a317551b467023d08cee426c9e2010938f666", "fields": {"nom_de_la_commune": "FERRIERES POUSSAROU", "libell_d_acheminement": "FERRIERES POUSSAROU", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34100"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba818f519093c325c1892477fc8c43747b09b262", "fields": {"nom_de_la_commune": "FLORENSAC", "libell_d_acheminement": "FLORENSAC", "code_postal": "34510", "coordonnees_gps": [43.3860895701, 3.4638702012], "code_commune_insee": "34101"}, "geometry": {"type": "Point", "coordinates": [3.4638702012, 43.3860895701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0926e9546ac01090f0088bfcf7eef0b86a31c93d", "fields": {"code_postal": "34110", "code_commune_insee": "34108", "libell_d_acheminement": "FRONTIGNAN", "ligne_5": "LA PEYRADE", "nom_de_la_commune": "FRONTIGNAN", "coordonnees_gps": [43.471821386, 3.77729139459]}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b649ed0fe5ecb92a8e49cd6516b812630b6f1aa9", "fields": {"nom_de_la_commune": "GALARGUES", "libell_d_acheminement": "GALARGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34110"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cb4d56df260510835777def5e745ba23e98da9", "fields": {"nom_de_la_commune": "GIGEAN", "libell_d_acheminement": "GIGEAN", "code_postal": "34770", "coordonnees_gps": [43.4943425717, 3.72370204074], "code_commune_insee": "34113"}, "geometry": {"type": "Point", "coordinates": [3.72370204074, 43.4943425717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45060a2aa56e5af99f6403e4929223ef88fdb653", "fields": {"nom_de_la_commune": "GORNIES", "libell_d_acheminement": "GORNIES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34115"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296c087d60ee13d8d05f6fe4b907888230a15a5b", "fields": {"nom_de_la_commune": "GRABELS", "libell_d_acheminement": "GRABELS", "code_postal": "34790", "coordonnees_gps": [43.6506124782, 3.79422332863], "code_commune_insee": "34116"}, "geometry": {"type": "Point", "coordinates": [3.79422332863, 43.6506124782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9290a3db91f4fdcaa9d8692d31ff9e5c79fbfd4c", "fields": {"nom_de_la_commune": "GUZARGUES", "libell_d_acheminement": "GUZARGUES", "code_postal": "34820", "coordonnees_gps": [43.7090659495, 3.91319760845], "code_commune_insee": "34118"}, "geometry": {"type": "Point", "coordinates": [3.91319760845, 43.7090659495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58864ed4a1e8f7f4220c36b6c5f7d6658847380", "fields": {"nom_de_la_commune": "JUVIGNAC", "libell_d_acheminement": "JUVIGNAC", "code_postal": "34990", "coordonnees_gps": [43.624483688, 3.79617171878], "code_commune_insee": "34123"}, "geometry": {"type": "Point", "coordinates": [3.79617171878, 43.624483688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d811e2560d4969b4e490f0e1568d40afb9f3b138", "fields": {"nom_de_la_commune": "LAMALOU LES BAINS", "libell_d_acheminement": "LAMALOU LES BAINS", "code_postal": "34240", "coordonnees_gps": [43.6002437249, 3.06165252657], "code_commune_insee": "34126"}, "geometry": {"type": "Point", "coordinates": [3.06165252657, 43.6002437249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd91a12707a15f6391689cb16a0eb0e81f23d5df", "fields": {"nom_de_la_commune": "LAROQUE", "libell_d_acheminement": "LAROQUE", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34128"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54e34444adc169240ce25b2b87925395b14382e", "fields": {"nom_de_la_commune": "LUGNY", "libell_d_acheminement": "LUGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02444"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc960350e25bb19a9e5c8d0a9d12ae50b3c1db03", "fields": {"nom_de_la_commune": "MARCY", "libell_d_acheminement": "MARCY", "code_postal": "02720", "coordonnees_gps": [49.8506777552, 3.38251026426], "code_commune_insee": "02459"}, "geometry": {"type": "Point", "coordinates": [3.38251026426, 49.8506777552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955169cdb8bc59126f6c956768b61a9e7163d714", "fields": {"nom_de_la_commune": "LIME", "libell_d_acheminement": "LIME", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02432"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f411c9b76057859903784ac85084403f58a15e", "fields": {"nom_de_la_commune": "ROCOURT ST MARTIN", "libell_d_acheminement": "ROCOURT ST MARTIN", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02649"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae209bf0f35f3a0f9f44b46b09b8cf5e9611f8c", "fields": {"nom_de_la_commune": "PIGNICOURT", "libell_d_acheminement": "PIGNICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02601"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d842b08b975c3f487b5527d08bd5878ccbeecf", "fields": {"nom_de_la_commune": "RENANSART", "libell_d_acheminement": "RENANSART", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02640"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e1a2c36c9babac803535c80392c84e0f632f1a", "fields": {"nom_de_la_commune": "ROUGERIES", "libell_d_acheminement": "ROUGERIES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02657"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4d66c74991a6efc3c9fffe2fb84d268f024b0f", "fields": {"nom_de_la_commune": "PERNANT", "libell_d_acheminement": "PERNANT", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02598"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c507b164d9f3bbc013fdb402b59793a24f5146e", "fields": {"nom_de_la_commune": "PLOISY", "libell_d_acheminement": "PLOISY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02607"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1d0c4233442790b4585f57298b413e206f1627", "fields": {"nom_de_la_commune": "PINON", "libell_d_acheminement": "PINON", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02602"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb356af339243e1645d6f28e0e5f953715abdebf", "fields": {"nom_de_la_commune": "REGNY", "libell_d_acheminement": "REGNY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02636"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d513e7520024427f02ecaf1eb5e2a767574525e", "fields": {"nom_de_la_commune": "ROUPY", "libell_d_acheminement": "ROUPY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02658"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313e5fb0492d3f96772176047d9d763ef1bccdfc", "fields": {"nom_de_la_commune": "LAVAL EN LAONNOIS", "libell_d_acheminement": "LAVAL EN LAONNOIS", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02413"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372e85953435566820a092b14cf9f60c5ac016d6", "fields": {"nom_de_la_commune": "LANDRICOURT", "libell_d_acheminement": "LANDRICOURT", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02406"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c18f2e55f447ef2a1ff768a6b7b5c8a4402b76", "fields": {"nom_de_la_commune": "LAFFAUX", "libell_d_acheminement": "LAFFAUX", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02400"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df647031ab7aa3bf4529f8c66f6f5ba15ddfa19c", "fields": {"nom_de_la_commune": "LAPPION", "libell_d_acheminement": "LAPPION", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02409"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d976c856ec4173c8905b731b16dcb8accc1d7155", "fields": {"nom_de_la_commune": "IVIERS", "libell_d_acheminement": "IVIERS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02388"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428773c5bb4545d3830887ea1ab3497506013f81", "fields": {"nom_de_la_commune": "LAIGNY", "libell_d_acheminement": "LAIGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02401"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b825e73171e94b87b5320a22c52fc6a46d582a8", "fields": {"nom_de_la_commune": "LESGES", "libell_d_acheminement": "LESGES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02421"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f2b3dd4c45ad4635bfff40eb9e5a8a049dc70c", "fields": {"nom_de_la_commune": "LEURY", "libell_d_acheminement": "LEURY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02424"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "011f846d8be986a6870bee5be2aa5651c7298022", "fields": {"nom_de_la_commune": "LEUZE", "libell_d_acheminement": "LEUZE", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02425"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb1156d20acb469f9988845999dd751b9b5ed61", "fields": {"nom_de_la_commune": "LIEZ", "libell_d_acheminement": "LIEZ", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02431"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78125aa40990f39dbebef193f035108db5f745c2", "fields": {"nom_de_la_commune": "ORIGNY STE BENOITE", "libell_d_acheminement": "ORIGNY STE BENOITE", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02575"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a856c4e52f6d03f49f0a1482577c79e6b7241d", "fields": {"nom_de_la_commune": "PARGNY LA DHUYS", "libell_d_acheminement": "PARGNY LA DHUYS", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02590"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48dbd1b9fcd6bef99cc704a07b5beec7eb32841", "fields": {"nom_de_la_commune": "NOGENT L ARTAUD", "libell_d_acheminement": "NOGENT L ARTAUD", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02555"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4e8118d3971c4b795e814d1e8700a99538d8a9", "fields": {"nom_de_la_commune": "PASSY EN VALOIS", "libell_d_acheminement": "PASSY EN VALOIS", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02594"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f388212e42e4c74752e406267a1696357d3cfe79", "fields": {"nom_de_la_commune": "NIZY LE COMTE", "libell_d_acheminement": "NIZY LE COMTE", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02553"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0153f12e55273e70c6f9bd757869f46631ec64dd", "fields": {"nom_de_la_commune": "ORAINVILLE", "libell_d_acheminement": "ORAINVILLE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02572"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55777ec1f937ff539007e3733c3eb5b20abb330f", "fields": {"nom_de_la_commune": "PAPLEUX", "libell_d_acheminement": "PAPLEUX", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02584"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4154aa50dea31484b322935697dc7cc55cc49b2e", "fields": {"nom_de_la_commune": "OMISSY", "libell_d_acheminement": "OMISSY", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02571"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da29d1980ae3709849a9b767ba0821001c922d3d", "fields": {"nom_de_la_commune": "PAARS", "libell_d_acheminement": "PAARS", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02581"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92fa28e4d3a81a1d501d240f2744e3ea3122037", "fields": {"code_postal": "02600", "code_commune_insee": "02810", "libell_d_acheminement": "VILLERS COTTERETS", "ligne_5": "PISSELEUX", "nom_de_la_commune": "VILLERS COTTERETS", "coordonnees_gps": [49.2730511855, 3.12339772854]}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a107b0914604cb3efad7f1be438878ed27d1d0", "fields": {"nom_de_la_commune": "VILLERS ST CHRISTOPHE", "libell_d_acheminement": "VILLERS ST CHRISTOPHE", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02815"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d179b8b032dfc02647bb1ac7e04206b1c7660b", "fields": {"nom_de_la_commune": "VILLENEUVE SUR FERE", "libell_d_acheminement": "VILLENEUVE SUR FERE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02806"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88872b8208dec529cfa810e9c09bbe9616cb4cdf", "fields": {"nom_de_la_commune": "VILLEQUIER AUMONT", "libell_d_acheminement": "VILLEQUIER AUMONT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02807"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00796420564d3bbd6a85aa5452760a7ca481fbba", "fields": {"nom_de_la_commune": "VILLEMONTOIRE", "libell_d_acheminement": "VILLEMONTOIRE", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02804"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de422d57c87a4a4c50754b09f75cfaf0941d6a34", "fields": {"nom_de_la_commune": "LE VERGUIER", "libell_d_acheminement": "LE VERGUIER", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02782"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7c79216600ab9def6e53a829a491dd91e9ab0d", "fields": {"nom_de_la_commune": "PETIT VERLY", "libell_d_acheminement": "PETIT VERLY", "code_postal": "02630", "coordonnees_gps": [49.9922293283, 3.57095592896], "code_commune_insee": "02784"}, "geometry": {"type": "Point", "coordinates": [3.57095592896, 49.9922293283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ae17d0dc1ec665aece6f3a8b2f6750e2414e31", "fields": {"nom_de_la_commune": "VAUXREZIS", "libell_d_acheminement": "VAUXREZIS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02767"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9da7bef4e1cec453bf3bd37631fec966c960c5", "fields": {"nom_de_la_commune": "VENDIERES", "libell_d_acheminement": "VENDIERES", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02777"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41362695ce7c83b1ad331e2c2968130237b0926b", "fields": {"nom_de_la_commune": "VASSENY", "libell_d_acheminement": "VASSENY", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02763"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232813b8fa86b52c0da2f6991249ba825f2072f9", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX CHASSES", "libell_d_acheminement": "LA CHAPELLE AUX CHASSES", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03057"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be073fca2005d67f3107e3b5d699727c52a694a7", "fields": {"nom_de_la_commune": "CREUZIER LE VIEUX", "libell_d_acheminement": "CREUZIER LE VIEUX", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03094"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17026a843a34df931d01facdb7df374ea99acadf", "fields": {"nom_de_la_commune": "DROITURIER", "libell_d_acheminement": "DROITURIER", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03105"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84447d3c71b31ba0c32ef5dad76f23b58c6ae687", "fields": {"nom_de_la_commune": "CHOUVIGNY", "libell_d_acheminement": "CHOUVIGNY", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03078"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4162e60228bfdb111429ed1134fec24707b5db9c", "fields": {"nom_de_la_commune": "COULANDON", "libell_d_acheminement": "COULANDON", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03085"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1284683f64195e269d32b7d497b5c6fc414d669f", "fields": {"nom_de_la_commune": "CHANTELLE", "libell_d_acheminement": "CHANTELLE", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03053"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0dbe8650e7aeb4e64c0934e757dce971a46441", "fields": {"nom_de_la_commune": "CHEVAGNES", "libell_d_acheminement": "CHEVAGNES", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03074"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb1ab5fd471eb9395fec0cf7a7e5b6f08940c2c", "fields": {"nom_de_la_commune": "CHATELUS", "libell_d_acheminement": "CHATELUS", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03068"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df0eca0ec8722b9fd9f5489da15f3cb79bfc8fc", "fields": {"nom_de_la_commune": "CHARMEIL", "libell_d_acheminement": "CHARMEIL", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03060"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d541290eb40e7d5772f467246da585892f88886", "fields": {"nom_de_la_commune": "CINDRE", "libell_d_acheminement": "CINDRE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03079"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d84830b7e27a9e9b08b03cf068e27b9ad2ba72", "fields": {"nom_de_la_commune": "BEAUNE D ALLIER", "libell_d_acheminement": "BEAUNE D ALLIER", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03020"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46349b824cc700feda244ca70f5f04fe5e07d3d9", "fields": {"nom_de_la_commune": "BARBERIER", "libell_d_acheminement": "BARBERIER", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03016"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a44c257ef5b9210b905c0035695615b053e8f04", "fields": {"nom_de_la_commune": "VIVIERES", "libell_d_acheminement": "VIVIERES", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02822"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c24520d0d2411cfdd13630d8c1b058f96176f60", "fields": {"nom_de_la_commune": "CHAMBLET", "libell_d_acheminement": "CHAMBLET", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03052"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32bbda1c75e260bd81ffaca9cc59678e5db55f32", "fields": {"nom_de_la_commune": "WATIGNY", "libell_d_acheminement": "WATIGNY", "code_postal": "02830", "coordonnees_gps": [49.9229668289, 4.16909562963], "code_commune_insee": "02831"}, "geometry": {"type": "Point", "coordinates": [4.16909562963, 49.9229668289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d6a675f949da1fdffad69376a84bb4b157978c", "fields": {"nom_de_la_commune": "AVERMES", "libell_d_acheminement": "AVERMES", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03013"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d71a273b3abf119ca1e95815d6aa00414dd08e", "fields": {"nom_de_la_commune": "AGONGES", "libell_d_acheminement": "AGONGES", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03002"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6834b3b9b0a1303380c3d5ea4e4ae13b1b5b59", "fields": {"nom_de_la_commune": "BRESNAY", "libell_d_acheminement": "BRESNAY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03039"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6adb011e5d338e3d23ecfa2202fab0428f065649", "fields": {"nom_de_la_commune": "VREGNY", "libell_d_acheminement": "VREGNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02828"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3751f53e4af1f1f1db2b8ea1fd0564086f96d4d5", "fields": {"nom_de_la_commune": "AUDES", "libell_d_acheminement": "AUDES", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03010"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bda712648a9c8f769a6986ab24441ea67b07501", "fields": {"code_postal": "04340", "code_commune_insee": "04161", "libell_d_acheminement": "MEOLANS REVEL", "ligne_5": "MEOLANS", "nom_de_la_commune": "MEOLANS REVEL", "coordonnees_gps": [44.4048142358, 6.43134796483]}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2229fe1be4642e861af8c4cbb8bc2ec8226f681", "fields": {"nom_de_la_commune": "LA ROBINE SUR GALABRE", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "code_postal": "04000", "coordonnees_gps": [44.1282802436, 6.25179168531], "code_commune_insee": "04167"}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103229d31246cdbf80ec46126bc31b2facc7017d", "fields": {"nom_de_la_commune": "ST VINCENT LES FORTS", "libell_d_acheminement": "ST VINCENT LES FORTS", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04198"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76f656ee25c842a4cedb8105790f94f955eef46", "fields": {"nom_de_la_commune": "ST PAUL SUR UBAYE", "libell_d_acheminement": "ST PAUL SUR UBAYE", "code_postal": "04530", "coordonnees_gps": [44.529721781, 6.79644418503], "code_commune_insee": "04193"}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8bae90cfbf89f1010ceb3199979cf1d242ff31b", "fields": {"nom_de_la_commune": "PIERRERUE", "libell_d_acheminement": "PIERRERUE", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04151"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bae89d6af506ce598cdff0aa43f75ef44d0fec", "fields": {"code_postal": "02700", "code_commune_insee": "02738", "libell_d_acheminement": "TERGNIER", "ligne_5": "QUESSY", "nom_de_la_commune": "TERGNIER", "coordonnees_gps": [49.6402663387, 3.29629531322]}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623cc90d2887825581cc9781ada8313c30252f9f", "fields": {"nom_de_la_commune": "TOULIS ET ATTENCOURT", "libell_d_acheminement": "TOULIS ET ATTENCOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02745"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4dddb5aaa24962beaa65fc2e78d368be22b190", "fields": {"nom_de_la_commune": "VAILLY SUR AISNE", "libell_d_acheminement": "VAILLY SUR AISNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02758"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef63a52b49ee82c2aa9d36c38a8ac0406abbd59", "fields": {"nom_de_la_commune": "UGNY LE GAY", "libell_d_acheminement": "UGNY LE GAY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02754"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f19c4953bcbe085365716f54a61b3780d46ef3", "fields": {"nom_de_la_commune": "TERNY SORNY", "libell_d_acheminement": "TERNY SORNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02739"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50c900d82318b9ad130a4c303216312ba60ee69", "fields": {"nom_de_la_commune": "VARISCOURT", "libell_d_acheminement": "VARISCOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02761"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a4656be89441c884237b7deec05577f0f7c8f0", "fields": {"nom_de_la_commune": "TARTIERS", "libell_d_acheminement": "TARTIERS", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02736"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a10ed33f91dd7b6fa12ab18a1d7a76c032abfe4", "fields": {"nom_de_la_commune": "LE SOURD", "libell_d_acheminement": "LE SOURD", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02731"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fe7cb185014da671eeb9d3814c13c3142b5fd5e", "fields": {"nom_de_la_commune": "THIERNU", "libell_d_acheminement": "THIERNU", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02742"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e80a2905d160420ea64b029857446348e273c1e", "fields": {"nom_de_la_commune": "TRUCY", "libell_d_acheminement": "TRUCY", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02751"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c783b3432069c30df0a69e458836605385fe1bff", "fields": {"code_postal": "04320", "code_commune_insee": "04043", "libell_d_acheminement": "VAL DE CHALVAGNE", "ligne_5": "MONTBLANC", "nom_de_la_commune": "VAL DE CHALVAGNE", "coordonnees_gps": [43.9774312961, 6.76983906157]}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2936bdb4aaf17eda58d5a9276f9c1ee0dacd445b", "fields": {"code_postal": "04250", "code_commune_insee": "04023", "libell_d_acheminement": "BAYONS", "ligne_5": "ESPARRON LA BATIE", "nom_de_la_commune": "BAYONS", "coordonnees_gps": [44.3409779854, 6.11647395481]}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c44906f677baaeca7267a7850280d8814f615e8", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "TAULANNE", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "befc0b6c89f7c2163c04c117bd3c7558e0f84ee5", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "TALOIRE", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2605ef94d96a8187588ded15d0f96e5fe2183a5c", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "EOULX", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6492ce15186303e8d0a8bebd4b9e70f91162a1d8", "fields": {"nom_de_la_commune": "CHATEAU ARNOUX ST AUBAN", "libell_d_acheminement": "CHATEAU ARNOUX ST AUBAN", "code_postal": "04160", "coordonnees_gps": [44.0832938785, 6.01511256781], "code_commune_insee": "04049"}, "geometry": {"type": "Point", "coordinates": [6.01511256781, 44.0832938785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f07a1d5cbd4e6e9444bc204d77b821191f3719", "fields": {"nom_de_la_commune": "CASTELLET LES SAUSSES", "libell_d_acheminement": "CASTELLET LES SAUSSES", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04042"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbab481f631892ccce7e312ed5a50951b0d000e", "fields": {"nom_de_la_commune": "CHAUDON NORANTE", "libell_d_acheminement": "CHAUDON NORANTE", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04055"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9b1ca42ee6cc3edc0c069b21068a98947a3202", "fields": {"nom_de_la_commune": "CHATEAUREDON", "libell_d_acheminement": "CHATEAUREDON", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04054"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59781b5fa144a97d639992f2b665a0871c8729a2", "fields": {"nom_de_la_commune": "BRUNET", "libell_d_acheminement": "BRUNET", "code_postal": "04210", "coordonnees_gps": [43.8471806316, 5.95950406566], "code_commune_insee": "04035"}, "geometry": {"type": "Point", "coordinates": [5.95950406566, 43.8471806316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44ced6e7dc4ee72ae657d24c5c41006d77d6f9d", "fields": {"nom_de_la_commune": "VILLENEUVE SUR ALLIER", "libell_d_acheminement": "VILLENEUVE SUR ALLIER", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03316"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eaa22683cb1307bb3905ea6dc8e6a167607db4c", "fields": {"nom_de_la_commune": "VARENNES SUR ALLIER", "libell_d_acheminement": "VARENNES SUR ALLIER", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03298"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36023607c6c969a5cced88d0a8e9079ae1e18dc", "fields": {"nom_de_la_commune": "AUBENAS LES ALPES", "libell_d_acheminement": "AUBENAS LES ALPES", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04012"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ad89909216f9587a7779458e45ad8205b73ec8", "fields": {"nom_de_la_commune": "USSEL D ALLIER", "libell_d_acheminement": "USSEL D ALLIER", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03294"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9f9c97dad92cf2931a9ce372a3526ae0915bd6", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "03200", "coordonnees_gps": [46.1075083503, 3.45428306112], "code_commune_insee": "03306"}, "geometry": {"type": "Point", "coordinates": [3.45428306112, 46.1075083503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5515e324edc88f71d10296826da8c7c60b2f386d", "fields": {"nom_de_la_commune": "YGRANDE", "libell_d_acheminement": "YGRANDE", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03320"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822b6fceb4f3fe208600949cdffb1646c7d50834", "fields": {"nom_de_la_commune": "VIPLAIX", "libell_d_acheminement": "VIPLAIX", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03317"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1480e2eca42ef6807192da282512ac5973d6bf", "fields": {"nom_de_la_commune": "BARRAS", "libell_d_acheminement": "BARRAS", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04021"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5c189323acdaf472611cd5760b4149113fe36f", "fields": {"nom_de_la_commune": "VENDAT", "libell_d_acheminement": "VENDAT", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03304"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f708d6a059ba598424b0336c353feaab3df713", "fields": {"nom_de_la_commune": "VENAS", "libell_d_acheminement": "VENAS", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03303"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2cee13d4a8b62f0199391fd0a30d3a77e46fe4", "fields": {"nom_de_la_commune": "SAINS RICHAUMONT", "libell_d_acheminement": "SAINS RICHAUMONT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02668"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf6f1c01cf3c668acff89ea31d5510a77000b6a", "fields": {"nom_de_la_commune": "ROZOY BELLEVALLE", "libell_d_acheminement": "ROZOY BELLEVALLE", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02664"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8639cd6051d2f7406bd475ec5224e53c01b4522", "fields": {"nom_de_la_commune": "ROZOY SUR SERRE", "libell_d_acheminement": "ROZOY SUR SERRE", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02666"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed0cbb10eeff1f063a52d6364ff039064837847", "fields": {"nom_de_la_commune": "ROZET ST ALBIN", "libell_d_acheminement": "ROZET ST ALBIN", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02662"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a358b769e1f268c01cbe40dbf96cc77850ee0b4", "fields": {"nom_de_la_commune": "BEUTIN", "libell_d_acheminement": "BEUTIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62124"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d213db8cea88c70f9737de58a938aff2a46d172", "fields": {"nom_de_la_commune": "BIEFVILLERS LES BAPAUME", "libell_d_acheminement": "BIEFVILLERS LES BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62129"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34e6b8ef4464ee85e71aef4582f5b296b8359b52", "fields": {"nom_de_la_commune": "BILLY BERCLAU", "libell_d_acheminement": "BILLY BERCLAU", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62132"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a069d5ab2cec5415ecca75174a007e4ea65fc74a", "fields": {"nom_de_la_commune": "BLAIRVILLE", "libell_d_acheminement": "BLAIRVILLE", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62135"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d09eae3bae3bae96603738030632eb51079a9e", "fields": {"nom_de_la_commune": "BOIRY BECQUERELLE", "libell_d_acheminement": "BOIRY BECQUERELLE", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62144"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527df18b5952e6f68b47630a7d280f4082fd8380", "fields": {"nom_de_la_commune": "BOIRY ST MARTIN", "libell_d_acheminement": "BOIRY ST MARTIN", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62146"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a0ce2b973f518a23f4dc38265d5f8d3c31050e", "fields": {"nom_de_la_commune": "BOIRY STE RICTRUDE", "libell_d_acheminement": "BOIRY STE RICTRUDE", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62147"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ee0be3c4b6fd43b89d7c4b70f8ed7ea921607d", "fields": {"nom_de_la_commune": "BOMY", "libell_d_acheminement": "BOMY", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62153"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae55eb5c8ff2c403625c9c2d2441dce733d4a8e", "fields": {"nom_de_la_commune": "BOUBERS LES HESMOND", "libell_d_acheminement": "BOUBERS LES HESMOND", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62157"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa79622a083acaf89c0ec07a84a4ca28808ee59", "fields": {"nom_de_la_commune": "BOUBERS SUR CANCHE", "libell_d_acheminement": "BOUBERS SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62158"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fab7791afdb27197e36e9001610c3b9ed4050bb", "fields": {"nom_de_la_commune": "BOURNONVILLE", "libell_d_acheminement": "BOURNONVILLE", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62165"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48542f5055a2b5742a3b6d473cccff0095af91cf", "fields": {"nom_de_la_commune": "BOUVIGNY BOYEFFLES", "libell_d_acheminement": "BOUVIGNY BOYEFFLES", "code_postal": "62172", "coordonnees_gps": [50.4226151051, 2.67356839978], "code_commune_insee": "62170"}, "geometry": {"type": "Point", "coordinates": [2.67356839978, 50.4226151051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3875719dfc486a07cd58fca51048de2d5d328297", "fields": {"nom_de_la_commune": "BREVILLERS", "libell_d_acheminement": "BREVILLERS", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62175"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622fd80c4c7a340eccdcd5149b3c096f87456aa9", "fields": {"code_postal": "62700", "code_commune_insee": "62178", "libell_d_acheminement": "BRUAY LA BUISSIERE", "ligne_5": "LABUISSIERE", "nom_de_la_commune": "BRUAY LA BUISSIERE", "coordonnees_gps": [50.489902932, 2.55175766281]}, "geometry": {"type": "Point", "coordinates": [2.55175766281, 50.489902932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cfaef9ea4fec6e443172c029870020a011137d", "fields": {"nom_de_la_commune": "BUS", "libell_d_acheminement": "BUS", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62189"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2c504377bf29f2afe4d5da93952d49cc62ea19", "fields": {"nom_de_la_commune": "CALONNE RICOUART", "libell_d_acheminement": "CALONNE RICOUART", "code_postal": "62470", "coordonnees_gps": [50.4810470816, 2.46209198935], "code_commune_insee": "62194"}, "geometry": {"type": "Point", "coordinates": [2.46209198935, 50.4810470816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e205d04c2c0c16b285fb17e93829bd6f6b84fd96", "fields": {"nom_de_la_commune": "CAMBRIN", "libell_d_acheminement": "CAMBRIN", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62200"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddbcf0b579d5c69086b35193d546a32d536caadf", "fields": {"nom_de_la_commune": "CAMIERS", "libell_d_acheminement": "CAMIERS", "code_postal": "62176", "coordonnees_gps": [50.5643841007, 1.61258915324], "code_commune_insee": "62201"}, "geometry": {"type": "Point", "coordinates": [1.61258915324, 50.5643841007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573df694c60891c5671156b2ec239536d4a94ccc", "fields": {"nom_de_la_commune": "CANETTEMONT", "libell_d_acheminement": "CANETTEMONT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62208"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebbdb8ac2dfdeaf1787d184382c0b55ae5bb40af", "fields": {"nom_de_la_commune": "CLENLEU", "libell_d_acheminement": "CLENLEU", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62227"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c7072892fe55dc6a79875f282f7decba3528e7", "fields": {"nom_de_la_commune": "COQUELLES", "libell_d_acheminement": "COQUELLES", "code_postal": "62231", "coordonnees_gps": [50.929758247, 1.77843645708], "code_commune_insee": "62239"}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9ac063a5268b4096ea2ac6e4456895b67f24c7", "fields": {"nom_de_la_commune": "COURCELLES LE COMTE", "libell_d_acheminement": "COURCELLES LE COMTE", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62248"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0a0ca776d45a19b411d7a9e8b08ff4f0699e5a", "fields": {"nom_de_la_commune": "COURRIERES", "libell_d_acheminement": "COURRIERES", "code_postal": "62710", "coordonnees_gps": [50.4533636722, 2.94632750771], "code_commune_insee": "62250"}, "geometry": {"type": "Point", "coordinates": [2.94632750771, 50.4533636722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f86a3ab33c55617f4869554b6edcc2cd56c67335", "fields": {"nom_de_la_commune": "COURSET", "libell_d_acheminement": "COURSET", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62251"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afc4c720bf7cf05c50e76f3bf598ac88db9cc16", "fields": {"nom_de_la_commune": "CROIX EN TERNOIS", "libell_d_acheminement": "CROIX EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62260"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbcc043d8d7e25d30a4761c1e209b8c9b69bd133", "fields": {"code_postal": "62780", "code_commune_insee": "62261", "libell_d_acheminement": "CUCQ", "ligne_5": "STELLA", "nom_de_la_commune": "CUCQ", "coordonnees_gps": [50.4862400419, 1.61385342585]}, "geometry": {"type": "Point", "coordinates": [1.61385342585, 50.4862400419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e42729957488380489233af6db3ae6081889cc", "fields": {"code_postal": "62780", "code_commune_insee": "62261", "libell_d_acheminement": "CUCQ", "ligne_5": "TREPIED", "nom_de_la_commune": "CUCQ", "coordonnees_gps": [50.4862400419, 1.61385342585]}, "geometry": {"type": "Point", "coordinates": [1.61385342585, 50.4862400419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d746042f608134f30bdc33d4c7cd4314bd48a01", "fields": {"nom_de_la_commune": "DOUDEAUVILLE", "libell_d_acheminement": "DOUDEAUVILLE", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62273"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a891f5e0902bc0dcfa3926f2a94de647dfce26", "fields": {"nom_de_la_commune": "ECOIVRES", "libell_d_acheminement": "ECOIVRES", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62283"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1b239e4297f3333ca03d55ea81009964ee427c", "fields": {"nom_de_la_commune": "ECQUES", "libell_d_acheminement": "ECQUES", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62288"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb07f72b8e19b07e8f2a9b05b1c85d76618df179", "fields": {"nom_de_la_commune": "EMBRY", "libell_d_acheminement": "EMBRY", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62293"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3863293722d79c0a9e99e3e882561152d347fd5", "fields": {"nom_de_la_commune": "ESCOEUILLES", "libell_d_acheminement": "ESCOEUILLES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62308"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012297a5b56fc7c6877785caf04f3ce766983675", "fields": {"nom_de_la_commune": "ESSARS", "libell_d_acheminement": "ESSARS", "code_postal": "62400", "coordonnees_gps": [50.5494833407, 2.65621048886], "code_commune_insee": "62310"}, "geometry": {"type": "Point", "coordinates": [2.65621048886, 50.5494833407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6ac9de49fbc81677ee7e425d0b905d8c27e293", "fields": {"nom_de_la_commune": "ESTEVELLES", "libell_d_acheminement": "ESTEVELLES", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62311"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37757dbe9bfa59aa21406bd76656ef9901778d3", "fields": {"nom_de_la_commune": "EVIN MALMAISON", "libell_d_acheminement": "EVIN MALMAISON", "code_postal": "62141", "coordonnees_gps": [50.4349292384, 3.03040414257], "code_commune_insee": "62321"}, "geometry": {"type": "Point", "coordinates": [3.03040414257, 50.4349292384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d876ae74a0a6591260c0d1df9f32037f2af00d", "fields": {"nom_de_la_commune": "FAUQUEMBERGUES", "libell_d_acheminement": "FAUQUEMBERGUES", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62325"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a4ccb421e2a75843c1c464551e6533e1aeeb24", "fields": {"nom_de_la_commune": "FERQUES", "libell_d_acheminement": "FERQUES", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62329"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcbd2f026f29325b5f54de5715b8bcda59f8201f", "fields": {"nom_de_la_commune": "FIEFS", "libell_d_acheminement": "FIEFS", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62333"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d012cde5f7bc8d0ca6fbb3a22da0fa01585f31", "fields": {"nom_de_la_commune": "FLERS", "libell_d_acheminement": "FLERS", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62337"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76dd1fccf1962b8f9ce6cbea9eba2a8de657c4e3", "fields": {"nom_de_la_commune": "FOUQUIERES LES BETHUNE", "libell_d_acheminement": "FOUQUIERES LES BETHUNE", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62350"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b9883915ec0ad397c2fbad29255f6e2335c0e0e", "fields": {"nom_de_la_commune": "FRESNOY EN GOHELLE", "libell_d_acheminement": "FRESNOY EN GOHELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62358"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6c18086e8a2cbeb4d1da85a5d9b226dc95766e", "fields": {"nom_de_la_commune": "FREVENT", "libell_d_acheminement": "FREVENT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62361"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29e4cdbf2f66f4b6f93b43fc15dc07b878f4469b", "fields": {"nom_de_la_commune": "FREVIN CAPELLE", "libell_d_acheminement": "FREVIN CAPELLE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62363"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d3213da446e686c472f86ee1eaea4e97a0c7b4", "fields": {"nom_de_la_commune": "GAUCHIN VERLOINGT", "libell_d_acheminement": "GAUCHIN VERLOINGT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62367"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87f742c462abf4a898a0908c14c78a3a63f8e56", "fields": {"nom_de_la_commune": "GAUDIEMPRE", "libell_d_acheminement": "GAUDIEMPRE", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62368"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc14d98fdd272dfd01d72ba6d80a016e6a8255e9", "fields": {"nom_de_la_commune": "GENNES IVERGNY", "libell_d_acheminement": "GENNES IVERGNY", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62370"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce94160589deeeb6d1b93d4d306ef666b2c0f2e", "fields": {"nom_de_la_commune": "GIVENCHY LE NOBLE", "libell_d_acheminement": "GIVENCHY LE NOBLE", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62372"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf79682eaa2387060c15ef134dbaa8becd367226", "fields": {"nom_de_la_commune": "GOUY EN ARTOIS", "libell_d_acheminement": "GOUY EN ARTOIS", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62379"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e67103cb689a07097e7a4164febc0c6aaa5156f", "fields": {"nom_de_la_commune": "GOUY EN TERNOIS", "libell_d_acheminement": "GOUY EN TERNOIS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62381"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe054ed7e4fd60526e9fc03fd5a3b383da4eba1", "fields": {"nom_de_la_commune": "GRENAY", "libell_d_acheminement": "GRENAY", "code_postal": "62160", "coordonnees_gps": [50.434305501, 2.71988094941], "code_commune_insee": "62386"}, "geometry": {"type": "Point", "coordinates": [2.71988094941, 50.434305501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00bf4420bfa3319f3e0d22b522afe2eb9b736f9e", "fields": {"nom_de_la_commune": "GUEMPS", "libell_d_acheminement": "GUEMPS", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62393"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab52dfb16764a3e88021d2c3a56978d7d8a02d4", "fields": {"nom_de_la_commune": "GUINES", "libell_d_acheminement": "GUINES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62397"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1fcc15620a00589d5f5a8fe8a5ede7b37d5bcf8", "fields": {"nom_de_la_commune": "HAUTE AVESNES", "libell_d_acheminement": "HAUTE AVESNES", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62415"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744898d2a62a35d5fee9acfc28d29cbeaa71f41b", "fields": {"nom_de_la_commune": "HAUTECLOQUE", "libell_d_acheminement": "HAUTECLOQUE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62416"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0c1b371b3c2fdd6ad12d3405e477010d3cbea0", "fields": {"nom_de_la_commune": "HENIN BEAUMONT", "libell_d_acheminement": "HENIN BEAUMONT", "code_postal": "62110", "coordonnees_gps": [50.4089896838, 2.9592962532], "code_commune_insee": "62427"}, "geometry": {"type": "Point", "coordinates": [2.9592962532, 50.4089896838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16037bf36ffd0ca47a30f6f88c230ce967e735ae", "fields": {"nom_de_la_commune": "HERLY", "libell_d_acheminement": "HERLY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62437"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999d7d9bb7cc12679da5e2401f8db30fb12c8436", "fields": {"nom_de_la_commune": "HERMIN", "libell_d_acheminement": "HERMIN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62441"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497201d0b93e9ba8d35fc74436b9abba049c793e", "fields": {"nom_de_la_commune": "HESDIGNEUL LES BETHUNE", "libell_d_acheminement": "HESDIGNEUL LES BETHUNE", "code_postal": "62196", "coordonnees_gps": [50.4965295651, 2.59665402967], "code_commune_insee": "62445"}, "geometry": {"type": "Point", "coordinates": [2.59665402967, 50.4965295651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d78b7379fcc65a6c70379259139970a54cb29a", "fields": {"nom_de_la_commune": "HEUCHIN", "libell_d_acheminement": "HEUCHIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62451"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137ee3f013c670b2c90c96184fe3b7d2d6998027", "fields": {"nom_de_la_commune": "HEURINGHEM", "libell_d_acheminement": "HEURINGHEM", "code_postal": "62575", "coordonnees_gps": [50.7082994019, 2.28233236739], "code_commune_insee": "62452"}, "geometry": {"type": "Point", "coordinates": [2.28233236739, 50.7082994019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee0fdba9c20213124cfb14cbe6d7139b0fb3575", "fields": {"nom_de_la_commune": "HOUVIN HOUVIGNEUL", "libell_d_acheminement": "HOUVIN HOUVIGNEUL", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62459"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ab0d587fb48d1a801652d353eeec64d3d15f18", "fields": {"nom_de_la_commune": "HULLUCH", "libell_d_acheminement": "HULLUCH", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62464"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980744ad8ee3a9f95930b6ad6b756e3c7c8a985d", "fields": {"nom_de_la_commune": "HUMBERCAMPS", "libell_d_acheminement": "HUMBERCAMPS", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62465"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17225bd40cb7614557892eb5e46828a0882e9f1", "fields": {"nom_de_la_commune": "HUMEROEUILLE", "libell_d_acheminement": "HUMEROEUILLE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62467"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83aa836884988a492bc89e11466488d9390327f1", "fields": {"nom_de_la_commune": "INGHEM", "libell_d_acheminement": "INGHEM", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62471"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2665e48bec0ad9504534990aebe828e900bb5ce7", "fields": {"nom_de_la_commune": "IVERGNY", "libell_d_acheminement": "IVERGNY", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62475"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79748e4b1ca2ed09ca060d953b558fb5f42fc0ad", "fields": {"nom_de_la_commune": "IZEL LES EQUERCHIN", "libell_d_acheminement": "IZEL LES EQUERCHIN", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62476"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999791e9b90d7fc84615a74275b7042b87b8c14c", "fields": {"nom_de_la_commune": "LATTRE ST QUENTIN", "libell_d_acheminement": "LATTRE ST QUENTIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62490"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d47e188a6f3ab9d944c3767e84d48c8bba060cb", "fields": {"nom_de_la_commune": "LEBUCQUIERE", "libell_d_acheminement": "LEBUCQUIERE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62493"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f68a74ea010a54baf40d961499c76ca760923c", "fields": {"nom_de_la_commune": "LEFOREST", "libell_d_acheminement": "LEFOREST", "code_postal": "62790", "coordonnees_gps": [50.4402178935, 3.05867311112], "code_commune_insee": "62497"}, "geometry": {"type": "Point", "coordinates": [3.05867311112, 50.4402178935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054619076eff78fbce21cebb9b1b8809a9452e23", "fields": {"nom_de_la_commune": "LIETTRES", "libell_d_acheminement": "LIETTRES", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62509"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9457c0ea16bf77f00038c7461ad384b6f6a73f", "fields": {"nom_de_la_commune": "LIEVIN", "libell_d_acheminement": "LIEVIN", "code_postal": "62800", "coordonnees_gps": [50.4242897318, 2.77286861156], "code_commune_insee": "62510"}, "geometry": {"type": "Point", "coordinates": [2.77286861156, 50.4242897318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb2fb0632daf7461e1dbcae9e014e90494275e1", "fields": {"nom_de_la_commune": "LIGNEREUIL", "libell_d_acheminement": "LIGNEREUIL", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62511"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c61bc773529479ce555f94043f5c3d80b642dd6b", "fields": {"nom_de_la_commune": "LINZEUX", "libell_d_acheminement": "LINZEUX", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62518"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae90e65ae88f96cd08cbdc748a98b4a3ad75ff27", "fields": {"nom_de_la_commune": "LISBOURG", "libell_d_acheminement": "LISBOURG", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62519"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee98e73099c1bd27e14e8201cf28be579f0b71b", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62526"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ebb4ccd3742cdae53ffd410790dda762f32cd2", "fields": {"nom_de_la_commune": "LOOS EN GOHELLE", "libell_d_acheminement": "LOOS EN GOHELLE", "code_postal": "62750", "coordonnees_gps": [50.4566891569, 2.78542373274], "code_commune_insee": "62528"}, "geometry": {"type": "Point", "coordinates": [2.78542373274, 50.4566891569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26719194e943f8747eaf201859c1747e75e482d2", "fields": {"nom_de_la_commune": "LOUCHES", "libell_d_acheminement": "LOUCHES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62531"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409affbcfc6cfe8015d42ef1feec08379a00fea3", "fields": {"nom_de_la_commune": "MAINTENAY", "libell_d_acheminement": "MAINTENAY", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62538"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d90fe8da1eeefad46d855d904b12c4c3a0efaa", "fields": {"nom_de_la_commune": "MAISNIL LES RUITZ", "libell_d_acheminement": "MAISNIL LES RUITZ", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62540"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c415369a04a1dc70dfa54d006a95df2ec5a19f12", "fields": {"nom_de_la_commune": "MAISONCELLE", "libell_d_acheminement": "MAISONCELLE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62541"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5944d7a2e151386cb5c6f5273e0025a730db3b", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62542"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bc27da3ec0094a1833b09b56275917db26ccf7", "fields": {"nom_de_la_commune": "MANINGHEM", "libell_d_acheminement": "MANINGHEM", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62545"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a6221ff74764f80d4fdaf769d829c9d201bb0f", "fields": {"nom_de_la_commune": "MAREST", "libell_d_acheminement": "MAREST", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62553"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1786937a0e04d539ac43596fd3dab07a542b17", "fields": {"nom_de_la_commune": "MARLES SUR CANCHE", "libell_d_acheminement": "MARLES SUR CANCHE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62556"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adaebca9274a8ef5bbe0838ddba732a35f5246a", "fields": {"nom_de_la_commune": "MENCAS", "libell_d_acheminement": "MENCAS", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62565"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0108e954cb9ffb2734722aa38a4c564088dd38ad", "fields": {"nom_de_la_commune": "MEURCHIN", "libell_d_acheminement": "MEURCHIN", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62573"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b165e5f7e98bd1576daaa4ed0420dab9f8b49628", "fields": {"nom_de_la_commune": "MORINGHEM", "libell_d_acheminement": "MORINGHEM", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62592"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1df406d771e20c702fcdc778a0a47ca9b83605a8", "fields": {"nom_de_la_commune": "MORY", "libell_d_acheminement": "MORY", "code_postal": "62159", "coordonnees_gps": [50.1507346874, 2.907151936], "code_commune_insee": "62594"}, "geometry": {"type": "Point", "coordinates": [2.907151936, 50.1507346874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f79300d33a0f6372a466449592f981727b2975", "fields": {"nom_de_la_commune": "NABRINGHEN", "libell_d_acheminement": "NABRINGHEN", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62599"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7085e85a311ab2cd1776e5929cec73df0b731bca", "fields": {"nom_de_la_commune": "NEDONCHEL", "libell_d_acheminement": "NEDONCHEL", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62601"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ddcfd8b0fa8423672437b281d40b3b618541452", "fields": {"nom_de_la_commune": "NEMPONT ST FIRMIN", "libell_d_acheminement": "NEMPONT ST FIRMIN", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62602"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d888775f985e3011f6232bb40fc0fcf5ac62be", "fields": {"nom_de_la_commune": "NEUVILLE VITASSE", "libell_d_acheminement": "NEUVILLE VITASSE", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62611"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2bcb08049fea4230b57a740e23cde823094b96", "fields": {"nom_de_la_commune": "NEUVIREUIL", "libell_d_acheminement": "NEUVIREUIL", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62612"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf56b98a78bbe7199b90473c1604cb804dcbbf11", "fields": {"nom_de_la_commune": "NIELLES LES ARDRES", "libell_d_acheminement": "NIELLES LES ARDRES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62614"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639ae60c0ccee8e2e7c5f10a9b38f3502b9aae41", "fields": {"nom_de_la_commune": "NORRENT FONTES", "libell_d_acheminement": "NORRENT FONTES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62620"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e961209404039dfe0760710daf1948fff62a78e", "fields": {"nom_de_la_commune": "NORTKERQUE", "libell_d_acheminement": "NORTKERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62621"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6a3d35332365e34199903bcf9bfaf7109eb322", "fields": {"nom_de_la_commune": "NOYELLES LES VERMELLES", "libell_d_acheminement": "NOYELLES LES VERMELLES", "code_postal": "62980", "coordonnees_gps": [50.4874081361, 2.75177824999], "code_commune_insee": "62626"}, "geometry": {"type": "Point", "coordinates": [2.75177824999, 50.4874081361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ae47d2bedaf2e979f82ea66a3c1e6d33aedd24", "fields": {"nom_de_la_commune": "NOYELLETTE", "libell_d_acheminement": "NOYELLETTE", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62629"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10369d00cd48310064238c7811dd4dfb6c185580", "fields": {"code_postal": "62270", "code_commune_insee": "62631", "libell_d_acheminement": "NUNCQ HAUTECOTE", "ligne_5": "HAUTECOTE", "nom_de_la_commune": "NUNCQ HAUTECOTE", "coordonnees_gps": [50.280518399, 2.28550384111]}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8514665ee13fc01c8ba955928e1facfd40662bee", "fields": {"nom_de_la_commune": "THOIRY", "libell_d_acheminement": "THOIRY", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73293"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1d9c1eaea25634e0cb6fb4b81739fcf710dae2", "fields": {"nom_de_la_commune": "LA THUILE", "libell_d_acheminement": "LA THUILE", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73294"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c2fa9cf3d66b98a0f19319f030c041687a36df", "fields": {"nom_de_la_commune": "TREVIGNIN", "libell_d_acheminement": "TREVIGNIN", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73301"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd703311115b9d07cf849d122f6288ebff9475dd", "fields": {"nom_de_la_commune": "VAL D ISERE", "libell_d_acheminement": "VAL D ISERE", "code_postal": "73150", "coordonnees_gps": [45.431085171, 6.99838882776], "code_commune_insee": "73304"}, "geometry": {"type": "Point", "coordinates": [6.99838882776, 45.431085171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305023c7f5be78cd1641a247a6840798c3c485dd", "fields": {"nom_de_la_commune": "VEREL PRAGONDRAN", "libell_d_acheminement": "VEREL PRAGONDRAN", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73310"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc60e5ffe13acf65642e2ed5f561b14e1d9e5a8", "fields": {"nom_de_la_commune": "VERRENS ARVEY", "libell_d_acheminement": "VERRENS ARVEY", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73312"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547d96289e9050b446e76531ae78a5bc87a990d4", "fields": {"code_postal": "73300", "code_commune_insee": "73318", "libell_d_acheminement": "VILLAREMBERT", "ligne_5": "LE CORBIER", "nom_de_la_commune": "VILLAREMBERT", "coordonnees_gps": [45.2555418724, 6.33510660794]}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494f1d175696be9876e8dac62b1e3a7a69615f67", "fields": {"nom_de_la_commune": "VIMINES", "libell_d_acheminement": "VIMINES", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73326"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40bb79f7f4c331cf86527d20414aa0f985b20da", "fields": {"nom_de_la_commune": "ABONDANCE", "libell_d_acheminement": "ABONDANCE", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74001"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c43543e2949a1eede976a0abb27f54d70c9c9d3", "fields": {"nom_de_la_commune": "ALBY SUR CHERAN", "libell_d_acheminement": "ALBY SUR CHERAN", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74002"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e321d0751f6c8d0a2267478e091fb81efee8d03b", "fields": {"code_postal": "74350", "code_commune_insee": "74006", "libell_d_acheminement": "ALLONZIER LA CAILLE", "ligne_5": "AVREGNY", "nom_de_la_commune": "ALLONZIER LA CAILLE", "coordonnees_gps": [46.0441260373, 6.10638974302]}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b98f5c71fbccced6e40adec880dc5c9f258786c", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74009"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d546ef720ae34a67a770c13948be5e1370bada1", "fields": {"code_postal": "74350", "code_commune_insee": "74009", "libell_d_acheminement": "ANDILLY", "ligne_5": "JUSSY", "nom_de_la_commune": "ANDILLY", "coordonnees_gps": [46.0441260373, 6.10638974302]}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513441e10e4d5ed95f05127daf1ada5c8d359675", "fields": {"nom_de_la_commune": "ANNECY LE VIEUX", "libell_d_acheminement": "ANNECY LE VIEUX", "code_postal": "74940", "coordonnees_gps": [45.9191606664, 6.16129913677], "code_commune_insee": "74011"}, "geometry": {"type": "Point", "coordinates": [6.16129913677, 45.9191606664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac2950208fcaed6f5f358143ebcee499c523340", "fields": {"nom_de_la_commune": "ANTHY SUR LEMAN", "libell_d_acheminement": "ANTHY SUR LEMAN", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74013"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9750f35675fd501af6c375bf4d599e5842949730", "fields": {"nom_de_la_commune": "ARACHES LA FRASSE", "libell_d_acheminement": "ARACHES LA FRASSE", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74014"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccce5f2af0e56ea2525f731e11e13b1f1a84d94e", "fields": {"nom_de_la_commune": "ARBUSIGNY", "libell_d_acheminement": "ARBUSIGNY", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74015"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c686bd0e75ece6282bed820ba5c642d77cdec6d3", "fields": {"nom_de_la_commune": "ARGONAY", "libell_d_acheminement": "ARGONAY", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74019"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa61a16abb6a8764768cae22a7cde80c2d42b63", "fields": {"nom_de_la_commune": "LA BALME DE SILLINGY", "libell_d_acheminement": "LA BALME DE SILLINGY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74026"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a3d1c2aa3c90fd4f704c3c3a2b5a290ad3fcaa", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74031"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30460bcad8209472e22c126997541f1914ee31b9", "fields": {"nom_de_la_commune": "BLUFFY", "libell_d_acheminement": "BLUFFY", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74036"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbf6b161519a02bc8a92bc16b00d9c84483e4c0", "fields": {"nom_de_la_commune": "BRENTHONNE", "libell_d_acheminement": "BRENTHONNE", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74048"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3768246598a6b63307c8ae92b01b6edf45424356", "fields": {"nom_de_la_commune": "BURDIGNIN", "libell_d_acheminement": "BURDIGNIN", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74050"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643fcd96d5bd87431504b47bf9e8c68e8d3ff2e8", "fields": {"nom_de_la_commune": "CERNEX", "libell_d_acheminement": "CERNEX", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74052"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe2d1dafa011008bab8f197972e0fbbe1bb4fce", "fields": {"nom_de_la_commune": "CHAMONIX MONT BLANC", "libell_d_acheminement": "CHAMONIX MONT BLANC", "code_postal": "74400", "coordonnees_gps": [45.931307263, 6.92411845534], "code_commune_insee": "74056"}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194ac5443c0a41eb135d1ddc8000d021c38acc39", "fields": {"code_postal": "74400", "code_commune_insee": "74056", "libell_d_acheminement": "CHAMONIX MONT BLANC", "ligne_5": "ARGENTIERE", "nom_de_la_commune": "CHAMONIX MONT BLANC", "coordonnees_gps": [45.931307263, 6.92411845534]}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caeac705f31cf483edbaec43a1142ec322d2c064", "fields": {"nom_de_la_commune": "CHARVONNEX", "libell_d_acheminement": "CHARVONNEX", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74062"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db75eee500d955d121c3e29a03fe027c9bba4ff", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74065"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3087ce551ef3dc2e3c5490f433a6dc488fd008cd", "fields": {"nom_de_la_commune": "CHESSENAZ", "libell_d_acheminement": "CHESSENAZ", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74071"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2317b61dc82a5e8c45a1dd365f0f9afd03369926", "fields": {"nom_de_la_commune": "CHEVALINE", "libell_d_acheminement": "CHEVALINE", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74072"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71d4ffac43d0eb8d74ff11e6e3f637293c76f1b", "fields": {"nom_de_la_commune": "CHEVRIER", "libell_d_acheminement": "CHEVRIER", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74074"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd174a9fcada49d10d397cb07047e9cacff7a835", "fields": {"nom_de_la_commune": "DESINGY", "libell_d_acheminement": "DESINGY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74100"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b6a86419cad03ef517de7fcad9e1a45dfa0e50", "fields": {"nom_de_la_commune": "DINGY ST CLAIR", "libell_d_acheminement": "DINGY ST CLAIR", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74102"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56935b4a6a05cdd943cd0b72adac1fc29241c3b4", "fields": {"nom_de_la_commune": "ELOISE", "libell_d_acheminement": "ELOISE", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "74109"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b922504ba06804ce4991683663abff8641c1b53b", "fields": {"nom_de_la_commune": "ENTREMONT", "libell_d_acheminement": "ENTREMONT", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74110"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c617029534bb612029ab5fbf7f2cc542fd54082d", "fields": {"nom_de_la_commune": "ETERCY", "libell_d_acheminement": "ETERCY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74117"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf70e936e911694cc2e843369c2ef326790b32b", "fields": {"nom_de_la_commune": "ETREMBIERES", "libell_d_acheminement": "ETREMBIERES", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74118"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91596d6d34da54f85e0116fa47943ed685ff69c", "fields": {"nom_de_la_commune": "GAILLARD", "libell_d_acheminement": "GAILLARD", "code_postal": "74240", "coordonnees_gps": [46.1818310734, 6.20729991716], "code_commune_insee": "74133"}, "geometry": {"type": "Point", "coordinates": [6.20729991716, 46.1818310734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d098b91bda2e26f3345c62812a87b45686ec33b9", "fields": {"nom_de_la_commune": "LES GETS", "libell_d_acheminement": "LES GETS", "code_postal": "74260", "coordonnees_gps": [46.1542788496, 6.66019508475], "code_commune_insee": "74134"}, "geometry": {"type": "Point", "coordinates": [6.66019508475, 46.1542788496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf6a1926484306273980db11ce16fcb4aaa2db5", "fields": {"nom_de_la_commune": "GROISY", "libell_d_acheminement": "GROISY", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74137"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0d1fd91fc513d7e5625975b0347018901a8a75", "fields": {"nom_de_la_commune": "HABERE LULLIN", "libell_d_acheminement": "HABERE LULLIN", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74139"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30767c8a5102876ad2acd0858d6b5a4833368311", "fields": {"nom_de_la_commune": "HABERE POCHE", "libell_d_acheminement": "HABERE POCHE", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74140"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d05d40786b7dcf8811418104083e397b43283b2", "fields": {"nom_de_la_commune": "JUVIGNY", "libell_d_acheminement": "JUVIGNY", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74145"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5453546229b074dc0bca4ec32e36952e2d5fcc55", "fields": {"nom_de_la_commune": "LATHUILE", "libell_d_acheminement": "LATHUILE", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74147"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242dabaa0d9effa0a0f57097a31eaf4ebc5f2cf1", "fields": {"nom_de_la_commune": "LESCHAUX", "libell_d_acheminement": "LESCHAUX", "code_postal": "74320", "coordonnees_gps": [45.8239490995, 6.13040612196], "code_commune_insee": "74148"}, "geometry": {"type": "Point", "coordinates": [6.13040612196, 45.8239490995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "243e4193d2e6c3241b0f9191accac76695eb2bf1", "fields": {"nom_de_la_commune": "LUCINGES", "libell_d_acheminement": "LUCINGES", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74153"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fa7111a20e1d3c6bf13007ecc5624da1e91018", "fields": {"nom_de_la_commune": "LUGRIN", "libell_d_acheminement": "LUGRIN", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74154"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3ab79fd90db2a77eec7e5f6d2c1ab7e0c659e3", "fields": {"nom_de_la_commune": "MARCELLAZ ALBANAIS", "libell_d_acheminement": "MARCELLAZ ALBANAIS", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74161"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145a91130ff33e981a1124b335c8e88357379e94", "fields": {"nom_de_la_commune": "MARGENCEL", "libell_d_acheminement": "MARGENCEL", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74163"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c76691bafc13f4b3247f9a20e5fcda05a913168", "fields": {"nom_de_la_commune": "MARIGNY ST MARCEL", "libell_d_acheminement": "MARIGNY ST MARCEL", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74165"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b3d6607ff975db4d1c52a7bfa2538178aafdde", "fields": {"nom_de_la_commune": "MASSINGY", "libell_d_acheminement": "MASSINGY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74170"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3be84b5b966ba72f59f69c8e9355000795901d", "fields": {"nom_de_la_commune": "MAXILLY SUR LEMAN", "libell_d_acheminement": "MAXILLY SUR LEMAN", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74172"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faab7a6622b2f73dff166e227f39782f63064576", "fields": {"nom_de_la_commune": "MUSIEGES", "libell_d_acheminement": "MUSIEGES", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74195"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db10d9030683711651b53e88805d6e3e4c8850b", "fields": {"nom_de_la_commune": "NANGY", "libell_d_acheminement": "NANGY", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74197"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f648868c73cd3d16461fb204e9a176bf7abe004", "fields": {"nom_de_la_commune": "NAVES PARMELAN", "libell_d_acheminement": "NAVES PARMELAN", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74198"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6344fa67cf4e7f71f1f40838040fdeb11c49c2af", "fields": {"nom_de_la_commune": "NERNIER", "libell_d_acheminement": "NERNIER", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74199"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0da9ced3c516591b7b11df2dceddae6eb65f2b0", "fields": {"nom_de_la_commune": "LES OLLIERES", "libell_d_acheminement": "LES OLLIERES", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74204"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fbdf50e03fa5f3769370e1a73a288b32b60cb7", "fields": {"nom_de_la_commune": "PEILLONNEX", "libell_d_acheminement": "PEILLONNEX", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74209"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54eb6307549c08af83cbe3f281b5f2fda56f00aa", "fields": {"nom_de_la_commune": "QUINTAL", "libell_d_acheminement": "QUINTAL", "code_postal": "74600", "coordonnees_gps": [45.8556562518, 6.080880357], "code_commune_insee": "74219"}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744f5c85a768a8e64870e161790bf2138afaadde", "fields": {"nom_de_la_commune": "REIGNIER ESERY", "libell_d_acheminement": "REIGNIER ESERY", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74220"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42029b3e56774d226bbb4ed401864bb7dd1e5189", "fields": {"nom_de_la_commune": "LA ROCHE SUR FORON", "libell_d_acheminement": "LA ROCHE SUR FORON", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74224"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5ab602e382dcfc509cfb27b7add9b7d252cab7", "fields": {"nom_de_la_commune": "ST ANDRE DE BOEGE", "libell_d_acheminement": "ST ANDRE DE BOEGE", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74226"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6e7d6b09593efd5ad934ff7b116f906d5290d4", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74233"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c88df4ca4dba61eaccbc7617190c222d7701432", "fields": {"nom_de_la_commune": "ST FERREOL", "libell_d_acheminement": "ST FERREOL", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74234"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efac49bd6d0105a162923db0173a614bb0ac8b9", "fields": {"nom_de_la_commune": "ST JORIOZ", "libell_d_acheminement": "ST JORIOZ", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74242"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27e695e097d19e7939477cf4f181ee0b73b99fe", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74244"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c198db048f3c1b487c8d079acb52a18bd4a169", "fields": {"nom_de_la_commune": "ST MARTIN BELLEVUE", "libell_d_acheminement": "ST MARTIN BELLEVUE", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74245"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a68fc891912d201050587df0ba87dc77439da1c", "fields": {"nom_de_la_commune": "ST PAUL EN CHABLAIS", "libell_d_acheminement": "ST PAUL EN CHABLAIS", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74249"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ac1cdf50985cbf9e626fa879bcc482029e1482", "fields": {"nom_de_la_commune": "ST PIERRE EN FAUCIGNY", "libell_d_acheminement": "ST PIERRE EN FAUCIGNY", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74250"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165e51fde7e7f9067b34e99a41044b4b3e39ce04", "fields": {"nom_de_la_commune": "ST SIXT", "libell_d_acheminement": "ST SIXT", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74253"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd94b8ed59cba96190f00bb4bd79b31380545b3", "fields": {"nom_de_la_commune": "SERRAVAL", "libell_d_acheminement": "SERRAVAL", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74265"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "985215dbe95ac528644c362793f86aca85d4140b", "fields": {"nom_de_la_commune": "SERVOZ", "libell_d_acheminement": "SERVOZ", "code_postal": "74310", "coordonnees_gps": [45.9075030886, 6.79745986726], "code_commune_insee": "74266"}, "geometry": {"type": "Point", "coordinates": [6.79745986726, 45.9075030886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbef6fd31c116a3bca950710c9ee4868dd2fe413", "fields": {"code_postal": "74150", "code_commune_insee": "74274", "libell_d_acheminement": "VAL DE FIER", "ligne_5": "SION", "nom_de_la_commune": "VAL DE FIER", "coordonnees_gps": [45.8869887295, 5.94373659019]}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1922246412594a2ceb3c797e0d70a239f754c5", "fields": {"nom_de_la_commune": "TANINGES", "libell_d_acheminement": "TANINGES", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74276"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af75b84a3f8a11b2fc82b260cf7a85ff8e72192e", "fields": {"nom_de_la_commune": "THUSY", "libell_d_acheminement": "THUSY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74283"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2935f7680db4e5ddb5b1c381c13d6047f7fceb", "fields": {"nom_de_la_commune": "LA TOUR", "libell_d_acheminement": "LA TOUR", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74284"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7608361e1f23405d855526d91764f6b36867d0a8", "fields": {"nom_de_la_commune": "VAILLY", "libell_d_acheminement": "VAILLY", "code_postal": "74470", "coordonnees_gps": [46.2514067393, 6.54608924177], "code_commune_insee": "74287"}, "geometry": {"type": "Point", "coordinates": [6.54608924177, 46.2514067393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77631d6cf600f3c7c9d9ecf5f8532cd899140eb4", "fields": {"nom_de_la_commune": "VERS", "libell_d_acheminement": "VERS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74296"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de3e0b5da85f78dfaf61e031b11f4d82b55c799", "fields": {"nom_de_la_commune": "VILLAZ", "libell_d_acheminement": "VILLAZ", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74303"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b39622ca81b398ffdf406a4050008e2dedb370", "fields": {"nom_de_la_commune": "VILLY LE PELLOUX", "libell_d_acheminement": "VILLY LE PELLOUX", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74307"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ca81003058859ba113112ac8e706f2027170bb", "fields": {"nom_de_la_commune": "VULBENS", "libell_d_acheminement": "VULBENS", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74314"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053e69d8507a478af4becb202796cf6bc1cfac70", "fields": {"nom_de_la_commune": "PARIS 01", "libell_d_acheminement": "PARIS", "code_postal": "75001", "coordonnees_gps": [48.862834158, 2.33616696102], "code_commune_insee": "75101"}, "geometry": {"type": "Point", "coordinates": [2.33616696102, 48.862834158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416000b93e512d9e58c856b84bf25c9bc251da6c", "fields": {"nom_de_la_commune": "PARIS 02", "libell_d_acheminement": "PARIS", "code_postal": "75002", "coordonnees_gps": [48.8683234515, 2.3432977179], "code_commune_insee": "75102"}, "geometry": {"type": "Point", "coordinates": [2.3432977179, 48.8683234515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fd85256dfea26a127e0212065c4185a941a4a1", "fields": {"nom_de_la_commune": "PARIS 05", "libell_d_acheminement": "PARIS", "code_postal": "75005", "coordonnees_gps": [48.844407753, 2.350655453], "code_commune_insee": "75105"}, "geometry": {"type": "Point", "coordinates": [2.350655453, 48.844407753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b237f37fd6d0c1d511af94a0fc660ced919311", "fields": {"nom_de_la_commune": "PARIS 06", "libell_d_acheminement": "PARIS", "code_postal": "75006", "coordonnees_gps": [48.8492531918, 2.33300877472], "code_commune_insee": "75106"}, "geometry": {"type": "Point", "coordinates": [2.33300877472, 48.8492531918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20dbd7863a871c6cd0f01fa0fb2099de917c2cc", "fields": {"nom_de_la_commune": "PARIS 08", "libell_d_acheminement": "PARIS", "code_postal": "75008", "coordonnees_gps": [48.8725623657, 2.31240969073], "code_commune_insee": "75108"}, "geometry": {"type": "Point", "coordinates": [2.31240969073, 48.8725623657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793e9701b60ec1b36fdeabd38a2e64de92689b15", "fields": {"nom_de_la_commune": "PARIS 09", "libell_d_acheminement": "PARIS", "code_postal": "75009", "coordonnees_gps": [48.8769274899, 2.33736632955], "code_commune_insee": "75109"}, "geometry": {"type": "Point", "coordinates": [2.33736632955, 48.8769274899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d65f30d2503792babf50b8d495bd7150b959a90", "fields": {"nom_de_la_commune": "PARIS 13", "libell_d_acheminement": "PARIS", "code_postal": "75013", "coordonnees_gps": [48.8283577313, 2.36214011885], "code_commune_insee": "75113"}, "geometry": {"type": "Point", "coordinates": [2.36214011885, 48.8283577313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb11a02b1376f7e01f690f0c8e3e77a82baaf5b5", "fields": {"nom_de_la_commune": "PARIS 20", "libell_d_acheminement": "PARIS", "code_postal": "75020", "coordonnees_gps": [48.8634587721, 2.40123411777], "code_commune_insee": "75120"}, "geometry": {"type": "Point", "coordinates": [2.40123411777, 48.8634587721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038f190685d8baa1105f8ee4c565e0320a5db526", "fields": {"nom_de_la_commune": "ANCRETIEVILLE ST VICTOR", "libell_d_acheminement": "ANCRETIEVILLE ST VICTOR", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76010"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fb950c9d2c9a87486ce4e8a7f385183ec355c9", "fields": {"nom_de_la_commune": "ARGUEIL", "libell_d_acheminement": "ARGUEIL", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76025"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d6056d0ab943d82b2b046f293b5317fb45753d", "fields": {"nom_de_la_commune": "AUBERMESNIL BEAUMAIS", "libell_d_acheminement": "AUBERMESNIL BEAUMAIS", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76030"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656088b8972e04197d2e4cbff1efae0df53c919f", "fields": {"nom_de_la_commune": "AUTIGNY", "libell_d_acheminement": "AUTIGNY", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76040"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2906681854ff240a4b1680d48ab9a24a257e69", "fields": {"nom_de_la_commune": "AUZEBOSC", "libell_d_acheminement": "AUZEBOSC", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76043"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6323dd349401f63cfba5512a1bd4df3bb26454", "fields": {"nom_de_la_commune": "BARDOUVILLE", "libell_d_acheminement": "BARDOUVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76056"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2209bf78cd71278c8efb880b9b1b37ebfd0b126c", "fields": {"nom_de_la_commune": "BAROMESNIL", "libell_d_acheminement": "BAROMESNIL", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76058"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24175ab1acee88ae28e6d4dd48b4de80dfeda8ef", "fields": {"nom_de_la_commune": "BAZINVAL", "libell_d_acheminement": "BAZINVAL", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76059"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf3b455510652dd4ad98670d8f57735c317be6f", "fields": {"nom_de_la_commune": "BEAUMONT LE HARENG", "libell_d_acheminement": "BEAUMONT LE HARENG", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76062"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2794168deaaeb1244e8549750543952e6b9ab9d6", "fields": {"nom_de_la_commune": "BELBEUF", "libell_d_acheminement": "BELBEUF", "code_postal": "76240", "coordonnees_gps": [49.4050423755, 1.13866977273], "code_commune_insee": "76069"}, "geometry": {"type": "Point", "coordinates": [1.13866977273, 49.4050423755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b21048444ea05713a1f5f66e2eb14293b4fa5223", "fields": {"nom_de_la_commune": "BENNETOT", "libell_d_acheminement": "BENNETOT", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76078"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e44684796d24c6753cb6c2a55044d78d6f21b99", "fields": {"nom_de_la_commune": "CONDEISSIAT", "libell_d_acheminement": "CONDEISSIAT", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01113"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650199322e916bc958b4fde6cf95ec3efa7af927", "fields": {"nom_de_la_commune": "CHEVILLARD", "libell_d_acheminement": "CHEVILLARD", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01101"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458d1c6e206f657cb365b8a711ee3e89524ed750", "fields": {"nom_de_la_commune": "CONDAMINE", "libell_d_acheminement": "CONDAMINE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01112"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca36c2c9f34d2f36aac7d89a23512350b4777590", "fields": {"nom_de_la_commune": "CONTREVOZ", "libell_d_acheminement": "CONTREVOZ", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01116"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b85dec9cc4bfee0a769ec679126c4e0505013d1", "fields": {"nom_de_la_commune": "COLIGNY", "libell_d_acheminement": "COLIGNY", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01108"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc9320e267bb4cf2cf07dd3c42b06993952876b", "fields": {"nom_de_la_commune": "CONZIEU", "libell_d_acheminement": "CONZIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01117"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873f84e212a4981cdecc8d6292ad5dd15f2a52e1", "fields": {"nom_de_la_commune": "CORLIER", "libell_d_acheminement": "CORLIER", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01121"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1bd69e24b6c062ca0b1551592e8c63bc56fe5f9", "fields": {"nom_de_la_commune": "CHEVRY", "libell_d_acheminement": "CHEVRY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01103"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d8cad28cbe7040e9bf86f7e36f00b055e9f652", "fields": {"code_postal": "02130", "code_commune_insee": "02022", "libell_d_acheminement": "ARCY STE RESTITUE", "ligne_5": "BRANGES", "nom_de_la_commune": "ARCY STE RESTITUE", "coordonnees_gps": [49.1935797302, 3.55982855371]}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a5e5f33c3f6ad7cd8257bc6488345e40fa1ff5", "fields": {"nom_de_la_commune": "ARCY STE RESTITUE", "libell_d_acheminement": "ARCY STE RESTITUE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02022"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9992b2ea8a2607635a87a7f1d0f7220cd1d63f61", "fields": {"nom_de_la_commune": "VIEU D IZENAVE", "libell_d_acheminement": "VIEU D IZENAVE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01441"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a5de73764e37d7869a121bf5f9ed38dea2e905", "fields": {"nom_de_la_commune": "VERSONNEX", "libell_d_acheminement": "VERSONNEX", "code_postal": "01210", "coordonnees_gps": [46.2774426572, 6.10074151675], "code_commune_insee": "01435"}, "geometry": {"type": "Point", "coordinates": [6.10074151675, 46.2774426572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9101817022163b19c5171a3bf1dd5066c271022b", "fields": {"nom_de_la_commune": "TOSSIAT", "libell_d_acheminement": "TOSSIAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01422"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db4e36244e8af4172547a1337a4b90af6faa2d8", "fields": {"nom_de_la_commune": "VONGNES", "libell_d_acheminement": "VONGNES", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01456"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12eabbb25d00dba1f15cdefe22a1e1fd7d78ab61", "fields": {"nom_de_la_commune": "VESINES", "libell_d_acheminement": "VESINES", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01439"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d4ed93af1f4d97a6e496638a1ef76aa45ff9b6", "fields": {"nom_de_la_commune": "VERJON", "libell_d_acheminement": "VERJON", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01432"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d69a7d1fca957f012f71516f310891c439e683", "fields": {"code_postal": "01260", "code_commune_insee": "01414", "libell_d_acheminement": "SUTRIEU", "ligne_5": "FITIGNIEU", "nom_de_la_commune": "SUTRIEU", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35276a309437b99da88483d3119b884c07c9bc7", "fields": {"nom_de_la_commune": "ST GEORGES SUR RENON", "libell_d_acheminement": "ST GEORGES SUR RENON", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01356"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd937d5bfc9b734f0c7b0791dd6da11d76b2135", "fields": {"nom_de_la_commune": "ST JEAN DE GONVILLE", "libell_d_acheminement": "ST JEAN DE GONVILLE", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01360"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d39d6ebf0ea5e65cf6c6378b482be89818a16d8", "fields": {"nom_de_la_commune": "ST SORLIN EN BUGEY", "libell_d_acheminement": "ST SORLIN EN BUGEY", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01386"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8954bf0d77de3601f255069e231d03b3a701b87d", "fields": {"nom_de_la_commune": "SERRIERES SUR AIN", "libell_d_acheminement": "SERRIERES SUR AIN", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01404"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15f17166701ee9423f1717354c30c1cace2071c", "fields": {"nom_de_la_commune": "ST JEAN DE NIOST", "libell_d_acheminement": "ST JEAN DE NIOST", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01361"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c851ecf79d3a75f70556d778277110e7b36bbd", "fields": {"nom_de_la_commune": "SURJOUX", "libell_d_acheminement": "SURJOUX", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01413"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ff42ec5839f618a2b5450655639f3fb6ed0cd7", "fields": {"nom_de_la_commune": "TORCIEU", "libell_d_acheminement": "TORCIEU", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01421"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fddfc5b21e434bbe0ed889ee8c674583c254f68", "fields": {"nom_de_la_commune": "TENAY", "libell_d_acheminement": "TENAY", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01416"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b0a56b2ecd5ca952ebe433025ef40d8108bbab", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01418"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc57d0868c3d3631ae2746542630389d9c9f4b55", "fields": {"code_postal": "01090", "code_commune_insee": "01165", "libell_d_acheminement": "FRANCHELEINS", "ligne_5": "AMAREINS", "nom_de_la_commune": "FRANCHELEINS", "coordonnees_gps": [46.0869886552, 4.79611073763]}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7d94e7326162ed905fa08356b20956d30a4e05", "fields": {"nom_de_la_commune": "CRUZILLES LES MEPILLAT", "libell_d_acheminement": "CRUZILLES LES MEPILLAT", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01136"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dead7ab9e214bf7b97d6816bacb183ecf2469f2", "fields": {"nom_de_la_commune": "CRESSIN ROCHEFORT", "libell_d_acheminement": "CRESSIN ROCHEFORT", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01133"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75384842a22ca93469924354e2c3472772c48929", "fields": {"nom_de_la_commune": "ECHENEVEX", "libell_d_acheminement": "ECHENEVEX", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01153"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84790e843289e1e976c8c29a77df15c547603a70", "fields": {"nom_de_la_commune": "GARNERANS", "libell_d_acheminement": "GARNERANS", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01167"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761559e4c741c154de139b49eec6f19c3b211071", "fields": {"nom_de_la_commune": "FEILLENS", "libell_d_acheminement": "FEILLENS", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01159"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1da29b1f4ad96b7212f7702d906c9b903adeee1", "fields": {"nom_de_la_commune": "ETREZ", "libell_d_acheminement": "ETREZ", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01154"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ec2adc15ad9c80a852278549baf4583884c7e6", "fields": {"nom_de_la_commune": "CRANS", "libell_d_acheminement": "CRANS", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01129"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7b3918a7edc0e6f3c04e8c20d8ee139940ba3c", "fields": {"nom_de_la_commune": "CULOZ", "libell_d_acheminement": "CULOZ", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01138"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87871fcfc98d5ee443b9f74ca750990f88f8e6bd", "fields": {"nom_de_la_commune": "DROM", "libell_d_acheminement": "DROM", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01150"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efb6015cf7c7aae97b9b4d36ee834b98c4e0118", "fields": {"code_postal": "01000", "code_commune_insee": "01053", "libell_d_acheminement": "BOURG EN BRESSE", "ligne_5": "BROU", "nom_de_la_commune": "BOURG EN BRESSE", "coordonnees_gps": [46.2069478835, 5.22442559307]}, "geometry": {"type": "Point", "coordinates": [5.22442559307, 46.2069478835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698b3f19174c582c01efe0cecba1c2ade57abda0", "fields": {"code_postal": "01360", "code_commune_insee": "01062", "libell_d_acheminement": "BRESSOLLES", "ligne_5": "LA LECHERE", "nom_de_la_commune": "BRESSOLLES", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de5f2e7aadc4ba644535f19330384437bc58bea", "fields": {"nom_de_la_commune": "BOURG ST CHRISTOPHE", "libell_d_acheminement": "BOURG ST CHRISTOPHE", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01054"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914faf1810fb5eee59886a97c92cadfce2a980dd", "fields": {"nom_de_la_commune": "BOURG EN BRESSE", "libell_d_acheminement": "BOURG EN BRESSE", "code_postal": "01000", "coordonnees_gps": [46.2069478835, 5.22442559307], "code_commune_insee": "01053"}, "geometry": {"type": "Point", "coordinates": [5.22442559307, 46.2069478835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547bc18566bdb9a8d1357dee9d54ff4ea27a3a19", "fields": {"nom_de_la_commune": "LA BURBANCHE", "libell_d_acheminement": "LA BURBANCHE", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01066"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852f9f68dd31722b776d36db1f9cec010c90742f", "fields": {"nom_de_la_commune": "BUELLAS", "libell_d_acheminement": "BUELLAS", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01065"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60f1927b353bb0528dc6fbcbd1ab0f5c48f65b9", "fields": {"nom_de_la_commune": "CERDON", "libell_d_acheminement": "CERDON", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01068"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e45e36bf7273f3ed1be6800de27d7f8b788ca0a", "fields": {"nom_de_la_commune": "BIZIAT", "libell_d_acheminement": "BIZIAT", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01046"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e7b73b74f10f4c32732ebd2631514f38659918", "fields": {"nom_de_la_commune": "BEON", "libell_d_acheminement": "BEON", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01039"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf514ce6f557295b21059e646ea74d45393d55d", "fields": {"nom_de_la_commune": "BOZ", "libell_d_acheminement": "BOZ", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01057"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568df55bb40f80454fb202206295d70af6b9745a", "fields": {"code_postal": "01260", "code_commune_insee": "01079", "libell_d_acheminement": "CHAMPAGNE EN VALROMEY", "ligne_5": "LILIGNOD", "nom_de_la_commune": "CHAMPAGNE EN VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710cea168bceefc5db453d968fed82c021cbb3d2", "fields": {"code_postal": "01110", "code_commune_insee": "01080", "libell_d_acheminement": "CHAMPDOR CORCELLES", "ligne_5": "CORCELLES", "nom_de_la_commune": "CHAMPDOR CORCELLES", "coordonnees_gps": [45.9724218119, 5.577110369]}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9154d911b7eb40fb1d3e1aa3d1a646b269e0481", "fields": {"nom_de_la_commune": "CHATILLON LA PALUD", "libell_d_acheminement": "CHATILLON LA PALUD", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01092"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11067ae5acd058504d98a1aa0962990bc338e54", "fields": {"nom_de_la_commune": "CHAMPDOR CORCELLES", "libell_d_acheminement": "CHAMPDOR CORCELLES", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01080"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2001bcf5d83808def9cd6bf20d393551f4ab1e", "fields": {"nom_de_la_commune": "CHAZEY SUR AIN", "libell_d_acheminement": "CHAZEY SUR AIN", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01099"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d36be4c04ac0714b1d15f702badbd0aa9ede5c", "fields": {"nom_de_la_commune": "CHANEINS", "libell_d_acheminement": "CHANEINS", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01083"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9939521d724bf5279e29c57122f7217f6b83a98", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01090"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d706678e3ef3bd43a6322e146ccb303655fd69", "fields": {"nom_de_la_commune": "CHALLEX", "libell_d_acheminement": "CHALLEX", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01078"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ac7825daaac3b5c862689ddab663d5dbc662f6", "fields": {"nom_de_la_commune": "CHARIX", "libell_d_acheminement": "CHARIX", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01087"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdf9b04fc47a9911baa8de1cb9ed3016edf9458", "fields": {"nom_de_la_commune": "CESSY", "libell_d_acheminement": "CESSY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01071"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed6e48e522768d1662cb6f5afa164e6fb8284dc", "fields": {"code_postal": "01460", "code_commune_insee": "01267", "libell_d_acheminement": "NURIEUX VOLOGNAT", "ligne_5": "VOLOGNAT", "nom_de_la_commune": "NURIEUX VOLOGNAT", "coordonnees_gps": [46.1732029522, 5.56455683284]}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9af684efaa4841c4ed61a1c9c82ada25da4c78", "fields": {"code_postal": "01120", "code_commune_insee": "01262", "libell_d_acheminement": "MONTLUEL", "ligne_5": "JAILLEUX", "nom_de_la_commune": "MONTLUEL", "coordonnees_gps": [45.8725197955, 5.04054729356]}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7947fb3ef1edf486a831f8fdb0e45897c0bf91", "fields": {"nom_de_la_commune": "MONTREVEL EN BRESSE", "libell_d_acheminement": "MONTREVEL EN BRESSE", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01266"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06fd7d338078952524b1fe8b3b48bf426ebf16df", "fields": {"nom_de_la_commune": "NEUVILLE LES DAMES", "libell_d_acheminement": "NEUVILLE LES DAMES", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01272"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44060c3626a059fb5899bcdcf9e374a294cc8da", "fields": {"nom_de_la_commune": "NURIEUX VOLOGNAT", "libell_d_acheminement": "NURIEUX VOLOGNAT", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01267"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecbc1a9e91cb3caf672cea91d90cc3febcd39eeb", "fields": {"nom_de_la_commune": "PEROUGES", "libell_d_acheminement": "PEROUGES", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01290"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "babb01a3a6f1af607a7026be545f574641c488fe", "fields": {"nom_de_la_commune": "PARCIEUX", "libell_d_acheminement": "PARCIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01285"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846118c63785add57d4f2a6a386b2556ecd3251f", "fields": {"nom_de_la_commune": "PERONNAS", "libell_d_acheminement": "PERONNAS", "code_postal": "01960", "coordonnees_gps": [46.1542253866, 5.17526170568], "code_commune_insee": "01289"}, "geometry": {"type": "Point", "coordinates": [5.17526170568, 46.1542253866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4afe577725f7daa981b037020ca477648b0d64b", "fields": {"nom_de_la_commune": "OUTRIAZ", "libell_d_acheminement": "OUTRIAZ", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01282"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51729a0180d61879e949d8f92fbd67f0a5adf8f8", "fields": {"nom_de_la_commune": "PEYRIAT", "libell_d_acheminement": "PEYRIAT", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01293"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8df1ceb7d8f789c9835536a217d2dfb9c3f2e7", "fields": {"nom_de_la_commune": "ST GENIS SUR MENTHON", "libell_d_acheminement": "ST GENIS SUR MENTHON", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01355"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2691ce34fafaeb2249e6fe1260c394121c6e1c7e", "fields": {"nom_de_la_commune": "ST ANDRE DE CORCY", "libell_d_acheminement": "ST ANDRE DE CORCY", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01333"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504cca225949b6d5a4c40b793682456e68642fea", "fields": {"nom_de_la_commune": "PONT DE VAUX", "libell_d_acheminement": "PONT DE VAUX", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01305"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c843d28bf0a771cb9f19645afa788d44f9d0df58", "fields": {"nom_de_la_commune": "STE EUPHEMIE", "libell_d_acheminement": "STE EUPHEMIE", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01353"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020e97109f483f2cc565a9b315e35d9ac4f8e398", "fields": {"nom_de_la_commune": "PREMILLIEU", "libell_d_acheminement": "PREMILLIEU", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01311"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a14993e8b849a6ff0df331e524ba4329fc1da952", "fields": {"nom_de_la_commune": "REPLONGES", "libell_d_acheminement": "REPLONGES", "code_postal": "01750", "coordonnees_gps": [46.2973437135, 4.87546330177], "code_commune_insee": "01320"}, "geometry": {"type": "Point", "coordinates": [4.87546330177, 46.2973437135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16d625a930cb4bb60dfc39a4e8f3300a78f4949", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01342"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db01c871aa0d7584fc766f1084bc064a0b283805", "fields": {"nom_de_la_commune": "RUFFIEU", "libell_d_acheminement": "RUFFIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01330"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecdacaf5e68afe8288d4f50248da2312e181dd48", "fields": {"nom_de_la_commune": "PEYRIEU", "libell_d_acheminement": "PEYRIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01294"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6e79bcbb55037b8e5dacb41285ab980851c676", "fields": {"nom_de_la_commune": "RANCE", "libell_d_acheminement": "RANCE", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01318"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5404284ab96c953f2edcbc28afab098024d14fb4", "fields": {"nom_de_la_commune": "BOUCONVILLE VAUCLAIR", "libell_d_acheminement": "BOUCONVILLE VAUCLAIR", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02102"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c2026ae28925ca8b09f6b30eef481c61dd0c3f", "fields": {"nom_de_la_commune": "BLANZY LES FISMES", "libell_d_acheminement": "BLANZY LES FISMES", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02091"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e1bd8f16c1f98d05aaddefa1f93bdf2b099eb5", "fields": {"nom_de_la_commune": "BIEUXY", "libell_d_acheminement": "BIEUXY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02087"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708983a318fc08c6facb3f84b7b2e9d4773d50f8", "fields": {"nom_de_la_commune": "BRUYERES ET MONTBERAULT", "libell_d_acheminement": "BRUYERES ET MONTBERAULT", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02128"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0183c618cfba01ac4134b29dad4da29e36a44086", "fields": {"nom_de_la_commune": "BOURGUIGNON SOUS COUCY", "libell_d_acheminement": "BOURGUIGNON SOUS COUCY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02107"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840f65c28ca2843ba128209a1a05fc83635e153c", "fields": {"nom_de_la_commune": "BRAYE EN THIERACHE", "libell_d_acheminement": "BRAYE EN THIERACHE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02116"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927246613764c77c3a859b0f559dd3add08d37da", "fields": {"nom_de_la_commune": "BRANCOURT LE GRAND", "libell_d_acheminement": "BRANCOURT LE GRAND", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02112"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba8685e458099790a2c02519c2b826013cdaf70", "fields": {"nom_de_la_commune": "BRISSY HAMEGICOURT", "libell_d_acheminement": "BRISSY HAMEGICOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02124"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b910bea3d22f073604de1ddafabff78fb9a6218", "fields": {"nom_de_la_commune": "BRAY ST CHRISTOPHE", "libell_d_acheminement": "BRAY ST CHRISTOPHE", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02117"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b326c58b380723776b8f76a53249815983daa6", "fields": {"nom_de_la_commune": "BRAYE EN LAONNOIS", "libell_d_acheminement": "BRAYE EN LAONNOIS", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02115"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c87dbd5d178a954a8ab2fc1d01d380a49906020", "fields": {"nom_de_la_commune": "LA BOUTEILLE", "libell_d_acheminement": "LA BOUTEILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02109"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5631f51aa3be62fbccb0e713a9ef1658c6856d", "fields": {"nom_de_la_commune": "BUCILLY", "libell_d_acheminement": "BUCILLY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02130"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd71009adb28dd229328df8ff51476ef2f09adc", "fields": {"nom_de_la_commune": "BRAYE", "libell_d_acheminement": "BRAYE", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02118"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885838d565f55c0259d8d598606750e557d21bcd", "fields": {"nom_de_la_commune": "CERNY EN LAONNOIS", "libell_d_acheminement": "CERNY EN LAONNOIS", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02150"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb91aa3526f10691b60e17b7ff2a5313dc34bc4", "fields": {"nom_de_la_commune": "CHAILLEVOIS", "libell_d_acheminement": "CHAILLEVOIS", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02155"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "450cad63125023a94725bbf07a2af66303628a0a", "fields": {"nom_de_la_commune": "CHAMOUILLE", "libell_d_acheminement": "CHAMOUILLE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02158"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5613f9ea2d961994e735f1c650f9e2f6304ae273", "fields": {"nom_de_la_commune": "CHAVONNE", "libell_d_acheminement": "CHAVONNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02176"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fa965b96c74b04b7e3ee2d172008a1684e10a4", "fields": {"nom_de_la_commune": "CHACRISE", "libell_d_acheminement": "CHACRISE", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02154"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72fc5b419123f61660218dd407d04bc25cd0299e", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02145"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6ecc1d10adf5c7bc39f279a4977a4bceeecb88", "fields": {"nom_de_la_commune": "CHAUDUN", "libell_d_acheminement": "CHAUDUN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02172"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd0d6eb3db66c7cf763b2c71ec52b5d2c00c5d5", "fields": {"nom_de_la_commune": "CASTRES", "libell_d_acheminement": "CASTRES", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02142"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9bb4375ef4e5a3551297e692805c7c6fbb44f4d", "fields": {"nom_de_la_commune": "CHAMPS", "libell_d_acheminement": "CHAMPS", "code_postal": "02670", "coordonnees_gps": [49.5466521248, 3.27704956705], "code_commune_insee": "02159"}, "geometry": {"type": "Point", "coordinates": [3.27704956705, 49.5466521248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e952671176dd2c965ec35b72019304ed6d580bab", "fields": {"nom_de_la_commune": "BUIRE", "libell_d_acheminement": "BUIRE", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02134"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48c4b2497c0efebbdeb156b4afec7e64492b5bb", "fields": {"nom_de_la_commune": "ESQUEHERIES", "libell_d_acheminement": "ESQUEHERIES", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02286"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1a6f2ab4f268036061839a2a5d38737310235a", "fields": {"nom_de_la_commune": "LIAUSSON", "libell_d_acheminement": "LIAUSSON", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34137"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3fcc1b708de0c4aed61d15f89f00585b58aece5", "fields": {"nom_de_la_commune": "LIEURAN CABRIERES", "libell_d_acheminement": "LIEURAN CABRIERES", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34138"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596e0c9a30574758823412fd782616ba2d75c6b1", "fields": {"nom_de_la_commune": "LOUPIAN", "libell_d_acheminement": "LOUPIAN", "code_postal": "34140", "coordonnees_gps": [43.4368537431, 3.59942976108], "code_commune_insee": "34143"}, "geometry": {"type": "Point", "coordinates": [3.59942976108, 43.4368537431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a314a97df0c230d939ce628099dddcd76e27ca", "fields": {"nom_de_la_commune": "LES MATELLES", "libell_d_acheminement": "LES MATELLES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34153"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec148523e31c96aa3e2969a6f2d675830b2f185", "fields": {"nom_de_la_commune": "MERIFONS", "libell_d_acheminement": "MERIFONS", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34156"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4ed3fc94c5e0b337349371257a11717488d0a9", "fields": {"nom_de_la_commune": "MEZE", "libell_d_acheminement": "MEZE", "code_postal": "34140", "coordonnees_gps": [43.4368537431, 3.59942976108], "code_commune_insee": "34157"}, "geometry": {"type": "Point", "coordinates": [3.59942976108, 43.4368537431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d52bee69ebd4f168db57e040103ae69d38d9731", "fields": {"nom_de_la_commune": "MINERVE", "libell_d_acheminement": "MINERVE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34158"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfd8e146a6c5e08eaecdd700c88e15908de5441", "fields": {"nom_de_la_commune": "MONTOULIEU", "libell_d_acheminement": "MONTOULIEU", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34171"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b016f4c369e00b45a20548fbe1fc5ccc4e11b4f3", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34070", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc6a2e36beeb1ea3c6fab0d52baf82fe8fc6766", "fields": {"nom_de_la_commune": "NIZAS", "libell_d_acheminement": "NIZAS", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34184"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0579a7c4fbae24ef9c1ae885ef6e869ffc09684", "fields": {"nom_de_la_commune": "OLARGUES", "libell_d_acheminement": "OLARGUES", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34187"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c4b73b0bec12d17adb09faf0aa7f784789fb75", "fields": {"nom_de_la_commune": "PALAVAS LES FLOTS", "libell_d_acheminement": "PALAVAS LES FLOTS", "code_postal": "34250", "coordonnees_gps": [43.5335271739, 3.92625553078], "code_commune_insee": "34192"}, "geometry": {"type": "Point", "coordinates": [3.92625553078, 43.5335271739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c884bae063024d8f4b032e49a98d55936e3f2de", "fields": {"nom_de_la_commune": "PINET", "libell_d_acheminement": "PINET", "code_postal": "34850", "coordonnees_gps": [43.4093383388, 3.5126823699], "code_commune_insee": "34203"}, "geometry": {"type": "Point", "coordinates": [3.5126823699, 43.4093383388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b8ed469946ae7b547169f9b9af0ec6efebacfc", "fields": {"nom_de_la_commune": "POMEROLS", "libell_d_acheminement": "POMEROLS", "code_postal": "34810", "coordonnees_gps": [43.3964880457, 3.51441901042], "code_commune_insee": "34207"}, "geometry": {"type": "Point", "coordinates": [3.51441901042, 43.3964880457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411d75ae1a5e4bd42a720297c09cc1a91a8612a5", "fields": {"nom_de_la_commune": "POUZOLS", "libell_d_acheminement": "POUZOLS", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34215"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "261bfc221292b51b5b736a7e993ee0170a7ae116", "fields": {"nom_de_la_commune": "PRADES SUR VERNAZOBRE", "libell_d_acheminement": "PRADES SUR VERNAZOBRE", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34218"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c015698124eb53fa48c060b705396b4b34a1f6bd", "fields": {"nom_de_la_commune": "PUECHABON", "libell_d_acheminement": "PUECHABON", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34221"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f6dd2bfd49d8a07f18dca0fb2a1ee0e84a3c61", "fields": {"nom_de_la_commune": "ROSIS", "libell_d_acheminement": "ROSIS", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34235"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ef73cbdeb99b429065ad66dddb583917c116b5", "fields": {"nom_de_la_commune": "ROUJAN", "libell_d_acheminement": "ROUJAN", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34237"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e912c5617d2a66b3ca871b2b7f64a6775f970c2f", "fields": {"nom_de_la_commune": "ST BAUZILLE DE MONTMEL", "libell_d_acheminement": "ST BAUZILLE DE MONTMEL", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34242"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021b152c32d15567de89338a36a889205fe8be5c", "fields": {"nom_de_la_commune": "ST BRES", "libell_d_acheminement": "ST BRES", "code_postal": "34670", "coordonnees_gps": [43.6617396739, 4.0210678464], "code_commune_insee": "34244"}, "geometry": {"type": "Point", "coordinates": [4.0210678464, 43.6617396739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b346799cb978e718d9558cf5c3111333fdc411", "fields": {"nom_de_la_commune": "ST DREZERY", "libell_d_acheminement": "ST DREZERY", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34249"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a0ecbca97b9401b3373e6d8bdae04e7d8e17cd", "fields": {"nom_de_la_commune": "ST GELY DU FESC", "libell_d_acheminement": "ST GELY DU FESC", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34255"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae2c5b1d307daaab1fbd5aa2cfc95a2d600d199", "fields": {"nom_de_la_commune": "ST JEAN DE CORNIES", "libell_d_acheminement": "ST JEAN DE CORNIES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34265"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f9648ac4e60f6fb5a0ae40c4d00da5f3f13946", "fields": {"nom_de_la_commune": "ST JEAN DE CUCULLES", "libell_d_acheminement": "ST JEAN DE CUCULLES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34266"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b1f7660eee89a03377b80e599a9c38838ab14f", "fields": {"nom_de_la_commune": "ST JEAN DE LA BLAQUIERE", "libell_d_acheminement": "ST JEAN DE LA BLAQUIERE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34268"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc15a6f09450e37541f300c49ee74367a22d7f8d", "fields": {"nom_de_la_commune": "ST JEAN DE MINERVOIS", "libell_d_acheminement": "ST JEAN DE MINERVOIS", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34269"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29dbd7e3d9866ac5dd068d8908e367510d88ad7", "fields": {"nom_de_la_commune": "ST MAURICE NAVACELLES", "libell_d_acheminement": "ST MAURICE NAVACELLES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34277"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743ee4772f5560acbc8d182942ae114181b7b41d", "fields": {"nom_de_la_commune": "ST PARGOIRE", "libell_d_acheminement": "ST PARGOIRE", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34281"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1510e8b74baa883212bb963bdb6e39d272f5b16f", "fields": {"nom_de_la_commune": "ST PONS DE MAUCHIENS", "libell_d_acheminement": "ST PONS DE MAUCHIENS", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34285"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527fc9a2b41fa16410567b24caaef97bb38bc9da", "fields": {"nom_de_la_commune": "ST PRIVAT", "libell_d_acheminement": "ST PRIVAT", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34286"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5578b10f2df65aa333e10340f42ebcefd14c3f65", "fields": {"nom_de_la_commune": "SALASC", "libell_d_acheminement": "SALASC", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34292"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3acc506f4d64f25b81b8aca7e14038a49fba92b", "fields": {"nom_de_la_commune": "SAUVIAN", "libell_d_acheminement": "SAUVIAN", "code_postal": "34410", "coordonnees_gps": [43.2791365014, 3.28311467845], "code_commune_insee": "34298"}, "geometry": {"type": "Point", "coordinates": [3.28311467845, 43.2791365014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86516f20cbcf9160ca1e1cef2ba2071065ceb73a", "fields": {"nom_de_la_commune": "SERVIAN", "libell_d_acheminement": "SERVIAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34300"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f432fc6ebba87e7b1b5509aaf416998a0d046771", "fields": {"nom_de_la_commune": "SETE", "libell_d_acheminement": "SETE", "code_postal": "34200", "coordonnees_gps": [43.3916337331, 3.64646358944], "code_commune_insee": "34301"}, "geometry": {"type": "Point", "coordinates": [3.64646358944, 43.3916337331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f505e70ec29a9f781888fd762401505e92f60b5", "fields": {"nom_de_la_commune": "SOUMONT", "libell_d_acheminement": "SOUMONT", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34306"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d256d8f0a52a058ba502bec8a2efdb27f0f6c0", "fields": {"nom_de_la_commune": "SUSSARGUES", "libell_d_acheminement": "SUSSARGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34307"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9b0e1f32a8d4fdbb1f657d9f1753b12f11be6c", "fields": {"nom_de_la_commune": "TAUSSAC LA BILLIERE", "libell_d_acheminement": "TAUSSAC LA BILLIERE", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34308"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027d985d5ef4d7984d8f4dd27fc25223efa505eb", "fields": {"nom_de_la_commune": "LA VACQUERIE ET ST MARTIN DE CASTRIES", "libell_d_acheminement": "LA VACQUERIE ST MARTIN CASTRIES", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34317"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694d5aec8adc71ff2ca04402052f44a5d8285ea2", "fields": {"nom_de_la_commune": "VALFLAUNES", "libell_d_acheminement": "VALFLAUNES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34322"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faccbc1175d183e39f94483f526742512b62b50", "fields": {"nom_de_la_commune": "ANTRAIN", "libell_d_acheminement": "ANTRAIN", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35004"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c4c952317445d5ff034bc1d3a5aa9e81db1d8a3", "fields": {"nom_de_la_commune": "LA BAUSSAINE", "libell_d_acheminement": "LA BAUSSAINE", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35017"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa575eff85f2dd72c2ff0599a4a1f9d66a681b73", "fields": {"nom_de_la_commune": "LA BAZOUGE DU DESERT", "libell_d_acheminement": "LA BAZOUGE DU DESERT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35018"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88fadcd5d6ab8088f2a74dc0f8d4dcd4543cab67", "fields": {"nom_de_la_commune": "BEDEE", "libell_d_acheminement": "BEDEE", "code_postal": "35137", "coordonnees_gps": [48.1849164983, -1.93352887812], "code_commune_insee": "35023"}, "geometry": {"type": "Point", "coordinates": [-1.93352887812, 48.1849164983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e086edff48d6e669a60d789770663a695ab00b8", "fields": {"nom_de_la_commune": "BETTON", "libell_d_acheminement": "BETTON", "code_postal": "35830", "coordonnees_gps": [48.1815160112, -1.64650403276], "code_commune_insee": "35024"}, "geometry": {"type": "Point", "coordinates": [-1.64650403276, 48.1815160112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f1d6c9f203cd84c3f103f9911a022fd350733d", "fields": {"nom_de_la_commune": "LA BOSSE DE BRETAGNE", "libell_d_acheminement": "LA BOSSE DE BRETAGNE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35030"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c2fc8def21ef35b780ad2482ee68ea5a2a394e", "fields": {"nom_de_la_commune": "LA BOUSSAC", "libell_d_acheminement": "LA BOUSSAC", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35034"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02446af854d237413c8f4c86b0fae35b62851f7", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35041"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377ca78af49b816f9a9e72688fa359cf9c9fc5f8", "fields": {"nom_de_la_commune": "BROUALAN", "libell_d_acheminement": "BROUALAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35044"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d76caac2ba5eee82b8595550051b9f8c2db31f", "fields": {"nom_de_la_commune": "CANCALE", "libell_d_acheminement": "CANCALE", "code_postal": "35260", "coordonnees_gps": [48.6826684745, -1.86528916047], "code_commune_insee": "35049"}, "geometry": {"type": "Point", "coordinates": [-1.86528916047, 48.6826684745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5756699acbbb866d0897ade94ee7952953399c", "fields": {"nom_de_la_commune": "CHAMPEAUX", "libell_d_acheminement": "CHAMPEAUX", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35052"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3c7f1dcb032e841012d7c7031dc117e1708401", "fields": {"nom_de_la_commune": "LA CHAPELLE ERBREE", "libell_d_acheminement": "LA CHAPELLE ERBREE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35061"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8cc464a1dcd174d213320c94082e0c37cb44abf", "fields": {"nom_de_la_commune": "CHATEAUGIRON", "libell_d_acheminement": "CHATEAUGIRON", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35069"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74d4bd6b8fb7e3f9fca7833e39b4fb36b5a05f4", "fields": {"nom_de_la_commune": "LE CHATELLIER", "libell_d_acheminement": "LE CHATELLIER", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35071"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f073fb7a1d29fd6c5124d810279d1c4893d9475", "fields": {"nom_de_la_commune": "CHAUVIGNE", "libell_d_acheminement": "CHAUVIGNE", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35075"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a9fbfe25b891ba63521d79adde15796618260b", "fields": {"nom_de_la_commune": "CHERRUEIX", "libell_d_acheminement": "CHERRUEIX", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35078"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f57357303691159b44a1a11bfad137a2026abb", "fields": {"nom_de_la_commune": "COMBOURG", "libell_d_acheminement": "COMBOURG", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35085"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884647d391ae524356669561d54a86e5c8bafd8f", "fields": {"nom_de_la_commune": "CORNILLE", "libell_d_acheminement": "CORNILLE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35087"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27994b98ed3661a7bb56b5b6efbb59c54668557a", "fields": {"nom_de_la_commune": "CREVIN", "libell_d_acheminement": "CREVIN", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35090"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbce871d9db8423a2a9e2fef9383928d2fdf296", "fields": {"nom_de_la_commune": "LE CROUAIS", "libell_d_acheminement": "LE CROUAIS", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35091"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62094643b5eb911bee26faf302546881c2cee76", "fields": {"nom_de_la_commune": "DOMAGNE", "libell_d_acheminement": "DOMAGNE", "code_postal": "35113", "coordonnees_gps": [48.0673207645, -1.40644160401], "code_commune_insee": "35096"}, "geometry": {"type": "Point", "coordinates": [-1.40644160401, 48.0673207645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00286dc9cf800994acc5dcc2f084869ad119c15", "fields": {"code_postal": "35113", "code_commune_insee": "35096", "libell_d_acheminement": "DOMAGNE", "ligne_5": "CHAUMERE", "nom_de_la_commune": "DOMAGNE", "coordonnees_gps": [48.0673207645, -1.40644160401]}, "geometry": {"type": "Point", "coordinates": [-1.40644160401, 48.0673207645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d57ca39d920ab80c1681576ac07f12bd92ffde", "fields": {"nom_de_la_commune": "LA DOMINELAIS", "libell_d_acheminement": "LA DOMINELAIS", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35098"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6172db9c8ed3b4154922912f3c19752d1fe612", "fields": {"nom_de_la_commune": "DOURDAIN", "libell_d_acheminement": "DOURDAIN", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35101"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeccfdddef42fb4b463b5d3932dfde4ad3ae6a9c", "fields": {"nom_de_la_commune": "EPINIAC", "libell_d_acheminement": "EPINIAC", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35104"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba52acd7c1483760dcbdb4dbd3e4cc052763039", "fields": {"nom_de_la_commune": "ERCE EN LAMEE", "libell_d_acheminement": "ERCE EN LAMEE", "code_postal": "35620", "coordonnees_gps": [47.8136960211, -1.5585601765], "code_commune_insee": "35106"}, "geometry": {"type": "Point", "coordinates": [-1.5585601765, 47.8136960211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d36ce898c568fc7e29f0b18cc97a3695b3bc3ad0", "fields": {"nom_de_la_commune": "FLEURIGNE", "libell_d_acheminement": "FLEURIGNE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35112"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676c94a7cc492c1872b6787fb4f018a2a5073ada", "fields": {"nom_de_la_commune": "GAEL", "libell_d_acheminement": "GAEL", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35117"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0054b372195fba7d0feb1bb1db79ff4abef2c1dc", "fields": {"nom_de_la_commune": "GOSNE", "libell_d_acheminement": "GOSNE", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35121"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fd08183bbf9e0108414c4fd77311e3b27746f2", "fields": {"nom_de_la_commune": "GRAND FOUGERAY", "libell_d_acheminement": "GRAND FOUGERAY", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35124"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02c6567c7cca3637e112cb239b6bfba1a6e4fe1", "fields": {"nom_de_la_commune": "HIREL", "libell_d_acheminement": "HIREL", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35132"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce7021b09930099ee788bdd1cfd215bd4596ead", "fields": {"nom_de_la_commune": "IRODOUER", "libell_d_acheminement": "IRODOUER", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35135"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8aa24249ef703bf59441f69635de8f9f1cefc6", "fields": {"nom_de_la_commune": "JAVENE", "libell_d_acheminement": "JAVENE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35137"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "881caa33f681d10e3243b705f0f1847b0b1b1b1d", "fields": {"nom_de_la_commune": "LANGOUET", "libell_d_acheminement": "LANGOUET", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35146"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4437924d72b0968ede1643112afe393dfedb2c42", "fields": {"nom_de_la_commune": "LILLEMER", "libell_d_acheminement": "LILLEMER", "code_postal": "35111", "coordonnees_gps": [48.5841192028, -1.83987270474], "code_commune_insee": "35153"}, "geometry": {"type": "Point", "coordinates": [-1.83987270474, 48.5841192028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "445d0f4ccd55cdfde11d3db23b3975b84b000873", "fields": {"nom_de_la_commune": "LOHEAC", "libell_d_acheminement": "LOHEAC", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35155"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a47fb808bfad1ad2ad7c20b27d99f42554c49ee", "fields": {"nom_de_la_commune": "LOUTEHEL", "libell_d_acheminement": "LOUTEHEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35160"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e496d9519c12574df2921476e43b10293262ff", "fields": {"nom_de_la_commune": "LOUVIGNE DU DESERT", "libell_d_acheminement": "LOUVIGNE DU DESERT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35162"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfc9f8fb28ad17d8afc0c745ee799e6fd80b029d", "fields": {"nom_de_la_commune": "MARCILLE ROBERT", "libell_d_acheminement": "MARCILLE ROBERT", "code_postal": "35240", "coordonnees_gps": [47.9216015444, -1.36801801684], "code_commune_insee": "35165"}, "geometry": {"type": "Point", "coordinates": [-1.36801801684, 47.9216015444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513da288a25191eedc34dd984b84316b348efdb9", "fields": {"nom_de_la_commune": "MECE", "libell_d_acheminement": "MECE", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35170"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f3eef7295158cb229cece5f93e92fc2019f4b2", "fields": {"nom_de_la_commune": "MELESSE", "libell_d_acheminement": "MELESSE", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35173"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c33a94f61293d2b7d552f28ea011d074004784b", "fields": {"code_postal": "35480", "code_commune_insee": "35176", "libell_d_acheminement": "GUIPRY MESSAC", "ligne_5": "GUIPRY", "nom_de_la_commune": "GUIPRY MESSAC", "coordonnees_gps": [47.8244409976, -1.80170067957]}, "geometry": {"type": "Point", "coordinates": [-1.80170067957, 47.8244409976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af880448117a5f44d70b7af849b5146ec09c5ad", "fields": {"nom_de_la_commune": "MONTAUBAN DE BRETAGNE", "libell_d_acheminement": "MONTAUBAN DE BRETAGNE", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35184"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9902c4ace5a145a19c9c5f1618cd91a63670b458", "fields": {"nom_de_la_commune": "MONTOURS", "libell_d_acheminement": "MONTOURS", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35191"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93937438c4e5da93f43643f520b6585cf6a073cf", "fields": {"nom_de_la_commune": "MONTREUIL DES LANDES", "libell_d_acheminement": "MONTREUIL DES LANDES", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35192"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781ced6959588d1b4d3d93df138ac4f86cbac2c6", "fields": {"nom_de_la_commune": "MONTREUIL SOUS PEROUSE", "libell_d_acheminement": "MONTREUIL SOUS PEROUSE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35194"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89ee8be7b47ccad68c5dd4bdebfb688311b32c9", "fields": {"nom_de_la_commune": "LA NOUAYE", "libell_d_acheminement": "LA NOUAYE", "code_postal": "35137", "coordonnees_gps": [48.1849164983, -1.93352887812], "code_commune_insee": "35203"}, "geometry": {"type": "Point", "coordinates": [-1.93352887812, 48.1849164983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90513c5d6a54c6067f52db241cd7b34602807a74", "fields": {"code_postal": "35230", "code_commune_insee": "35206", "libell_d_acheminement": "NOYAL CHATILLON SUR SEICHE", "ligne_5": "CHATILLON SUR SEICHE", "nom_de_la_commune": "NOYAL CHATILLON SUR SEICHE", "coordonnees_gps": [48.0164430154, -1.6442206032]}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fffbdfed64db9a0e9aa82bf18dd4ffb9b6c0bf6", "fields": {"nom_de_la_commune": "OSSE", "libell_d_acheminement": "OSSE", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35209"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ed5f465859030c80f915b6478180507a6d1857", "fields": {"nom_de_la_commune": "PACE", "libell_d_acheminement": "PACE", "code_postal": "35740", "coordonnees_gps": [48.1528245911, -1.77695493088], "code_commune_insee": "35210"}, "geometry": {"type": "Point", "coordinates": [-1.77695493088, 48.1528245911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74dcf6d13a8e1f87f136365bbe45999c93ba84e9", "fields": {"nom_de_la_commune": "LE PERTRE", "libell_d_acheminement": "LE PERTRE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35217"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a4889258a6bf42b4e738e7952773a08cf73dc3", "fields": {"nom_de_la_commune": "PIPRIAC", "libell_d_acheminement": "PIPRIAC", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35219"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c881c5be060dcf2c114c3c8def0909b88ea4627", "fields": {"nom_de_la_commune": "PLERGUER", "libell_d_acheminement": "PLERGUER", "code_postal": "35540", "coordonnees_gps": [48.5204175583, -1.86964225248], "code_commune_insee": "35224"}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acb3cf4b4d0eea6e4f1ed9c11062d5dcf6fa4d2", "fields": {"nom_de_la_commune": "PLEUMELEUC", "libell_d_acheminement": "PLEUMELEUC", "code_postal": "35137", "coordonnees_gps": [48.1849164983, -1.93352887812], "code_commune_insee": "35227"}, "geometry": {"type": "Point", "coordinates": [-1.93352887812, 48.1849164983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558ea283b8f5c1ab27c57b6f2b9758bac571e8ab", "fields": {"nom_de_la_commune": "RETIERS", "libell_d_acheminement": "RETIERS", "code_postal": "35240", "coordonnees_gps": [47.9216015444, -1.36801801684], "code_commune_insee": "35239"}, "geometry": {"type": "Point", "coordinates": [-1.36801801684, 47.9216015444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73018961b7e20200093daece97ce6d3885f5e553", "fields": {"nom_de_la_commune": "LA RICHARDAIS", "libell_d_acheminement": "LA RICHARDAIS", "code_postal": "35780", "coordonnees_gps": [48.609296321, -2.04412756041], "code_commune_insee": "35241"}, "geometry": {"type": "Point", "coordinates": [-2.04412756041, 48.609296321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58ddc3a70de937956e20d038518bf584fcb585b", "fields": {"nom_de_la_commune": "ROMAZY", "libell_d_acheminement": "ROMAZY", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35244"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7820583b941f87b7835a862b5afcb174faba5ae3", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DE VALAINS", "libell_d_acheminement": "ST CHRISTOPHE DE VALAINS", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35261"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b7a0656cd5744007e4b229c1d9724d3dce560d", "fields": {"nom_de_la_commune": "ST DOMINEUC", "libell_d_acheminement": "ST DOMINEUC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35265"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e55bb5dcbb6bb5eaa9012115e4928e8d68af1d9", "fields": {"nom_de_la_commune": "ST GEORGES DE REINTEMBAULT", "libell_d_acheminement": "ST GEORGES DE REINTEMBAULT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35271"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f073a82d3e1b9289fde11c2d7c2d210e472d9e10", "fields": {"nom_de_la_commune": "ST GENGOULPH", "libell_d_acheminement": "ST GENGOULPH", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02679"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d106e863ae83a29a9f6a3d6a61e037889b8794ea", "fields": {"nom_de_la_commune": "GRAND ROZOY", "libell_d_acheminement": "GRAND ROZOY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02665"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c974f1317b83d8cffbbfd6aef645a5e86bf22802", "fields": {"nom_de_la_commune": "STE PREUVE", "libell_d_acheminement": "STE PREUVE", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02690"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ba4ca9e9d556d05b5c5484f47d93e63aacb412", "fields": {"nom_de_la_commune": "ST QUENTIN", "libell_d_acheminement": "ST QUENTIN", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02691"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26674cfc60f0202554cedf68e5bd72ebd498b063", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "02830", "coordonnees_gps": [49.9229668289, 4.16909562963], "code_commune_insee": "02684"}, "geometry": {"type": "Point", "coordinates": [4.16909562963, 49.9229668289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f21027a4b2259356bbb2762870db3bfcb7226b1", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02682"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da35de8116ec37ddf832bfef877abeec0faecca6", "fields": {"nom_de_la_commune": "LA SELVE", "libell_d_acheminement": "LA SELVE", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02705"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef66a1ac62f763e2def523367f6d808249c9db1b", "fields": {"nom_de_la_commune": "SEPTVAUX", "libell_d_acheminement": "SEPTVAUX", "code_postal": "02410", "coordonnees_gps": [49.5909068066, 3.39907207955], "code_commune_insee": "02707"}, "geometry": {"type": "Point", "coordinates": [3.39907207955, 49.5909068066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5ef0bf02bf3b40aded89842507480a4c462ef7", "fields": {"nom_de_la_commune": "SOISSONS", "libell_d_acheminement": "SOISSONS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02722"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390267070c2d26144f664f0ad1e748d05d877e99", "fields": {"nom_de_la_commune": "SERMOISE", "libell_d_acheminement": "SERMOISE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02714"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b3ef27f2024181376b842db66e85a3940f8e1b", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "02640", "coordonnees_gps": [49.7574538282, 3.17195418496], "code_commune_insee": "02694"}, "geometry": {"type": "Point", "coordinates": [3.17195418496, 49.7574538282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac5046567b9abbc95ffe3d8caabc8a73ff7b2ac", "fields": {"nom_de_la_commune": "SAPONAY", "libell_d_acheminement": "SAPONAY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02699"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e246b003a9d2fed970ae9cc77bee66eae7f18710", "fields": {"nom_de_la_commune": "SINCENY", "libell_d_acheminement": "SINCENY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02719"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92659a0ebcfe0ce9e25d3f7e7b713dffe023594", "fields": {"nom_de_la_commune": "SERAIN", "libell_d_acheminement": "SERAIN", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02709"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e2b3332f42aeb5b0f73d153fd37e340f5234bb", "fields": {"nom_de_la_commune": "SERVAL", "libell_d_acheminement": "SERVAL", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02715"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98014dd210dc4edcb85d0314fd5ef7ccff1e5acd", "fields": {"nom_de_la_commune": "SAVY", "libell_d_acheminement": "SAVY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02702"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9605a27853074f2e32f503de0e83c853f1bbf7f4", "fields": {"nom_de_la_commune": "LA BATIE VIEILLE", "libell_d_acheminement": "LA BATIE VIEILLE", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05018"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012fb3bd9fcf640eaad5a52dfbeb02305c60a3fe", "fields": {"nom_de_la_commune": "VILLARS COLMARS", "libell_d_acheminement": "VILLARS COLMARS", "code_postal": "04370", "coordonnees_gps": [44.1743215148, 6.62460542768], "code_commune_insee": "04240"}, "geometry": {"type": "Point", "coordinates": [6.62460542768, 44.1743215148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eae9f0337364bb04d0a9641eedb70a21bf314b7", "fields": {"nom_de_la_commune": "VERDACHES", "libell_d_acheminement": "VERDACHES", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04235"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526b4a66acebab669658be31569e6a71bf2bbd67", "fields": {"nom_de_la_commune": "VALERNES", "libell_d_acheminement": "VALERNES", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04231"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ee2c22ceff71bc6097cf238eeb6a075f603981", "fields": {"nom_de_la_commune": "ST POURCAIN SUR SIOULE", "libell_d_acheminement": "ST POURCAIN SUR SIOULE", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03254"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a174068816ef5ee69017ed3f94f8cf57f0be88", "fields": {"nom_de_la_commune": "ST LEGER SUR VOUZANCE", "libell_d_acheminement": "ST LEGER SUR VOUZANCE", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03239"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45319c60fce715097b8e263e4d255a9f7543343e", "fields": {"nom_de_la_commune": "ST GERMAIN DES FOSSES", "libell_d_acheminement": "ST GERMAIN DES FOSSES", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03236"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ec8c24dce2c8ff3e7aca14936f9255aa138730c", "fields": {"nom_de_la_commune": "ST NICOLAS DES BIEFS", "libell_d_acheminement": "ST NICOLAS DES BIEFS", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03248"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a14306767ff62a6f1401a3b4c15f496e215bf390", "fields": {"nom_de_la_commune": "ST LEOPARDIN D AUGY", "libell_d_acheminement": "ST LEOPARDIN D AUGY", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03241"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81f47390ccaed910edd9f5ba28bd20fa2da57a5", "fields": {"nom_de_la_commune": "ST MARTINIEN", "libell_d_acheminement": "ST MARTINIEN", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03246"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e6508dc492dbdd8ebe62ac3a6e87b43cc3665a", "fields": {"nom_de_la_commune": "ST ENNEMOND", "libell_d_acheminement": "ST ENNEMOND", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03229"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f606fee0ca6a8db22930ae97803e589b1d315d", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "03440", "coordonnees_gps": [46.4644451309, 2.96888238917], "code_commune_insee": "03238"}, "geometry": {"type": "Point", "coordinates": [2.96888238917, 46.4644451309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73722a593c8e739dcfe28ae722b7879110f90255", "fields": {"nom_de_la_commune": "ST MENOUX", "libell_d_acheminement": "ST MENOUX", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03247"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8534118a6a240a8cd42d2a23d69021563e68fa", "fields": {"nom_de_la_commune": "ST DESIRE", "libell_d_acheminement": "ST DESIRE", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03225"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1ba7fe7a8cb9a290be0b9e9a4427757575149a", "fields": {"nom_de_la_commune": "ST PRIEST EN MURAT", "libell_d_acheminement": "ST PRIEST EN MURAT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03256"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1095b359538b7466d22b37829b55d59ff6c444d7", "fields": {"nom_de_la_commune": "SALIGNY SUR ROUDON", "libell_d_acheminement": "SALIGNY SUR ROUDON", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03265"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf52d0afa8ec0fae30f8ef3f341299801673783f", "fields": {"nom_de_la_commune": "THIEL SUR ACOLIN", "libell_d_acheminement": "THIEL SUR ACOLIN", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03283"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4335298d820a593e9ab7143c15df71ea91b079f7", "fields": {"nom_de_la_commune": "STE THERENCE", "libell_d_acheminement": "STE THERENCE", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03261"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2537db2c03ee3415696a6e3a1f4c3d451c238825", "fields": {"nom_de_la_commune": "TAXAT SENAT", "libell_d_acheminement": "TAXAT SENAT", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03278"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7912a7e28a2f4aea8654b717edc50aa0eeab47", "fields": {"nom_de_la_commune": "SERBANNES", "libell_d_acheminement": "SERBANNES", "code_postal": "03700", "coordonnees_gps": [46.0940657836, 3.37277682749], "code_commune_insee": "03271"}, "geometry": {"type": "Point", "coordinates": [3.37277682749, 46.0940657836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ed0142250e16570903e4e9c84b06524c5d4a9f", "fields": {"nom_de_la_commune": "ST SORNIN", "libell_d_acheminement": "ST SORNIN", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03260"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b83d7209357f4fb4a24293a002b08e318a2f1e0", "fields": {"nom_de_la_commune": "TRETEAU", "libell_d_acheminement": "TRETEAU", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03289"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177a20cab6b168ff6ea2341dcf5645f22be9f23b", "fields": {"nom_de_la_commune": "TARGET", "libell_d_acheminement": "TARGET", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03277"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1338a79158008a4781597e4c2ac03ba4f12eeccc", "fields": {"nom_de_la_commune": "URCAY", "libell_d_acheminement": "URCAY", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03293"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25451f800b011f2556faee0d5f60f354cf1cb408", "fields": {"nom_de_la_commune": "ST BONNET DE FOUR", "libell_d_acheminement": "ST BONNET DE FOUR", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03219"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820f31a9b69de9bddb24a41094eee0e601d9474f", "fields": {"nom_de_la_commune": "LA PETITE MARCHE", "libell_d_acheminement": "LA PETITE MARCHE", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03206"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdcbb43b4e359710ab936e29ddf7c4d42838bf63", "fields": {"nom_de_la_commune": "NERIS LES BAINS", "libell_d_acheminement": "NERIS LES BAINS", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03195"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420890ca7f7947f6890baa2221febdb3b5983b1d", "fields": {"nom_de_la_commune": "NEUILLY LE REAL", "libell_d_acheminement": "NEUILLY LE REAL", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03197"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862c9a43a0deda4ed022a93dfe06328146b5f0e8", "fields": {"nom_de_la_commune": "POUZY MESANGY", "libell_d_acheminement": "POUZY MESANGY", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03210"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a04c5a8fe8e8a3e4e96a7863dae43858305b11", "fields": {"nom_de_la_commune": "MONTMARAULT", "libell_d_acheminement": "MONTMARAULT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03186"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01a43d1727199451a18c5ab974377fb37cb28fa", "fields": {"nom_de_la_commune": "LE MONTET", "libell_d_acheminement": "LE MONTET", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03183"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6352c69a4db6ff23ad8952d33ea502c592acaa0", "fields": {"nom_de_la_commune": "MONTORD", "libell_d_acheminement": "MONTORD", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03188"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74612978683141b56d1cfb9439aaa52e0353a9e9", "fields": {"nom_de_la_commune": "MOLLES", "libell_d_acheminement": "MOLLES", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03174"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8065e75aac09d83d97c95761a710235fa7c55281", "fields": {"nom_de_la_commune": "MURAT", "libell_d_acheminement": "MURAT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03191"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db1c4d00c370366f11c23c859e3ba2c26fe5b2b", "fields": {"nom_de_la_commune": "LA FERTE HAUTERIVE", "libell_d_acheminement": "LA FERTE HAUTERIVE", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03114"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e77b9ab85b6fe8ac745f94eba989780779e207", "fields": {"nom_de_la_commune": "GANNAY SUR LOIRE", "libell_d_acheminement": "GANNAY SUR LOIRE", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03119"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc18f078d0a4e7d6318f1bde720f2cce568ec018", "fields": {"nom_de_la_commune": "ESTIVAREILLES", "libell_d_acheminement": "ESTIVAREILLES", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03111"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57dcaa4aa8c91200be24ad3e863ed90aee301d2", "fields": {"nom_de_la_commune": "GENNETINES", "libell_d_acheminement": "GENNETINES", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03121"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908303210030d71b1624af156397d9b4a4b460e0", "fields": {"nom_de_la_commune": "ETROUSSAT", "libell_d_acheminement": "ETROUSSAT", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03112"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1afebb0f6c5a982ef24bb869a007ed738f785d", "fields": {"nom_de_la_commune": "LALIZOLLE", "libell_d_acheminement": "LALIZOLLE", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03135"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3d9f9e8a5c9ff0ec62926428eb06ff8330d798", "fields": {"nom_de_la_commune": "FLEURIEL", "libell_d_acheminement": "FLEURIEL", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03115"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02aa324a457ad9b60ed1e4f3cf26847ec1bb0db", "fields": {"nom_de_la_commune": "LAFELINE", "libell_d_acheminement": "LAFELINE", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03134"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e174456219c5ca954e3a6b473a6d9cea1b6dff4", "fields": {"nom_de_la_commune": "GIPCY", "libell_d_acheminement": "GIPCY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03122"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838860b72dcd66d9e6ca06363d5a8154f2d5dca1", "fields": {"nom_de_la_commune": "HYDS", "libell_d_acheminement": "HYDS", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03129"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c86a546d489ece83349bdb9c1f72fde1c924994e", "fields": {"nom_de_la_commune": "LOUROUX DE BEAUNE", "libell_d_acheminement": "LOUROUX DE BEAUNE", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03151"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28520d0bfb2a2c86c810ef5c32310c8d25c08568", "fields": {"nom_de_la_commune": "LOUROUX DE BOUBLE", "libell_d_acheminement": "LOUROUX DE BOUBLE", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03152"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd20a7a70740c54b6224e8d745f093625b93dd75", "fields": {"nom_de_la_commune": "LE MAYET D ECOLE", "libell_d_acheminement": "LE MAYET D ECOLE", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03164"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ae3eb286785575a485006efc2476cc5e8bbd7d", "fields": {"nom_de_la_commune": "MEILLARD", "libell_d_acheminement": "MEILLARD", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03169"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2812004de23d668bfff3b9754bf52ba5e797fd2", "fields": {"nom_de_la_commune": "LAPRUGNE", "libell_d_acheminement": "LAPRUGNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03139"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d97d772b59571c561b383e2a29832971534db5c", "fields": {"nom_de_la_commune": "MEAULNE", "libell_d_acheminement": "MEAULNE", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03168"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7bdd823ee369221879fd247285ccd0ecc51a153", "fields": {"nom_de_la_commune": "LORIGES", "libell_d_acheminement": "LORIGES", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03148"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7302de61b7ca744d67da725a2d40e61a377b9c21", "fields": {"nom_de_la_commune": "MAZIRAT", "libell_d_acheminement": "MAZIRAT", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03167"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91ced7aae2956338758a01796300578db916da2", "fields": {"nom_de_la_commune": "LUNEAU", "libell_d_acheminement": "LUNEAU", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03154"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2250809ed29c621d76eaf7f1e68eeea7a9a7f8", "fields": {"nom_de_la_commune": "MERCY", "libell_d_acheminement": "MERCY", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03171"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8814d0870492fa931ca9d816a1c329f35fd53cc7", "fields": {"code_postal": "04270", "code_commune_insee": "04204", "libell_d_acheminement": "SENEZ", "ligne_5": "LE POIL", "nom_de_la_commune": "SENEZ", "coordonnees_gps": [43.9535232378, 6.23179869809]}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2e859cdcfee5dfbf2e334bdfd3123db0e7a449", "fields": {"nom_de_la_commune": "THORAME HAUTE", "libell_d_acheminement": "THORAME HAUTE", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04219"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3853445c8b93e51564d3e6240f02a4bdf2a5761", "fields": {"nom_de_la_commune": "VALENSOLE", "libell_d_acheminement": "VALENSOLE", "code_postal": "04210", "coordonnees_gps": [43.8471806316, 5.95950406566], "code_commune_insee": "04230"}, "geometry": {"type": "Point", "coordinates": [5.95950406566, 43.8471806316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0765babc35aa195c71fd535b3511a8b5edb6a703", "fields": {"nom_de_la_commune": "THOARD", "libell_d_acheminement": "THOARD", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04217"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c82e77eebf17a9764792829b30d8228de2c1e11", "fields": {"nom_de_la_commune": "THEZE", "libell_d_acheminement": "THEZE", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04216"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c917ab831a05e33508e1a5c82bb5abb86eeb9f", "fields": {"code_postal": "05350", "code_commune_insee": "05038", "libell_d_acheminement": "CHATEAU VILLE VIEILLE", "ligne_5": "CHATEAU QUEYRAS", "nom_de_la_commune": "CHATEAU VILLE VIEILLE", "coordonnees_gps": [44.7398415746, 6.81322835157]}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04ba7a90916410f1362a3ca760493ffe96c42d59", "fields": {"nom_de_la_commune": "CHATEAUROUX LES ALPES", "libell_d_acheminement": "CHATEAUROUX LES ALPES", "code_postal": "05380", "coordonnees_gps": [44.6421477992, 6.48352463507], "code_commune_insee": "05036"}, "geometry": {"type": "Point", "coordinates": [6.48352463507, 44.6421477992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c30de5fe3ff5296ee094a8cda96ba35c638415", "fields": {"nom_de_la_commune": "CHATEAUNEUF D OZE", "libell_d_acheminement": "CHATEAUNEUF D OZE", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05035"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188bc1dabe93d41642d9218a28ccdc71ca0c6bd6", "fields": {"nom_de_la_commune": "CHAMPCELLA", "libell_d_acheminement": "CHAMPCELLA", "code_postal": "05310", "coordonnees_gps": [44.7404687507, 6.51315581075], "code_commune_insee": "05031"}, "geometry": {"type": "Point", "coordinates": [6.51315581075, 44.7404687507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ebc75aa992f9201b1f54d83b133b95e8d9b392", "fields": {"nom_de_la_commune": "FOUILLOUSE", "libell_d_acheminement": "FOUILLOUSE", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05057"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79ae318d7b22494eee312273726e8fd4af88d4d", "fields": {"nom_de_la_commune": "LES COSTES", "libell_d_acheminement": "LES COSTES", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05043"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4927ca3df25c51e1b8c97ac51c6cc43e5b45e7bb", "fields": {"nom_de_la_commune": "CHABOTTES", "libell_d_acheminement": "CHABOTTES", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05029"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327938e2f7e153966ad3f5890afbe266219a9561", "fields": {"nom_de_la_commune": "CHANOUSSE", "libell_d_acheminement": "CHANOUSSE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05033"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bf1e4d4349fc465622f740a3957d8026a979e8", "fields": {"nom_de_la_commune": "BREZIERS", "libell_d_acheminement": "BREZIERS", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05022"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44f2491111d3847b5c077bcacc9ec217042d234e", "fields": {"nom_de_la_commune": "LA CHAPELLE EN VALGAUDEMAR", "libell_d_acheminement": "LA CHAPELLE EN VALGAUDEMAR", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05064"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2140fc316f4d00e2375a814a9303e26cb8597d43", "fields": {"nom_de_la_commune": "LARDIER ET VALENCA", "libell_d_acheminement": "LARDIER ET VALENCA", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05071"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8a139adac480d90b39af4610d9544e025b5a14", "fields": {"nom_de_la_commune": "LA FREISSINOUSE", "libell_d_acheminement": "LA FREISSINOUSE", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05059"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f993c0f6b1b2c8f6fa7196edaae83cbb80598f91", "fields": {"nom_de_la_commune": "GUILLESTRE", "libell_d_acheminement": "GUILLESTRE", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05065"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d683469f47b21808657131eef0e23798803f0d7c", "fields": {"nom_de_la_commune": "MONTGARDIN", "libell_d_acheminement": "MONTGARDIN", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05084"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fc5332288afae62cc21d47755487087fd6f0d0", "fields": {"nom_de_la_commune": "MANTEYER", "libell_d_acheminement": "MANTEYER", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05075"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c738407169e56f87750a3392458e48f17b4522", "fields": {"nom_de_la_commune": "MONTJAY", "libell_d_acheminement": "MONTJAY", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05086"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b17062f24f7f20c979d73a1eb381407a110f7989", "fields": {"nom_de_la_commune": "NEVACHE", "libell_d_acheminement": "NEVACHE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05093"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ba149a7d637d6941c71bd841f9ffccde13e898", "fields": {"code_postal": "05300", "code_commune_insee": "05118", "libell_d_acheminement": "VAL BUECH MEOUGE", "ligne_5": "ANTONAVES", "nom_de_la_commune": "VAL BUECH MEOUGE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d87affe4d52a5a4a2369908a988b21f0b225ffe", "fields": {"code_postal": "05340", "code_commune_insee": "05101", "libell_d_acheminement": "PELVOUX", "ligne_5": "AILEFROIDE", "nom_de_la_commune": "PELVOUX", "coordonnees_gps": [44.8995242291, 6.43584380145]}, "geometry": {"type": "Point", "coordinates": [6.43584380145, 44.8995242291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f309668886f0924610667533ab25c0eb9c139cc", "fields": {"nom_de_la_commune": "LA ROCHE DES ARNAUDS", "libell_d_acheminement": "LA ROCHE DES ARNAUDS", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05123"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a9098af4512346d750ca3534d9e163c472a036", "fields": {"nom_de_la_commune": "PUY ST EUSEBE", "libell_d_acheminement": "PUY ST EUSEBE", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05108"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30610e17e92af1710fc81eeedc865d983b85563", "fields": {"nom_de_la_commune": "PUY ST ANDRE", "libell_d_acheminement": "PUY ST ANDRE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05107"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a6c5142261b40d5f72193c8075a1b5f83377f22", "fields": {"nom_de_la_commune": "PUY SANIERES", "libell_d_acheminement": "PUY SANIERES", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05111"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc0ceedacc2ec1f4f116ca71c5bdaefc8ccecb42", "fields": {"nom_de_la_commune": "RISTOLAS", "libell_d_acheminement": "RISTOLAS", "code_postal": "05460", "coordonnees_gps": [44.7747049241, 6.96776772287], "code_commune_insee": "05120"}, "geometry": {"type": "Point", "coordinates": [6.96776772287, 44.7747049241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641e68c25ef8a5be085be8b74239b2ba72befc93", "fields": {"nom_de_la_commune": "ORPIERRE", "libell_d_acheminement": "ORPIERRE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05097"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a90fa32f178e74231a36ee524a234bfa0345b6", "fields": {"nom_de_la_commune": "OIGNIES", "libell_d_acheminement": "OIGNIES", "code_postal": "62590", "coordonnees_gps": [50.4644775587, 2.99299716759], "code_commune_insee": "62637"}, "geometry": {"type": "Point", "coordinates": [2.99299716759, 50.4644775587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afbff3c7358f13f4defa9970f9a206955030b27", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62640"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d95061e68950fff0560c5c5a7cfe4cf90a7596a", "fields": {"nom_de_la_commune": "OUVE WIRQUIN", "libell_d_acheminement": "OUVE WIRQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62644"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3534205d609448d7f80f2031d4b97fecc771147b", "fields": {"nom_de_la_commune": "PALLUEL", "libell_d_acheminement": "PALLUEL", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62646"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb36863078a9b653cc0fe23f795c6e550b82c5a2", "fields": {"nom_de_la_commune": "PIHEM", "libell_d_acheminement": "PIHEM", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62656"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "403c33d3b960201a4412adf4fc52b2c7a30b6e51", "fields": {"nom_de_la_commune": "PIHEN LES GUINES", "libell_d_acheminement": "PIHEN LES GUINES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62657"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad2e4bf02c7cb9c4ba1dfdf215a7a3f1117a49e", "fields": {"nom_de_la_commune": "PITTEFAUX", "libell_d_acheminement": "PITTEFAUX", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62658"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2c8c1efbc93076b3986370b1bab4553b319bce", "fields": {"nom_de_la_commune": "PLANQUES", "libell_d_acheminement": "PLANQUES", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62659"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46737248fd28be3cc8de3e40dd56a974ecf48a00", "fields": {"nom_de_la_commune": "LE PORTEL", "libell_d_acheminement": "LE PORTEL", "code_postal": "62480", "coordonnees_gps": [50.7112430459, 1.57547146076], "code_commune_insee": "62667"}, "geometry": {"type": "Point", "coordinates": [1.57547146076, 50.7112430459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd4d5218f0c475e3de2ce91d5c77a55bd7f8b43", "fields": {"nom_de_la_commune": "PUISIEUX", "libell_d_acheminement": "PUISIEUX", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62672"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "858a8d2c1712159b256ad69a53d0036739ae98e3", "fields": {"nom_de_la_commune": "QUEANT", "libell_d_acheminement": "QUEANT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62673"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1fdf7dfce45998f6830fd90f3aec8f3b01cda3", "fields": {"nom_de_la_commune": "QUERCAMPS", "libell_d_acheminement": "QUERCAMPS", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62675"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b18d13c64884b137848f62b4d36a3bc93a1b4d6", "fields": {"nom_de_la_commune": "LE QUESNOY EN ARTOIS", "libell_d_acheminement": "LE QUESNOY EN ARTOIS", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62677"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd61ef2db2ba2b67c9de2af2e33f88257bdc720", "fields": {"nom_de_la_commune": "REBERGUES", "libell_d_acheminement": "REBERGUES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62692"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ec26a5ef4fc29d6307a56206484e0f69c74eba", "fields": {"nom_de_la_commune": "REBREUVE SUR CANCHE", "libell_d_acheminement": "REBREUVE SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62694"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f711115995d3c43da7020339a30091b6f0e0226", "fields": {"nom_de_la_commune": "RECOURT", "libell_d_acheminement": "RECOURT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62697"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30897ad0cf3224078c49605e9e5526337113f9dd", "fields": {"nom_de_la_commune": "RECQUES SUR COURSE", "libell_d_acheminement": "RECQUES SUR COURSE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62698"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead5a58d1de60bbbaec9a1b5d76d6925a858fb40", "fields": {"nom_de_la_commune": "RENTY", "libell_d_acheminement": "RENTY", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62704"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9514f797f1cffd38d99896566e88f0fd371fc532", "fields": {"nom_de_la_commune": "ROCLINCOURT", "libell_d_acheminement": "ROCLINCOURT", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62714"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ec4edc2b4d20941c35c030193bc94fb55a3ca4", "fields": {"nom_de_la_commune": "ROCQUIGNY", "libell_d_acheminement": "ROCQUIGNY", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62715"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fccd874a042359bc187b18ff6f8ff870d65faaf", "fields": {"nom_de_la_commune": "RUISSEAUVILLE", "libell_d_acheminement": "RUISSEAUVILLE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62726"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbbdec607753155cc42214014b667c1e04846ebb", "fields": {"nom_de_la_commune": "RUITZ", "libell_d_acheminement": "RUITZ", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62727"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee33092057a71113b5b84d9cedbbd6e73de93b72", "fields": {"nom_de_la_commune": "SACHIN", "libell_d_acheminement": "SACHIN", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62732"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d338328b87acb19b794714f6524be34e78793f85", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62742"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3571c0b0f69fa23597595c8b38141d3239390e95", "fields": {"nom_de_la_commune": "STE CATHERINE", "libell_d_acheminement": "STE CATHERINE", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62744"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e06b3c1a549a0aa8a95383fd9fb25ac3d5d37c", "fields": {"nom_de_la_commune": "ST MARTIN CHOQUEL", "libell_d_acheminement": "ST MARTIN CHOQUEL", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62759"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbaf91f407ba341150520e06b0d3dafc3692c781", "fields": {"nom_de_la_commune": "ST MARTIN D HARDINGHEM", "libell_d_acheminement": "ST MARTIN D HARDINGHEM", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62760"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343ef3720d98c73dac5a15abc98598b010314abc", "fields": {"nom_de_la_commune": "ST OMER", "libell_d_acheminement": "ST OMER", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62765"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7746acddc311bd571f0498d2a27fb870a80caa7", "fields": {"nom_de_la_commune": "ST REMY AU BOIS", "libell_d_acheminement": "ST REMY AU BOIS", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62768"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acf1af764c04826f4d33a55c0990f9eaad2c6b0", "fields": {"nom_de_la_commune": "ST TRICAT", "libell_d_acheminement": "ST TRICAT", "code_postal": "62185", "coordonnees_gps": [50.9031968827, 1.82269226345], "code_commune_insee": "62769"}, "geometry": {"type": "Point", "coordinates": [1.82269226345, 50.9031968827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1778a200a72438e25a57fc1859000180008f95", "fields": {"nom_de_la_commune": "SAPIGNIES", "libell_d_acheminement": "SAPIGNIES", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62776"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21b10cde068c3dbed94dcd68c49fe54ffd4f36f", "fields": {"nom_de_la_commune": "SAUCHY CAUCHY", "libell_d_acheminement": "SAUCHY CAUCHY", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62780"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042a8cdb2929ba0028748541451984cea9b9a04e", "fields": {"nom_de_la_commune": "SAUDEMONT", "libell_d_acheminement": "SAUDEMONT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62782"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5739424a1b18b9bf3f1c99ba7e2d6a5e96ae67f4", "fields": {"nom_de_la_commune": "SENLIS", "libell_d_acheminement": "SENLIS", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62790"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea7ea758ec0610c552e136e1163f49ba3145ce5", "fields": {"nom_de_la_commune": "SERICOURT", "libell_d_acheminement": "SERICOURT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62791"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4012d3f340843c162dd248be6363c18e9500c2e4", "fields": {"nom_de_la_commune": "SETQUES", "libell_d_acheminement": "SETQUES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62794"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdc07a9f725df8a7733138d887e942b5948406e", "fields": {"nom_de_la_commune": "SUS ST LEGER", "libell_d_acheminement": "SUS ST LEGER", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62804"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7daa19d08ff3d6c7b6a992f044e737732921166", "fields": {"nom_de_la_commune": "TIGNY NOYELLE", "libell_d_acheminement": "TIGNY NOYELLE", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62815"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad1db438545dcef8498bcbd15479e8090959f3e", "fields": {"nom_de_la_commune": "TILLOY LES HERMAVILLE", "libell_d_acheminement": "TILLOY LES HERMAVILLE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62816"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923f0186875f11978f615440a9abde72ff1ec3c5", "fields": {"nom_de_la_commune": "TORTEQUESNE", "libell_d_acheminement": "TORTEQUESNE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62825"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b540ef531415d3381b170706acfb5a1dc248c639", "fields": {"nom_de_la_commune": "TOURNEHEM SUR LA HEM", "libell_d_acheminement": "TOURNEHEM SUR LA HEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62827"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef4f93d620ba7f61f8567c953c225698b41b2fa", "fields": {"nom_de_la_commune": "VENDIN LE VIEIL", "libell_d_acheminement": "VENDIN LE VIEIL", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62842"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e438ccc5e728686ce7d40077944d0384088777", "fields": {"nom_de_la_commune": "VERLINCTHUN", "libell_d_acheminement": "VERLINCTHUN", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62845"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c91f9c631adef8e8abca866dfb9505213bc79f", "fields": {"nom_de_la_commune": "VIEILLE EGLISE", "libell_d_acheminement": "VIEILLE EGLISE", "code_postal": "62162", "coordonnees_gps": [50.937258857, 2.08448464494], "code_commune_insee": "62852"}, "geometry": {"type": "Point", "coordinates": [2.08448464494, 50.937258857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83cba104b1f297ea93a7cca765c3962d18c17d7", "fields": {"nom_de_la_commune": "VIEIL MOUTIER", "libell_d_acheminement": "VIEIL MOUTIER", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62853"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec14d1463867dfb69e6f9fc3bc6239144ae4838a", "fields": {"nom_de_la_commune": "VILLERS AU BOIS", "libell_d_acheminement": "VILLERS AU BOIS", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62854"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5772d042c30ccca36dd97527c7414ed3aaf6eda2", "fields": {"nom_de_la_commune": "VILLERS CHATEL", "libell_d_acheminement": "VILLERS CHATEL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62857"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc998bd6adfd4cb0bc3be081ac7e7e4b529122d5", "fields": {"nom_de_la_commune": "WACQUINGHEN", "libell_d_acheminement": "WACQUINGHEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62867"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a0e60bcafdb5f72ca51a1c4c1972b82497c415", "fields": {"nom_de_la_commune": "WAILLY", "libell_d_acheminement": "WAILLY", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62869"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46f43631b86e6499fda92217222b1ba246038537", "fields": {"nom_de_la_commune": "WARLUS", "libell_d_acheminement": "WARLUS", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62878"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99395302fa3e9c787e1863339759041b40fed56", "fields": {"nom_de_la_commune": "WIERRE AU BOIS", "libell_d_acheminement": "WIERRE AU BOIS", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62888"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537e39e38ecddaf5ac7cd78e3cffe5881ef1b9e0", "fields": {"nom_de_la_commune": "WILLERVAL", "libell_d_acheminement": "WILLERVAL", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62892"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05a76aca29266b3bd45628f543a54e1f17e86c3", "fields": {"nom_de_la_commune": "WITTERNESSE", "libell_d_acheminement": "WITTERNESSE", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62900"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3783c3cd3ffabc6adeba1eb4ed1c816886fe9a", "fields": {"nom_de_la_commune": "ZOTEUX", "libell_d_acheminement": "ZOTEUX", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62903"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11b243ac69290c34ca40a78dc2a04ba98fc25b5", "fields": {"nom_de_la_commune": "ZUTKERQUE", "libell_d_acheminement": "ZUTKERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62906"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd6f19aab6bad21bfdb08944c061a016ab23e16", "fields": {"nom_de_la_commune": "ANZAT LE LUGUET", "libell_d_acheminement": "ANZAT LE LUGUET", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63006"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7c76b3e506a869ed9401cc85c0e797c35e0bc9", "fields": {"nom_de_la_commune": "AUGEROLLES", "libell_d_acheminement": "AUGEROLLES", "code_postal": "63930", "coordonnees_gps": [45.7386166201, 3.6587951745], "code_commune_insee": "63016"}, "geometry": {"type": "Point", "coordinates": [3.6587951745, 45.7386166201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b90d1e2434abd7e2a9cd280f75950c7a6fd2f8", "fields": {"nom_de_la_commune": "AYAT SUR SIOULE", "libell_d_acheminement": "AYAT SUR SIOULE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63025"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c670df5bee4e6621adea9b896cddbd7be59ef9e", "fields": {"nom_de_la_commune": "BEURIERES", "libell_d_acheminement": "BEURIERES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63039"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c032f4a898fa05b8047a07f1cfab8e8c3390e5c", "fields": {"nom_de_la_commune": "BLANZAT", "libell_d_acheminement": "BLANZAT", "code_postal": "63112", "coordonnees_gps": [45.827972158, 3.0732400431], "code_commune_insee": "63042"}, "geometry": {"type": "Point", "coordinates": [3.0732400431, 45.827972158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988a494565f3386adc04bc7b25725e01d00aae20", "fields": {"nom_de_la_commune": "LA BOURBOULE", "libell_d_acheminement": "LA BOURBOULE", "code_postal": "63150", "coordonnees_gps": [45.5912385571, 2.7549139086], "code_commune_insee": "63047"}, "geometry": {"type": "Point", "coordinates": [2.7549139086, 45.5912385571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e7b6415ad453ca13160df9cb5e75c590a895be", "fields": {"nom_de_la_commune": "BOURG LASTIC", "libell_d_acheminement": "BOURG LASTIC", "code_postal": "63760", "coordonnees_gps": [45.6646500323, 2.57820074575], "code_commune_insee": "63048"}, "geometry": {"type": "Point", "coordinates": [2.57820074575, 45.6646500323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcfbc86b14e08346fbf8a26724140e7f75b7f2d", "fields": {"nom_de_la_commune": "BROMONT LAMOTHE", "libell_d_acheminement": "BROMONT LAMOTHE", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63055"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6252440a071f9321297e667685ac70a984df75", "fields": {"nom_de_la_commune": "BROUSSE", "libell_d_acheminement": "BROUSSE", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63056"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c56d12fb4d1218716292344f0d010d95d30e32d", "fields": {"nom_de_la_commune": "LE BRUGERON", "libell_d_acheminement": "LE BRUGERON", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63057"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f883f94cca65b5151b30ac2a81be1d252d31919", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63060"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2341f9a21d28b7c5ca89102f7e8b036509070c15", "fields": {"nom_de_la_commune": "BUSSIERES ET PRUNS", "libell_d_acheminement": "BUSSIERES ET PRUNS", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63061"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5afb0e45ae37ec1387474bde352847f4dedaeaff", "fields": {"code_postal": "63250", "code_commune_insee": "63066", "libell_d_acheminement": "CELLES SUR DUROLLE", "ligne_5": "LES SARRAIX", "nom_de_la_commune": "CELLES SUR DUROLLE", "coordonnees_gps": [45.8665213579, 3.68184303614]}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d44e2237521e4b3f959d308b46eda1a937d2bd4", "fields": {"nom_de_la_commune": "CHABRELOCHE", "libell_d_acheminement": "CHABRELOCHE", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63072"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb02cab26431754e61034c8fb312e487d71d5fd", "fields": {"nom_de_la_commune": "CHAMALIERES", "libell_d_acheminement": "CHAMALIERES", "code_postal": "63400", "coordonnees_gps": [45.7743186902, 3.06190043276], "code_commune_insee": "63075"}, "geometry": {"type": "Point", "coordinates": [3.06190043276, 45.7743186902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d741c71d3da8e5ab577c4a28bfc972fa676e7757", "fields": {"nom_de_la_commune": "CHATEAUGAY", "libell_d_acheminement": "CHATEAUGAY", "code_postal": "63119", "coordonnees_gps": [45.8542573591, 3.09244323467], "code_commune_insee": "63099"}, "geometry": {"type": "Point", "coordinates": [3.09244323467, 45.8542573591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c030eae10b0edc8ec2981944a3cb71bbc0e3cf5", "fields": {"nom_de_la_commune": "CHATEAUNEUF LES BAINS", "libell_d_acheminement": "CHATEAUNEUF LES BAINS", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63100"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baebbc5bb46bc1f971d03034e06871dd5d9067a2", "fields": {"nom_de_la_commune": "CHATELDON", "libell_d_acheminement": "CHATELDON", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63102"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50dc1ece799606cfe90c55300ad5d021c47a682", "fields": {"nom_de_la_commune": "CHAURIAT", "libell_d_acheminement": "CHAURIAT", "code_postal": "63117", "coordonnees_gps": [45.7435035497, 3.27762294978], "code_commune_insee": "63106"}, "geometry": {"type": "Point", "coordinates": [3.27762294978, 45.7435035497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658c4168bcb3eebde4b1ba9151452853c39ddffa", "fields": {"nom_de_la_commune": "CHAVAROUX", "libell_d_acheminement": "CHAVAROUX", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63107"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a477fff49f3b695b2a07150e1daa2fd169826631", "fields": {"nom_de_la_commune": "CLERMONT FERRAND", "libell_d_acheminement": "CLERMONT FERRAND", "code_postal": "63000", "coordonnees_gps": [45.7859081171, 3.1155334528], "code_commune_insee": "63113"}, "geometry": {"type": "Point", "coordinates": [3.1155334528, 45.7859081171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28396244b22c75530a500dd73fdba638ff84d416", "fields": {"nom_de_la_commune": "COMBRONDE", "libell_d_acheminement": "COMBRONDE", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63116"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2045c1ce9b71f199a9cb5c2d7a073332ab3c4d29", "fields": {"nom_de_la_commune": "COMPAINS", "libell_d_acheminement": "COMPAINS", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63117"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48978efc18ce89f8f47ff1794465b042a5141a7", "fields": {"nom_de_la_commune": "CREVANT LAVEINE", "libell_d_acheminement": "CREVANT LAVEINE", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63128"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aa9265b5360f7877c938a39775fd18c63f182a9", "fields": {"nom_de_la_commune": "DALLET", "libell_d_acheminement": "DALLET", "code_postal": "63111", "coordonnees_gps": [45.7720454178, 3.23904434211], "code_commune_insee": "63133"}, "geometry": {"type": "Point", "coordinates": [3.23904434211, 45.7720454178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1b139eb6fe13baf66c695f0bbe39502edf6805", "fields": {"nom_de_la_commune": "DAUZAT SUR VODABLE", "libell_d_acheminement": "DAUZAT SUR VODABLE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63134"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c76f13a7e50906f032985e86785a8aedc19061", "fields": {"nom_de_la_commune": "ECHANDELYS", "libell_d_acheminement": "ECHANDELYS", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63142"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6a8200949a84a59da9cc5714fa3d5dc740e75f", "fields": {"nom_de_la_commune": "ENTRAIGUES", "libell_d_acheminement": "ENTRAIGUES", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63149"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1e1ae962b4cfab67a2522681c52329813bae94", "fields": {"nom_de_la_commune": "ENVAL", "libell_d_acheminement": "ENVAL", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63150"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25800f66be6c2439ef1c3740e763e3bd3ce42fb3", "fields": {"nom_de_la_commune": "ESCOUTOUX", "libell_d_acheminement": "ESCOUTOUX", "code_postal": "63300", "coordonnees_gps": [45.8543527446, 3.53248495668], "code_commune_insee": "63151"}, "geometry": {"type": "Point", "coordinates": [3.53248495668, 45.8543527446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac32fb7c5bfebb5e5231118d78eb09d7b7f7d2ce", "fields": {"nom_de_la_commune": "FOURNOLS", "libell_d_acheminement": "FOURNOLS", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63162"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18687651b412c3d8ea4542b897bfacf3f1d0275", "fields": {"nom_de_la_commune": "GRANDEYROLLES", "libell_d_acheminement": "GRANDEYROLLES", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63172"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbefb8b2aa6a86bec151d69444af2bdaa3308d8", "fields": {"nom_de_la_commune": "GRANDVAL", "libell_d_acheminement": "GRANDVAL", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63174"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d1d9c5a4ebf4ceaddbe471340507a40bdc7ce8", "fields": {"nom_de_la_commune": "ISSERTEAUX", "libell_d_acheminement": "ISSERTEAUX", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63177"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e6927f37c2e685244eeb0b471aa44e5e89b8284", "fields": {"nom_de_la_commune": "JOZERAND", "libell_d_acheminement": "JOZERAND", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63181"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f366a15e2728c92dc26d55149a9ceb084365006", "fields": {"nom_de_la_commune": "LAPS", "libell_d_acheminement": "LAPS", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63188"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06a78974f6e3240b3a8849764fd61571357ec06", "fields": {"nom_de_la_commune": "LEMPDES", "libell_d_acheminement": "LEMPDES", "code_postal": "63370", "coordonnees_gps": [45.7728332802, 3.19302224533], "code_commune_insee": "63193"}, "geometry": {"type": "Point", "coordinates": [3.19302224533, 45.7728332802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a1f220895cbe048628e34af38522df3f583e13", "fields": {"nom_de_la_commune": "LEZOUX", "libell_d_acheminement": "LEZOUX", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63195"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f702deb391e71ee821ccb38e13045bb39473ae69", "fields": {"nom_de_la_commune": "LIMONS", "libell_d_acheminement": "LIMONS", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63196"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1787c8d45a623878f829ca5b808e2bff84d6e4", "fields": {"nom_de_la_commune": "LUDESSE", "libell_d_acheminement": "LUDESSE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63199"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88c653fd1e8d3a7931eb7555451400ac795788d", "fields": {"nom_de_la_commune": "MALAUZAT", "libell_d_acheminement": "MALAUZAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63203"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72344f3e2ee2348232c3492cf8678f59237955f2", "fields": {"nom_de_la_commune": "MANZAT", "libell_d_acheminement": "MANZAT", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63206"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "365b80fd887d14a3dc4d6fedc392551c0f78b4f0", "fields": {"nom_de_la_commune": "MAREUGHEOL", "libell_d_acheminement": "MAREUGHEOL", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63209"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2540342ef39a69f96e85edcb943ca3ad97372d8", "fields": {"nom_de_la_commune": "MAUZUN", "libell_d_acheminement": "MAUZUN", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63216"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e460b74c1d442ed717e3320ed06b171d059b00db", "fields": {"nom_de_la_commune": "MAZAYE", "libell_d_acheminement": "MAZAYE", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63219"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1910327dfad1a1d09f7c0684c8257405616d466c", "fields": {"nom_de_la_commune": "BEUZEVILLE LA GUERARD", "libell_d_acheminement": "BEUZEVILLE LA GUERARD", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76091"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4135b7b6e75a742687d1a3189bda99f922d8d106", "fields": {"nom_de_la_commune": "BLANGY SUR BRESLE", "libell_d_acheminement": "BLANGY SUR BRESLE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76101"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a511ba1c79ad0e3134cf8c1b3e039aa9cf71604f", "fields": {"nom_de_la_commune": "BOIS GUILBERT", "libell_d_acheminement": "BOIS GUILBERT", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76107"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb0a135cde5bc3d57519cfa20730003dbb7c0e9", "fields": {"nom_de_la_commune": "BOLLEVILLE", "libell_d_acheminement": "BOLLEVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76115"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fed40797fec50132822deb0298bf050198d8b7", "fields": {"nom_de_la_commune": "CALLENGEVILLE", "libell_d_acheminement": "CALLENGEVILLE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76122"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96e918bdae6aeb3ac784c1a3b0b043a32883bf30", "fields": {"code_postal": "76270", "code_commune_insee": "76122", "libell_d_acheminement": "CALLENGEVILLE", "ligne_5": "LES ESSARTS VARIMPRE", "nom_de_la_commune": "CALLENGEVILLE", "coordonnees_gps": [49.7406847594, 1.46475769739]}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644664d3178e1f18e09f4f671bc40000dd5dcc2b", "fields": {"nom_de_la_commune": "BOSC MESNIL", "libell_d_acheminement": "BOSC MESNIL", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76126"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd11c4878799bddb69a2e16217d97993d00f254b", "fields": {"nom_de_la_commune": "BOUVILLE", "libell_d_acheminement": "BOUVILLE", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76135"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c847ebbc3485c69ef4a413100491fbf30193d9", "fields": {"nom_de_la_commune": "BRACQUETUIT", "libell_d_acheminement": "BRACQUETUIT", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76138"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521ba686dae188d123e34db52528f582c4c1974a", "fields": {"nom_de_la_commune": "BRADIANCOURT", "libell_d_acheminement": "BRADIANCOURT", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76139"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55dda1e4aa15830c6de13e4a1fc434675eb26ed", "fields": {"nom_de_la_commune": "BRAMETOT", "libell_d_acheminement": "BRAMETOT", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76140"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79abfe5dc711c898002d99f5509a8bd14201b66c", "fields": {"nom_de_la_commune": "CANVILLE LES DEUX EGLISES", "libell_d_acheminement": "CANVILLE LES DEUX EGLISES", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76158"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67e694d047d2e41ccbeb5299e6dfe125e2dd8398", "fields": {"code_postal": "76490", "code_commune_insee": "76164", "libell_d_acheminement": "RIVES EN SEINE", "ligne_5": "CAUDEBEC EN CAUX", "nom_de_la_commune": "RIVES EN SEINE", "coordonnees_gps": [49.5497184764, 0.687731909353]}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b107d36118777e1ba5dc88b90ff0394c019184b7", "fields": {"code_postal": "76490", "code_commune_insee": "76164", "libell_d_acheminement": "RIVES EN SEINE", "ligne_5": "VILLEQUIER", "nom_de_la_commune": "RIVES EN SEINE", "coordonnees_gps": [49.5497184764, 0.687731909353]}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e920d4d31cf775f2dda94c3e597c0cd0522c31", "fields": {"nom_de_la_commune": "CLIPONVILLE", "libell_d_acheminement": "CLIPONVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76182"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609513599a2a3ebe934da6f0671940cbd25e4cd7", "fields": {"nom_de_la_commune": "COMPAINVILLE", "libell_d_acheminement": "COMPAINVILLE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76185"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04761ac125d0096a00325308655348dbf1d6c72d", "fields": {"code_postal": "76910", "code_commune_insee": "76192", "libell_d_acheminement": "CRIEL SUR MER", "ligne_5": "MESNIL VAL", "nom_de_la_commune": "CRIEL SUR MER", "coordonnees_gps": [50.002581149, 1.30116674877]}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73d9042531f6a3cb389f19c64a9768a3b699927", "fields": {"nom_de_la_commune": "CRIQUIERS", "libell_d_acheminement": "CRIQUIERS", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76199"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d17e5865f69398f2ea460944d5c7f3022211815", "fields": {"nom_de_la_commune": "CUVERVILLE", "libell_d_acheminement": "CUVERVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76206"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70d613558c670580535eab6b24c9f947ae143d6", "fields": {"nom_de_la_commune": "ECALLES ALIX", "libell_d_acheminement": "ECALLES ALIX", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76223"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a442ebdf706732b0ac6bf3c1dd25dd6641afb2e", "fields": {"nom_de_la_commune": "ECRETTEVILLE SUR MER", "libell_d_acheminement": "ECRETTEVILLE SUR MER", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76226"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3006c1ddad1ad8bbf4c037a23495315bfb4f807", "fields": {"nom_de_la_commune": "ELBEUF SUR ANDELLE", "libell_d_acheminement": "ELBEUF SUR ANDELLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76230"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345b4fd085fb4303d99a5a45a9415c3d761db473", "fields": {"nom_de_la_commune": "ELLECOURT", "libell_d_acheminement": "ELLECOURT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76233"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8aa9798690069776a02b114f7496e3596b168d0", "fields": {"nom_de_la_commune": "EMANVILLE", "libell_d_acheminement": "EMANVILLE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76234"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c43a1fadafff282f80e382a2d67932f4c2fdb3", "fields": {"nom_de_la_commune": "ERNEMONT LA VILLETTE", "libell_d_acheminement": "ERNEMONT LA VILLETTE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76242"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818479520968ddd2ece4d240117690865029b245", "fields": {"nom_de_la_commune": "ESCLAVELLES", "libell_d_acheminement": "ESCLAVELLES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76244"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18230c18d9618e3e8c61384f707144a1298ac85", "fields": {"nom_de_la_commune": "ESTEVILLE", "libell_d_acheminement": "ESTEVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76247"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3399a6db896a4c967085fe509513661291be067d", "fields": {"nom_de_la_commune": "ETALONDES", "libell_d_acheminement": "ETALONDES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76252"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1db361f01c37c5e3fbeb75050d15578fbe4c964", "fields": {"nom_de_la_commune": "FERRIERES EN BRAY", "libell_d_acheminement": "FERRIERES EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76260"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6334e3867dccb7ed59a0345f419369afa69a8818", "fields": {"nom_de_la_commune": "LA FERTE ST SAMSON", "libell_d_acheminement": "LA FERTE ST SAMSON", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76261"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c7141f652f57e1d6f3849a24f6babccc4a58fe", "fields": {"nom_de_la_commune": "FONTAINE SOUS PREAUX", "libell_d_acheminement": "FONTAINE SOUS PREAUX", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76273"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178af59aae5c9e9fc4ace8795962be585468bbff", "fields": {"nom_de_la_commune": "LA FONTELAYE", "libell_d_acheminement": "LA FONTELAYE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76274"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "533a7137ae630b41429556930451c91130d476a5", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76275"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9aaa23075a324fdc11d20e8e472d1cdbfcdedf2", "fields": {"nom_de_la_commune": "FREAUVILLE", "libell_d_acheminement": "FREAUVILLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76280"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7185bbaf0cb2727c13150398b969d1975bf3547d", "fields": {"nom_de_la_commune": "FRESNOY FOLNY", "libell_d_acheminement": "FRESNOY FOLNY", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76286"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a610b99e6d4f82f7eff2b3a05db5e8dd57088e", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "LA FOLLETIERE", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2c6e8a19eedfcc81bba87fbb2b7a0ce6e1344a", "fields": {"code_postal": "76700", "code_commune_insee": "76305", "libell_d_acheminement": "GONFREVILLE L ORCHER", "ligne_5": "GOURNAY EN CAUX", "nom_de_la_commune": "GONFREVILLE L ORCHER", "coordonnees_gps": [49.4973035255, 0.236903290282]}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc41a4ca04240ad1e96de3e9c36144163b21984", "fields": {"nom_de_la_commune": "GONNEVILLE LA MALLET", "libell_d_acheminement": "GONNEVILLE LA MALLET", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76307"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204a414a34aae7482e44e4b4933d259a8800b229", "fields": {"nom_de_la_commune": "GOURNAY EN BRAY", "libell_d_acheminement": "GOURNAY EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76312"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2440fc672e879567f6c03cb9eeafd6b11452a296", "fields": {"nom_de_la_commune": "GOUY", "libell_d_acheminement": "GOUY", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76313"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e561cfbb94b32bfb679a83647eef304053277b", "fields": {"nom_de_la_commune": "GRAIMBOUVILLE", "libell_d_acheminement": "GRAIMBOUVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76314"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3819ed19a89d59d9b644b2e0d93bd6b37ad9c970", "fields": {"nom_de_la_commune": "GRAND COURONNE", "libell_d_acheminement": "GRAND COURONNE", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76319"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f5a9eee1f1d33d62d76a34a13f52a103b3db0d", "fields": {"nom_de_la_commune": "GRANDCOURT", "libell_d_acheminement": "GRANDCOURT", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76320"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9b7781a1f22e765326a998cc9d59b4053ff9b6", "fields": {"nom_de_la_commune": "GREGES", "libell_d_acheminement": "GREGES", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76324"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a48c762f3ea989fa058165beb9d6f9ae8a84565", "fields": {"nom_de_la_commune": "GRIGNEUSEVILLE", "libell_d_acheminement": "GRIGNEUSEVILLE", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76328"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59386a5edf90ccc40a49b6013783dca3fd6c1b1", "fields": {"nom_de_la_commune": "GRUCHET LE VALASSE", "libell_d_acheminement": "GRUCHET LE VALASSE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76329"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ba1af4d47d1c37bd386854e02a8b1de9be2e22", "fields": {"nom_de_la_commune": "GRUCHET ST SIMEON", "libell_d_acheminement": "GRUCHET ST SIMEON", "code_postal": "76810", "coordonnees_gps": [49.8183017172, 0.909956349488], "code_commune_insee": "76330"}, "geometry": {"type": "Point", "coordinates": [0.909956349488, 49.8183017172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139b34b20cb09d5d5fb6966b233f3f9031c8a575", "fields": {"nom_de_la_commune": "GUEUTTEVILLE LES GRES", "libell_d_acheminement": "GUEUTTEVILLE LES GRES", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76336"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927c66955f751df80667f14c59fc5cb215689208", "fields": {"nom_de_la_commune": "HAUCOURT", "libell_d_acheminement": "HAUCOURT", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76343"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e6800eead11a2368669c06e2aed823cd723e95c", "fields": {"nom_de_la_commune": "LE HAVRE", "libell_d_acheminement": "LE HAVRE", "code_postal": "76600", "coordonnees_gps": [49.4965610328, 0.1402707121], "code_commune_insee": "76351"}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9ec3011afbf0ff33b1738aabde399f9c376b4e1", "fields": {"nom_de_la_commune": "LE HAVRE", "libell_d_acheminement": "LE HAVRE", "code_postal": "76610", "coordonnees_gps": [49.4965610328, 0.1402707121], "code_commune_insee": "76351"}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0ee659ccf6ac7375c80182d88b6e726acbda6d", "fields": {"nom_de_la_commune": "LE HERON", "libell_d_acheminement": "LE HERON", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76358"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef530122b05f5b9586e07c0dee3b21b9691062bf", "fields": {"nom_de_la_commune": "HOUDETOT", "libell_d_acheminement": "HOUDETOT", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76365"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f369513af2992aa39b62c3ab668d89bceb59308b", "fields": {"nom_de_la_commune": "HOUPPEVILLE", "libell_d_acheminement": "HOUPPEVILLE", "code_postal": "76770", "coordonnees_gps": [49.5108089037, 1.07268488267], "code_commune_insee": "76367"}, "geometry": {"type": "Point", "coordinates": [1.07268488267, 49.5108089037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98d096ad504e43bca56968a2b071111e64b7684", "fields": {"nom_de_la_commune": "HUGLEVILLE EN CAUX", "libell_d_acheminement": "HUGLEVILLE EN CAUX", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76370"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afba4fc21dca824782ac53fbe41beceb401c8514", "fields": {"nom_de_la_commune": "LES IFS", "libell_d_acheminement": "LES IFS", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76371"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea6e3816da20e045b692e4993615155626bc165", "fields": {"nom_de_la_commune": "LANDES VIEILLES ET NEUVES", "libell_d_acheminement": "LANDES VIEILLES ET NEUVES", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76381"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2465b85d2076ad11b6eefea32fd4a14c44b954b0", "fields": {"nom_de_la_commune": "LONGUERUE", "libell_d_acheminement": "LONGUERUE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76396"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977f95f80433602629e14a9bf8c986d1ee9ef14f", "fields": {"nom_de_la_commune": "MANIQUERVILLE", "libell_d_acheminement": "MANIQUERVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76406"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd48e4f9787b9cb595efa265ea805476154b27af", "fields": {"nom_de_la_commune": "MANNEVILLE LA GOUPIL", "libell_d_acheminement": "MANNEVILLE LA GOUPIL", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76408"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9d692d643e7cbc304bdc4fb964cc7e19adc9d2", "fields": {"nom_de_la_commune": "MASSY", "libell_d_acheminement": "MASSY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76415"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb83d3155479414ce12f48eff64e1aa6d578093", "fields": {"nom_de_la_commune": "LE MESNIL ESNARD", "libell_d_acheminement": "LE MESNIL ESNARD", "code_postal": "76240", "coordonnees_gps": [49.4050423755, 1.13866977273], "code_commune_insee": "76429"}, "geometry": {"type": "Point", "coordinates": [1.13866977273, 49.4050423755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c801d79c5f8171773b51bb23909e44c1b919487", "fields": {"nom_de_la_commune": "MONTROTY", "libell_d_acheminement": "MONTROTY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76450"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baa45d7460643005d2d3db438ad560a85da875c", "fields": {"nom_de_la_commune": "MOTTEVILLE", "libell_d_acheminement": "MOTTEVILLE", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76456"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c77483c7f81a6e39be2181bef95a31e0799f2dc", "fields": {"nom_de_la_commune": "MUCHEDENT", "libell_d_acheminement": "MUCHEDENT", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76458"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df77712971d1f2c27e2d103417f10251ae486b0", "fields": {"nom_de_la_commune": "NEUVILLE FERRIERES", "libell_d_acheminement": "NEUVILLE FERRIERES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76465"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0013a35cf6b4513183881e31f79feea9b58bf489", "fields": {"nom_de_la_commune": "OUDALLE", "libell_d_acheminement": "OUDALLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76489"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af5960abc1ccf3f9c9d276980e8aab40208568b", "fields": {"nom_de_la_commune": "OURVILLE EN CAUX", "libell_d_acheminement": "OURVILLE EN CAUX", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76490"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "077f5f581d182dbed7e86f5b2f23f3ef5f27dc78", "fields": {"nom_de_la_commune": "OUVILLE LA RIVIERE", "libell_d_acheminement": "OUVILLE LA RIVIERE", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76492"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d4ac47954a0d14d4a5bfa7b149bd350387cd72", "fields": {"nom_de_la_commune": "PLEINE SEVE", "libell_d_acheminement": "PLEINE SEVE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76504"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41998f3206dd78e6b3550661c64709cf300cbf64", "fields": {"nom_de_la_commune": "QUINCAMPOIX", "libell_d_acheminement": "QUINCAMPOIX", "code_postal": "76230", "coordonnees_gps": [49.5059681606, 1.15634318194], "code_commune_insee": "76517"}, "geometry": {"type": "Point", "coordinates": [1.15634318194, 49.5059681606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91764af5e773fa6146b4c8c49e5bf7b16b7e6200", "fields": {"nom_de_la_commune": "RAFFETOT", "libell_d_acheminement": "RAFFETOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76518"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d57390ccaf16129a7e21ac8374c48c4961f5e6", "fields": {"nom_de_la_commune": "REALCAMP", "libell_d_acheminement": "REALCAMP", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76520"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c0d0d31ecdef8ad014101c442fff4d62b0e3a6", "fields": {"nom_de_la_commune": "REUVILLE", "libell_d_acheminement": "REUVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76524"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bd649b1a4e6c74bda4ad8eaae423ea584824f4", "fields": {"nom_de_la_commune": "ROUEN", "libell_d_acheminement": "ROUEN", "code_postal": "76100", "coordonnees_gps": [49.4414760352, 1.09318612833], "code_commune_insee": "76540"}, "geometry": {"type": "Point", "coordinates": [1.09318612833, 49.4414760352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e75a396984b11c7c7e272efc009f92f74d473a", "fields": {"nom_de_la_commune": "ROUTES", "libell_d_acheminement": "ROUTES", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76542"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5485eefde3deb48aa613f69dbbf7ab91dec44de", "fields": {"nom_de_la_commune": "RY", "libell_d_acheminement": "RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76548"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd03ab24f9474c2a92f468c481e266c706a94099", "fields": {"nom_de_la_commune": "SAHURS", "libell_d_acheminement": "SAHURS", "code_postal": "76113", "coordonnees_gps": [49.3773922379, 0.947884639946], "code_commune_insee": "76550"}, "geometry": {"type": "Point", "coordinates": [0.947884639946, 49.3773922379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c28a4de21beec86237b08246950db19d11e8d5", "fields": {"nom_de_la_commune": "ST ANDRE SUR CAILLY", "libell_d_acheminement": "ST ANDRE SUR CAILLY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76555"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25325fe03f4b95a9d719708f0eef6ea55589f69d", "fields": {"nom_de_la_commune": "ST AUBIN EPINAY", "libell_d_acheminement": "ST AUBIN EPINAY", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76560"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0e88394a2d5e663d3b6bfb3a6864a00d20e29e", "fields": {"nom_de_la_commune": "ST AUBIN LES ELBEUF", "libell_d_acheminement": "ST AUBIN LES ELBEUF", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76561"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cea125422f58582e2520feff2d28b5ad09f5cc", "fields": {"nom_de_la_commune": "ST AUBIN LE CAUF", "libell_d_acheminement": "ST AUBIN LE CAUF", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76562"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4782029c6e4654bdf92b382746aecc83639448", "fields": {"nom_de_la_commune": "ST AUBIN SUR MER", "libell_d_acheminement": "ST AUBIN SUR MER", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76564"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c257d12409e27bb2d7104bf1a2a9e4e2451738b", "fields": {"nom_de_la_commune": "STE BEUVE EN RIVIERE", "libell_d_acheminement": "STE BEUVE EN RIVIERE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76567"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2e649a2676412b30a84cd45cda89b6a8a12878", "fields": {"nom_de_la_commune": "ST GILLES DE CRETOT", "libell_d_acheminement": "ST GILLES DE CRETOT", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76585"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37643b869b64ae675dcb42e82e5fcb4009a04422", "fields": {"nom_de_la_commune": "ST GILLES DE LA NEUVILLE", "libell_d_acheminement": "ST GILLES DE LA NEUVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76586"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df71da804f839c28aa4e57100d73a1190fbeb54", "fields": {"nom_de_la_commune": "STE HELENE BONDEVILLE", "libell_d_acheminement": "STE HELENE BONDEVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76587"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c81318bb3bc2095cb2e3f952dc7634d6f9ea74f", "fields": {"nom_de_la_commune": "ST HELLIER", "libell_d_acheminement": "ST HELLIER", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76588"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6ff290b35f8ace5efa38fa46b72b032a53948b", "fields": {"nom_de_la_commune": "ST JACQUES SUR DARNETAL", "libell_d_acheminement": "ST JACQUES SUR DARNETAL", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76591"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dc380d45b54bdf8ed8a8a59ba0469dfd0c4627", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76600"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7f7543e9ddd68d7dcdae67e5c9c8da69898de9", "fields": {"nom_de_la_commune": "ST MACLOU DE FOLLEVILLE", "libell_d_acheminement": "ST MACLOU DE FOLLEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76602"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a37ecbc2a3e4d6880701f71dbca5af58abfe44", "fields": {"nom_de_la_commune": "ST MARDS", "libell_d_acheminement": "ST MARDS", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76604"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec4d00540c5a1972279dcddbaf012a519122874c", "fields": {"nom_de_la_commune": "STE MARGUERITE SUR MER", "libell_d_acheminement": "STE MARGUERITE SUR MER", "code_postal": "76119", "coordonnees_gps": [49.9045710817, 0.981854479387], "code_commune_insee": "76605"}, "geometry": {"type": "Point", "coordinates": [0.981854479387, 49.9045710817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28ad3793a7386b2451cde501d7e310cecbe7f8d", "fields": {"nom_de_la_commune": "STE MARGUERITE SUR FAUVILLE", "libell_d_acheminement": "STE MARGUERITE SUR FAUVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76607"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cac10dbe091e241ed90974881f37fee63ab09d", "fields": {"nom_de_la_commune": "ST MARTIN AUX BUNEAUX", "libell_d_acheminement": "ST MARTIN AUX BUNEAUX", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76613"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9a876f7703408678049cc5266f2453bdc97c75", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BELLEVILLE SUR MER", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea69c280b954f30e2cdf2362d541cc07aad25c0d", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BERNEVAL LE GRAND", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37b3d520da8064eeb92cd3ad48d9fd6fa67dd1df", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GRENY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6592cb414d0c5bdd376248ca2d698b7d88ef56dd", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "PENLY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883119db735a9d0e5fcd30457c0acac1f839cf43", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "ST QUENTIN AU BOSC", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c942e0138e288c6a4f57e22e73f61f72c061dde9", "fields": {"nom_de_la_commune": "ENGLANCOURT", "libell_d_acheminement": "ENGLANCOURT", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02276"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea3166657a8d243c99fd51b74797a8bf7e00d71", "fields": {"nom_de_la_commune": "DEUILLET", "libell_d_acheminement": "DEUILLET", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02262"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "702864a1f20a32327a4899cc4567dec4f9cc6d9b", "fields": {"nom_de_la_commune": "ESSISES", "libell_d_acheminement": "ESSISES", "code_postal": "02570", "coordonnees_gps": [48.9733835684, 3.38685321975], "code_commune_insee": "02289"}, "geometry": {"type": "Point", "coordinates": [3.38685321975, 48.9733835684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d715dbe85546a83ff900532f03aec39c06c42e3d", "fields": {"nom_de_la_commune": "ERLOY", "libell_d_acheminement": "ERLOY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02284"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a94e757f36e265c5aef8ce39f2219656332dd3e", "fields": {"nom_de_la_commune": "DURY", "libell_d_acheminement": "DURY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02273"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd31f57903e61dabeab85f10f27d4d622d6acce", "fields": {"nom_de_la_commune": "CHIVY LES ETOUVELLES", "libell_d_acheminement": "CHIVY LES ETOUVELLES", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02191"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de61254980ae4106321bd51d39f8afe750e286d7", "fields": {"nom_de_la_commune": "CHEVRESIS MONCEAU", "libell_d_acheminement": "CHEVRESIS MONCEAU", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02184"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d369e453a55d4a56d02aa6a179837cc5f8703ceb", "fields": {"nom_de_la_commune": "CONDE SUR AISNE", "libell_d_acheminement": "CONDE SUR AISNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02210"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c29441e11b014cd4b0c6b6f201cb75b2ffbf797", "fields": {"nom_de_la_commune": "CHEZY SUR MARNE", "libell_d_acheminement": "CHEZY SUR MARNE", "code_postal": "02570", "coordonnees_gps": [48.9733835684, 3.38685321975], "code_commune_insee": "02186"}, "geometry": {"type": "Point", "coordinates": [3.38685321975, 48.9733835684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af328523a31e8907c4435ee93ed13a80bb058595", "fields": {"nom_de_la_commune": "CLASTRES", "libell_d_acheminement": "CLASTRES", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02199"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05e65947f9143d1f63778e4487af75eb07aff93", "fields": {"nom_de_la_commune": "CIERGES", "libell_d_acheminement": "CIERGES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02193"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600d1085fd00adc546bc6350feedb77243bff162", "fields": {"nom_de_la_commune": "CHERET", "libell_d_acheminement": "CHERET", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02177"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a44174fb6b5c4444b1bd92eb30404a8c74b84c", "fields": {"nom_de_la_commune": "COINCY", "libell_d_acheminement": "COINCY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02203"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a98a7fb97fa978a777560c0efd50afd0625fc3", "fields": {"nom_de_la_commune": "CHOUY", "libell_d_acheminement": "CHOUY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02192"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4ede8555f4efc64aaaa8bf282676a9a7849866", "fields": {"nom_de_la_commune": "CILLY", "libell_d_acheminement": "CILLY", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02194"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159e32843ee31547c57acf26d9e1a82f01b6767d", "fields": {"nom_de_la_commune": "COURCELLES SUR VESLE", "libell_d_acheminement": "COURCELLES SUR VESLE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02224"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5302b605efb84c0e128e5f7617805f072f5d47cf", "fields": {"nom_de_la_commune": "CUISSY ET GENY", "libell_d_acheminement": "CUISSY ET GENY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02252"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2203765c271fdff64bdb617fe708fbc56648ca", "fields": {"nom_de_la_commune": "CROIX FONSOMME", "libell_d_acheminement": "CROIX FONSOMME", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02240"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a5a78527bded27634034871b9cb60b92bfc377", "fields": {"nom_de_la_commune": "COURCHAMPS", "libell_d_acheminement": "COURCHAMPS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02225"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e82b1b1656670db32a73e361b558eb656d5f2c", "fields": {"nom_de_la_commune": "CRAONNELLE", "libell_d_acheminement": "CRAONNELLE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02235"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95fb67d8e0e5d27e2e0730cf099b933d5233b703", "fields": {"nom_de_la_commune": "COURBOIN", "libell_d_acheminement": "COURBOIN", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02223"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e16716f23145686bbe99f645cf6a0bd07a544b2", "fields": {"nom_de_la_commune": "CRUPILLY", "libell_d_acheminement": "CRUPILLY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02244"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963701e9ac9db17d4ec3fa109006d82884d48729", "fields": {"nom_de_la_commune": "CORBENY", "libell_d_acheminement": "CORBENY", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02215"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2675592581e86103874b60dddbe89f551cee0858", "fields": {"nom_de_la_commune": "COUPRU", "libell_d_acheminement": "COUPRU", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02221"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7677b2b6844b2155b390183d625b6961ba988d", "fields": {"nom_de_la_commune": "DALLON", "libell_d_acheminement": "DALLON", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02257"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2db849d81582887466e301d15086cc287b94a90", "fields": {"nom_de_la_commune": "FROIDMONT COHARTILLE", "libell_d_acheminement": "FROIDMONT COHARTILLE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02338"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8e2e558f16a674cc46a0023484b5d425b3bb84", "fields": {"nom_de_la_commune": "FAUCOUCOURT", "libell_d_acheminement": "FAUCOUCOURT", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02301"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d1c3cb9e9277b375144ad7df668eee3a0e7253", "fields": {"nom_de_la_commune": "GERNICOURT", "libell_d_acheminement": "GERNICOURT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02344"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04fd6f6a84bd0e0046dade7f81364ab739a86be", "fields": {"nom_de_la_commune": "FOLEMBRAY", "libell_d_acheminement": "FOLEMBRAY", "code_postal": "02670", "coordonnees_gps": [49.5466521248, 3.27704956705], "code_commune_insee": "02318"}, "geometry": {"type": "Point", "coordinates": [3.27704956705, 49.5466521248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d7c993d35704f05e76989f5216463e9750c121", "fields": {"nom_de_la_commune": "FESTIEUX", "libell_d_acheminement": "FESTIEUX", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02309"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0117dd748865dd88e6fd1ef7492878258e0b5f", "fields": {"nom_de_la_commune": "ETREUX", "libell_d_acheminement": "ETREUX", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02298"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c666c9fb3a963b2e49ec276911b8fdf0b65fc9", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02316"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69897d3938552dd5bf733fa5ff8e8065c9cab124", "fields": {"nom_de_la_commune": "GERGNY", "libell_d_acheminement": "GERGNY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02342"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6fbec774f51bd866d4792ecedd2cc43263d1ed", "fields": {"code_postal": "02540", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "MARCHAIS EN BRIE", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9128673746, 3.4403848461]}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c83192edd5c408bd7574f49584906dc4e54411c1", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "VAUXCERE", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e189866624ae195dc2d27b43b7316c57515881", "fields": {"nom_de_la_commune": "LIESSE NOTRE DAME", "libell_d_acheminement": "LIESSE NOTRE DAME", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02430"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be71967c924644e0aaa874f009e7a62cc94101ae", "fields": {"nom_de_la_commune": "MAREST DAMPCOURT", "libell_d_acheminement": "MAREST DAMPCOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02461"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b8455b8a25f53a0080355947dd9075e7b25f88", "fields": {"nom_de_la_commune": "MAREUIL EN DOLE", "libell_d_acheminement": "MAREUIL EN DOLE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02462"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74958440c435a3315224c7a057dd42d49e679d35", "fields": {"nom_de_la_commune": "MARFONTAINE", "libell_d_acheminement": "MARFONTAINE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02463"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a25ae2854305be3f8e86ddcaf36f79d6b69f3e5", "fields": {"nom_de_la_commune": "LOUPEIGNE", "libell_d_acheminement": "LOUPEIGNE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02442"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a11b8992426575b3660fd838e21abc5346689c", "fields": {"nom_de_la_commune": "LESDINS", "libell_d_acheminement": "LESDINS", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02420"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add73b4a1bd462fdd9cc31cf17019c6e98fdab50", "fields": {"nom_de_la_commune": "LAUNOY", "libell_d_acheminement": "LAUNOY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02412"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212691e12bcf3252e85efa11a0a7417b70e2e09e", "fields": {"nom_de_la_commune": "LIZY", "libell_d_acheminement": "LIZY", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02434"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adceee3edc176a19de192181d10b9933b47256a", "fields": {"nom_de_la_commune": "GOUSSANCOURT", "libell_d_acheminement": "GOUSSANCOURT", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02351"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe987a0d5e7a5953082f6383ab6c7ed74ede0570", "fields": {"nom_de_la_commune": "GIBERCOURT", "libell_d_acheminement": "GIBERCOURT", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02345"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9305257dfe3b62e97c30e08d2516538bb2df41b", "fields": {"nom_de_la_commune": "HOMBLIERES", "libell_d_acheminement": "HOMBLIERES", "code_postal": "02720", "coordonnees_gps": [49.8506777552, 3.38251026426], "code_commune_insee": "02383"}, "geometry": {"type": "Point", "coordinates": [3.38251026426, 49.8506777552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc3563b286f84f6c526d2c7cf84eda8eebf18a6", "fields": {"nom_de_la_commune": "JUMENCOURT", "libell_d_acheminement": "JUMENCOURT", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02395"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4835a870b3814251f1d9876c42b96a1fbf79a4", "fields": {"nom_de_la_commune": "LANISCOURT", "libell_d_acheminement": "LANISCOURT", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02407"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c400ae28fc9f082413c4e97c07a8526b30867b8", "fields": {"nom_de_la_commune": "ITANCOURT", "libell_d_acheminement": "ITANCOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02387"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1d62b5be1c85c0148044b04fb5a5fa559f46ba", "fields": {"nom_de_la_commune": "HINACOURT", "libell_d_acheminement": "HINACOURT", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02380"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689942de039925432deee5b81d296728fed60b9c", "fields": {"nom_de_la_commune": "HAUTION", "libell_d_acheminement": "HAUTION", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02377"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52181fe4765dc8157e31728587068035e89fbc0e", "fields": {"nom_de_la_commune": "JUMIGNY", "libell_d_acheminement": "JUMIGNY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02396"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67452d73c6f612b6122fe900e2dbda0bc187d547", "fields": {"nom_de_la_commune": "HOLNON", "libell_d_acheminement": "HOLNON", "code_postal": "02760", "coordonnees_gps": [49.8580828393, 3.21383047105], "code_commune_insee": "02382"}, "geometry": {"type": "Point", "coordinates": [3.21383047105, 49.8580828393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6d94a73ea4f827784aaf3fd24afd2e9da98045", "fields": {"nom_de_la_commune": "NEUFCHATEL SUR AISNE", "libell_d_acheminement": "NEUFCHATEL SUR AISNE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02541"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a85620e457bcf3fb594888284e8f2262600d92e", "fields": {"nom_de_la_commune": "MONTIGNY SUR CRECY", "libell_d_acheminement": "MONTIGNY SUR CRECY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02517"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2898da9a8c61ec577dcbef6aaad0cea17aacb00", "fields": {"nom_de_la_commune": "MORTEFONTAINE", "libell_d_acheminement": "MORTEFONTAINE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02528"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44bbbe1b035d020730a8c5f18f06ae2c3efd1ce8", "fields": {"nom_de_la_commune": "MONT ST JEAN", "libell_d_acheminement": "MONT ST JEAN", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02522"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49341b79972fdaa1c103da9a4137910ca390d9e7", "fields": {"nom_de_la_commune": "MONTLOUE", "libell_d_acheminement": "MONTLOUE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02519"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b1f66fac1b8ffe1594fcdbad7ed00089dba902", "fields": {"nom_de_la_commune": "MUSCOURT", "libell_d_acheminement": "MUSCOURT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02534"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b784085c69754b1515f5467041fcc07ebc340d", "fields": {"nom_de_la_commune": "MONCEAU LE NEUF ET FAUCOUZY", "libell_d_acheminement": "MONCEAU LE NEUF ET FAUCOUZY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02491"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c67104678958abd81985b2de7b095aabfdea2ed", "fields": {"nom_de_la_commune": "MERLIEUX ET FOUQUEROLLES", "libell_d_acheminement": "MERLIEUX ET FOUQUEROLLES", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02478"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f32dd089838e4334f691ea2c72754cb82cb499", "fields": {"nom_de_la_commune": "MONTIGNY SOUS MARLE", "libell_d_acheminement": "MONTIGNY SOUS MARLE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02516"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b448c2c8482a7e5f021f1fdc34169b890abf3b77", "fields": {"nom_de_la_commune": "MONTIGNY LENGRAIN", "libell_d_acheminement": "MONTIGNY LENGRAIN", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02514"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17398629b68a3012694c6daf809a3b0003f30ca8", "fields": {"nom_de_la_commune": "MAUREGNY EN HAYE", "libell_d_acheminement": "MAUREGNY EN HAYE", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02472"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742944d1219f1016bc4a51ce02d98ee64b9c95a3", "fields": {"nom_de_la_commune": "MARLY GOMONT", "libell_d_acheminement": "MARLY GOMONT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02469"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d658618f4d070854f8e7cf89b342266ded356131", "fields": {"nom_de_la_commune": "MONTGOBERT", "libell_d_acheminement": "MONTGOBERT", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02506"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069629643d99ec14ee3813a3f6df33ce19daf184", "fields": {"nom_de_la_commune": "MENNEVILLE", "libell_d_acheminement": "MENNEVILLE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02475"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a21d7e215c2330878b39cbda843c38a908243d4", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02505"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae175a32039c0751035b095b71320db771ef0e2", "fields": {"nom_de_la_commune": "MENNEVRET", "libell_d_acheminement": "MENNEVRET", "code_postal": "02630", "coordonnees_gps": [49.9922293283, 3.57095592896], "code_commune_insee": "02476"}, "geometry": {"type": "Point", "coordinates": [3.57095592896, 49.9922293283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b2de041bbde609f863767ff7068e2e97cb127f", "fields": {"nom_de_la_commune": "LA NEUVILLE EN BEINE", "libell_d_acheminement": "LA NEUVILLE EN BEINE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02546"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3433b86e3db8a649b6b93f69db9c3aac8fc216f5", "fields": {"nom_de_la_commune": "PROVISEUX ET PLESNOY", "libell_d_acheminement": "PROVISEUX ET PLESNOY", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02627"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04044985ef96cee6be663142e9dcce9b08f758a", "fields": {"nom_de_la_commune": "QUINCY BASSE", "libell_d_acheminement": "QUINCY BASSE", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02632"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd763f97ab90058324b6c3faae66457d771c7e63", "fields": {"nom_de_la_commune": "PIERREPONT", "libell_d_acheminement": "PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02600"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3065141b738401bb0f39d5a4c79b6161bd4e4525", "fields": {"nom_de_la_commune": "PROUVAIS", "libell_d_acheminement": "PROUVAIS", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02626"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5a84c3cc85686291afd1bbf120234805707b63", "fields": {"nom_de_la_commune": "PLOMION", "libell_d_acheminement": "PLOMION", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02608"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37419a0e795386c43cc10c981723dcb05101e6de", "fields": {"nom_de_la_commune": "REMIGNY", "libell_d_acheminement": "REMIGNY", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02639"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876bd521e8d2270d7e2bbb7cce63057e0070b7f3", "fields": {"nom_de_la_commune": "RESIGNY", "libell_d_acheminement": "RESIGNY", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02642"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dbcc7cbca4b72ad75eef92f4159cdac688f6cb", "fields": {"nom_de_la_commune": "PRISCES", "libell_d_acheminement": "PRISCES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02623"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf435941ff2dc7cdad8741c4a3e29d6a4378c00", "fields": {"nom_de_la_commune": "ORIGNY EN THIERACHE", "libell_d_acheminement": "ORIGNY EN THIERACHE", "code_postal": "02550", "coordonnees_gps": [49.8858633722, 4.01070714049], "code_commune_insee": "02574"}, "geometry": {"type": "Point", "coordinates": [4.01070714049, 49.8858633722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f78fdc0cddbd5cfef0c19da626190b8d0d3eea5", "fields": {"nom_de_la_commune": "NOUVION LE VINEUX", "libell_d_acheminement": "NOUVION LE VINEUX", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02561"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b9f1fcf8ebbfc92994addf9558b26d32d2b240", "fields": {"nom_de_la_commune": "NOUVION LE COMTE", "libell_d_acheminement": "NOUVION LE COMTE", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02560"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99fc407014b595f1030beb7ba258093aec3f56", "fields": {"nom_de_la_commune": "OULCHY LA VILLE", "libell_d_acheminement": "OULCHY LA VILLE", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02579"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411a8aaea88d8e7e1416446f502fd1bcc9931bf3", "fields": {"nom_de_la_commune": "PASSY SUR MARNE", "libell_d_acheminement": "PASSY SUR MARNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02595"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126028e58999495bb11efd8e31a1286f91a0bfde", "fields": {"nom_de_la_commune": "NOROY SUR OURCQ", "libell_d_acheminement": "NOROY SUR OURCQ", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02557"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2098dfd2f29a89c42715f11581db99b1e96e834b", "fields": {"nom_de_la_commune": "OSLY COURTIL", "libell_d_acheminement": "OSLY COURTIL", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02576"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f672815f4b3f311f081947198f794af904bd4723", "fields": {"nom_de_la_commune": "NOIRCOURT", "libell_d_acheminement": "NOIRCOURT", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02556"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccca0d18805d1ca3a487dfdec25391d1cc33455e", "fields": {"nom_de_la_commune": "OEUILLY", "libell_d_acheminement": "OEUILLY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02565"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1b967608e669b11d6ada03f9d42c9b1072e92b", "fields": {"nom_de_la_commune": "PARGNAN", "libell_d_acheminement": "PARGNAN", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02588"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f9bb12dd15310f0983ff5d6e2a45d82fae733e", "fields": {"code_postal": "03190", "code_commune_insee": "03158", "libell_d_acheminement": "HAUT BOCAGE", "ligne_5": "LOUROUX HODEMENT", "nom_de_la_commune": "HAUT BOCAGE", "coordonnees_gps": [46.4826080397, 2.65647600079]}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf4423ff3eedebb00ee0055e25971833b3879fd", "fields": {"nom_de_la_commune": "MONETAY SUR ALLIER", "libell_d_acheminement": "MONETAY SUR ALLIER", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03176"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b782922fd2695740e030b6e58b0e070d46b73b2", "fields": {"nom_de_la_commune": "MONESTIER", "libell_d_acheminement": "MONESTIER", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03175"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d920abf2c73c8fe2021c32d0513860aa184e6a5", "fields": {"nom_de_la_commune": "MONTILLY", "libell_d_acheminement": "MONTILLY", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03184"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b7d8f7bb1afc624c2b3658e3b1d659261ca1b1", "fields": {"nom_de_la_commune": "MARCENAT", "libell_d_acheminement": "MARCENAT", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03160"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057b7c72e04ec815a9834d8ab9cdd4d4277dcb6c", "fields": {"nom_de_la_commune": "MOULINS", "libell_d_acheminement": "MOULINS", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03190"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3e2e86587a9c4331c80e2e4c084717e575e1be", "fields": {"nom_de_la_commune": "MOLINET", "libell_d_acheminement": "MOLINET", "code_postal": "03510", "coordonnees_gps": [46.4530576935, 3.94915396581], "code_commune_insee": "03173"}, "geometry": {"type": "Point", "coordinates": [3.94915396581, 46.4530576935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62d70e7256e0e90d3b10173c836fc67d1b38c9f4", "fields": {"nom_de_la_commune": "LA CROIX SUR ROUDOULE", "libell_d_acheminement": "LA CROIX SUR ROUDOULE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06051"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2929feedced2362a5ef1bb1c7517fed3f463808", "fields": {"nom_de_la_commune": "VILLAR D ARENE", "libell_d_acheminement": "VILLAR D ARENE", "code_postal": "05480", "coordonnees_gps": [44.9999233119, 6.36389538082], "code_commune_insee": "05181"}, "geometry": {"type": "Point", "coordinates": [6.36389538082, 44.9999233119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93e326d7014be456189ef0988b5ec6b360b304f", "fields": {"nom_de_la_commune": "VAL DES PRES", "libell_d_acheminement": "VAL DES PRES", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05174"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7a791c30ac986f47889aa1e52b3a09009011a5", "fields": {"nom_de_la_commune": "LE CANNET", "libell_d_acheminement": "LE CANNET", "code_postal": "06110", "coordonnees_gps": [43.5728764669, 7.0065967476], "code_commune_insee": "06030"}, "geometry": {"type": "Point", "coordinates": [7.0065967476, 43.5728764669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fecd1cc67e558388af58751d7ecdc6a2a06663c", "fields": {"nom_de_la_commune": "SORBIERS", "libell_d_acheminement": "SORBIERS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05169"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6055d51974db2fbddeb9126e1e95a49815ac83f0", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35275"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bead205c2eb54050ff4dfd6e977968c33046f54", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "ROTHENEUF", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8546649ff1acc8e0b923eb05b201e0d0501b4922", "fields": {"nom_de_la_commune": "ST MALO DE PHILY", "libell_d_acheminement": "ST MALO DE PHILY", "code_postal": "35480", "coordonnees_gps": [47.8244409976, -1.80170067957], "code_commune_insee": "35289"}, "geometry": {"type": "Point", "coordinates": [-1.80170067957, 47.8244409976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097cc042ad6822cb3897e7223077f2595ccef5b7", "fields": {"nom_de_la_commune": "ST MEEN LE GRAND", "libell_d_acheminement": "ST MEEN LE GRAND", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35297"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9996f252280cc20ad8e478e380bf0385685e593", "fields": {"nom_de_la_commune": "ST MELOIR DES ONDES", "libell_d_acheminement": "ST MELOIR DES ONDES", "code_postal": "35350", "coordonnees_gps": [48.645566435, -1.90776582617], "code_commune_insee": "35299"}, "geometry": {"type": "Point", "coordinates": [-1.90776582617, 48.645566435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0324494a732030e1a59df557d53d734e0049e4", "fields": {"nom_de_la_commune": "ST ONEN LA CHAPELLE", "libell_d_acheminement": "ST ONEN LA CHAPELLE", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35302"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2b126460b022b58348ccc8a6f7c047858af351", "fields": {"nom_de_la_commune": "ST OUEN LA ROUERIE", "libell_d_acheminement": "ST OUEN LA ROUERIE", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35303"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a1b91a261c21bf8be135bd145fd2467f1b61fc6", "fields": {"nom_de_la_commune": "SAULNIERES", "libell_d_acheminement": "SAULNIERES", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35321"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e89d4ff4249876bc462eaf216c747aed0b1874", "fields": {"nom_de_la_commune": "LA SELLE EN COGLES", "libell_d_acheminement": "LA SELLE EN COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35323"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "724298521f80857e56d73ec86b5bdee98e5e198b", "fields": {"nom_de_la_commune": "SERVON SUR VILAINE", "libell_d_acheminement": "SERVON SUR VILAINE", "code_postal": "35530", "coordonnees_gps": [48.1023169795, -1.48929089789], "code_commune_insee": "35327"}, "geometry": {"type": "Point", "coordinates": [-1.48929089789, 48.1023169795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b34e4e59bf20ff731363d304c197a5d198ceeaa", "fields": {"nom_de_la_commune": "TALENSAC", "libell_d_acheminement": "TALENSAC", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35331"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c606b7706d1e29a924e9fd86d3f1ac690a505a6", "fields": {"nom_de_la_commune": "TRANS LA FORET", "libell_d_acheminement": "TRANS LA FORET", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35339"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce2c0099fae2e0e465c0c7789759934dc6a8e95", "fields": {"nom_de_la_commune": "TREMBLAY", "libell_d_acheminement": "TREMBLAY", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35341"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37837bddf84d5b9fc042135d1d64a5d0f1caf7cd", "fields": {"nom_de_la_commune": "VIGNOC", "libell_d_acheminement": "VIGNOC", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35356"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b37041d3a21919ffd7c25b364e6e9d095ab3186", "fields": {"nom_de_la_commune": "PONT PEAN", "libell_d_acheminement": "PONT PEAN", "code_postal": "35131", "coordonnees_gps": [48.0288284104, -1.70152027546], "code_commune_insee": "35363"}, "geometry": {"type": "Point", "coordinates": [-1.70152027546, 48.0288284104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac23aed5803e061175d73fb01d256f781aabbfe7", "fields": {"nom_de_la_commune": "AIGURANDE", "libell_d_acheminement": "AIGURANDE", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36001"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0276c90ffc6750fec04d39463b89ddacc9d63370", "fields": {"nom_de_la_commune": "ARDENTES", "libell_d_acheminement": "ARDENTES", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36005"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "400992edec939449815bbd2a2f6ebb3245e919f0", "fields": {"nom_de_la_commune": "BARAIZE", "libell_d_acheminement": "BARAIZE", "code_postal": "36270", "coordonnees_gps": [46.4580307735, 1.55896815313], "code_commune_insee": "36012"}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137d0e1cb7cacbde707f4c21bda2a3835ef961e0", "fields": {"nom_de_la_commune": "BONNEUIL", "libell_d_acheminement": "BONNEUIL", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36020"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a95b6ebba1301b0ec302428961cd6f79b6a66b3", "fields": {"nom_de_la_commune": "BRIANTES", "libell_d_acheminement": "BRIANTES", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36025"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cfd9ea64835f85dbd0c384d2df2645bbd5d3ae", "fields": {"nom_de_la_commune": "CHAILLAC", "libell_d_acheminement": "CHAILLAC", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36035"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84a6e6ffc0a56c357e594523b6015381b813942", "fields": {"nom_de_la_commune": "LA CHAMPENOISE", "libell_d_acheminement": "LA CHAMPENOISE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36037"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b91a747d1978027a427e8a096b730c5e040cc01", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LAURIAN", "libell_d_acheminement": "LA CHAPELLE ST LAURIAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36041"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5a08fbba565594abed8cafd00d191eb7808701", "fields": {"nom_de_la_commune": "CHASSIGNOLLES", "libell_d_acheminement": "CHASSIGNOLLES", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36043"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a58caf65d4b36f9883fd71c2d1f318dfed74181", "fields": {"nom_de_la_commune": "LA CHATRE LANGLIN", "libell_d_acheminement": "LA CHATRE LANGLIN", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36047"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07406d73afc3b652d13f2c17fb0c10993f24bb26", "fields": {"nom_de_la_commune": "CHEZELLES", "libell_d_acheminement": "CHEZELLES", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36050"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a076b833e9486bef77250bff388893f41188b94", "fields": {"nom_de_la_commune": "CHITRAY", "libell_d_acheminement": "CHITRAY", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36051"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5937d571664ddafa7c542ee2580bd22c110f70b2", "fields": {"nom_de_la_commune": "CIRON", "libell_d_acheminement": "CIRON", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36053"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b497fa5b625a7247078d1b379094011a6052179", "fields": {"nom_de_la_commune": "CLERE DU BOIS", "libell_d_acheminement": "CLERE DU BOIS", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36054"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840805db8e2ad2c5d56bdecbe1c3c6d80aa76a13", "fields": {"nom_de_la_commune": "FONTGOMBAULT", "libell_d_acheminement": "FONTGOMBAULT", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36076"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f93fa283fc12390640715f9fe235c1404ba5674", "fields": {"nom_de_la_commune": "FONTGUENAND", "libell_d_acheminement": "FONTGUENAND", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36077"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f552ca98f108809ce7f7a68313291259d025a91e", "fields": {"nom_de_la_commune": "GARGILESSE DAMPIERRE", "libell_d_acheminement": "GARGILESSE DAMPIERRE", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36081"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31eff591a1a1211d62d7ad40793c27d23845bf27", "fields": {"nom_de_la_commune": "GIROUX", "libell_d_acheminement": "GIROUX", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36083"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476f212a3848055710fa225e840e4b2bbdda3ff8", "fields": {"nom_de_la_commune": "INGRANDES", "libell_d_acheminement": "INGRANDES", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36087"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff5428638bf8abd9d458a881419be14e6d1359d", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36095"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35380fb27a06f0f474e531d07b528756796a01f8", "fields": {"nom_de_la_commune": "LOUROUER ST LAURENT", "libell_d_acheminement": "LOUROUER ST LAURENT", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36100"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c7c686fdbe591adf7dc293a8ef2cea5e210aba", "fields": {"nom_de_la_commune": "LYS ST GEORGES", "libell_d_acheminement": "LYS ST GEORGES", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36108"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db77de7222d2732019504c043a621e7b0893a2a", "fields": {"nom_de_la_commune": "MAILLET", "libell_d_acheminement": "MAILLET", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36110"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebeefb77bec7e5222e19117c3ce08b2473d09af9", "fields": {"nom_de_la_commune": "MARON", "libell_d_acheminement": "MARON", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36112"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1f10677987c5e6d69bed3687fd6373522da8e9", "fields": {"nom_de_la_commune": "MENETREOLS SOUS VATAN", "libell_d_acheminement": "MENETREOLS SOUS VATAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36116"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dafc602d33d23a42870e39eb5a8458fe4f3c00e", "fields": {"nom_de_la_commune": "MERIGNY", "libell_d_acheminement": "MERIGNY", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36119"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d67269ec8531c2103e9ebe83f44c8a1306e50e1", "fields": {"nom_de_la_commune": "MEUNET PLANCHES", "libell_d_acheminement": "MEUNET PLANCHES", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36121"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234cc22a7272ea5a62f515546224f03d502339c3", "fields": {"nom_de_la_commune": "MEUNET SUR VATAN", "libell_d_acheminement": "MEUNET SUR VATAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36122"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a218b624959570fd6a2da0944257458230454ef", "fields": {"nom_de_la_commune": "MIGNE", "libell_d_acheminement": "MIGNE", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36124"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30eaaec9744e90ab20d36a2436e682ad0e9012c4", "fields": {"nom_de_la_commune": "MONTCHEVRIER", "libell_d_acheminement": "MONTCHEVRIER", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36126"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84153246ac0ed73d4e2eba53a4f19cf2829f1c5", "fields": {"nom_de_la_commune": "MONTIERCHAUME", "libell_d_acheminement": "MONTIERCHAUME", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36128"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4592eab87a459bfbd054959089c5906efd1f51f1", "fields": {"nom_de_la_commune": "MONTLEVICQ", "libell_d_acheminement": "MONTLEVICQ", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36130"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc49e0e5c27017196c70b514464ef95dc309e33", "fields": {"nom_de_la_commune": "MURS", "libell_d_acheminement": "MURS", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36136"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0041aeed125cac91fe8a5ec4689fde72e82c39", "fields": {"nom_de_la_commune": "NERET", "libell_d_acheminement": "NERET", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36138"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79bb81aa2d393065cb234d446a7406328eac094e", "fields": {"nom_de_la_commune": "OBTERRE", "libell_d_acheminement": "OBTERRE", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36145"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96b9e93562b6b743379c37b422fd2495e3b6ebc", "fields": {"nom_de_la_commune": "PALLUAU SUR INDRE", "libell_d_acheminement": "PALLUAU SUR INDRE", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36149"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5568b029255b9583386f5b6c6c0288a878e00c7c", "fields": {"nom_de_la_commune": "LE PONT CHRETIEN CHABENET", "libell_d_acheminement": "LE PONT CHRETIEN CHABENET", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36161"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645805ce12108761c44b692913c2754f9d0b39f5", "fields": {"nom_de_la_commune": "POULIGNY ST MARTIN", "libell_d_acheminement": "POULIGNY ST MARTIN", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36164"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59f436e94926d90808d791660b1713ca7a64fdd", "fields": {"nom_de_la_commune": "POULIGNY ST PIERRE", "libell_d_acheminement": "POULIGNY ST PIERRE", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36165"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f77f2a245979d31d6f0366305390189cd0f1507", "fields": {"nom_de_la_commune": "PREUILLY LA VILLE", "libell_d_acheminement": "PREUILLY LA VILLE", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36167"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5301b2bbe255ef6c8ed0efc36041a46edcd85b3", "fields": {"nom_de_la_commune": "REUILLY", "libell_d_acheminement": "REUILLY", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36171"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc88124ab043edf20d3db1277f0b73ee3f061153", "fields": {"nom_de_la_commune": "ST AOUT", "libell_d_acheminement": "ST AOUT", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36180"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9cc1c0e61e60a7d9f80785bd4584c93028c7448", "fields": {"nom_de_la_commune": "ST DENIS DE JOUHET", "libell_d_acheminement": "ST DENIS DE JOUHET", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36189"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d95758c20c1eddb52103d65747dede0cd48337c", "fields": {"nom_de_la_commune": "ST GAULTIER", "libell_d_acheminement": "ST GAULTIER", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36192"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8790d2d25d5f414d942f8820d9811ca3a5939f", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36193"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945a5ae32d567dc5d0dc041b684ccecf15876742", "fields": {"nom_de_la_commune": "ST LACTENCIN", "libell_d_acheminement": "ST LACTENCIN", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36198"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95af0e4fa0a5f97a2f25efc42e3be544b003fc63", "fields": {"nom_de_la_commune": "STE LIZAIGNE", "libell_d_acheminement": "STE LIZAIGNE", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36199"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cd8dec9aa6ea31717ecbfad1ed158fa442216c", "fields": {"nom_de_la_commune": "STE SEVERE SUR INDRE", "libell_d_acheminement": "STE SEVERE SUR INDRE", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36208"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5722139412c7c751e224a1211597b3fecc2a3ba2", "fields": {"nom_de_la_commune": "SASSIERGES ST GERMAIN", "libell_d_acheminement": "SASSIERGES ST GERMAIN", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36211"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5004b40176052a1e6f7e95255897dcc10cf94589", "fields": {"nom_de_la_commune": "SEGRY", "libell_d_acheminement": "SEGRY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36215"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479c35b50bc118aacdbb8c1269d47342c7597de0", "fields": {"nom_de_la_commune": "TILLY", "libell_d_acheminement": "TILLY", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36223"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbce3bd0bbac2d3f4f8d746dd85584d119415384", "fields": {"nom_de_la_commune": "VALENCAY", "libell_d_acheminement": "VALENCAY", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36228"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0545d7fe373299ae084dcfef1f94bf5a5d695d", "fields": {"code_postal": "36210", "code_commune_insee": "36229", "libell_d_acheminement": "VAL FOUZON", "ligne_5": "STE CECILE", "nom_de_la_commune": "VAL FOUZON", "coordonnees_gps": [47.1964381478, 1.69756497046]}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285895343efd7065f052bcc489037a8d6a87b34a", "fields": {"nom_de_la_commune": "VIGOUX", "libell_d_acheminement": "VIGOUX", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36239"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d2bbf8d467fbf00cea04ffcb983c9b127ff5eb", "fields": {"nom_de_la_commune": "BEAUMONT LA RONCE", "libell_d_acheminement": "BEAUMONT LA RONCE", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37021"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6604b4a55f2ee24641f977525b67a89b257195", "fields": {"nom_de_la_commune": "BENAIS", "libell_d_acheminement": "BENAIS", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37024"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee976b6813790755e34d5f18bf257c4ae6af6998", "fields": {"nom_de_la_commune": "BOURNAN", "libell_d_acheminement": "BOURNAN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37032"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e245ce00bdddc2f1c4ac3204dbaf4980e50cd8", "fields": {"nom_de_la_commune": "BRASLOU", "libell_d_acheminement": "BRASLOU", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37034"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e8c5833a43189ede5be74f471ca28e6034701e4", "fields": {"nom_de_la_commune": "BRAYE SOUS FAYE", "libell_d_acheminement": "BRAYE SOUS FAYE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37035"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1c87d690a28e6eb0a45bb70cbf13e727e1d0d5", "fields": {"nom_de_la_commune": "LA CELLE GUENAND", "libell_d_acheminement": "LA CELLE GUENAND", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37044"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9482b3aa8c305aeb69b63a6aad98769a0e853972", "fields": {"nom_de_la_commune": "CHANCEAUX PRES LOCHES", "libell_d_acheminement": "CHANCEAUX PRES LOCHES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37053"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5209024e47c9d93f2bdc0cd69f24aaaf84095c75", "fields": {"nom_de_la_commune": "CHARGE", "libell_d_acheminement": "CHARGE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37060"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468c9af5598a6e2ad3b8a2cbd72d3d07d02bc1f6", "fields": {"nom_de_la_commune": "CHARNIZAY", "libell_d_acheminement": "CHARNIZAY", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37061"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d3d32bdc172da5c84aa97d61c7ad7844d8edb5", "fields": {"nom_de_la_commune": "CHAVEIGNES", "libell_d_acheminement": "CHAVEIGNES", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37065"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e507e50f10a4ab916cd848f90c0b6bd89d749d", "fields": {"nom_de_la_commune": "CHEDIGNY", "libell_d_acheminement": "CHEDIGNY", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37066"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d57f1fb9cc7f00270984e9531bcc3ee3d2ae655", "fields": {"nom_de_la_commune": "CHISSEAUX", "libell_d_acheminement": "CHISSEAUX", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37073"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b644fa5f80e521f8a2e6f37becd5f36541ddc2ea", "fields": {"nom_de_la_commune": "ESTEIL", "libell_d_acheminement": "ESTEIL", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63156"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3f465aa8ecad0532ebdd24ac8683c890d176c04", "fields": {"nom_de_la_commune": "FAYET RONAYE", "libell_d_acheminement": "FAYET RONAYE", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63158"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b296f5de7b6e759827074aea8de61ceb77cfd94b", "fields": {"nom_de_la_commune": "FERNOEL", "libell_d_acheminement": "FERNOEL", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63159"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2d842632de5803733d43eed0cdd75168a77497", "fields": {"nom_de_la_commune": "LA GODIVELLE", "libell_d_acheminement": "LA GODIVELLE", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63169"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f8eb26c74bdba8b3fe402d7f19ebb1f86a85f0", "fields": {"nom_de_la_commune": "GOUTTIERES", "libell_d_acheminement": "GOUTTIERES", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63171"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a82467819a3903abffb0afa3f18d066ba76d5f", "fields": {"nom_de_la_commune": "JOB", "libell_d_acheminement": "JOB", "code_postal": "63990", "coordonnees_gps": [45.6284596162, 3.76332173104], "code_commune_insee": "63179"}, "geometry": {"type": "Point", "coordinates": [3.76332173104, 45.6284596162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde4321ada437e758b5ebcfbc82990c4d3b827d1", "fields": {"nom_de_la_commune": "JOZE", "libell_d_acheminement": "JOZE", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63180"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c48850a29c2b1e2babe7ff64bf03ae8e74259a6", "fields": {"nom_de_la_commune": "LAQUEUILLE", "libell_d_acheminement": "LAQUEUILLE", "code_postal": "63820", "coordonnees_gps": [45.6766706035, 2.68432018586], "code_commune_insee": "63189"}, "geometry": {"type": "Point", "coordinates": [2.68432018586, 45.6766706035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5488495a8db4cac95770f4ec7d12a285c576415c", "fields": {"nom_de_la_commune": "LARODDE", "libell_d_acheminement": "LARODDE", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63190"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a15d0149c6dff16c654bf0bab5686b575566ec5", "fields": {"nom_de_la_commune": "LASTIC", "libell_d_acheminement": "LASTIC", "code_postal": "63760", "coordonnees_gps": [45.6646500323, 2.57820074575], "code_commune_insee": "63191"}, "geometry": {"type": "Point", "coordinates": [2.57820074575, 45.6646500323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf393a3cc29f0af231f3a409428e72fdfe11b8f", "fields": {"nom_de_la_commune": "MARCILLAT", "libell_d_acheminement": "MARCILLAT", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63208"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930e0177dba1ff7292fc8cb3c759295520d55a8c", "fields": {"nom_de_la_commune": "LES MARTRES DE VEYRE", "libell_d_acheminement": "LES MARTRES DE VEYRE", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63214"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7914053d1100b4af2b83a80ef4ea274b2a6abe5d", "fields": {"code_postal": "63750", "code_commune_insee": "63225", "libell_d_acheminement": "MESSEIX", "ligne_5": "LES GANNES", "nom_de_la_commune": "MESSEIX", "coordonnees_gps": [45.6027201086, 2.52290102161]}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946e716aaccf8fd82d1244e9f22847b9280d01d8", "fields": {"nom_de_la_commune": "MOISSAT", "libell_d_acheminement": "MOISSAT", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63229"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e57f6c70eb3dbb72d29b3516c55591d7bf3e03f", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63232"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7596dab83768b2ad818cd1979a2f26b90a012293", "fields": {"nom_de_la_commune": "MONTCEL", "libell_d_acheminement": "MONTCEL", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63235"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5854388b8f35809b8a387f5aaf5153cfba5e70", "fields": {"nom_de_la_commune": "MONTMORIN", "libell_d_acheminement": "MONTMORIN", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63239"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88c5f1fb97fcbbb56720a88448452787ab6b6d8", "fields": {"nom_de_la_commune": "MORIAT", "libell_d_acheminement": "MORIAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63242"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f689949db7aef795f3d8b463b24943dc3cd8fe", "fields": {"code_postal": "63200", "code_commune_insee": "63244", "libell_d_acheminement": "CHAMBARON SUR MORGE", "ligne_5": "CELLULE", "nom_de_la_commune": "CHAMBARON SUR MORGE", "coordonnees_gps": [45.9059997705, 3.12295819611]}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc224194cf5c54cd7230dde5dbf997ab201bc67e", "fields": {"nom_de_la_commune": "RAMBAUD", "libell_d_acheminement": "RAMBAUD", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05113"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e22aacd1368e87d99ead21c58d10320baaf313", "fields": {"code_postal": "05500", "code_commune_insee": "05132", "libell_d_acheminement": "ST BONNET EN CHAMPSAUR", "ligne_5": "BENEVENT ET CHARBILLAC", "nom_de_la_commune": "ST BONNET EN CHAMPSAUR", "coordonnees_gps": [44.7016544828, 6.08603823073]}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ee46b141a4cef99b7f488284dcc4f8248a0d66", "fields": {"nom_de_la_commune": "ST JULIEN EN BEAUCHENE", "libell_d_acheminement": "ST JULIEN EN BEAUCHENE", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05146"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ec7af2b587cd26950dd88540a1e1d89a3ec4b8", "fields": {"nom_de_la_commune": "ST MICHEL DE CHAILLOL", "libell_d_acheminement": "ST MICHEL DE CHAILLOL", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05153"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7e25d276105924532dc60c2680833db83ed048", "fields": {"nom_de_la_commune": "LA SALLE LES ALPES", "libell_d_acheminement": "LA SALLE LES ALPES", "code_postal": "05240", "coordonnees_gps": [44.952690517, 6.56528017328], "code_commune_insee": "05161"}, "geometry": {"type": "Point", "coordinates": [6.56528017328, 44.952690517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f22080ed8023479d16dcc6f8068fdc12c281f5", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN EN VALGODEMARD", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05142"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2d1dbb7f2d9554d70c8d6c7cd62fab797a1dd9", "fields": {"nom_de_la_commune": "ST AUBAN D OZE", "libell_d_acheminement": "ST AUBAN D OZE", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05131"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f73b01337311c673da89d580ee4f4f6b20de40d", "fields": {"nom_de_la_commune": "SAVINES LE LAC", "libell_d_acheminement": "SAVINES LE LAC", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05164"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4fa92e6aa36c5f323901cef741209f45d22f1a", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05124"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c23b7466e4e447d0b830c0736f85c37118af59", "fields": {"nom_de_la_commune": "SALEON", "libell_d_acheminement": "SALEON", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05159"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f96a376973249132c5b5a6de1abfe0260f9c2bf", "fields": {"nom_de_la_commune": "CHATEAUNEUF D ENTRAUNES", "libell_d_acheminement": "CHATEAUNEUF D ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06040"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6749177efbb8218355cd518e268bf4ad53e02a01", "fields": {"nom_de_la_commune": "LA COLLE SUR LOUP", "libell_d_acheminement": "LA COLLE SUR LOUP", "code_postal": "06480", "coordonnees_gps": [43.6869099706, 7.09780704455], "code_commune_insee": "06044"}, "geometry": {"type": "Point", "coordinates": [7.09780704455, 43.6869099706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc57e152d753851a848aafecb37837d9a816a8db", "fields": {"nom_de_la_commune": "ESCRAGNOLLES", "libell_d_acheminement": "ESCRAGNOLLES", "code_postal": "06460", "coordonnees_gps": [43.715574812, 6.8479951556], "code_commune_insee": "06058"}, "geometry": {"type": "Point", "coordinates": [6.8479951556, 43.715574812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff84afa6e1c64b742903597a9008fae644aab780", "fields": {"nom_de_la_commune": "CASTILLON", "libell_d_acheminement": "CASTILLON", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06036"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01773fbfc4b7a3b1c3aef84bf21b598a5b2ca221", "fields": {"nom_de_la_commune": "CANTARON", "libell_d_acheminement": "CANTARON", "code_postal": "06340", "coordonnees_gps": [43.7532444079, 7.33155187771], "code_commune_insee": "06031"}, "geometry": {"type": "Point", "coordinates": [7.33155187771, 43.7532444079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a57a32e32e20cfe9c6ad4516287439fab101de42", "fields": {"nom_de_la_commune": "LA GAUDE", "libell_d_acheminement": "LA GAUDE", "code_postal": "06610", "coordonnees_gps": [43.7208395324, 7.15989555662], "code_commune_insee": "06065"}, "geometry": {"type": "Point", "coordinates": [7.15989555662, 43.7208395324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45bdcd51e40069c7bc75d60221cdb77e62707ed4", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06068"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700366f3f7a2e4fae4516a5cc1e06179006b2cba", "fields": {"nom_de_la_commune": "GILETTE", "libell_d_acheminement": "GILETTE", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06066"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a3cde55f4b123dc461114c2d3616c8dd715ca1", "fields": {"nom_de_la_commune": "DALUIS", "libell_d_acheminement": "DALUIS", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06053"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f68696c612d26af918b8d26e2cc980ed1817366", "fields": {"nom_de_la_commune": "ISOLA", "libell_d_acheminement": "ISOLA", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06073"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824f74e0530482585682796efa38f30f2e704ea3", "fields": {"code_postal": "06450", "code_commune_insee": "06151", "libell_d_acheminement": "UTELLE", "ligne_5": "ST JEAN LA RIVIERE", "nom_de_la_commune": "UTELLE", "coordonnees_gps": [44.0250774334, 7.30840268234]}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75379ecb6ffbf0442ea01edf638a7e9f286931e", "fields": {"code_postal": "06220", "code_commune_insee": "06155", "libell_d_acheminement": "VALLAURIS", "ligne_5": "LE GOLFE JUAN", "nom_de_la_commune": "VALLAURIS", "coordonnees_gps": [43.5766743671, 7.05796623737]}, "geometry": {"type": "Point", "coordinates": [7.05796623737, 43.5766743671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfa055b0583b1de850a3046d7f94f11a823566d", "fields": {"nom_de_la_commune": "VILLENEUVE D ENTRAUNES", "libell_d_acheminement": "VILLENEUVE D ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06160"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644447ab640a60824f3b5a308976b94dbcce52b5", "fields": {"nom_de_la_commune": "TOURETTE DU CHATEAU", "libell_d_acheminement": "TOURETTE DU CHATEAU", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06145"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d82ffe213a9229aa17133a67d521f4383ac44e", "fields": {"nom_de_la_commune": "VALDEROURE", "libell_d_acheminement": "VALDEROURE", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06154"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce57e0e18a9d486404f40b3358576ca649b39b0", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "06340", "coordonnees_gps": [43.7532444079, 7.33155187771], "code_commune_insee": "06149"}, "geometry": {"type": "Point", "coordinates": [7.33155187771, 43.7532444079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813667b704f39340f478e40a694c6e9f5ed39834", "fields": {"nom_de_la_commune": "LA TURBIE", "libell_d_acheminement": "LA TURBIE", "code_postal": "06320", "coordonnees_gps": [43.7404520537, 7.39846914834], "code_commune_insee": "06150"}, "geometry": {"type": "Point", "coordinates": [7.39846914834, 43.7404520537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c74ff0df2af17cdec875da47948722f6adbcb11", "fields": {"nom_de_la_commune": "ANNONAY", "libell_d_acheminement": "ANNONAY", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07010"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3769fac28fe2da17e15cc8b12dfe04d510f8859", "fields": {"nom_de_la_commune": "ANDANCE", "libell_d_acheminement": "ANDANCE", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07009"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f63f34ce3c7ff78797af24b26f87915a4f8a87", "fields": {"code_postal": "06440", "code_commune_insee": "06091", "libell_d_acheminement": "PEILLE", "ligne_5": "LA GRAVE DE PEILLE", "nom_de_la_commune": "PEILLE", "coordonnees_gps": [43.849932937, 7.37396481834]}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560cf5868aa49473ded78d2fa17d96491d9aaed4", "fields": {"code_postal": "06200", "code_commune_insee": "06088", "libell_d_acheminement": "NICE", "ligne_5": "ST ROMAN DE BELLET", "nom_de_la_commune": "NICE", "coordonnees_gps": [43.7122279855, 7.23752896461]}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2483a2deff85dfe3c3a24334644667edb65b849e", "fields": {"nom_de_la_commune": "LES MUJOULS", "libell_d_acheminement": "LES MUJOULS", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06087"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1446a8bd462ed9c05e3dfaa49a36c28baf9f5f1f", "fields": {"nom_de_la_commune": "LANTOSQUE", "libell_d_acheminement": "LANTOSQUE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06074"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4760bee1e661d71e7889afad239534b9ff9aeee2", "fields": {"nom_de_la_commune": "MOULINET", "libell_d_acheminement": "MOULINET", "code_postal": "06380", "coordonnees_gps": [43.9117756236, 7.43417997432], "code_commune_insee": "06086"}, "geometry": {"type": "Point", "coordinates": [7.43417997432, 43.9117756236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01aa75d59a4ae9797094c7a60aa4a56d8bbce89d", "fields": {"nom_de_la_commune": "MASSOINS", "libell_d_acheminement": "MASSOINS", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06082"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0df01a95b9849653a9a653a70b0af513294b25c3", "fields": {"nom_de_la_commune": "PIERLAS", "libell_d_acheminement": "PIERLAS", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06096"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50af62fa215be196f646424a7081569062b3767c", "fields": {"nom_de_la_commune": "LUCERAM", "libell_d_acheminement": "LUCERAM", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06077"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee33606c553d2911f7314ea075af4b0061c75d09", "fields": {"nom_de_la_commune": "RIMPLAS", "libell_d_acheminement": "RIMPLAS", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06102"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113762a0dbfd44b5c3b692687492c4c832e2e705", "fields": {"nom_de_la_commune": "LEVENS", "libell_d_acheminement": "LEVENS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06075"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669a82380d629ab982963ef918eceb6da53dd3a8", "fields": {"nom_de_la_commune": "ST CEZAIRE SUR SIAGNE", "libell_d_acheminement": "ST CEZAIRE SUR SIAGNE", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06118"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7e30d66307445079114deca59daa4d0b193113", "fields": {"nom_de_la_commune": "ST ANDRE DE LA ROCHE", "libell_d_acheminement": "ST ANDRE DE LA ROCHE", "code_postal": "06730", "coordonnees_gps": [43.7449089511, 7.28833349639], "code_commune_insee": "06114"}, "geometry": {"type": "Point", "coordinates": [7.28833349639, 43.7449089511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29124f0a76f374b0b54b0c2070f91f09e757508", "fields": {"nom_de_la_commune": "ROQUEBRUNE CAP MARTIN", "libell_d_acheminement": "ROQUEBRUNE CAP MARTIN", "code_postal": "06190", "coordonnees_gps": [43.7639198433, 7.4582621298], "code_commune_insee": "06104"}, "geometry": {"type": "Point", "coordinates": [7.4582621298, 43.7639198433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9181fb29badcf8246a55a1a729415247edf4bb3f", "fields": {"nom_de_la_commune": "ROQUEFORT LES PINS", "libell_d_acheminement": "ROQUEFORT LES PINS", "code_postal": "06330", "coordonnees_gps": [43.6742257255, 7.0527495793], "code_commune_insee": "06105"}, "geometry": {"type": "Point", "coordinates": [7.0527495793, 43.6742257255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bacf003866a29d34b62d499f5d659a627219fb6a", "fields": {"nom_de_la_commune": "ST MARTIN DU VAR", "libell_d_acheminement": "ST MARTIN DU VAR", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06126"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05002230f1866ffd227e8817dd7af86f83dea0ea", "fields": {"nom_de_la_commune": "ROQUEBILLIERE", "libell_d_acheminement": "ROQUEBILLIERE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06103"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29240740263163950fe3da806f4fc55b0cb4e03", "fields": {"nom_de_la_commune": "ST BLAISE", "libell_d_acheminement": "ST BLAISE", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06117"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad054baa06daa75cbf062ebaacffa3d7bddee343", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06124"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe149ff62891796465bca394cc8fe5031c36ab7", "fields": {"nom_de_la_commune": "THIERY", "libell_d_acheminement": "THIERY", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06139"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf38b95cb3a0e63d1f2c9984f615a34f7c3c861", "fields": {"nom_de_la_commune": "TOUDON", "libell_d_acheminement": "TOUDON", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06141"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee585c65883aef06f4d1ff901f1d3b259756834", "fields": {"code_postal": "06160", "code_commune_insee": "06004", "libell_d_acheminement": "ANTIBES", "ligne_5": "JUAN LES PINS", "nom_de_la_commune": "ANTIBES", "coordonnees_gps": [43.5876536208, 7.10542360834]}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b878a428664d93f11b1f3f2e50dffd7ad78375", "fields": {"code_postal": "06150", "code_commune_insee": "06029", "libell_d_acheminement": "CANNES", "ligne_5": "CANNES LA BOCCA", "nom_de_la_commune": "CANNES", "coordonnees_gps": [43.5526938306, 7.00247889833]}, "geometry": {"type": "Point", "coordinates": [7.00247889833, 43.5526938306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fefe90bf99700aa1abe0d5bba6eb3918644f2d0", "fields": {"code_postal": "06600", "code_commune_insee": "06004", "libell_d_acheminement": "ANTIBES", "ligne_5": "LA FONTONNE", "nom_de_la_commune": "ANTIBES", "coordonnees_gps": [43.5876536208, 7.10542360834]}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4b19493bfaeade92a8d858414ee3cc53f7bc5b", "fields": {"nom_de_la_commune": "AURIBEAU SUR SIAGNE", "libell_d_acheminement": "AURIBEAU SUR SIAGNE", "code_postal": "06810", "coordonnees_gps": [43.6122750654, 6.91169266203], "code_commune_insee": "06007"}, "geometry": {"type": "Point", "coordinates": [6.91169266203, 43.6122750654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6009db347ee1e00cab122ac154a86a55eb234b7a", "fields": {"nom_de_la_commune": "BEAUSOLEIL", "libell_d_acheminement": "BEAUSOLEIL", "code_postal": "06240", "coordonnees_gps": [43.7477717519, 7.42178948927], "code_commune_insee": "06012"}, "geometry": {"type": "Point", "coordinates": [7.42178948927, 43.7477717519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1264b55f5c1d05ed23fb0dce8cd5b047280ce2e", "fields": {"nom_de_la_commune": "ANTIBES", "libell_d_acheminement": "ANTIBES", "code_postal": "06600", "coordonnees_gps": [43.5876536208, 7.10542360834], "code_commune_insee": "06004"}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c5469b72371ff75cc9055be6fdbea1465ad953", "fields": {"nom_de_la_commune": "LE BROC", "libell_d_acheminement": "LE BROC", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06025"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c766deea32e6eba77216b61e25e18b3a7e575337", "fields": {"nom_de_la_commune": "CABRIS", "libell_d_acheminement": "CABRIS", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06026"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d28ba90c5b8c67d413b140646ccf17e8bdc457", "fields": {"nom_de_la_commune": "ASCROS", "libell_d_acheminement": "ASCROS", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06005"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dad2d9a2ff310e9e0eae50fe92f8f9e6205f35", "fields": {"nom_de_la_commune": "VARS", "libell_d_acheminement": "VARS", "code_postal": "05560", "coordonnees_gps": [44.5925398109, 6.71367212511], "code_commune_insee": "05177"}, "geometry": {"type": "Point", "coordinates": [6.71367212511, 44.5925398109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18376f958b7f211d6a9d9fdf8039bc0ce8f07442", "fields": {"nom_de_la_commune": "LE BEAGE", "libell_d_acheminement": "LE BEAGE", "code_postal": "07630", "coordonnees_gps": [44.823196527, 4.12827779008], "code_commune_insee": "07026"}, "geometry": {"type": "Point", "coordinates": [4.12827779008, 44.823196527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb642335d32ac53b54189990c49a147ab89e6697", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07029"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86717bce48bae9b1d38d2cdbb3679fec13e13dd", "fields": {"nom_de_la_commune": "AUBENAS", "libell_d_acheminement": "AUBENAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07019"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86cef4a12b5e551ccc1ea6402ee01548ad780f51", "fields": {"nom_de_la_commune": "BIDON", "libell_d_acheminement": "BIDON", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07034"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7227037767dedd33ee9e5dc548f9e1c44f636bd3", "fields": {"code_postal": "10190", "code_commune_insee": "10003", "libell_d_acheminement": "AIX VILLEMAUR PALIS", "ligne_5": "PALIS", "nom_de_la_commune": "AIX VILLEMAUR PALIS", "coordonnees_gps": [48.249510935, 3.83670117751]}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f55832cf72f2efa51e481a9938e85d5b8327574", "fields": {"nom_de_la_commune": "VILLENEUVE DU LATOU", "libell_d_acheminement": "VILLENEUVE DU LATOU", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09338"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ea3848fcff98257a68f66a879cb699f905d5b0", "fields": {"nom_de_la_commune": "ALLIBAUDIERES", "libell_d_acheminement": "ALLIBAUDIERES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10004"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5982691024be213d050148cb8ad67f9b908929c6", "fields": {"nom_de_la_commune": "ARREMBECOURT", "libell_d_acheminement": "ARREMBECOURT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10010"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c5e664fb33590fa1411d91ffa4e228798c2ca58", "fields": {"nom_de_la_commune": "AVIREY LINGEY", "libell_d_acheminement": "AVIREY LINGEY", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10022"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2e19b76e90ed5744fb51e4a0d81c70da6e1f2c", "fields": {"nom_de_la_commune": "ARRENTIERES", "libell_d_acheminement": "ARRENTIERES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10011"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5ebaba9c685d9f743c38a440744e4096da6198", "fields": {"nom_de_la_commune": "ARCONVILLE", "libell_d_acheminement": "ARCONVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10007"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faeb44c6b569851f0ec2c8b308cecae6a38355fe", "fields": {"nom_de_la_commune": "ARSONVAL", "libell_d_acheminement": "ARSONVAL", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10012"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ec7c4a0cafe429eb4312d620f3deeb1e42edef", "fields": {"nom_de_la_commune": "ASSENAY", "libell_d_acheminement": "ASSENAY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10013"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98efe74f13695e384de49075ae89f2a4f4798bf7", "fields": {"nom_de_la_commune": "VIRA", "libell_d_acheminement": "VIRA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09340"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fe824406a5e66a75038a09dbf3d811d0cf8d93", "fields": {"nom_de_la_commune": "FRESNOY LE CHATEAU", "libell_d_acheminement": "FRESNOY LE CHATEAU", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10162"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3685d560b50e70eabac487d37d7a54410341867d", "fields": {"nom_de_la_commune": "FONTAINE LES GRES", "libell_d_acheminement": "FONTAINE LES GRES", "code_postal": "10280", "coordonnees_gps": [48.434575792, 3.91881606144], "code_commune_insee": "10151"}, "geometry": {"type": "Point", "coordinates": [3.91881606144, 48.434575792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aeea619ce4d99ba4326947f39d4f7c4f7e85f30", "fields": {"nom_de_la_commune": "LA FOSSE CORDUAN", "libell_d_acheminement": "LA FOSSE CORDUAN", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10157"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9078078094767bd6a636d03a37557051519d4e", "fields": {"nom_de_la_commune": "ERVY LE CHATEL", "libell_d_acheminement": "ERVY LE CHATEL", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10140"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d66cf10ee9f3a9e1bbfef04472ff08d33545018", "fields": {"nom_de_la_commune": "ISLE AUBIGNY", "libell_d_acheminement": "ISLE AUBIGNY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10174"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad5ac54e79d6b2e1a437d0b584d5f8a2fa46042", "fields": {"nom_de_la_commune": "JASSEINES", "libell_d_acheminement": "JASSEINES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10175"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd46f05f161bf9e18d30222326561b6ca8161169", "fields": {"nom_de_la_commune": "FRAVAUX", "libell_d_acheminement": "FRAVAUX", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10160"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8974e514d60689d991a0b6c239020c52877e58f", "fields": {"nom_de_la_commune": "ENGENTE", "libell_d_acheminement": "ENGENTE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10137"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3538bd7cff0c965f5ca32f6f6f6466de0887215", "fields": {"nom_de_la_commune": "ETOURVY", "libell_d_acheminement": "ETOURVY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10143"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15c5c5ef95aac842e847cba755319dfd5acaaf9", "fields": {"nom_de_la_commune": "ESSOYES", "libell_d_acheminement": "ESSOYES", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10141"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0948bb9bda11c0a03174079dab25118bfc58ad63", "fields": {"nom_de_la_commune": "DIERREY ST JULIEN", "libell_d_acheminement": "DIERREY ST JULIEN", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10124"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27b62b7300552156e6e3a190460186f8da89d48", "fields": {"nom_de_la_commune": "COLOMBE LA FOSSE", "libell_d_acheminement": "COLOMBE LA FOSSE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10102"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9288d97172ed599ef0008c0484ceecca0885c56", "fields": {"nom_de_la_commune": "CHARNY LE BACHOT", "libell_d_acheminement": "CHARNY LE BACHOT", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10086"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa3120594730cda974ac24b82e816403f633067e", "fields": {"nom_de_la_commune": "COURSAN EN OTHE", "libell_d_acheminement": "COURSAN EN OTHE", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10107"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8f81b6379eee1285cd3a718ad29b284ee7fe61", "fields": {"nom_de_la_commune": "CHESSY LES PRES", "libell_d_acheminement": "CHESSY LES PRES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10099"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f812e8af92b88331b02b217aa631017f6ed33d8f", "fields": {"nom_de_la_commune": "CHAUMESNIL", "libell_d_acheminement": "CHAUMESNIL", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10093"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fae9f57c5e017e6b768a855deb72d98214119da", "fields": {"nom_de_la_commune": "ECHEMINES", "libell_d_acheminement": "ECHEMINES", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10134"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40c489fa3188c399b70ab8b5704dfb33878334a", "fields": {"nom_de_la_commune": "CHESLEY", "libell_d_acheminement": "CHESLEY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10098"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04219dbc7439b414c67c07ba102c4298e1f63a81", "fields": {"nom_de_la_commune": "CHATRES", "libell_d_acheminement": "CHATRES", "code_postal": "10510", "coordonnees_gps": [48.4879809815, 3.8003478172], "code_commune_insee": "10089"}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb82dc4b120874e5a7751365dcc5f2783f110bb", "fields": {"nom_de_la_commune": "DAVREY", "libell_d_acheminement": "DAVREY", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10122"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f886b3ba077ef1286aa39e38229216378b65a62", "fields": {"nom_de_la_commune": "ST PIERRE DE RIVIERE", "libell_d_acheminement": "ST PIERRE DE RIVIERE", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09273"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be633ec08852fc507efafc891a0bd8acfd619e9", "fields": {"nom_de_la_commune": "STE CROIX VOLVESTRE", "libell_d_acheminement": "STE CROIX VOLVESTRE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09257"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507f41752624d059ce43a46e3d5ca644bd848a17", "fields": {"nom_de_la_commune": "ST PAUL DE JARRAT", "libell_d_acheminement": "ST PAUL DE JARRAT", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09272"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e551c7073fea965de4c8d3b2cb8cefbed75d9c", "fields": {"nom_de_la_commune": "ST JEAN DU FALGA", "libell_d_acheminement": "ST JEAN DU FALGA", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09265"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61dd04fbed5bd6f4fd855ed1b22f6b63a2d9deff", "fields": {"nom_de_la_commune": "TOURTOUSE", "libell_d_acheminement": "TOURTOUSE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09313"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea9f3b09971fbb61e6c7806cbdc171640893ced", "fields": {"nom_de_la_commune": "ST YBARS", "libell_d_acheminement": "ST YBARS", "code_postal": "09210", "coordonnees_gps": [43.2658077144, 1.36518366912], "code_commune_insee": "09277"}, "geometry": {"type": "Point", "coordinates": [1.36518366912, 43.2658077144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76387b15f88d9dd008be05ff7d3fb9ed99aa4ea9", "fields": {"nom_de_la_commune": "SALSEIN", "libell_d_acheminement": "SALSEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09279"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bfb8f29d0b6bcf67c35527e9b99299bb218c55", "fields": {"nom_de_la_commune": "MEILHAUD", "libell_d_acheminement": "MEILHAUD", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63222"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b71d48e2281fa2e6dbaef5be85bccb0f8660bf9", "fields": {"nom_de_la_commune": "LA MONNERIE LE MONTEL", "libell_d_acheminement": "LA MONNERIE LE MONTEL", "code_postal": "63650", "coordonnees_gps": [45.8734908336, 3.61193474206], "code_commune_insee": "63231"}, "geometry": {"type": "Point", "coordinates": [3.61193474206, 45.8734908336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8901e095f22edd4feb49953169eed984392efa3f", "fields": {"nom_de_la_commune": "MONTAIGUT", "libell_d_acheminement": "MONTAIGUT EN COMBRAILLE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63233"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741a843c3a3eb6d6ee5285bf6f04f773ca84c888", "fields": {"nom_de_la_commune": "MONTAIGUT LE BLANC", "libell_d_acheminement": "MONTAIGUT LE BLANC", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63234"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e2c6197c3ccf7d5d830d3d6b2f82d6f9912b13", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "63114", "coordonnees_gps": [45.6254856472, 3.19813088283], "code_commune_insee": "63241"}, "geometry": {"type": "Point", "coordinates": [3.19813088283, 45.6254856472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e459a06e80a604a27d8c21df711a61af6735e73", "fields": {"nom_de_la_commune": "NEUF EGLISE", "libell_d_acheminement": "NEUF EGLISE", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63251"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97b261ed08b930a2e6dff07ef9f1d7b4b68c0e0", "fields": {"nom_de_la_commune": "NONETTE ORSONNETTE", "libell_d_acheminement": "NONETTE ORSONNETTE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63255"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446f18255c41605977530f292f6a9e53928ee12a", "fields": {"nom_de_la_commune": "OLLOIX", "libell_d_acheminement": "OLLOIX", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63259"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a540d752c440b2e79aaf387d6e162ac08ce2c9", "fields": {"nom_de_la_commune": "PARDINES", "libell_d_acheminement": "PARDINES", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63268"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112df29634dfe2fad67ab26aeee0184b95ebd6f7", "fields": {"nom_de_la_commune": "PARENT", "libell_d_acheminement": "PARENT", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63269"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d08e55d7b5df1a7885af239a013aed7d70b5c6", "fields": {"nom_de_la_commune": "PASLIERES", "libell_d_acheminement": "PASLIERES", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63271"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c00ea284f816da0dc794a1e0a3be73da6ad6f7", "fields": {"nom_de_la_commune": "PERIGNAT SUR ALLIER", "libell_d_acheminement": "PERIGNAT SUR ALLIER", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63273"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e59c5cbe6920ce526445194909ae24aa060f054", "fields": {"nom_de_la_commune": "PICHERANDE", "libell_d_acheminement": "PICHERANDE", "code_postal": "63113", "coordonnees_gps": [45.469556778, 2.79218545423], "code_commune_insee": "63279"}, "geometry": {"type": "Point", "coordinates": [2.79218545423, 45.469556778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2d51eaaf54ebd2448e8747e9597ee72052624a", "fields": {"nom_de_la_commune": "POUZOL", "libell_d_acheminement": "POUZOL", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63286"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bae7cad020b9e0a7f1e3402f4cfcb23904e0f41", "fields": {"code_postal": "63540", "code_commune_insee": "63307", "libell_d_acheminement": "ROMAGNAT", "ligne_5": "OPME", "nom_de_la_commune": "ROMAGNAT", "coordonnees_gps": [45.7208123303, 3.08837340823]}, "geometry": {"type": "Point", "coordinates": [3.08837340823, 45.7208123303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd3d6418dc1a669ca5ae1b2904ff0773d49b3154", "fields": {"code_postal": "63540", "code_commune_insee": "63307", "libell_d_acheminement": "ROMAGNAT", "ligne_5": "SAULZET LE CHAUD", "nom_de_la_commune": "ROMAGNAT", "coordonnees_gps": [45.7208123303, 3.08837340823]}, "geometry": {"type": "Point", "coordinates": [3.08837340823, 45.7208123303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9e33c9ac53aaec194ca0eafb45901de66486e0", "fields": {"nom_de_la_commune": "ROYAT", "libell_d_acheminement": "ROYAT", "code_postal": "63130", "coordonnees_gps": [45.7575002689, 3.04042317717], "code_commune_insee": "63308"}, "geometry": {"type": "Point", "coordinates": [3.04042317717, 45.7575002689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77b8d4e32d37afad137568449d0fe1ae68bc81a", "fields": {"nom_de_la_commune": "ST ALYRE D ARLANC", "libell_d_acheminement": "ST ALYRE D ARLANC", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63312"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec3eb970eea7ecaea549ca5c23627f85f7f25fd", "fields": {"nom_de_la_commune": "ST BONNET LE CHASTEL", "libell_d_acheminement": "ST BONNET LE CHASTEL", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63324"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061a6da77415ae355977d032960c2230d1b679c7", "fields": {"nom_de_la_commune": "ST BONNET LES ALLIER", "libell_d_acheminement": "ST BONNET LES ALLIER", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63325"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14089a0e16cbc3a27b2f9b2578f2237b8e59269", "fields": {"nom_de_la_commune": "ST DENIS COMBARNAZAT", "libell_d_acheminement": "ST DENIS COMBARNAZAT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63333"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4200b3299016f4cdd82bf8343df1b3c4387f032", "fields": {"nom_de_la_commune": "ST FLORET", "libell_d_acheminement": "ST FLORET", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63342"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307363f9ddeb5d36246b88bcf8a22e84c19efe2f", "fields": {"nom_de_la_commune": "ST GERMAIN LEMBRON", "libell_d_acheminement": "ST GERMAIN LEMBRON", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63352"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c45eb81ecb4e571722a80a3effec2d4477340ab1", "fields": {"nom_de_la_commune": "ST GERVAIS D AUVERGNE", "libell_d_acheminement": "ST GERVAIS D AUVERGNE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63354"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f333e8c0bee50a8ff4e1a943a6ad82bd978ee4c", "fields": {"nom_de_la_commune": "ST IGNAT", "libell_d_acheminement": "ST IGNAT", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63362"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbdfb85abccf4c1dd58c684adc896e9925af5e4", "fields": {"nom_de_la_commune": "ST JULIEN DE COPPEL", "libell_d_acheminement": "ST JULIEN DE COPPEL", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63368"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735ecd6c46a3c6d3aa38332986999425cd6233b7", "fields": {"nom_de_la_commune": "ST MAIGNER", "libell_d_acheminement": "ST MAIGNER", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63373"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109a38a672cf937ffe98350142ee68a88dede82c", "fields": {"nom_de_la_commune": "ST OURS", "libell_d_acheminement": "ST OURS", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63381"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577cd249db29c5051357be1db1edd41f2cccff68", "fields": {"nom_de_la_commune": "ST PARDOUX", "libell_d_acheminement": "ST PARDOUX", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63382"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609990ee56429d18b077ac13254263e97168419c", "fields": {"nom_de_la_commune": "ST PIERRE LE CHASTEL", "libell_d_acheminement": "ST PIERRE LE CHASTEL", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63385"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2f5d1f04ef464c82e2ec9df5dd18b9a07869cd", "fields": {"nom_de_la_commune": "ST PIERRE ROCHE", "libell_d_acheminement": "ST PIERRE ROCHE", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63386"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dafb7e4fd55e5f22c435c2bc86b799dfd6927cd", "fields": {"nom_de_la_commune": "ST VICTOR MONTVIANEIX", "libell_d_acheminement": "ST VICTOR MONTVIANEIX", "code_postal": "63550", "coordonnees_gps": [45.9228930521, 3.6102507473], "code_commune_insee": "63402"}, "geometry": {"type": "Point", "coordinates": [3.6102507473, 45.9228930521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4edac7b0e95ecaf7617b4535162ebd5b3ec3abbb", "fields": {"nom_de_la_commune": "ST YVOINE", "libell_d_acheminement": "ST YVOINE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63404"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a0955ecf2265be2be7e3743e9c4c671e05b02f", "fields": {"nom_de_la_commune": "SAUVAGNAT STE MARTHE", "libell_d_acheminement": "SAUVAGNAT STE MARTHE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63411"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0c0d6f8954c3279d830c29d8c5716909c3ca6e", "fields": {"nom_de_la_commune": "TAUVES", "libell_d_acheminement": "TAUVES", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63426"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a285a5cc23c90ffcd1a89231aeb0b0c499a39cf4", "fields": {"nom_de_la_commune": "TERNANT LES EAUX", "libell_d_acheminement": "TERNANT LES EAUX", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63429"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8403485f6aa7ddf5361382a539c060cb9f3602bc", "fields": {"nom_de_la_commune": "THIERS", "libell_d_acheminement": "THIERS", "code_postal": "63300", "coordonnees_gps": [45.8543527446, 3.53248495668], "code_commune_insee": "63430"}, "geometry": {"type": "Point", "coordinates": [3.53248495668, 45.8543527446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016fff25f5e1e03414c0fc150175ee55f9aeefcd", "fields": {"nom_de_la_commune": "TREMOUILLE ST LOUP", "libell_d_acheminement": "TREMOUILLE ST LOUP", "code_postal": "63810", "coordonnees_gps": [45.4876676748, 2.61850330437], "code_commune_insee": "63437"}, "geometry": {"type": "Point", "coordinates": [2.61850330437, 45.4876676748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2764bcda810e1c203f1b53a8d2c1faecb06792d6", "fields": {"nom_de_la_commune": "VALBELEIX", "libell_d_acheminement": "VALBELEIX", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63440"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a4747cd38e9e7b77075970047ba0f615196725", "fields": {"nom_de_la_commune": "VALZ SOUS CHATEAUNEUF", "libell_d_acheminement": "VALZ SOUS CHATEAUNEUF", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63442"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb130adc23b11f6f27ca4dfbcd81850243355a5", "fields": {"nom_de_la_commune": "VASSEL", "libell_d_acheminement": "VASSEL", "code_postal": "63910", "coordonnees_gps": [45.7740957976, 3.29534868018], "code_commune_insee": "63445"}, "geometry": {"type": "Point", "coordinates": [3.29534868018, 45.7740957976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4075d82c5419d14a6dd44b440f11ad6e9ecafc2", "fields": {"nom_de_la_commune": "VERNEUGHEOL", "libell_d_acheminement": "VERNEUGHEOL", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63450"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f399c0c6a097800f5c00e26d8edeefcfa366e89", "fields": {"nom_de_la_commune": "VERNINES", "libell_d_acheminement": "VERNINES", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63451"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063b179e36047b967696ccccc9512806545fd6f9", "fields": {"nom_de_la_commune": "VERTOLAYE", "libell_d_acheminement": "VERTOLAYE", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63454"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc732d31702772e01bd28c0f02b03cb439e52049", "fields": {"nom_de_la_commune": "VILLENEUVE LES CERFS", "libell_d_acheminement": "VILLENEUVE LES CERFS", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63459"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ece98229c4a3b993334ab3f34a8bb13182a1a94", "fields": {"nom_de_la_commune": "VISCOMTAT", "libell_d_acheminement": "VISCOMTAT", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63463"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8720b3a3dda38aca830606969e82fd2fde976e77", "fields": {"nom_de_la_commune": "VIVEROLS", "libell_d_acheminement": "VIVEROLS", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63465"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45618c9e989fee464846196a5c36385447c71ace", "fields": {"nom_de_la_commune": "VOLLORE MONTAGNE", "libell_d_acheminement": "VOLLORE MONTAGNE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63468"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954d823c5a65ecc8e5e3b586f46558b77421b643", "fields": {"nom_de_la_commune": "ABOS", "libell_d_acheminement": "ABOS", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64005"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d094c5fc60c5bcd925639d04a12e3d841587d965", "fields": {"nom_de_la_commune": "AICIRITS CAMOU SUHAST", "libell_d_acheminement": "AICIRITS CAMOU SUHAST", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64010"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91dd71f4bd0abc748cd7e401e68e86a49bf4de6", "fields": {"code_postal": "64120", "code_commune_insee": "64010", "libell_d_acheminement": "AICIRITS CAMOU SUHAST", "ligne_5": "CAMOU MIXE SUHAST", "nom_de_la_commune": "AICIRITS CAMOU SUHAST", "coordonnees_gps": [43.3050617762, -1.05477457972]}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904c43517b3d3da02af40dc94977101336d73b70", "fields": {"nom_de_la_commune": "AMENDEUIX ONEIX", "libell_d_acheminement": "AMENDEUIX ONEIX", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64018"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a97e76db1a1ff5ded8d285a6ca4219a542412ae", "fields": {"nom_de_la_commune": "ANDOINS", "libell_d_acheminement": "ANDOINS", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64021"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c98b39ad32285b5002388f44f1a98a74b4dd90", "fields": {"nom_de_la_commune": "ANGOUS", "libell_d_acheminement": "ANGOUS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64025"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8812d735f9aa85bd1db8b50f83b4ae70c5bffb13", "fields": {"nom_de_la_commune": "ANHAUX", "libell_d_acheminement": "ANHAUX", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64026"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5f4d708570df66054e03f7e765e1f435fa8ac3", "fields": {"nom_de_la_commune": "ANOS", "libell_d_acheminement": "ANOS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64027"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4975d36bea5475abfd69c3e0aea4d3bec5992a96", "fields": {"nom_de_la_commune": "ARBERATS SILLEGUE", "libell_d_acheminement": "ARBERATS SILLEGUE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64034"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b4447275b49e3eb95481b03cef68ebeb3d1760", "fields": {"nom_de_la_commune": "ARBONNE", "libell_d_acheminement": "ARBONNE", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64035"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ea232d4c21568ece2a417d09d86ac18f5875cc", "fields": {"nom_de_la_commune": "ARETTE", "libell_d_acheminement": "ARETTE", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64040"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cfef18d0691ddd6786b02869554f07182ef274", "fields": {"nom_de_la_commune": "ARNEGUY", "libell_d_acheminement": "ARNEGUY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64047"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5ecd0f3ccd0efcb8223a0953918de8a9f4b3de", "fields": {"nom_de_la_commune": "ARRICAU BORDES", "libell_d_acheminement": "ARRICAU BORDES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64052"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77a589b57be641636468b3cfb44082626f38dd7", "fields": {"nom_de_la_commune": "ARZACQ ARRAZIGUET", "libell_d_acheminement": "ARZACQ ARRAZIGUET", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64063"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49086bdf8285a4f0f7be10d949083d7538beb09c", "fields": {"nom_de_la_commune": "ASTE BEON", "libell_d_acheminement": "ASTE BEON", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64069"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f4d3516e6549801323ee359b7c016566fc26b1", "fields": {"nom_de_la_commune": "AUBIN", "libell_d_acheminement": "AUBIN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64073"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d100629b442281d1269585e000614656c446a87", "fields": {"nom_de_la_commune": "AURIONS IDERNES", "libell_d_acheminement": "AURIONS IDERNES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64079"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89f227423b194bc62a7d4ecb6cf6c19fde431cb", "fields": {"nom_de_la_commune": "AUTEVIELLE ST MARTIN BIDEREN", "libell_d_acheminement": "AUTEVIELLE ST MARTIN BIDEREN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64083"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689e1387d8afb872ccc46efe305ccb52b06a6dc9", "fields": {"nom_de_la_commune": "BALANSUN", "libell_d_acheminement": "BALANSUN", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64088"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bfa4b884ca1356985b63a6745d56705882c611", "fields": {"nom_de_la_commune": "BARZUN", "libell_d_acheminement": "BARZUN", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64097"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8079864b5417e80eba7af1df3b1b96db1b8cdd", "fields": {"nom_de_la_commune": "BAYONNE", "libell_d_acheminement": "BAYONNE", "code_postal": "64100", "coordonnees_gps": [43.4922522445, -1.46647823758], "code_commune_insee": "64102"}, "geometry": {"type": "Point", "coordinates": [-1.46647823758, 43.4922522445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d357196c48963c96ae964a377703bd951cfde9", "fields": {"nom_de_la_commune": "BEHASQUE LAPISTE", "libell_d_acheminement": "BEHASQUE LAPISTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64106"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cce9a0f24fe656682e453114438102dd6668d1c", "fields": {"nom_de_la_commune": "BERNADETS", "libell_d_acheminement": "BERNADETS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64114"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a21188b70c548371c5df2c80dc68c9cedd3bccd0", "fields": {"nom_de_la_commune": "BERROGAIN LARUNS", "libell_d_acheminement": "BERROGAIN LARUNS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64115"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf220ce3cda64433e6060413b0379965ac60501b", "fields": {"nom_de_la_commune": "BIDARRAY", "libell_d_acheminement": "BIDARRAY", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64124"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb6f7ac07b89463ad843189b9501779aaf0cd25", "fields": {"nom_de_la_commune": "BILLERE", "libell_d_acheminement": "BILLERE", "code_postal": "64140", "coordonnees_gps": [43.3167166391, -0.399067270289], "code_commune_insee": "64129"}, "geometry": {"type": "Point", "coordinates": [-0.399067270289, 43.3167166391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b946568ff7785823ff10c8c6f5bc9990f99f9550", "fields": {"nom_de_la_commune": "BIRON", "libell_d_acheminement": "BIRON", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64131"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6005b0a910d874bdc8b8394a5b1dbe081e955199", "fields": {"nom_de_la_commune": "BOSDARROS", "libell_d_acheminement": "BOSDARROS", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64139"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c23fb25cd7a9e11a2f8def0578d81fb76c096d40", "fields": {"nom_de_la_commune": "BOUGARBER", "libell_d_acheminement": "BOUGARBER", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64142"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909e93398588d38b4a56e2be881551ff4c5fa954", "fields": {"nom_de_la_commune": "ST MARTIN DE COMMUNE", "libell_d_acheminement": "ST MARTIN DE COMMUNE", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71450"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332a0a8c3989b509c4a4c8a29f7c3c73f98c8e46", "fields": {"nom_de_la_commune": "ST MARTIN DU LAC", "libell_d_acheminement": "ST MARTIN DU LAC", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71453"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accc52ebc2c0a86b13559c41ddbea2a170ea0749", "fields": {"nom_de_la_commune": "ST MARTIN DU MONT", "libell_d_acheminement": "ST MARTIN DU MONT", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71454"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669c86ea0bfc92bb55c08d03c2fe109cf1ab90d4", "fields": {"nom_de_la_commune": "ST MARTIN DU TARTRE", "libell_d_acheminement": "ST MARTIN DU TARTRE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71455"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1c16400d84003723899b261bf9a56d8164d8e95", "fields": {"nom_de_la_commune": "ST NIZIER SUR ARROUX", "libell_d_acheminement": "ST NIZIER SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71466"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53756f1c8f0e31f39c4843e3bf26d23967263831", "fields": {"nom_de_la_commune": "ST RACHO", "libell_d_acheminement": "ST RACHO", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71473"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9807f31fcbb3ccf2219dbea3fe0ac35b03f739aa", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71474"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18514bb1bd19b55f24933a98ae8013a78099e90", "fields": {"code_postal": "71570", "code_commune_insee": "71481", "libell_d_acheminement": "ST SYMPHORIEN D ANCELLES", "ligne_5": "ST ROMAIN DES ILES", "nom_de_la_commune": "ST SYMPHORIEN D ANCELLES", "coordonnees_gps": [46.2281804382, 4.74594921623]}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c23109ae7633c7713f8ad431f951403475c5234", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DES BOIS", "libell_d_acheminement": "ST SYMPHORIEN DES BOIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71483"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539a798aa5a5e55acb3f6762113f7bfea613433e", "fields": {"nom_de_la_commune": "ST VERAND", "libell_d_acheminement": "ST VERAND", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71487"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279ab61af67b2e68c884193b74b056356542ecbc", "fields": {"nom_de_la_commune": "LA SALLE", "libell_d_acheminement": "LA SALLE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71494"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e0d833f60ed6884569363e0ff119b763fdc6f6d", "fields": {"nom_de_la_commune": "SARRY", "libell_d_acheminement": "SARRY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71500"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761a9ebaf8f998cd54dc1552898fa597b5003742", "fields": {"nom_de_la_commune": "SASSANGY", "libell_d_acheminement": "SASSANGY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71501"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18be13e5e31e8786061c85fb7112ab173337f519", "fields": {"nom_de_la_commune": "SAVIGNY SUR GROSNE", "libell_d_acheminement": "SAVIGNY SUR GROSNE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71507"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976bd5f196de34485bb8051e26146ca7550c8b00", "fields": {"nom_de_la_commune": "SOLUTRE POUILLY", "libell_d_acheminement": "SOLUTRE POUILLY", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71526"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5beae9b3981b7a7376e7becd719f58bf417bc1bd", "fields": {"nom_de_la_commune": "TANCON", "libell_d_acheminement": "TANCON", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71533"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492d629a64295f033a0a1b812fe0353a345c3ca2", "fields": {"nom_de_la_commune": "TINTRY", "libell_d_acheminement": "TINTRY", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71539"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90acf990c50f6f662ca1a93b1aa860b277782e96", "fields": {"nom_de_la_commune": "TRONCHY", "libell_d_acheminement": "TRONCHY", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71548"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeee90fc60282ed06c2192a3b56f4b98c8e8b86f", "fields": {"nom_de_la_commune": "UCHON", "libell_d_acheminement": "UCHON", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71551"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0376de5f92ee45b6f389ccc7b11422b2b0e39d75", "fields": {"nom_de_la_commune": "VENDENESSE SUR ARROUX", "libell_d_acheminement": "VENDENESSE SUR ARROUX", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71565"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7775be89a8b876adbc5aef6407793a76271ccd00", "fields": {"nom_de_la_commune": "LE VILLARS", "libell_d_acheminement": "LE VILLARS", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71576"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c34420fab44ad84fcc2fc92bc82bb9f0a229842", "fields": {"nom_de_la_commune": "VILLEGAUDIN", "libell_d_acheminement": "VILLEGAUDIN", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71577"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7b5fff73313767c785ef2b34cee9e5eb0fb13a", "fields": {"nom_de_la_commune": "VILLENEUVE EN MONTAGNE", "libell_d_acheminement": "VILLENEUVE EN MONTAGNE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71579"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a98ef1c0ddab528560070d3dadc88bf6a718f7", "fields": {"nom_de_la_commune": "ST MARTIN LE GAILLARD", "libell_d_acheminement": "ST MARTIN LE GAILLARD", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76619"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4254e9f0e605a1a155738786f28d5c2c29c2306a", "fields": {"nom_de_la_commune": "ST NICOLAS D ALIERMONT", "libell_d_acheminement": "ST NICOLAS D ALIERMONT", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76624"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac8e67050983a0976d3f6e087ea826b0ae3ab877", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA HAIE", "libell_d_acheminement": "ST NICOLAS DE LA HAIE", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76626"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f11a3527b2302cae50d45294b21387d0bf91788", "fields": {"nom_de_la_commune": "ST PIERRE BENOUVILLE", "libell_d_acheminement": "ST PIERRE BENOUVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76632"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c200f3588f6b55d8aa1fc999668adc091baf35ac", "fields": {"nom_de_la_commune": "ST PIERRE DES JONQUIERES", "libell_d_acheminement": "ST PIERRE DES JONQUIERES", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76635"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b7e16eb6fca44539bb1d83fab13a06b2c06001", "fields": {"nom_de_la_commune": "ST RIQUIER ES PLAINS", "libell_d_acheminement": "ST RIQUIER ES PLAINS", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76646"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a657ebfd5757b83c3b13e5662c11a87f68493c3", "fields": {"nom_de_la_commune": "ST VALERY EN CAUX", "libell_d_acheminement": "ST VALERY EN CAUX", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76655"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5ba41e78444c99978b2d0e8fb272b896817a19", "fields": {"nom_de_la_commune": "SANDOUVILLE", "libell_d_acheminement": "SANDOUVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76660"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693c3428a13740440cc8753453800c0efe0de687", "fields": {"code_postal": "76540", "code_commune_insee": "76663", "libell_d_acheminement": "SASSETOT LE MAUCONDUIT", "ligne_5": "LES GRANDES DALLES", "nom_de_la_commune": "SASSETOT LE MAUCONDUIT", "coordonnees_gps": [49.7570077564, 0.523798637411]}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663051c0f2b292755a9428d589df8e64d2508dfd", "fields": {"nom_de_la_commune": "SAUQUEVILLE", "libell_d_acheminement": "SAUQUEVILLE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76667"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa90b6e895f347e6c040fad61f796c6acee6d06", "fields": {"nom_de_la_commune": "SEVIS", "libell_d_acheminement": "SEVIS", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76674"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cec194163a1ace0b1abf35eb01fe76bb420da173", "fields": {"nom_de_la_commune": "SMERMESNIL", "libell_d_acheminement": "SMERMESNIL", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76677"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ae41269dcd1ba9acecee9d9fe9d486bba0bd82", "fields": {"nom_de_la_commune": "SOTTEVILLE LES ROUEN", "libell_d_acheminement": "SOTTEVILLE LES ROUEN", "code_postal": "76300", "coordonnees_gps": [49.4110704136, 1.09576489781], "code_commune_insee": "76681"}, "geometry": {"type": "Point", "coordinates": [1.09576489781, 49.4110704136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a04d06381c904876cec00445ee11834ade23855", "fields": {"nom_de_la_commune": "THEUVILLE AUX MAILLOTS", "libell_d_acheminement": "THEUVILLE AUX MAILLOTS", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76686"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b505de0ae5e023d3df6b3dabb687af68bb12a606", "fields": {"nom_de_la_commune": "VAL DE LA HAYE", "libell_d_acheminement": "VAL DE LA HAYE", "code_postal": "76380", "coordonnees_gps": [49.425520648, 1.00384964963], "code_commune_insee": "76717"}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02adeda2eff1edde5f81bd6c2e9d2419ba420a9", "fields": {"nom_de_la_commune": "VARENGEVILLE SUR MER", "libell_d_acheminement": "VARENGEVILLE SUR MER", "code_postal": "76119", "coordonnees_gps": [49.9045710817, 0.981854479387], "code_commune_insee": "76720"}, "geometry": {"type": "Point", "coordinates": [0.981854479387, 49.9045710817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f368e961a6413a5c694c8ec2b40a6749decea56a", "fields": {"nom_de_la_commune": "VASSONVILLE", "libell_d_acheminement": "VASSONVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76723"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a01fd4c9ae03df4fea33a14d80d4039991fc0d", "fields": {"nom_de_la_commune": "VATTETOT SUR MER", "libell_d_acheminement": "VATTETOT SUR MER", "code_postal": "76111", "coordonnees_gps": [49.7290566584, 0.303233550691], "code_commune_insee": "76726"}, "geometry": {"type": "Point", "coordinates": [0.303233550691, 49.7290566584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d2da63f3f4bae0d64432b887599bb2e9467d39", "fields": {"nom_de_la_commune": "LA VAUPALIERE", "libell_d_acheminement": "LA VAUPALIERE", "code_postal": "76150", "coordonnees_gps": [49.4875793097, 1.0078796915], "code_commune_insee": "76728"}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57906e5009409256b9837d0db57311d6e73481da", "fields": {"nom_de_la_commune": "LA VIEUX RUE", "libell_d_acheminement": "LA VIEUX RUE", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76740"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd1684291352eea6eb95d80834d8b8e9fa36800", "fields": {"nom_de_la_commune": "VILLAINVILLE", "libell_d_acheminement": "VILLAINVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76741"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c38e8f4e08147fb841b97133a2eeffbcbeb6ef", "fields": {"nom_de_la_commune": "YVETOT", "libell_d_acheminement": "YVETOT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76758"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1dc30d2803f6680ea06a6b3ea8fb150a6dc978", "fields": {"nom_de_la_commune": "AMILLIS", "libell_d_acheminement": "AMILLIS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77002"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12ba191a1e03c883f2b0b9ab6a1f30a4ac1d7fb", "fields": {"nom_de_la_commune": "ARVILLE", "libell_d_acheminement": "ARVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77009"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3b72cad230d1ded47c65382d1f9483bc0c0bd34", "fields": {"code_postal": "77720", "code_commune_insee": "77010", "libell_d_acheminement": "AUBEPIERRE OZOUER LE REPOS", "ligne_5": "OZOUER LE REPOS", "nom_de_la_commune": "AUBEPIERRE OZOUER LE REPOS", "coordonnees_gps": [48.5850477632, 2.89649549396]}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bccbd52c5c910654c51bbf1558410a3e8845550", "fields": {"nom_de_la_commune": "AUFFERVILLE", "libell_d_acheminement": "AUFFERVILLE", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77011"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee93c1571211fb820ccedd2ba47b4c24e6ab7e9f", "fields": {"nom_de_la_commune": "SORNEVILLE", "libell_d_acheminement": "SORNEVILLE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54510"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e21378eea0b58237ae465a2beb97dac9620742", "fields": {"nom_de_la_commune": "SPONVILLE", "libell_d_acheminement": "SPONVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54511"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c5eb1221e8296cc385e2516ead763542245962", "fields": {"nom_de_la_commune": "TELLANCOURT", "libell_d_acheminement": "TELLANCOURT", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54514"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4ce59a3c0da0cd153192671f502eec7d933e4d9", "fields": {"nom_de_la_commune": "TUCQUEGNIEUX", "libell_d_acheminement": "TUCQUEGNIEUX", "code_postal": "54640", "coordonnees_gps": [49.3041198945, 5.8990385658], "code_commune_insee": "54536"}, "geometry": {"type": "Point", "coordinates": [5.8990385658, 49.3041198945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05173dc052cbe91fcc63fb106c89a5b60b99390f", "fields": {"nom_de_la_commune": "UGNY", "libell_d_acheminement": "UGNY", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54537"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4003d8d3262d55b3fa274e9f4a36cdcd0bc20ca4", "fields": {"nom_de_la_commune": "URUFFE", "libell_d_acheminement": "URUFFE", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54538"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d1a7f398c6cbeca432941aeb682844aca4b7d6", "fields": {"nom_de_la_commune": "VALLOIS", "libell_d_acheminement": "VALLOIS", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54543"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5e4d8d79a68c75887d174ce2d9d0ee8c0c64383", "fields": {"nom_de_la_commune": "VAXAINVILLE", "libell_d_acheminement": "VAXAINVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54555"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef2d184ed2960c91af784db4a047955c06afe39", "fields": {"nom_de_la_commune": "VILLERS LA CHEVRE", "libell_d_acheminement": "VILLERS LA CHEVRE", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54574"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7306f5daf03040dc928a7830758cf3c6e048ab97", "fields": {"nom_de_la_commune": "VILLERS LA MONTAGNE", "libell_d_acheminement": "VILLERS LA MONTAGNE", "code_postal": "54920", "coordonnees_gps": [49.4594844823, 5.82596357033], "code_commune_insee": "54575"}, "geometry": {"type": "Point", "coordinates": [5.82596357033, 49.4594844823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a750447e9307722d91840814dd8e9fbaaaea265", "fields": {"nom_de_la_commune": "VILLERS SOUS PRENY", "libell_d_acheminement": "VILLERS SOUS PRENY", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54579"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "314a27ebcba017014c8af43720c9d5e22997d324", "fields": {"nom_de_la_commune": "VILLEY LE SEC", "libell_d_acheminement": "VILLEY LE SEC", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54583"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a8bdc11199688160b3912bf7687d5a4d45287d", "fields": {"nom_de_la_commune": "VILLEY ST ETIENNE", "libell_d_acheminement": "VILLEY ST ETIENNE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54584"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45522f2935f37eaed08a2bf286af896ac78cca15", "fields": {"nom_de_la_commune": "XAMMES", "libell_d_acheminement": "XAMMES", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54594"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ac8750580629b4db6dc8a666a2af4d7cc732a7", "fields": {"nom_de_la_commune": "XERMAMENIL", "libell_d_acheminement": "XERMAMENIL", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54595"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08070aa6ddb2acf6fb5b6f4bf093003a27816a32", "fields": {"nom_de_la_commune": "AINCREVILLE", "libell_d_acheminement": "AINCREVILLE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55004"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea98a2a3a307ad4614d96e889379085a798dda9", "fields": {"nom_de_la_commune": "AMBLY SUR MEUSE", "libell_d_acheminement": "AMBLY SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55007"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0287983f730d921e5366500e16e9bb20e84f86a", "fields": {"code_postal": "55300", "code_commune_insee": "55012", "libell_d_acheminement": "APREMONT LA FORET", "ligne_5": "LIOUVILLE", "nom_de_la_commune": "APREMONT LA FORET", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7d219312596b1ed6937c65279b400727801f3c", "fields": {"nom_de_la_commune": "AULNOIS EN PERTHOIS", "libell_d_acheminement": "AULNOIS EN PERTHOIS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55015"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcdfba7aa67e5b961b77fbf91dac311bd8195e2", "fields": {"nom_de_la_commune": "BAR LE DUC", "libell_d_acheminement": "BAR LE DUC", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55029"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbdd1fd0413afe5907e07bfb09721951fb34bb1", "fields": {"nom_de_la_commune": "BEAUCLAIR", "libell_d_acheminement": "BEAUCLAIR", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55036"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9374dd46d7b7ac5b1e8eb0fe68fd15d68da8bcec", "fields": {"nom_de_la_commune": "BEAUMONT EN VERDUNOIS", "libell_d_acheminement": "BEAUMONT EN VERDUNOIS", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55039"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690a5b07c746cb1be3ea5f42f325dc3e4878ac58", "fields": {"nom_de_la_commune": "BEAUSITE", "libell_d_acheminement": "BEAUSITE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55040"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2a24758f9ff9f3d1281a84c49a1281434ddffb", "fields": {"code_postal": "55250", "code_commune_insee": "55040", "libell_d_acheminement": "BEAUSITE", "ligne_5": "DEUXNOUDS DEVANT BEAUZEE", "nom_de_la_commune": "BEAUSITE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59298830c82b68afc9178ae4096a8e7c42bc65f2", "fields": {"nom_de_la_commune": "BILLY SOUS MANGIENNES", "libell_d_acheminement": "BILLY SOUS MANGIENNES", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55053"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a970feb1416952e6f77b76ce7f8d50070194a296", "fields": {"nom_de_la_commune": "BISLEE", "libell_d_acheminement": "BISLEE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55054"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0f54066dff5bb4bedcaf04cc8216b4346974e5", "fields": {"nom_de_la_commune": "BLANZEE", "libell_d_acheminement": "BLANZEE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55055"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75dedc628464af8ef8228c86471da8db25503603", "fields": {"nom_de_la_commune": "BONZEE", "libell_d_acheminement": "BONZEE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55060"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ffdf45f4b800dc4ba2f8bc8ae75d929e0bad72", "fields": {"code_postal": "55160", "code_commune_insee": "55060", "libell_d_acheminement": "BONZEE", "ligne_5": "MONT VILLERS", "nom_de_la_commune": "BONZEE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c0ae311553d548d0b168ba7e1ae04cdfa823e0", "fields": {"nom_de_la_commune": "BRABANT EN ARGONNE", "libell_d_acheminement": "BRABANT EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55068"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbc36061ff3df0bca09dc409d0bd61fafd24251", "fields": {"nom_de_la_commune": "BRABANT LE ROI", "libell_d_acheminement": "BRABANT LE ROI", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55069"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c0326b3c07f8a4947905441697a56cdb5120f4", "fields": {"nom_de_la_commune": "BRABANT SUR MEUSE", "libell_d_acheminement": "BRABANT SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55070"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5630d2977d9a1d662a013f7139912c55f7cb9bb", "fields": {"nom_de_la_commune": "BRAUVILLIERS", "libell_d_acheminement": "BRAUVILLIERS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55075"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15c2bbcb8f6926435eda1075bd41ff350e8cbf0d", "fields": {"nom_de_la_commune": "BROUENNES", "libell_d_acheminement": "BROUENNES", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55083"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c74d72d9d7608d518b3f4d36653ba095b15928", "fields": {"code_postal": "55400", "code_commune_insee": "55094", "libell_d_acheminement": "BUZY DARMONT", "ligne_5": "DARMONT", "nom_de_la_commune": "BUZY DARMONT", "coordonnees_gps": [49.1964122747, 5.59749948123]}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0e1b0b6b84459a76665d578e35fca98278ae8a", "fields": {"nom_de_la_commune": "CESSE", "libell_d_acheminement": "CESSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55095"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bdba9cd3315dfc97b71346d9709fdd00f2035d", "fields": {"nom_de_la_commune": "CHARDOGNE", "libell_d_acheminement": "CHARDOGNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55101"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dfc031d824e3af1a44a098dc156832b83de98ba", "fields": {"nom_de_la_commune": "CHATILLON SOUS LES COTES", "libell_d_acheminement": "CHATILLON SOUS LES COTES", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55105"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379708626221d8254533f6b7c963b9ef8d852e3e", "fields": {"nom_de_la_commune": "CHAUVENCY ST HUBERT", "libell_d_acheminement": "CHAUVENCY ST HUBERT", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55110"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff72ee3231e89005448767702c5dc2a3e59e2d79", "fields": {"nom_de_la_commune": "LE CLAON", "libell_d_acheminement": "LE CLAON", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55116"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f173d9ebb9e21f0b65534a3bc84d7b01479eba", "fields": {"code_postal": "55120", "code_commune_insee": "55117", "libell_d_acheminement": "CLERMONT EN ARGONNE", "ligne_5": "PAROIS", "nom_de_la_commune": "CLERMONT EN ARGONNE", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb602fa15f3ce42c685be5f1483446bbb810ad6", "fields": {"nom_de_la_commune": "COMBLES EN BARROIS", "libell_d_acheminement": "COMBLES EN BARROIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55120"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441a14840bc801dde54d41152caa166ef942a3ad", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "LOUPPY SUR CHEE", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b88c6747b1712f9a34aa701d632e10b8a5c44fb4", "fields": {"nom_de_la_commune": "COURCELLES SUR AIRE", "libell_d_acheminement": "COURCELLES SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55128"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257d78ca0387707fc68242daf5b444232bfd2df4", "fields": {"nom_de_la_commune": "COUVONGES", "libell_d_acheminement": "COUVONGES", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55134"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a082e96481c308aa979a1af7b8aa67e732e3e84", "fields": {"nom_de_la_commune": "DOMBASLE EN ARGONNE", "libell_d_acheminement": "DOMBASLE EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55155"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe4d57c9f31ca85460386f1df23cbc0f0b245a3", "fields": {"nom_de_la_commune": "DUZEY", "libell_d_acheminement": "DUZEY", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55168"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1b2bc7dd450bc2ec47a550fa50e5f7d0b8d6aa", "fields": {"nom_de_la_commune": "ECUREY EN VERDUNOIS", "libell_d_acheminement": "ECUREY EN VERDUNOIS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55170"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75e438cc5e5d5fb9a6dab06eb11d81a0c93d9f0", "fields": {"nom_de_la_commune": "EPINONVILLE", "libell_d_acheminement": "EPINONVILLE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55174"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d3d890ad172c32b061f8f2b18cff29d91dc768", "fields": {"nom_de_la_commune": "ERIZE ST DIZIER", "libell_d_acheminement": "ERIZE ST DIZIER", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55178"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd1d3570f989d531d33e90a5880eba012385935", "fields": {"nom_de_la_commune": "ESNES EN ARGONNE", "libell_d_acheminement": "ESNES EN ARGONNE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55180"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5746da27e7a1feadbb3a5d8dfbb5d299cc040a1", "fields": {"nom_de_la_commune": "FROMEREVILLE LES VALLONS", "libell_d_acheminement": "FROMEREVILLE LES VALLONS", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55200"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d283fb6b0153e600b0244f6316c6f9665d5f3f13", "fields": {"nom_de_la_commune": "HAN LES JUVIGNY", "libell_d_acheminement": "HAN LES JUVIGNY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55226"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda5866b1477e406277d021b6b2757d12ee1bb47", "fields": {"code_postal": "55300", "code_commune_insee": "55229", "libell_d_acheminement": "HAN SUR MEUSE", "ligne_5": "AILLY SUR MEUSE", "nom_de_la_commune": "HAN SUR MEUSE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee454c8e530c43886fe52fa0c53cc23dce552e8d", "fields": {"nom_de_la_commune": "HAUDIOMONT", "libell_d_acheminement": "HAUDIOMONT", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55237"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7995244dca3dedb091abcc0b1c2292784a27b6", "fields": {"nom_de_la_commune": "GEVILLE", "libell_d_acheminement": "GEVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55258"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484dc52732107fd8f9597b71d5e39b1641df9982", "fields": {"nom_de_la_commune": "KOEUR LA PETITE", "libell_d_acheminement": "KOEUR LA PETITE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55264"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa09f6a211643ad1016a80c220264804021db9a", "fields": {"nom_de_la_commune": "LATOUR EN WOEVRE", "libell_d_acheminement": "LATOUR EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55281"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a000e08e4e591c7b9b5eca27425710b5b8056e42", "fields": {"nom_de_la_commune": "LIGNIERES SUR AIRE", "libell_d_acheminement": "LIGNIERES SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55290"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64dbd4a08221a60d73cdcfd2158dc8f19d7670c9", "fields": {"nom_de_la_commune": "LINY DEVANT DUN", "libell_d_acheminement": "LINY DEVANT DUN", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55292"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74639b858d9b817675e08cb5ba226b8b88b05b4", "fields": {"nom_de_la_commune": "LOUPMONT", "libell_d_acheminement": "LOUPMONT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55303"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edb0e711696b843bc3753560f1272ad46103b2bf", "fields": {"nom_de_la_commune": "LOUPPY SUR LOISON", "libell_d_acheminement": "LOUPPY SUR LOISON", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55306"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f84d3d4efa8364fe12df06411bd761bf849c92", "fields": {"nom_de_la_commune": "MAIZERAY", "libell_d_acheminement": "MAIZERAY", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55311"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57d7edb299b17f3c246239300157a4c1988a785", "fields": {"nom_de_la_commune": "MARTINCOURT SUR MEUSE", "libell_d_acheminement": "MARTINCOURT SUR MEUSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55323"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871e8e00c8f746ae3fe1c1563e4f085d250f6299", "fields": {"nom_de_la_commune": "MAUCOURT SUR ORNE", "libell_d_acheminement": "MAUCOURT SUR ORNE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55325"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2b1cfe3e08e365cc14967933775ed928745a43", "fields": {"nom_de_la_commune": "MECRIN", "libell_d_acheminement": "MECRIN", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55329"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488619d6f6848f2bbc5ad42222be072e80f6a85a", "fields": {"nom_de_la_commune": "MENAUCOURT", "libell_d_acheminement": "MENAUCOURT", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55332"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c91f69a37ddee219f7ac99f4da52a4d97ddf7ae7", "fields": {"nom_de_la_commune": "MILLY SUR BRADON", "libell_d_acheminement": "MILLY SUR BRADON", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55338"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa093a9067652f2c1bd128195cb85712c3945a6", "fields": {"nom_de_la_commune": "MONTFAUCON D ARGONNE", "libell_d_acheminement": "MONTFAUCON D ARGONNE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55346"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59b0de41c9a4263463a9b604c84cf1cad3cef1f1", "fields": {"nom_de_la_commune": "MONTIERS SUR SAULX", "libell_d_acheminement": "MONTIERS SUR SAULX", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55348"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3c50a87c0921cd2e9f0a66ae49983a28b873148", "fields": {"nom_de_la_commune": "MONTSEC", "libell_d_acheminement": "MONTSEC", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55353"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a5fca787532e8e58447c44d56ebc10b0fa74ff", "fields": {"nom_de_la_commune": "MONTZEVILLE", "libell_d_acheminement": "MONTZEVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55355"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0dbcbdfe63bc64661e6b0ef89a7e8a8e05a3185", "fields": {"nom_de_la_commune": "MORANVILLE", "libell_d_acheminement": "MORANVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55356"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c2c4e5bfb95a7d2e1b7ae0b86eccd22fe67047", "fields": {"nom_de_la_commune": "MORGEMOULIN", "libell_d_acheminement": "MORGEMOULIN", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55357"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e1bb5e79c41c147fa071827190595138aeaafd", "fields": {"nom_de_la_commune": "VENTAVON", "libell_d_acheminement": "VENTAVON", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05178"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93eb9c049e957cbe2acc2c663283af2ec57ae50", "fields": {"nom_de_la_commune": "BAIROLS", "libell_d_acheminement": "BAIROLS", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06009"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b71b554fe8d45693fa45ff1be37e3c9aee02df9", "fields": {"nom_de_la_commune": "AUVARE", "libell_d_acheminement": "AUVARE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06008"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7f985ddd54d9977cdd0bce6b57a3d60ff0a7d8e", "fields": {"nom_de_la_commune": "UPAIX", "libell_d_acheminement": "UPAIX", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05173"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1fd645cfeccb50a9440d60ba1079255b62c3a9", "fields": {"nom_de_la_commune": "CLANS", "libell_d_acheminement": "CLANS", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06042"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ac55e3e96535df01631594d8946a7f55e781b1", "fields": {"code_postal": "06210", "code_commune_insee": "06079", "libell_d_acheminement": "MANDELIEU LA NAPOULE", "ligne_5": "LA NAPOULE", "nom_de_la_commune": "MANDELIEU LA NAPOULE", "coordonnees_gps": [43.5382980817, 6.91782917147]}, "geometry": {"type": "Point", "coordinates": [6.91782917147, 43.5382980817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ff0ac08616eb59039a14b5fcc9d9e529553671", "fields": {"code_postal": "06130", "code_commune_insee": "06069", "libell_d_acheminement": "GRASSE", "ligne_5": "PLASCASSIER", "nom_de_la_commune": "GRASSE", "coordonnees_gps": [43.6557670284, 6.93183304936]}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ec5722b5cb5b3353f6f371582fbd90aad8e8c8", "fields": {"nom_de_la_commune": "MOUGINS", "libell_d_acheminement": "MOUGINS", "code_postal": "06250", "coordonnees_gps": [43.5960811185, 7.00118889043], "code_commune_insee": "06085"}, "geometry": {"type": "Point", "coordinates": [7.00118889043, 43.5960811185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d6a86922e4056ff98fa9e1359e75eec6427ae7", "fields": {"nom_de_la_commune": "LIEUCHE", "libell_d_acheminement": "LIEUCHE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06076"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebbe8425c2f2fda1cbf0942df2bdc7b7d5e61e6", "fields": {"nom_de_la_commune": "ILONSE", "libell_d_acheminement": "ILONSE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06072"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363f8dae97ab3ee8144c39d43654fafccfed48cd", "fields": {"nom_de_la_commune": "DRAP", "libell_d_acheminement": "DRAP", "code_postal": "06340", "coordonnees_gps": [43.7532444079, 7.33155187771], "code_commune_insee": "06054"}, "geometry": {"type": "Point", "coordinates": [7.33155187771, 43.7532444079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "667e52cbabe6c1bae33ecba3ee4fddc6f7e7b3b3", "fields": {"nom_de_la_commune": "GARS", "libell_d_acheminement": "GARS", "code_postal": "06850", "coordonnees_gps": [43.8467484238, 6.75541099886], "code_commune_insee": "06063"}, "geometry": {"type": "Point", "coordinates": [6.75541099886, 43.8467484238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a3d5dbcf6443b96f50dd2ee51c0316b0fdd9805", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06000", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6302899fc71c936d2bc0496a7e4d26b799948c", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06200", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2701b66e1752a5bdc4ad0a840bc359b097a16a23", "fields": {"nom_de_la_commune": "ST VINCENT DE BARRES", "libell_d_acheminement": "ST VINCENT DE BARRES", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07302"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b13e5cc0b30f4410d86d293b70782b2e93b3306", "fields": {"nom_de_la_commune": "ST ROMAIN D AY", "libell_d_acheminement": "ST ROMAIN D AY", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07292"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a77f9a9445a12fbd8326867969e6ddd2b7163662", "fields": {"nom_de_la_commune": "LES SALELLES", "libell_d_acheminement": "LES SALELLES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07305"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb8289c45293c44b0c313e53bc5c59e1a7ffe649", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07301"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90a2a3c00859d06e041dbf26a066931eba9b926", "fields": {"nom_de_la_commune": "SATILLIEU", "libell_d_acheminement": "SATILLIEU", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07309"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de09c5425b43f2d81376874914d0fa82a9a190f2", "fields": {"nom_de_la_commune": "SANILHAC", "libell_d_acheminement": "SANILHAC", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07307"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9254f6662bddc8f0e5f86b0bc2b09a20695aec80", "fields": {"nom_de_la_commune": "SALAVAS", "libell_d_acheminement": "SALAVAS", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07304"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd53ba14d8c724461f983a58794414b20301bdd", "fields": {"nom_de_la_commune": "SARRAS", "libell_d_acheminement": "SARRAS", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07308"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b611767272675ecc763d9853125863c7385183", "fields": {"code_postal": "06450", "code_commune_insee": "06127", "libell_d_acheminement": "ST MARTIN VESUBIE", "ligne_5": "LE BOREON", "nom_de_la_commune": "ST MARTIN VESUBIE", "coordonnees_gps": [44.0250774334, 7.30840268234]}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfca1f09817f4d7ea6e7ae98a773a8bdfb4bffc", "fields": {"nom_de_la_commune": "TOURRETTES SUR LOUP", "libell_d_acheminement": "TOURRETTES SUR LOUP", "code_postal": "06140", "coordonnees_gps": [43.7526765774, 7.06029224738], "code_commune_insee": "06148"}, "geometry": {"type": "Point", "coordinates": [7.06029224738, 43.7526765774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0fe8119ecff520c6221ce5bddc606de4960c9c", "fields": {"nom_de_la_commune": "LA ROQUETTE SUR VAR", "libell_d_acheminement": "LA ROQUETTE SUR VAR", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06109"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e872f40eb4f3a41cb4e73129e898eaa022a1c73", "fields": {"nom_de_la_commune": "ST MARTIN VESUBIE", "libell_d_acheminement": "ST MARTIN VESUBIE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06127"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452e1dccc48cf0d66f69110ca09a44f6421b8312", "fields": {"nom_de_la_commune": "TOURNEFORT", "libell_d_acheminement": "TOURNEFORT", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06146"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccc5a4e6e74281bb54311b900e6f7e4c7cb1e23", "fields": {"nom_de_la_commune": "LE TIGNET", "libell_d_acheminement": "LE TIGNET", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06140"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e580e401561eade49ab054f088105e08b30586b", "fields": {"nom_de_la_commune": "LE ROURET", "libell_d_acheminement": "LE ROURET", "code_postal": "06650", "coordonnees_gps": [43.6665802809, 7.00909977966], "code_commune_insee": "06112"}, "geometry": {"type": "Point", "coordinates": [7.00909977966, 43.6665802809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea3d785a2a34728eb88f3221f233391fcc50338", "fields": {"nom_de_la_commune": "STE AGNES", "libell_d_acheminement": "STE AGNES", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06113"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587583559b2df1945429628597bf79955d8d8635", "fields": {"nom_de_la_commune": "SOSPEL", "libell_d_acheminement": "SOSPEL", "code_postal": "06380", "coordonnees_gps": [43.9117756236, 7.43417997432], "code_commune_insee": "06136"}, "geometry": {"type": "Point", "coordinates": [7.43417997432, 43.9117756236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f309b284f670ac1b990a2dd949eb1a005f473af0", "fields": {"nom_de_la_commune": "UTELLE", "libell_d_acheminement": "UTELLE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06151"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360a5c3cb79e155b48951bb14b55351c5fbdd34d", "fields": {"code_postal": "06190", "code_commune_insee": "06104", "libell_d_acheminement": "ROQUEBRUNE CAP MARTIN", "ligne_5": "CARNOLES", "nom_de_la_commune": "ROQUEBRUNE CAP MARTIN", "coordonnees_gps": [43.7639198433, 7.4582621298]}, "geometry": {"type": "Point", "coordinates": [7.4582621298, 43.7639198433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d973bdd59c191fde1bf2558062fccfb2d606a7", "fields": {"code_postal": "06200", "code_commune_insee": "06088", "libell_d_acheminement": "NICE", "ligne_5": "ST ISIDORE", "nom_de_la_commune": "NICE", "coordonnees_gps": [43.7122279855, 7.23752896461]}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a35ce88e43bd9a91301a776726fe1ebf233683", "fields": {"nom_de_la_commune": "PUGET THENIERS", "libell_d_acheminement": "PUGET THENIERS", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06099"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5d4436c6a75a8f0c12eafa9c0d08bbde87e1d8", "fields": {"nom_de_la_commune": "PUGET ROSTANG", "libell_d_acheminement": "PUGET ROSTANG", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06098"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22359186f8bd9f2495fea8447cdfe63a0f366a14", "fields": {"nom_de_la_commune": "PIERREFEU", "libell_d_acheminement": "PIERREFEU", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06097"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f8897c6c9ded97aa4ae0c95605be8f6aacd885", "fields": {"nom_de_la_commune": "LA PENNE", "libell_d_acheminement": "LA PENNE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06093"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4c1e64e81b7c3cd1a3ab11c523ab32b0adbeee", "fields": {"nom_de_la_commune": "PEGOMAS", "libell_d_acheminement": "PEGOMAS", "code_postal": "06580", "coordonnees_gps": [43.5873886905, 6.92180421319], "code_commune_insee": "06090"}, "geometry": {"type": "Point", "coordinates": [6.92180421319, 43.5873886905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e83584262d8834320251c9ff45236154c6965dd", "fields": {"nom_de_la_commune": "PEILLON", "libell_d_acheminement": "PEILLON", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06092"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e3d8a1beba59d5c12bb7989dd17bb810b9d47c", "fields": {"nom_de_la_commune": "PEONE", "libell_d_acheminement": "PEONE", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06094"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2f8b9207ceee53f071c617d9f354bb05950664", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06300", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b5ef382ba9617a046c2dec7731f0153caa7693", "fields": {"nom_de_la_commune": "ANTRAIGUES SUR VOLANE", "libell_d_acheminement": "ANTRAIGUES SUR VOLANE", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07011"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caa7e34a376eef9bbe5528efe547179a6ebaee0", "fields": {"nom_de_la_commune": "VILLEFRANCHE SUR MER", "libell_d_acheminement": "VILLEFRANCHE SUR MER", "code_postal": "06230", "coordonnees_gps": [43.7028977501, 7.3242506305], "code_commune_insee": "06159"}, "geometry": {"type": "Point", "coordinates": [7.3242506305, 43.7028977501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a04b637735a29b6c8473cd92502fb3978b48669", "fields": {"nom_de_la_commune": "VILLENEUVE LOUBET", "libell_d_acheminement": "VILLENEUVE LOUBET", "code_postal": "06270", "coordonnees_gps": [43.6494918567, 7.10639852456], "code_commune_insee": "06161"}, "geometry": {"type": "Point", "coordinates": [7.10639852456, 43.6494918567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee376ac06b44175d65e1fb622340c578fd7efb6", "fields": {"nom_de_la_commune": "ARLEBOSC", "libell_d_acheminement": "ARLEBOSC", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07014"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c27cbad2bc8f4fa649f8f9a1ed7699e2dabe4c0", "fields": {"nom_de_la_commune": "VENANSON", "libell_d_acheminement": "VENANSON", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06156"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9afcc242ba3c00478525ea1fd4b69a6d43e78fc8", "fields": {"nom_de_la_commune": "ARDOIX", "libell_d_acheminement": "ARDOIX", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07013"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb25e310a8bb2049ec173504aac92a75c3fec7a", "fields": {"nom_de_la_commune": "AJOUX", "libell_d_acheminement": "AJOUX", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07004"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaec3f3b210c451b1664f8f274f674c350e6f9f8", "fields": {"nom_de_la_commune": "AIZAC", "libell_d_acheminement": "AIZAC", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07003"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adeeee2e30112e58769c23b6fe23e81f93b078d1", "fields": {"nom_de_la_commune": "BANNE", "libell_d_acheminement": "BANNE", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07024"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61f00e9a82f9143897fc10e57918a1409bcd6f1", "fields": {"nom_de_la_commune": "BAIX", "libell_d_acheminement": "BAIX", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07022"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb814a168b059b3ac3bae07e519c62c23a4f7ac", "fields": {"nom_de_la_commune": "VALS LES BAINS", "libell_d_acheminement": "VALS LES BAINS", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07331"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce867580bbe583cad446734c2411e6ff14eb751", "fields": {"nom_de_la_commune": "TALENCIEUX", "libell_d_acheminement": "TALENCIEUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07317"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bf770969bedda77bd8912c075eb569273f7c42", "fields": {"nom_de_la_commune": "LA SOUCHE", "libell_d_acheminement": "LA SOUCHE", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07315"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de189246fafee6e455b35bf7f33d27ce40957ded", "fields": {"nom_de_la_commune": "SCEAUTRES", "libell_d_acheminement": "SCEAUTRES", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07311"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d786ab9d65b51bc9bc779e334b97978c8f751e", "fields": {"nom_de_la_commune": "LES VANS", "libell_d_acheminement": "LES VANS", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07334"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e7023785089137a2fa6ce1410b453c0b97e310", "fields": {"nom_de_la_commune": "TAURIERS", "libell_d_acheminement": "TAURIERS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07318"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1313a976bb50cb9b064f973cc86674edc806424", "fields": {"nom_de_la_commune": "TOULAUD", "libell_d_acheminement": "TOULAUD", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07323"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97b7d5a1f10eadb906112648826cf709abc51f1", "fields": {"nom_de_la_commune": "COLOMBIER LE CARDINAL", "libell_d_acheminement": "COLOMBIER LE CARDINAL", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07067"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdbae468cac8b6aec54b3608f1aa7d089af7571", "fields": {"nom_de_la_commune": "BERRIAS ET CASTELJAU", "libell_d_acheminement": "BERRIAS ET CASTELJAU", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07031"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ed3a6b96121e6336eb77c5dac4571546b81762", "fields": {"nom_de_la_commune": "CHARMES SUR RHONE", "libell_d_acheminement": "CHARMES SUR RHONE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07055"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea438f1a6ac66255c903e2fa4728a3b404321b4", "fields": {"nom_de_la_commune": "CROS DE GEORAND", "libell_d_acheminement": "CROS DE GEORAND", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07075"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea96356c3b4554d516bd3134ac6b9cc3e2c52fab", "fields": {"nom_de_la_commune": "CELLIER DU LUC", "libell_d_acheminement": "CELLIER DU LUC", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07047"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1c67858906fc2301a4193b1faee9ca0627153b", "fields": {"nom_de_la_commune": "BEAUCHASTEL", "libell_d_acheminement": "BEAUCHASTEL", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07027"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d533958f70503b4cc13ddb06dff5595a3e0318c1", "fields": {"nom_de_la_commune": "COUCOURON", "libell_d_acheminement": "COUCOURON", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07071"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b206c1a563e80ed9319a3e4dfffd637b877806c", "fields": {"nom_de_la_commune": "CHOMERAC", "libell_d_acheminement": "CHOMERAC", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07066"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "593413f4feb2a3f495cfe41e8e066c6f88ad92db", "fields": {"nom_de_la_commune": "BOFFRES", "libell_d_acheminement": "BOFFRES", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07035"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a6b28835246617d55c54207025ce6d2aeccd2c", "fields": {"nom_de_la_commune": "BORNE", "libell_d_acheminement": "BORNE", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07038"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c0e5fd87c90cf5cdfa1ae5c310ef528cae55dd", "fields": {"nom_de_la_commune": "GILHOC SUR ORMEZE", "libell_d_acheminement": "GILHOC SUR ORMEZE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07095"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a4b16919b1668254a5294da29098409698c8e4a", "fields": {"nom_de_la_commune": "ECLASSAN", "libell_d_acheminement": "ECLASSAN", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07084"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba2012b75bce550689cf39d02930f9af8912588", "fields": {"nom_de_la_commune": "ISSANLAS", "libell_d_acheminement": "ISSANLAS", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07105"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a540fdb3186a9df16b436392a042e5daf82558a8", "fields": {"nom_de_la_commune": "ISSARLES", "libell_d_acheminement": "ISSARLES", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07106"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c9026a3459887db4e55a4615eafbf37053e9fe", "fields": {"nom_de_la_commune": "DOMPNAC", "libell_d_acheminement": "DOMPNAC", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07081"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1b6c227f0ee6f3957aaafec0086e817af9943a", "fields": {"nom_de_la_commune": "FELINES", "libell_d_acheminement": "FELINES", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07089"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0299b0c8b8e927bbf29c57c8c5979dd1867fca4a", "fields": {"nom_de_la_commune": "ETABLES", "libell_d_acheminement": "ETABLES", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07086"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc9c6776d7f75c129906220db96834c27b923c5a", "fields": {"nom_de_la_commune": "DORNAS", "libell_d_acheminement": "DORNAS", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07082"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0970d554a9e60e10a5b50fc238ceb1d52cb3c5fe", "fields": {"nom_de_la_commune": "FONS", "libell_d_acheminement": "FONS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07091"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e822dbfea16b994dd6e1e0b4436abf03d49c4f", "fields": {"nom_de_la_commune": "GRAS", "libell_d_acheminement": "GRAS", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07099"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cda3accbdae8df449cc31fb81c847b56679b442", "fields": {"code_postal": "07140", "code_commune_insee": "07334", "libell_d_acheminement": "LES VANS", "ligne_5": "BRAHIC", "nom_de_la_commune": "LES VANS", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b6fbbdbdb34b94df939afb7a3fc472f8cabfed1", "fields": {"nom_de_la_commune": "VERNOSC LES ANNONAY", "libell_d_acheminement": "VERNOSC LES ANNONAY", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07337"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6283c8a7a4e0c97ddea44b65c2fa22b754d8a676", "fields": {"nom_de_la_commune": "AMBLY FLEURY", "libell_d_acheminement": "AMBLY FLEURY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08010"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6823e69508b1af13d9b1fe9f5c4ab1e04beb6f6", "fields": {"nom_de_la_commune": "ANCHAMPS", "libell_d_acheminement": "ANCHAMPS", "code_postal": "08500", "coordonnees_gps": [49.9165828539, 4.66313545428], "code_commune_insee": "08011"}, "geometry": {"type": "Point", "coordinates": [4.66313545428, 49.9165828539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee0d724a97e2f2181b6e97d2e55501f68e55e93", "fields": {"nom_de_la_commune": "VOCANCE", "libell_d_acheminement": "VOCANCE", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07347"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115f01fa33b7b94fb83ace8f7de2c8f037fc626c", "fields": {"nom_de_la_commune": "VEYRAS", "libell_d_acheminement": "VEYRAS", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07340"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e254565c6b6cc0da31c899d2d7f016599bf9450e", "fields": {"nom_de_la_commune": "VERNON", "libell_d_acheminement": "VERNON", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07336"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a266e68b9ec6fcbb0e9c3d2c3faa68e0f6a430ec", "fields": {"nom_de_la_commune": "AIRE", "libell_d_acheminement": "AIRE", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08004"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "590a6ecc137acf54d90a71644805c7f811803f9d", "fields": {"nom_de_la_commune": "LES OLLIERES SUR EYRIEUX", "libell_d_acheminement": "LES OLLIERES SUR EYRIEUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07167"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20da845cb9805a7cb6c98d4bedef74652cfe7b6", "fields": {"nom_de_la_commune": "MALARCE SUR LA THINES", "libell_d_acheminement": "MALARCE SUR LA THINES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07147"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c9f265243983f2063dcf13c55bb8502832c45c", "fields": {"nom_de_la_commune": "MONTSELGUES", "libell_d_acheminement": "MONTSELGUES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07163"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1ff59b7f2204df2c5ffad9bd016fda7b01bd12", "fields": {"nom_de_la_commune": "PLANZOLLES", "libell_d_acheminement": "PLANZOLLES", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07176"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aff64fa8deecdaaf7156cc81ee9787706e14f8", "fields": {"nom_de_la_commune": "NOZIERES", "libell_d_acheminement": "NOZIERES", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07166"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0406d861e118d24ec89495e44dde2b13d0f4a35f", "fields": {"nom_de_la_commune": "MALBOSC", "libell_d_acheminement": "MALBOSC", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07148"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834678d43cdd6179a884bf2373c66afdea93a61c", "fields": {"nom_de_la_commune": "MAYRES", "libell_d_acheminement": "MAYRES", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07153"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd76e1a4966f815e0737733d193b6571e207b4c2", "fields": {"nom_de_la_commune": "LUSSAS", "libell_d_acheminement": "LUSSAS", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07145"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f308d2f3b0a630d418454ec94b0f6dd1911958b5", "fields": {"nom_de_la_commune": "LYAS", "libell_d_acheminement": "LYAS", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07146"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8dc5d2d2c1e3a76cd11d4407f3151bdce1229d", "fields": {"nom_de_la_commune": "OZON", "libell_d_acheminement": "OZON", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07169"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c143f41f21b9766cb7335a26fdcf26e2d1b7a0b", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS CHANEAC", "libell_d_acheminement": "LACHAPELLE SOUS CHANEAC", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07123"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd3ab58f9a9910edbff869e4deea531901087025", "fields": {"nom_de_la_commune": "LAVILLEDIEU", "libell_d_acheminement": "LAVILLEDIEU", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07138"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be35e732f0306352fc1f03f2c441240e27625b3", "fields": {"nom_de_la_commune": "LAVILLATTE", "libell_d_acheminement": "LAVILLATTE", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07137"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8586e7e9970a4a9b607f66c3ab9729f968e5e4ba", "fields": {"nom_de_la_commune": "NEBOUZAT", "libell_d_acheminement": "NEBOUZAT", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63248"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ed76261bb25bb7798c8caf8bcc9757e83c1cf9", "fields": {"nom_de_la_commune": "NERONDE SUR DORE", "libell_d_acheminement": "NERONDE SUR DORE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63249"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258c19c4c2beedc0a30f30e069546ed483618baf", "fields": {"nom_de_la_commune": "NESCHERS", "libell_d_acheminement": "NESCHERS", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63250"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0523ae9b15c950f99ea0f968e08761522f0741a2", "fields": {"nom_de_la_commune": "NOVACELLES", "libell_d_acheminement": "NOVACELLES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63256"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5dbc85968a3650a11042f966bc69f1e5e7a7af", "fields": {"nom_de_la_commune": "ORCET", "libell_d_acheminement": "ORCET", "code_postal": "63670", "coordonnees_gps": [45.7124444692, 3.15893935126], "code_commune_insee": "63262"}, "geometry": {"type": "Point", "coordinates": [3.15893935126, 45.7124444692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4ad7f56bcb233cf05045d50ee3b98891a2c713", "fields": {"nom_de_la_commune": "ORCIVAL", "libell_d_acheminement": "ORCIVAL", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63264"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df916209895f9d22e36ade7afed3a3df9b16620", "fields": {"nom_de_la_commune": "PLAUZAT", "libell_d_acheminement": "PLAUZAT", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63282"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0bc01f26c82a16acfb48af929f737b7edb0adb1", "fields": {"nom_de_la_commune": "PONT DU CHATEAU", "libell_d_acheminement": "PONT DU CHATEAU", "code_postal": "63430", "coordonnees_gps": [45.8112884273, 3.24859330717], "code_commune_insee": "63284"}, "geometry": {"type": "Point", "coordinates": [3.24859330717, 45.8112884273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9cb70cc4f45599272b994a8c1f3e1b5beb2c6cb", "fields": {"nom_de_la_commune": "PROMPSAT", "libell_d_acheminement": "PROMPSAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63288"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e42eb2140f7848b1e6daa0ecde85f311eb9e345", "fields": {"nom_de_la_commune": "PUY ST GULMIER", "libell_d_acheminement": "PUY ST GULMIER", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63292"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305e55463493375c296247407c8bee4add083308", "fields": {"nom_de_la_commune": "LE QUARTIER", "libell_d_acheminement": "LE QUARTIER", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63293"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c73a9f571d4e18d90332daab4de811c73cca55", "fields": {"nom_de_la_commune": "RANDAN", "libell_d_acheminement": "RANDAN", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63295"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70e0315c6163e9f32037e29b40475aa73755bc9", "fields": {"nom_de_la_commune": "RENTIERES", "libell_d_acheminement": "RENTIERES", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63299"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "709b003eb026f0b994cedcb0319a7fb2febe992b", "fields": {"nom_de_la_commune": "RIOM", "libell_d_acheminement": "RIOM", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63300"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49867757f74b2c8f0a577e004aa245d493602501", "fields": {"code_postal": "63420", "code_commune_insee": "63303", "libell_d_acheminement": "ROCHE CHARLES LA MAYRAND", "ligne_5": "LA MAYRAND", "nom_de_la_commune": "ROCHE CHARLES LA MAYRAND", "coordonnees_gps": [45.3815607414, 3.05063750475]}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8aa843bf4075c7be63b6dfc1417741d6d6538f3", "fields": {"nom_de_la_commune": "ROCHE D AGOUX", "libell_d_acheminement": "ROCHE D AGOUX", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63304"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f98848e9efcb52b8010ee9a5811d210ee34224", "fields": {"nom_de_la_commune": "LA ROCHE NOIRE", "libell_d_acheminement": "LA ROCHE NOIRE", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63306"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6caaa72f417ef28143f5af59957282df139b0341", "fields": {"nom_de_la_commune": "ST ALYRE ES MONTAGNE", "libell_d_acheminement": "ST ALYRE ES MONTAGNE", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63313"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b1dec2691595f45fbd93797619d5c6f2f07f3a", "fields": {"nom_de_la_commune": "ST AMANT TALLENDE", "libell_d_acheminement": "ST AMANT TALLENDE", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63315"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fc102e867d0161ca0e6f9e633283aa09bffd67", "fields": {"nom_de_la_commune": "ST ANDRE LE COQ", "libell_d_acheminement": "ST ANDRE LE COQ", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63317"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dd3e8156304de07e8bf9fa7fe0186afee02092", "fields": {"nom_de_la_commune": "ST ANGEL", "libell_d_acheminement": "ST ANGEL", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63318"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eca4564ff3241f28e157bfd2ef1760d2f7cc0fd", "fields": {"nom_de_la_commune": "ST BEAUZIRE", "libell_d_acheminement": "ST BEAUZIRE", "code_postal": "63360", "coordonnees_gps": [45.840831165, 3.18231829254], "code_commune_insee": "63322"}, "geometry": {"type": "Point", "coordinates": [3.18231829254, 45.840831165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976e321460a1d3d118fd0dbd7f0e4863efd80062", "fields": {"nom_de_la_commune": "ST BONNET LE BOURG", "libell_d_acheminement": "ST BONNET LE BOURG", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63323"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e616310d2442a608b279ce466c2c3931e25dcce5", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "FONT FREYDE", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36509e1e239eb6efe20aa4159c4e8aebd9606070", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "MANSON", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2fff85de425bb49d6539b815c6fbbfd9c76fc8", "fields": {"nom_de_la_commune": "ST HILAIRE LA CROIX", "libell_d_acheminement": "ST HILAIRE LA CROIX", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63358"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55f53f3637340f634ba826ac3fad46a83d469fc", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE PRES PIONSAT", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63360"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faee5d18a3bc9bad19bd63aa2dac893511b8322", "fields": {"nom_de_la_commune": "ST MARTIN DES PLAINS", "libell_d_acheminement": "ST MARTIN DES PLAINS", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63375"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377f7490d1f8a0ad840f48ce96b72079b3e0f87e", "fields": {"nom_de_la_commune": "ST PRIEST DES CHAMPS", "libell_d_acheminement": "ST PRIEST DES CHAMPS", "code_postal": "63640", "coordonnees_gps": [45.9806226406, 2.69554487333], "code_commune_insee": "63388"}, "geometry": {"type": "Point", "coordinates": [2.69554487333, 45.9806226406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a14038912e02e8e6c85c70d737752c63fa71fe0f", "fields": {"nom_de_la_commune": "ST QUENTIN SUR SAUXILLANGES", "libell_d_acheminement": "ST QUENTIN SUR SAUXILLANGES", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63389"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26bc23846614b6876a0893f05c6724cdfc4fa900", "fields": {"nom_de_la_commune": "ST SAUVES D AUVERGNE", "libell_d_acheminement": "ST SAUVES D AUVERGNE", "code_postal": "63950", "coordonnees_gps": [45.6113880886, 2.69282383691], "code_commune_insee": "63397"}, "geometry": {"type": "Point", "coordinates": [2.69282383691, 45.6113880886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6252aefcd3c1aca230b6fc03411e06cf79fa5e48", "fields": {"nom_de_la_commune": "ST SYLVESTRE PRAGOULIN", "libell_d_acheminement": "ST SYLVESTRE PRAGOULIN", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63400"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ce69cebafe75e937010475dbb968a64d5e5c3c", "fields": {"nom_de_la_commune": "ST VICTOR LA RIVIERE", "libell_d_acheminement": "ST VICTOR LA RIVIERE", "code_postal": "63790", "coordonnees_gps": [45.562829077, 2.89483440684], "code_commune_insee": "63401"}, "geometry": {"type": "Point", "coordinates": [2.89483440684, 45.562829077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b00569b2c1de6ee84f1009fd825c7c4c518b3d0", "fields": {"nom_de_la_commune": "SAUVAGNAT", "libell_d_acheminement": "SAUVAGNAT", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63410"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4153a67ff37486f05c57df785b65e361158ede5b", "fields": {"nom_de_la_commune": "SAUVESSANGES", "libell_d_acheminement": "SAUVESSANGES", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63412"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf03b530e1d9a8b1ede97e2962c479e2a678503", "fields": {"nom_de_la_commune": "LA SAUVETAT", "libell_d_acheminement": "LA SAUVETAT", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63413"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27dc842c188186f1991fe555903fdcc67a7c757c", "fields": {"nom_de_la_commune": "TEILHEDE", "libell_d_acheminement": "TEILHEDE", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63427"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdab0cee00cb623178270ab073306dcb90e95b8f", "fields": {"nom_de_la_commune": "TEILHET", "libell_d_acheminement": "TEILHET", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63428"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0940fc67637fbcf794fdb5de05486fe526fa30", "fields": {"nom_de_la_commune": "THIOLIERES", "libell_d_acheminement": "THIOLIERES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63431"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b077cc130016a61e3112212b7886a6441c459e", "fields": {"nom_de_la_commune": "VALCIVIERES", "libell_d_acheminement": "VALCIVIERES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63441"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2d57ac42159de4ca107de004d96313e1b7b4a8", "fields": {"nom_de_la_commune": "VARENNES SUR USSON", "libell_d_acheminement": "VARENNES SUR USSON", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63444"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37578a8b95d51d84901b1b7d2750a583f5e7569", "fields": {"nom_de_la_commune": "LE VERNET STE MARGUERITE", "libell_d_acheminement": "LE VERNET STE MARGUERITE", "code_postal": "63710", "coordonnees_gps": [45.6024911149, 2.9728034479], "code_commune_insee": "63449"}, "geometry": {"type": "Point", "coordinates": [2.9728034479, 45.6024911149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be71acf5f69f84fdcad740b7fd88215b61b5af1a", "fields": {"nom_de_la_commune": "VERTAIZON", "libell_d_acheminement": "VERTAIZON", "code_postal": "63910", "coordonnees_gps": [45.7740957976, 3.29534868018], "code_commune_insee": "63453"}, "geometry": {"type": "Point", "coordinates": [3.29534868018, 45.7740957976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f481432dc844747a3191dd102d378ebc981829e6", "fields": {"nom_de_la_commune": "VINZELLES", "libell_d_acheminement": "VINZELLES", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63461"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a29861bad46561e3b5dfdb28219d6fb3b9aa2c", "fields": {"nom_de_la_commune": "VITRAC", "libell_d_acheminement": "VITRAC", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63464"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea24792d3f578f784ec560ee4e251e194fda0b8", "fields": {"nom_de_la_commune": "VODABLE", "libell_d_acheminement": "VODABLE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63466"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a934b87c3ae4690474b9ac2209af9a188da48cd", "fields": {"nom_de_la_commune": "AINCILLE", "libell_d_acheminement": "AINCILLE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64011"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fde9ee02b36544eae96651e3e83e46a122b4e50", "fields": {"nom_de_la_commune": "ALCAY ALCABEHETY SUNHARETTE", "libell_d_acheminement": "ALCAY ALCABEHETY SUNHARETTE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64015"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4fcf8dc318f40eb40c76951bac831a9c473253", "fields": {"nom_de_la_commune": "AMOROTS SUCCOS", "libell_d_acheminement": "AMOROTS SUCCOS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64019"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab012f5645c8d1095b0fa6bd2af87c192975a16", "fields": {"nom_de_la_commune": "ANOYE", "libell_d_acheminement": "ANOYE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64028"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa96857c2f6048748dc5a5ddc9d05d05e210a543", "fields": {"nom_de_la_commune": "ARAUJUZON", "libell_d_acheminement": "ARAUJUZON", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64032"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af36c7b962960a472df20eea78657966a6dff425", "fields": {"nom_de_la_commune": "ARBOUET SUSSAUTE", "libell_d_acheminement": "ARBOUET SUSSAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64036"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e606873a21b7a9178c8714943821749314240c7a", "fields": {"nom_de_la_commune": "ARGET", "libell_d_acheminement": "ARGET", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64044"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965a0e2940336d6cca6acdfb59b1a1c4383642a4", "fields": {"nom_de_la_commune": "ARHANSUS", "libell_d_acheminement": "ARHANSUS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64045"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77ec73341812294a1ab69059c1ce9d8237577a1", "fields": {"nom_de_la_commune": "AROUE ITHOROTS OLHAIBY", "libell_d_acheminement": "AROUE ITHOROTS OLHAIBY", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64049"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16b82c4d3fca2f357d94632acf0bf565e38d5ec", "fields": {"nom_de_la_commune": "ARRAST LARREBIEU", "libell_d_acheminement": "ARRAST LARREBIEU", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64050"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe64d6744ce5bc3ab37259862c2a443716222f61", "fields": {"nom_de_la_commune": "ASCAIN", "libell_d_acheminement": "ASCAIN", "code_postal": "64310", "coordonnees_gps": [43.3310114321, -1.57798494011], "code_commune_insee": "64065"}, "geometry": {"type": "Point", "coordinates": [-1.57798494011, 43.3310114321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217c4f52fe2837a5f6399bf9b619285a88efd9e1", "fields": {"nom_de_la_commune": "AUBERTIN", "libell_d_acheminement": "AUBERTIN", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64072"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942dc630bb3fcef332eed42450e8f1f91aca4021", "fields": {"nom_de_la_commune": "AUSSEVIELLE", "libell_d_acheminement": "AUSSEVIELLE", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64080"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99092f0ff57971a53f1b9e95aa1d6c8e5768f5eb", "fields": {"nom_de_la_commune": "BAIGTS DE BEARN", "libell_d_acheminement": "BAIGTS DE BEARN", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64087"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5d1cf6407fdcb34c195ec6a456d88d0c1e14c1", "fields": {"nom_de_la_commune": "BARCUS", "libell_d_acheminement": "BARCUS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64093"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7896967cf79a6cb87de2b421c5fb866ffbc25a", "fields": {"nom_de_la_commune": "BEDEILLE", "libell_d_acheminement": "BEDEILLE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64103"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbda464b468f6b25ae48951646a999ae588dbf0", "fields": {"nom_de_la_commune": "BEGUIOS", "libell_d_acheminement": "BEGUIOS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64105"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d412abbba3d1ea682e016991c604bd311bda77", "fields": {"nom_de_la_commune": "BENEJACQ", "libell_d_acheminement": "BENEJACQ", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64109"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca75987d8607118e12003abef2f26a02c0312b1", "fields": {"nom_de_la_commune": "BESCAT", "libell_d_acheminement": "BESCAT", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64116"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58785a5f2ecddb3667bacf76d1924db8f8a90bf", "fields": {"nom_de_la_commune": "BIARRITZ", "libell_d_acheminement": "BIARRITZ", "code_postal": "64200", "coordonnees_gps": [43.44355076, -1.52562527873], "code_commune_insee": "64122"}, "geometry": {"type": "Point", "coordinates": [-1.52562527873, 43.44355076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60bf0ac2b4be2783509cf68297df9f62df5cd087", "fields": {"nom_de_la_commune": "BIDOS", "libell_d_acheminement": "BIDOS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64126"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61e86b770fcc6420398d4d1f0315e65819a88d5", "fields": {"nom_de_la_commune": "BILHERES", "libell_d_acheminement": "BILHERES", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64128"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6db17bfaf1821c7110dee5b7e7826a6734215341", "fields": {"nom_de_la_commune": "BOUMOURT", "libell_d_acheminement": "BOUMOURT", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64144"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0286e9ba0fd04475e6e13c65c4f5ef6e58252238", "fields": {"nom_de_la_commune": "BOURDETTES", "libell_d_acheminement": "BOURDETTES", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64145"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9af7c284fb9aadfc40a077f2bb679d4158ce7341", "fields": {"nom_de_la_commune": "BRUGES CAPBIS MIFAGET", "libell_d_acheminement": "BRUGES CAPBIS MIFAGET", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64148"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54db276340e83a27d310c0da41b374bed3c0a6b4", "fields": {"nom_de_la_commune": "BUROSSE MENDOUSSE", "libell_d_acheminement": "BUROSSE MENDOUSSE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64153"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020478525b5b1299965be79097b72a2b22840b46", "fields": {"nom_de_la_commune": "BUSTINCE IRIBERRY", "libell_d_acheminement": "BUSTINCE IRIBERRY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64155"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1810c955cc655f0c938c218f3457e9486c82a5f1", "fields": {"nom_de_la_commune": "BUZIET", "libell_d_acheminement": "BUZIET", "code_postal": "64680", "coordonnees_gps": [43.154142648, -0.506746806096], "code_commune_insee": "64156"}, "geometry": {"type": "Point", "coordinates": [-0.506746806096, 43.154142648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20bb01026d7fca2986ada622ab32c82e8e7cb36", "fields": {"nom_de_la_commune": "CASTEIDE DOAT", "libell_d_acheminement": "CASTEIDE DOAT", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64173"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1faa3674cc4094a011a7494360bb53cfb928285", "fields": {"nom_de_la_commune": "CASTETNAU CAMBLONG", "libell_d_acheminement": "CASTETNAU CAMBLONG", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64178"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f576213827d399c416d42c70b64b054b832b42", "fields": {"nom_de_la_commune": "CASTETNER", "libell_d_acheminement": "CASTETNER", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64179"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda717220639d41f23f19128cf6a1d872fac3fb4", "fields": {"nom_de_la_commune": "CESCAU", "libell_d_acheminement": "CESCAU", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64184"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0292c8278022ebabc55b2f5df5507e78ce07ebf", "fields": {"nom_de_la_commune": "CETTE EYGUN", "libell_d_acheminement": "CETTE EYGUN", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64185"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e972f4710e2c06ac5890e82d72fb73db7274be", "fields": {"nom_de_la_commune": "CONCHEZ DE BEARN", "libell_d_acheminement": "CONCHEZ DE BEARN", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64192"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd46a2666bbab29a0f767d3c7e31a77681646f88", "fields": {"nom_de_la_commune": "CUQUERON", "libell_d_acheminement": "CUQUERON", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64197"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90356bc351a8971db58110eb95187e893be58477", "fields": {"nom_de_la_commune": "ESLOURENTIES DABAN", "libell_d_acheminement": "ESLOURENTIES DABAN", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64211"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c768eecb785d2df03a5bd7440e6cc1bf516b4774", "fields": {"nom_de_la_commune": "ESPELETTE", "libell_d_acheminement": "ESPELETTE", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64213"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb173405a584c6b9ab4d5bcc5336fbb8fab00552", "fields": {"nom_de_la_commune": "ESTIALESCQ", "libell_d_acheminement": "ESTIALESCQ", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64219"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8ebb95bd9030c9e18878177f6ae0ae64410510", "fields": {"nom_de_la_commune": "ETSAUT", "libell_d_acheminement": "ETSAUT", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64223"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3816dc9007738008f2b772a121af2317008a2ce6", "fields": {"nom_de_la_commune": "GAMARTHE", "libell_d_acheminement": "GAMARTHE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64229"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b040ffdd88352c93684ed306088ddea68bdf8047", "fields": {"nom_de_la_commune": "GAYON", "libell_d_acheminement": "GAYON", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64236"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b195cdd3afeef57c308b3e81277ace94041653", "fields": {"nom_de_la_commune": "GOMER", "libell_d_acheminement": "GOMER", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64246"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c1ec86cd8099c9983863877eb12966e185d160", "fields": {"nom_de_la_commune": "IDAUX MENDY", "libell_d_acheminement": "IDAUX MENDY", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64268"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e84f8ff32546fc06c9f9d13a337c1fdc032a21f", "fields": {"nom_de_la_commune": "IHOLDY", "libell_d_acheminement": "IHOLDY", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64271"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9489430af7e3d1733d3011a9bf55fcf075fb26c7", "fields": {"nom_de_la_commune": "ISPOURE", "libell_d_acheminement": "ISPOURE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64275"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4354d7bcfd670645767b7d40d95e4b5f97d363e3", "fields": {"nom_de_la_commune": "ISTURITS", "libell_d_acheminement": "ISTURITS", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64277"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcbe554f961629b441db0efc6ffa20ac3f9ad7dd", "fields": {"nom_de_la_commune": "IZESTE", "libell_d_acheminement": "IZESTE", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64280"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42b37064a5a65f872673b948a44ecce02216971", "fields": {"nom_de_la_commune": "JASSES", "libell_d_acheminement": "JASSES", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64281"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a81a666aea7d830db0d73e4c2b8fb119e5e365", "fields": {"nom_de_la_commune": "LAAS", "libell_d_acheminement": "LAAS", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64287"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c092e81337a6144d4a2bbd5c07e78e450977af2c", "fields": {"nom_de_la_commune": "LABASTIDE VILLEFRANCHE", "libell_d_acheminement": "LABASTIDE VILLEFRANCHE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64291"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52059ea680dbc97ce74c33a8152d73702953c4f", "fields": {"nom_de_la_commune": "LABATMALE", "libell_d_acheminement": "LABATMALE", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64292"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c42c5f4eada265b20ac6ff18f3e84a32aab583c", "fields": {"nom_de_la_commune": "LABATUT", "libell_d_acheminement": "LABATUT", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64293"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3a30da9b705a45fba034e0bb28df880ef6536", "fields": {"nom_de_la_commune": "LACOMMANDE", "libell_d_acheminement": "LACOMMANDE", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64299"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fbfcd0b6c918d554312fbbb8653fb133d6414d", "fields": {"code_postal": "64170", "code_commune_insee": "64300", "libell_d_acheminement": "LACQ", "ligne_5": "AUDEJOS", "nom_de_la_commune": "LACQ", "coordonnees_gps": [43.409488442, -0.554817302956]}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd1db1e4e68bc40fa552579566dcc8d70fcfc1f", "fields": {"nom_de_la_commune": "TIGNAC", "libell_d_acheminement": "TIGNAC", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09311"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f497d2b586f13b796b88e340b041d395c855a09", "fields": {"nom_de_la_commune": "USSAT", "libell_d_acheminement": "USSAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09321"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361d11b21c8a7767fe4f5c635ee177485861520b", "fields": {"nom_de_la_commune": "VALS", "libell_d_acheminement": "VALS", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09323"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b475da0e7568d76d8df3ca4eb5d33df149306fb4", "fields": {"nom_de_la_commune": "OSSEY LES TROIS MAISONS", "libell_d_acheminement": "OSSEY LES TROIS MAISONS", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10275"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0499efe51b432410bd1ab3d9e06243ac527d8a45", "fields": {"nom_de_la_commune": "LE PAVILLON STE JULIE", "libell_d_acheminement": "LE PAVILLON STE JULIE", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10281"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5788ad6d33f82f420347b77c2605296e0323f2a6", "fields": {"nom_de_la_commune": "MAROLLES LES BAILLY", "libell_d_acheminement": "MAROLLES LES BAILLY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10226"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d02549c3ea9710eaa782ebe65807f53251ca19d", "fields": {"nom_de_la_commune": "POUY SUR VANNES", "libell_d_acheminement": "POUY SUR VANNES", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10301"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93664737133bf3c020d5f089b508b4dfc07788c", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10294"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1f40a7439b2c3840f13d71dfde04510e6305274", "fields": {"nom_de_la_commune": "POLISY", "libell_d_acheminement": "POLISY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10296"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4d45a8450ebaa3e23218dc9f3951992d9e7067", "fields": {"nom_de_la_commune": "CHARMONT SOUS BARBUISE", "libell_d_acheminement": "CHARMONT SOUS BARBUISE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10084"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce88bdbbb9693c3b5c874a6b9e7a8a545cebfc2", "fields": {"nom_de_la_commune": "BRIENNE LE CHATEAU", "libell_d_acheminement": "BRIENNE LE CHATEAU", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10064"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290541214ef8966701bda8008c365a55b3e71ae7", "fields": {"nom_de_la_commune": "CHAMPIGNY SUR AUBE", "libell_d_acheminement": "CHAMPIGNY SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10077"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14be40fa3eb71ae44d6bd73b969ce12215f6c77e", "fields": {"nom_de_la_commune": "BUXIERES SUR ARCE", "libell_d_acheminement": "BUXIERES SUR ARCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10069"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c990a59f0f015e1a16f6607c42df95906f1330", "fields": {"nom_de_la_commune": "BUCEY EN OTHE", "libell_d_acheminement": "BUCEY EN OTHE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10066"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5fcbbb6fe6eb91c8ccbfda480644f31a2b96b2", "fields": {"nom_de_la_commune": "BAR SUR SEINE", "libell_d_acheminement": "BAR SUR SEINE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10034"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c861b0dd93b2a4a0454785d84c3df2b1fcf4968", "fields": {"nom_de_la_commune": "BREVIANDES", "libell_d_acheminement": "BREVIANDES", "code_postal": "10450", "coordonnees_gps": [48.256436344, 4.1062065257], "code_commune_insee": "10060"}, "geometry": {"type": "Point", "coordinates": [4.1062065257, 48.256436344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d724f2bf31f47c5ab4ea3f04caa26534d9aece8c", "fields": {"nom_de_la_commune": "BUCHERES", "libell_d_acheminement": "BUCHERES", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10067"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43c477a0bf4a6f8b0e6c5f290489f3071361c9e", "fields": {"nom_de_la_commune": "BOUILLY", "libell_d_acheminement": "BOUILLY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10051"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb235d335ff08fd57ff5286d0e09619d6dce25c6", "fields": {"nom_de_la_commune": "CHAMOY", "libell_d_acheminement": "CHAMOY", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10074"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c8fbea6b257042c328455a98c443fd43288ef1", "fields": {"nom_de_la_commune": "MAIZIERES LES BRIENNE", "libell_d_acheminement": "MAIZIERES LES BRIENNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10221"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8442fcf2601e20880205de3a384adb599b74da3", "fields": {"nom_de_la_commune": "MAISONS LES SOULAINES", "libell_d_acheminement": "MAISONS LES SOULAINES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10219"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc7dff24fe804b884ada99fa169fe31d36eb505", "fields": {"nom_de_la_commune": "MAISON DES CHAMPS", "libell_d_acheminement": "MAISON DES CHAMPS", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10217"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b60ceb13d83533b706d38e5ffa1c6efd1a823e0", "fields": {"nom_de_la_commune": "LUSIGNY SUR BARSE", "libell_d_acheminement": "LUSIGNY SUR BARSE", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10209"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54df8373373818300258044e2503053d7e4b79b0", "fields": {"nom_de_la_commune": "JULLY SUR SARCE", "libell_d_acheminement": "JULLY SUR SARCE", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10181"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a45941ae8868a84825a9887519f8a6338a29362", "fields": {"nom_de_la_commune": "LONGPRE LE SEC", "libell_d_acheminement": "LONGPRE LE SEC", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10205"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2db91c54ae4ed2ab097a34adae4b657ffa9f25", "fields": {"nom_de_la_commune": "MAGNICOURT", "libell_d_acheminement": "MAGNICOURT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10214"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ce9299653895404a69b70d6c8659d03ffaf48c", "fields": {"nom_de_la_commune": "JESSAINS", "libell_d_acheminement": "JESSAINS", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10178"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f40d7734b001d0fb00af3cd99495547c4a2bf2f", "fields": {"nom_de_la_commune": "LHUITRE", "libell_d_acheminement": "LHUITRE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10195"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae870477c7ef4b3b8c50903e89385c6303295fd", "fields": {"nom_de_la_commune": "MAGNANT", "libell_d_acheminement": "MAGNANT", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10213"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7e12d998f926bca31be0eb314abc0659d8f560", "fields": {"nom_de_la_commune": "ORVILLIERS ST JULIEN", "libell_d_acheminement": "ORVILLIERS ST JULIEN", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10274"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d79590020f1b645b1c4d0f95c835a85c1cddc31", "fields": {"nom_de_la_commune": "MESNIL LA COMTESSE", "libell_d_acheminement": "MESNIL LA COMTESSE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10235"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2482b9930725ea361863e22566a8b558cdb76f95", "fields": {"nom_de_la_commune": "NOGENT SUR SEINE", "libell_d_acheminement": "NOGENT SUR SEINE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10268"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20cc53deee0d30dee35d39203d4259318674ee4", "fields": {"nom_de_la_commune": "MUSSY SUR SEINE", "libell_d_acheminement": "MUSSY SUR SEINE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10261"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "009d010141766e01909208fa73c5b68153e2873d", "fields": {"nom_de_la_commune": "PLANCY L ABBAYE", "libell_d_acheminement": "PLANCY L ABBAYE", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10289"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977dd0ede330612c924273fb5a3a76f1f9c150d9", "fields": {"nom_de_la_commune": "PERIGNY LA ROSE", "libell_d_acheminement": "PERIGNY LA ROSE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10284"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4219e2a533316f1682a596f9539f3b71bf9576", "fields": {"nom_de_la_commune": "MARAYE EN OTHE", "libell_d_acheminement": "MARAYE EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10222"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c3c9f325b9ce7f8e596d9bb4e92501fc488067", "fields": {"nom_de_la_commune": "LA MOTTE TILLY", "libell_d_acheminement": "LA MOTTE TILLY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10259"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8efb3592fe07789c2b7b29edc87d031803ae0a", "fields": {"nom_de_la_commune": "MONTAULIN", "libell_d_acheminement": "MONTAULIN", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10245"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39aa13606334d0ea0ffd8fc74d72815c25c473ae", "fields": {"nom_de_la_commune": "LE MERIOT", "libell_d_acheminement": "LE MERIOT", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10231"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceed28bb309dde7363aaaa6a8906d81128a26c8b", "fields": {"nom_de_la_commune": "MAUVEZIN DE STE CROIX", "libell_d_acheminement": "MAUVEZIN DE STE CROIX", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09184"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9792cf74c21ffe90c24a02128f10762ada1d354f", "fields": {"nom_de_la_commune": "MERENS LES VALS", "libell_d_acheminement": "MERENS LES VALS", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09189"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4890b5eef423ca8c63c9f284bbfbc2cf8d529b", "fields": {"nom_de_la_commune": "LAVELANET", "libell_d_acheminement": "LAVELANET", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09160"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f10d01363cafc4c5f510845bd9f29078660578", "fields": {"nom_de_la_commune": "LESPARROU", "libell_d_acheminement": "LESPARROU", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09165"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d86f7547aee9db2195670d903028b0fb53a29e2", "fields": {"nom_de_la_commune": "JUSTINIAC", "libell_d_acheminement": "JUSTINIAC", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09146"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf021240394f1b2060e4da4bde44f73a9b4b72e", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09150"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb71a5426d949931796ad9348fc06d0972d29d5d", "fields": {"nom_de_la_commune": "LOUBAUT", "libell_d_acheminement": "LOUBAUT", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09172"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb4854d57916a0372fc403ddb6c31ef6e7181a8", "fields": {"nom_de_la_commune": "LARBONT", "libell_d_acheminement": "LARBONT", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09154"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3098a01ebde62aca0bd11dad5621fb06a538657", "fields": {"nom_de_la_commune": "L HERM", "libell_d_acheminement": "L HERM", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09138"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab12504752524fa4d4dac46e97ca1b4f1eba56d", "fields": {"nom_de_la_commune": "LARNAT", "libell_d_acheminement": "LARNAT", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09156"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363da5cc9de72d9eb08b54f6c1d1574f4721073d", "fields": {"nom_de_la_commune": "ROQUEFORT LES CASCADES", "libell_d_acheminement": "ROQUEFORT LES CASCADES", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09250"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0e3b1629e24936568afcb976db65db1f1e3ea3", "fields": {"nom_de_la_commune": "PERLES ET CASTELET", "libell_d_acheminement": "PERLES ET CASTELET", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09228"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50da8cd2163916dea9ee08f24c05162a80dc1dac", "fields": {"nom_de_la_commune": "MONTAGAGNE", "libell_d_acheminement": "MONTAGAGNE", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09196"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58871602b0f545ab2cd30d677206ad4ea19c1847", "fields": {"nom_de_la_commune": "PRADIERES", "libell_d_acheminement": "PRADIERES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09234"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd231930bab92c4b01a1a9468faa7c508186ed9c", "fields": {"nom_de_la_commune": "PEREILLE", "libell_d_acheminement": "PEREILLE", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09227"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0d3849c2e98117fe24443c085059ad6e09411b2", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09199"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3f28d4202c5dd5392998a78f8882e64fe3f1ee", "fields": {"nom_de_la_commune": "MONTBEL", "libell_d_acheminement": "MONTBEL", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09200"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a247c322c7bf8cb9f219e610344b0fef5271b085", "fields": {"nom_de_la_commune": "NALZEN", "libell_d_acheminement": "NALZEN", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09215"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29ebdab1664c1223fa1dec3797628f29cacbbcb", "fields": {"nom_de_la_commune": "MONTFA", "libell_d_acheminement": "MONTFA", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09205"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f15975090cad7b343a75e70c21fc29009ef8da", "fields": {"nom_de_la_commune": "ORLU", "libell_d_acheminement": "ORLU", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09220"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c903cd8f70e5cce679f75a3e944e39b62be9ffcb", "fields": {"nom_de_la_commune": "ROMILLY SUR SEINE", "libell_d_acheminement": "ROMILLY SUR SEINE", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10323"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a19715a490c245e9b7b89c6d7cd8c616c58186d", "fields": {"nom_de_la_commune": "RIGNY LE FERRON", "libell_d_acheminement": "RIGNY LE FERRON", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10319"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e483e4e39bb854901092c1ff0c3dcc40e2ff24a", "fields": {"nom_de_la_commune": "RAMERUPT", "libell_d_acheminement": "RAMERUPT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10314"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fc6ab508d75f4c648854814be1142f3b37a64b", "fields": {"nom_de_la_commune": "PRUSY", "libell_d_acheminement": "PRUSY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10309"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9f21b897572b592f064afd6da8bca72dec0dbe", "fields": {"nom_de_la_commune": "ST ETIENNE SOUS BARBUISE", "libell_d_acheminement": "ST ETIENNE SOUS BARBUISE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10338"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ceae6a7b464a187ba9176abcb005c832a12c2c2", "fields": {"nom_de_la_commune": "ST JULIEN LES VILLAS", "libell_d_acheminement": "ST JULIEN LES VILLAS", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10343"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca0cb735f31f405c8597cda7d4ccde730280f1d", "fields": {"nom_de_la_commune": "ST JEAN DE BONNEVAL", "libell_d_acheminement": "ST JEAN DE BONNEVAL", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10342"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcd015767c72b8e96160714d7f0dd096eb656b9f", "fields": {"nom_de_la_commune": "ROUVRES LES VIGNES", "libell_d_acheminement": "ROUVRES LES VIGNES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10330"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23970298e9056813f2913886fa08cae641ee8718", "fields": {"nom_de_la_commune": "RUMILLY LES VAUDES", "libell_d_acheminement": "RUMILLY LES VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10331"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74cb1e0428d768b531d27a0084b6fbe607b08ad", "fields": {"nom_de_la_commune": "LA ROTHIERE", "libell_d_acheminement": "LA ROTHIERE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10327"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300394c5a430a366b91b60c15f1308359527d37d", "fields": {"nom_de_la_commune": "ST POUANGE", "libell_d_acheminement": "ST POUANGE", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10360"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63ce54f034d15b6ba9c979ac5a80bd31b79f858", "fields": {"nom_de_la_commune": "ST LUPIEN", "libell_d_acheminement": "ST LUPIEN", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10348"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "580eee43ef398122d3bc556f6b3e06b1319c8fd0", "fields": {"nom_de_la_commune": "ST PHAL", "libell_d_acheminement": "ST PHAL", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10359"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bdf9a08c7555c9748531a88833b07dd3ed755d0", "fields": {"code_postal": "10310", "code_commune_insee": "10426", "libell_d_acheminement": "VILLE SOUS LA FERTE", "ligne_5": "CLAIRVAUX SUR AUBE", "nom_de_la_commune": "VILLE SOUS LA FERTE", "coordonnees_gps": [48.1567685845, 4.79470021531]}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e840a3f9ca7084c2be45fcb1b07408f39aede2b", "fields": {"nom_de_la_commune": "VITRY LE CROISE", "libell_d_acheminement": "VITRY LE CROISE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10438"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3541c6bb8accef0e2d507d78a7e8e7323987d7", "fields": {"nom_de_la_commune": "VILLY LE BOIS", "libell_d_acheminement": "VILLY LE BOIS", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10434"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f1b38b881833f37d0546e28437347767fd035f", "fields": {"nom_de_la_commune": "ALAIGNE", "libell_d_acheminement": "ALAIGNE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11004"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e56f950d63903cd72bd49715e9ddcc666d3db0d", "fields": {"nom_de_la_commune": "VILLERY", "libell_d_acheminement": "VILLERY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10425"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ab74c3f5af77326624f309c6300c976a648f77", "fields": {"nom_de_la_commune": "ALZONNE", "libell_d_acheminement": "ALZONNE", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11009"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b945ffe3b4773a0562454389f77c077762da6e", "fields": {"nom_de_la_commune": "ASSAC", "libell_d_acheminement": "ASSAC", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81019"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda5df7c37f8c50bcfd20ae30dbe81e05ab0df6d", "fields": {"nom_de_la_commune": "AUSSAC", "libell_d_acheminement": "AUSSAC", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81020"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75646598aa63808d9f223ed71efeaec1a9b2008", "fields": {"nom_de_la_commune": "BEAUVAIS SUR TESCOU", "libell_d_acheminement": "BEAUVAIS SUR TESCOU", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81024"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33ac8e7db4cb7a5d1070bca05a168807621655a", "fields": {"nom_de_la_commune": "BERTRE", "libell_d_acheminement": "BERTRE", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81030"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec8da7d9035e6068964896458613dbe29ba5e2d", "fields": {"nom_de_la_commune": "BRENS", "libell_d_acheminement": "BRENS", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81038"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db0241202e16ee83483718a5d999e5be357f36b", "fields": {"nom_de_la_commune": "BROZE", "libell_d_acheminement": "BROZE", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81041"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e30dc6a80066d5091526a065f83262d51283c3", "fields": {"nom_de_la_commune": "CADALEN", "libell_d_acheminement": "CADALEN", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81046"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827a2f9b62c60f8cffdd8c22f377380b1e9a924e", "fields": {"nom_de_la_commune": "CAHUZAC", "libell_d_acheminement": "CAHUZAC", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81049"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48e987ab6bb9c54a12d695b78a827e8e26606af", "fields": {"nom_de_la_commune": "CARMAUX", "libell_d_acheminement": "CARMAUX", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81060"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3292f14ef7bbb6ac266ccfe925939f8ae3894ad5", "fields": {"nom_de_la_commune": "CASTANET", "libell_d_acheminement": "CASTANET", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81061"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368c56eb5cf3ecade75f49603cfa15b9cb280bbe", "fields": {"code_postal": "81260", "code_commune_insee": "81062", "libell_d_acheminement": "FONTRIEU", "ligne_5": "LE MARGNES", "nom_de_la_commune": "FONTRIEU", "coordonnees_gps": [43.6113142668, 2.53318559265]}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5939f37b095bbfae5f40ca09c0e3a82a7dad05d5", "fields": {"nom_de_la_commune": "COUFOULEUX", "libell_d_acheminement": "COUFOULEUX", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81070"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a13af855ac68c75cc7b6945d6c7f0b6753eeea7", "fields": {"nom_de_la_commune": "COURRIS", "libell_d_acheminement": "COURRIS", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81071"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d0f4a8203d01d84410d256f7b8feb7bfe3ee9a", "fields": {"nom_de_la_commune": "CRESPIN", "libell_d_acheminement": "CRESPIN", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81072"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847e6839326b27fd5858050113cf18c2517ae352", "fields": {"nom_de_la_commune": "ESCROUX", "libell_d_acheminement": "ESCROUX", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81085"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d77928882eb60f321ed7cb86f0a6fded93094c", "fields": {"nom_de_la_commune": "FAUSSERGUES", "libell_d_acheminement": "FAUSSERGUES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81089"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e750907f730241725b336dac43ceb90fe85558cd", "fields": {"nom_de_la_commune": "LE FRAYSSE", "libell_d_acheminement": "LE FRAYSSE", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81096"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814a06d9d88c25719c84ae84be933160aa35bbea", "fields": {"nom_de_la_commune": "GARRIGUES", "libell_d_acheminement": "GARRIGUES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81102"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c21a265185d43b775d2a3dc81af97983bdabe8", "fields": {"nom_de_la_commune": "LABESSIERE CANDEIL", "libell_d_acheminement": "LABESSIERE CANDEIL", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81117"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bbf3a434a02c85e074a74b48a0e0031cc40a744", "fields": {"nom_de_la_commune": "LABOULBENE", "libell_d_acheminement": "LABOULBENE", "code_postal": "81100", "coordonnees_gps": [43.6219968606, 2.25901530016], "code_commune_insee": "81118"}, "geometry": {"type": "Point", "coordinates": [2.25901530016, 43.6219968606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ede9a6c72a22122caadc9cf0f68a722588e31f", "fields": {"nom_de_la_commune": "LACAZE", "libell_d_acheminement": "LACAZE", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81125"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9c9323feabe4cab862d23d107e3c907e114029", "fields": {"nom_de_la_commune": "LACROUZETTE", "libell_d_acheminement": "LACROUZETTE", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81128"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622b105c3267da8b769072f8ae3c11f003dbbed2", "fields": {"nom_de_la_commune": "VINZELLES", "libell_d_acheminement": "VINZELLES", "code_postal": "71680", "coordonnees_gps": [46.2494951765, 4.78409941334], "code_commune_insee": "71583"}, "geometry": {"type": "Point", "coordinates": [4.78409941334, 46.2494951765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1d745a21c8833d6961ef6a1d63c886348d2368", "fields": {"nom_de_la_commune": "AIGNE", "libell_d_acheminement": "AIGNE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72001"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845f2619d169cd53b0a1701a8fc4fb8bc0fa3e72", "fields": {"nom_de_la_commune": "ANCINNES", "libell_d_acheminement": "ANCINNES", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72005"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174eb4b4fe173f7e019923b005b1f92272b9077a", "fields": {"nom_de_la_commune": "ASSE LE RIBOUL", "libell_d_acheminement": "ASSE LE RIBOUL", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72012"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11def582dfd2e004cc5c862931537c7fb3185c8a", "fields": {"nom_de_la_commune": "AVESNES EN SAOSNOIS", "libell_d_acheminement": "AVESNES EN SAOSNOIS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72018"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854d47122cec8fc942a543c66b8361dc0dd7c8a5", "fields": {"nom_de_la_commune": "AVESSE", "libell_d_acheminement": "AVESSE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72019"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b659b5ae5df43c457a06880869edc0295fffeb2e", "fields": {"nom_de_la_commune": "LE BAILLEUL", "libell_d_acheminement": "LE BAILLEUL", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72022"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8206643efc387b93f726ea8e517fd6849ba3682c", "fields": {"nom_de_la_commune": "BEAUFAY", "libell_d_acheminement": "BEAUFAY", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72026"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92d2c941f7a9a58343e00e44767554fcd65f1a1", "fields": {"nom_de_la_commune": "BEAUMONT SUR DEME", "libell_d_acheminement": "BEAUMONT SUR DEME", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72027"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0533e87c1d3f601437b23635d145531544e889c4", "fields": {"nom_de_la_commune": "BEAUMONT PIED DE BOEUF", "libell_d_acheminement": "BEAUMONT PIED DE BOEUF", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72028"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "388ca72034d1e5a4fcf2a01cb68c6a45f6688b58", "fields": {"nom_de_la_commune": "LE BREIL SUR MERIZE", "libell_d_acheminement": "LE BREIL SUR MERIZE", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72046"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4296110512e2e3999f74e9487cf44ac348dd0b4", "fields": {"nom_de_la_commune": "CHALLES", "libell_d_acheminement": "CHALLES", "code_postal": "72250", "coordonnees_gps": [47.9293145286, 0.379783357055], "code_commune_insee": "72053"}, "geometry": {"type": "Point", "coordinates": [0.379783357055, 47.9293145286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b53444924845caf1e98ad17f1e3850c2c1c390", "fields": {"nom_de_la_commune": "CHAMPFLEUR", "libell_d_acheminement": "CHAMPFLEUR", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72056"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142d3b83b13f070375785b113734a45f9cee1dcd", "fields": {"nom_de_la_commune": "LA CHAPELLE D ALIGNE", "libell_d_acheminement": "LA CHAPELLE D ALIGNE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72061"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aad0edec07c3f94805b521a2dd111dc1e595970", "fields": {"nom_de_la_commune": "CHATEAU DU LOIR", "libell_d_acheminement": "CHATEAU DU LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72071"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b7008c142d483733d99450a24a208da0bfb568", "fields": {"nom_de_la_commune": "CHATEAU L HERMITAGE", "libell_d_acheminement": "CHATEAU L HERMITAGE", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72072"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88cff266d56c0d80d41ea7d7e3ad69b75f6f0828", "fields": {"nom_de_la_commune": "CHENU", "libell_d_acheminement": "CHENU", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72077"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d94a740b30415047c5d759c4816bf3e4fcb1b0", "fields": {"nom_de_la_commune": "LE CHEVAIN", "libell_d_acheminement": "LE CHEVAIN", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72082"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743f276d6ce9b228d34bfa433f13393df0e7e76f", "fields": {"nom_de_la_commune": "CHEVILLE", "libell_d_acheminement": "CHEVILLE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72083"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8db46fb04c0cc2820a8285052d20e0e2c327e6", "fields": {"nom_de_la_commune": "COMMERVEIL", "libell_d_acheminement": "COMMERVEIL", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72086"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2e18776430238e9db3241ca676114e15c6f801", "fields": {"nom_de_la_commune": "CONFLANS SUR ANILLE", "libell_d_acheminement": "CONFLANS SUR ANILLE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72087"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ade898f3bc82b503bc5f6c21b5bd64a6ccbf69", "fields": {"nom_de_la_commune": "COURCELLES LA FORET", "libell_d_acheminement": "COURCELLES LA FORET", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72100"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2faff7fd0648b73affe3134d1299a359fb51c9", "fields": {"code_postal": "72150", "code_commune_insee": "72103", "libell_d_acheminement": "COURDEMANCHE", "ligne_5": "BRIVES", "nom_de_la_commune": "COURDEMANCHE", "coordonnees_gps": [47.8403616783, 0.502697264254]}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214baf331f566a5b9178e5522fe2b2aafdbbdf1b", "fields": {"nom_de_la_commune": "CRANNES EN CHAMPAGNE", "libell_d_acheminement": "CRANNES EN CHAMPAGNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72107"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3814b62839e2ceb7afe3b0f6c29dc9587de6b7", "fields": {"nom_de_la_commune": "CURES", "libell_d_acheminement": "CURES", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72111"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6e1ee28355d768761e820fa033a0e9d5b2e2a6d", "fields": {"nom_de_la_commune": "DISSAY SOUS COURCILLON", "libell_d_acheminement": "DISSAY SOUS COURCILLON", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72115"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42d224421ed4b21d8f5fd137c2774275f7a19c7", "fields": {"nom_de_la_commune": "DISSE SOUS BALLON", "libell_d_acheminement": "DISSE SOUS BALLON", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72116"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7a76a551ef164a83a2ba579ebe2a5999520c58", "fields": {"nom_de_la_commune": "DOUCELLES", "libell_d_acheminement": "DOUCELLES", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72120"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a2debe35ef039bd0ba9e440e8c445375c86b4b", "fields": {"nom_de_la_commune": "LA FERTE BERNARD", "libell_d_acheminement": "LA FERTE BERNARD", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72132"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf05cd80a79266d20c12fc3254c923584cd7dfb6", "fields": {"code_postal": "72600", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "CHASSE", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3843358188, 0.287692343822]}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f444d4a8699d6d4f3a29286396ccc3286ef0f28", "fields": {"code_postal": "72600", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "ROULLEE", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3843358188, 0.287692343822]}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c77eed41bfbb062f7b65a85d177d4799ecda05", "fields": {"nom_de_la_commune": "LAIGNE EN BELIN", "libell_d_acheminement": "LAIGNE EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72155"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5e4e000e4782ce6ecbd20310a86027e8d54614", "fields": {"nom_de_la_commune": "LAVARDIN", "libell_d_acheminement": "LAVARDIN", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72157"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405dab2f85ae8edb5a93c87aeb4ee2171c92136f", "fields": {"nom_de_la_commune": "LIVET EN SAOSNOIS", "libell_d_acheminement": "LIVET EN SAOSNOIS", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72164"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4393ace4c9868ae6767c10bac9add95c941ae9", "fields": {"nom_de_la_commune": "LUCEAU", "libell_d_acheminement": "LUCEAU", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72173"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a7d970ec2c722874775dabe26758e9e5e39182", "fields": {"nom_de_la_commune": "MARIGNE LAILLE", "libell_d_acheminement": "MARIGNE LAILLE", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72187"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0096ce3efee9656de11dc8ea6ce6ede7d2bb6bcf", "fields": {"nom_de_la_commune": "MELLERAY", "libell_d_acheminement": "MELLERAY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72193"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51592d73cc24cae7e585dfaa8a14e9e9b82a2678", "fields": {"nom_de_la_commune": "MEURCE", "libell_d_acheminement": "MEURCE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72194"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3930c092bc2fad26c03d44c8a0cecac5f283f321", "fields": {"nom_de_la_commune": "MONTBIZOT", "libell_d_acheminement": "MONTBIZOT", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72205"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3da735bbe8758a5b2a09f9e30d92b0f680c2409", "fields": {"nom_de_la_commune": "MONTMIRAIL", "libell_d_acheminement": "MONTMIRAIL", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72208"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797ad5cdf111753d5474100c648e3b6f804e94d2", "fields": {"nom_de_la_commune": "MOULINS LE CARBONNEL", "libell_d_acheminement": "MOULINS LE CARBONNEL", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72212"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba6afe040505e8922bc224f606208b00615309c", "fields": {"nom_de_la_commune": "NEUVILLALAIS", "libell_d_acheminement": "NEUVILLALAIS", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72216"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ff53b036aae379c077328b7536a397e888d110", "fields": {"nom_de_la_commune": "NEUVILLETTE EN CHARNIE", "libell_d_acheminement": "NEUVILLETTE EN CHARNIE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72218"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1886d5a7254d7851293378ba007843728257fb3e", "fields": {"nom_de_la_commune": "NOYEN SUR SARTHE", "libell_d_acheminement": "NOYEN SUR SARTHE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72223"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390bfaf2dca9ef7cfc5ceafe4b55f13e8861acb2", "fields": {"nom_de_la_commune": "PARIGNE L EVEQUE", "libell_d_acheminement": "PARIGNE L EVEQUE", "code_postal": "72250", "coordonnees_gps": [47.9293145286, 0.379783357055], "code_commune_insee": "72231"}, "geometry": {"type": "Point", "coordinates": [0.379783357055, 47.9293145286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1b2d8180ef35871a547d024bab7da5d007d78d", "fields": {"nom_de_la_commune": "PIACE", "libell_d_acheminement": "PIACE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72235"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55700dc9d8b0469eae4dd4f51c0980bacd3d08d0", "fields": {"nom_de_la_commune": "PINCE", "libell_d_acheminement": "PINCE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72236"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09dba731949b6fa579c1a98af7f3846c0abffc41", "fields": {"nom_de_la_commune": "PIRMIL", "libell_d_acheminement": "PIRMIL", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72237"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f12f61dc8f49e3bf81bd063d90cca7816fad35", "fields": {"nom_de_la_commune": "PREVAL", "libell_d_acheminement": "PREVAL", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72245"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e9f6f4d4d5c1cfddbb744d532a58f98c8c77d6", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU JAMBET", "libell_d_acheminement": "ST CHRISTOPHE DU JAMBET", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72273"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a6ea0df78dde531e479a5dc4ebd9c334b7aa98c", "fields": {"nom_de_la_commune": "ST CORNEILLE", "libell_d_acheminement": "ST CORNEILLE", "code_postal": "72460", "coordonnees_gps": [48.0865226783, 0.31265862637], "code_commune_insee": "72275"}, "geometry": {"type": "Point", "coordinates": [0.31265862637, 48.0865226783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf07b3fe25b945b11c2e97ace33cad1690438af", "fields": {"nom_de_la_commune": "ST COSME EN VAIRAIS", "libell_d_acheminement": "ST COSME EN VAIRAIS", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72276"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b97ca681ca663810ef5dc816b18249f26cd706", "fields": {"nom_de_la_commune": "STE JAMME SUR SARTHE", "libell_d_acheminement": "STE JAMME SUR SARTHE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72289"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c532197a9eaedffea3fc45737f6dc360b0ef7673", "fields": {"code_postal": "72380", "code_commune_insee": "72289", "libell_d_acheminement": "STE JAMME SUR SARTHE", "ligne_5": "ANTOIGNE", "nom_de_la_commune": "STE JAMME SUR SARTHE", "coordonnees_gps": [48.1389926354, 0.154938405827]}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c48b4d4e62926b7745fb872619a4a815e3878ca", "fields": {"nom_de_la_commune": "ST JEAN D ASSE", "libell_d_acheminement": "ST JEAN D ASSE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72290"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157a370d8afc574a6f6c0548a5048afe183006a7", "fields": {"nom_de_la_commune": "ST MAIXENT", "libell_d_acheminement": "ST MAIXENT", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72296"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea62b512b9f3e6290e38782f2fe664daf7c4113", "fields": {"nom_de_la_commune": "ST MARTIN DES MONTS", "libell_d_acheminement": "ST MARTIN DES MONTS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72302"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e98cedbc63771b84680e34822c97106c1a718493", "fields": {"nom_de_la_commune": "ST OUEN EN BELIN", "libell_d_acheminement": "ST OUEN EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72306"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5634aeaccf4bac32c19c44c87c8bb25d9b13592", "fields": {"nom_de_la_commune": "ST PATERNE", "libell_d_acheminement": "ST PATERNE", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72308"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c89f48b748def4a3c6688332d35ae5057acdf482", "fields": {"nom_de_la_commune": "ST PIERRE DE CHEVILLE", "libell_d_acheminement": "ST PIERRE DE CHEVILLE", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72311"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6546b23429f58d80bf3b978c191a40e0115bdf", "fields": {"nom_de_la_commune": "ST ULPHACE", "libell_d_acheminement": "ST ULPHACE", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72322"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "795ed6fbf9ba7c8c6524fd396525620d39a65d57", "fields": {"nom_de_la_commune": "SAVIGNE SOUS LE LUDE", "libell_d_acheminement": "SAVIGNE SOUS LE LUDE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72330"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9520cdb08e3de47d745bcac41aa52ebc4f643228", "fields": {"nom_de_la_commune": "SILLE LE GUILLAUME", "libell_d_acheminement": "SILLE LE GUILLAUME", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72334"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8470ed836999d87ef2c2d6d18cd3fd3068fae6", "fields": {"nom_de_la_commune": "SOLESMES", "libell_d_acheminement": "SOLESMES", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72336"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289aa38b59fdc448f2817e5ae095c86d9f939754", "fields": {"nom_de_la_commune": "SOULIGNE FLACE", "libell_d_acheminement": "SOULIGNE FLACE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72339"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa28fed1cc937e13f3786060de6d8b883f86de1f", "fields": {"nom_de_la_commune": "SOUVIGNE SUR MEME", "libell_d_acheminement": "SOUVIGNE SUR MEME", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72342"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a50395174f32c653c9776b7d06d9f514a5cece3", "fields": {"nom_de_la_commune": "TEILLE", "libell_d_acheminement": "TEILLE", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72349"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1579fab50bbed6bb0ffa991fefce04bd839753fe", "fields": {"nom_de_la_commune": "THOIGNE", "libell_d_acheminement": "THOIGNE", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72354"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee7ed3116c64a00dbc1978fb4f9ed0bc40ffe75", "fields": {"nom_de_la_commune": "THOIRE SOUS CONTENSOR", "libell_d_acheminement": "THOIRE SOUS CONTENSOR", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72355"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb916495676bc30f1d1393b6a6cac51cc884e0f", "fields": {"nom_de_la_commune": "TRANGE", "libell_d_acheminement": "TRANGE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72360"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c64bf306b3b8a575bc519e5fd23fc242e758a0", "fields": {"nom_de_la_commune": "TRESSON", "libell_d_acheminement": "TRESSON", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72361"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19098acc24fea302537919ff4becad1f2c55d15", "fields": {"nom_de_la_commune": "LE TRONCHET", "libell_d_acheminement": "LE TRONCHET", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72362"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d37abd20e93bb698e4f3fbdc68af187f4d002f", "fields": {"nom_de_la_commune": "VIBRAYE", "libell_d_acheminement": "VIBRAYE", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72373"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daef3c24a657d5da074852bbdeabbaeed9773b8a", "fields": {"nom_de_la_commune": "VILLAINES SOUS LUCE", "libell_d_acheminement": "VILLAINES SOUS LUCE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72376"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafa927e10b89ab975498870377acc68fa427034", "fields": {"nom_de_la_commune": "VION", "libell_d_acheminement": "VION", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72378"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e08873a89a76c7dc4491e44170806727317c7ab", "fields": {"nom_de_la_commune": "VIRE EN CHAMPAGNE", "libell_d_acheminement": "VIRE EN CHAMPAGNE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72379"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311ec291f0591840d1f3b83ced9cef3dcc801224", "fields": {"nom_de_la_commune": "VOLNAY", "libell_d_acheminement": "VOLNAY", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72382"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969753ad3f2f1fb63715064664b8d1d8aefa5c54", "fields": {"nom_de_la_commune": "AIME LA PLAGNE", "libell_d_acheminement": "AIME LA PLAGNE", "code_postal": "73210", "coordonnees_gps": [45.5287564298, 6.7268231289], "code_commune_insee": "73006"}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a16dd3890766624c1aa135d86f01f3a6eb6e9e", "fields": {"nom_de_la_commune": "AITON", "libell_d_acheminement": "AITON", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73007"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91933e446f73c3f5a024fdc97f973a5f1116ce22", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "CESSENS", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6d04a2a104b9e24ab78c99cc82127e9044f39e", "fields": {"nom_de_la_commune": "ALLONDAZ", "libell_d_acheminement": "ALLONDAZ", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73014"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29fb778c8c11cde32fb4550f1b54707cdce145f", "fields": {"nom_de_la_commune": "AUSSOIS", "libell_d_acheminement": "AUSSOIS", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73023"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0daaa76f75ab670daede26483fbbee19802da54a", "fields": {"nom_de_la_commune": "AVRIEUX", "libell_d_acheminement": "AVRIEUX", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73026"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e9ca96f7ba3ddba85d0ee0d4ffb20dd2209015", "fields": {"nom_de_la_commune": "LA BALME", "libell_d_acheminement": "LA BALME", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73028"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01fead04ede19324d30af7a2565c524c5fa81fe0", "fields": {"nom_de_la_commune": "LA BAUCHE", "libell_d_acheminement": "LA BAUCHE", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73033"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d39fa52fc1ec12b82d3d9071004e8f508fb85a", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT SUR DORON", "code_postal": "73270", "coordonnees_gps": [45.6914287305, 6.59333922308], "code_commune_insee": "73034"}, "geometry": {"type": "Point", "coordinates": [6.59333922308, 45.6914287305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c6b0d266ffb0ab9785361c0f84c60dd8bcc95e", "fields": {"nom_de_la_commune": "BELMONT TRAMONET", "libell_d_acheminement": "BELMONT TRAMONET", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73039"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c284e20d2697821b39d3d73d740c2976283e51a3", "fields": {"nom_de_la_commune": "BETTON BETTONET", "libell_d_acheminement": "BETTON BETTONET", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73041"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e7d06b78959ba09c82e7aaae899ec4c96d1287", "fields": {"nom_de_la_commune": "LE BOIS", "libell_d_acheminement": "LE BOIS", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73045"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc8d800e918697111a75ce816e4f394d12c5021", "fields": {"nom_de_la_commune": "BONVILLARET", "libell_d_acheminement": "BONVILLARET", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73049"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2697f6e04732cd673cfdc1a7d8e45d4ce7a86d08", "fields": {"nom_de_la_commune": "BOURGNEUF", "libell_d_acheminement": "BOURGNEUF", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73053"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb120d174c1c44538812f562172e9035f2301166", "fields": {"nom_de_la_commune": "CEVINS", "libell_d_acheminement": "CEVINS", "code_postal": "73730", "coordonnees_gps": [45.5966737513, 6.45704572923], "code_commune_insee": "73063"}, "geometry": {"type": "Point", "coordinates": [6.45704572923, 45.5966737513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb674590dd45504a6ef6ecd02b56811663d7efc9", "fields": {"nom_de_la_commune": "CHALLES LES EAUX", "libell_d_acheminement": "CHALLES LES EAUX", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73064"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b87015a64734e206690f0196df888f43dc13ede", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "73660", "coordonnees_gps": [45.3946853407, 6.25313370974], "code_commune_insee": "73074"}, "geometry": {"type": "Point", "coordinates": [6.25313370974, 45.3946853407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7def5ee2ead26af78ba972d1e0bdfa05c7838e6e", "fields": {"nom_de_la_commune": "LA CHAPELLE DU MONT DU CHAT", "libell_d_acheminement": "LA CHAPELLE DU MONT DU CHAT", "code_postal": "73370", "coordonnees_gps": [45.6697379458, 5.85011777535], "code_commune_insee": "73076"}, "geometry": {"type": "Point", "coordinates": [5.85011777535, 45.6697379458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dfb03c5204cb045ab3eb079387a06365d715cce", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MARTIN", "libell_d_acheminement": "LA CHAPELLE ST MARTIN", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73078"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffec9b0cf10ef26ee3e04479508ead411ef4ab3", "fields": {"nom_de_la_commune": "COHENNOZ", "libell_d_acheminement": "COHENNOZ", "code_postal": "73400", "coordonnees_gps": [45.7638408088, 6.43638316061], "code_commune_insee": "73088"}, "geometry": {"type": "Point", "coordinates": [6.43638316061, 45.7638408088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68d80a393e9453c06d4e403eb663317f539766e", "fields": {"nom_de_la_commune": "LA COMPOTE", "libell_d_acheminement": "LA COMPOTE", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73090"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1201bb01227c1e31243898ef6920f88ad80c880f", "fields": {"nom_de_la_commune": "LA CROIX DE LA ROCHETTE", "libell_d_acheminement": "LA CROIX DE LA ROCHETTE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73095"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650e50f64e6f10709e0e7b2a6d144dc5b8b9e5c7", "fields": {"nom_de_la_commune": "CRUET", "libell_d_acheminement": "CRUET", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73096"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80602c413db564691d5d8998375daecd99d5532e", "fields": {"nom_de_la_commune": "MOULOTTE", "libell_d_acheminement": "MOULOTTE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55363"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027c1af1a1ea4d6c801e1e44d701572703884785", "fields": {"nom_de_la_commune": "MURVAUX", "libell_d_acheminement": "MURVAUX", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55365"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba23fa9dd281c6e3186bc8fc8e98a982452a1929", "fields": {"code_postal": "55000", "code_commune_insee": "55366", "libell_d_acheminement": "VAL D ORNAIN", "ligne_5": "VARNEY", "nom_de_la_commune": "VAL D ORNAIN", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a587ea6efdfd2f41c6c3dc10907ab5bf9f4fafa4", "fields": {"nom_de_la_commune": "MUZERAY", "libell_d_acheminement": "MUZERAY", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55367"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd925f5222006dd6bd20d8a7a139b995e91d092", "fields": {"nom_de_la_commune": "NAIVES ROSIERES", "libell_d_acheminement": "NAIVES ROSIERES", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55369"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70acfe6d2d78f7c540dd4b95c12f7566beac6b1", "fields": {"code_postal": "55000", "code_commune_insee": "55369", "libell_d_acheminement": "NAIVES ROSIERES", "ligne_5": "ROSIERES DEVANT BAR", "nom_de_la_commune": "NAIVES ROSIERES", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20eb1ff81da6a326e57d9b5d6733854247cd8597", "fields": {"nom_de_la_commune": "NANCOIS SUR ORNAIN", "libell_d_acheminement": "NANCOIS SUR ORNAIN", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55372"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62788b4b5a06f600795fd4c09fee28641ef6598", "fields": {"nom_de_la_commune": "NANTOIS", "libell_d_acheminement": "NANTOIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55376"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab50df8460e8ff618d641af305d268c4a09d545a", "fields": {"code_postal": "55120", "code_commune_insee": "55385", "libell_d_acheminement": "NIXEVILLE BLERCOURT", "ligne_5": "BLERCOURT", "nom_de_la_commune": "NIXEVILLE BLERCOURT", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c215f383840f788a11c6f3a79308619defd59cd", "fields": {"nom_de_la_commune": "NUBECOURT", "libell_d_acheminement": "NUBECOURT", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55389"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442faf6a4d822c765572b74c167f156c476b86a0", "fields": {"nom_de_la_commune": "PEUVILLERS", "libell_d_acheminement": "PEUVILLERS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55403"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810db1f7d4e279253ad2a770df2e5563035e2d51", "fields": {"nom_de_la_commune": "POUILLY SUR MEUSE", "libell_d_acheminement": "POUILLY SUR MEUSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55408"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e06ac1596e88959b01268e865276f63b4f363e0", "fields": {"nom_de_la_commune": "PRETZ EN ARGONNE", "libell_d_acheminement": "PRETZ EN ARGONNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55409"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "125cb8a2198cb37785d06f40cb53a8ba312b00f7", "fields": {"nom_de_la_commune": "REMOIVILLE", "libell_d_acheminement": "REMOIVILLE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55425"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2da9393745000435a3d14a0addd71c22395b655", "fields": {"nom_de_la_commune": "REVILLE AUX BOIS", "libell_d_acheminement": "REVILLE AUX BOIS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55428"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b164f2b63f1acd5af3c0e41d181f6c2254da0aeb", "fields": {"nom_de_la_commune": "RIBEAUCOURT", "libell_d_acheminement": "RIBEAUCOURT", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55430"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37193f47a2fb6ec128fe80aa8cb09f998db4dd72", "fields": {"nom_de_la_commune": "LES ROISES", "libell_d_acheminement": "LES ROISES", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55436"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1e17fe6d1a29cf345579d652e4375c3740b0bf", "fields": {"nom_de_la_commune": "RAIVAL", "libell_d_acheminement": "RAIVAL", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55442"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd25ed282913f7a3e8834c853acf0f343d7abd31", "fields": {"code_postal": "55260", "code_commune_insee": "55442", "libell_d_acheminement": "RAIVAL", "ligne_5": "ERIZE LA GRANDE", "nom_de_la_commune": "RAIVAL", "coordonnees_gps": [48.8868755037, 5.34101702735]}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89378d2cd05e6ffc709251c38bffbdbf2ab5f3", "fields": {"nom_de_la_commune": "RUPT DEVANT ST MIHIEL", "libell_d_acheminement": "RUPT DEVANT ST MIHIEL", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55448"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f5974329a6414de6faf44ec1e439951ff3504", "fields": {"nom_de_la_commune": "RUPT EN WOEVRE", "libell_d_acheminement": "RUPT EN WOEVRE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55449"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683c9ca8bd85eceae32578dd0c07f6fafb667331", "fields": {"nom_de_la_commune": "ST ANDRE EN BARROIS", "libell_d_acheminement": "ST ANDRE EN BARROIS", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55453"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a9405546f1eb20d4b7665ddb86e5355930f9cb", "fields": {"nom_de_la_commune": "ST HILAIRE EN WOEVRE", "libell_d_acheminement": "ST HILAIRE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55457"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad997b66660b8c0260f89773ce564a19383c562", "fields": {"nom_de_la_commune": "ST JULIEN SOUS LES COTES", "libell_d_acheminement": "ST JULIEN SOUS LES COTES", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55460"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e954e1c63f9e48f735249294f517b3551014a4", "fields": {"nom_de_la_commune": "SAUDRUPT", "libell_d_acheminement": "SAUDRUPT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55470"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307b0308cc1b54c4218d257362e4c734c1194a32", "fields": {"code_postal": "55160", "code_commune_insee": "55473", "libell_d_acheminement": "SAULX LES CHAMPLON", "ligne_5": "CHAMPLON", "nom_de_la_commune": "SAULX LES CHAMPLON", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9db4cd707d6fc0dd8061786b5e66856e3d0b59d", "fields": {"nom_de_la_commune": "SAUVIGNY", "libell_d_acheminement": "SAUVIGNY", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55474"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f59d6d1a8a278315eb86232840aa39e0b20d0bf", "fields": {"nom_de_la_commune": "SEPTSARGES", "libell_d_acheminement": "SEPTSARGES", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55484"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633b0795e0115e3e1485054b34fbe7ccb39f0c03", "fields": {"code_postal": "55220", "code_commune_insee": "55497", "libell_d_acheminement": "LES SOUHESMES RAMPONT", "ligne_5": "RAMPONT", "nom_de_la_commune": "LES SOUHESMES RAMPONT", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed0877f53e73b34f8b23fa1171b55dccc10b2e2", "fields": {"nom_de_la_commune": "TANNOIS", "libell_d_acheminement": "TANNOIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55504"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac52c69e3048d63002ca61f5854034ac8d19fec3", "fields": {"nom_de_la_commune": "THILLOT", "libell_d_acheminement": "THILLOT", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55507"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d095174f30f4a86a7484fb824c2d1c7657843255", "fields": {"code_postal": "55250", "code_commune_insee": "55517", "libell_d_acheminement": "SEUIL D ARGONNE", "ligne_5": "SENARD", "nom_de_la_commune": "SEUIL D ARGONNE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ec244292c366fda0c0f79973b4c4ae674dd2dd", "fields": {"code_postal": "55500", "code_commune_insee": "55518", "libell_d_acheminement": "COUSANCES LES TRICONVILLE", "ligne_5": "COUSANCES AU BOIS", "nom_de_la_commune": "COUSANCES LES TRICONVILLE", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f80b113726045ad23c03cdac5c51334669618f", "fields": {"nom_de_la_commune": "VAUX DEVANT DAMLOUP", "libell_d_acheminement": "VAUX DEVANT DAMLOUP", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55537"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf07d990ecb4dfb342621dacba18c46ded95302", "fields": {"nom_de_la_commune": "VAUX LES PALAMEIX", "libell_d_acheminement": "VAUX LES PALAMEIX", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55540"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de207fdac5e1b408d496773f8f60bdda103c53a", "fields": {"nom_de_la_commune": "VERDUN", "libell_d_acheminement": "VERDUN", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55545"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16d836d2d8210ccf56efb700d0a75d3ec49d7b62", "fields": {"nom_de_la_commune": "VERNEUIL GRAND", "libell_d_acheminement": "VERNEUIL GRAND", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55546"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e022303faca6215de1cd04e3dff6c0a58b533b86", "fields": {"nom_de_la_commune": "VERNEUIL PETIT", "libell_d_acheminement": "VERNEUIL PETIT", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55547"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c74dbcb733ecf3636112cada73f18b644af674a", "fields": {"nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55551"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a508d8893c78400d0efcb7fc83e084d988976be1", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "HATTONCHATEL", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f409ec73401018f776075add1be7fbd656873bef", "fields": {"nom_de_la_commune": "VILLE DEVANT CHAUMONT", "libell_d_acheminement": "VILLE DEVANT CHAUMONT", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55556"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb2864986dd751068cf099d625a8dbca9d498d4", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55562"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1154c5020954084ec3b8d4a9af8ce7f675a4da35", "fields": {"code_postal": "55110", "code_commune_insee": "55571", "libell_d_acheminement": "VILOSNES HARAUMONT", "ligne_5": "HARAUMONT", "nom_de_la_commune": "VILOSNES HARAUMONT", "coordonnees_gps": [49.3482069392, 5.1984552124]}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60158211ed5a3f6c189c9413721904902db186fa", "fields": {"nom_de_la_commune": "VITTARVILLE", "libell_d_acheminement": "VITTARVILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55572"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58eed570b7ad1d74e8ce8e4f0e06cfc09fd21cec", "fields": {"nom_de_la_commune": "VOUTHON BAS", "libell_d_acheminement": "VOUTHON BAS", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55574"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ca070322e5d9678f63454281ecfdda862c472b", "fields": {"nom_de_la_commune": "WALY", "libell_d_acheminement": "WALY", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55577"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdedecf25d9a9bfbc8f0f37e315076202f2057a", "fields": {"nom_de_la_commune": "WAVRILLE", "libell_d_acheminement": "WAVRILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55580"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f6ffafa257b4563dc42e6f8a71f8eb0f655a9e", "fields": {"nom_de_la_commune": "WILLERONCOURT", "libell_d_acheminement": "WILLERONCOURT", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55581"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bca7b159b3296c556d47bd44fd3e2cc2ad15bee", "fields": {"nom_de_la_commune": "ARZON", "libell_d_acheminement": "ARZON", "code_postal": "56640", "coordonnees_gps": [47.5474079943, -2.88721612106], "code_commune_insee": "56005"}, "geometry": {"type": "Point", "coordinates": [-2.88721612106, 47.5474079943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394eea769905d6f8f26d3d1829aabd12d5a68e57", "fields": {"nom_de_la_commune": "BEIGNON", "libell_d_acheminement": "BEIGNON", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56012"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d407932d32997e196e2f2081d66f2049850e39", "fields": {"nom_de_la_commune": "BERNE", "libell_d_acheminement": "BERNE", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56014"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7113a42251981eeede8942cbcd121877ce498038", "fields": {"nom_de_la_commune": "BILLIERS", "libell_d_acheminement": "BILLIERS", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56018"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d13c6cfe97f3adddd64a4bbb882d3b0b03d523c", "fields": {"nom_de_la_commune": "BOHAL", "libell_d_acheminement": "BOHAL", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56020"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c96698d596a61e20718b2e29891eede6abeace", "fields": {"nom_de_la_commune": "BRECH", "libell_d_acheminement": "BRECH", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56023"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a38d01fbbfab3836d11fd60d2c0f58d7dc1052fd", "fields": {"nom_de_la_commune": "CAMORS", "libell_d_acheminement": "CAMORS", "code_postal": "56330", "coordonnees_gps": [47.797362476, -3.01124558366], "code_commune_insee": "56031"}, "geometry": {"type": "Point", "coordinates": [-3.01124558366, 47.797362476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f343a7dc82bf5558ea002e80d0342298b6e9fa3", "fields": {"nom_de_la_commune": "CARNAC", "libell_d_acheminement": "CARNAC", "code_postal": "56340", "coordonnees_gps": [47.6055540862, -3.08901198541], "code_commune_insee": "56034"}, "geometry": {"type": "Point", "coordinates": [-3.08901198541, 47.6055540862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d64de4e74df0222678bcd11f7f2f52aee0a6ed", "fields": {"nom_de_la_commune": "CLEGUER", "libell_d_acheminement": "CLEGUER", "code_postal": "56620", "coordonnees_gps": [47.8545097905, -3.38768121277], "code_commune_insee": "56040"}, "geometry": {"type": "Point", "coordinates": [-3.38768121277, 47.8545097905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d793ea96942161d21901b1a74e27cb334d3ee82", "fields": {"nom_de_la_commune": "COURNON", "libell_d_acheminement": "COURNON", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56044"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50334dbe7336edce4b0b5fd34e153d821cc7b6c7", "fields": {"nom_de_la_commune": "EVRIGUET", "libell_d_acheminement": "EVRIGUET", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56056"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f4ee7406fed7da15b4b8e52cdc0832888fd832", "fields": {"nom_de_la_commune": "LA GACILLY", "libell_d_acheminement": "LA GACILLY", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56061"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712003a603edbb96e380cf6cc131dd048743d49b", "fields": {"nom_de_la_commune": "GUER", "libell_d_acheminement": "GUER", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56075"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1feff77e722e6a0a8f0011ae02e846a169d54a24", "fields": {"nom_de_la_commune": "HENNEBONT", "libell_d_acheminement": "HENNEBONT", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56083"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81bcac0b64393838312a49ba56287c07749833f4", "fields": {"nom_de_la_commune": "HOEDIC", "libell_d_acheminement": "ILE DE HOEDIC", "code_postal": "56170", "coordonnees_gps": [47.4440195899, -3.0513582744], "code_commune_insee": "56085"}, "geometry": {"type": "Point", "coordinates": [-3.0513582744, 47.4440195899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2d1d6d489d239d7ca4e923b4ef561c249b9436", "fields": {"nom_de_la_commune": "INZINZAC LOCHRIST", "libell_d_acheminement": "INZINZAC LOCHRIST", "code_postal": "56650", "coordonnees_gps": [47.8561611073, -3.25190412648], "code_commune_insee": "56090"}, "geometry": {"type": "Point", "coordinates": [-3.25190412648, 47.8561611073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2997870cdf3bab366d957a895559b329b74398", "fields": {"nom_de_la_commune": "KERGRIST", "libell_d_acheminement": "KERGRIST", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56093"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f4ea2d5f8d7bcf037b34b89a68c58a80c4f242", "fields": {"nom_de_la_commune": "KERVIGNAC", "libell_d_acheminement": "KERVIGNAC", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56094"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d001e5c0cf0a47fcc004e12826393549a8bf0c5", "fields": {"nom_de_la_commune": "LANTILLAC", "libell_d_acheminement": "LANTILLAC", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56103"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f7ee934076139469c8ec2a9517a848f1240fe3", "fields": {"nom_de_la_commune": "LOCMALO", "libell_d_acheminement": "LOCMALO", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56113"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf92f00a5efe743ddafafe7e95e06dbe02e46458", "fields": {"nom_de_la_commune": "LOCMARIA", "libell_d_acheminement": "LOCMARIA", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56114"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d5a6bf50bb4fbab217d16deab0b07d49f7f602e", "fields": {"nom_de_la_commune": "LOCMIQUELIC", "libell_d_acheminement": "LOCMIQUELIC", "code_postal": "56570", "coordonnees_gps": [47.7307208269, -3.32776753997], "code_commune_insee": "56118"}, "geometry": {"type": "Point", "coordinates": [-3.32776753997, 47.7307208269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce41e17f5a3332f7f416605bf420cfb36ce3f3d7", "fields": {"nom_de_la_commune": "LOYAT", "libell_d_acheminement": "LOYAT", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56122"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fdca4f2dd411492665b8365bae412d359e32a5", "fields": {"nom_de_la_commune": "MALESTROIT", "libell_d_acheminement": "MALESTROIT", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56124"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f167c182e6ec2672fe6aa9c71af9476f9d5c836", "fields": {"nom_de_la_commune": "MESLAN", "libell_d_acheminement": "MESLAN", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56131"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28645efa0c25514f755deb5093ec617112e0cb67", "fields": {"code_postal": "56500", "code_commune_insee": "56144", "libell_d_acheminement": "EVELLYS", "ligne_5": "NAIZIN", "nom_de_la_commune": "EVELLYS", "coordonnees_gps": [47.9163628401, -2.81404432498]}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048bf8094f54a6656d7514902e5e1cc05bdc09fd", "fields": {"code_postal": "56500", "code_commune_insee": "56144", "libell_d_acheminement": "EVELLYS", "ligne_5": "REMUNGOL", "nom_de_la_commune": "EVELLYS", "coordonnees_gps": [47.9163628401, -2.81404432498]}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f13a0e4eae40dbc17ce220d6010d06b6a6e1481", "fields": {"nom_de_la_commune": "NEANT SUR YVEL", "libell_d_acheminement": "NEANT SUR YVEL", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56145"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f828a453ce5226a086e355678e16e39b82027758", "fields": {"nom_de_la_commune": "NOSTANG", "libell_d_acheminement": "NOSTANG", "code_postal": "56690", "coordonnees_gps": [47.758091509, -3.12551793319], "code_commune_insee": "56148"}, "geometry": {"type": "Point", "coordinates": [-3.12551793319, 47.758091509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd8c42c1ab5cc7cf91ca7d4d6e783b9479f3159", "fields": {"nom_de_la_commune": "PLOEMEUR", "libell_d_acheminement": "PLOEMEUR", "code_postal": "56270", "coordonnees_gps": [47.7326628076, -3.44215881435], "code_commune_insee": "56162"}, "geometry": {"type": "Point", "coordinates": [-3.44215881435, 47.7326628076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db40165d1e4d178dc31716e7540ca6c733642352", "fields": {"nom_de_la_commune": "PLOEREN", "libell_d_acheminement": "PLOEREN", "code_postal": "56880", "coordonnees_gps": [47.6616088483, -2.84343942871], "code_commune_insee": "56164"}, "geometry": {"type": "Point", "coordinates": [-2.84343942871, 47.6616088483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6292145db0d64bf629ca34d9de023deb0f7cba17", "fields": {"nom_de_la_commune": "PLOUAY", "libell_d_acheminement": "PLOUAY", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56166"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbaa7399dc5f394ecc81921e5156881f024a965", "fields": {"nom_de_la_commune": "PORCARO", "libell_d_acheminement": "PORCARO", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56180"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e622d8e2387a4c4a4e230eebe2d6d9fbc199ee", "fields": {"nom_de_la_commune": "RADENAC", "libell_d_acheminement": "RADENAC", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56189"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4f1d0e748f1886202baae7ee9b649cd1cdb9f4", "fields": {"code_postal": "56580", "code_commune_insee": "56198", "libell_d_acheminement": "ROHAN", "ligne_5": "ST SAMSON", "nom_de_la_commune": "ROHAN", "coordonnees_gps": [48.0645686885, -2.7233749534]}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3315af6465c29990a0b282916875307af1e1e65", "fields": {"nom_de_la_commune": "LE SAINT", "libell_d_acheminement": "LE SAINT", "code_postal": "56110", "coordonnees_gps": [48.1237137726, -3.61197294513], "code_commune_insee": "56201"}, "geometry": {"type": "Point", "coordinates": [-3.61197294513, 48.1237137726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f816ec92873c397c6a5fc29858cacc095ee91d0", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56203"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b767cdb36c570233699af9bedee481c0505bb6", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "56150", "coordonnees_gps": [47.8954786966, -3.01425366823], "code_commune_insee": "56207"}, "geometry": {"type": "Point", "coordinates": [-3.01425366823, 47.8954786966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e21dfa314b735c5b8a8b842b96e78ad87b62702c", "fields": {"nom_de_la_commune": "ST GONNERY", "libell_d_acheminement": "ST GONNERY", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56215"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b213ee17fe2440aaed62e3a4d48aebc0327dba4", "fields": {"nom_de_la_commune": "ST JEAN BREVELAY", "libell_d_acheminement": "ST JEAN BREVELAY", "code_postal": "56660", "coordonnees_gps": [47.8315140661, -2.7272413938], "code_commune_insee": "56222"}, "geometry": {"type": "Point", "coordinates": [-2.7272413938, 47.8315140661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3010b057a2aa3d7e870c666fae78fa8d9ed6a1c", "fields": {"nom_de_la_commune": "ST PIERRE QUIBERON", "libell_d_acheminement": "ST PIERRE QUIBERON", "code_postal": "56510", "coordonnees_gps": [47.5218901226, -3.13823713141], "code_commune_insee": "56234"}, "geometry": {"type": "Point", "coordinates": [-3.13823713141, 47.5218901226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183c199008ac3ce5746ca1164c6800f0fa8a1790", "fields": {"nom_de_la_commune": "SURZUR", "libell_d_acheminement": "SURZUR", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56248"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed3142db723bdf80dfdbe0debc71d56a33024c7", "fields": {"nom_de_la_commune": "TREDION", "libell_d_acheminement": "TREDION", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56254"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d248117b3c4beb79d5cd0523edfb9262fe178cc", "fields": {"nom_de_la_commune": "LA TRINITE SURZUR", "libell_d_acheminement": "LA TRINITE SURZUR", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56259"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ae78aaba1e361e49fd700f782124fce45f46ab0", "fields": {"nom_de_la_commune": "ABRESCHVILLER", "libell_d_acheminement": "ABRESCHVILLER", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57003"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f0fd863a4b231c069857541861ac6ab53b69d2", "fields": {"nom_de_la_commune": "AJONCOURT", "libell_d_acheminement": "AJONCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57009"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904b0c57e705bbe8067a7ba847de886535feff3c", "fields": {"nom_de_la_commune": "ALBESTROFF", "libell_d_acheminement": "ALBESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57011"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ea20be4510f6e93ab5963ecff11fe3c1a76b8f", "fields": {"nom_de_la_commune": "ALSTING", "libell_d_acheminement": "ALSTING", "code_postal": "57515", "coordonnees_gps": [49.1798413382, 7.00123706861], "code_commune_insee": "57013"}, "geometry": {"type": "Point", "coordinates": [7.00123706861, 49.1798413382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d7675fc8c6180b2808a626de386b40c1555ff8", "fields": {"nom_de_la_commune": "ANGEVILLERS", "libell_d_acheminement": "ANGEVILLERS", "code_postal": "57440", "coordonnees_gps": [49.3774806221, 6.04516727983], "code_commune_insee": "57022"}, "geometry": {"type": "Point", "coordinates": [6.04516727983, 49.3774806221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5d1e3f00adfddca9b69a2a3f15d15a67afbcee", "fields": {"nom_de_la_commune": "ASPACH", "libell_d_acheminement": "ASPACH", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57034"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4309f42dc0bb02f4e5f5b8d0a1e3f963bb669d", "fields": {"nom_de_la_commune": "ASSENONCOURT", "libell_d_acheminement": "ASSENONCOURT", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57035"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381d990ee4e1855319c2b34588ebb23f4a398daf", "fields": {"nom_de_la_commune": "AUDUN LE TICHE", "libell_d_acheminement": "AUDUN LE TICHE", "code_postal": "57390", "coordonnees_gps": [49.4698725399, 5.94728059458], "code_commune_insee": "57038"}, "geometry": {"type": "Point", "coordinates": [5.94728059458, 49.4698725399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d60381b20bd85fc66163eb319e29168ff17f53c", "fields": {"nom_de_la_commune": "LARGENTIERE", "libell_d_acheminement": "LARGENTIERE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07132"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8f75d885c15ad6918e03488a0c5c8cfbddb421", "fields": {"nom_de_la_commune": "LANARCE", "libell_d_acheminement": "LANARCE", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07130"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54efee163500747efcb56833cf7c5ecdcc8ff713", "fields": {"nom_de_la_commune": "LAFARRE", "libell_d_acheminement": "LAFARRE", "code_postal": "07520", "coordonnees_gps": [45.1121738943, 4.50340666434], "code_commune_insee": "07124"}, "geometry": {"type": "Point", "coordinates": [4.50340666434, 45.1121738943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf152d6663b62096693f088ad2194e1203cb4095", "fields": {"nom_de_la_commune": "JUVINAS", "libell_d_acheminement": "JUVINAS", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07111"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12df46389d44313b8de717e9423ccfcb1f30801", "fields": {"nom_de_la_commune": "JOANNAS", "libell_d_acheminement": "JOANNAS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07109"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a493cded10667621da8bb059f02fb94aff0a663", "fields": {"nom_de_la_commune": "LABOULE", "libell_d_acheminement": "LABOULE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07118"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896884960e423bc8c1e6e8dce53ba9978dc62b6a", "fields": {"nom_de_la_commune": "LIMONY", "libell_d_acheminement": "LIMONY", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07143"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a350a54a02e0f3587c871f5fb1c33c296635e7f", "fields": {"nom_de_la_commune": "ARTAISE LE VIVIER", "libell_d_acheminement": "ARTAISE LE VIVIER", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08023"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60478122a1b312b8960503985951fc5f9ea542d9", "fields": {"nom_de_la_commune": "LES AYVELLES", "libell_d_acheminement": "LES AYVELLES", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08040"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b18d361f31a3bc793748da83895da9c23ba83b", "fields": {"nom_de_la_commune": "BAYONVILLE", "libell_d_acheminement": "BAYONVILLE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08052"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92dd72861f650e66d211bb87f0de1bdf9af22af6", "fields": {"nom_de_la_commune": "AUBRIVES", "libell_d_acheminement": "AUBRIVES", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08028"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e19545252fbc7549cdac92e8c81f75eb7921f92", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08017"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6126ea2fd30c18322bf0891744b719dbe2481ac", "fields": {"nom_de_la_commune": "ANTHENY", "libell_d_acheminement": "ANTHENY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08015"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa38c0cc41300aea914139bc352b57af2227421e", "fields": {"nom_de_la_commune": "BALLAY", "libell_d_acheminement": "BALLAY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08045"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f470b3d87e42688945a9564ff20d06d788232656", "fields": {"nom_de_la_commune": "AVAUX", "libell_d_acheminement": "AVAUX", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08039"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf807387a97cb18d56f54e308a4f77140a5112a9", "fields": {"nom_de_la_commune": "ST CIERGE SOUS LE CHEYLARD", "libell_d_acheminement": "ST CIERGE SOUS LE CHEYLARD", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07222"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2c3f077298bcfaa334a39e85fd4f2bf50af049", "fields": {"nom_de_la_commune": "ST ANDEOL DE FOURCHADES", "libell_d_acheminement": "ST ANDEOL DE FOURCHADES", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07209"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b1c5ba9649049e876b6248f5a5cccf3b551d3f", "fields": {"nom_de_la_commune": "ST CIRGUES EN MONTAGNE", "libell_d_acheminement": "ST CIRGUES EN MONTAGNE", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07224"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba220188f1d0531360307efd3db351eed5c95a26", "fields": {"nom_de_la_commune": "ST ETIENNE DE BOULOGNE", "libell_d_acheminement": "ST ETIENNE DE BOULOGNE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07230"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fc47c25619c292791176f03659a2e7b58ac541", "fields": {"nom_de_la_commune": "ST BARTHELEMY LE PLAIN", "libell_d_acheminement": "ST BARTHELEMY LE PLAIN", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07217"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b74be9860c3db65ad70826d3503ec0cd504bd0", "fields": {"nom_de_la_commune": "ST ANDRE EN VIVARAIS", "libell_d_acheminement": "ST ANDRE EN VIVARAIS", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07212"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c094839ebea82cb63674734d15e09966e77000", "fields": {"nom_de_la_commune": "ST BARTHELEMY GROZON", "libell_d_acheminement": "ST BARTHELEMY GROZON", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07216"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d4ba4048cce9f4d55ed275485d364f1fecfc9f", "fields": {"nom_de_la_commune": "ST ANDRE LACHAMP", "libell_d_acheminement": "ST ANDRE LACHAMP", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07213"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edcd6ff5ede01c9004a616947160e8f58d7a45a", "fields": {"nom_de_la_commune": "ST BAUZILE", "libell_d_acheminement": "ST BAUZILE", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07219"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57cb3a5eac70c2b102d9bb61f8d44779b78d74c8", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07227"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b88f32a415751d77659004affd31f29bde28e3", "fields": {"nom_de_la_commune": "ST JACQUES D ATTICIEUX", "libell_d_acheminement": "ST JACQUES D ATTICIEUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07243"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38372e8d2a1c1375c1aa5fea22d1766cd6e21fb1", "fields": {"nom_de_la_commune": "ST LAURENT SOUS COIRON", "libell_d_acheminement": "ST LAURENT SOUS COIRON", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07263"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9ceb981d2662d2fb5d14468b4612d00cd48a16", "fields": {"nom_de_la_commune": "ST MARTIN SUR LAVEZON", "libell_d_acheminement": "ST MARTIN SUR LAVEZON", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07270"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e610678466018797afdd24bbd4a66a89834d0f", "fields": {"nom_de_la_commune": "ST GENEST DE BEAUZON", "libell_d_acheminement": "ST GENEST DE BEAUZON", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07238"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7359f991af9fe9d6567b0b14788360e63174d4e", "fields": {"nom_de_la_commune": "ST MICHEL D AURANCE", "libell_d_acheminement": "ST MICHEL D AURANCE", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07276"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148af7d8371358a07e5d370e16cd45ed0d869b81", "fields": {"nom_de_la_commune": "ST JULIEN BOUTIERES", "libell_d_acheminement": "ST JULIEN BOUTIERES", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07252"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52a6ffd976d8e30dda5723ee90ffb8bd2ef5216", "fields": {"nom_de_la_commune": "ST GENEST LACHAMP", "libell_d_acheminement": "ST GENEST LACHAMP", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07239"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1478e7fd72e4429ad3dad318fc11c7065e1ce1c", "fields": {"nom_de_la_commune": "ST PIERRE ST JEAN", "libell_d_acheminement": "ST PIERRE ST JEAN", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07284"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add963a0b8098592439442152373187effd3ec7d", "fields": {"nom_de_la_commune": "ST PIERREVILLE", "libell_d_acheminement": "ST PIERREVILLE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07286"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9fd15256e6cb6386bf0558d31f5a71af7f1bf5", "fields": {"nom_de_la_commune": "ST JEAN ROURE", "libell_d_acheminement": "ST JEAN ROURE", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07248"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e1e44016bd0da3b0d57704f1f1137ca7a13874", "fields": {"nom_de_la_commune": "ST ALBAN AURIOLLES", "libell_d_acheminement": "ST ALBAN AURIOLLES", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07207"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb4f28cbbcfca29a1213aa95fbc3d3bc836e86a", "fields": {"nom_de_la_commune": "PONT DE LABEAUME", "libell_d_acheminement": "PONT DE LABEAUME", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07178"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e459ee1796418ec044acb5ef60b7356782ff83d8", "fields": {"nom_de_la_commune": "ST ALBAN D AY", "libell_d_acheminement": "ST ALBAN D AY", "code_postal": "07790", "coordonnees_gps": [45.1861761213, 4.63077882039], "code_commune_insee": "07205"}, "geometry": {"type": "Point", "coordinates": [4.63077882039, 45.1861761213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21caff944129a04cbfb00b9e5c9f2dd5abc042a5", "fields": {"nom_de_la_commune": "ROCHESSAUVE", "libell_d_acheminement": "ROCHESSAUVE", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07194"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f9ca0f734ff96e61925d453e63f90af2d2076f", "fields": {"nom_de_la_commune": "SABLIERES", "libell_d_acheminement": "SABLIERES", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07202"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30b4f25430c9d3ae2140e7ce59168be9b563055a", "fields": {"nom_de_la_commune": "ST AGREVE", "libell_d_acheminement": "ST AGREVE", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07204"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef17cef78a67916044f829089a6c67bfe758a70", "fields": {"nom_de_la_commune": "PRANLES", "libell_d_acheminement": "PRANLES", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07184"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7cad48dc21362965570b74ed972bf918d06ffb", "fields": {"nom_de_la_commune": "PRADONS", "libell_d_acheminement": "PRADONS", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07183"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0307c3602bdad72a07d15995302548231de93f6b", "fields": {"nom_de_la_commune": "LE ROUX", "libell_d_acheminement": "LE ROUX", "code_postal": "07560", "coordonnees_gps": [44.7182672724, 4.176983695], "code_commune_insee": "07200"}, "geometry": {"type": "Point", "coordinates": [4.176983695, 44.7182672724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bf2bfb47586d30db0f63b972a353d6b0077331", "fields": {"nom_de_la_commune": "RIBES", "libell_d_acheminement": "RIBES", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07189"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e2d769ccd3698e041aed2d4138d1019f715931a", "fields": {"nom_de_la_commune": "BEFFU ET LE MORTHOMME", "libell_d_acheminement": "BEFFU ET LE MORTHOMME", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08056"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31fcfe40bb0318267f5cd055ff0d22f3a87f27f2", "fields": {"nom_de_la_commune": "BOSSEVAL ET BRIANCOURT", "libell_d_acheminement": "BOSSEVAL ET BRIANCOURT", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08072"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9802cc5b3c1779cd284005fd3145155af313b93e", "fields": {"nom_de_la_commune": "BIGNICOURT", "libell_d_acheminement": "BIGNICOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08066"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656ecf1b52b5c2461fa96384c18c0ee3d3c655b0", "fields": {"nom_de_la_commune": "BLOMBAY", "libell_d_acheminement": "BLOMBAY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08071"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f073d08afb3b474d865d97491376352225787938", "fields": {"code_postal": "08160", "code_commune_insee": "08140", "libell_d_acheminement": "DOM LE MESNIL", "ligne_5": "PONT A BAR", "nom_de_la_commune": "DOM LE MESNIL", "coordonnees_gps": [49.6516847115, 4.77872166277]}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9e61240819a1ee8586c1ffa45e28d47d90419e", "fields": {"code_postal": "08140", "code_commune_insee": "08145", "libell_d_acheminement": "DOUZY", "ligne_5": "MAIRY", "nom_de_la_commune": "DOUZY", "coordonnees_gps": [49.7027985967, 5.05389161183]}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2f28959d8c25f60fa2bd5de28193f1c55a4988", "fields": {"nom_de_la_commune": "ESCOMBRES ET LE CHESNOIS", "libell_d_acheminement": "ESCOMBRES ET LE CHESNOIS", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08153"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8895955fde1565240cbb22ad4c4161bc065d3e0d", "fields": {"nom_de_la_commune": "COULOMMES ET MARQUENY", "libell_d_acheminement": "COULOMMES ET MARQUENY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08134"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23bc9d42719c446239640951964e66a640f9b6c", "fields": {"nom_de_la_commune": "LA CROIX AUX BOIS", "libell_d_acheminement": "LA CROIX AUX BOIS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08135"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332549a391e1ddb2f51740067fd931f3b9d0d98c", "fields": {"nom_de_la_commune": "CONDE LES AUTRY", "libell_d_acheminement": "CONDE LES AUTRY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08128"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeca48e9a4c4b2bcbab9ed06d712be0e346deba0", "fields": {"nom_de_la_commune": "CHUFFILLY ROCHE", "libell_d_acheminement": "CHUFFILLY ROCHE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08123"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c8ef03f181518b5ec7d08bb08cc927a311f8c4", "fields": {"nom_de_la_commune": "ETEIGNIERES", "libell_d_acheminement": "ETEIGNIERES", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08156"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3b2b971917a250a64d5fe4743e17e2d26c6287", "fields": {"nom_de_la_commune": "CLIRON", "libell_d_acheminement": "CLIRON", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08125"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af87356a9fb49a7f5641abd6bdfc84c76217ebe7", "fields": {"nom_de_la_commune": "COUCY", "libell_d_acheminement": "COUCY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08133"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55b244bc90f6282799359a88b0814eb5e84dab6", "fields": {"code_postal": "08400", "code_commune_insee": "08116", "libell_d_acheminement": "BAIRON ET SES ENVIRONS", "ligne_5": "LES ALLEUX", "nom_de_la_commune": "BAIRON ET SES ENVIRONS", "coordonnees_gps": [49.3759788124, 4.68476998487]}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c0c877d4ad4a3b0a35a0054dd1e38332c1b1bd", "fields": {"code_postal": "08110", "code_commune_insee": "08090", "libell_d_acheminement": "CARIGNAN", "ligne_5": "WE", "nom_de_la_commune": "CARIGNAN", "coordonnees_gps": [49.6541821872, 5.19219003172]}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbade34701e72fa40d41932cc1dd0499d566d9e7", "fields": {"nom_de_la_commune": "BRIENNE SUR AISNE", "libell_d_acheminement": "BRIENNE SUR AISNE", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08084"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323dbce8b7072cde0b4ed57baf7db99cedc6c1af", "fields": {"nom_de_la_commune": "BOUCONVILLE", "libell_d_acheminement": "BOUCONVILLE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08074"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c531f7ad8198bb43b39a1793332801aeb6b797", "fields": {"nom_de_la_commune": "CHARNOIS", "libell_d_acheminement": "CHARNOIS", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08106"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc25b155a23a339a2b118e4b48a6a7360aeba42", "fields": {"nom_de_la_commune": "CARIGNAN", "libell_d_acheminement": "CARIGNAN", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08090"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02af8b420c70ef6d58c64566c49293ae58f34416", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08102"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4ad3f1abc8d2e21c4aedfebf3817919439902f", "fields": {"nom_de_la_commune": "BUZANCY", "libell_d_acheminement": "BUZANCY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08089"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eac75804f0d791eda29f2f4ba7ca87c15df78a0", "fields": {"nom_de_la_commune": "BULSON", "libell_d_acheminement": "BULSON", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08088"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9f3d0f7dd50b4af814ffe4402b336b4d37493b", "fields": {"nom_de_la_commune": "CHAGNY", "libell_d_acheminement": "CHAGNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08095"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a1cd516519195bf58f054e50dcddd1ba611c3f", "fields": {"nom_de_la_commune": "SEVIGNY WALEPPE", "libell_d_acheminement": "SEVIGNY WALEPPE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08418"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0277e4df9b033413dd31db8f01ee85fca4bc3f", "fields": {"nom_de_la_commune": "SAULCES MONCLIN", "libell_d_acheminement": "SAULCES MONCLIN", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08402"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f357259332b398554fa80e7e7be0db12cf3a4bdb", "fields": {"nom_de_la_commune": "SERAINCOURT", "libell_d_acheminement": "SERAINCOURT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08413"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4243416617aa262bbb9c56ab6a8ef67a9c00f5fd", "fields": {"nom_de_la_commune": "SECHEVAL", "libell_d_acheminement": "SECHEVAL", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08408"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb979c4c91e00d09cd8243db11663bbe931faca", "fields": {"nom_de_la_commune": "SENUC", "libell_d_acheminement": "SENUC", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08412"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1a188df8e20097c107a4d0434cb4f84bdd13bb", "fields": {"nom_de_la_commune": "SERY", "libell_d_acheminement": "SERY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08415"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735f019b658d81069ae2a323e84024b1fc889f39", "fields": {"nom_de_la_commune": "DIGNAC", "libell_d_acheminement": "DIGNAC", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16119"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef60285ee41ddb690c4a32c01bf8b5516d7a057a", "fields": {"nom_de_la_commune": "ECURAS", "libell_d_acheminement": "ECURAS", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16124"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44e2a04b9a7804caccb7de94abb39b0be99e853", "fields": {"nom_de_la_commune": "ETAGNAC", "libell_d_acheminement": "ETAGNAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16132"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d34ad760be428ce703d2a748cec4adbe31f24d0", "fields": {"nom_de_la_commune": "EYMOUTHIERS", "libell_d_acheminement": "EYMOUTHIERS", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16135"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1037385be7cb6ac544f2fb93603c96578d1c72bc", "fields": {"nom_de_la_commune": "LA FAYE", "libell_d_acheminement": "LA FAYE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16136"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4c2f14a53f15f8365c9a4700a9a3f654e92fae", "fields": {"nom_de_la_commune": "FLEAC", "libell_d_acheminement": "FLEAC", "code_postal": "16730", "coordonnees_gps": [45.6636626896, 0.0767104525338], "code_commune_insee": "16138"}, "geometry": {"type": "Point", "coordinates": [0.0767104525338, 45.6636626896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2109fc257dec6aa161cde9bbc07feaa890fc46bb", "fields": {"nom_de_la_commune": "LA FORET DE TESSE", "libell_d_acheminement": "LA FORET DE TESSE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16142"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9361c921c050c1ffaeba99122a92ee72389ccf62", "fields": {"nom_de_la_commune": "FOUQUEBRUNE", "libell_d_acheminement": "FOUQUEBRUNE", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16143"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84be305c0683463e10dc610fab0a917b8d00ba12", "fields": {"nom_de_la_commune": "FOUQUEURE", "libell_d_acheminement": "FOUQUEURE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16144"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c82caf79c0c22c767a3bec0c2dcdf684d22f551", "fields": {"code_postal": "16170", "code_commune_insee": "16148", "libell_d_acheminement": "GENAC BIGNAC", "ligne_5": "BIGNAC", "nom_de_la_commune": "GENAC BIGNAC", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d02dcbf642ce42c4f78becc874736ec28235229", "fields": {"nom_de_la_commune": "GENOUILLAC", "libell_d_acheminement": "GENOUILLAC", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16149"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c89909da89e84b9d17e183370509e91176d4697", "fields": {"nom_de_la_commune": "GRASSAC", "libell_d_acheminement": "GRASSAC", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16158"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60412454ee20636ccdb45974a10bfd6e29879c93", "fields": {"nom_de_la_commune": "GUIMPS", "libell_d_acheminement": "GUIMPS", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16160"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994434ef9c1bf8de4c45570dc67e6c27e3630868", "fields": {"nom_de_la_commune": "GURAT", "libell_d_acheminement": "GURAT", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16162"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26fd9da1da33f484d2b5cc1a809b65a669216a8b", "fields": {"nom_de_la_commune": "JAULDES", "libell_d_acheminement": "JAULDES", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16168"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6131c962b0aeb2a618c8df5aeedf82e6a03fcf3", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "JURIGNAC", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791ee7d506d304ea46aaa8e9b5d7f22a5997e190", "fields": {"nom_de_la_commune": "LESSAC", "libell_d_acheminement": "LESSAC", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16181"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f252e8c02b063d732d1f52842d8809d275a188", "fields": {"nom_de_la_commune": "LICHERES", "libell_d_acheminement": "LICHERES", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16184"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f6157428b9e7ada1193581bcaaee70a2b4481e", "fields": {"nom_de_la_commune": "LOUZAC ST ANDRE", "libell_d_acheminement": "LOUZAC ST ANDRE", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16193"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef9165cf910ba12e64a80f55f506059449894d3", "fields": {"nom_de_la_commune": "LA MAGDELEINE", "libell_d_acheminement": "LA MAGDELEINE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16197"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0873fe514910e5b7f425dcaa4127e83ed1d3283a", "fields": {"nom_de_la_commune": "MAGNAC SUR TOUVRE", "libell_d_acheminement": "MAGNAC SUR TOUVRE", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16199"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8cffee15df579880b67b66143ab7b02dfa498d", "fields": {"nom_de_la_commune": "MANOT", "libell_d_acheminement": "MANOT", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16205"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2d031814776a79994169003380a30951b4c44b", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "16570", "coordonnees_gps": [45.7496501678, 0.052973066949], "code_commune_insee": "16210"}, "geometry": {"type": "Point", "coordinates": [0.052973066949, 45.7496501678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba7da504b4ad7d0c4652ed17b8f8f569f441a4f", "fields": {"nom_de_la_commune": "MESNAC", "libell_d_acheminement": "MESNAC", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16218"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845876a3369c4a7c5d86cdd4ae8b3e51246b7e18", "fields": {"nom_de_la_commune": "MONTIGNAC CHARENTE", "libell_d_acheminement": "MONTIGNAC CHARENTE", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16226"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536e14c4d20a41f3fd6946572bdb5184070c99c3", "fields": {"nom_de_la_commune": "LAGUINGE RESTOUE", "libell_d_acheminement": "LAGUINGE RESTOUE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64303"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac2184e3ddfd0447150e925885c28b8b3d5f95f3", "fields": {"nom_de_la_commune": "LAHOURCADE", "libell_d_acheminement": "LAHOURCADE", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64306"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba76ffc55cfca0dc70495bd3296eb7f7f1490eb2", "fields": {"nom_de_la_commune": "LANNEPLAA", "libell_d_acheminement": "LANNEPLAA", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64312"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d8a393a6135e90332d61c5366aa9215fbe9583", "fields": {"nom_de_la_commune": "LARREULE", "libell_d_acheminement": "LARREULE", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64318"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e61141ce468b0e90b809dd62e6cd128c3f7f7c7", "fields": {"nom_de_la_commune": "LARUNS", "libell_d_acheminement": "LARUNS", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64320"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cbf0d77a1e9173cdce15a2a14fdd69ebab621b3", "fields": {"nom_de_la_commune": "LASSE", "libell_d_acheminement": "LASSE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64322"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7437befaf2a117d0bbe720b777bdce854318b0dd", "fields": {"nom_de_la_commune": "LAY LAMIDOU", "libell_d_acheminement": "LAY LAMIDOU", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64326"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427841cbf149fcbfcb7d34bcfc1d94fa7742a0c9", "fields": {"nom_de_la_commune": "LESCUN", "libell_d_acheminement": "LESCUN", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64336"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8408982fac0c62ce3c000f31945ec6ff5380ef5", "fields": {"nom_de_la_commune": "LICHOS", "libell_d_acheminement": "LICHOS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64341"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b14874d99fa3051172c0c1a01cc293a98a57bcf4", "fields": {"nom_de_la_commune": "LICQ ATHEREY", "libell_d_acheminement": "LICQ ATHEREY", "code_postal": "64560", "coordonnees_gps": [43.0084914097, -0.920619929244], "code_commune_insee": "64342"}, "geometry": {"type": "Point", "coordinates": [-0.920619929244, 43.0084914097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e258c62c1c1990bedf8421dda32926733acf63f4", "fields": {"nom_de_la_commune": "LIMENDOUS", "libell_d_acheminement": "LIMENDOUS", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64343"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a46b7c521c000bb086de06835137e49708f7988", "fields": {"nom_de_la_commune": "LOUVIE JUZON", "libell_d_acheminement": "LOUVIE JUZON", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64353"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e588941e663acd84171b5c4510cde6f296ee3b3", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64355"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e5f7f21e3689ad46872762fbf16a50ec982d7c", "fields": {"nom_de_la_commune": "LURBE ST CHRISTAU", "libell_d_acheminement": "LURBE ST CHRISTAU", "code_postal": "64660", "coordonnees_gps": [43.1157198025, -0.622971094801], "code_commune_insee": "64360"}, "geometry": {"type": "Point", "coordinates": [-0.622971094801, 43.1157198025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79251b8f7a581e84c78be12bdc43a77b2109f9b", "fields": {"nom_de_la_commune": "MENDIVE", "libell_d_acheminement": "MENDIVE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64379"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c5507902e288947bc5027d380b1690e8446d57", "fields": {"nom_de_la_commune": "MERACQ", "libell_d_acheminement": "MERACQ", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64380"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d77db470b8d6f70cdaf56a008716f09ffd726e", "fields": {"nom_de_la_commune": "MERITEIN", "libell_d_acheminement": "MERITEIN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64381"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6acea5e8efb742b64c9b4e60d8f1d39d0565b786", "fields": {"nom_de_la_commune": "MIOSSENS LANUSSE", "libell_d_acheminement": "MIOSSENS LANUSSE", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64385"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c17358ff2b031ec04ed0dd31a239f8556e6d601", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64395"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7aa227272d49d9be58440b493a2a3acb10fae4", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64403"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c9746eb71a3037e60849417adeac5277fe445", "fields": {"nom_de_la_commune": "MORLAAS", "libell_d_acheminement": "MORLAAS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64405"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac1117cfcdf8b4b680e405bb205474f332dcb2d", "fields": {"nom_de_la_commune": "MORLANNE", "libell_d_acheminement": "MORLANNE", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64406"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3dc0bb7b1b4b0a02c9b9136cb5973ba1aeab55a", "fields": {"nom_de_la_commune": "MOUGUERRE", "libell_d_acheminement": "MOUGUERRE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64407"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c1d41a8788d143e31266d6abdbdbf059449044", "fields": {"nom_de_la_commune": "NAY", "libell_d_acheminement": "NAY", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64417"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b390a4f6614ac39a62c3266a8eccfe8c713cc290", "fields": {"nom_de_la_commune": "NOUSTY", "libell_d_acheminement": "NOUSTY", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64419"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f138fb50b51a9bfe1764a8ee8c6e62d9b4333c3", "fields": {"nom_de_la_commune": "OREGUE", "libell_d_acheminement": "OREGUE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64425"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c4032125103357939eb27496a320acb4224a9a", "fields": {"nom_de_la_commune": "ORION", "libell_d_acheminement": "ORION", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64427"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d576fa59830c1962d07ab840f57008b7c95a93", "fields": {"nom_de_la_commune": "OSTABAT ASME", "libell_d_acheminement": "OSTABAT ASME", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64437"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c43cbd29b8021b9f2007012335749629056e3b7", "fields": {"nom_de_la_commune": "OUSSE", "libell_d_acheminement": "OUSSE", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64439"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce0163518a5b5ba285d9b8b46adc5586ff016d4", "fields": {"nom_de_la_commune": "OZENX MONTESTRUCQ", "libell_d_acheminement": "OZENX MONTESTRUCQ", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64440"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f066f40883786290ffc1a30c230cde7bf018a0", "fields": {"nom_de_la_commune": "PAGOLLE", "libell_d_acheminement": "PAGOLLE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64441"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429c36b4ef29c7df29b9b6a3fdaaefefbfc8b5b9", "fields": {"nom_de_la_commune": "ROQUIAGUE", "libell_d_acheminement": "ROQUIAGUE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64468"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb031764c8c4822b7076af78e51e4bc4740b80d", "fields": {"nom_de_la_commune": "ST CASTIN", "libell_d_acheminement": "ST CASTIN", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64472"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bc691c2b9124cdd842175fb4d2065a63950c9b5", "fields": {"nom_de_la_commune": "ST GIRONS EN BEARN", "libell_d_acheminement": "ST GIRONS EN BEARN", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64479"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d62d97370565e5a1b9c5eae1dcf51fec426418d", "fields": {"nom_de_la_commune": "ST JEAN DE LUZ", "libell_d_acheminement": "ST JEAN DE LUZ", "code_postal": "64500", "coordonnees_gps": [43.389108568, -1.63881898251], "code_commune_insee": "64483"}, "geometry": {"type": "Point", "coordinates": [-1.63881898251, 43.389108568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "418ea1218e293e8ac676dce2bf669aea3f3a9858", "fields": {"nom_de_la_commune": "ST JEAN PIED DE PORT", "libell_d_acheminement": "ST JEAN PIED DE PORT", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64485"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4732b818419e3e511ea694f005aa727d5276015b", "fields": {"nom_de_la_commune": "ST MARTIN D ARROSSA", "libell_d_acheminement": "ST MARTIN D ARROSSA", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64490"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18314842ca6d4cfb13100a635eeea0dcadaeda7", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64493"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8c1ef9f64aa437604768b7a4db9ae28ca458fc", "fields": {"nom_de_la_commune": "ST PEE SUR NIVELLE", "libell_d_acheminement": "ST PEE SUR NIVELLE", "code_postal": "64310", "coordonnees_gps": [43.3310114321, -1.57798494011], "code_commune_insee": "64495"}, "geometry": {"type": "Point", "coordinates": [-1.57798494011, 43.3310114321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c63cb47918b9e4ae7f8825941e12a9bbd29f359", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64498"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ed56a7e54c30f82a385c1c72b9fa8f0c1e4673", "fields": {"nom_de_la_commune": "SALIES DE BEARN", "libell_d_acheminement": "SALIES DE BEARN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64499"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de458c05448779a0e1e194565f568b061562565", "fields": {"nom_de_la_commune": "SALLES MONGISCARD", "libell_d_acheminement": "SALLES MONGISCARD", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64500"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e644f28a53aad48e9309e708513e9ae4f427d9cc", "fields": {"nom_de_la_commune": "SAMSONS LION", "libell_d_acheminement": "SAMSONS LION", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64503"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab66c54fc3a6ed839afaf3f5fca1c9c527c9608", "fields": {"nom_de_la_commune": "SARPOURENX", "libell_d_acheminement": "SARPOURENX", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64505"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20695c0a5bd282e29b8f1ec05b3b09d4ab68a99a", "fields": {"nom_de_la_commune": "SAUBOLE", "libell_d_acheminement": "SAUBOLE", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64507"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a694a7452bfef92dbc55bcf4a86b3206c22febc2", "fields": {"nom_de_la_commune": "SIROS", "libell_d_acheminement": "SIROS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64525"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb606081364e88fab71ce469733734f1f1fed80", "fields": {"nom_de_la_commune": "TADOUSSE USSAU", "libell_d_acheminement": "TADOUSSE USSAU", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64532"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad896008a74ed89d8cf0d16cbd5bfcf38802c56", "fields": {"nom_de_la_commune": "URDOS", "libell_d_acheminement": "URDOS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64542"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edc48dc3dd6d303ac6b6046079ba00473ffde40", "fields": {"nom_de_la_commune": "VIELLESEGURE", "libell_d_acheminement": "VIELLESEGURE", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64556"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13d96ca217970bed37af89277056fe0c8686bcc", "fields": {"nom_de_la_commune": "ADERVIELLE POUCHERGUES", "libell_d_acheminement": "ADERVIELLE POUCHERGUES", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65003"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f435ef6bd00ba6acffb850595978c24c376cd5b1", "fields": {"nom_de_la_commune": "ANDREST", "libell_d_acheminement": "ANDREST", "code_postal": "65390", "coordonnees_gps": [43.3119188804, 0.08204368276], "code_commune_insee": "65007"}, "geometry": {"type": "Point", "coordinates": [0.08204368276, 43.3119188804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d357dafd01f14fd352d07e69d757c1cf25cb16e", "fields": {"nom_de_la_commune": "ANLA", "libell_d_acheminement": "ANLA", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65012"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264c9a19a75012d097d570c72b2676ad29576a0d", "fields": {"nom_de_la_commune": "ANSOST", "libell_d_acheminement": "ANSOST", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65013"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88803ec1c2694bee54843827f99bf59dd9829eca", "fields": {"nom_de_la_commune": "ARCIZANS AVANT", "libell_d_acheminement": "ARCIZANS AVANT", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65021"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38585468413bdfcdc507622875e977d0dc19535c", "fields": {"nom_de_la_commune": "ARCIZANS DESSUS", "libell_d_acheminement": "ARCIZANS DESSUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65022"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4356a5805c83820248bda60694dc31d74837b1f", "fields": {"nom_de_la_commune": "ARNE", "libell_d_acheminement": "ARNE", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65028"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23bc749ca952d754dc97d12d9b7076a5e2892409", "fields": {"nom_de_la_commune": "ARRENS MARSOUS", "libell_d_acheminement": "ARRENS MARSOUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65032"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f8ef528ba7b326fae7d2601bcb7d125fbc4444", "fields": {"nom_de_la_commune": "ASQUE", "libell_d_acheminement": "ASQUE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65041"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ac3b2da5b015a7fe9848992ed733904ac9e6884", "fields": {"nom_de_la_commune": "AUBAREDE", "libell_d_acheminement": "AUBAREDE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65044"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9606d2dbf3436f570039d755e9d9fe7ed419077c", "fields": {"nom_de_la_commune": "AURENSAN", "libell_d_acheminement": "AURENSAN", "code_postal": "65390", "coordonnees_gps": [43.3119188804, 0.08204368276], "code_commune_insee": "65048"}, "geometry": {"type": "Point", "coordinates": [0.08204368276, 43.3119188804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1e368d85f18a6c19905b708255e3abd9209f44", "fields": {"nom_de_la_commune": "BAGNERES DE BIGORRE", "libell_d_acheminement": "BAGNERES DE BIGORRE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65059"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87329c7a647c2d84808dcb598eb543843fb83ed5", "fields": {"code_postal": "65710", "code_commune_insee": "65059", "libell_d_acheminement": "BAGNERES DE BIGORRE", "ligne_5": "LESPONNE", "nom_de_la_commune": "BAGNERES DE BIGORRE", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d25d265cd5d1de9a497db34d957248f5835318", "fields": {"nom_de_la_commune": "BARBAZAN DEBAT", "libell_d_acheminement": "BARBAZAN DEBAT", "code_postal": "65690", "coordonnees_gps": [43.1995880438, 0.138139149082], "code_commune_insee": "65062"}, "geometry": {"type": "Point", "coordinates": [0.138139149082, 43.1995880438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649e73c09aaa43a7dc424b0ee4803d55f6a6f59c", "fields": {"nom_de_la_commune": "BARRANCOUEU", "libell_d_acheminement": "BARRANCOUEU", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65066"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48b6f0a0250be080ae4aeccce1d9ae235871d16", "fields": {"nom_de_la_commune": "BARRY", "libell_d_acheminement": "BARRY", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65067"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf97a5162c3134dc37b261a0e84bdcb6fc91bf39", "fields": {"nom_de_la_commune": "LA BARTHE DE NESTE", "libell_d_acheminement": "LA BARTHE DE NESTE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65069"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e10e0d3931252f541366bef33e2bdb54bbfd92", "fields": {"nom_de_la_commune": "BEGOLE", "libell_d_acheminement": "BEGOLE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65079"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3abeae9516000b72aea1b89a5618afccd0c01bb", "fields": {"nom_de_la_commune": "BENQUE", "libell_d_acheminement": "BENQUE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65081"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce09ff31b1331ae2b89ec3798a2b364a2db519ab", "fields": {"nom_de_la_commune": "BETPOUEY", "libell_d_acheminement": "BETPOUEY", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65089"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ad5cd7e1c2fc81a3735c7c52b8edf97ea82855", "fields": {"nom_de_la_commune": "BIZE", "libell_d_acheminement": "BIZE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65093"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ddcb8c4c59ef873e750e65fc934294170262a5", "fields": {"nom_de_la_commune": "BIZOUS", "libell_d_acheminement": "BIZOUS", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65094"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90cd5fef1addb31bbf4f114cf771567e5b5ec6e", "fields": {"nom_de_la_commune": "BORDERES SUR L ECHEZ", "libell_d_acheminement": "BORDERES SUR L ECHEZ", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65100"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66d1a4e2f57c42cb878e31a74d53187cca3920b", "fields": {"nom_de_la_commune": "BOUILH DEVANT", "libell_d_acheminement": "BOUILH DEVANT", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65102"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c80b581b13af1dffdd16f85b57a3c44f91c7250", "fields": {"nom_de_la_commune": "BOURREAC", "libell_d_acheminement": "BOURREAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65107"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f987f25623f1a54d34565e38a7b7655e5c4429e", "fields": {"nom_de_la_commune": "BUGARD", "libell_d_acheminement": "BUGARD", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65110"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a63f2ea11269cbc7cbc4acdc5456d479511952", "fields": {"nom_de_la_commune": "BULAN", "libell_d_acheminement": "BULAN", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65111"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cb059f3e8a857d62192a5b5e79a2c7d268891d", "fields": {"nom_de_la_commune": "CAMOUS", "libell_d_acheminement": "CAMOUS", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65122"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f7ef9bc17e8706cbba9c8cfed615a86f9f5c309", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "ARTIGUES CAMPAN", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c3ef58363ae66152137a08456991a1ccd466ac", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "GRIPP", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c14348f7f8e1af7d9d7543bade5a3d3db62764f", "fields": {"nom_de_la_commune": "CASTELBAJAC", "libell_d_acheminement": "CASTELBAJAC", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65128"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5705f727e07cfcb9f3aac3b373c36ecc0d114b3a", "fields": {"nom_de_la_commune": "CASTELVIEILH", "libell_d_acheminement": "CASTELVIEILH", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65131"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c4032e6a2f39887824b2bbe3f4a48834d1d3381", "fields": {"nom_de_la_commune": "CIZOS", "libell_d_acheminement": "CIZOS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65148"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa4d71a60eb36adc9461ff9cc0e382e58e0d26e", "fields": {"nom_de_la_commune": "CLARENS", "libell_d_acheminement": "CLARENS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65150"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49de7f1c9b16846bc581096e9bf0e46869b50e2a", "fields": {"nom_de_la_commune": "ESCALA", "libell_d_acheminement": "ESCALA", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65159"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14fed1f8ce613052f524d96e558efa64881d7041", "fields": {"nom_de_la_commune": "ESCONDEAUX", "libell_d_acheminement": "ESCONDEAUX", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65161"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7189145586d5da3a66f8d6606c5817d46fe4865", "fields": {"nom_de_la_commune": "ESPECHE", "libell_d_acheminement": "ESPECHE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65166"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37b147f2bf2a20855f7d24b27349c4cac6dd479b", "fields": {"nom_de_la_commune": "GALAN", "libell_d_acheminement": "GALAN", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65183"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fcaba68657baa36cf4dedd686618b846644f02", "fields": {"nom_de_la_commune": "GALEZ", "libell_d_acheminement": "GALEZ", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65184"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6075c661b5f0c374ed76235098bf10ac86dadb1", "fields": {"nom_de_la_commune": "GAZAVE", "libell_d_acheminement": "GAZAVE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65190"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309f1bb560d253cc4aaac982ccbe4ed6b49f0b07", "fields": {"nom_de_la_commune": "GEZ", "libell_d_acheminement": "GEZ", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65202"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd7237910b65bfa2ce6999bdd611f8f08f756516", "fields": {"nom_de_la_commune": "GOURGUE", "libell_d_acheminement": "GOURGUE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65207"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef2cfc7e2dcf6e4d66acd0a2bf4f0170e4b5ce9", "fields": {"nom_de_la_commune": "GRUST", "libell_d_acheminement": "GRUST", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65210"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d66cfc20de2cd07f3c4355e28371962e5e5f0da", "fields": {"nom_de_la_commune": "GUCHAN", "libell_d_acheminement": "GUCHAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65211"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d13fed495ef812f744b7f522ce2058d896e5f33", "fields": {"nom_de_la_commune": "HAGEDET", "libell_d_acheminement": "HAGEDET", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65215"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641d1b4dd8b1adc4dd168fd918118385097c0c39", "fields": {"nom_de_la_commune": "HIBARETTE", "libell_d_acheminement": "HIBARETTE", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65220"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d56b415612dd00c9e761ce225b9bc7d6245bd6", "fields": {"nom_de_la_commune": "HIIS", "libell_d_acheminement": "HIIS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65221"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae222efb7165077941925583a12dfa3927513413", "fields": {"nom_de_la_commune": "IBOS", "libell_d_acheminement": "IBOS", "code_postal": "65420", "coordonnees_gps": [43.2411868167, 8.29948036872e-05], "code_commune_insee": "65226"}, "geometry": {"type": "Point", "coordinates": [8.29948036872e-05, 43.2411868167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c71a54342de90c9f62fdaa6bd849b7b15230079", "fields": {"nom_de_la_commune": "IZAOURT", "libell_d_acheminement": "IZAOURT", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65230"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c743c2e02a5ad7bdc2e50949498708c01c6aa8f", "fields": {"nom_de_la_commune": "IZAUX", "libell_d_acheminement": "IZAUX", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65231"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4431b093d5b6ac26676e4b8b064311af552d1695", "fields": {"nom_de_la_commune": "LACASSAGNE", "libell_d_acheminement": "LACASSAGNE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65242"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ccbadf04dd0d48760f103f910669121b86464d4", "fields": {"nom_de_la_commune": "LEDAS ET PENTHIES", "libell_d_acheminement": "LEDAS ET PENTHIES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81141"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "481e48ea3c6a29a5c42061564452f957868d7ae3", "fields": {"nom_de_la_commune": "LOMBERS", "libell_d_acheminement": "LOMBERS", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81147"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebbb8a2d7ccfbe58d80609249216ca8f1b60b804", "fields": {"nom_de_la_commune": "MAZAMET", "libell_d_acheminement": "MAZAMET", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81163"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d420f90f379697570d09a64c7fe0f0e3dbbd25", "fields": {"nom_de_la_commune": "MIOLLES", "libell_d_acheminement": "MIOLLES", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81167"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44284350610226dcb11bf6b7f21dbb99a14de97e", "fields": {"nom_de_la_commune": "MONTANS", "libell_d_acheminement": "MONTANS", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81171"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f09e8d9505f9861d8b4a43c01b166fca76d8d1", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81172"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6b282c696d915cc2333ff1ddc20724d512b0a7", "fields": {"nom_de_la_commune": "MONTDURAUSSE", "libell_d_acheminement": "MONTDURAUSSE", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81175"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "443c1233e4ef6e98674177a0f17de1ec2a577c9e", "fields": {"nom_de_la_commune": "MONTFA", "libell_d_acheminement": "MONTFA", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81177"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c61829714de5656730f028495081436a738e783f", "fields": {"nom_de_la_commune": "MOULAYRES", "libell_d_acheminement": "MOULAYRES", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81187"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d40fe9be8d6d8aa1415514105118e7430e1ac7", "fields": {"nom_de_la_commune": "PAMPELONNE", "libell_d_acheminement": "PAMPELONNE", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81201"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3f7b66da05bc5537533364f46ce781a6f3e09e", "fields": {"nom_de_la_commune": "PAYRIN AUGMONTEL", "libell_d_acheminement": "PAYRIN AUGMONTEL", "code_postal": "81660", "coordonnees_gps": [43.5285716347, 2.39739974245], "code_commune_insee": "81204"}, "geometry": {"type": "Point", "coordinates": [2.39739974245, 43.5285716347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "998a5fff4bf54b54864eb21052e0392d36757ef8", "fields": {"nom_de_la_commune": "POULAN POUZOLS", "libell_d_acheminement": "POULAN POUZOLS", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81211"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88b876d7fb35b94f0f19f1a2005c265f02ec878", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81212"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48e6e9a7aad2efed922f1f129dee853629d57e9", "fields": {"nom_de_la_commune": "LE RIALET", "libell_d_acheminement": "LE RIALET", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81223"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119ce31be57f9dfe7aaadfb5398fbaca7315bd93", "fields": {"nom_de_la_commune": "RIVIERES", "libell_d_acheminement": "RIVIERES", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81225"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0ba7ffa659ddddaf7237cf44ba7fedac12198f", "fields": {"nom_de_la_commune": "ROQUECOURBE", "libell_d_acheminement": "ROQUECOURBE", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81227"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe6bae6925f4adad4bf233819b3ab8cb4e5a00c", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81245"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58389bb1ad292de46027c522626b93a06c0854be", "fields": {"nom_de_la_commune": "ST GAUZENS", "libell_d_acheminement": "ST GAUZENS", "code_postal": "81390", "coordonnees_gps": [43.7576771475, 1.89892940194], "code_commune_insee": "81248"}, "geometry": {"type": "Point", "coordinates": [1.89892940194, 43.7576771475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15eaf50f1b70ec2c5aaec7f8b63bf49452933f4", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81249"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e12c25be1dc81b7742442885e8a1978094ea77", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81251"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81315cfaa54037925719a29ee07a7308aeb1d478", "fields": {"nom_de_la_commune": "ST SALVY DE LA BALME", "libell_d_acheminement": "ST SALVY DE LA BALME", "code_postal": "81490", "coordonnees_gps": [43.5859681102, 2.3789399334], "code_commune_insee": "81269"}, "geometry": {"type": "Point", "coordinates": [2.3789399334, 43.5859681102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a230196248ce318a8aa63ca493185abede328327", "fields": {"nom_de_la_commune": "ST URCISSE", "libell_d_acheminement": "ST URCISSE", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81272"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5543ac1b111bdcfe991336a5764b3364c4ebcca7", "fields": {"nom_de_la_commune": "SENAUX", "libell_d_acheminement": "SENAUX", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81282"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0219d3fbaf45b6bf3bb4adf0e071721004e26cf", "fields": {"nom_de_la_commune": "SENOUILLAC", "libell_d_acheminement": "SENOUILLAC", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81283"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a37149d647022e017061264bf62613c849849a", "fields": {"nom_de_la_commune": "SOREZE", "libell_d_acheminement": "SOREZE", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81288"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce45e0ae012f10e2cb386fa2999c304ff75d5aea", "fields": {"nom_de_la_commune": "TANUS", "libell_d_acheminement": "TANUS", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81292"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503d627e4139fcbd830cfb854b87f002b7121d21", "fields": {"nom_de_la_commune": "LE TRAVET", "libell_d_acheminement": "LE TRAVET", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81301"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947d02ade64bf04a75b4f60f1099929cbe8c34b3", "fields": {"nom_de_la_commune": "VENES", "libell_d_acheminement": "VENES", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81311"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5eb667d5f18df17bd841612e82b9117a92e56d", "fields": {"nom_de_la_commune": "LE VERDIER", "libell_d_acheminement": "LE VERDIER", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81313"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8131999d57d5cb27aabd5128f0df78cd3e8d0aa4", "fields": {"nom_de_la_commune": "VINDRAC ALAYRAC", "libell_d_acheminement": "VINDRAC ALAYRAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81320"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cfb80f8b431bfb56676e60a01159aeee1fc5da", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81326"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df98a855771ccf25720662dfe8c3bbd91e28609b", "fields": {"nom_de_la_commune": "ANGEVILLE", "libell_d_acheminement": "ANGEVILLE", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82003"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04727352593b28053093cba51a796e98e452b645", "fields": {"nom_de_la_commune": "ASQUES", "libell_d_acheminement": "ASQUES", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82004"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2381ebfd67ec577c463b47a31034c47b3f23f6", "fields": {"nom_de_la_commune": "LES BARTHES", "libell_d_acheminement": "LES BARTHES", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82012"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b7b2c046a37b021dd50cb20011dea28e3accc9", "fields": {"nom_de_la_commune": "BOULOC", "libell_d_acheminement": "BOULOC", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82021"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986e96a33fa681a6ae121fa655de8a50dae4e2e0", "fields": {"nom_de_la_commune": "BRESSOLS", "libell_d_acheminement": "BRESSOLS", "code_postal": "82710", "coordonnees_gps": [43.9542707748, 1.31624399126], "code_commune_insee": "82025"}, "geometry": {"type": "Point", "coordinates": [1.31624399126, 43.9542707748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf6cd76013770a8a12581128afc792c202c57e1", "fields": {"nom_de_la_commune": "CASTELMAYRAN", "libell_d_acheminement": "CASTELMAYRAN", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82031"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "423f7b19fd2147432adcd61bd656b6c18d328107", "fields": {"nom_de_la_commune": "CAUSSADE", "libell_d_acheminement": "CAUSSADE", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82037"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310734089f0098173fd24a512134c5c668728509", "fields": {"nom_de_la_commune": "CAYRAC", "libell_d_acheminement": "CAYRAC", "code_postal": "82440", "coordonnees_gps": [44.13317839, 1.44584346217], "code_commune_insee": "82039"}, "geometry": {"type": "Point", "coordinates": [1.44584346217, 44.13317839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd72a57166151fee3856117a6f48e65087b73b7c", "fields": {"nom_de_la_commune": "CAYRIECH", "libell_d_acheminement": "CAYRIECH", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82040"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b5a4a93ab0584aaea6b0d9e4e42722755331c6", "fields": {"nom_de_la_commune": "CAZALS", "libell_d_acheminement": "CAZALS", "code_postal": "82140", "coordonnees_gps": [44.152188201, 1.74194876605], "code_commune_insee": "82041"}, "geometry": {"type": "Point", "coordinates": [1.74194876605, 44.152188201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f8d8a1149571b45b80be5441e1b4e694026cd5", "fields": {"nom_de_la_commune": "CORBARIEU", "libell_d_acheminement": "CORBARIEU", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82044"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce06d71927aca854679f81e9d627d4c854ceb4b", "fields": {"nom_de_la_commune": "DUNES", "libell_d_acheminement": "DUNES", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82050"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19cf65bbb98afde1c01c6db27790cb3cf9981a0", "fields": {"nom_de_la_commune": "FAUROUX", "libell_d_acheminement": "FAUROUX", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82060"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8186cc317cac76f708bd6ad85106f03a379b9f4d", "fields": {"nom_de_la_commune": "FENEYROLS", "libell_d_acheminement": "FENEYROLS", "code_postal": "82140", "coordonnees_gps": [44.152188201, 1.74194876605], "code_commune_insee": "82061"}, "geometry": {"type": "Point", "coordinates": [1.74194876605, 44.152188201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d77585b60b22903f1b9e5d42d44a8c2101abc06a", "fields": {"nom_de_la_commune": "GENEBRIERES", "libell_d_acheminement": "GENEBRIERES", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82066"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0831119473205a5a0b9ececdc6ffed75da0da0a8", "fields": {"nom_de_la_commune": "GLATENS", "libell_d_acheminement": "GLATENS", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82070"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd08ddf6afa635ce489ae0da736e974ab6e9221", "fields": {"nom_de_la_commune": "GOLFECH", "libell_d_acheminement": "GOLFECH", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82072"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaa83370fa6297d55d80a75ffaa37d9473a2cf1", "fields": {"nom_de_la_commune": "GRISOLLES", "libell_d_acheminement": "GRISOLLES", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82075"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4190308dbd2fd475b9367681c351b16b90ddd49b", "fields": {"nom_de_la_commune": "LABASTIDE DE PENNE", "libell_d_acheminement": "LABASTIDE DE PENNE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82078"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cccb8a23e9cb73d1098bdfbb4fb07ca34a74071", "fields": {"nom_de_la_commune": "LABASTIDE DU TEMPLE", "libell_d_acheminement": "LABASTIDE DU TEMPLE", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82080"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d780849976a013fb514439f21131394508da21", "fields": {"nom_de_la_commune": "LACOUR", "libell_d_acheminement": "LACOUR", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82084"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765c9f2d0fc8a4d99963dde3da56a6dda36f6f16", "fields": {"nom_de_la_commune": "LACOURT ST PIERRE", "libell_d_acheminement": "LACOURT ST PIERRE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82085"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb9729ec6c1d7959a77d5a28b58e720d92e7e35", "fields": {"nom_de_la_commune": "LAFITTE", "libell_d_acheminement": "LAFITTE", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82086"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c81184649e542e93786389885fae4773658df20e", "fields": {"nom_de_la_commune": "LAFRANCAISE", "libell_d_acheminement": "LAFRANCAISE", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82087"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f544b5361610769dea5a3692f5ac7d1f1ff3ee", "fields": {"nom_de_la_commune": "LAMOTHE CUMONT", "libell_d_acheminement": "LAMOTHE CUMONT", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82091"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ed911bcc3cd8323fd3bb05edfbbbb91992929b", "fields": {"nom_de_la_commune": "LAPENCHE", "libell_d_acheminement": "LAPENCHE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82092"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfc49d26bccb28afee0fb3d548f79473082f833", "fields": {"nom_de_la_commune": "MIRABEL", "libell_d_acheminement": "MIRABEL", "code_postal": "82440", "coordonnees_gps": [44.13317839, 1.44584346217], "code_commune_insee": "82110"}, "geometry": {"type": "Point", "coordinates": [1.44584346217, 44.13317839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c94401a3976b71cd3daea000c73e47dcb1bde2", "fields": {"nom_de_la_commune": "MONBEQUI", "libell_d_acheminement": "MONBEQUI", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82114"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65531c9623d9f41210bcdbc54ba9f9843b58fece", "fields": {"nom_de_la_commune": "MONTAIGU DE QUERCY", "libell_d_acheminement": "MONTAIGU DE QUERCY", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82117"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e6b8044b8e7393bb79e3628fc5830d76c4947e", "fields": {"nom_de_la_commune": "MONTRICOUX", "libell_d_acheminement": "MONTRICOUX", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82132"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698612ff99a410271febb63ad40a8fe75711b7f7", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82139"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c73c69ffd3f63a547519c5bb6fea50b0e593a6", "fields": {"nom_de_la_commune": "POUPAS", "libell_d_acheminement": "POUPAS", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82143"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725e16125270f6442cbe4f04012e6b7164995dd7", "fields": {"nom_de_la_commune": "PUYGAILLARD DE QUERCY", "libell_d_acheminement": "PUYGAILLARD DE QUERCY", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82145"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b396f51187833186b5c06fa776a0f5b22e534094", "fields": {"nom_de_la_commune": "PUYGAILLARD DE LOMAGNE", "libell_d_acheminement": "PUYGAILLARD DE LOMAGNE", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82146"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f4a0ae5f67ebc57a1038804abe75d1627a92aa", "fields": {"nom_de_la_commune": "ROQUECOR", "libell_d_acheminement": "ROQUECOR", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82151"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec12a62f5272c8889379ee53037179701b0a91f", "fields": {"nom_de_la_commune": "ST ETIENNE DE TULMONT", "libell_d_acheminement": "ST ETIENNE DE TULMONT", "code_postal": "82410", "coordonnees_gps": [44.044875876, 1.4578010411], "code_commune_insee": "82161"}, "geometry": {"type": "Point", "coordinates": [1.4578010411, 44.044875876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1167ff4db68af7190a6d1965b279a225ffd523c3", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82166"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1be60a97ebad4f941b6b8102d18d0beebf8f28", "fields": {"nom_de_la_commune": "ST NAUPHARY", "libell_d_acheminement": "ST NAUPHARY", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82167"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04192e5e2dd5e2212b6ce43b8c1b6af52cb406b0", "fields": {"nom_de_la_commune": "ST PROJET", "libell_d_acheminement": "ST PROJET", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82172"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e82b8b24dbb682700c252a92ae987962c113b4e", "fields": {"nom_de_la_commune": "SAVENES", "libell_d_acheminement": "SAVENES", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82178"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5493063c2ea672ee69042018bf65827c3097de9", "fields": {"nom_de_la_commune": "SEPTFONDS", "libell_d_acheminement": "SEPTFONDS", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82179"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2059b7635f9506522084863ce3664643f5a82faa", "fields": {"nom_de_la_commune": "SERIGNAC", "libell_d_acheminement": "SERIGNAC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82180"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "589ec872da1444bbd3aa10dcdee412880c34a4a8", "fields": {"nom_de_la_commune": "SISTELS", "libell_d_acheminement": "SISTELS", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82181"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290f4019f1638c66c94df85a10edd0d6e68527a2", "fields": {"nom_de_la_commune": "VAISSAC", "libell_d_acheminement": "VAISSAC", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82184"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77decca0fb42ab6293b1058862054c227c30ed05", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82188"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd390073f36a07cc51b6ac01cd70970bb4be002", "fields": {"nom_de_la_commune": "LES ADRETS DE L ESTEREL", "libell_d_acheminement": "LES ADRETS DE L ESTEREL", "code_postal": "83600", "coordonnees_gps": [43.4958707206, 6.756116629], "code_commune_insee": "83001"}, "geometry": {"type": "Point", "coordinates": [6.756116629, 43.4958707206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899061e4b801c5446ccd9e8647ac7b2e7b44b2d6", "fields": {"nom_de_la_commune": "LES ARCS", "libell_d_acheminement": "LES ARCS", "code_postal": "83460", "coordonnees_gps": [43.4531977218, 6.47549589741], "code_commune_insee": "83004"}, "geometry": {"type": "Point", "coordinates": [6.47549589741, 43.4531977218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683eefb2a10193149bf24a2cb23903eabfad2e02", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83006"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ec25ec0a8d990e6512dd2b2d845503b4a147b3", "fields": {"nom_de_la_commune": "BANDOL", "libell_d_acheminement": "BANDOL", "code_postal": "83150", "coordonnees_gps": [43.1476846529, 5.74747621161], "code_commune_insee": "83009"}, "geometry": {"type": "Point", "coordinates": [5.74747621161, 43.1476846529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99496784b1f4e4c8947eefa3af776080a686051", "fields": {"nom_de_la_commune": "BARGEME", "libell_d_acheminement": "BARGEME", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83010"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c773da85d2d04d6eb402b7f6eea8aa1a5417282", "fields": {"nom_de_la_commune": "LE BOURGUET", "libell_d_acheminement": "LE BOURGUET", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83020"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148efdf1527bde9b2022b61d3fedc1441844dc4e", "fields": {"nom_de_la_commune": "BRIGNOLES", "libell_d_acheminement": "BRIGNOLES", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83023"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4de50f11f9b008a5fee7b28adc83092e1b38bd", "fields": {"nom_de_la_commune": "CALLAS", "libell_d_acheminement": "CALLAS", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83028"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead7a7637d5bded697257fcd02c877c0d33d3cc8", "fields": {"nom_de_la_commune": "CARQUEIRANNE", "libell_d_acheminement": "CARQUEIRANNE", "code_postal": "83320", "coordonnees_gps": [43.0970088357, 6.07125195392], "code_commune_insee": "83034"}, "geometry": {"type": "Point", "coordinates": [6.07125195392, 43.0970088357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a12149665df742889a55fd06a68654b191d637", "fields": {"nom_de_la_commune": "LE CASTELLET", "libell_d_acheminement": "LE CASTELLET", "code_postal": "83330", "coordonnees_gps": [43.2073445411, 5.81845184293], "code_commune_insee": "83035"}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068c66c9821662b0a352f4359100d97b565c5f56", "fields": {"code_postal": "83300", "code_commune_insee": "83038", "libell_d_acheminement": "CHATEAUDOUBLE", "ligne_5": "REBOUILLON", "nom_de_la_commune": "CHATEAUDOUBLE", "coordonnees_gps": [43.574421442, 6.44637854358]}, "geometry": {"type": "Point", "coordinates": [6.44637854358, 43.574421442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d38b26646299098e23f5ab9e2c828669565be4b7", "fields": {"nom_de_la_commune": "CHATEAUVIEUX", "libell_d_acheminement": "CHATEAUVIEUX", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83040"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1401390d7d7b13b10366243809e1066ccebc39e9", "fields": {"nom_de_la_commune": "DRAGUIGNAN", "libell_d_acheminement": "DRAGUIGNAN", "code_postal": "83300", "coordonnees_gps": [43.574421442, 6.44637854358], "code_commune_insee": "83050"}, "geometry": {"type": "Point", "coordinates": [6.44637854358, 43.574421442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942c3d1bce3b8c66b5064c31a7989d1c0aa4710c", "fields": {"nom_de_la_commune": "FOX AMPHOUX", "libell_d_acheminement": "FOX AMPHOUX", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83060"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e6f1954f70c443a1617bf61a6e2a8a0297085d", "fields": {"nom_de_la_commune": "LA GARDE FREINET", "libell_d_acheminement": "LA GARDE FREINET", "code_postal": "83680", "coordonnees_gps": [43.3234439298, 6.46671514244], "code_commune_insee": "83063"}, "geometry": {"type": "Point", "coordinates": [6.46671514244, 43.3234439298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "730145384bb2c0d464ea66c6de4625db0dfceacd", "fields": {"nom_de_la_commune": "GONFARON", "libell_d_acheminement": "GONFARON", "code_postal": "83590", "coordonnees_gps": [43.3200955688, 6.30065093294], "code_commune_insee": "83067"}, "geometry": {"type": "Point", "coordinates": [6.30065093294, 43.3200955688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f47d5ade9fdbf2e48aea1414f85073c74eeb103", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "HYERES PLAGE", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc6b4e36ecbb45d6861c6e37dba83491e31a7cf9", "fields": {"nom_de_la_commune": "MAZAUGUES", "libell_d_acheminement": "MAZAUGUES", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83076"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63365dcce02264256effd3727ded3fd12dde8606", "fields": {"nom_de_la_commune": "MONTAUROUX", "libell_d_acheminement": "MONTAUROUX", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83081"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37943aa768adc1ba0cc2379247c40b099f527b9c", "fields": {"nom_de_la_commune": "MONTMEYAN", "libell_d_acheminement": "MONTMEYAN", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83084"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c687d9b5f8be48912ab0a8894524a7f06c1aa3", "fields": {"nom_de_la_commune": "PUGET VILLE", "libell_d_acheminement": "PUGET VILLE", "code_postal": "83390", "coordonnees_gps": [43.2473941525, 6.13306231898], "code_commune_insee": "83100"}, "geometry": {"type": "Point", "coordinates": [6.13306231898, 43.2473941525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d58a7ce401d63f977ed92b3519053db2061cd90", "fields": {"nom_de_la_commune": "REGUSSE", "libell_d_acheminement": "REGUSSE", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83102"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8196a13300b4c63c82c9e33ee6f00768f3b41edd", "fields": {"nom_de_la_commune": "LE REVEST LES EAUX", "libell_d_acheminement": "LE REVEST LES EAUX", "code_postal": "83200", "coordonnees_gps": [43.15297354, 5.93725605869], "code_commune_insee": "83103"}, "geometry": {"type": "Point", "coordinates": [5.93725605869, 43.15297354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4603268807a3a21a280d19d5f465d7efb412a8b6", "fields": {"code_postal": "83380", "code_commune_insee": "83107", "libell_d_acheminement": "ROQUEBRUNE SUR ARGENS", "ligne_5": "LES ISSAMBRES", "nom_de_la_commune": "ROQUEBRUNE SUR ARGENS", "coordonnees_gps": [43.4286195636, 6.65195663362]}, "geometry": {"type": "Point", "coordinates": [6.65195663362, 43.4286195636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e000fb04bcd2306d600460b2fc696d14c4d301b", "fields": {"nom_de_la_commune": "EPIERRE", "libell_d_acheminement": "EPIERRE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73109"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e37a5a6276306e29cc978b9ee016902a4a104f0", "fields": {"nom_de_la_commune": "FLUMET", "libell_d_acheminement": "FLUMET", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73114"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f2a70b6c9471d6d6b21193bdc10e31e18aa19f", "fields": {"nom_de_la_commune": "FONTCOUVERTE LA TOUSSUIRE", "libell_d_acheminement": "FONTCOUVERTE LA TOUSSUIRE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73116"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11e9286997fbbec1b1f39f9a7f21a0a225d301c", "fields": {"nom_de_la_commune": "GERBAIX", "libell_d_acheminement": "GERBAIX", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73122"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f8914d2050a09f2b6f8b5b624d49999e111b52", "fields": {"nom_de_la_commune": "GRESY SUR AIX", "libell_d_acheminement": "GRESY SUR AIX", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73128"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8021eaec7fd7cdefd5be9bd32a9dda55de37c58", "fields": {"nom_de_la_commune": "HAUTELUCE", "libell_d_acheminement": "HAUTELUCE", "code_postal": "73620", "coordonnees_gps": [45.7642386562, 6.61548385248], "code_commune_insee": "73132"}, "geometry": {"type": "Point", "coordinates": [6.61548385248, 45.7642386562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e35eebfb0b2f76477f047d33dd1a492f99bae7f", "fields": {"nom_de_la_commune": "JARSY", "libell_d_acheminement": "JARSY", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73139"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce9b2edbf24b0f26ea6d319de6e807db9d0cab4", "fields": {"nom_de_la_commune": "LANSLEBOURG MONT CENIS", "libell_d_acheminement": "LANSLEBOURG MONT CENIS", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73143"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc8dc91544b6466d7ec40e0953ab6ad4365e132", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "BELLENTRE", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d3111166c1f865b11edb021b812ef9e5688790", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "LA COTE D AIME", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e584a9288f4dbfe0f4efdbaa66e8d5bd127f5e96", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "VALEZAN", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b711503e4fbe0efeafd9b9919cf5713a6012476e", "fields": {"nom_de_la_commune": "LES MARCHES", "libell_d_acheminement": "LES MARCHES", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73151"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996198fd721ad6f530b8148460e9b4afccf31f8d", "fields": {"nom_de_la_commune": "MARCIEUX", "libell_d_acheminement": "MARCIEUX", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73152"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637cde6d6470ef3444612cca25847b3d7b350d9f", "fields": {"nom_de_la_commune": "MARTHOD", "libell_d_acheminement": "MARTHOD", "code_postal": "73400", "coordonnees_gps": [45.7638408088, 6.43638316061], "code_commune_insee": "73153"}, "geometry": {"type": "Point", "coordinates": [6.43638316061, 45.7638408088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd284101a7a7f2cc92a2427782cb0fb8364d4d7e", "fields": {"nom_de_la_commune": "LES MOLLETTES", "libell_d_acheminement": "LES MOLLETTES", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73159"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c28f8eed57c66c3479799ead735bb742327f760", "fields": {"nom_de_la_commune": "MONTHION", "libell_d_acheminement": "MONTHION", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73170"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8228655fb18efdfb22952ce7439e208664eca9", "fields": {"nom_de_la_commune": "MOTZ", "libell_d_acheminement": "MOTZ", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73180"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b44b8e2b8a81f9559b87ea6036babfd7e25ea3f", "fields": {"nom_de_la_commune": "NANCES", "libell_d_acheminement": "NANCES", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73184"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70432b3fdd9b54099f57ec672c1683610e5d0d7b", "fields": {"nom_de_la_commune": "LA LECHERE", "libell_d_acheminement": "LA LECHERE", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73187"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13eca05ab7b62b1fe430f46dfc603c461f367da4", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "NAVES", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9ecd24d44b0fc611458bf3756a42e70bc1ce227", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "PETIT COEUR", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad09f2810fc7d3673eb2f3124ef6a1719ba546e9", "fields": {"nom_de_la_commune": "NOTRE DAME DES MILLIERES", "libell_d_acheminement": "NOTRE DAME DES MILLIERES", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73188"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb1a6f57f9206e828fe7baf38f514ee670f0e47", "fields": {"nom_de_la_commune": "LA PERRIERE", "libell_d_acheminement": "LA PERRIERE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73198"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e8b12547b3f285ef88437a1e5d0daee09629ed", "fields": {"nom_de_la_commune": "PLANAISE", "libell_d_acheminement": "PLANAISE", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73200"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "617cdd8a7e67b23f6289adbfbf3965455c515df6", "fields": {"code_postal": "73300", "code_commune_insee": "73203", "libell_d_acheminement": "PONTAMAFREY MONTPASCAL", "ligne_5": "MONTPASCAL", "nom_de_la_commune": "PONTAMAFREY MONTPASCAL", "coordonnees_gps": [45.2555418724, 6.33510660794]}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f5c42a590fdebf4869f928b3f0b9adb03d3d46", "fields": {"nom_de_la_commune": "PRESLE", "libell_d_acheminement": "PRESLE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73207"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fbecb26d04cb6120531aa2efb63cf53fa6b21a", "fields": {"nom_de_la_commune": "RANDENS", "libell_d_acheminement": "RANDENS", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73212"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22fcca20cd82d68aa8c1b138035a84a8ebafb6e", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73215"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524e53ae2aca727de3d21c1b99a49b2e9244ef50", "fields": {"nom_de_la_commune": "STE HELENE DU LAC", "libell_d_acheminement": "STE HELENE DU LAC", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73240"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a9593e1a1193ca325bdb5fc3ae95bc4fcd0763", "fields": {"nom_de_la_commune": "STE HELENE SUR ISERE", "libell_d_acheminement": "STE HELENE SUR ISERE", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73241"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fd7c206127f8e39f26b6d00de130c09981bbcb", "fields": {"code_postal": "73100", "code_commune_insee": "73263", "libell_d_acheminement": "ST OFFENGE", "ligne_5": "ST OFFENGE DESSUS", "nom_de_la_commune": "ST OFFENGE", "coordonnees_gps": [45.7110465411, 5.94212260662]}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19e1df54e9c03d09ef21957d31aa7da5c900e2c", "fields": {"nom_de_la_commune": "ST OYEN", "libell_d_acheminement": "ST OYEN", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73266"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30efe2fe12605ca6fb6107dc14bc9a77bca32b3d", "fields": {"nom_de_la_commune": "ST PIERRE D ALBIGNY", "libell_d_acheminement": "ST PIERRE D ALBIGNY", "code_postal": "73250", "coordonnees_gps": [45.5739753959, 6.15768953868], "code_commune_insee": "73270"}, "geometry": {"type": "Point", "coordinates": [6.15768953868, 45.5739753959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cc19552781e7f98c03a508cbd1cd7d3b85725b", "fields": {"nom_de_la_commune": "ST PIERRE DE BELLEVILLE", "libell_d_acheminement": "ST PIERRE DE BELLEVILLE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73272"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68af5cb85dee15bd84987127b865c655a85a5618", "fields": {"nom_de_la_commune": "ST PIERRE DE GENEBROZ", "libell_d_acheminement": "ST PIERRE DE GENEBROZ", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73275"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e09b585871361118c8efe28ac0f18f7e7ea4c6", "fields": {"nom_de_la_commune": "TRESSERVE", "libell_d_acheminement": "TRESSERVE", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73300"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350cabc52a7e38e41c5e7d0a9c579257e2ccfc28", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73302"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927adc3ba4b7a10fce873b34f08d538dfb29da80", "fields": {"nom_de_la_commune": "VALMEINIER", "libell_d_acheminement": "VALMEINIER", "code_postal": "73450", "coordonnees_gps": [45.1313081398, 6.44772577617], "code_commune_insee": "73307"}, "geometry": {"type": "Point", "coordinates": [6.44772577617, 45.1313081398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6773a9c0a90b5181644c7797027f3c3c936592", "fields": {"nom_de_la_commune": "LE VERNEIL", "libell_d_acheminement": "LE VERNEIL", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73311"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "473610decab11af19190cb35b7c662ee147c3919", "fields": {"nom_de_la_commune": "VILLARD D HERY", "libell_d_acheminement": "VILLARD D HERY", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73314"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2891905e0c10c38c23126c19cccd82be2ab2bbc4", "fields": {"nom_de_la_commune": "VILLARD LEGER", "libell_d_acheminement": "VILLARD LEGER", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73315"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a51bd8111a4ef1bbf48856892bb7f03a3ef4c3", "fields": {"nom_de_la_commune": "VILLARODIN BOURGET", "libell_d_acheminement": "VILLARODIN BOURGET", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73322"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fe0a08f462f06bc333de0a71ec65a17c071525", "fields": {"nom_de_la_commune": "VILLAROGER", "libell_d_acheminement": "VILLAROGER", "code_postal": "73640", "coordonnees_gps": [45.5779597049, 6.92431874629], "code_commune_insee": "73323"}, "geometry": {"type": "Point", "coordinates": [6.92431874629, 45.5779597049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059eed4a8d612f863a1032a256309cedf8343ac3", "fields": {"nom_de_la_commune": "YENNE", "libell_d_acheminement": "YENNE", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73330"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a138ff38e4aa908875e812473c0b330b789436f3", "fields": {"nom_de_la_commune": "ALLONZIER LA CAILLE", "libell_d_acheminement": "ALLONZIER LA CAILLE", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74006"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb69c4aeeee743e56324f01addc852959a799be", "fields": {"nom_de_la_commune": "AMANCY", "libell_d_acheminement": "AMANCY", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74007"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f2b7aab2ae3a165d219d487dd0aa25c7a9ca22", "fields": {"nom_de_la_commune": "AMBILLY", "libell_d_acheminement": "AMBILLY", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74008"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ed8f4a9f4f814fad32327f761e84242a3ac186", "fields": {"nom_de_la_commune": "ANNECY", "libell_d_acheminement": "ANNECY", "code_postal": "74000", "coordonnees_gps": [45.8901612835, 6.12568603812], "code_commune_insee": "74010"}, "geometry": {"type": "Point", "coordinates": [6.12568603812, 45.8901612835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8546e5765b96a5f94ace8e1ec2d3b2060ab8ac3f", "fields": {"nom_de_la_commune": "ANNEMASSE", "libell_d_acheminement": "ANNEMASSE", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74012"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080f55080722907ca12e42a93e51cbabd334586f", "fields": {"code_postal": "74300", "code_commune_insee": "74014", "libell_d_acheminement": "ARACHES LA FRASSE", "ligne_5": "LES CARROZ D ARACHES", "nom_de_la_commune": "ARACHES LA FRASSE", "coordonnees_gps": [46.0342131745, 6.61842009953]}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d200857e7457e81652cd83014d6457b854f860dc", "fields": {"nom_de_la_commune": "AVIERNOZ", "libell_d_acheminement": "AVIERNOZ", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74022"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df34b827c9078efa0da2c9f0407806b55984f9d2", "fields": {"nom_de_la_commune": "LE BIOT", "libell_d_acheminement": "LE BIOT", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74034"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027548d234b90b375c08a44ce18a001eb8fd9ccd", "fields": {"nom_de_la_commune": "BLOYE", "libell_d_acheminement": "BLOYE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74035"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708d9101561c8ec6aaf8f3455462462601d30798", "fields": {"nom_de_la_commune": "BOGEVE", "libell_d_acheminement": "BOGEVE", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74038"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eda03bb466a9ddaa50f11ad596d7f65165e2164", "fields": {"nom_de_la_commune": "BONNE", "libell_d_acheminement": "BONNE", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74040"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50539663a6b998b4c6e59784d8d95095ea6cfc76", "fields": {"nom_de_la_commune": "BONNEVILLE", "libell_d_acheminement": "BONNEVILLE", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74042"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c378d9f3272837cc71fd3996863fcff494804c", "fields": {"nom_de_la_commune": "CHAINAZ LES FRASSES", "libell_d_acheminement": "CHAINAZ LES FRASSES", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74054"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7379042930546605f263d2642c67f85231225e02", "fields": {"nom_de_la_commune": "CHALLONGES", "libell_d_acheminement": "CHALLONGES", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74055"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a590229356d664a8ad36f2cffe60488055f7a4c7", "fields": {"code_postal": "74400", "code_commune_insee": "74056", "libell_d_acheminement": "CHAMONIX MONT BLANC", "ligne_5": "LES PRAZ DE CHAMONIX", "nom_de_la_commune": "CHAMONIX MONT BLANC", "coordonnees_gps": [45.931307263, 6.92411845534]}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a064e65eab6e34e41d6ee732347bf8c8b5aab4b7", "fields": {"nom_de_la_commune": "CHAVANOD", "libell_d_acheminement": "CHAVANOD", "code_postal": "74650", "coordonnees_gps": [45.8837755327, 6.04934833272], "code_commune_insee": "74067"}, "geometry": {"type": "Point", "coordinates": [6.04934833272, 45.8837755327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf8c86bf4c9f2ae621b3110c57b87170d42718b", "fields": {"nom_de_la_commune": "CHENE EN SEMINE", "libell_d_acheminement": "CHENE EN SEMINE", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74068"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37bdc6431487426a387fe540e71672655c5d8231", "fields": {"nom_de_la_commune": "CHILLY", "libell_d_acheminement": "CHILLY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74075"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a3b71605c09dc464859ef5a1c6496aacb7b25d", "fields": {"code_postal": "74270", "code_commune_insee": "74077", "libell_d_acheminement": "CLARAFOND ARCINE", "ligne_5": "ARCINE", "nom_de_la_commune": "CLARAFOND ARCINE", "coordonnees_gps": [46.0202121912, 5.92961082013]}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ef03e21a739209daed00dd1182f94c4f72e34a", "fields": {"nom_de_la_commune": "LES CONTAMINES MONTJOIE", "libell_d_acheminement": "LES CONTAMINES MONTJOIE", "code_postal": "74170", "coordonnees_gps": [45.8240346924, 6.73668125318], "code_commune_insee": "74085"}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118dec3e87d0d54de24dc21d505e24dba1e96847", "fields": {"code_postal": "74150", "code_commune_insee": "74095", "libell_d_acheminement": "CREMPIGNY BONNEGUETE", "ligne_5": "BONNEGUETE", "nom_de_la_commune": "CREMPIGNY BONNEGUETE", "coordonnees_gps": [45.8869887295, 5.94373659019]}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa5135dec9e2d12bb0e7f0ea4cd31eb07f9b005", "fields": {"nom_de_la_commune": "CRUSEILLES", "libell_d_acheminement": "CRUSEILLES", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74096"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22e2b237aa4482d67e8c69a89ca1ec639c3fe32", "fields": {"nom_de_la_commune": "CUVAT", "libell_d_acheminement": "CUVAT", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74098"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29fe06a332e1a146fd4cf98379343401f0d754b0", "fields": {"nom_de_la_commune": "DOMANCY", "libell_d_acheminement": "DOMANCY", "code_postal": "74700", "coordonnees_gps": [45.935449139, 6.60325360691], "code_commune_insee": "74103"}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48edb6d70d8f9f41a4ff043f5514c148ac413db8", "fields": {"nom_de_la_commune": "DOUSSARD", "libell_d_acheminement": "DOUSSARD", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74104"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e36d9f47a3b1bb0760e3a2464e2c3db9c7dda1", "fields": {"nom_de_la_commune": "DROISY", "libell_d_acheminement": "DROISY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74107"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab3b5b07de77147bd98cd739a570e1929982f06", "fields": {"nom_de_la_commune": "EVIAN LES BAINS", "libell_d_acheminement": "EVIAN LES BAINS", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74119"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d54f01f2ad1ca2be839afacd844dcbc0f158d2e", "fields": {"nom_de_la_commune": "EVIRES", "libell_d_acheminement": "EVIRES", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74120"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9ffe87889f2984de27c56a276f6f3ec4b63802", "fields": {"code_postal": "74210", "code_commune_insee": "74123", "libell_d_acheminement": "FAVERGES SEYTHENEX", "ligne_5": "SEYTHENEX", "nom_de_la_commune": "FAVERGES SEYTHENEX", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4d4189d51145ffb2889583ff67292f7c11a7a5", "fields": {"nom_de_la_commune": "FESSY", "libell_d_acheminement": "FESSY", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74126"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e6028cb8c2e78279df31b155c707a75adfd9885", "fields": {"nom_de_la_commune": "FETERNES", "libell_d_acheminement": "FETERNES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74127"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a558dfce27653ec4b914ce6aa67716fa224c89e7", "fields": {"nom_de_la_commune": "HAUTEVILLE SUR FIER", "libell_d_acheminement": "HAUTEVILLE SUR FIER", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74141"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23861271c30c166c68c20e2b5a7453ec0200be0", "fields": {"nom_de_la_commune": "LOVAGNY", "libell_d_acheminement": "LOVAGNY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74152"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f370a624d28c41dec16a6ae8de1ec73f3478670", "fields": {"nom_de_la_commune": "MANIGOD", "libell_d_acheminement": "MANIGOD", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74160"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882f5778b380e74fa253dd7905afa14daf467cd3", "fields": {"nom_de_la_commune": "MARNAZ", "libell_d_acheminement": "MARNAZ", "code_postal": "74460", "coordonnees_gps": [46.0519838035, 6.5227876317], "code_commune_insee": "74169"}, "geometry": {"type": "Point", "coordinates": [6.5227876317, 46.0519838035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe75e4272eed109dc678fd38b060d0f04df75d41", "fields": {"nom_de_la_commune": "MASSONGY", "libell_d_acheminement": "MASSONGY", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74171"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a69eae3125e582942cfca6cc05d3373e3ce564", "fields": {"nom_de_la_commune": "MEGEVE", "libell_d_acheminement": "MEGEVE", "code_postal": "74120", "coordonnees_gps": [45.8402620408, 6.61210896924], "code_commune_insee": "74173"}, "geometry": {"type": "Point", "coordinates": [6.61210896924, 45.8402620408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0c34c9ce0f8b643226818f0b4927e4c50f3e42", "fields": {"nom_de_la_commune": "MENTHON ST BERNARD", "libell_d_acheminement": "MENTHON ST BERNARD", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74176"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130a3d995cf773795c08d270600ea386ac7cb063", "fields": {"nom_de_la_commune": "MENTHONNEX SOUS CLERMONT", "libell_d_acheminement": "MENTHONNEX SOUS CLERMONT", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74178"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddabbd233f87355565d93f823888ee23682f5ac1", "fields": {"nom_de_la_commune": "MESIGNY", "libell_d_acheminement": "MESIGNY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74179"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bdacc4743f84861b3831d5d19716da1cfd4b45", "fields": {"nom_de_la_commune": "MINZIER", "libell_d_acheminement": "MINZIER", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74184"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60210ef9df4eb6cee0906e2e00ec4aaf5e6d7ec8", "fields": {"code_postal": "74560", "code_commune_insee": "74185", "libell_d_acheminement": "MONNETIER MORNEX", "ligne_5": "ESSERTS SALEVE", "nom_de_la_commune": "MONNETIER MORNEX", "coordonnees_gps": [46.1345324619, 6.20396278518]}, "geometry": {"type": "Point", "coordinates": [6.20396278518, 46.1345324619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae23a35a81a3910f9e4e30348195968f8074f717", "fields": {"nom_de_la_commune": "NONGLARD", "libell_d_acheminement": "NONGLARD", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74202"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c0825e64dd87e9ebb3436b4e03ebc63513759e", "fields": {"nom_de_la_commune": "ORCIER", "libell_d_acheminement": "ORCIER", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74206"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84130469ea2ee10a17f705d729d41782be32100a", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "74190", "coordonnees_gps": [45.9541023994, 6.74002173102], "code_commune_insee": "74208"}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937fa19c128ac9096c00cd47d82dc292bcb08d39", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "MONT BLANC D ASSY", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757334364a1bd39179e3b8ada8d39a9a63bdf235", "fields": {"nom_de_la_commune": "PERRIGNIER", "libell_d_acheminement": "PERRIGNIER", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74210"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82aadbbdaf33a8ccb4f69c7120f077256412570", "fields": {"nom_de_la_commune": "ST EUSEBE", "libell_d_acheminement": "ST EUSEBE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74231"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0cea592ae80735057e121ef0b4f1b9162f40b3", "fields": {"code_postal": "74170", "code_commune_insee": "74236", "libell_d_acheminement": "ST GERVAIS LES BAINS", "ligne_5": "ST NICOLAS DE VEROCE", "nom_de_la_commune": "ST GERVAIS LES BAINS", "coordonnees_gps": [45.8240346924, 6.73668125318]}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa209c99340c88c4df8497f332478f62f6adaa5", "fields": {"nom_de_la_commune": "ST JEOIRE", "libell_d_acheminement": "ST JEOIRE EN FAUCIGNY", "code_postal": "74490", "coordonnees_gps": [46.1756757633, 6.49134958977], "code_commune_insee": "74241"}, "geometry": {"type": "Point", "coordinates": [6.49134958977, 46.1756757633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1c86343a4ae5e211549b96f02f6398afb577a1", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74252"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919c83fb8734f2892c71d642022080c894ea51c3", "fields": {"nom_de_la_commune": "SAMOENS", "libell_d_acheminement": "SAMOENS", "code_postal": "74340", "coordonnees_gps": [46.0879560576, 6.74310172103], "code_commune_insee": "74258"}, "geometry": {"type": "Point", "coordinates": [6.74310172103, 46.0879560576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f31bc8345290414f84c2b2fadc407c38282a98d", "fields": {"nom_de_la_commune": "SCIEZ", "libell_d_acheminement": "SCIEZ", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74263"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e8792940fc4522f38d30029060061eeedcd382", "fields": {"nom_de_la_commune": "SEYNOD", "libell_d_acheminement": "SEYNOD", "code_postal": "74600", "coordonnees_gps": [45.8556562518, 6.080880357], "code_commune_insee": "74268"}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dbae10f4735980d8095a1ecf1b62188aa4597b", "fields": {"code_postal": "74600", "code_commune_insee": "74268", "libell_d_acheminement": "SEYNOD", "ligne_5": "BALMONT", "nom_de_la_commune": "SEYNOD", "coordonnees_gps": [45.8556562518, 6.080880357]}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f670074f7284db827b0ed5611cf3a9d22e92f933", "fields": {"nom_de_la_commune": "SILLINGY", "libell_d_acheminement": "SILLINGY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74272"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a4c56179f030b162d1a042eb6a8a7557470fc8", "fields": {"nom_de_la_commune": "AUMETZ", "libell_d_acheminement": "AUMETZ", "code_postal": "57710", "coordonnees_gps": [49.4142056636, 5.96361653857], "code_commune_insee": "57041"}, "geometry": {"type": "Point", "coordinates": [5.96361653857, 49.4142056636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4634f0bee139eb31cc1c14ff62440ddc221185ee", "fields": {"nom_de_la_commune": "AVRICOURT", "libell_d_acheminement": "AVRICOURT", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57042"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217d838fdf53fa33f4247b82d0a81dfa1d645be6", "fields": {"nom_de_la_commune": "BASSING", "libell_d_acheminement": "BASSING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57053"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94b5e004fd92df37707a514b0d30f75d5afa15a", "fields": {"nom_de_la_commune": "BAUDRECOURT", "libell_d_acheminement": "BAUDRECOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57054"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc6777644b167e337f71899255517f752c7b0d2", "fields": {"nom_de_la_commune": "BENING LES ST AVOLD", "libell_d_acheminement": "BENING LES ST AVOLD", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57061"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92282ff8718d57a91e83bdd7de91e104020f615", "fields": {"nom_de_la_commune": "BERLING", "libell_d_acheminement": "BERLING", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57064"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af701d27ec7b01493da4009beb91fc8f22d383f1", "fields": {"nom_de_la_commune": "BETTBORN", "libell_d_acheminement": "BETTBORN", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57071"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce31e5012f2356313a4a3ea0b792cb4ecedc9428", "fields": {"nom_de_la_commune": "BETTING", "libell_d_acheminement": "BETTING", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57073"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374c3c3040f483a3b83b172f3133317609843a3a", "fields": {"nom_de_la_commune": "BETTVILLER", "libell_d_acheminement": "BETTVILLER", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57074"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6bf123b0de8cb4ee7d04615ae8cd98a330eaad8", "fields": {"nom_de_la_commune": "BEZANGE LA PETITE", "libell_d_acheminement": "BEZANGE LA PETITE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57077"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcee1056edbfcf83d8f8291981defc59b689fefd", "fields": {"nom_de_la_commune": "BELLES FORETS", "libell_d_acheminement": "BELLES FORETS", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57086"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09436f405d2a9771edc1c761808bdb46331cdf1e", "fields": {"code_postal": "57930", "code_commune_insee": "57086", "libell_d_acheminement": "BELLES FORETS", "ligne_5": "BISPING", "nom_de_la_commune": "BELLES FORETS", "coordonnees_gps": [48.8282440547, 6.97722303236]}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f9bc678fadd6642b21daf29720e1ebd97c68e9", "fields": {"nom_de_la_commune": "BREISTROFF LA GRANDE", "libell_d_acheminement": "BREISTROFF LA GRANDE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57109"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11f7a7df238d891fca6f856a5f4c7c7b8ed35b2", "fields": {"nom_de_la_commune": "BROUVILLER", "libell_d_acheminement": "BROUVILLER", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57114"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5359d212e2af508c4af7bb0adf4b665e49422371", "fields": {"nom_de_la_commune": "BUHL LORRAINE", "libell_d_acheminement": "BUHL LORRAINE", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57119"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235ff5dbcdaaa19686d364b34df5a0af95039ad6", "fields": {"nom_de_la_commune": "CAPPEL", "libell_d_acheminement": "CAPPEL", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57122"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26afb7b55092ad2157f2823f1d61fc81544116f", "fields": {"code_postal": "57170", "code_commune_insee": "57132", "libell_d_acheminement": "CHATEAU SALINS", "ligne_5": "COUTURES", "nom_de_la_commune": "CHATEAU SALINS", "coordonnees_gps": [48.8272646435, 6.51547813008]}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083e01c7ab8764549d0638c0641d9781b9b9c29f", "fields": {"nom_de_la_commune": "CHENOIS", "libell_d_acheminement": "CHENOIS", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57138"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cd4ca4c0a20479ff155d2ed8c3a3e68db642a6", "fields": {"nom_de_la_commune": "CHIEULLES", "libell_d_acheminement": "CHIEULLES", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57142"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53064350188422094b1ae1538718e36c1a829bd4", "fields": {"code_postal": "57800", "code_commune_insee": "57144", "libell_d_acheminement": "COCHEREN", "ligne_5": "BELLE ROCHE", "nom_de_la_commune": "COCHEREN", "coordonnees_gps": [49.1440107234, 6.82296653278]}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec174aee770068aa733f1492352643ae5311c1a", "fields": {"nom_de_la_commune": "COURCELLES SUR NIED", "libell_d_acheminement": "COURCELLES SUR NIED", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57156"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1c5c3a44a3d06a3f40e9e1c760f474dc768564", "fields": {"nom_de_la_commune": "CUTTING", "libell_d_acheminement": "CUTTING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57161"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37133105e8eed7ef0abdb47747891725d5d1b6a", "fields": {"nom_de_la_commune": "DALHAIN", "libell_d_acheminement": "DALHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57166"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870b43f8692d50768e80d0a6d3d7cccdc2f0c4ec", "fields": {"nom_de_la_commune": "DALSTEIN", "libell_d_acheminement": "DALSTEIN", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57167"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6af3a33f3934dc054d9a6b4c04add9a34d7f329", "fields": {"nom_de_la_commune": "DANNELBOURG", "libell_d_acheminement": "DANNELBOURG", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57169"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f71e638485bf42576d5b92c1ecce646495b92b5", "fields": {"nom_de_la_commune": "DOLVING", "libell_d_acheminement": "DOLVING", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57180"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05dafb5ca07e72a1ba85afe2fb83e145a866670f", "fields": {"nom_de_la_commune": "DOMNOM LES DIEUZE", "libell_d_acheminement": "DOMNOM LES DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57181"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c543d9ececbd45737d755b6965d5fd25663a4da", "fields": {"nom_de_la_commune": "DONJEUX", "libell_d_acheminement": "DONJEUX", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57182"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be824c5164489f1e8fa648bcc6b2e6e8ee31227f", "fields": {"nom_de_la_commune": "ELVANGE", "libell_d_acheminement": "ELVANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57190"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0402f6ca4e8aa971b5fb6fb789d07f50ba48774", "fields": {"nom_de_la_commune": "ERSTROFF", "libell_d_acheminement": "ERSTROFF", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57198"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab73b8cf91417677354949451b5878429781d71", "fields": {"nom_de_la_commune": "FAILLY", "libell_d_acheminement": "FAILLY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57204"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb5c94f729fa85ed8141b9ba93349fb987590c0", "fields": {"nom_de_la_commune": "FALCK", "libell_d_acheminement": "FALCK", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57205"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7c536ead1f756feb6fb0a5a472c060feb7e359", "fields": {"nom_de_la_commune": "FAMECK", "libell_d_acheminement": "FAMECK", "code_postal": "57290", "coordonnees_gps": [49.3041832839, 6.102475564], "code_commune_insee": "57206"}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5065c9e788a801b2527659f5db020ad10164c2", "fields": {"nom_de_la_commune": "FARSCHVILLER", "libell_d_acheminement": "FARSCHVILLER", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57208"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac5be891c031ad7d567ee03e57942d6523be159", "fields": {"nom_de_la_commune": "FENETRANGE", "libell_d_acheminement": "FENETRANGE", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57210"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cba131bc4336f3a8b282d8ebcb305de4f7bd86a", "fields": {"nom_de_la_commune": "FEY", "libell_d_acheminement": "FEY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57212"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538fa17045263d9a59b0e34b7b1275a1e7b34a1d", "fields": {"nom_de_la_commune": "FLETRANGE", "libell_d_acheminement": "FLETRANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57217"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2233409ac76dd8207fab8643d22abd9de920bc3", "fields": {"nom_de_la_commune": "FLOCOURT", "libell_d_acheminement": "FLOCOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57220"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9857567250e4e59523cef441b61b6d3b4e2f5a", "fields": {"nom_de_la_commune": "FONTOY", "libell_d_acheminement": "FONTOY", "code_postal": "57650", "coordonnees_gps": [49.3593317292, 5.99165623532], "code_commune_insee": "57226"}, "geometry": {"type": "Point", "coordinates": [5.99165623532, 49.3593317292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e96b958f7b117bc088d88968f09dc03bbf0a73c", "fields": {"nom_de_la_commune": "FOULIGNY", "libell_d_acheminement": "FOULIGNY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57230"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da235c51ab10d15e6c5da3a702bff858356c7d0", "fields": {"nom_de_la_commune": "FRAUENBERG", "libell_d_acheminement": "FRAUENBERG", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57234"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a45c642ad194257da13a6d9d8c6f492973500f", "fields": {"code_postal": "57800", "code_commune_insee": "57240", "libell_d_acheminement": "FREYMING MERLEBACH", "ligne_5": "MERLEBACH", "nom_de_la_commune": "FREYMING MERLEBACH", "coordonnees_gps": [49.1440107234, 6.82296653278]}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31213fada3fce2cccbff609cb05a996293f156c", "fields": {"nom_de_la_commune": "GERBECOURT", "libell_d_acheminement": "GERBECOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57247"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694ad34b67edf6129ca065e9b893934da7d42fc9", "fields": {"nom_de_la_commune": "GLATIGNY", "libell_d_acheminement": "GLATIGNY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57249"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b97df9838e3e4af9da9b63154570317eb8ff8f5", "fields": {"nom_de_la_commune": "GOIN", "libell_d_acheminement": "GOIN", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57251"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a8f3e36c231b6851177b6979b65db7bc6c80d3", "fields": {"nom_de_la_commune": "GONDREXANGE", "libell_d_acheminement": "GONDREXANGE", "code_postal": "57815", "coordonnees_gps": [48.6914422966, 6.9074246458], "code_commune_insee": "57253"}, "geometry": {"type": "Point", "coordinates": [6.9074246458, 48.6914422966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce66684e0e9154b96adc313730b53ff1f64a182d", "fields": {"nom_de_la_commune": "GORZE", "libell_d_acheminement": "GORZE", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57254"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fd0b04855dce5a8597dc5dab35474573fe0c66", "fields": {"nom_de_la_commune": "GOSSELMING", "libell_d_acheminement": "GOSSELMING", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57255"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e316ae9c58cbffbf68def9ecd0cc29f795607d15", "fields": {"nom_de_la_commune": "GUEBENHOUSE", "libell_d_acheminement": "GUEBENHOUSE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57264"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4692915b51fe6896324fc8ef27b1dbde7d63cc3", "fields": {"nom_de_la_commune": "VAL DE BRIDE", "libell_d_acheminement": "VAL DE BRIDE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57270"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "753ebdb8b041fc64d1d70606ea459c77912dfee8", "fields": {"nom_de_la_commune": "GUERTING", "libell_d_acheminement": "GUERTING", "code_postal": "57880", "coordonnees_gps": [49.1848577986, 6.63106406972], "code_commune_insee": "57274"}, "geometry": {"type": "Point", "coordinates": [6.63106406972, 49.1848577986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2502b7338b1d3925e0c5115b80bb08dd22067434", "fields": {"nom_de_la_commune": "GUINKIRCHEN", "libell_d_acheminement": "GUINKIRCHEN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57277"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bf19bdcb385df72207c0ba214f845092bc284d2", "fields": {"nom_de_la_commune": "GUNTZVILLER", "libell_d_acheminement": "GUNTZVILLER", "code_postal": "57405", "coordonnees_gps": [48.7255604204, 7.15431817508], "code_commune_insee": "57280"}, "geometry": {"type": "Point", "coordinates": [7.15431817508, 48.7255604204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18420d3a4cf17fb6af4bc126bab440729fc51664", "fields": {"nom_de_la_commune": "HABOUDANGE", "libell_d_acheminement": "HABOUDANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57281"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edaabd95d79807afdc207cdb4769ea472e2096d6", "fields": {"nom_de_la_commune": "HAGONDANGE", "libell_d_acheminement": "HAGONDANGE", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57283"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cafe75dd558d7e0fdabec920b6231aa3cd7b2038", "fields": {"nom_de_la_commune": "BASSE HAM", "libell_d_acheminement": "BASSE HAM", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57287"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5c40e285c124c55585bebdcc543f2e9fba27ef", "fields": {"nom_de_la_commune": "HANNOCOURT", "libell_d_acheminement": "HANNOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57292"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c71414159993c45f9a2f244f9ad4f30f902ab73", "fields": {"nom_de_la_commune": "HAN SUR NIED", "libell_d_acheminement": "HAN SUR NIED", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57293"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68609a8fb6b5a1d61090c158f74044c8825e875e", "fields": {"nom_de_la_commune": "HARREBERG", "libell_d_acheminement": "HARREBERG", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57298"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6742d9bf275f0f4637f6b7cc9f4f3518cb92e3", "fields": {"nom_de_la_commune": "HASPELSCHIEDT", "libell_d_acheminement": "HASPELSCHIEDT", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57301"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5addf2704a9119c9e8db893ba32dc35b9f8dc0", "fields": {"nom_de_la_commune": "HAUT CLOCHER", "libell_d_acheminement": "HAUT CLOCHER", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57304"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac4d49e42c63a013ded554c70087727cb75b428", "fields": {"nom_de_la_commune": "HELLERING LES FENETRANGE", "libell_d_acheminement": "HELLERING LES FENETRANGE", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57310"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98feb075ff98aa2dca4722e668b1ca18677a1f15", "fields": {"nom_de_la_commune": "HENRIVILLE", "libell_d_acheminement": "HENRIVILLE", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57316"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed860d8992039b5b8d769eafde8c10707ab00763", "fields": {"nom_de_la_commune": "HERMELANGE", "libell_d_acheminement": "HERMELANGE", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57318"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "041538afa0b21510d59ae1d309b183223cce947f", "fields": {"nom_de_la_commune": "HILBESHEIM", "libell_d_acheminement": "HILBESHEIM", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57324"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fefcac357129ac20eeaff56c2ccca8840e6e4e9", "fields": {"nom_de_la_commune": "HOMBOURG HAUT", "libell_d_acheminement": "HOMBOURG HAUT", "code_postal": "57470", "coordonnees_gps": [49.1215723758, 6.78184199605], "code_commune_insee": "57332"}, "geometry": {"type": "Point", "coordinates": [6.78184199605, 49.1215723758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a93e3abfd9d6be6721821359e61030489eb8e1", "fields": {"nom_de_la_commune": "HONSKIRCH", "libell_d_acheminement": "HONSKIRCH", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57335"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf0f25724da949cbf8cc1ff378f23a161ac1294d", "fields": {"nom_de_la_commune": "HOTTVILLER", "libell_d_acheminement": "HOTTVILLER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57338"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846baebaa980237af2cad76913a5bfd754e4cf89", "fields": {"nom_de_la_commune": "HULTEHOUSE", "libell_d_acheminement": "HULTEHOUSE", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57339"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb00a189932ec4a35116e59a87851940b1bd991", "fields": {"nom_de_la_commune": "IBIGNY", "libell_d_acheminement": "IBIGNY", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57342"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c08eb5557b9db1a0460d0f11ec9ad1dadb90a85", "fields": {"nom_de_la_commune": "INGLANGE", "libell_d_acheminement": "INGLANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57345"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2584917b89e4805287ea7b04eb7a9cd54c5e9f1b", "fields": {"nom_de_la_commune": "JOUY AUX ARCHES", "libell_d_acheminement": "JOUY AUX ARCHES", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57350"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0aede925eeaaf3a30a144c333327f126379e2fa", "fields": {"nom_de_la_commune": "KIRVILLER", "libell_d_acheminement": "KIRVILLER", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57366"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a036d2591b9855346829bf731847a598df8a8e4d", "fields": {"nom_de_la_commune": "KNUTANGE", "libell_d_acheminement": "KNUTANGE", "code_postal": "57240", "coordonnees_gps": [49.3410176091, 6.04326749195], "code_commune_insee": "57368"}, "geometry": {"type": "Point", "coordinates": [6.04326749195, 49.3410176091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8521eda50bc36aa326c93e629fb5557e84ff76", "fields": {"nom_de_la_commune": "KUNTZIG", "libell_d_acheminement": "KUNTZIG", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57372"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835fc9aa10f7d822c888f9dd9ed2bda2b0dbb899", "fields": {"nom_de_la_commune": "LANEUVEVILLE EN SAULNOIS", "libell_d_acheminement": "LANEUVEVILLE EN SAULNOIS", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57381"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806d491f2b9bf4c54b66e9d24f6a3cfcbfb1e994", "fields": {"nom_de_la_commune": "LEMONCOURT", "libell_d_acheminement": "LEMONCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57391"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf3b4ad7eb65794d40ea095e4352744aae3b111", "fields": {"nom_de_la_commune": "LESSE", "libell_d_acheminement": "LESSE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57395"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafa32a72a6c2eb4ae1739624edc0b172eeee07d", "fields": {"nom_de_la_commune": "LORRY LES METZ", "libell_d_acheminement": "LORRY LES METZ", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57415"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be0f72824f30f79279be2fad1bec10cec21fab7", "fields": {"nom_de_la_commune": "LOUPERSHOUSE", "libell_d_acheminement": "LOUPERSHOUSE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57419"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8d4ef43a19879be7dfbe8a7a2db9a0923ab62d", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57422"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfa34cef1fb82bb42250fbf54c92460ac6e92d6", "fields": {"nom_de_la_commune": "LUPPY", "libell_d_acheminement": "LUPPY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57425"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb3e82081ddd91ca4074c512db544f04478c886", "fields": {"nom_de_la_commune": "MANY", "libell_d_acheminement": "MANY", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57442"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0c90b0d7a616a3737b8d8d213e9e4a48218c9b", "fields": {"nom_de_la_commune": "MARSAL", "libell_d_acheminement": "MARSAL", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57448"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e3683c68fb314d412dde1a23552a0e21163adf", "fields": {"nom_de_la_commune": "MEISENTHAL", "libell_d_acheminement": "MEISENTHAL", "code_postal": "57960", "coordonnees_gps": [48.965339221, 7.32931540364], "code_commune_insee": "57456"}, "geometry": {"type": "Point", "coordinates": [7.32931540364, 48.965339221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8522ad27c9a94868ddaa93fc999de87a6c0b06", "fields": {"nom_de_la_commune": "MERSCHWEILLER", "libell_d_acheminement": "MERSCHWEILLER", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57459"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2578982c8f0ccbb358de3817e260e4b764bdf8e9", "fields": {"nom_de_la_commune": "METZ", "libell_d_acheminement": "METZ", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57463"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4990212fd14164ebe6363c7c5975c537d4c714fd", "fields": {"nom_de_la_commune": "MITTELBRONN", "libell_d_acheminement": "MITTELBRONN", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57468"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fe382ccff5eb0a63bea455c81da29ed07c91ea7", "fields": {"nom_de_la_commune": "MITTERSHEIM", "libell_d_acheminement": "MITTERSHEIM", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57469"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a993d0bdd836d6c7999b918c66150a8c911d14", "fields": {"nom_de_la_commune": "MOLRING", "libell_d_acheminement": "MOLRING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57470"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50af1c36eb39c9af1a308c87a74b5255aa76c6a4", "fields": {"nom_de_la_commune": "MONTBRONN", "libell_d_acheminement": "MONTBRONN", "code_postal": "57415", "coordonnees_gps": [49.006798582, 7.31603337104], "code_commune_insee": "57477"}, "geometry": {"type": "Point", "coordinates": [7.31603337104, 49.006798582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaee5195ff04b5a93be010b3ec93928a4a468500", "fields": {"nom_de_la_commune": "MONTOY FLANVILLE", "libell_d_acheminement": "MONTOY FLANVILLE", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57482"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f3b18d978e066f40001079e8ee1c9746dd09f9", "fields": {"nom_de_la_commune": "MORVILLE SUR NIED", "libell_d_acheminement": "MORVILLE SUR NIED", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57486"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ca82133d4791f621a15fb7d67075f3eb03b0ee", "fields": {"nom_de_la_commune": "MOULINS LES METZ", "libell_d_acheminement": "MOULINS LES METZ", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57487"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf3b4712e3c80e0c72fcc93661dc7daf5b2110c", "fields": {"nom_de_la_commune": "MOUSSEY", "libell_d_acheminement": "MOUSSEY", "code_postal": "57770", "coordonnees_gps": [48.672173952, 6.77879019308], "code_commune_insee": "57488"}, "geometry": {"type": "Point", "coordinates": [6.77879019308, 48.672173952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa56bfab296f9160fad5cc97633bc8d8551801b", "fields": {"nom_de_la_commune": "MOUTERHOUSE", "libell_d_acheminement": "MOUTERHOUSE", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57489"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7af29ba7ec8659e849643971d084b2cd848fd25", "fields": {"nom_de_la_commune": "MOYEUVRE GRANDE", "libell_d_acheminement": "MOYEUVRE GRANDE", "code_postal": "57250", "coordonnees_gps": [49.2628995839, 6.0314436388], "code_commune_insee": "57491"}, "geometry": {"type": "Point", "coordinates": [6.0314436388, 49.2628995839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338e7ba0e5bf41d7512d8a51f6f0a7c9c3089595", "fields": {"nom_de_la_commune": "MULCEY", "libell_d_acheminement": "MULCEY", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57493"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3b0765c66845e7abf5229f1e928c2bedcd30fb9", "fields": {"nom_de_la_commune": "MUNSTER", "libell_d_acheminement": "MUNSTER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57494"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9592d470cc8539b48dd0543e7e20ebebd9567e19", "fields": {"nom_de_la_commune": "NELLING", "libell_d_acheminement": "NELLING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57497"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5332b7475ebe6d873fe026bbde3a62af792180cc", "fields": {"nom_de_la_commune": "MOUZON", "libell_d_acheminement": "MOUZON", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16239"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99bddbf1176082cd01813055c7a5dbfb803e1f5", "fields": {"nom_de_la_commune": "NERCILLAC", "libell_d_acheminement": "NERCILLAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16243"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7e4487e61cb21dc159228b322f354d20004dd2", "fields": {"nom_de_la_commune": "NIEUIL", "libell_d_acheminement": "NIEUIL", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16245"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b37f9c54bd070ab4b3265c41bdf10facb0dc34", "fields": {"nom_de_la_commune": "ORIOLLES", "libell_d_acheminement": "ORIOLLES", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16251"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e9d18376672774cd1c7567c4549deb438f743d", "fields": {"nom_de_la_commune": "ORIVAL", "libell_d_acheminement": "ORIVAL", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16252"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0720d71b326282078ea04ee215519b15a9ac8ce", "fields": {"nom_de_la_commune": "PAIZAY NAUDOUIN EMBOURIE", "libell_d_acheminement": "PAIZAY NAUDOUIN EMBOURIE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16253"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fde94292b67166dcdf86d35df0662ba0ccc491b", "fields": {"nom_de_la_commune": "PALLUAUD", "libell_d_acheminement": "PALLUAUD", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16254"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf98b52f014ca9270c71397c652797692171cf4", "fields": {"nom_de_la_commune": "LES PINS", "libell_d_acheminement": "LES PINS", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16261"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a99eb154e91448f2542719007ca6925f1eb16c", "fields": {"nom_de_la_commune": "PUYREAUX", "libell_d_acheminement": "PUYREAUX", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16272"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b215fc8b528fa4081ba2a5e1e7308446033961", "fields": {"nom_de_la_commune": "RIOUX MARTIN", "libell_d_acheminement": "RIOUX MARTIN", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16279"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e27f48297f1639427e508f19d76c13cd1ebd3a89", "fields": {"nom_de_la_commune": "LA ROCHEFOUCAULD", "libell_d_acheminement": "LA ROCHEFOUCAULD", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16281"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65da70dfb1ad784044f49f10bb01a91dd1dfebd3", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16282"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7f0b928db1e387c74b49f121bb9c2172308938", "fields": {"nom_de_la_commune": "ROUGNAC", "libell_d_acheminement": "ROUGNAC", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16285"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a080e8d4f957d2fdfdd242ebe75f6407158379d4", "fields": {"code_postal": "16170", "code_commune_insee": "16286", "libell_d_acheminement": "ROUILLAC", "ligne_5": "SONNEVILLE", "nom_de_la_commune": "ROUILLAC", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7c7c9a46eeba3af534343b8541243641979742b", "fields": {"nom_de_la_commune": "ROUZEDE", "libell_d_acheminement": "ROUZEDE", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16290"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c5d19a39f45ddbfd0e1086921bf47d666515b6", "fields": {"code_postal": "16120", "code_commune_insee": "16297", "libell_d_acheminement": "GRAVES ST AMANT", "ligne_5": "GRAVES", "nom_de_la_commune": "GRAVES ST AMANT", "coordonnees_gps": [45.5885415594, -0.0877285349114]}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf54aebf4991d2bbd1b86239d49a2f4226af6d1", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16302"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3798d597918ccf10190dd4677df4d7472b01c7f", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16315"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fd69894f9a5c53555554270e0cb22ef6f3c4a0", "fields": {"nom_de_la_commune": "ST FRAIGNE", "libell_d_acheminement": "ST FRAIGNE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16317"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04db1f20a9c160cd6a243ad77d0aa9b261710200", "fields": {"nom_de_la_commune": "ST GOURSON", "libell_d_acheminement": "ST GOURSON", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16325"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b24b97556574cf9df744305ada6dc966383e9d2", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16334"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb642e802f5f71d8ff70655b53f4a744378e486", "fields": {"nom_de_la_commune": "ST MARY", "libell_d_acheminement": "ST MARY", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16336"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de479e38456499c1ed179abee82e558208b41870", "fields": {"nom_de_la_commune": "ST MAURICE DES LIONS", "libell_d_acheminement": "ST MAURICE DES LIONS", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16337"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194aa39af695964a32f253fc58ab87625ffb8640", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD DE BARBEZIEUX", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16338"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b783512f260c59ad03652b308c0b40913a72e470", "fields": {"nom_de_la_commune": "ST MEME LES CARRIERES", "libell_d_acheminement": "ST MEME LES CARRIERES", "code_postal": "16720", "coordonnees_gps": [45.6447829784, -0.142945492938], "code_commune_insee": "16340"}, "geometry": {"type": "Point", "coordinates": [-0.142945492938, 45.6447829784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba172e7622c393ca8584e01adb5935c508de4241", "fields": {"nom_de_la_commune": "ST PROJET ST CONSTANT", "libell_d_acheminement": "ST PROJET ST CONSTANT", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16344"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc9bc68c1e38891b8929dc5014b33ed10663645", "fields": {"nom_de_la_commune": "ST SIMEUX", "libell_d_acheminement": "ST SIMEUX", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16351"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfa23561699d25c3db01ed69823e4c2066cb318", "fields": {"nom_de_la_commune": "ST SORNIN", "libell_d_acheminement": "ST SORNIN", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16353"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be09ceb48dd022423b67854d1e47bab5e8fc258f", "fields": {"nom_de_la_commune": "SIREUIL", "libell_d_acheminement": "SIREUIL", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16370"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f044a882fca549c4fe52573d730b6e0994708101", "fields": {"nom_de_la_commune": "SOUFFRIGNAC", "libell_d_acheminement": "SOUFFRIGNAC", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16372"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c74a3b9483e07209d78a0eaf84ba033866e04b", "fields": {"nom_de_la_commune": "SURIS", "libell_d_acheminement": "SURIS", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16376"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389de3500692f5f88a8178ca6ceb69c9c9167649", "fields": {"nom_de_la_commune": "TAIZE AIZIE", "libell_d_acheminement": "TAIZE AIZIE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16378"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccdea5249e649a0ff905b0f643ff5c3c5af7514", "fields": {"nom_de_la_commune": "TURGON", "libell_d_acheminement": "TURGON", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16389"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3a38eb69b6a2064c15d5a4144218437a86f429", "fields": {"nom_de_la_commune": "VILHONNEUR", "libell_d_acheminement": "VILHONNEUR", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16406"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615f5cfe45c309187b98ba93d92beeca69d073e6", "fields": {"nom_de_la_commune": "VILLEFAGNAN", "libell_d_acheminement": "VILLEFAGNAN", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16409"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d41b022807a3c704bab21a0f8d12303d1c5646", "fields": {"nom_de_la_commune": "VILLOGNON", "libell_d_acheminement": "VILLOGNON", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16414"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c452e4e6733844551a8da3504db430e388d05de0", "fields": {"nom_de_la_commune": "VOULGEZAC", "libell_d_acheminement": "VOULGEZAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16420"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75dd915f5a0adf13b98568133f44b070acf7fcbd", "fields": {"nom_de_la_commune": "VOUTHON", "libell_d_acheminement": "VOUTHON", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16421"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15c87e9594079c45aeb3f35160eba3ed567c99a5", "fields": {"nom_de_la_commune": "XAMBES", "libell_d_acheminement": "XAMBES", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16423"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85dfe92b6b024ab4367e432f25bf2a1fda1f1562", "fields": {"nom_de_la_commune": "YVRAC ET MALLEYRAND", "libell_d_acheminement": "YVRAC ET MALLEYRAND", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16425"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1daa7e84f0e47e18286ac3bc58649e5700e21b5", "fields": {"nom_de_la_commune": "AGUDELLE", "libell_d_acheminement": "AGUDELLE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17002"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb89472966da1e40fe2585fb25d65b57dfdd2db2", "fields": {"nom_de_la_commune": "ASNIERES LA GIRAUD", "libell_d_acheminement": "ASNIERES LA GIRAUD", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17022"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11415482051ee21c565da5efc356ae41cdedb416", "fields": {"nom_de_la_commune": "AUJAC", "libell_d_acheminement": "AUJAC", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17023"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f220f24f8c9b04be20bb5b4c51101510779e551e", "fields": {"nom_de_la_commune": "BALLON", "libell_d_acheminement": "BALLON", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17032"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8933e55a6088c2946dd98cc25cbb71226b0faac9", "fields": {"nom_de_la_commune": "BEAUVAIS SUR MATHA", "libell_d_acheminement": "BEAUVAIS SUR MATHA", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17037"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "808eea37143942a87e15a7631717f4d09b682e06", "fields": {"nom_de_la_commune": "BLANZAC LES MATHA", "libell_d_acheminement": "BLANZAC LES MATHA", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17048"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8352cf5a66769ce0bbecd35b2992f06581e38dff", "fields": {"nom_de_la_commune": "BOUGNEAU", "libell_d_acheminement": "BOUGNEAU", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17056"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d475118b959c04ae544b555374333464ab2f5c", "fields": {"nom_de_la_commune": "BOURCEFRANC LE CHAPUS", "libell_d_acheminement": "BOURCEFRANC LE CHAPUS", "code_postal": "17560", "coordonnees_gps": [45.8471469756, -1.13362480493], "code_commune_insee": "17058"}, "geometry": {"type": "Point", "coordinates": [-1.13362480493, 45.8471469756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370974126afc749685ff66258f1784f4f8c264a1", "fields": {"nom_de_la_commune": "BOUTENAC TOUVENT", "libell_d_acheminement": "BOUTENAC TOUVENT", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17060"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caac0b845d301bafe12be2ed81541e7df15528e2", "fields": {"nom_de_la_commune": "BRESDON", "libell_d_acheminement": "BRESDON", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17062"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71498850d51f2822f29e9485441ab1f37f9ee601", "fields": {"nom_de_la_commune": "BRIVES SUR CHARENTE", "libell_d_acheminement": "BRIVES SUR CHARENTE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17069"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35df840b2b1030f8ad63ba9e33c590c3ffe5bb72", "fields": {"nom_de_la_commune": "CABARIOT", "libell_d_acheminement": "CABARIOT", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17075"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bb5d19a440685174a5e52bbe2d2bf754c2c3c75", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17080"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b867644482a7e8bad148534446727efb8389c489", "fields": {"code_postal": "17480", "code_commune_insee": "17093", "libell_d_acheminement": "LE CHATEAU D OLERON", "ligne_5": "LA GACONNIERE", "nom_de_la_commune": "LE CHATEAU D OLERON", "coordonnees_gps": [45.8814200371, -1.21657707924]}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d44068b7e5ad95eb35b70cb371af2eb4b06f51", "fields": {"code_postal": "17480", "code_commune_insee": "17093", "libell_d_acheminement": "LE CHATEAU D OLERON", "ligne_5": "ORS", "nom_de_la_commune": "LE CHATEAU D OLERON", "coordonnees_gps": [45.8814200371, -1.21657707924]}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390725ca201f5173cf06dbefb59c262ca4a75356", "fields": {"nom_de_la_commune": "CIERZAC", "libell_d_acheminement": "CIERZAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17106"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbcddc3d8a98afd48b6819d076b9adf6f303078e", "fields": {"nom_de_la_commune": "CIRE D AUNIS", "libell_d_acheminement": "CIRE D AUNIS", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17107"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80527ea289a39c5a8f3bde98fb366b410792af1e", "fields": {"nom_de_la_commune": "CLION", "libell_d_acheminement": "CLION", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17111"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf751219951d414eef5c97e0687368cbd4176bfd", "fields": {"nom_de_la_commune": "LA CLISSE", "libell_d_acheminement": "LA CLISSE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17112"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6834c6469d718a7ce20588406a16b3816057b107", "fields": {"nom_de_la_commune": "LA CLOTTE", "libell_d_acheminement": "LA CLOTTE", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17113"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad398e28889dcc298914a10ed1a6a65ecb929e8f", "fields": {"nom_de_la_commune": "COIVERT", "libell_d_acheminement": "COIVERT", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17114"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521e798212761c4ab83e400a318163dfa70ab306", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17115"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aabe1802d5d2b39c232a0796f84c377b69531af4", "fields": {"nom_de_la_commune": "CORME ROYAL", "libell_d_acheminement": "CORME ROYAL", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17120"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7206d384cad1220c3a86961a39e62b3196d5d206", "fields": {"nom_de_la_commune": "COURANT", "libell_d_acheminement": "COURANT", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17124"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d64b4492be9e5fee04b0dd30713143da4f734c6", "fields": {"nom_de_la_commune": "COZES", "libell_d_acheminement": "COZES", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17131"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1c292f5aaf4890b1fe430d1a96c1e4d81bf957", "fields": {"nom_de_la_commune": "CRAVANS", "libell_d_acheminement": "CRAVANS", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17133"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810274be1f5fa0d07f9df6483b416f3fb272365a", "fields": {"nom_de_la_commune": "DOLUS D OLERON", "libell_d_acheminement": "DOLUS D OLERON", "code_postal": "17550", "coordonnees_gps": [45.9095924595, -1.25760715689], "code_commune_insee": "17140"}, "geometry": {"type": "Point", "coordinates": [-1.25760715689, 45.9095924595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3e9043b715630c0ae21acb2e4a81bc6d1f1dd5", "fields": {"nom_de_la_commune": "ECOYEUX", "libell_d_acheminement": "ECOYEUX", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17147"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc6956bb746fd4723e6131d2952bb7d7ef4bd80f", "fields": {"nom_de_la_commune": "LES EDUTS", "libell_d_acheminement": "LES EDUTS", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17149"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9b8be1db4092acbdea6a660f7a2c08753330386", "fields": {"nom_de_la_commune": "EXPIREMONT", "libell_d_acheminement": "EXPIREMONT", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17156"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ae1c7c48a0b0f4c5ce99fb9f0025eea4943c1b", "fields": {"nom_de_la_commune": "FONTAINE CHALENDRAY", "libell_d_acheminement": "FONTAINE CHALENDRAY", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17162"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1026d674d3b0174443ada7664f93a6e8a0c91b88", "fields": {"nom_de_la_commune": "FONTCOUVERTE", "libell_d_acheminement": "FONTCOUVERTE", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17164"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e31c33f7b9e22f126612e0eea9ae6f690d3663", "fields": {"nom_de_la_commune": "FONTENET", "libell_d_acheminement": "FONTENET", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17165"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d395203841a2d2b8fa265c61d06796bdfd1be47a", "fields": {"nom_de_la_commune": "FOURAS", "libell_d_acheminement": "FOURAS", "code_postal": "17450", "coordonnees_gps": [45.9868352342, -1.03911420802], "code_commune_insee": "17168"}, "geometry": {"type": "Point", "coordinates": [-1.03911420802, 45.9868352342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c357c1532ca7686f6bccfa937309726e866a2dc4", "fields": {"nom_de_la_commune": "GEAY", "libell_d_acheminement": "GEAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17171"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4c8b6e29557c7ec665aa8193b599f6e0dd4de7", "fields": {"nom_de_la_commune": "LA GENETOUZE", "libell_d_acheminement": "LA GENETOUZE", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17173"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58aab54cd47b5192b6637617b352c4cd5cdd6439", "fields": {"nom_de_la_commune": "GENOUILLE", "libell_d_acheminement": "GENOUILLE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17174"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78df3a1e56813497d777cecfecfd8c3b9f4ee5f2", "fields": {"nom_de_la_commune": "LE GICQ", "libell_d_acheminement": "LE GICQ", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17177"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "520985e8b9af82311ecfbfa957b13eff9481532f", "fields": {"nom_de_la_commune": "GOURVILLETTE", "libell_d_acheminement": "GOURVILLETTE", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17180"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac03477dd980bd791bbca7bb6b239a36a1d5c0d0", "fields": {"nom_de_la_commune": "GUITINIERES", "libell_d_acheminement": "GUITINIERES", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17187"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa8161fcb158779c70e9a573546e475add41e1a", "fields": {"code_postal": "17320", "code_commune_insee": "17189", "libell_d_acheminement": "HIERS BROUAGE", "ligne_5": "BROUAGE", "nom_de_la_commune": "HIERS BROUAGE", "coordonnees_gps": [45.8153693416, -1.06418747186]}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33921a5f759405bca60d7b2f9f1a4a6a64d3334", "fields": {"nom_de_la_commune": "LONZAC", "libell_d_acheminement": "LONZAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17209"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe61fe52a93386d46ce9729ef24f83fbbbcb499e", "fields": {"nom_de_la_commune": "LOZAY", "libell_d_acheminement": "LOZAY", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17213"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "961054160e9bc5147b85528229471088d1e177b4", "fields": {"nom_de_la_commune": "LUSSANT", "libell_d_acheminement": "LUSSANT", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17216"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d03eead49b135bb7b20f79f1b2f20cf5d55aa8", "fields": {"nom_de_la_commune": "MARSAIS", "libell_d_acheminement": "MARSAIS", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17221"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32971b5f612bf93876119586a2a31d48dbfd6c1c", "fields": {"code_postal": "17700", "code_commune_insee": "17221", "libell_d_acheminement": "MARSAIS", "ligne_5": "BOISSE", "nom_de_la_commune": "MARSAIS", "coordonnees_gps": [46.1163770552, -0.726851455037]}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12083453a413905130257d97b75561f3f75e6ed", "fields": {"nom_de_la_commune": "MARSILLY", "libell_d_acheminement": "MARSILLY", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17222"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825e4f6553d294519dccd052cfd2c6636a54c71a", "fields": {"nom_de_la_commune": "LES MATHES", "libell_d_acheminement": "LES MATHES", "code_postal": "17570", "coordonnees_gps": [45.6992032727, -1.14778686925], "code_commune_insee": "17225"}, "geometry": {"type": "Point", "coordinates": [-1.14778686925, 45.6992032727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064959397707e664e8740e3a8791d0f6ceb60974", "fields": {"nom_de_la_commune": "MEUX", "libell_d_acheminement": "MEUX", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17233"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67dffa7203b058e318a02a7d8345bcffefb6c2b", "fields": {"code_postal": "17150", "code_commune_insee": "17236", "libell_d_acheminement": "MIRAMBEAU", "ligne_5": "PETIT NIORT", "nom_de_la_commune": "MIRAMBEAU", "coordonnees_gps": [45.37045546, -0.599761986367]}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188854a865579bfa290eaa705c1dc4f858f3c9dd", "fields": {"nom_de_la_commune": "MONTGUYON", "libell_d_acheminement": "MONTGUYON", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17241"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29db9019079be895f6a8bf495160fffa769e252f", "fields": {"nom_de_la_commune": "MORNAC SUR SEUDRE", "libell_d_acheminement": "MORNAC SUR SEUDRE", "code_postal": "17113", "coordonnees_gps": [45.707641871, -1.02176900178], "code_commune_insee": "17247"}, "geometry": {"type": "Point", "coordinates": [-1.02176900178, 45.707641871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156dcac58429bcc0a86647cf1854b9f14286690e", "fields": {"nom_de_la_commune": "MORTAGNE SUR GIRONDE", "libell_d_acheminement": "MORTAGNE SUR GIRONDE", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17248"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a6771eaa1ca069b15a39c40d7208bdfb8ec93b", "fields": {"nom_de_la_commune": "MORTIERS", "libell_d_acheminement": "MORTIERS", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17249"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6476962c61ced6bdb71a5c50865ccd2ac06e90", "fields": {"nom_de_la_commune": "NACHAMPS", "libell_d_acheminement": "NACHAMPS", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17254"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8d6d6b202d615d85bd90169995c98037c10ae3", "fields": {"nom_de_la_commune": "NIEUL SUR MER", "libell_d_acheminement": "NIEUL SUR MER", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17264"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927b68546a92b08f5d95092babc8e2d4a0dce9fd", "fields": {"nom_de_la_commune": "NUAILLE D AUNIS", "libell_d_acheminement": "NUAILLE D AUNIS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17267"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de708ab5a82130d00c210725dafee3ab490adc1", "fields": {"nom_de_la_commune": "ORIGNOLLES", "libell_d_acheminement": "ORIGNOLLES", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17269"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0e4870670f1d765c7ea7d29bb80269ed4c0f27", "fields": {"nom_de_la_commune": "OZILLAC", "libell_d_acheminement": "OZILLAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17270"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d8118a25be0c5bfc5f38a6e151d4fc9f0b7116", "fields": {"nom_de_la_commune": "PAILLE", "libell_d_acheminement": "PAILLE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17271"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521c4e28ef6e573996d6d8086bb3cde03ccf4fc8", "fields": {"nom_de_la_commune": "LALANNE", "libell_d_acheminement": "LALANNE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65249"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5407e94ff4c50a7bc363790de322bb4aab5a6bd7", "fields": {"nom_de_la_commune": "LAMARQUE PONTACQ", "libell_d_acheminement": "LAMARQUE PONTACQ", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65252"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "134d7466c757bde676bc418ec26412c9f6279dea", "fields": {"nom_de_la_commune": "LIBAROS", "libell_d_acheminement": "LIBAROS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65274"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2a0d242d7386c10bde982a0e8b25ec290ac3ed", "fields": {"nom_de_la_commune": "LORTET", "libell_d_acheminement": "LORTET", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65279"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fec0638097a6ccb5f80d530aa3174dd7bd8490", "fields": {"nom_de_la_commune": "LOUCRUP", "libell_d_acheminement": "LOUCRUP", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65281"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9950b80380fe2ca8a3bef75b8c6cabc762ab7e1", "fields": {"nom_de_la_commune": "LOUDERVIELLE", "libell_d_acheminement": "LOUDERVIELLE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65283"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410754c1f6391540bc02857ccb7f5d1962bbadcc", "fields": {"nom_de_la_commune": "LUBRET ST LUC", "libell_d_acheminement": "LUBRET ST LUC", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65288"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a7e0aea44be23fac944e54e9e456c0a2b7c8e2", "fields": {"nom_de_la_commune": "LUGAGNAN", "libell_d_acheminement": "LUGAGNAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65291"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42de1e35992bf8d392959e07ac6cc50d221e9bf8", "fields": {"nom_de_la_commune": "LUSTAR", "libell_d_acheminement": "LUSTAR", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65293"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2828bd84c0ae0073e18cec33e22fa955843c10", "fields": {"nom_de_la_commune": "MANSAN", "libell_d_acheminement": "MANSAN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65297"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29660d47ef3d1b370815654c7a11c0806b84cf7c", "fields": {"nom_de_la_commune": "MARQUERIE", "libell_d_acheminement": "MARQUERIE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65298"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cf54335ff4375a451b9cf323f7ebd7787ed866", "fields": {"nom_de_la_commune": "MASCARAS", "libell_d_acheminement": "MASCARAS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65303"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc89d8a0f07bc53e9f0c4d5ada93a803f09ac813", "fields": {"nom_de_la_commune": "MAULEON BAROUSSE", "libell_d_acheminement": "MAULEON BAROUSSE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65305"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc98bec75727cf9d41daa9f4a9035d1783101a06", "fields": {"nom_de_la_commune": "MAUVEZIN", "libell_d_acheminement": "MAUVEZIN", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65306"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0765871450a2ab2179e9d383c406dee8336b201", "fields": {"nom_de_la_commune": "MONTEGUT", "libell_d_acheminement": "MONTEGUT", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65319"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fe23b6622654a9dd4eede72992fb6b40d58973", "fields": {"nom_de_la_commune": "MOULEDOUS", "libell_d_acheminement": "MOULEDOUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65324"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec80f092789a4cd00cdf299e12438e66c15bf892", "fields": {"nom_de_la_commune": "NESTIER", "libell_d_acheminement": "NESTIER", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65327"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6689c29e40aeb9d53cfa327f058856a968ac6d", "fields": {"nom_de_la_commune": "NOUILHAN", "libell_d_acheminement": "NOUILHAN", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65330"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e2ce3e10d854f7a5715f801c456693515915aa", "fields": {"nom_de_la_commune": "OURDON", "libell_d_acheminement": "OURDON", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65349"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdae254f6606e71b35da39f9396ccc0c6b227234", "fields": {"nom_de_la_commune": "PEYRAUBE", "libell_d_acheminement": "PEYRAUBE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65357"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba7e951674afb1e4bbbcd81cb86b9918fc58d27", "fields": {"nom_de_la_commune": "PIERREFITTE NESTALAS", "libell_d_acheminement": "PIERREFITTE NESTALAS", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65362"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3bd6d83e4db0c9b15814f7c3e049b111b70a363", "fields": {"nom_de_la_commune": "POUEYFERRE", "libell_d_acheminement": "POUEYFERRE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65366"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c1bfc25a328634402f750e23592e981bbe1396", "fields": {"nom_de_la_commune": "PUNTOUS", "libell_d_acheminement": "PUNTOUS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65373"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f39f1aefa76821ca4dd4380409ce87766a15c84", "fields": {"nom_de_la_commune": "RICAUD", "libell_d_acheminement": "RICAUD", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65378"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f40b4e1ebee052ed44bcf6dd945a1394ea82c8a", "fields": {"nom_de_la_commune": "SAILHAN", "libell_d_acheminement": "SAILHAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65384"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d3b89023fd9207a0f255ecf8fe62b039401c3f1", "fields": {"nom_de_la_commune": "ST PE DE BIGORRE", "libell_d_acheminement": "ST PE DE BIGORRE", "code_postal": "65270", "coordonnees_gps": [43.0865540375, -0.153402154406], "code_commune_insee": "65395"}, "geometry": {"type": "Point", "coordinates": [-0.153402154406, 43.0865540375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c925362ea54b50d79f7386ca66f56689f7cfb1", "fields": {"nom_de_la_commune": "SALECHAN", "libell_d_acheminement": "SALECHAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65398"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3132cfb48ffc7dde7a8097ed5d1566a1a57664", "fields": {"nom_de_la_commune": "SANOUS", "libell_d_acheminement": "SANOUS", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65403"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84cdc5adf7958b0c262e8a0df3cbbaefc6c2471e", "fields": {"nom_de_la_commune": "SARP", "libell_d_acheminement": "SARP", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65407"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8d82e0dc11cc19d12ceac3e236c3cb125c25c1", "fields": {"nom_de_la_commune": "SARRANCOLIN", "libell_d_acheminement": "SARRANCOLIN", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65408"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c711453e8eba14635c0776b819f3c92224a361be", "fields": {"nom_de_la_commune": "SEICH", "libell_d_acheminement": "SEICH", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65416"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f81963b7b6a4099cd720157fe1f2e3674a49257", "fields": {"nom_de_la_commune": "SENAC", "libell_d_acheminement": "SENAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65418"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d903de1736b9c081e932556b71550bd851a9688", "fields": {"nom_de_la_commune": "SERE EN LAVEDAN", "libell_d_acheminement": "SERE EN LAVEDAN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65420"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e455120401e367ca0411c8e516352dcb07d2aea", "fields": {"nom_de_la_commune": "SERON", "libell_d_acheminement": "SERON", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65422"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35489027aa9abc7e90d20d38551b698487a7e47f", "fields": {"nom_de_la_commune": "SERS", "libell_d_acheminement": "SERS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65424"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3baf11811103c6ca838ef3035794fa8b7982a5e", "fields": {"nom_de_la_commune": "SIARROUY", "libell_d_acheminement": "SIARROUY", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65425"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12d574a8e3acef175ed857072c60da272f22dafc", "fields": {"nom_de_la_commune": "SOREAC", "libell_d_acheminement": "SOREAC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65430"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1f2174e0fb038c0c3b7b27175759e80ea4a8ea3", "fields": {"nom_de_la_commune": "SOST", "libell_d_acheminement": "SOST", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65431"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2729a01f4859cee0f047520e0bdfa8bac1b6adfb", "fields": {"nom_de_la_commune": "TAJAN", "libell_d_acheminement": "TAJAN", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65437"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894cb40d06535b1a4e49abb658a80ca887f8749a", "fields": {"nom_de_la_commune": "TOURNOUS DEVANT", "libell_d_acheminement": "TOURNOUS DEVANT", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65449"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4724a4eef408767019099ce83535ef2e1cb2e62", "fields": {"nom_de_la_commune": "VIELLE AURE", "libell_d_acheminement": "VIELLE AURE", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65465"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5378dc7450c30676f0980dbdde092ee2ef81e983", "fields": {"nom_de_la_commune": "VILLEFRANQUE", "libell_d_acheminement": "VILLEFRANQUE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65472"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d8d3a44b0b9a092944f478e8caf8180f7cf0da", "fields": {"nom_de_la_commune": "VILLEMBITS", "libell_d_acheminement": "VILLEMBITS", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65474"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b58626a348902ffad22b777f64c7db304c873a", "fields": {"nom_de_la_commune": "VILLENAVE PRES BEARN", "libell_d_acheminement": "VILLENAVE PRES BEARN", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65476"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e31ebd73482b806b4efdab487158e69031d9507", "fields": {"nom_de_la_commune": "L ALBERE", "libell_d_acheminement": "L ALBERE", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66001"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6cf4d159ef37d5d0e9d46fa4970ae95933eadb", "fields": {"nom_de_la_commune": "ANSIGNAN", "libell_d_acheminement": "ANSIGNAN", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66006"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9158e7c7d8c1b284bcbad4b3be931c75f3f7cd44", "fields": {"nom_de_la_commune": "ARBOUSSOLS", "libell_d_acheminement": "ARBOUSSOLS", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66007"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdddcb8d993f7fbec55a695dc17d439bbc1c6388", "fields": {"code_postal": "66700", "code_commune_insee": "66008", "libell_d_acheminement": "ARGELES SUR MER", "ligne_5": "ARGELES PLAGE", "nom_de_la_commune": "ARGELES SUR MER", "coordonnees_gps": [42.5348887985, 3.02437222273]}, "geometry": {"type": "Point", "coordinates": [3.02437222273, 42.5348887985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ed986c52afbc25c85e9133936c7978dc0623ec", "fields": {"nom_de_la_commune": "AYGUATEBIA TALAU", "libell_d_acheminement": "AYGUATEBIA TALAU", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66010"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896ec700b68b8cc8841a0d5537118bfa4901da1f", "fields": {"nom_de_la_commune": "BANYULS DELS ASPRES", "libell_d_acheminement": "BANYULS DELS ASPRES", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66015"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b5e2f1eb21ced64f63bda3ec80ec99fec964de", "fields": {"nom_de_la_commune": "LE BARCARES", "libell_d_acheminement": "LE BARCARES", "code_postal": "66420", "coordonnees_gps": [42.8127463649, 3.02827722038], "code_commune_insee": "66017"}, "geometry": {"type": "Point", "coordinates": [3.02827722038, 42.8127463649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7fd66ba92bffeba93b9ec5962cf5e34d4a6297c", "fields": {"nom_de_la_commune": "CAMPOUSSY", "libell_d_acheminement": "CAMPOUSSY", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66035"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996dd25ad05b3d1332046cf7a449de019b9511aa", "fields": {"nom_de_la_commune": "CANET EN ROUSSILLON", "libell_d_acheminement": "CANET EN ROUSSILLON", "code_postal": "66140", "coordonnees_gps": [42.6840532629, 3.01103032321], "code_commune_insee": "66037"}, "geometry": {"type": "Point", "coordinates": [3.01103032321, 42.6840532629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba863d80f615f3e19af410394b3e065fad59aff1", "fields": {"nom_de_la_commune": "CANOHES", "libell_d_acheminement": "CANOHES", "code_postal": "66680", "coordonnees_gps": [42.6519972301, 2.83404094094], "code_commune_insee": "66038"}, "geometry": {"type": "Point", "coordinates": [2.83404094094, 42.6519972301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5357b9e97549ca66f66e3f786ad69e6495c33eb5", "fields": {"nom_de_la_commune": "CASTEIL", "libell_d_acheminement": "CASTEIL", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66043"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e58b9c42329e98e2a3564068d6a9384e2ae870a", "fields": {"nom_de_la_commune": "CAUDIES DE FENOUILLEDES", "libell_d_acheminement": "CAUDIES DE FENOUILLEDES", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66046"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed0a4283e92af041242a3dcf19c9ad088c35b37", "fields": {"nom_de_la_commune": "EGAT", "libell_d_acheminement": "EGAT", "code_postal": "66120", "coordonnees_gps": [42.5100577993, 2.01893656435], "code_commune_insee": "66064"}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b02f38dea182ac9d312667d133cbbe7edf420e", "fields": {"nom_de_la_commune": "FENOUILLET", "libell_d_acheminement": "FENOUILLET", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66077"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779399ea147f7b945b8f80572b8e2d33670bcbb8", "fields": {"nom_de_la_commune": "FONTPEDROUSE", "libell_d_acheminement": "FONTPEDROUSE", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66080"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8733841f33bcb65d34860165599b189e9e08e018", "fields": {"nom_de_la_commune": "FORMIGUERES", "libell_d_acheminement": "FORMIGUERES", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66082"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437e15effd985ae2d46873b4d8b3c9ea233bf7c1", "fields": {"nom_de_la_commune": "JUJOLS", "libell_d_acheminement": "JUJOLS", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66090"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e95f417aabc17d95f966de0d1a17ff29b78db5c", "fields": {"nom_de_la_commune": "LATOUR DE FRANCE", "libell_d_acheminement": "LATOUR DE FRANCE", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66096"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78c9fabe061f33a2b2168386eca59aa2a7ceceb", "fields": {"nom_de_la_commune": "MAURY", "libell_d_acheminement": "MAURY", "code_postal": "66460", "coordonnees_gps": [42.8153333034, 2.61278796478], "code_commune_insee": "66107"}, "geometry": {"type": "Point", "coordinates": [2.61278796478, 42.8153333034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e71dfd05cd2fbaa54517ba4bf0ede998984707c0", "fields": {"nom_de_la_commune": "MOLITG LES BAINS", "libell_d_acheminement": "MOLITG LES BAINS", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66109"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768019ce1a317b4b244d079b0309a356a5f5ba6b", "fields": {"nom_de_la_commune": "MONTNER", "libell_d_acheminement": "MONTNER", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66118"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d7383475ed62e35dfac3f112417d2ed3dda3db", "fields": {"nom_de_la_commune": "NEFIACH", "libell_d_acheminement": "NEFIACH", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66121"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430342e883d5b179db2931f9a0dc624e7d5b716e", "fields": {"nom_de_la_commune": "NOHEDES", "libell_d_acheminement": "NOHEDES", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66122"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5d5d955d47afd0ee9c5365c403e3c20abdacd0", "fields": {"nom_de_la_commune": "OREILLA", "libell_d_acheminement": "OREILLA", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66128"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54027db93382ce2d02dc42f1f66cc6c9a9abd783", "fields": {"nom_de_la_commune": "ORTAFFA", "libell_d_acheminement": "ORTAFFA", "code_postal": "66560", "coordonnees_gps": [42.5842290133, 2.92105063655], "code_commune_insee": "66129"}, "geometry": {"type": "Point", "coordinates": [2.92105063655, 42.5842290133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8070b4153a196b32930ff0c086762729da5423d6", "fields": {"nom_de_la_commune": "PERPIGNAN", "libell_d_acheminement": "PERPIGNAN", "code_postal": "66000", "coordonnees_gps": [42.6965780787, 2.8990363094], "code_commune_insee": "66136"}, "geometry": {"type": "Point", "coordinates": [2.8990363094, 42.6965780787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7d5be3fb24de710354fef8780c917983c8271c", "fields": {"nom_de_la_commune": "PERPIGNAN", "libell_d_acheminement": "PERPIGNAN", "code_postal": "66100", "coordonnees_gps": [42.6965780787, 2.8990363094], "code_commune_insee": "66136"}, "geometry": {"type": "Point", "coordinates": [2.8990363094, 42.6965780787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b1da6e1f52c4c7f6cb2e83c933f86343bf83af", "fields": {"nom_de_la_commune": "PEZILLA DE CONFLENT", "libell_d_acheminement": "PEZILLA DE CONFLENT", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66139"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d2153b890b1526a1bec79f5ca2e3cccec2ce0c", "fields": {"nom_de_la_commune": "RABOUILLET", "libell_d_acheminement": "RABOUILLET", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66156"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c72241bd42501a8325a4b1fe5ddd9458cf90308b", "fields": {"nom_de_la_commune": "RIA SIRACH", "libell_d_acheminement": "RIA SIRACH", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66161"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78095c9038724730c1af477624eab63eb7a4bbf5", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "66750", "coordonnees_gps": [42.6215443808, 3.01628317328], "code_commune_insee": "66171"}, "geometry": {"type": "Point", "coordinates": [3.01628317328, 42.6215443808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff70366f937c12a0869880bbc1f1d0edf46489f3", "fields": {"nom_de_la_commune": "ST LAURENT DE CERDANS", "libell_d_acheminement": "ST LAURENT DE CERDANS", "code_postal": "66260", "coordonnees_gps": [42.3859400236, 2.62616972995], "code_commune_insee": "66179"}, "geometry": {"type": "Point", "coordinates": [2.62616972995, 42.3859400236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f3de9161851f66245f099371549d66b8f30fed", "fields": {"nom_de_la_commune": "ST PIERRE DELS FORCATS", "libell_d_acheminement": "ST PIERRE DELS FORCATS", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66188"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d86cefe8258b7047b658f7c51ed69485a9d3b2", "fields": {"nom_de_la_commune": "SERRALONGUE", "libell_d_acheminement": "SERRALONGUE", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66194"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8943247494862317f870c84d3dab5a08eba54d", "fields": {"nom_de_la_commune": "URBANYA", "libell_d_acheminement": "URBANYA", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66219"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a8b7053da5413aeb2fe76851749380f75a0ac2", "fields": {"nom_de_la_commune": "VILLELONGUE DELS MONTS", "libell_d_acheminement": "VILLELONGUE DELS MONTS", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66225"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9697e4b0744670bac2f12f8717ac806911e404b2", "fields": {"nom_de_la_commune": "ALTENHEIM", "libell_d_acheminement": "ALTENHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67006"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486f97e55cbb7c04a426026c0b8a128a6bdfa659", "fields": {"nom_de_la_commune": "ASCHBACH", "libell_d_acheminement": "ASCHBACH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67012"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715ffaeb66738e0d2707e06ab21a0640a2543172", "fields": {"nom_de_la_commune": "BARR", "libell_d_acheminement": "BARR", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67021"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55fcdd970a35b7b29e8419520ad2336e783714b0", "fields": {"nom_de_la_commune": "BENFELD", "libell_d_acheminement": "BENFELD", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67028"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f499fd12069d65973d7286632377e24493e03ac2", "fields": {"nom_de_la_commune": "BERNARDSWILLER", "libell_d_acheminement": "BERNARDSWILLER", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67031"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac62541e31510c45d020991bffa8ecf4c8f9ca6", "fields": {"nom_de_la_commune": "BERSTETT", "libell_d_acheminement": "BERSTETT", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67034"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4c8b4ae4d547c125d7e94f95ec2f7beb4360c1", "fields": {"code_postal": "67370", "code_commune_insee": "67034", "libell_d_acheminement": "BERSTETT", "ligne_5": "GIMBRETT", "nom_de_la_commune": "BERSTETT", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703402225ea03f55a4217dd5d33807469f3790b1", "fields": {"nom_de_la_commune": "BIBLISHEIM", "libell_d_acheminement": "BIBLISHEIM", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67037"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23b905db86b8c4c2c4dd6d32e3352ff2caf9adbb", "fields": {"nom_de_la_commune": "BISCHWILLER", "libell_d_acheminement": "BISCHWILLER", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67046"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b936ca68015d45a69007318178681954bc828e", "fields": {"code_postal": "67530", "code_commune_insee": "67052", "libell_d_acheminement": "BOERSCH", "ligne_5": "KLINGENTHAL", "nom_de_la_commune": "BOERSCH", "coordonnees_gps": [48.4532281253, 7.37169792676]}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7edcc07f69746aedb6cc7a3d03b28e542b20354", "fields": {"nom_de_la_commune": "BOSSELSHAUSEN", "libell_d_acheminement": "BOSSELSHAUSEN", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67057"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989d82f285bb721ccae4593ba41057d3ac3b217b", "fields": {"nom_de_la_commune": "CRASTATT", "libell_d_acheminement": "CRASTATT", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67078"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760a664705be8a112e1a18e8492beaad6cbbd750", "fields": {"nom_de_la_commune": "DALHUNDEN", "libell_d_acheminement": "DALHUNDEN", "code_postal": "67770", "coordonnees_gps": [48.786400847, 7.99175996988], "code_commune_insee": "67082"}, "geometry": {"type": "Point", "coordinates": [7.99175996988, 48.786400847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8834ba5d2a9562a3463ba9a71b36cb49a9edc8e4", "fields": {"code_postal": "67110", "code_commune_insee": "67083", "libell_d_acheminement": "DAMBACH", "ligne_5": "NEUNHOFFEN", "nom_de_la_commune": "DAMBACH", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529bee9a223dccd634c9016c485e1e4683d0ed13", "fields": {"nom_de_la_commune": "DAUENDORF", "libell_d_acheminement": "DAUENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67087"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7015ada1ab0596c53a8b707d595dfe1503d51aac", "fields": {"nom_de_la_commune": "DEHLINGEN", "libell_d_acheminement": "DEHLINGEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67088"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d66de955c9da5a3faa819c66b8fdd1219d72a15", "fields": {"nom_de_la_commune": "DIEDENDORF", "libell_d_acheminement": "DIEDENDORF", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67091"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "108744c135d9860841c31bc9b143c7346bcff55a", "fields": {"nom_de_la_commune": "DIMBSTHAL", "libell_d_acheminement": "DIMBSTHAL", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67096"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5e101ea4c319b99c363bc63aa9b1bb50397596", "fields": {"nom_de_la_commune": "DINGSHEIM", "libell_d_acheminement": "DINGSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67097"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558ab3256c6fea689457572526345037868617fb", "fields": {"nom_de_la_commune": "DINSHEIM SUR BRUCHE", "libell_d_acheminement": "DINSHEIM SUR BRUCHE", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67098"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193536bcedb5f0473a613a584d887cd40e5dcbed", "fields": {"code_postal": "83270", "code_commune_insee": "83112", "libell_d_acheminement": "ST CYR SUR MER", "ligne_5": "LES LECQUES", "nom_de_la_commune": "ST CYR SUR MER", "coordonnees_gps": [43.1726377038, 5.70862543611]}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd6559836cf21a2ded0268746e95783c1eee305", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "LE TRAYAS", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7038d40c7233ec61f9ae201a8aad8ae0e5824a45", "fields": {"nom_de_la_commune": "ST RAPHAEL", "libell_d_acheminement": "ST RAPHAEL", "code_postal": "83700", "coordonnees_gps": [43.4577463744, 6.84776131018], "code_commune_insee": "83118"}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972bdf06638cb0296717193b5e7c3cc402bf856f", "fields": {"nom_de_la_commune": "SALERNES", "libell_d_acheminement": "SALERNES", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83121"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b05d4a674003cb9730424ee20fb6dcca77558e1", "fields": {"code_postal": "83440", "code_commune_insee": "83124", "libell_d_acheminement": "SEILLANS", "ligne_5": "BROVES", "nom_de_la_commune": "SEILLANS", "coordonnees_gps": [43.6294442313, 6.71670662623]}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a23c6aac52aee6ba7c5211758aaef2a0f6f5f9", "fields": {"nom_de_la_commune": "SIGNES", "libell_d_acheminement": "SIGNES", "code_postal": "83870", "coordonnees_gps": [43.2774263798, 5.85732378332], "code_commune_insee": "83127"}, "geometry": {"type": "Point", "coordinates": [5.85732378332, 43.2774263798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d715be693dd9aaa979d47ce45870d1acec8ea3", "fields": {"nom_de_la_commune": "SILLANS LA CASCADE", "libell_d_acheminement": "SILLANS LA CASCADE", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83128"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9741178cb3d1f03fe729606f1a0365b5ec5e2eb", "fields": {"code_postal": "83140", "code_commune_insee": "83129", "libell_d_acheminement": "SIX FOURS LES PLAGES", "ligne_5": "LE BRUSC", "nom_de_la_commune": "SIX FOURS LES PLAGES", "coordonnees_gps": [43.0867535374, 5.8292161637]}, "geometry": {"type": "Point", "coordinates": [5.8292161637, 43.0867535374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925b3fb3ef0eb24a9ac7897e2a0eef763df161f6", "fields": {"code_postal": "83140", "code_commune_insee": "83129", "libell_d_acheminement": "SIX FOURS LES PLAGES", "ligne_5": "LES LONES", "nom_de_la_commune": "SIX FOURS LES PLAGES", "coordonnees_gps": [43.0867535374, 5.8292161637]}, "geometry": {"type": "Point", "coordinates": [5.8292161637, 43.0867535374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc61a43dfffd337579ca56e827b60128ec3a93ea", "fields": {"nom_de_la_commune": "SOLLIES TOUCAS", "libell_d_acheminement": "SOLLIES TOUCAS", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83131"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b042d10c82d36a178301bcdeee0456c661207c62", "fields": {"nom_de_la_commune": "TANNERON", "libell_d_acheminement": "TANNERON", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83133"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b9361edfc65d393df5488c4ff62bb9cddce1e3", "fields": {"nom_de_la_commune": "LE THORONET", "libell_d_acheminement": "LE THORONET", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83136"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7464cec0f10d95efc840be6180b3b7f0fbe95bdf", "fields": {"nom_de_la_commune": "TOULON", "libell_d_acheminement": "TOULON", "code_postal": "83000", "coordonnees_gps": [43.1364016655, 5.93275623187], "code_commune_insee": "83137"}, "geometry": {"type": "Point", "coordinates": [5.93275623187, 43.1364016655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94672061ba9f61bece9c8f1f68d9f8b6f64eae44", "fields": {"nom_de_la_commune": "TOURTOUR", "libell_d_acheminement": "TOURTOUR", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83139"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b0c02b9f0faeaea67a18d93d99180b0e09c7a4", "fields": {"nom_de_la_commune": "LE VAL", "libell_d_acheminement": "LE VAL", "code_postal": "83143", "coordonnees_gps": [43.4454941817, 6.05138121322], "code_commune_insee": "83143"}, "geometry": {"type": "Point", "coordinates": [6.05138121322, 43.4454941817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d523b13668615e40abc38dfbd262ce7466b9284d", "fields": {"nom_de_la_commune": "VARAGES", "libell_d_acheminement": "VARAGES", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83145"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17059b0c70f28ca2782c9b4cfc26f48c6d1afb44", "fields": {"nom_de_la_commune": "LA VERDIERE", "libell_d_acheminement": "LA VERDIERE", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83146"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9680d08b760589d7880a884879eff5ec6f5247d", "fields": {"nom_de_la_commune": "VIDAUBAN", "libell_d_acheminement": "VIDAUBAN", "code_postal": "83550", "coordonnees_gps": [43.4013422839, 6.44935857032], "code_commune_insee": "83148"}, "geometry": {"type": "Point", "coordinates": [6.44935857032, 43.4013422839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda525e065bb5f5835ba6f24231093fa497078c6", "fields": {"nom_de_la_commune": "AVIGNON", "libell_d_acheminement": "AVIGNON", "code_postal": "84000", "coordonnees_gps": [43.9352589636, 4.84116595474], "code_commune_insee": "84007"}, "geometry": {"type": "Point", "coordinates": [4.84116595474, 43.9352589636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d27d40843e07543e11450f4851bdaae2c0575ea", "fields": {"nom_de_la_commune": "CABRIERES D AVIGNON", "libell_d_acheminement": "CABRIERES D AVIGNON", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84025"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e0daeac2ee548c568113558727c0092bf3f06c", "fields": {"nom_de_la_commune": "CADEROUSSE", "libell_d_acheminement": "CADEROUSSE", "code_postal": "84860", "coordonnees_gps": [44.1099839042, 4.74354973859], "code_commune_insee": "84027"}, "geometry": {"type": "Point", "coordinates": [4.74354973859, 44.1099839042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e36e42b0c8bbdc332ac6ff53e514c4596ed36bd5", "fields": {"nom_de_la_commune": "CARPENTRAS", "libell_d_acheminement": "CARPENTRAS", "code_postal": "84200", "coordonnees_gps": [44.059163985, 5.06111954826], "code_commune_insee": "84031"}, "geometry": {"type": "Point", "coordinates": [5.06111954826, 44.059163985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954f662447ea5ac776b26623c3b5b5769ce8b927", "fields": {"nom_de_la_commune": "GIGNAC", "libell_d_acheminement": "GIGNAC", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84048"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322617caa23849c61016d55dff9fb1b08544ac0a", "fields": {"nom_de_la_commune": "L ISLE SUR LA SORGUE", "libell_d_acheminement": "L ISLE SUR LA SORGUE", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84054"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44778b755917a75f0d62265346b37646d58ba7a", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "84150", "coordonnees_gps": [44.1493241493, 4.92779558377], "code_commune_insee": "84056"}, "geometry": {"type": "Point", "coordinates": [4.92779558377, 44.1493241493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc5dbed1548e059c42ce1469f01398d395eb777", "fields": {"nom_de_la_commune": "LAFARE", "libell_d_acheminement": "LAFARE", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84059"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619dc37760d8b17f0052b55b95c86d388d092afb", "fields": {"nom_de_la_commune": "LAGARDE PAREOL", "libell_d_acheminement": "LAGARDE PAREOL", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84061"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a417e49a2824f9471aecb0798bb249d75008f229", "fields": {"nom_de_la_commune": "LAPALUD", "libell_d_acheminement": "LAPALUD", "code_postal": "84840", "coordonnees_gps": [44.2940948566, 4.67799884767], "code_commune_insee": "84064"}, "geometry": {"type": "Point", "coordinates": [4.67799884767, 44.2940948566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9664d851bef4eab68f25f3dc8c128511b649cd4a", "fields": {"nom_de_la_commune": "MAUBEC", "libell_d_acheminement": "MAUBEC", "code_postal": "84660", "coordonnees_gps": [43.8421077807, 5.13738605454], "code_commune_insee": "84071"}, "geometry": {"type": "Point", "coordinates": [5.13738605454, 43.8421077807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f828c74cc8df29225a1768bf3189f9e7406230d7", "fields": {"nom_de_la_commune": "MAZAN", "libell_d_acheminement": "MAZAN", "code_postal": "84380", "coordonnees_gps": [44.0546411314, 5.13024969029], "code_commune_insee": "84072"}, "geometry": {"type": "Point", "coordinates": [5.13024969029, 44.0546411314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97abce9185b1a82c2c5550b6342d79e4e467011d", "fields": {"nom_de_la_commune": "MERINDOL", "libell_d_acheminement": "MERINDOL", "code_postal": "84360", "coordonnees_gps": [43.7644472633, 5.24997704663], "code_commune_insee": "84074"}, "geometry": {"type": "Point", "coordinates": [5.24997704663, 43.7644472633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9baf9fa5352db0ec9d852e306a6cafab4deee0", "fields": {"nom_de_la_commune": "MIRABEAU", "libell_d_acheminement": "MIRABEAU", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84076"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b74bd310c567b0d7c72cec82f4e3732939fb79f", "fields": {"nom_de_la_commune": "MONDRAGON", "libell_d_acheminement": "MONDRAGON", "code_postal": "84430", "coordonnees_gps": [44.2430528023, 4.72491929998], "code_commune_insee": "84078"}, "geometry": {"type": "Point", "coordinates": [4.72491929998, 44.2430528023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582913a88a07a74fc851efa813417c078094248e", "fields": {"nom_de_la_commune": "MONIEUX", "libell_d_acheminement": "MONIEUX", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84079"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf0220719f1df2109ba7bb5a38210dc686573f6", "fields": {"nom_de_la_commune": "LA MOTTE D AIGUES", "libell_d_acheminement": "LA MOTTE D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84084"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e90612874d6ec05bc91d122cd91048148c5813", "fields": {"nom_de_la_commune": "ORANGE", "libell_d_acheminement": "ORANGE", "code_postal": "84100", "coordonnees_gps": [44.1461192195, 4.80873017728], "code_commune_insee": "84087"}, "geometry": {"type": "Point", "coordinates": [4.80873017728, 44.1461192195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066db117634683ec91614aed4d1d63bbc3c5af3a", "fields": {"nom_de_la_commune": "PERTUIS", "libell_d_acheminement": "PERTUIS", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84089"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4967f97b6d5f9f08caec13501d653f5234d4fb7d", "fields": {"nom_de_la_commune": "PIOLENC", "libell_d_acheminement": "PIOLENC", "code_postal": "84420", "coordonnees_gps": [44.1777129788, 4.76593686798], "code_commune_insee": "84091"}, "geometry": {"type": "Point", "coordinates": [4.76593686798, 44.1777129788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784ca59ff45c4da8d0a165d8745f3f93f9363901", "fields": {"nom_de_la_commune": "LE PONTET", "libell_d_acheminement": "LE PONTET", "code_postal": "84130", "coordonnees_gps": [43.9685341949, 4.86529083316], "code_commune_insee": "84092"}, "geometry": {"type": "Point", "coordinates": [4.86529083316, 43.9685341949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68b40d4077e2a66254ae9b2e0a4a937489f5b96", "fields": {"nom_de_la_commune": "ROAIX", "libell_d_acheminement": "ROAIX", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84098"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505be1efde8c5051a150e823babc99ed3018026d", "fields": {"nom_de_la_commune": "ROBION", "libell_d_acheminement": "ROBION", "code_postal": "84440", "coordonnees_gps": [43.8518288496, 5.10936121375], "code_commune_insee": "84099"}, "geometry": {"type": "Point", "coordinates": [5.10936121375, 43.8518288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be28d4aad321b8fb71568373d5f648d0c0c2785", "fields": {"nom_de_la_commune": "SERIGNAN DU COMTAT", "libell_d_acheminement": "SERIGNAN DU COMTAT", "code_postal": "84830", "coordonnees_gps": [44.1939936003, 4.84740250954], "code_commune_insee": "84127"}, "geometry": {"type": "Point", "coordinates": [4.84740250954, 44.1939936003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36586e4122f220ebb4039d7a83ce4cce1171b874", "fields": {"nom_de_la_commune": "TAILLADES", "libell_d_acheminement": "TAILLADES", "code_postal": "84300", "coordonnees_gps": [43.8481769374, 5.04312031956], "code_commune_insee": "84131"}, "geometry": {"type": "Point", "coordinates": [5.04312031956, 43.8481769374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8370e31efbbe8aabd5a3245f26c95bf19d833d48", "fields": {"nom_de_la_commune": "LA TOUR D AIGUES", "libell_d_acheminement": "LA TOUR D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84133"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386c779d3fd661f4e12f386f1684674e4b09a932", "fields": {"nom_de_la_commune": "VIENS", "libell_d_acheminement": "VIENS", "code_postal": "84750", "coordonnees_gps": [43.880271182, 5.52723627077], "code_commune_insee": "84144"}, "geometry": {"type": "Point", "coordinates": [5.52723627077, 43.880271182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ec4215526b8d8b199ac047528fa3fad1598db6", "fields": {"nom_de_la_commune": "VILLELAURE", "libell_d_acheminement": "VILLELAURE", "code_postal": "84530", "coordonnees_gps": [43.707458203, 5.43118891588], "code_commune_insee": "84147"}, "geometry": {"type": "Point", "coordinates": [5.43118891588, 43.707458203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8282dfb97a25b4fcd224ca32878783d97792dd0", "fields": {"nom_de_la_commune": "VITROLLES EN LUBERON", "libell_d_acheminement": "VITROLLES EN LUBERON", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84151"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429adafd427fb2fd4b2e6b2c5eb579f3f98d1a78", "fields": {"nom_de_la_commune": "L AIGUILLON SUR VIE", "libell_d_acheminement": "L AIGUILLON SUR VIE", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85002"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95172cc6a092637a349b910f32bda223b81cf8f", "fields": {"nom_de_la_commune": "AUBIGNY LES CLOUZEAUX", "libell_d_acheminement": "AUBIGNY LES CLOUZEAUX", "code_postal": "85430", "coordonnees_gps": [46.5767007042, -1.4774062897], "code_commune_insee": "85008"}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d62b54194daa1dabf6a8cb4074a25f7ed4fe960", "fields": {"nom_de_la_commune": "BARBATRE", "libell_d_acheminement": "BARBATRE", "code_postal": "85630", "coordonnees_gps": [46.9332669534, -2.16697862229], "code_commune_insee": "85011"}, "geometry": {"type": "Point", "coordinates": [-2.16697862229, 46.9332669534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfae0d10425d31f2c1f9de93ea8e10b1ebfe2057", "fields": {"nom_de_la_commune": "BAZOGES EN PAREDS", "libell_d_acheminement": "BAZOGES EN PAREDS", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85014"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b91657c5d5e028b92060f94487c2e46402ff20a6", "fields": {"nom_de_la_commune": "BEAUVOIR SUR MER", "libell_d_acheminement": "BEAUVOIR SUR MER", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85018"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e982065a6f608ef88c76952596750eff3092c2", "fields": {"code_postal": "85490", "code_commune_insee": "85020", "libell_d_acheminement": "BENET", "ligne_5": "STE CHRISTINE", "nom_de_la_commune": "BENET", "coordonnees_gps": [46.3691901747, -0.6138149404]}, "geometry": {"type": "Point", "coordinates": [-0.6138149404, 46.3691901747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efeaae8d9db5bbc4cb8190072b75e0df5e51bf1e", "fields": {"nom_de_la_commune": "LA BERNARDIERE", "libell_d_acheminement": "LA BERNARDIERE", "code_postal": "85610", "coordonnees_gps": [47.0477932643, -1.2636898898], "code_commune_insee": "85021"}, "geometry": {"type": "Point", "coordinates": [-1.2636898898, 47.0477932643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465a5fe6440151d0c2f244a46f0e41f599463bfb", "fields": {"nom_de_la_commune": "BOURNEAU", "libell_d_acheminement": "BOURNEAU", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85033"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921ce378a0b1ef4dd1b70c946170e40f9ad8d5d4", "fields": {"code_postal": "85480", "code_commune_insee": "85034", "libell_d_acheminement": "BOURNEZEAU", "ligne_5": "ST VINCENT PUYMAUFRAIS", "nom_de_la_commune": "BOURNEZEAU", "coordonnees_gps": [46.6439879981, -1.18432139846]}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6711702c3491e2c92b5aeb44f04f8997bc307", "fields": {"nom_de_la_commune": "LA BRETONNIERE LA CLAYE", "libell_d_acheminement": "LA BRETONNIERE LA CLAYE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85036"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91b982a806c792ac333dd45e2a88bdca729dc36", "fields": {"nom_de_la_commune": "CHAILLE LES MARAIS", "libell_d_acheminement": "CHAILLE LES MARAIS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85042"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c349ac7e7bc1a847c1b30f99f4c9393ee21770bb", "fields": {"code_postal": "85450", "code_commune_insee": "85042", "libell_d_acheminement": "CHAILLE LES MARAIS", "ligne_5": "AISNE", "nom_de_la_commune": "CHAILLE LES MARAIS", "coordonnees_gps": [46.3816104965, -1.06555900366]}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec42bb5b38a2c72ee78aea34365327762b2660e6", "fields": {"nom_de_la_commune": "CHAIX", "libell_d_acheminement": "CHAIX", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85044"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90937e9570815ab0666ed13a91e00e167139d3c7", "fields": {"code_postal": "85310", "code_commune_insee": "85046", "libell_d_acheminement": "LA CHAIZE LE VICOMTE", "ligne_5": "LA LIMOUZINIERE", "nom_de_la_commune": "LA CHAIZE LE VICOMTE", "coordonnees_gps": [46.6268805827, -1.33228683205]}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20692ebbf302d9aceb73ab5d6b3ea4d711622e01", "fields": {"nom_de_la_commune": "CHAMBRETAUD", "libell_d_acheminement": "CHAMBRETAUD", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85048"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fddb6fb87af17f89b452c31b1ec619718fd85f61", "fields": {"nom_de_la_commune": "CHATEAU D OLONNE", "libell_d_acheminement": "CHATEAU D OLONNE", "code_postal": "85180", "coordonnees_gps": [46.4930303478, -1.72048397397], "code_commune_insee": "85060"}, "geometry": {"type": "Point", "coordinates": [-1.72048397397, 46.4930303478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c1b7a6325911898d6bc8fb78928a7d1459ad692", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "85710", "coordonnees_gps": [46.9181711816, -1.86435198125], "code_commune_insee": "85062"}, "geometry": {"type": "Point", "coordinates": [-1.86435198125, 46.9181711816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f140675ed0b96133f43d1be1145e2f142864e9", "fields": {"nom_de_la_commune": "CHAUCHE", "libell_d_acheminement": "CHAUCHE", "code_postal": "85140", "coordonnees_gps": [46.7759741039, -1.24043269403], "code_commune_insee": "85064"}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620f81be487d6150a2976aba76fec73b7953711c", "fields": {"nom_de_la_commune": "COMMEQUIERS", "libell_d_acheminement": "COMMEQUIERS", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85071"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccbebb8d2c20e44cc381317fb8d9035ccd64f43", "fields": {"nom_de_la_commune": "LA COUTURE", "libell_d_acheminement": "LA COUTURE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85074"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a3cb0739516fa44906cbf7887c1b0cac0194a0", "fields": {"nom_de_la_commune": "FAYMOREAU", "libell_d_acheminement": "FAYMOREAU", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85087"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db96b08a2b49a22881f3ac7c6e0a43c8a7771555", "fields": {"nom_de_la_commune": "FONTENAY LE COMTE", "libell_d_acheminement": "FONTENAY LE COMTE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85092"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa40269743e934d374c9808407de939ca2933b4", "fields": {"nom_de_la_commune": "FROIDFOND", "libell_d_acheminement": "FROIDFOND", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85095"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef6eef334ac7bea9014ad1d6668fc8c78abb26c", "fields": {"nom_de_la_commune": "LA GARNACHE", "libell_d_acheminement": "LA GARNACHE", "code_postal": "85710", "coordonnees_gps": [46.9181711816, -1.86435198125], "code_commune_insee": "85096"}, "geometry": {"type": "Point", "coordinates": [-1.86435198125, 46.9181711816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "605f04f04b2bc4bf52f7cc52616f7c33e9abf861", "fields": {"nom_de_la_commune": "L HERBERGEMENT", "libell_d_acheminement": "L HERBERGEMENT", "code_postal": "85260", "coordonnees_gps": [46.8968914818, -1.35853673733], "code_commune_insee": "85108"}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4248c11708e80dc54314fa09d427acd191de016c", "fields": {"nom_de_la_commune": "L HERMENAULT", "libell_d_acheminement": "L HERMENAULT", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85110"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f910c361dbed668f2c666e749c1bfc5ed43ca83e", "fields": {"code_postal": "85350", "code_commune_insee": "85113", "libell_d_acheminement": "L ILE D YEU", "ligne_5": "PORT JOINVILLE", "nom_de_la_commune": "L ILE D YEU", "coordonnees_gps": [46.709560764, -2.34675388609]}, "geometry": {"type": "Point", "coordinates": [-2.34675388609, 46.709560764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5f7d8b65449b3c72538cdb329655c1a073e6df", "fields": {"nom_de_la_commune": "LE LANGON", "libell_d_acheminement": "LE LANGON", "code_postal": "85370", "coordonnees_gps": [46.4559323698, -0.995832045807], "code_commune_insee": "85121"}, "geometry": {"type": "Point", "coordinates": [-0.995832045807, 46.4559323698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc573becbb6d552d88e9ac3c3003e6cafb0a49d8", "fields": {"nom_de_la_commune": "MAREUIL SUR LAY DISSAIS", "libell_d_acheminement": "MAREUIL SUR LAY DISSAIS", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85135"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0ea145180cfe732d694ceb1ff12a2aa25e4f92", "fields": {"nom_de_la_commune": "LE MAZEAU", "libell_d_acheminement": "LE MAZEAU", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85139"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211cdf395a1f8b8a62998413612d93bdc38746cb", "fields": {"nom_de_la_commune": "MESNARD LA BAROTIERE", "libell_d_acheminement": "MESNARD LA BAROTIERE", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85144"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e2cdbad0062a1eb6fcf2280ca5478b224f4d21", "fields": {"nom_de_la_commune": "MONSIREIGNE", "libell_d_acheminement": "MONSIREIGNE", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85145"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094d6889eed3930b9fc9cb38bfb50929582799fd", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85148"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c6369c3fbc478930884371a0f80bea4916db050", "fields": {"nom_de_la_commune": "MOUCHAMPS", "libell_d_acheminement": "MOUCHAMPS", "code_postal": "85640", "coordonnees_gps": [46.787562927, -1.05457319092], "code_commune_insee": "85153"}, "geometry": {"type": "Point", "coordinates": [-1.05457319092, 46.787562927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd095dc40bb7c27761bc23b741ba2de734750223", "fields": {"nom_de_la_commune": "MOUTIERS LES MAUXFAITS", "libell_d_acheminement": "MOUTIERS LES MAUXFAITS", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85156"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e2a77695f57db86ab5606b9b5a9859a4f3bded", "fields": {"nom_de_la_commune": "PALLUAU", "libell_d_acheminement": "PALLUAU", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85169"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e12236464e3f27f601b7297fe1f22a045bb937c6", "fields": {"nom_de_la_commune": "PEAULT", "libell_d_acheminement": "PEAULT", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85171"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848757918f12b204f8c23d9f7110163d4d3fd1ae", "fields": {"nom_de_la_commune": "LES PINEAUX", "libell_d_acheminement": "LES PINEAUX", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85175"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fb4364197d57948bbe2411eb938d376e0ecffe", "fields": {"nom_de_la_commune": "PUY DE SERRE", "libell_d_acheminement": "PUY DE SERRE", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85184"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e44bcb053f86ec3191a56e8e3d2a543128d501c", "fields": {"nom_de_la_commune": "PUYRAVAULT", "libell_d_acheminement": "PUYRAVAULT", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85185"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305a250bb27d4265a912010a7503e0a12e232e91", "fields": {"nom_de_la_commune": "LA RABATELIERE", "libell_d_acheminement": "LA RABATELIERE", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85186"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28c2adecceafb04ed1acc90f5bab2f8f8f14927f", "fields": {"code_postal": "85260", "code_commune_insee": "85197", "libell_d_acheminement": "MONTREVERD", "ligne_5": "ST SULPICE LE VERDON", "nom_de_la_commune": "MONTREVERD", "coordonnees_gps": [46.8968914818, -1.35853673733]}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce5fc212d89d50d77994f0677dad8b4c1b20cb7", "fields": {"nom_de_la_commune": "ST AUBIN DES ORMEAUX", "libell_d_acheminement": "ST AUBIN DES ORMEAUX", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85198"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46fbbfa56b57912a85b01b4fd629b3aba40d8d7d", "fields": {"nom_de_la_commune": "ST ETIENNE DU BOIS", "libell_d_acheminement": "ST ETIENNE DU BOIS", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85210"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45dd47afe45a0a31028018ee5a408ed381784052", "fields": {"nom_de_la_commune": "ST GEORGES DE POINTINDOUX", "libell_d_acheminement": "ST GEORGES DE POINTINDOUX", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85218"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3377f621ed2344eb34ed8e56274216925f84ca", "fields": {"nom_de_la_commune": "ST GERMAIN DE PRINCAY", "libell_d_acheminement": "ST GERMAIN DE PRINCAY", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85220"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313ad1e5786e4ac7dfd7bdc5c03f7ba8efbd0b8e", "fields": {"nom_de_la_commune": "ST HILAIRE LA FORET", "libell_d_acheminement": "ST HILAIRE LA FORET", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85231"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b83326f153a1e69ed0435a3d92cc2ed44400bf", "fields": {"nom_de_la_commune": "ST LAURENT SUR SEVRE", "libell_d_acheminement": "ST LAURENT SUR SEVRE", "code_postal": "85290", "coordonnees_gps": [46.9743066713, -0.927121761367], "code_commune_insee": "85238"}, "geometry": {"type": "Point", "coordinates": [-0.927121761367, 46.9743066713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c59ca938392dc6ef2d504c40e4825fb0e1103cd", "fields": {"code_postal": "85470", "code_commune_insee": "85243", "libell_d_acheminement": "BREM SUR MER", "ligne_5": "ST NICOLAS DE BREM", "nom_de_la_commune": "BREM SUR MER", "coordonnees_gps": [46.62852373, -1.84475847528]}, "geometry": {"type": "Point", "coordinates": [-1.84475847528, 46.62852373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff0c46ced1f3828e020f340159d50693ecc8153", "fields": {"nom_de_la_commune": "ST MICHEL LE CLOUCQ", "libell_d_acheminement": "ST MICHEL LE CLOUCQ", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85256"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f15b84b0dd32dfd01c51f392b61217019881cbb", "fields": {"nom_de_la_commune": "ST PHILBERT DE BOUAINE", "libell_d_acheminement": "ST PHILBERT DE BOUAINE", "code_postal": "85660", "coordonnees_gps": [46.9924777223, -1.50719896416], "code_commune_insee": "85262"}, "geometry": {"type": "Point", "coordinates": [-1.50719896416, 46.9924777223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3188012d657d7084a80aad34bcfda5e6f47be829", "fields": {"nom_de_la_commune": "STE RADEGONDE DES NOYERS", "libell_d_acheminement": "STE RADEGONDE DES NOYERS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85267"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7470a2868408860acea87de120f3163c0dc14a", "fields": {"nom_de_la_commune": "ST REVEREND", "libell_d_acheminement": "ST REVEREND", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85268"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3bef931aeefafcb23b206b1b3eec722036fb08a", "fields": {"code_postal": "74210", "code_commune_insee": "74275", "libell_d_acheminement": "TALLOIRES MONTMIN", "ligne_5": "MONTMIN", "nom_de_la_commune": "TALLOIRES MONTMIN", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632414759545c9823ec77d8364d4418405d754cb", "fields": {"nom_de_la_commune": "TALLOIRES MONTMIN", "libell_d_acheminement": "TALLOIRES MONTMIN", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74275"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375ae7517bfeeba2c123ddd215a958304ffe13a8", "fields": {"code_postal": "74440", "code_commune_insee": "74276", "libell_d_acheminement": "TANINGES", "ligne_5": "LE PRAZ DE LYS", "nom_de_la_commune": "TANINGES", "coordonnees_gps": [46.1230411459, 6.600455476]}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f790829564661abec03e6f9da6f5e087b87820", "fields": {"nom_de_la_commune": "THYEZ", "libell_d_acheminement": "THYEZ", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74278"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5546014e6f0e18ac49bcd2134abbcb2e22683cdb", "fields": {"nom_de_la_commune": "THONON LES BAINS", "libell_d_acheminement": "THONON LES BAINS", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74281"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f292caf08ea6c50f31c890d0b6ef68f9805838", "fields": {"nom_de_la_commune": "VAULX", "libell_d_acheminement": "VAULX", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74292"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8444b84f735752b115cfe8c0dbd780e86c56a2f5", "fields": {"nom_de_la_commune": "VETRAZ MONTHOUX", "libell_d_acheminement": "VETRAZ MONTHOUX", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74298"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2beae5195099e527b60afb4915983969c1326cff", "fields": {"nom_de_la_commune": "VILLARD", "libell_d_acheminement": "VILLARD", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74301"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b18d5f4516ad462635025d2394c54ec9cb98f9c", "fields": {"nom_de_la_commune": "VILLE EN SALLAZ", "libell_d_acheminement": "VILLE EN SALLAZ", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74304"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ad609b7762d07de241e6ff7394485251959736", "fields": {"nom_de_la_commune": "VIRY", "libell_d_acheminement": "VIRY", "code_postal": "74580", "coordonnees_gps": [46.120046794, 6.02488666675], "code_commune_insee": "74309"}, "geometry": {"type": "Point", "coordinates": [6.02488666675, 46.120046794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "056ee995283e01b1688f5e86b1ac36f7345f682e", "fields": {"nom_de_la_commune": "VIUZ LA CHIESAZ", "libell_d_acheminement": "VIUZ LA CHIESAZ", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74310"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2031d8318acc0120e53658ab463ca51d8caf10b6", "fields": {"nom_de_la_commune": "VIUZ EN SALLAZ", "libell_d_acheminement": "VIUZ EN SALLAZ", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74311"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d32d049dee857c3df7495cec0824857f940acc8", "fields": {"nom_de_la_commune": "VOUGY", "libell_d_acheminement": "VOUGY", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74312"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d0032cbb9906bff270f0f241bf37eb125f2e2c", "fields": {"nom_de_la_commune": "PARIS 14", "libell_d_acheminement": "PARIS", "code_postal": "75014", "coordonnees_gps": [48.8291473577, 2.32698552913], "code_commune_insee": "75114"}, "geometry": {"type": "Point", "coordinates": [2.32698552913, 48.8291473577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac7a30cc30c75799ad00acbde818b996f219ebb", "fields": {"nom_de_la_commune": "PARIS 16", "libell_d_acheminement": "PARIS", "code_postal": "75016", "coordonnees_gps": [48.8603821025, 2.26201220212], "code_commune_insee": "75116"}, "geometry": {"type": "Point", "coordinates": [2.26201220212, 48.8603821025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "574ffbf1be9fffe375d8830e8e4a41a707868869", "fields": {"nom_de_la_commune": "PARIS 16", "libell_d_acheminement": "PARIS", "code_postal": "75116", "coordonnees_gps": [48.8603821025, 2.26201220212], "code_commune_insee": "75116"}, "geometry": {"type": "Point", "coordinates": [2.26201220212, 48.8603821025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b5cc843012cf651ceb650f3046effded8be06f", "fields": {"nom_de_la_commune": "PARIS 18", "libell_d_acheminement": "PARIS", "code_postal": "75018", "coordonnees_gps": [48.8923628559, 2.34785432498], "code_commune_insee": "75118"}, "geometry": {"type": "Point", "coordinates": [2.34785432498, 48.8923628559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74b3f8d72c2047a7ae410e6b746eff47f0deac3", "fields": {"nom_de_la_commune": "ALLOUVILLE BELLEFOSSE", "libell_d_acheminement": "ALLOUVILLE BELLEFOSSE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76001"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c5efa94cd281f14e20e43f578d14b86b0f6b26", "fields": {"nom_de_la_commune": "ANCRETTEVILLE SUR MER", "libell_d_acheminement": "ANCRETTEVILLE SUR MER", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76011"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31da50d6308470edb2f87852b335b6b7df9aab76", "fields": {"nom_de_la_commune": "ANGIENS", "libell_d_acheminement": "ANGIENS", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76015"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452b13e01d9e6d752c5ab61e18593002a728c659", "fields": {"nom_de_la_commune": "ANGLESQUEVILLE LA BRAS LONG", "libell_d_acheminement": "ANGLESQUEVILLE LA BRAS LONG", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76016"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc61956b05c6fd9be4a3c6f5a50fe4ee4297ad03", "fields": {"nom_de_la_commune": "ANNEVILLE AMBOURVILLE", "libell_d_acheminement": "ANNEVILLE AMBOURVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76020"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d62dd7691daa4b567fffd1e2961d6fc1e2d60ee", "fields": {"nom_de_la_commune": "ANVEVILLE", "libell_d_acheminement": "ANVEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76023"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a2f8fc623fd7ebd5efb2f7593f8909e7e6c363", "fields": {"nom_de_la_commune": "ARDOUVAL", "libell_d_acheminement": "ARDOUVAL", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76024"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1eb5605cbeb1053d1afd358f154a8e315b9e029", "fields": {"nom_de_la_commune": "AUBERVILLE LA MANUEL", "libell_d_acheminement": "AUBERVILLE LA MANUEL", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76032"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6fc474cab5239c3c7bd59b065a17b791708a44", "fields": {"nom_de_la_commune": "AUBERVILLE LA RENAULT", "libell_d_acheminement": "AUBERVILLE LA RENAULT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76033"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a56cf4ce0471ad43b0474d6c31608d581476272", "fields": {"nom_de_la_commune": "AUFFAY", "libell_d_acheminement": "AUFFAY", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76034"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3767b3a5298f132704a2a7cb35c6d36ba0b0093d", "fields": {"nom_de_la_commune": "AUPPEGARD", "libell_d_acheminement": "AUPPEGARD", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76036"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7768613a2103e1388f2f6c0ac90b58aa5592844", "fields": {"nom_de_la_commune": "LES AUTHIEUX SUR LE PORT ST OUEN", "libell_d_acheminement": "LES AUTHIEUX SUR LE PORT ST OUEN", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76039"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d848e20797bc72b1022297cc1dcf46ecdd94b471", "fields": {"nom_de_la_commune": "BAILLEUL NEUVILLE", "libell_d_acheminement": "BAILLEUL NEUVILLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76052"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d16284794546579373cbb8d70eb0e6c9c73c17a", "fields": {"nom_de_la_commune": "BARENTIN", "libell_d_acheminement": "BARENTIN", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76057"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c10d22ac2c5d5c060a6d18af9b6475e2f10f2b2", "fields": {"nom_de_la_commune": "BEAUVOIR EN LYONS", "libell_d_acheminement": "BEAUVOIR EN LYONS", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76067"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c4b4a6f3660f76f06d851a8751ead7922987ef", "fields": {"nom_de_la_commune": "BELLENCOMBRE", "libell_d_acheminement": "BELLENCOMBRE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76070"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb7f6dc4e347238a25a5a9eefd591077c43f174", "fields": {"nom_de_la_commune": "BELMESNIL", "libell_d_acheminement": "BELMESNIL", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76075"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db712ef89936b062ce7d39fef9b9142a4725dfd3", "fields": {"nom_de_la_commune": "BERTHEAUVILLE", "libell_d_acheminement": "BERTHEAUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76083"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e7cbdb9c2c632cee77b5322b50690d195a8a40e", "fields": {"nom_de_la_commune": "BERTREVILLE ST OUEN", "libell_d_acheminement": "BERTREVILLE ST OUEN", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76085"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c526e3dc9670cc0889fe65c35c0f8b238ccf98c", "fields": {"nom_de_la_commune": "BERVILLE", "libell_d_acheminement": "BERVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76087"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7f21753b3e141e6de686ea63f5315a5695e164", "fields": {"nom_de_la_commune": "BEUZEVILLETTE", "libell_d_acheminement": "BEUZEVILLETTE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76092"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1c174b56bacef1da22ef9b7db5b6b0fb42a7f0", "fields": {"nom_de_la_commune": "BEZANCOURT", "libell_d_acheminement": "BEZANCOURT", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76093"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9510b8a984e1e40007465e51e19f8eadad09b4", "fields": {"nom_de_la_commune": "BIERVILLE", "libell_d_acheminement": "BIERVILLE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76094"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a829746c8979653da2802b3bee560fef8fad3d1d", "fields": {"nom_de_la_commune": "BOLBEC", "libell_d_acheminement": "BOLBEC", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76114"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea6bb3454438c11852398ec01f7df683d1f5af5b", "fields": {"nom_de_la_commune": "BOSC BERENGER", "libell_d_acheminement": "BOSC BERENGER", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76119"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371b56fa7c59a6aec6c28cbf9b7c05aa37212b4d", "fields": {"nom_de_la_commune": "BOSC BORDEL", "libell_d_acheminement": "BOSC BORDEL", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76120"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c6dd5789230c8d4527c129463ae72900740bb1", "fields": {"nom_de_la_commune": "BOSC GUERARD ST ADRIEN", "libell_d_acheminement": "BOSC GUERARD ST ADRIEN", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76123"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7037671b24300507b26035e762a7d21839ad4e", "fields": {"nom_de_la_commune": "BOURVILLE", "libell_d_acheminement": "BOURVILLE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76134"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e90b94548f428b0fc9088013b7502a7fe5a5114", "fields": {"nom_de_la_commune": "BREMONTIER MERVAL", "libell_d_acheminement": "BREMONTIER MERVAL", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76142"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78920e94768907426a358ed5b7cec0c2212a84d", "fields": {"nom_de_la_commune": "CALLEVILLE LES DEUX EGLISES", "libell_d_acheminement": "CALLEVILLE LES DEUX EGLISES", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76153"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d54c8bbf27e39df77567d31896cfb406c16029", "fields": {"nom_de_la_commune": "CAMPNEUSEVILLE", "libell_d_acheminement": "CAMPNEUSEVILLE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76154"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56779f1ebf4296b6b13bb370125b2256709acb1", "fields": {"nom_de_la_commune": "CANY BARVILLE", "libell_d_acheminement": "CANY BARVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76159"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a310b6cb6e3dd501c05c97170edaf64f01424c6", "fields": {"code_postal": "76490", "code_commune_insee": "76164", "libell_d_acheminement": "RIVES EN SEINE", "ligne_5": "ST WANDRILLE RANCON", "nom_de_la_commune": "RIVES EN SEINE", "coordonnees_gps": [49.5497184764, 0.687731909353]}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de9d40ce21e92437fc03e2fe0b91bd3293d2febf", "fields": {"nom_de_la_commune": "LE CAULE STE BEUVE", "libell_d_acheminement": "LE CAULE STE BEUVE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76166"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4ca95375135a029a87d4fd433f243d0fa28ca87", "fields": {"nom_de_la_commune": "LA CHAPELLE ST OUEN", "libell_d_acheminement": "LA CHAPELLE ST OUEN", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76171"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6afe96a9bad726d5f40101a506543b72091c0c0b", "fields": {"nom_de_la_commune": "CIDEVILLE", "libell_d_acheminement": "CIDEVILLE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76174"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd8d93e3e38b3ce21b2324a48c00aaa03a13b9b3", "fields": {"nom_de_la_commune": "CLEUVILLE", "libell_d_acheminement": "CLEUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76180"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522b9296ccad8037ec82008b6548f2f97ff28512", "fields": {"nom_de_la_commune": "COLMESNIL MANNEVILLE", "libell_d_acheminement": "COLMESNIL MANNEVILLE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76184"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5478976e754b02e877c09d4c0409dc5f1c0764", "fields": {"nom_de_la_commune": "CRESSY", "libell_d_acheminement": "CRESSY", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76191"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3379ff361760dd8f6cf9ecb1109867a42c6aab6a", "fields": {"nom_de_la_commune": "LA CRIQUE", "libell_d_acheminement": "LA CRIQUE", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76193"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a745575900aebbe75977fde09eaa0590ac9dfb", "fields": {"nom_de_la_commune": "CRIQUEBEUF EN CAUX", "libell_d_acheminement": "CRIQUEBEUF EN CAUX", "code_postal": "76111", "coordonnees_gps": [49.7290566584, 0.303233550691], "code_commune_insee": "76194"}, "geometry": {"type": "Point", "coordinates": [0.303233550691, 49.7290566584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bd12bd4b4ea7b5f54a18055d96761f7ee37352", "fields": {"nom_de_la_commune": "CRITOT", "libell_d_acheminement": "CRITOT", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76200"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34eacb5d748d7fadc08492e237b221c586b7c83", "fields": {"nom_de_la_commune": "CROIX MARE", "libell_d_acheminement": "CROIX MARE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76203"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ccf6a4929d77102004c9853d0599165e67ba4a", "fields": {"nom_de_la_commune": "DANCOURT", "libell_d_acheminement": "DANCOURT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76211"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba21c54efb76f6258af993ba8eb251f10b08ee65", "fields": {"nom_de_la_commune": "DAUBEUF SERVILLE", "libell_d_acheminement": "DAUBEUF SERVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76213"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de641a85a2ba4c0937288fa0cd4201369d2af338", "fields": {"nom_de_la_commune": "ECTOT L AUBER", "libell_d_acheminement": "ECTOT L AUBER", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76227"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0598c9fdc9cb34e6c03298c7e9473f48ad8dabd", "fields": {"nom_de_la_commune": "ELBEUF", "libell_d_acheminement": "ELBEUF", "code_postal": "76500", "coordonnees_gps": [49.3087517455, 0.955689730263], "code_commune_insee": "76231"}, "geometry": {"type": "Point", "coordinates": [0.955689730263, 49.3087517455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bace83ff893fe2d274f1bf539ee8f1974d84b8", "fields": {"nom_de_la_commune": "ENVERMEU", "libell_d_acheminement": "ENVERMEU", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76235"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73942d3e1810c82b86e23c92649a3b0bd0b96057", "fields": {"nom_de_la_commune": "ERMENOUVILLE", "libell_d_acheminement": "ERMENOUVILLE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76241"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6d10734dfb76554871a68da39aa97ac2ad17c1", "fields": {"nom_de_la_commune": "ESTOUTEVILLE ECALLES", "libell_d_acheminement": "ESTOUTEVILLE ECALLES", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76248"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea04ff767ca9ea95d2b10998e4d1b6b8f98765f", "fields": {"nom_de_la_commune": "ETAINHUS", "libell_d_acheminement": "ETAINHUS", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76250"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b7add578417ccf0dea3ac7f824a48f0d8a8bc4", "fields": {"nom_de_la_commune": "ETALLEVILLE", "libell_d_acheminement": "ETALLEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76251"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c32e831da064eb745b12da46c53ed07bafffc7", "fields": {"nom_de_la_commune": "ETRETAT", "libell_d_acheminement": "ETRETAT", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76254"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddf1fc296d4d25eb134decf06ea6da16fbabb17", "fields": {"nom_de_la_commune": "FLAMETS FRETILS", "libell_d_acheminement": "FLAMETS FRETILS", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76265"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b70e767b38ba0cb75b04a0e702e97819012d9a", "fields": {"nom_de_la_commune": "FONTAINE LA MALLET", "libell_d_acheminement": "FONTAINE LA MALLET", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76270"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b890c519a23297bf7365c6dee9fcc89dcef1db25", "fields": {"nom_de_la_commune": "FONTAINE LE BOURG", "libell_d_acheminement": "FONTAINE LE BOURG", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76271"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1def75cf55019f49dfd3745b2220a01051880f", "fields": {"nom_de_la_commune": "FONTAINE LE DUN", "libell_d_acheminement": "FONTAINE LE DUN", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76272"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b86e1b221c404910f5d2d20756f0a6ba7b7918", "fields": {"nom_de_la_commune": "FORGES LES EAUX", "libell_d_acheminement": "FORGES LES EAUX", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76276"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ee0cba703967c2db7017170a11c961e7bf46f3", "fields": {"nom_de_la_commune": "FRESLES", "libell_d_acheminement": "FRESLES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76283"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35703bdea43add1150a7ac4ff8a9cd1185a3626d", "fields": {"nom_de_la_commune": "FRESNE LE PLAN", "libell_d_acheminement": "FRESNE LE PLAN", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76285"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52290b77e57e8c760b7a28df3afeae28aa684197", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "MONT DE L IF", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822b82ccd25a476afd1926b3681d093ee849ed93", "fields": {"nom_de_la_commune": "FRICHEMESNIL", "libell_d_acheminement": "FRICHEMESNIL", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76290"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde7b7e1f156206f1a4e4f01cf39a52596bdbc90", "fields": {"nom_de_la_commune": "FROBERVILLE", "libell_d_acheminement": "FROBERVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76291"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0787bea41e222c63b96f423669391201d06050f", "fields": {"nom_de_la_commune": "FULTOT", "libell_d_acheminement": "FULTOT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76293"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2979bc0d78408ae15d14ea00fddac682e3ef06b", "fields": {"nom_de_la_commune": "GAINNEVILLE", "libell_d_acheminement": "GAINNEVILLE", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76296"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd344c3a125961711f2c9b43bd508c358b1fca2f", "fields": {"nom_de_la_commune": "GANCOURT ST ETIENNE", "libell_d_acheminement": "GANCOURT ST ETIENNE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76297"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1448677f7a264e234632a52fae9dba29cc2a7ef3", "fields": {"nom_de_la_commune": "GODERVILLE", "libell_d_acheminement": "GODERVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76302"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea4236d6268c3edc4fc1229df1db53f6f708617", "fields": {"nom_de_la_commune": "GONFREVILLE CAILLOT", "libell_d_acheminement": "GONFREVILLE CAILLOT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76304"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5176384671d365705f0b680a2765ca33214a513d", "fields": {"code_postal": "76700", "code_commune_insee": "76305", "libell_d_acheminement": "GONFREVILLE L ORCHER", "ligne_5": "MAYVILLE", "nom_de_la_commune": "GONFREVILLE L ORCHER", "coordonnees_gps": [49.4973035255, 0.236903290282]}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c01c6a88ce57ff4a61445c864f83e486cd7262", "fields": {"nom_de_la_commune": "GRAINVILLE LA TEINTURIERE", "libell_d_acheminement": "GRAINVILLE LA TEINTURIERE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76315"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3cb3139b60f5adc4f8676f604f212d20613e3c", "fields": {"nom_de_la_commune": "LES GRANDES VENTES", "libell_d_acheminement": "LES GRANDES VENTES", "code_postal": "76950", "coordonnees_gps": [49.7715311996, 1.23456768393], "code_commune_insee": "76321"}, "geometry": {"type": "Point", "coordinates": [1.23456768393, 49.7715311996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9fcab739f775bf4a8829d5fa5628aecedaaabc", "fields": {"nom_de_la_commune": "GREMONVILLE", "libell_d_acheminement": "GREMONVILLE", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76325"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3edb690707a28be486d3eb054e186613e556d4", "fields": {"nom_de_la_commune": "GUERVILLE", "libell_d_acheminement": "GUERVILLE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76333"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129bb84ee02b56275587b921c4fd4eca7d9d1652", "fields": {"nom_de_la_commune": "GUEURES", "libell_d_acheminement": "GUEURES", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76334"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112d8c3f03e4121999829af58696adf2c1e6657e", "fields": {"nom_de_la_commune": "GUEUTTEVILLE", "libell_d_acheminement": "GUEUTTEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76335"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bf34ff46103e10f031125a59cc4d3d4452c76d", "fields": {"nom_de_la_commune": "HATTENVILLE", "libell_d_acheminement": "HATTENVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76342"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13be0ad3265d7db724d308895d508e1d2319748a", "fields": {"nom_de_la_commune": "HAUSSEZ", "libell_d_acheminement": "HAUSSEZ", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76345"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "388edb0631a68f3841dd304253a49d0ad648f710", "fields": {"code_postal": "76610", "code_commune_insee": "76351", "libell_d_acheminement": "LE HAVRE", "ligne_5": "ROUELLES", "nom_de_la_commune": "LE HAVRE", "coordonnees_gps": [49.4965610328, 0.1402707121]}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361e1116a574d6c6118a64dbc4ab986fdf9a7de0", "fields": {"nom_de_la_commune": "HERMANVILLE", "libell_d_acheminement": "HERMANVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76356"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f59bd2bdf0098f3e631e3c4782eb81a27af713", "fields": {"nom_de_la_commune": "HEURTEAUVILLE", "libell_d_acheminement": "HEURTEAUVILLE", "code_postal": "76940", "coordonnees_gps": [49.4548266435, 0.725950851811], "code_commune_insee": "76362"}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46931b3f61c265370b8eb2a6641497a740299d5d", "fields": {"nom_de_la_commune": "LA HOUSSAYE BERANGER", "libell_d_acheminement": "LA HOUSSAYE BERANGER", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76369"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44e61c047e48bb697853ca21bb2ad03944a4dc5", "fields": {"nom_de_la_commune": "INGOUVILLE", "libell_d_acheminement": "INGOUVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76375"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb7f63fb6ee0c8b27bd06eb93e09bbb6ac85ca1", "fields": {"nom_de_la_commune": "LIMESY", "libell_d_acheminement": "LIMESY", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76385"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f1b6d96c9c84a8e810e8c3ddd1b93a8dbf85ad", "fields": {"nom_de_la_commune": "NITTING", "libell_d_acheminement": "NITTING", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57509"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3273e8a93f072340fb4ab41372120c4d5004ae14", "fields": {"nom_de_la_commune": "OGY", "libell_d_acheminement": "OGY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57523"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f436469df460a91e37e9b7693a8d5627a2c3911c", "fields": {"nom_de_la_commune": "PLAINE DE WALSCH", "libell_d_acheminement": "PLAINE DE WALSCH", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57544"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1d072acb54e39a17fd945085702bbf50edfae8", "fields": {"nom_de_la_commune": "POMMERIEUX", "libell_d_acheminement": "POMMERIEUX", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57547"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e19376cb68e87695b53432e9b03c6e821a9e5f", "fields": {"nom_de_la_commune": "PONTOY", "libell_d_acheminement": "PONTOY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57548"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31179f6cf8155fb1a9705ccbf32ab9e235f7df7", "fields": {"nom_de_la_commune": "POUILLY", "libell_d_acheminement": "POUILLY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57552"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2323493fc4dbcfaeb2a80f594ec41b3556b059", "fields": {"nom_de_la_commune": "PUTTIGNY", "libell_d_acheminement": "PUTTIGNY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57558"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e69755bb642cae6f85810135887c4c436d4bcfa", "fields": {"nom_de_la_commune": "RAHLING", "libell_d_acheminement": "RAHLING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57561"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1715843956f53984e99a05ef17e5be7e1bb292", "fields": {"nom_de_la_commune": "RANGUEVAUX", "libell_d_acheminement": "RANGUEVAUX", "code_postal": "57700", "coordonnees_gps": [49.3161755107, 6.04071219328], "code_commune_insee": "57562"}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6161ad157305c5deadbee277252bb7b32b9e6d84", "fields": {"nom_de_la_commune": "REDANGE", "libell_d_acheminement": "REDANGE", "code_postal": "57390", "coordonnees_gps": [49.4698725399, 5.94728059458], "code_commune_insee": "57565"}, "geometry": {"type": "Point", "coordinates": [5.94728059458, 49.4698725399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb48de3fee98026c551b7ce86f2fae64b0eb0af4", "fields": {"nom_de_la_commune": "REMERING LES PUTTELANGE", "libell_d_acheminement": "REMERING LES PUTTELANGE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57571"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8b91a4d62319fba3ee98e4e5d81ecc212f2b09", "fields": {"nom_de_la_commune": "BASSE RENTGEN", "libell_d_acheminement": "BASSE RENTGEN", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57574"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad02b01d3476fe225e8c42279d187f1676ac0350", "fields": {"nom_de_la_commune": "RETONFEY", "libell_d_acheminement": "RETONFEY", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57575"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdff66193810457a7e6dbdb1d1cf7c6505ce105", "fields": {"nom_de_la_commune": "REYERSVILLER", "libell_d_acheminement": "REYERSVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57577"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba65fd9840c88a1eefdfe1a96f68fdb876c61677", "fields": {"nom_de_la_commune": "RICHEVAL", "libell_d_acheminement": "RICHEVAL", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57583"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3052589157fe181cc0ac4795ec26dacdad0a8129", "fields": {"nom_de_la_commune": "ROCHONVILLERS", "libell_d_acheminement": "ROCHONVILLERS", "code_postal": "57840", "coordonnees_gps": [49.4301490662, 6.01185144376], "code_commune_insee": "57586"}, "geometry": {"type": "Point", "coordinates": [6.01185144376, 49.4301490662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b013eba5316de9087714e5d8952511cd1c73c0e1", "fields": {"nom_de_la_commune": "RODALBE", "libell_d_acheminement": "RODALBE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57587"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0667814a0fb45871b2e4044d030ec7df187dc45b", "fields": {"nom_de_la_commune": "ROLBING", "libell_d_acheminement": "ROLBING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57590"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4d8222d8e8bdd68404fb77cfb01e58e8acdf26", "fields": {"nom_de_la_commune": "RONCOURT", "libell_d_acheminement": "RONCOURT", "code_postal": "57860", "coordonnees_gps": [49.2108492485, 6.04018502241], "code_commune_insee": "57593"}, "geometry": {"type": "Point", "coordinates": [6.04018502241, 49.2108492485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db70335a0970ce8d24a2e00c313593b5efb6b6ba", "fields": {"nom_de_la_commune": "ST AVOLD", "libell_d_acheminement": "ST AVOLD", "code_postal": "57500", "coordonnees_gps": [49.1288514392, 6.71284578703], "code_commune_insee": "57606"}, "geometry": {"type": "Point", "coordinates": [6.71284578703, 49.1288514392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65234a74ffe45d3eae868999a06df734cf3d2e4b", "fields": {"nom_de_la_commune": "ST JEAN KOURTZERODE", "libell_d_acheminement": "ST JEAN KOURTZERODE", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57614"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374bfeb9b12f4e06fb69102bbdb146d5e5d9c906", "fields": {"nom_de_la_commune": "ST JULIEN LES METZ", "libell_d_acheminement": "ST JULIEN LES METZ", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57616"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75aa4a63bb26168a4e9c8bad64b9a73bf128657", "fields": {"nom_de_la_commune": "ST QUIRIN", "libell_d_acheminement": "ST QUIRIN", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57623"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef9f0df95e287d5dc0e916fe16fe86fd8d29e74", "fields": {"nom_de_la_commune": "SANRY LES VIGY", "libell_d_acheminement": "SANRY LES VIGY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57626"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed7cbec721618292e3c0bd5d5b92dfce124abe6", "fields": {"nom_de_la_commune": "SANRY SUR NIED", "libell_d_acheminement": "SANRY SUR NIED", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57627"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8ffff84ce2283ff3f431006b3617cf5080b3c5", "fields": {"nom_de_la_commune": "SARREBOURG", "libell_d_acheminement": "SARREBOURG", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57630"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e1a400209684af79a940e73e246ff6f40a5a36", "fields": {"code_postal": "57200", "code_commune_insee": "57631", "libell_d_acheminement": "SARREGUEMINES", "ligne_5": "FOLPERSVILLER", "nom_de_la_commune": "SARREGUEMINES", "coordonnees_gps": [49.1056910456, 7.11772399518]}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c79a6a74092d90e754a6dc68201c4702efa5ea8", "fields": {"nom_de_la_commune": "SARREINSMING", "libell_d_acheminement": "SARREINSMING", "code_postal": "57905", "coordonnees_gps": [49.0718152134, 7.12581121183], "code_commune_insee": "57633"}, "geometry": {"type": "Point", "coordinates": [7.12581121183, 49.0718152134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f10c46e89fd646a1178093fa7cfd4d10c8fc4a", "fields": {"nom_de_la_commune": "SCHOENECK", "libell_d_acheminement": "SCHOENECK", "code_postal": "57350", "coordonnees_gps": [49.2014476423, 6.94907800284], "code_commune_insee": "57638"}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a1e8610a3e248b342c2cc5b50d2f2622b4f428", "fields": {"nom_de_la_commune": "SCHORBACH", "libell_d_acheminement": "SCHORBACH", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57639"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002103b3ffc0ffd0a290b387de1c40ae644a6cd0", "fields": {"nom_de_la_commune": "SCHWERDORFF", "libell_d_acheminement": "SCHWERDORFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57640"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ac405a79b404b214dc98adca8f9840f4169988", "fields": {"nom_de_la_commune": "SIERCK LES BAINS", "libell_d_acheminement": "SIERCK LES BAINS", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57650"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c515e397636cb56f655c1437ae4da1ba24a8e067", "fields": {"nom_de_la_commune": "SIERSTHAL", "libell_d_acheminement": "SIERSTHAL", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57651"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd9f72243797f62c960c874b9c8c1f8b103c264", "fields": {"code_postal": "57350", "code_commune_insee": "57660", "libell_d_acheminement": "STIRING WENDEL", "ligne_5": "VERRERIE SOPHIE", "nom_de_la_commune": "STIRING WENDEL", "coordonnees_gps": [49.2014476423, 6.94907800284]}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9dd11f567e47be765663640eba4d4f2d030fdaf", "fields": {"nom_de_la_commune": "VAHL EBERSING", "libell_d_acheminement": "VAHL EBERSING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57684"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0303fcc47579ede2c6d4dd8ad053882b53b703", "fields": {"nom_de_la_commune": "VARIZE", "libell_d_acheminement": "VARIZE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57695"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe1922056c0f8746bfc5e91446d4cbcec853b6c", "fields": {"nom_de_la_commune": "VARSBERG", "libell_d_acheminement": "VARSBERG", "code_postal": "57880", "coordonnees_gps": [49.1848577986, 6.63106406972], "code_commune_insee": "57696"}, "geometry": {"type": "Point", "coordinates": [6.63106406972, 49.1848577986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e506ad4fedf47a35e9950462c97cbe4024b8d827", "fields": {"nom_de_la_commune": "VECKRING", "libell_d_acheminement": "VECKRING", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57704"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44589c141b5ca7cb2b7f5d7bb18dccc4d61d544", "fields": {"nom_de_la_commune": "VERNEVILLE", "libell_d_acheminement": "VERNEVILLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57707"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf36c51cfae87ce541b1bb3d7fd37d856ddc8c10", "fields": {"nom_de_la_commune": "VIGY", "libell_d_acheminement": "VIGY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57716"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67412c4854eac7751e76820fb773a65eb9ffbb33", "fields": {"nom_de_la_commune": "VILLER", "libell_d_acheminement": "VILLER", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57717"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96da94f55d20545abcd20ed415cb1c3225d0d60d", "fields": {"nom_de_la_commune": "VITTERSBOURG", "libell_d_acheminement": "VITTERSBOURG", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57725"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d1e128ddd2be1254c6cc48cd4ed080bd11f48d9", "fields": {"nom_de_la_commune": "VIVIERS", "libell_d_acheminement": "VIVIERS", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57727"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d7a749cb9293640841e35a6e0ab79b433ece0a", "fields": {"nom_de_la_commune": "VULMONT", "libell_d_acheminement": "VULMONT", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57737"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dae10cd482cdbbd5473c9cd5943bd13254403ef", "fields": {"nom_de_la_commune": "WALDHOUSE", "libell_d_acheminement": "WALDHOUSE", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57738"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f73f8631b691204d53049e5ce79e46f29f4c576", "fields": {"nom_de_la_commune": "WALSCHEID", "libell_d_acheminement": "WALSCHEID", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57742"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4082a7056787ab807eb3d6343c18bf6da1cb185e", "fields": {"nom_de_la_commune": "VOELFLING LES BOUZONVILLE", "libell_d_acheminement": "VOELFLING LES BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57749"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4844336aceabadf72b4f14776e023e94c5342256", "fields": {"nom_de_la_commune": "WOUSTVILLER", "libell_d_acheminement": "WOUSTVILLER", "code_postal": "57915", "coordonnees_gps": [49.0787861977, 7.00585850408], "code_commune_insee": "57752"}, "geometry": {"type": "Point", "coordinates": [7.00585850408, 49.0787861977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4a502f28b2c06d38c2f50423a98923b35d3dc2", "fields": {"nom_de_la_commune": "ZETTING", "libell_d_acheminement": "ZETTING", "code_postal": "57905", "coordonnees_gps": [49.0718152134, 7.12581121183], "code_commune_insee": "57760"}, "geometry": {"type": "Point", "coordinates": [7.12581121183, 49.0718152134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3a3552fe60fb0b2a83d32df995a8dc01d46afa", "fields": {"nom_de_la_commune": "ZOUFFTGEN", "libell_d_acheminement": "ZOUFFTGEN", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57764"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e38070cc3fba790eea9b5519baf40bac7134e72", "fields": {"nom_de_la_commune": "STUCKANGE", "libell_d_acheminement": "STUCKANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57767"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e44dbc75be1392fd5a9fce337e7c8fe441afd6", "fields": {"nom_de_la_commune": "ALLUY", "libell_d_acheminement": "ALLUY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58004"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ac3acc3a06fd5258ea40cb62308c6bb4dfc00b", "fields": {"nom_de_la_commune": "ANLEZY", "libell_d_acheminement": "ANLEZY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58006"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8788754e27ad58bbedca6181e17908ce200b7289", "fields": {"nom_de_la_commune": "ANNAY", "libell_d_acheminement": "ANNAY", "code_postal": "58450", "coordonnees_gps": [47.5311404118, 2.91887895811], "code_commune_insee": "58007"}, "geometry": {"type": "Point", "coordinates": [2.91887895811, 47.5311404118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee06b06c8001ff59d46f4d27a071f4e9c2b40776", "fields": {"nom_de_la_commune": "ARTHEL", "libell_d_acheminement": "ARTHEL", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58013"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f94b39cccb117b78a604731f60634aed3a00d3c", "fields": {"nom_de_la_commune": "ARZEMBOUY", "libell_d_acheminement": "ARZEMBOUY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58014"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "067548e24da4a59ef63c4da44b3f42b5d5d7a7ba", "fields": {"nom_de_la_commune": "AVRIL SUR LOIRE", "libell_d_acheminement": "AVRIL SUR LOIRE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58020"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece5b4c934837c7765f9e14677d0d44fed95573b", "fields": {"nom_de_la_commune": "BEAUMONT LA FERRIERE", "libell_d_acheminement": "BEAUMONT LA FERRIERE", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58027"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7390a93bccb417c83b27a89ad73c933edd450f19", "fields": {"nom_de_la_commune": "BILLY SUR OISY", "libell_d_acheminement": "BILLY SUR OISY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58032"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd93bdb652bf22d63965f28c5d835db6cf130ea9", "fields": {"nom_de_la_commune": "BREUGNON", "libell_d_acheminement": "BREUGNON", "code_postal": "58460", "coordonnees_gps": [47.436143333, 3.39666081915], "code_commune_insee": "58038"}, "geometry": {"type": "Point", "coordinates": [3.39666081915, 47.436143333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdbdf0484fd6f689c592f08ec20f1a3cad29a834", "fields": {"nom_de_la_commune": "LA CELLE SUR NIEVRE", "libell_d_acheminement": "LA CELLE SUR NIEVRE", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58045"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f34af9e0177c55ab1f3543730217838970ec3592", "fields": {"nom_de_la_commune": "CHAMPVERT", "libell_d_acheminement": "CHAMPVERT", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58055"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d88107a2a9bbd7d3389a88c684e03b73ec5f814", "fields": {"nom_de_la_commune": "CHANTENAY ST IMBERT", "libell_d_acheminement": "CHANTENAY ST IMBERT", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58057"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bb67abfe7c14e4dda1a0d8d8dbd9d7128517c8", "fields": {"nom_de_la_commune": "LA CHARITE SUR LOIRE", "libell_d_acheminement": "LA CHARITE SUR LOIRE", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58059"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf449b59b18e5a5ac72c18c931b5a51d367646b", "fields": {"nom_de_la_commune": "CHARRIN", "libell_d_acheminement": "CHARRIN", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58060"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e6e7fcfc9c436a75bbbb1526e3afaa6a687cd2", "fields": {"nom_de_la_commune": "CHATILLON EN BAZOIS", "libell_d_acheminement": "CHATILLON EN BAZOIS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58065"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867ff64be8068ab21395b0799cfaa8a28277a1f4", "fields": {"nom_de_la_commune": "CHATIN", "libell_d_acheminement": "CHATIN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58066"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddeaa88a4cc788189640d94b7887cf22676a74bf", "fields": {"nom_de_la_commune": "CHEVROCHES", "libell_d_acheminement": "CHEVROCHES", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58073"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9fab9f544058c4dd69a75f63c1e11b87a37771", "fields": {"nom_de_la_commune": "CHOUGNY", "libell_d_acheminement": "CHOUGNY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58076"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3896bc9bc62071f9050f3d491380a1f4fa1dd6cd", "fields": {"nom_de_la_commune": "CLAMECY", "libell_d_acheminement": "CLAMECY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58079"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9752e519d67363e31e344614c5b8cf112c713c", "fields": {"nom_de_la_commune": "CORVOL D EMBERNARD", "libell_d_acheminement": "CORVOL D EMBERNARD", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58084"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81f7c8593c22359b863c33dc85569a2028d4fec", "fields": {"code_postal": "58200", "code_commune_insee": "58086", "libell_d_acheminement": "COSNE COURS SUR LOIRE", "ligne_5": "COURS", "nom_de_la_commune": "COSNE COURS SUR LOIRE", "coordonnees_gps": [47.4176980884, 2.99755366408]}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17db05678df70ac8bc9c773810bfb31bbdea8a29", "fields": {"nom_de_la_commune": "DAMPIERRE SOUS BOUHY", "libell_d_acheminement": "DAMPIERRE SOUS BOUHY", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58094"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbc1b36a0fe91f6cdd13289c8f854b84954405f", "fields": {"nom_de_la_commune": "DEVAY", "libell_d_acheminement": "DEVAY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58096"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bd648c7a36d0a2e17fc539a880709d0d232531", "fields": {"nom_de_la_commune": "LA FERMETE", "libell_d_acheminement": "LA FERMETE", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58112"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b680a95d9460003d4fe8cf172671902c065270", "fields": {"nom_de_la_commune": "FERTREVE", "libell_d_acheminement": "FERTREVE", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58113"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f65b915468795f7437ea826bb9d03b9b7d3ac3", "fields": {"nom_de_la_commune": "FLETY", "libell_d_acheminement": "FLETY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58114"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbe635606215b85d37d9264afc6d5b092358600", "fields": {"nom_de_la_commune": "FOURCHAMBAULT", "libell_d_acheminement": "FOURCHAMBAULT", "code_postal": "58600", "coordonnees_gps": [47.0382230874, 3.09310313949], "code_commune_insee": "58117"}, "geometry": {"type": "Point", "coordinates": [3.09310313949, 47.0382230874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d11251d5f243991ca8950dbb54c1c0c7f4d1c6e9", "fields": {"nom_de_la_commune": "FRASNAY REUGNY", "libell_d_acheminement": "FRASNAY REUGNY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58119"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446a740bf856de21e1ad4ba1ead1078845e9d358", "fields": {"nom_de_la_commune": "GARCHIZY", "libell_d_acheminement": "GARCHIZY", "code_postal": "58600", "coordonnees_gps": [47.0382230874, 3.09310313949], "code_commune_insee": "58121"}, "geometry": {"type": "Point", "coordinates": [3.09310313949, 47.0382230874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7031548dfab43d044f66c63efcb96a10f9eab278", "fields": {"nom_de_la_commune": "GIRY", "libell_d_acheminement": "GIRY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58127"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1daed52c14a95b2005c1ab6823ef78b465dfe884", "fields": {"nom_de_la_commune": "LAVAULT DE FRETOY", "libell_d_acheminement": "LAVAULT DE FRETOY", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58141"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94138d634c85c6ca594e44a452d2b411e6d56222", "fields": {"nom_de_la_commune": "LUCENAY LES AIX", "libell_d_acheminement": "LUCENAY LES AIX", "code_postal": "58380", "coordonnees_gps": [46.697962365, 3.49183670382], "code_commune_insee": "58146"}, "geometry": {"type": "Point", "coordinates": [3.49183670382, 46.697962365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c5014e811faf229ead96bb2ed1418eed6d1668", "fields": {"nom_de_la_commune": "MARS SUR ALLIER", "libell_d_acheminement": "MARS SUR ALLIER", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58158"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440df65212ccafa5d0d9304000c6c59f6c3c571b", "fields": {"code_postal": "58180", "code_commune_insee": "58160", "libell_d_acheminement": "MARZY", "ligne_5": "CORCELLES", "nom_de_la_commune": "MARZY", "coordonnees_gps": [46.984190932, 3.09279267873]}, "geometry": {"type": "Point", "coordinates": [3.09279267873, 46.984190932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75513bc20de2641caf08e1e32fcb85a312ead722", "fields": {"nom_de_la_commune": "MHERE", "libell_d_acheminement": "MHERE", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58166"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80cba09f15391d914d32783599d6046820596470", "fields": {"nom_de_la_commune": "MILLAY", "libell_d_acheminement": "MILLAY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58168"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbe6d21a78c10c00007d927eadcc77406916f5e", "fields": {"nom_de_la_commune": "MONTIGNY SUR CANNE", "libell_d_acheminement": "MONTIGNY SUR CANNE", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58178"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f8f8115ece494f20cc9f9255a91d10af8fea40", "fields": {"nom_de_la_commune": "MONTREUILLON", "libell_d_acheminement": "MONTREUILLON", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58179"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af3965850faea323a8e68dee5a8d6c69822d8206", "fields": {"nom_de_la_commune": "MONTSAUCHE LES SETTONS", "libell_d_acheminement": "MONTSAUCHE LES SETTONS", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58180"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd0281ab810ab460c7114f3e32f6b4cbd10d58d", "fields": {"nom_de_la_commune": "MOULINS ENGILBERT", "libell_d_acheminement": "MOULINS ENGILBERT", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58182"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcd3917fa5f3bc19073e92d1f8dfe644c38c4da", "fields": {"nom_de_la_commune": "NEUVILLE LES DECIZE", "libell_d_acheminement": "NEUVILLE LES DECIZE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58192"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909bf759884d0d69c94fc61e679df0d9099de56f", "fields": {"nom_de_la_commune": "OISY", "libell_d_acheminement": "OISY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58198"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2a05e6611b7291b5714096dc86ae8d40227fcc", "fields": {"nom_de_la_commune": "ONLAY", "libell_d_acheminement": "ONLAY", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58199"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a039b8528b6b56373db49bb278e1c4e4826327d0", "fields": {"nom_de_la_commune": "PLANCHEZ", "libell_d_acheminement": "PLANCHEZ", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58210"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe0a46952a654394727a0305c1ff78851e9be17", "fields": {"nom_de_la_commune": "POUSSEAUX", "libell_d_acheminement": "POUSSEAUX", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58217"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6307410b4b26b7b71efc2f5fd72a0ffd7984e54", "fields": {"nom_de_la_commune": "REMILLY", "libell_d_acheminement": "REMILLY", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58221"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aae972e62fdb4520705763e7010fdc5b020b26c", "fields": {"nom_de_la_commune": "ST BENIN D AZY", "libell_d_acheminement": "ST BENIN D AZY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58232"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9240b263e7be8ea4faedbc82dcf398838e190f", "fields": {"nom_de_la_commune": "ST FRANCHY", "libell_d_acheminement": "ST FRANCHY", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58240"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b65d07ff14f42559ecfb98add1d6f6a7782841", "fields": {"nom_de_la_commune": "ST GERMAIN CHASSENAY", "libell_d_acheminement": "ST GERMAIN CHASSENAY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58241"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7601fb529d1ac1ff57d3f618d64f6957af4872", "fields": {"nom_de_la_commune": "PESSINES", "libell_d_acheminement": "PESSINES", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17275"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee9ba9b283a6859c48bd30270ba94d38b0b212d", "fields": {"code_postal": "17400", "code_commune_insee": "17277", "libell_d_acheminement": "ESSOUVERT", "ligne_5": "LA BENATE", "nom_de_la_commune": "ESSOUVERT", "coordonnees_gps": [45.947220271, -0.4881385622]}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89abe1a9bd942082d9f79ea5344416e0125d4d98", "fields": {"code_postal": "17400", "code_commune_insee": "17277", "libell_d_acheminement": "ESSOUVERT", "ligne_5": "ST DENIS DU PIN", "nom_de_la_commune": "ESSOUVERT", "coordonnees_gps": [45.947220271, -0.4881385622]}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c54cf28b905a1ca8c3039d78b8ea2bf542f94fa", "fields": {"nom_de_la_commune": "PORT D ENVAUX", "libell_d_acheminement": "PORT D ENVAUX", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17285"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4c0c35f49c2079d4b7c3f0509d3f5b5ddff3c2", "fields": {"nom_de_la_commune": "LES PORTES EN RE", "libell_d_acheminement": "LES PORTES EN RE", "code_postal": "17880", "coordonnees_gps": [46.2430241357, -1.49996251528], "code_commune_insee": "17286"}, "geometry": {"type": "Point", "coordinates": [-1.49996251528, 46.2430241357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbbf54a679f8aa0fddc00b5458a29217131fc3c", "fields": {"nom_de_la_commune": "PUYROLLAND", "libell_d_acheminement": "PUYROLLAND", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17294"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e71598c07a410aa19fe690ea0411776e2ad0316f", "fields": {"nom_de_la_commune": "RIOUX", "libell_d_acheminement": "RIOUX", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17298"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b856f281be61acd732fa7a17a586664afcee2939", "fields": {"nom_de_la_commune": "LA ROCHELLE", "libell_d_acheminement": "LA ROCHELLE", "code_postal": "17000", "coordonnees_gps": [46.1620724166, -1.17485679534], "code_commune_insee": "17300"}, "geometry": {"type": "Point", "coordinates": [-1.17485679534, 46.1620724166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c20e4a6e3f79c5e399440244261e430479c420", "fields": {"code_postal": "17000", "code_commune_insee": "17300", "libell_d_acheminement": "LA ROCHELLE", "ligne_5": "LA PALLICE", "nom_de_la_commune": "LA ROCHELLE", "coordonnees_gps": [46.1620724166, -1.17485679534]}, "geometry": {"type": "Point", "coordinates": [-1.17485679534, 46.1620724166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b89d13ff747d20923f0b28d37d1a1bd1a1c4445", "fields": {"nom_de_la_commune": "ST AGNANT", "libell_d_acheminement": "ST AGNANT", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17308"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865ecd57b140e19f3dc89a9f496eae327394b461", "fields": {"nom_de_la_commune": "ST ANDRE DE LIDON", "libell_d_acheminement": "ST ANDRE DE LIDON", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17310"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed98c2ed1b91212e75e316e6b3842551de8eb20", "fields": {"nom_de_la_commune": "ST AUGUSTIN", "libell_d_acheminement": "ST AUGUSTIN", "code_postal": "17570", "coordonnees_gps": [45.6992032727, -1.14778686925], "code_commune_insee": "17311"}, "geometry": {"type": "Point", "coordinates": [-1.14778686925, 45.6992032727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d3f95a4f9ec6980f49d7f1a9cddb2661998da8", "fields": {"nom_de_la_commune": "ST CIERS CHAMPAGNE", "libell_d_acheminement": "ST CIERS CHAMPAGNE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17316"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52c7e9d9d67e0221478184c03c92d261b48a113", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17319"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf89fae8dd1b4dc9a7a281ce4a5f86724bde1392", "fields": {"nom_de_la_commune": "ST DIZANT DU BOIS", "libell_d_acheminement": "ST DIZANT DU BOIS", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17324"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405a8c55770ad11774dc550f34ea2f530ca063e2", "fields": {"nom_de_la_commune": "ST EUGENE", "libell_d_acheminement": "ST EUGENE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17326"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00baccbc9d6ca9d9be11a427e2cb44a184ca1eb1", "fields": {"nom_de_la_commune": "ST FORT SUR GIRONDE", "libell_d_acheminement": "ST FORT SUR GIRONDE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17328"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1442a6f30b319cf474c0ad65798585e1d4541f2", "fields": {"nom_de_la_commune": "ST GEORGES D OLERON", "libell_d_acheminement": "ST GEORGES D OLERON", "code_postal": "17190", "coordonnees_gps": [45.9760434465, -1.32419340484], "code_commune_insee": "17337"}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf2b5dc6933b28535f989142bfabc657e74237b", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "CHERAY", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f040df08f56ce57ae1febb39af23c48ab41bb7e", "fields": {"code_postal": "17320", "code_commune_insee": "17351", "libell_d_acheminement": "ST JUST LUZAC", "ligne_5": "LUZAC", "nom_de_la_commune": "ST JUST LUZAC", "coordonnees_gps": [45.8153693416, -1.06418747186]}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16d2f9eb9f6c2cdf68b1d8f419ae94fdb197a1b0", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17361"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a54370760e367e10b7218c33d76ea250fdf507b", "fields": {"nom_de_la_commune": "ST MARTIAL DE MIRAMBEAU", "libell_d_acheminement": "ST MARTIAL DE MIRAMBEAU", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17362"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb10dd93ab1daa94eb6b344551d747a5562ecca4", "fields": {"nom_de_la_commune": "ST NAZAIRE SUR CHARENTE", "libell_d_acheminement": "ST NAZAIRE SUR CHARENTE", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17375"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "666a2715b959f16245f257ca39c96ac334443a30", "fields": {"nom_de_la_commune": "ST OUEN D AUNIS", "libell_d_acheminement": "ST OUEN D AUNIS", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17376"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a51b1ef6d2bf352d948520626c560b657598145", "fields": {"nom_de_la_commune": "ST QUANTIN DE RANCANNE", "libell_d_acheminement": "ST QUANTIN DE RANCANNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17388"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ab3aa66d5f42ad05c2e0072268ada75716b4cd", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17389"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c7d111efe1ef12cf6904c201d76e837e0b79a1", "fields": {"nom_de_la_commune": "ST ROMAIN SUR GIRONDE", "libell_d_acheminement": "ST ROMAIN SUR GIRONDE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17392"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5d7b1db3baa52439d6940dda1fe220c9ed6f3a", "fields": {"code_postal": "17350", "code_commune_insee": "17397", "libell_d_acheminement": "ST SAVINIEN", "ligne_5": "AGONNAY", "nom_de_la_commune": "ST SAVINIEN", "coordonnees_gps": [45.8646141177, -0.657370480976]}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd84d0e08fc5311ad82bff09e0c6544e36962e93", "fields": {"nom_de_la_commune": "ST SIGISMOND DE CLERMONT", "libell_d_acheminement": "ST SIGISMOND DE CLERMONT", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17402"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ce9e5d7846a5072c353cbe2e39bb72b5449e3d", "fields": {"nom_de_la_commune": "ST XANDRE", "libell_d_acheminement": "ST XANDRE", "code_postal": "17138", "coordonnees_gps": [46.202457274, -1.09989389578], "code_commune_insee": "17414"}, "geometry": {"type": "Point", "coordinates": [-1.09989389578, 46.202457274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db775cb7648d21fc233c7f530232ca16bdbcd490", "fields": {"nom_de_la_commune": "SALIGNAC DE MIRAMBEAU", "libell_d_acheminement": "SALIGNAC DE MIRAMBEAU", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17417"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4280bb9e7f80159f7846e9a4b3eca064d26030", "fields": {"nom_de_la_commune": "SOULIGNONNE", "libell_d_acheminement": "SOULIGNONNE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17431"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1f355166c285516b19212ffd1afdeea5418b04", "fields": {"nom_de_la_commune": "SOUSMOULINS", "libell_d_acheminement": "SOUSMOULINS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17433"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5cd93fc06c72c34760ab518354c8488e4378dc0", "fields": {"nom_de_la_commune": "SURGERES", "libell_d_acheminement": "SURGERES", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17434"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6add86617da08823a03562218b0a1d8a5ce61310", "fields": {"nom_de_la_commune": "LE THOU", "libell_d_acheminement": "LE THOU", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17447"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dca434e7547ebd24635dda94067a4b741192720", "fields": {"nom_de_la_commune": "LES TOUCHES DE PERIGNY", "libell_d_acheminement": "LES TOUCHES DE PERIGNY", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17451"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f3ddb9bb47cb89e0542a07a9c01762070daf35", "fields": {"nom_de_la_commune": "VARAIZE", "libell_d_acheminement": "VARAIZE", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17459"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c726b1386b527515b76296607551d85d0d6a4b", "fields": {"nom_de_la_commune": "VARZAY", "libell_d_acheminement": "VARZAY", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17460"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ce76ced3d8412b31bf5b85afc61c469a5c2515", "fields": {"nom_de_la_commune": "VAUX SUR MER", "libell_d_acheminement": "VAUX SUR MER", "code_postal": "17640", "coordonnees_gps": [45.6445589679, -1.05904325775], "code_commune_insee": "17461"}, "geometry": {"type": "Point", "coordinates": [-1.05904325775, 45.6445589679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f10cc9462f9e1651e4c9f8acd5506478740c83", "fields": {"nom_de_la_commune": "VIBRAC", "libell_d_acheminement": "VIBRAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17468"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd692c164fa01db837fccf99421fdd433ce75f9", "fields": {"nom_de_la_commune": "VILLARS LES BOIS", "libell_d_acheminement": "VILLARS LES BOIS", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17470"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e80468f863b9f90f8fc5895a21bc2d9174a72aa", "fields": {"nom_de_la_commune": "VILLENEUVE LA COMTESSE", "libell_d_acheminement": "VILLENEUVE LA COMTESSE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17474"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d066b9bea70c8bfe533dd38e52fb36a91b7d256", "fields": {"nom_de_la_commune": "VILLEXAVIER", "libell_d_acheminement": "VILLEXAVIER", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17476"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4317a8ebba290fedc75f8372a4c80d6d6bdee03b", "fields": {"nom_de_la_commune": "VIRSON", "libell_d_acheminement": "VIRSON", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17480"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2cc1c5c205ccb323ba52a747c82095bb6ed871", "fields": {"nom_de_la_commune": "VOISSAY", "libell_d_acheminement": "VOISSAY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17481"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae323f2fa3ab90dc3ff95edcbf1398b521d99dcd", "fields": {"nom_de_la_commune": "LE GRAND VILLAGE PLAGE", "libell_d_acheminement": "LE GRAND VILLAGE PLAGE", "code_postal": "17370", "coordonnees_gps": [45.8397665492, -1.23126758244], "code_commune_insee": "17485"}, "geometry": {"type": "Point", "coordinates": [-1.23126758244, 45.8397665492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2839d04c3343ba9e7731f3a326300c3de5f82769", "fields": {"nom_de_la_commune": "AINAY LE VIEIL", "libell_d_acheminement": "AINAY LE VIEIL", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18002"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e7060ad22e2002e3df00c540a2e6602ad9c06f0", "fields": {"nom_de_la_commune": "ARGENVIERES", "libell_d_acheminement": "ARGENVIERES", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18012"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2843c368a408299ec69590900a010614e60bbb", "fields": {"nom_de_la_commune": "ASSIGNY", "libell_d_acheminement": "ASSIGNY", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18014"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f3fe8bd64efd8d09d83e904095879bebd089cc", "fields": {"nom_de_la_commune": "BANNAY", "libell_d_acheminement": "BANNAY", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18020"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2cec4891b03c68db9a74308f39eb27b24716a7a", "fields": {"nom_de_la_commune": "BERRY BOUY", "libell_d_acheminement": "BERRY BOUY", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18028"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55404ff1b372baf5a472757423c749517f618fd", "fields": {"nom_de_la_commune": "BLANCAFORT", "libell_d_acheminement": "BLANCAFORT", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18030"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c7942110c8ed4d8e43b8fd8a0984c95d7a5ecb", "fields": {"nom_de_la_commune": "BRECY", "libell_d_acheminement": "BRECY", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18035"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514ced0e7485bd42464d05aa20e71843650865fb", "fields": {"nom_de_la_commune": "LA CELETTE", "libell_d_acheminement": "LA CELETTE", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18041"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0ea704dc85b872478a15b7c41fa24e7ecb451d", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18046"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc2955d948aa43306fdb3175aa72508c57838e8", "fields": {"nom_de_la_commune": "LA CHAPELLE ST URSIN", "libell_d_acheminement": "LA CHAPELLE ST URSIN", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18050"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8116249cee15c95adfe20676becf28813c86db", "fields": {"nom_de_la_commune": "CHAUMOUX MARCILLY", "libell_d_acheminement": "CHAUMOUX MARCILLY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18061"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3b37a30d841a804a6866113f15c07b42d3a502", "fields": {"nom_de_la_commune": "COGNY", "libell_d_acheminement": "COGNY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18068"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ea2b7059d8e6abc032c762f2cd9e3d53cb04e1", "fields": {"nom_de_la_commune": "CONCRESSAULT", "libell_d_acheminement": "CONCRESSAULT", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18070"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e190895bc48ea6df0b641f55412baa2464afd0", "fields": {"nom_de_la_commune": "CORQUOY", "libell_d_acheminement": "CORQUOY", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18073"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152fb4b7907b641ab36ca27b47a44d5522d36ec1", "fields": {"nom_de_la_commune": "COUST", "libell_d_acheminement": "COUST", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18076"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce2f622f01be146cdcd2e54c084c383695d5901", "fields": {"nom_de_la_commune": "CREZANCY EN SANCERRE", "libell_d_acheminement": "CREZANCY EN SANCERRE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18079"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8bc24104bcc32d269c7d48878abd13eda9a0db", "fields": {"nom_de_la_commune": "CROSSES", "libell_d_acheminement": "CROSSES", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18081"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e17d67f696ab6aaa6e4a1b533be2cd310d8770", "fields": {"nom_de_la_commune": "DUN SUR AURON", "libell_d_acheminement": "DUN SUR AURON", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18087"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9b73d40d68300c46e7f4ee4665c99f6b2eca5f", "fields": {"nom_de_la_commune": "FAVERDINES", "libell_d_acheminement": "FAVERDINES", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18093"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61cd817a62c9093dac5000922d0f89f310454f1", "fields": {"nom_de_la_commune": "FEUX", "libell_d_acheminement": "FEUX", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18094"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae46f01fe06dc88904a948a29f5282a34384da50", "fields": {"nom_de_la_commune": "FOECY", "libell_d_acheminement": "FOECY", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18096"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633cfd58d251d6f00f3dcc8d3c84bd3416a92432", "fields": {"nom_de_la_commune": "GIVARDON", "libell_d_acheminement": "GIVARDON", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18102"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ae3000535d0fd16b7faa7a8b9250d60f9f665d", "fields": {"nom_de_la_commune": "GROISES", "libell_d_acheminement": "GROISES", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18104"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f081567e3ba881897d29e579bc29dd2598c3f603", "fields": {"nom_de_la_commune": "HENRICHEMONT", "libell_d_acheminement": "HENRICHEMONT", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18109"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038b0783b1d6a7018f797022fc03c3f71da39e1f", "fields": {"nom_de_la_commune": "HUMBLIGNY", "libell_d_acheminement": "HUMBLIGNY", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18111"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67c201d452aec4a89afdcba0852b53ea6e0f2c1", "fields": {"nom_de_la_commune": "IDS ST ROCH", "libell_d_acheminement": "IDS ST ROCH", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18112"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa928f2b73fe961dc1ed0b737662598b126d947", "fields": {"nom_de_la_commune": "LAVERDINES", "libell_d_acheminement": "LAVERDINES", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18123"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7156acea140624e6758f7e9542becada7499a683", "fields": {"nom_de_la_commune": "LURY SUR ARNON", "libell_d_acheminement": "LURY SUR ARNON", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18134"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a5da039240ebdbe6bf6a448cce2066eec8c54b", "fields": {"nom_de_la_commune": "MAISONNAIS", "libell_d_acheminement": "MAISONNAIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18135"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb71fd7b553408d2e822d296198b53c635ed344", "fields": {"nom_de_la_commune": "MEREAU", "libell_d_acheminement": "MEREAU", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18148"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a926166d9f00c66a8401338786e48189af67b6f", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18151"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edb8d83b57144cfc3af5d2d9ba51b3b0fbd2205", "fields": {"nom_de_la_commune": "MORLAC", "libell_d_acheminement": "MORLAC", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18153"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f327c6bcd6f7422aab339b0091a5a78d49e54486", "fields": {"nom_de_la_commune": "MORNAY SUR ALLIER", "libell_d_acheminement": "MORNAY SUR ALLIER", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18155"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c51d23fbbe108de4c5b267c8a37d8a4665029b3", "fields": {"nom_de_la_commune": "NEUVY SUR BARANGEON", "libell_d_acheminement": "NEUVY SUR BARANGEON", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18165"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046219b86c105c88fa329e6dd8a3663ce2b2819d", "fields": {"nom_de_la_commune": "ORVAL", "libell_d_acheminement": "ORVAL", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18172"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4c851c11aefaaffd2e637568f15b4b286ace90", "fields": {"nom_de_la_commune": "PLOU", "libell_d_acheminement": "PLOU", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18181"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb4a643381c485567b8b259914b6c98d345a3bf", "fields": {"nom_de_la_commune": "POISIEUX", "libell_d_acheminement": "POISIEUX", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18182"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e081532f8ad21644e1c4f08792dcd8225481a8", "fields": {"nom_de_la_commune": "PRIMELLES", "libell_d_acheminement": "PRIMELLES", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18188"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a536f652ff43c203ac87925d12aac09db92c96", "fields": {"nom_de_la_commune": "QUINCY", "libell_d_acheminement": "QUINCY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18190"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35a609960c5386f17130c58a64986893b64e550", "fields": {"nom_de_la_commune": "REZAY", "libell_d_acheminement": "REZAY", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18193"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0cf3593a9a9a9db0f7508c60dbfc6a5694ab065", "fields": {"nom_de_la_commune": "SAGONNE", "libell_d_acheminement": "SAGONNE", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18195"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a58a0f7b838ea651682ca85a66130163f0a2872", "fields": {"nom_de_la_commune": "ST AMBROIX", "libell_d_acheminement": "ST AMBROIX", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18198"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb2d65e188f60428692832b6382af7789366d3a", "fields": {"nom_de_la_commune": "ST BOUIZE", "libell_d_acheminement": "ST BOUIZE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18200"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028b8f5682685dedf20699556c7cdf42329a55d5", "fields": {"nom_de_la_commune": "ST DENIS DE PALIN", "libell_d_acheminement": "ST DENIS DE PALIN", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18204"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9eaf38ff97d9c37f36a78ab91112a15151e722a", "fields": {"nom_de_la_commune": "ST ELOY DE GY", "libell_d_acheminement": "ST ELOY DE GY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18206"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af10ac296df08aed3087473385e3f6d22eec74f3", "fields": {"nom_de_la_commune": "ST LOUP DES CHAUMES", "libell_d_acheminement": "ST LOUP DES CHAUMES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18221"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "051e880ba4dde5bebdf7ec2b14731cf2369168db", "fields": {"nom_de_la_commune": "ST MARTIN D AUXIGNY", "libell_d_acheminement": "ST MARTIN D AUXIGNY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18223"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d98e20190e61cf4748c5fd8bd7281823869d9579", "fields": {"nom_de_la_commune": "ST MICHEL DE VOLANGIS", "libell_d_acheminement": "ST MICHEL DE VOLANGIS", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18226"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd8341187e407280e38f095cf275b47762ab8ec", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18229"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032e580c157553c175b8ef38d6cc5213610d1550", "fields": {"nom_de_la_commune": "ST SATUR", "libell_d_acheminement": "ST SATUR", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18233"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893f52d3f21c9a7ef43e9d58f42734e805221ec5", "fields": {"nom_de_la_commune": "STE THORETTE", "libell_d_acheminement": "STE THORETTE", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18237"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc2a58b74d9cf68849c0c4e3aae2a319c376217", "fields": {"nom_de_la_commune": "ST VITTE", "libell_d_acheminement": "ST VITTE", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18238"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc71bff6728868f4e95949883f10e243f2efc39", "fields": {"nom_de_la_commune": "SANCERGUES", "libell_d_acheminement": "SANCERGUES", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18240"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f8bc9a7215ac67d228d3af586ae33fa0ae9373", "fields": {"nom_de_la_commune": "SANCOINS", "libell_d_acheminement": "SANCOINS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18242"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336c2bd218adfa4b3b3f95120b523e26ba6eb054", "fields": {"nom_de_la_commune": "DUPPIGHEIM", "libell_d_acheminement": "DUPPIGHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67108"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aecb8173a5863f0ef629768dfed1b13053d1b10", "fields": {"nom_de_la_commune": "DURNINGEN", "libell_d_acheminement": "DURNINGEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67109"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc368f3166b25e8eb5d57fc85c163ede1fb7162e", "fields": {"nom_de_la_commune": "DURSTEL", "libell_d_acheminement": "DURSTEL", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67111"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541e4c45f596c039d19aa8dce3f78a82cf44294f", "fields": {"nom_de_la_commune": "EBERSMUNSTER", "libell_d_acheminement": "EBERSMUNSTER", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67116"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457f534a1e4489a23923d2f50fd9edcb06e6d8b9", "fields": {"nom_de_la_commune": "ECKBOLSHEIM", "libell_d_acheminement": "ECKBOLSHEIM", "code_postal": "67201", "coordonnees_gps": [48.5798145293, 7.68212036904], "code_commune_insee": "67118"}, "geometry": {"type": "Point", "coordinates": [7.68212036904, 48.5798145293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c62332e2f102fd5ba58bebe29ad9f1ecd18aa2d", "fields": {"nom_de_la_commune": "WANGENBOURG ENGENTHAL", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "code_postal": "67710", "coordonnees_gps": [48.6210040499, 7.30576868446], "code_commune_insee": "67122"}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4707dd18155fafe07c1945f35edc84ea56b0be2", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "WOLFSTHAL", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73ea2848d05e37c9a465fe8d22bce4cdec9cc35", "fields": {"nom_de_la_commune": "ENTZHEIM", "libell_d_acheminement": "ENTZHEIM", "code_postal": "67960", "coordonnees_gps": [48.5355849836, 7.63354485336], "code_commune_insee": "67124"}, "geometry": {"type": "Point", "coordinates": [7.63354485336, 48.5355849836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6390f11b3d30920af863ccded7e6cd50f8487e77", "fields": {"nom_de_la_commune": "ERCKARTSWILLER", "libell_d_acheminement": "ERCKARTSWILLER", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67126"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82b315cb42b77fcba0ff70bf6873ad18df6d91b", "fields": {"nom_de_la_commune": "ERNOLSHEIM BRUCHE", "libell_d_acheminement": "ERNOLSHEIM BRUCHE", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67128"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18eb5bd29a6ecbcb379adb5b0ac24d065bbaa36e", "fields": {"nom_de_la_commune": "ERSTEIN", "libell_d_acheminement": "ERSTEIN", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67130"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59924c0b51ddf999bf94004dc7c55594ec60b76", "fields": {"nom_de_la_commune": "ESCHBACH", "libell_d_acheminement": "ESCHBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67132"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a15209b799c11cf8aee91dc99710962220947f7", "fields": {"code_postal": "67320", "code_commune_insee": "67133", "libell_d_acheminement": "ESCHBOURG", "ligne_5": "GRAUFTHAL", "nom_de_la_commune": "ESCHBOURG", "coordonnees_gps": [48.8529656934, 7.17568129629]}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d31cdf0cd17ca3398d78894a0582c07eaf046a", "fields": {"nom_de_la_commune": "FORSTHEIM", "libell_d_acheminement": "FORSTHEIM", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67141"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8537b41d9429e565bbaab044b18e4b85fbadbd7f", "fields": {"nom_de_la_commune": "FORT LOUIS", "libell_d_acheminement": "FORT LOUIS", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67142"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0560e62ac8cf85f71386907048eb3133d3e77e60", "fields": {"nom_de_la_commune": "FOUDAY", "libell_d_acheminement": "FOUDAY", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67144"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9f3dc082cba07cb636f5a553bdff8cdd667b58", "fields": {"nom_de_la_commune": "FRIEDOLSHEIM", "libell_d_acheminement": "FRIEDOLSHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67145"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c9cf4c5a6dd7fc75f6d005a230b6f4763c89e1", "fields": {"nom_de_la_commune": "FURCHHAUSEN", "libell_d_acheminement": "FURCHHAUSEN", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67149"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c1a43ae80423aca0112ed4b9667c69012adcaa", "fields": {"nom_de_la_commune": "GOTTESHEIM", "libell_d_acheminement": "GOTTESHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67162"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c106be3f5c6e43f99d8a1293cdb48c56a94c4187", "fields": {"nom_de_la_commune": "GOUGENHEIM", "libell_d_acheminement": "GOUGENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67163"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658d4067e8200aeb65c57734b6683b3a9884e680", "fields": {"nom_de_la_commune": "GRIESHEIM PRES MOLSHEIM", "libell_d_acheminement": "GRIESHEIM PRES MOLSHEIM", "code_postal": "67870", "coordonnees_gps": [48.4894170469, 7.52737448291], "code_commune_insee": "67172"}, "geometry": {"type": "Point", "coordinates": [7.52737448291, 48.4894170469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5215643ef855ab84f8c8c0c842177c7ceb2f870d", "fields": {"nom_de_la_commune": "HESSENHEIM", "libell_d_acheminement": "HESSENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67195"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc7a7f3f848da0b4f8d61a2b3b8d94c09dc7e1c", "fields": {"nom_de_la_commune": "HINSBOURG", "libell_d_acheminement": "HINSBOURG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67198"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde0ffdfa99eebb86aa4fb6ddc46bf994cedafd1", "fields": {"nom_de_la_commune": "HOCHFELDEN", "libell_d_acheminement": "HOCHFELDEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67202"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b596dac0e45383c6e7ff631722c4fe78c61ad1", "fields": {"nom_de_la_commune": "HOFFEN", "libell_d_acheminement": "HOFFEN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67206"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95aa64f8146ae1365ecdaa3fe018b37de1c70ae", "fields": {"nom_de_la_commune": "HUTTENHEIM", "libell_d_acheminement": "HUTTENHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67216"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1818f064e77d8cf467a9c181a4936feeebf62443", "fields": {"nom_de_la_commune": "INNENHEIM", "libell_d_acheminement": "INNENHEIM", "code_postal": "67880", "coordonnees_gps": [48.4869700046, 7.56924214969], "code_commune_insee": "67223"}, "geometry": {"type": "Point", "coordinates": [7.56924214969, 48.4869700046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d966a66c2394ba949191e9cea8068dd3a6d6c5", "fields": {"nom_de_la_commune": "ITTERSWILLER", "libell_d_acheminement": "ITTERSWILLER", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67227"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819d503cffa7927155c8e721aa515d9b262f509c", "fields": {"nom_de_la_commune": "KEFFENACH", "libell_d_acheminement": "KEFFENACH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67232"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a3853543fd9619fbb40c208af2693d973924fe", "fields": {"nom_de_la_commune": "KILSTETT", "libell_d_acheminement": "KILSTETT", "code_postal": "67840", "coordonnees_gps": [48.6831067004, 7.84575550636], "code_commune_insee": "67237"}, "geometry": {"type": "Point", "coordinates": [7.84575550636, 48.6831067004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8d8586c2c7c0d928929aa2cc764437dabcda10", "fields": {"nom_de_la_commune": "KIRRWILLER", "libell_d_acheminement": "KIRRWILLER", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67242"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beca160b9ed19cb7dfd28dd5c99c32d1bef99c96", "fields": {"nom_de_la_commune": "KNOERSHEIM", "libell_d_acheminement": "KNOERSHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67245"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d1d292ffa4d2b9501d088f35783374e4b27297", "fields": {"nom_de_la_commune": "KURTZENHOUSE", "libell_d_acheminement": "KURTZENHOUSE", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67252"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da8f89262d2e5780ae617640ca5fe811288908b8", "fields": {"nom_de_la_commune": "KUTTOLSHEIM", "libell_d_acheminement": "KUTTOLSHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67253"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18db4a54e86a312c5057dc3a3f7db43356ee3dfd", "fields": {"nom_de_la_commune": "LAMPERTHEIM", "libell_d_acheminement": "LAMPERTHEIM", "code_postal": "67450", "coordonnees_gps": [48.6487396541, 7.70172520923], "code_commune_insee": "67256"}, "geometry": {"type": "Point", "coordinates": [7.70172520923, 48.6487396541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b953bf55f34e3849181e69686c44405eda7e4d9", "fields": {"nom_de_la_commune": "LANDERSHEIM", "libell_d_acheminement": "LANDERSHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67258"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfac3acc33b99ecdffa212e62914ee0df7f4f617", "fields": {"nom_de_la_commune": "LIMERSHEIM", "libell_d_acheminement": "LIMERSHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67266"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4818500cf2d50a871c303ca2625dc8840a5a1f", "fields": {"nom_de_la_commune": "LIPSHEIM", "libell_d_acheminement": "LIPSHEIM", "code_postal": "67640", "coordonnees_gps": [48.4903746121, 7.67506089743], "code_commune_insee": "67268"}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068798b370eb49934a9028bbf398106a5bfb0c15", "fields": {"nom_de_la_commune": "LIXHAUSEN", "libell_d_acheminement": "LIXHAUSEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67270"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccedcf26a857582fdad9ffa11bab725e073aca2", "fields": {"nom_de_la_commune": "LORENTZEN", "libell_d_acheminement": "LORENTZEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67274"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cfb7fef9d7ea9ecb09b22683dfa120ee216489", "fields": {"nom_de_la_commune": "MACKWILLER", "libell_d_acheminement": "MACKWILLER", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67278"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed32260ca3f9c0b99cf449d111bdb142853b6d8b", "fields": {"nom_de_la_commune": "MARCKOLSHEIM", "libell_d_acheminement": "MARCKOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67281"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae7b415357a22c4f5f95b5911580133159bb823", "fields": {"nom_de_la_commune": "MARMOUTIER", "libell_d_acheminement": "MARMOUTIER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67283"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784ed8d038fc79808e89cf7f5b892ed8da3a5fb5", "fields": {"nom_de_la_commune": "MENCHHOFFEN", "libell_d_acheminement": "MENCHHOFFEN", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67289"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d48bc94a74326a510f4c19c73a01192005ef5c", "fields": {"nom_de_la_commune": "MIETESHEIM", "libell_d_acheminement": "MIETESHEIM", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67292"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35a0cb87b7763b6229199c080d94dfeedb2f37a", "fields": {"nom_de_la_commune": "MOLSHEIM", "libell_d_acheminement": "MOLSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67300"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebb9464b4ee4015c1701a5b4bfd81fa4ca80526", "fields": {"nom_de_la_commune": "MORSBRONN LES BAINS", "libell_d_acheminement": "MORSBRONN LES BAINS", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67303"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71dfafbb49099de491941f334da8a2c20fe2ae51", "fields": {"nom_de_la_commune": "NATZWILLER", "libell_d_acheminement": "NATZWILLER", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67314"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a24a262c107a4b4d6ebf7e9f88a1d77339f73a8b", "fields": {"code_postal": "67130", "code_commune_insee": "67321", "libell_d_acheminement": "NEUVILLER LA ROCHE", "ligne_5": "HAUTE GOUTTE", "nom_de_la_commune": "NEUVILLER LA ROCHE", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79385c513571fe85c7375181ad05b9136e4dcee", "fields": {"nom_de_la_commune": "NIEDERBRONN LES BAINS", "libell_d_acheminement": "NIEDERBRONN LES BAINS", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67324"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e3ffdd7b69d2f9552016b69222a0ff1f6e8e9a", "fields": {"nom_de_la_commune": "NIEDERLAUTERBACH", "libell_d_acheminement": "NIEDERLAUTERBACH", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67327"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8205151fa1af177d51ad288a7b6116e40ca0ee0e", "fields": {"nom_de_la_commune": "NIEDERROEDERN", "libell_d_acheminement": "NIEDERROEDERN", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67330"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8442559ef75348b27a83177473835146a50690", "fields": {"nom_de_la_commune": "NIEDERSTEINBACH", "libell_d_acheminement": "NIEDERSTEINBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67334"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f2e4935bc5634f42852290f7e7045329c0b5d9", "fields": {"code_postal": "67660", "code_commune_insee": "67339", "libell_d_acheminement": "BETSCHDORF", "ligne_5": "SCHWABWILLER", "nom_de_la_commune": "BETSCHDORF", "coordonnees_gps": [48.8932955893, 7.92442100196]}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa80f92173da5f2e5ceb70ef0091fa677d243435", "fields": {"nom_de_la_commune": "OBERHAUSBERGEN", "libell_d_acheminement": "OBERHAUSBERGEN", "code_postal": "67205", "coordonnees_gps": [48.6071352672, 7.68316237255], "code_commune_insee": "67343"}, "geometry": {"type": "Point", "coordinates": [7.68316237255, 48.6071352672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336721f7347e2b4e1c4f82ae1834d13183dfa5c1", "fields": {"nom_de_la_commune": "OBERNAI", "libell_d_acheminement": "OBERNAI", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67348"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b64ac82b065c302fcffda2467ff72371edbc9c8", "fields": {"nom_de_la_commune": "OBERROEDERN", "libell_d_acheminement": "OBERROEDERN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67349"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b1aa8a96d87ef18b13694dd0d20bf63bd0e712", "fields": {"nom_de_la_commune": "TONNOY", "libell_d_acheminement": "TONNOY", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54527"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c59922e5f2f908cdb2e51424ca468b11fe3b8f4", "fields": {"nom_de_la_commune": "VAL ET CHATILLON", "libell_d_acheminement": "VAL ET CHATILLON", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54540"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d61ed995fabdd390b1d88afec565b3d07111cbd", "fields": {"nom_de_la_commune": "VALHEY", "libell_d_acheminement": "VALHEY", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54541"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d01dcd0eab72ecc2727084826dd244619c3881", "fields": {"nom_de_la_commune": "VANDELAINVILLE", "libell_d_acheminement": "VANDELAINVILLE", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54544"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46777c4041d0d5dee1589ede93b923ecbd6468b2", "fields": {"nom_de_la_commune": "VANDOEUVRE LES NANCY", "libell_d_acheminement": "VANDOEUVRE LES NANCY", "code_postal": "54500", "coordonnees_gps": [48.6573420169, 6.1645510789], "code_commune_insee": "54547"}, "geometry": {"type": "Point", "coordinates": [6.1645510789, 48.6573420169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030b351ac53966d253517757666bcda4ff51b2a7", "fields": {"nom_de_la_commune": "VARANGEVILLE", "libell_d_acheminement": "VARANGEVILLE", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54549"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e1a0ebc6ad4a5f3600a7b85d8221852f3766fa", "fields": {"nom_de_la_commune": "VEHO", "libell_d_acheminement": "VEHO", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54556"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb19934eaa9b749671b0ee58d220da8170802457", "fields": {"nom_de_la_commune": "VELAINE EN HAYE", "libell_d_acheminement": "VELAINE EN HAYE", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54557"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894179a2499076a8f9ca74279e9180d93e101825", "fields": {"nom_de_la_commune": "VEZELISE", "libell_d_acheminement": "VEZELISE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54563"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9875c11f4ba976d5e0deb4b848763aacbfdbaa26", "fields": {"nom_de_la_commune": "VIEVILLE EN HAYE", "libell_d_acheminement": "VIEVILLE EN HAYE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54564"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81b51a73c214cedeb9ab8677cfdedb82a231271", "fields": {"nom_de_la_commune": "VILLE HOUDLEMONT", "libell_d_acheminement": "VILLE HOUDLEMONT", "code_postal": "54730", "coordonnees_gps": [49.5332181757, 5.65682394495], "code_commune_insee": "54572"}, "geometry": {"type": "Point", "coordinates": [5.65682394495, 49.5332181757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8120fcc041705c9812b555f9f28a6e7bb9f2101", "fields": {"nom_de_la_commune": "VILLERS LE ROND", "libell_d_acheminement": "VILLERS LE ROND", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54576"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9355af26defc407d2e0ff22daa47141a73104d99", "fields": {"nom_de_la_commune": "VILLERS LES NANCY", "libell_d_acheminement": "VILLERS LES NANCY", "code_postal": "54600", "coordonnees_gps": [48.6615703234, 6.12916043091], "code_commune_insee": "54578"}, "geometry": {"type": "Point", "coordinates": [6.12916043091, 48.6615703234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0623038088ad794e78ab004e4de3c3f3b70f342d", "fields": {"nom_de_la_commune": "VILLETTE", "libell_d_acheminement": "VILLETTE", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54582"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd2ffe9e3157b4072d36c1719a34b7ec4f0c6f6", "fields": {"nom_de_la_commune": "VITREY", "libell_d_acheminement": "VITREY", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54587"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63210f2d216d08a9abe3799d5da1ba57cabe585", "fields": {"nom_de_la_commune": "VIVIERS SUR CHIERS", "libell_d_acheminement": "VIVIERS SUR CHIERS", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54590"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d267e45c640855c1c91112313dc430d51350318", "fields": {"nom_de_la_commune": "WAVILLE", "libell_d_acheminement": "WAVILLE", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54593"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bdc8f5b2519404c6c24a459879796db1df8fbbe", "fields": {"nom_de_la_commune": "XEUILLEY", "libell_d_acheminement": "XEUILLEY", "code_postal": "54990", "coordonnees_gps": [48.5622198155, 6.09068461127], "code_commune_insee": "54596"}, "geometry": {"type": "Point", "coordinates": [6.09068461127, 48.5622198155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7797d97d2377f919bded02b364fb21ceb36196", "fields": {"nom_de_la_commune": "XIVRY CIRCOURT", "libell_d_acheminement": "XIVRY CIRCOURT", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54598"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7d1491af67077b9eaf99a1a2b9797fc27c9ce5", "fields": {"nom_de_la_commune": "XONVILLE", "libell_d_acheminement": "XONVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54599"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658f750ff675c50f538ca49dabdcafcce204450b", "fields": {"code_postal": "55400", "code_commune_insee": "55002", "libell_d_acheminement": "ABAUCOURT HAUTECOURT", "ligne_5": "HAUTECOURT LES BROVILLE", "nom_de_la_commune": "ABAUCOURT HAUTECOURT", "coordonnees_gps": [49.1964122747, 5.59749948123]}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad882593710a6825ef916c04dfcd93dc364b0fb1", "fields": {"nom_de_la_commune": "AMANTY", "libell_d_acheminement": "AMANTY", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55005"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4bfaa438e5e4f31e60583b8779f8baef029ea56", "fields": {"nom_de_la_commune": "ANCEMONT", "libell_d_acheminement": "ANCEMONT", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55009"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c35949d2e3f25593897d75be86938a6f3abd967", "fields": {"nom_de_la_commune": "ANDERNAY", "libell_d_acheminement": "ANDERNAY", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55011"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb747a79fbdc6569ac78b41b0e03edf8d19e0fcc", "fields": {"nom_de_la_commune": "AUTRECOURT SUR AIRE", "libell_d_acheminement": "AUTRECOURT SUR AIRE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55017"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954b512310a7a4bde09672ad6f3544e4e262a76d", "fields": {"nom_de_la_commune": "BADONVILLIERS GERAUVILLIERS", "libell_d_acheminement": "BADONVILLIERS GERAUVILLIERS", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55026"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee2380a0750ad87243b20b1a0afc7e2442697a2", "fields": {"code_postal": "55130", "code_commune_insee": "55026", "libell_d_acheminement": "BADONVILLIERS GERAUVILLIERS", "ligne_5": "GERAUVILLIERS", "nom_de_la_commune": "BADONVILLIERS GERAUVILLIERS", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8a70cd92143bb065f57aa1d27d408e0dbe7dd1", "fields": {"code_postal": "55250", "code_commune_insee": "55040", "libell_d_acheminement": "BEAUSITE", "ligne_5": "AMBLAINCOURT", "nom_de_la_commune": "BEAUSITE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e497bc40ae1173edba6247c03956514b6573a585", "fields": {"code_postal": "55250", "code_commune_insee": "55040", "libell_d_acheminement": "BEAUSITE", "ligne_5": "SERAUCOURT", "nom_de_la_commune": "BEAUSITE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a78f9da54f4710ad38b10d97cd00cf0f1435482", "fields": {"nom_de_la_commune": "BELRAIN", "libell_d_acheminement": "BELRAIN", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55044"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6653b43a8ea32f106f282fdeddf7c35aeb756fa", "fields": {"nom_de_la_commune": "BETHINCOURT", "libell_d_acheminement": "BETHINCOURT", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55048"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd51b9df9b1432e91a1a5ab550defb508c8656d8", "fields": {"nom_de_la_commune": "BOUREUILLES", "libell_d_acheminement": "BOUREUILLES", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55065"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed35e68d7fea04a7588ee7d7d0d6cb4c536f095", "fields": {"nom_de_la_commune": "BOVEE SUR BARBOURE", "libell_d_acheminement": "BOVEE SUR BARBOURE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55066"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd0cbfd2577e07aed078c6e541b2709e1476d05", "fields": {"nom_de_la_commune": "BRAS SUR MEUSE", "libell_d_acheminement": "BRAS SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55073"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c2d909f46689fcc3352cbe86c53141f4028ad5", "fields": {"nom_de_la_commune": "BREUX", "libell_d_acheminement": "BREUX", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55077"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f9c90c1b50559ee25aac205c6f78a1dfa7af50", "fields": {"nom_de_la_commune": "BRIZEAUX", "libell_d_acheminement": "BRIZEAUX", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55081"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c82610b3403b486bfbd42b19cf6ec1229fc13e", "fields": {"nom_de_la_commune": "BUZY DARMONT", "libell_d_acheminement": "BUZY DARMONT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55094"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d4b821d1e24454efeb0177bbabed8994528b574", "fields": {"nom_de_la_commune": "CHAMPOUGNY", "libell_d_acheminement": "CHAMPOUGNY", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55100"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0c69ea94d0b837114b5ee6fa47968ce3c1ca21", "fields": {"nom_de_la_commune": "CHATTANCOURT", "libell_d_acheminement": "CHATTANCOURT", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55106"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bbb7567c312c7df1e50d878273d8775f9ca648", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "GENICOURT SOUS CONDE", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddbd07e1674cb3d265e1969104752db52de9a25e", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "LES MARATS", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b817ae42340b77c4013992caae5c572ffed6ef94", "fields": {"nom_de_la_commune": "CONTRISSON", "libell_d_acheminement": "CONTRISSON", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55125"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2401b38029e24c75eec4c5def8f69816804f17a1", "fields": {"nom_de_la_commune": "COURCELLES EN BARROIS", "libell_d_acheminement": "COURCELLES EN BARROIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55127"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07ac582ea0dc507dcc8e3c497658ef53e5682d1", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85269"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb395036d4942beb69dc9b46676eb5e95fb659d", "fields": {"nom_de_la_commune": "ST SULPICE EN PAREDS", "libell_d_acheminement": "ST SULPICE EN PAREDS", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85271"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ee0dc0b7d632bf63264d908a56812212190550", "fields": {"nom_de_la_commune": "SIGOURNAIS", "libell_d_acheminement": "SIGOURNAIS", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85282"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7175cf9b45d5715cf0960e18da86a352bdd8df66", "fields": {"nom_de_la_commune": "VOUILLE LES MARAIS", "libell_d_acheminement": "VOUILLE LES MARAIS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85304"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b997fa0d0ac1ec8af6f23be88d2859b25c17156b", "fields": {"nom_de_la_commune": "XANTON CHASSENON", "libell_d_acheminement": "XANTON CHASSENON", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85306"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8922dd8af7442b50205cfebb84d17a56d64e5b4", "fields": {"nom_de_la_commune": "ADRIERS", "libell_d_acheminement": "ADRIERS", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86001"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57f5db7812876f833056e0d531c4bb04bdb259a", "fields": {"nom_de_la_commune": "ANTIGNY", "libell_d_acheminement": "ANTIGNY", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86006"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "924636ddccf615bbb28d5ce09e232002cee442fb", "fields": {"nom_de_la_commune": "AVANTON", "libell_d_acheminement": "AVANTON", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86016"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ff545e6811396ecbaff6a51947d89d4744baf7", "fields": {"nom_de_la_commune": "BASSES", "libell_d_acheminement": "BASSES", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86018"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d290f9f11f63d7649bcd90c7ca86198508ed28de", "fields": {"code_postal": "86490", "code_commune_insee": "86019", "libell_d_acheminement": "BEAUMONT", "ligne_5": "LA TRICHERIE", "nom_de_la_commune": "BEAUMONT", "coordonnees_gps": [46.761526271, 0.437525425166]}, "geometry": {"type": "Point", "coordinates": [0.437525425166, 46.761526271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8889525f42473093330b9fdd583e25a90dd6b4ca", "fields": {"nom_de_la_commune": "BONNEUIL MATOURS", "libell_d_acheminement": "BONNEUIL MATOURS", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86032"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336580c14eda0c5f5e0bfe85324f3d4b0991c700", "fields": {"nom_de_la_commune": "BRIGUEIL LE CHANTRE", "libell_d_acheminement": "BRIGUEIL LE CHANTRE", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86037"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24040f32b68eabeed8579926d08ac2dbefea8d06", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86038"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd510d70b7e73819e568687b749afae0ae28b32", "fields": {"nom_de_la_commune": "BRUX", "libell_d_acheminement": "BRUX", "code_postal": "86510", "coordonnees_gps": [46.2231732444, 0.176181727921], "code_commune_insee": "86039"}, "geometry": {"type": "Point", "coordinates": [0.176181727921, 46.2231732444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d159dc099bc9fb15e834f2595f28e8dee86f25", "fields": {"nom_de_la_commune": "CEAUX EN LOUDUN", "libell_d_acheminement": "CEAUX EN LOUDUN", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86044"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d9908ef7bc0d01dccde83911cdeb8deda8bdeb", "fields": {"nom_de_la_commune": "CHAMPAGNE LE SEC", "libell_d_acheminement": "CHAMPAGNE LE SEC", "code_postal": "86510", "coordonnees_gps": [46.2231732444, 0.176181727921], "code_commune_insee": "86051"}, "geometry": {"type": "Point", "coordinates": [0.176181727921, 46.2231732444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba5040c8f6cd01268c68a6683949213b552eb371", "fields": {"nom_de_la_commune": "CHAMPIGNY LE SEC", "libell_d_acheminement": "CHAMPIGNY LE SEC", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86053"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e787482162a79a98d999b87bd48976b02867b854", "fields": {"nom_de_la_commune": "CHARROUX", "libell_d_acheminement": "CHARROUX", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86061"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de1e92ed30b1118761368193f72973f0e981d94", "fields": {"nom_de_la_commune": "CHASSENEUIL DU POITOU", "libell_d_acheminement": "CHASSENEUIL DU POITOU", "code_postal": "86360", "coordonnees_gps": [46.6367339899, 0.408829313418], "code_commune_insee": "86062"}, "geometry": {"type": "Point", "coordinates": [0.408829313418, 46.6367339899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d80f75f48452b9babe3d7722fe305e187244ae", "fields": {"nom_de_la_commune": "CHATELLERAULT", "libell_d_acheminement": "CHATELLERAULT", "code_postal": "86100", "coordonnees_gps": [46.825162468, 0.575853305257], "code_commune_insee": "86066"}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b8c8ed4e9d915408409455201f30b5b06e0b10", "fields": {"code_postal": "86300", "code_commune_insee": "86070", "libell_d_acheminement": "CHAUVIGNY", "ligne_5": "POUZIOUX", "nom_de_la_commune": "CHAUVIGNY", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359f7d704e0e557c2c9586d16222929270699221", "fields": {"nom_de_la_commune": "CHERVES", "libell_d_acheminement": "CHERVES", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86073"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8252668102a9f054d3980d89b79dc63f4a55a3", "fields": {"code_postal": "86200", "code_commune_insee": "86079", "libell_d_acheminement": "LA ROCHE RIGAULT", "ligne_5": "CLAUNAY EN LOUDUN", "nom_de_la_commune": "LA ROCHE RIGAULT", "coordonnees_gps": [46.998807994, 0.139457341652]}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce48dcab4a788fa5a26c3d5e90e8b051ab53cfd", "fields": {"nom_de_la_commune": "COULOMBIERS", "libell_d_acheminement": "COULOMBIERS", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86083"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0abfef4ceed7d0643d91f882f4c609d73795b8", "fields": {"nom_de_la_commune": "COULONGES", "libell_d_acheminement": "COULONGES", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86084"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345c8309d7fd0ebd845daa5e2ebe04c47f4072f0", "fields": {"nom_de_la_commune": "DERCE", "libell_d_acheminement": "DERCE", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86093"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a5135181e60906960c9e4bb080779ae961f26d", "fields": {"nom_de_la_commune": "GLENOUZE", "libell_d_acheminement": "GLENOUZE", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86106"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5959b7afa46a2af18cccfbf2baac3765832a46", "fields": {"nom_de_la_commune": "INGRANDES", "libell_d_acheminement": "INGRANDES", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86111"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360803cf5a2e8766e7f0815447775b70872b0365", "fields": {"nom_de_la_commune": "JOUHET", "libell_d_acheminement": "JOUHET", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86117"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce16e26681c3cc7ab6aa12db4951be61f8741654", "fields": {"nom_de_la_commune": "LATILLE", "libell_d_acheminement": "LATILLE", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86121"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae214eb97e270ccd8838c458a784f9d6dfe6d219", "fields": {"nom_de_la_commune": "LAVOUX", "libell_d_acheminement": "LAVOUX", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86124"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d197ce443fa27b57c6bb2adad110c1ceae14182e", "fields": {"nom_de_la_commune": "LENCLOITRE", "libell_d_acheminement": "LENCLOITRE", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86128"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4126b5b08747f07fb8317811e9f3c101556c5357", "fields": {"nom_de_la_commune": "LIGUGE", "libell_d_acheminement": "LIGUGE", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86133"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525e841d979910d0bed909da9247ef329e7b0d2f", "fields": {"nom_de_la_commune": "LOUDUN", "libell_d_acheminement": "LOUDUN", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86137"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf6a311538712a794fa34ae7f23959dc0b4207a", "fields": {"code_postal": "86200", "code_commune_insee": "86137", "libell_d_acheminement": "LOUDUN", "ligne_5": "ROSSAY", "nom_de_la_commune": "LOUDUN", "coordonnees_gps": [46.998807994, 0.139457341652]}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7731eb520e6762a5e51a2717b0a2a9a37860cb6f", "fields": {"nom_de_la_commune": "MARIGNY BRIZAY", "libell_d_acheminement": "MARIGNY BRIZAY", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86146"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7938dac880730b5fc090b091af539f2a03c3046b", "fields": {"nom_de_la_commune": "MAUPREVOIR", "libell_d_acheminement": "MAUPREVOIR", "code_postal": "86460", "coordonnees_gps": [46.1382827455, 0.581140891207], "code_commune_insee": "86152"}, "geometry": {"type": "Point", "coordinates": [0.581140891207, 46.1382827455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b50bb4ba22dfe6dde5f4e931d97c850f181d164", "fields": {"nom_de_la_commune": "MIREBEAU", "libell_d_acheminement": "MIREBEAU", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86160"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3941c859b513c97d2939226fc70ded4fe3d42c82", "fields": {"nom_de_la_commune": "MONCONTOUR", "libell_d_acheminement": "MONCONTOUR", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86161"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3060d36fee1b89e1e36913784573cbd6e443b0d", "fields": {"nom_de_la_commune": "MONTAMISE", "libell_d_acheminement": "MONTAMISE", "code_postal": "86360", "coordonnees_gps": [46.6367339899, 0.408829313418], "code_commune_insee": "86163"}, "geometry": {"type": "Point", "coordinates": [0.408829313418, 46.6367339899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac2662d0c1cb625e97ae26563db1e308465faa35", "fields": {"nom_de_la_commune": "MONTS SUR GUESNES", "libell_d_acheminement": "MONTS SUR GUESNES", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86167"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c4d2e27fe7329d2ee6aa78209e68c1f9564e10", "fields": {"nom_de_la_commune": "NIEUIL L ESPOIR", "libell_d_acheminement": "NIEUIL L ESPOIR", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86178"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e1b8fe860063e0e6b959f5eed7db8f73bf29b4", "fields": {"nom_de_la_commune": "NOUAILLE MAUPERTUIS", "libell_d_acheminement": "NOUAILLE MAUPERTUIS", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86180"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5be4304e03c96eb4bb455664220457ab6a1cb44", "fields": {"nom_de_la_commune": "LES ORMES", "libell_d_acheminement": "LES ORMES", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86183"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b9eebb7a74df2ac731aa0724f7cdbaa3b92278", "fields": {"nom_de_la_commune": "PLEUMARTIN", "libell_d_acheminement": "PLEUMARTIN", "code_postal": "86450", "coordonnees_gps": [46.7433398222, 0.710148242539], "code_commune_insee": "86193"}, "geometry": {"type": "Point", "coordinates": [0.710148242539, 46.7433398222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40e6272374bbe4ffb86c39e0fdfa7eeab431689", "fields": {"nom_de_la_commune": "POUANCAY", "libell_d_acheminement": "POUANCAY", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86196"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9211486f09fc4d031f8af6ca6b8fbbe3625b80a6", "fields": {"nom_de_la_commune": "QUINCAY", "libell_d_acheminement": "QUINCAY", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86204"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02201bbfa1328602a6c787ffa9ed537eb5a18ad1", "fields": {"nom_de_la_commune": "RASLAY", "libell_d_acheminement": "RASLAY", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86206"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c68381d6f3ac70cb438611e57a639d76db70e6a", "fields": {"nom_de_la_commune": "ROUILLE", "libell_d_acheminement": "ROUILLE", "code_postal": "86480", "coordonnees_gps": [46.4203962354, 0.0263809044711], "code_commune_insee": "86213"}, "geometry": {"type": "Point", "coordinates": [0.0263809044711, 46.4203962354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29e13d735aef43aaa7dd01990296ef324c9a4d1", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86223"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bcc73242a07485a8a86496e8d51a6e7188ff8ea", "fields": {"code_postal": "86330", "code_commune_insee": "86225", "libell_d_acheminement": "ST JEAN DE SAUVES", "ligne_5": "FRONTENAY SUR DIVE", "nom_de_la_commune": "ST JEAN DE SAUVES", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1b0aedac764969a57baa86a02449d3aa7a9ab5", "fields": {"nom_de_la_commune": "ST LEOMER", "libell_d_acheminement": "ST LEOMER", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86230"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdde01d11c161eab0224c4651d58f80f54fed62", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "CHAPELLE MORTHEMER", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df85921137360dc527fde4c51fbdfc34da90e938", "fields": {"nom_de_la_commune": "ST SAVIOL", "libell_d_acheminement": "ST SAVIOL", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86247"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fef9a20576089316a5ef12eb7b4477c849c6424", "fields": {"nom_de_la_commune": "ST SECONDIN", "libell_d_acheminement": "ST SECONDIN", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86248"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6ebbe369ad497dd00e905b5e7429808a970efe", "fields": {"nom_de_la_commune": "SAULGE", "libell_d_acheminement": "SAULGE", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86254"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a8af5f78a6ad95066a08bf5b077781415e14aa", "fields": {"nom_de_la_commune": "SAVIGNE", "libell_d_acheminement": "SAVIGNE", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86255"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d16763ccb4d655b4c33b220da9fee6c4573b27d", "fields": {"nom_de_la_commune": "SEVRES ANXAUMONT", "libell_d_acheminement": "SEVRES ANXAUMONT", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86261"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8802431287a2d733ad86191a1e10b59584e49eca", "fields": {"nom_de_la_commune": "SOMMIERES DU CLAIN", "libell_d_acheminement": "SOMMIERES DU CLAIN", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86264"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6452ba5aaa47c0fd6b828eeacc18cc223ccb455a", "fields": {"nom_de_la_commune": "THURAGEAU", "libell_d_acheminement": "THURAGEAU", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86271"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cb12c11b7cc01c9cdf47c247e79620fa88d81b", "fields": {"nom_de_la_commune": "THURE", "libell_d_acheminement": "THURE", "code_postal": "86540", "coordonnees_gps": [46.8415237067, 0.455471639498], "code_commune_insee": "86272"}, "geometry": {"type": "Point", "coordinates": [0.455471639498, 46.8415237067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc4888866431486932adb7e096f67770e2742e4", "fields": {"nom_de_la_commune": "LES TROIS MOUTIERS", "libell_d_acheminement": "LES TROIS MOUTIERS", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86274"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f26fde69e4eb9ac290fc5c93e74100f998c8853", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86277"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4db64a9700d28a3549380214222d9ac5d09ff6", "fields": {"nom_de_la_commune": "VENDEUVRE DU POITOU", "libell_d_acheminement": "VENDEUVRE DU POITOU", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86281"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41b54d0e46dc08657e4e5b2aeccd0e8eca57af0", "fields": {"nom_de_la_commune": "VERNON", "libell_d_acheminement": "VERNON", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86284"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e7ce8e41e0777fbc0e655e90c76a2a87ce81ce", "fields": {"nom_de_la_commune": "VICQ SUR GARTEMPE", "libell_d_acheminement": "VICQ SUR GARTEMPE", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86288"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df501b2a516bdeb510688c2818be51b4b2790726", "fields": {"nom_de_la_commune": "AUREIL", "libell_d_acheminement": "AUREIL", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87005"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472970e5af0d22bc6a7118d58447a7c6a54cf370", "fields": {"nom_de_la_commune": "BALLEDENT", "libell_d_acheminement": "BALLEDENT", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87007"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb2705ca8c4cc76c15a63438684dc38b0bd6344", "fields": {"nom_de_la_commune": "LA BAZEUGE", "libell_d_acheminement": "LA BAZEUGE", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87008"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc83ded96d712bd07a72a0a50fba6bf31dfd7bc", "fields": {"code_postal": "87250", "code_commune_insee": "87014", "libell_d_acheminement": "BESSINES SUR GARTEMPE", "ligne_5": "MORTEROLLES SUR SEMME", "nom_de_la_commune": "BESSINES SUR GARTEMPE", "coordonnees_gps": [46.1128095458, 1.3801487434]}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c1567c1c6e88a61c5132ce8ba3694a67a36a23", "fields": {"nom_de_la_commune": "BLOND", "libell_d_acheminement": "BLOND", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87018"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424703cbe82aeb28f13bb503ed571e9a488d5ea1", "fields": {"nom_de_la_commune": "BOISSEUIL", "libell_d_acheminement": "BOISSEUIL", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87019"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07eee09ec1bec907e200b8c1163ea9e2a6b5ee00", "fields": {"nom_de_la_commune": "BONNAC LA COTE", "libell_d_acheminement": "BONNAC LA COTE", "code_postal": "87270", "coordonnees_gps": [45.913437896, 1.25203520749], "code_commune_insee": "87020"}, "geometry": {"type": "Point", "coordinates": [1.25203520749, 45.913437896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b65adb0c2f2258b9c8d080c5a4a1e853cf5ff1", "fields": {"nom_de_la_commune": "BREUILAUFA", "libell_d_acheminement": "BREUILAUFA", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87022"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b08cdca500594bd111f616d1ab0217c2ab10a5", "fields": {"nom_de_la_commune": "CIEUX", "libell_d_acheminement": "CIEUX", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87045"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815ab1be6cf5a57db524e33b33ebe9a52e6ba5d8", "fields": {"nom_de_la_commune": "DROUX", "libell_d_acheminement": "DROUX", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87061"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "638b6f3dbc70455f2ef5675a239090d9bc197887", "fields": {"nom_de_la_commune": "EYMOUTIERS", "libell_d_acheminement": "EYMOUTIERS", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87064"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f947a03520f1e3b5e00457eeca2a8e57774ff9", "fields": {"nom_de_la_commune": "JABREILLES LES BORDES", "libell_d_acheminement": "JABREILLES LES BORDES", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87076"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5f9ca845d068fddefdd82bca3432342408ae6e", "fields": {"nom_de_la_commune": "LA JONCHERE ST MAURICE", "libell_d_acheminement": "LA JONCHERE ST MAURICE", "code_postal": "87340", "coordonnees_gps": [46.0084101721, 1.47236687338], "code_commune_insee": "87079"}, "geometry": {"type": "Point", "coordinates": [1.47236687338, 46.0084101721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c775ec6a629d60f9f0fc3ad8dc0eea9aad41f592", "fields": {"nom_de_la_commune": "JOUAC", "libell_d_acheminement": "JOUAC", "code_postal": "87890", "coordonnees_gps": [46.3495528482, 1.25909081632], "code_commune_insee": "87080"}, "geometry": {"type": "Point", "coordinates": [1.25909081632, 46.3495528482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7349931cd95623f366b98f775157e8db1ae08c4a", "fields": {"nom_de_la_commune": "LAVIGNAC", "libell_d_acheminement": "LAVIGNAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87084"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e056f3a1437df341c7962e6372a4f30d4b273095", "fields": {"code_postal": "87100", "code_commune_insee": "87085", "libell_d_acheminement": "LIMOGES", "ligne_5": "LANDOUGE", "nom_de_la_commune": "LIMOGES", "coordonnees_gps": [45.8544056025, 1.24905166141]}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e763248d22542c80cccec1a00fd3be5a8a93d771", "fields": {"nom_de_la_commune": "LINARDS", "libell_d_acheminement": "LINARDS", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87086"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c97b108e99ff841d634cb091a1012f01594109", "fields": {"nom_de_la_commune": "MAGNAC BOURG", "libell_d_acheminement": "MAGNAC BOURG", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87088"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f609196e9ef5b5239d8a3c44ca5911c03102ff84", "fields": {"code_postal": "87440", "code_commune_insee": "87092", "libell_d_acheminement": "MARVAL", "ligne_5": "MILHAGUET", "nom_de_la_commune": "MARVAL", "coordonnees_gps": [45.6750304013, 0.76861145842]}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b7820dc60ca29954c9735c323e5420c80a26ac", "fields": {"code_postal": "87330", "code_commune_insee": "87097", "libell_d_acheminement": "VAL D ISSOIRE", "ligne_5": "MEZIERES SUR ISSOIRE", "nom_de_la_commune": "VAL D ISSOIRE", "coordonnees_gps": [46.112617356, 0.896746440713]}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407d183bb89135381b04b2bdef2701d6b25c56a1", "fields": {"nom_de_la_commune": "ORADOUR SUR GLANE", "libell_d_acheminement": "ORADOUR SUR GLANE", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87110"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d631f0a60fb1a10d883399154648202017dc995", "fields": {"nom_de_la_commune": "PIERRE BUFFIERE", "libell_d_acheminement": "PIERRE BUFFIERE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87119"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d45bd54908228383e6113b0eeafc612af7028c", "fields": {"nom_de_la_commune": "LA PORCHERIE", "libell_d_acheminement": "LA PORCHERIE", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87120"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb09ad5382e8a1b74c79ad730067439097825b6", "fields": {"nom_de_la_commune": "REMPNAT", "libell_d_acheminement": "REMPNAT", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87123"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4dc6bedc0c577ad7277994f70a05c89981428d", "fields": {"nom_de_la_commune": "ROCHECHOUART", "libell_d_acheminement": "ROCHECHOUART", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87126"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f0d2d03eaebe8a891594e0ea0c2a3ed4404b813", "fields": {"nom_de_la_commune": "ROZIERS ST GEORGES", "libell_d_acheminement": "ROZIERS ST GEORGES", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87130"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9332adde60951ab815afec684f89eec07c550fec", "fields": {"nom_de_la_commune": "STE ANNE ST PRIEST", "libell_d_acheminement": "STE ANNE ST PRIEST", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87134"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6250a5f4bcbe5868882c8f4b6c9bc9c40bfe4be3", "fields": {"nom_de_la_commune": "ST BONNET DE BELLAC", "libell_d_acheminement": "ST BONNET DE BELLAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87139"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bcf62ec20c0499a6506f88ea154f931d44ba665", "fields": {"nom_de_la_commune": "ST DENIS DES MURS", "libell_d_acheminement": "ST DENIS DES MURS", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87142"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b332892c6bf99f17bfbcb55f5fb49b8011260e40", "fields": {"nom_de_la_commune": "ST GEORGES LES LANDES", "libell_d_acheminement": "ST GEORGES LES LANDES", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87145"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c58b1f9a3ee0126daee048cd471d6ed555e72b", "fields": {"nom_de_la_commune": "ST GERMAIN LES BELLES", "libell_d_acheminement": "ST GERMAIN LES BELLES", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87146"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5916c2d958e18282013553c544f636aefcbb16ac", "fields": {"nom_de_la_commune": "ST JUST LE MARTEL", "libell_d_acheminement": "ST JUST LE MARTEL", "code_postal": "87590", "coordonnees_gps": [45.852350172, 1.38689265685], "code_commune_insee": "87156"}, "geometry": {"type": "Point", "coordinates": [1.38689265685, 45.852350172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "141fc2d442625a264e75e13ba510e6db4c279d29", "fields": {"nom_de_la_commune": "ST MARTIN TERRESSUS", "libell_d_acheminement": "ST MARTIN TERRESSUS", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87167"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f1341732750a3246a3197b0fda6e1f95575f11", "fields": {"nom_de_la_commune": "ST PRIEST LIGOURE", "libell_d_acheminement": "ST PRIEST LIGOURE", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87176"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde98109082ea4b601dbd8ad5f0ce2cd8a4b9b3a", "fields": {"nom_de_la_commune": "LONDINIERES", "libell_d_acheminement": "LONDINIERES", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76392"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c051e853d026d0ccd6a0d05d6487f41c0cb8f2", "fields": {"nom_de_la_commune": "LONGUEVILLE SUR SCIE", "libell_d_acheminement": "LONGUEVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76397"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b5f962d112ce21c8aaf4ee7ef0dedc9adc76d3", "fields": {"nom_de_la_commune": "LUNERAY", "libell_d_acheminement": "LUNERAY", "code_postal": "76810", "coordonnees_gps": [49.8183017172, 0.909956349488], "code_commune_insee": "76400"}, "geometry": {"type": "Point", "coordinates": [0.909956349488, 49.8183017172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241163a06376d84fe609955a7e25bd17b4d87cce", "fields": {"nom_de_la_commune": "MARQUES", "libell_d_acheminement": "MARQUES", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76411"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc2e18d23c4b111e51e649f6065a6074f3367de", "fields": {"nom_de_la_commune": "MARTIGNY", "libell_d_acheminement": "MARTIGNY", "code_postal": "76880", "coordonnees_gps": [49.8769596625, 1.14064902475], "code_commune_insee": "76413"}, "geometry": {"type": "Point", "coordinates": [1.14064902475, 49.8769596625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd45cc21b96bb76bf7e74353ebda36345711f4b1", "fields": {"nom_de_la_commune": "MAUCOMBLE", "libell_d_acheminement": "MAUCOMBLE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76417"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57213e5c5701542280b02730e2d1357f1df0ec4", "fields": {"nom_de_la_commune": "MAULEVRIER STE GERTRUDE", "libell_d_acheminement": "MAULEVRIER STE GERTRUDE", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76418"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b138260501a41c069731a083ad32b3c40b8f6ad7", "fields": {"nom_de_la_commune": "MAUNY", "libell_d_acheminement": "MAUNY", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76419"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4134c806be972d3cdfeaffe007ad9ad1b2668407", "fields": {"nom_de_la_commune": "MAUQUENCHY", "libell_d_acheminement": "MAUQUENCHY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76420"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5bae118c8e430a7525dd0edd1671a9d3c684d3", "fields": {"nom_de_la_commune": "MENTHEVILLE", "libell_d_acheminement": "MENTHEVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76425"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956ca217c0d743863e09ee6eb113ce39c34010fc", "fields": {"nom_de_la_commune": "MESNIERES EN BRAY", "libell_d_acheminement": "MESNIERES EN BRAY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76427"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7eeb25e627454597e97ab9e66043cd2f5b83f1e", "fields": {"nom_de_la_commune": "LE MESNIL DURDENT", "libell_d_acheminement": "LE MESNIL DURDENT", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76428"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6273d1e32ffa165247849df2dd7b6a9db3a5779e", "fields": {"nom_de_la_commune": "LE MESNIL REAUME", "libell_d_acheminement": "LE MESNIL REAUME", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76435"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37254d5814edccac79e3e913e59ad48784502b8", "fields": {"nom_de_la_commune": "MIRVILLE", "libell_d_acheminement": "MIRVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76439"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1911a3d60eda5be172ccd6567b525eaef2efb7e9", "fields": {"nom_de_la_commune": "MONT CAUVAIRE", "libell_d_acheminement": "MONT CAUVAIRE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76443"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0436be1fbf253fc563f76e1ff059a23226abd8", "fields": {"nom_de_la_commune": "MONTMAIN", "libell_d_acheminement": "MONTMAIN", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76448"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82995b8caca21acd1fa221d1773978876d9bd45a", "fields": {"nom_de_la_commune": "LA NEUVILLE CHANT D OISEL", "libell_d_acheminement": "LA NEUVILLE CHANT D OISEL", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76464"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3dfa56f506f1edf757bee4e14aea2e5b94de2e2", "fields": {"nom_de_la_commune": "NEVILLE", "libell_d_acheminement": "NEVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76467"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1075a2db78830d5aaa0036276e9c3e13b9daa6f", "fields": {"nom_de_la_commune": "NOINTOT", "libell_d_acheminement": "NOINTOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76468"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd85f1f8a01e555de5c6b1f118d46f938cea332", "fields": {"nom_de_la_commune": "NOLLEVAL", "libell_d_acheminement": "NOLLEVAL", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76469"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18362eb11ce4d00c72311df1a591ddd1443272e5", "fields": {"code_postal": "76170", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "AUBERVILLE LA CAMPAGNE", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.5137047652, 0.527687035677]}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "269594bc4bd5316ba8b3b20a6316343ac24b5886", "fields": {"nom_de_la_commune": "OUAINVILLE", "libell_d_acheminement": "OUAINVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76488"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "922927e7bbba76ec49bd032d31afa9f2793e44db", "fields": {"nom_de_la_commune": "OUVILLE L ABBAYE", "libell_d_acheminement": "OUVILLE L ABBAYE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76491"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80c89716b4c817e51ac25a6634b78fd3e8a12cf1", "fields": {"nom_de_la_commune": "PIERREFIQUES", "libell_d_acheminement": "PIERREFIQUES", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76501"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a648e13ba95948163cca18356b1c2410cdcad71", "fields": {"nom_de_la_commune": "PISSY POVILLE", "libell_d_acheminement": "PISSY POVILLE", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76503"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a81f3f818c775418385cdd3bc4d81984bb59cea", "fields": {"nom_de_la_commune": "PONTS ET MARAIS", "libell_d_acheminement": "PONTS ET MARAIS", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76507"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bfa902316711991c7fb69014e04820a080f746", "fields": {"nom_de_la_commune": "LA POTERIE CAP D ANTIFER", "libell_d_acheminement": "LA POTERIE CAP D ANTIFER", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76508"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f7ff2f4cf5e08c8a7acc2ddf0ea047b499cfce", "fields": {"nom_de_la_commune": "RICARVILLE", "libell_d_acheminement": "RICARVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76525"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce72d240ced4eb6afbd36b8167e5029030c2518", "fields": {"nom_de_la_commune": "RICHEMONT", "libell_d_acheminement": "RICHEMONT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76527"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8317cebb3ec8919fe52ac11d971e6e587c07a68", "fields": {"nom_de_la_commune": "ROUVRAY CATILLON", "libell_d_acheminement": "ROUVRAY CATILLON", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76544"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dde791660e12e786d910a06f50ab3ed8ea6775", "fields": {"nom_de_la_commune": "ROYVILLE", "libell_d_acheminement": "ROYVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76546"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e960a3eb419b196d73dd7963b31b033d3d1586", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76557"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8039dd53a60e7456e1378bc347336082acde2218", "fields": {"nom_de_la_commune": "ST AUBIN DE CRETOT", "libell_d_acheminement": "ST AUBIN DE CRETOT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76559"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7c05ef2feacc2c58270a644fed8fe7d36aa999", "fields": {"nom_de_la_commune": "ST CLAIR SUR LES MONTS", "libell_d_acheminement": "ST CLAIR SUR LES MONTS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76568"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb7e2902dd3f5843729fa2e5714e44266a0abc95", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76569"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac7003b3d4e4bbb7dd3dc21184cfbf7dafb75e1", "fields": {"nom_de_la_commune": "ST DENIS LE THIBOULT", "libell_d_acheminement": "ST DENIS LE THIBOULT", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76573"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bc43c41eb396a98704760751fb4dabc3ab5c5e", "fields": {"nom_de_la_commune": "ST ETIENNE DU ROUVRAY", "libell_d_acheminement": "ST ETIENNE DU ROUVRAY", "code_postal": "76800", "coordonnees_gps": [49.3813581985, 1.09010989308], "code_commune_insee": "76575"}, "geometry": {"type": "Point", "coordinates": [1.09010989308, 49.3813581985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896abf3011af378540983b4b52c96571ff170860", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76578"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a9af005a3871890c26fa92875603e601de255d", "fields": {"nom_de_la_commune": "ST GERMAIN DES ESSOURTS", "libell_d_acheminement": "ST GERMAIN DES ESSOURTS", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76581"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453f04fcc169f0cc99ad588f9ddfc8ffad607645", "fields": {"nom_de_la_commune": "ST JEAN DU CARDONNAY", "libell_d_acheminement": "ST JEAN DU CARDONNAY", "code_postal": "76150", "coordonnees_gps": [49.4875793097, 1.0078796915], "code_commune_insee": "76594"}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e008b27fdcf648b355de72f96e94cbedb62e687", "fields": {"nom_de_la_commune": "ST MACLOU LA BRIERE", "libell_d_acheminement": "ST MACLOU LA BRIERE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76603"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c14922923e9cb568223e280ea4cd77781fd1ee", "fields": {"nom_de_la_commune": "MORIENNE", "libell_d_acheminement": "MORIENNE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76606"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0057f79414ccf09744c7dda04cd8b1d7bd98ef5d", "fields": {"nom_de_la_commune": "ST MARTIN AU BOSC", "libell_d_acheminement": "ST MARTIN AU BOSC", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76612"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc561952e337af3acdc7bedc76389e71014c4738", "fields": {"nom_de_la_commune": "ST MARTIN DU MANOIR", "libell_d_acheminement": "ST MARTIN DU MANOIR", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76616"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bfc4f3165e72fc63f6c126358fd3aa2028f0a1", "fields": {"nom_de_la_commune": "ST MARTIN DU VIVIER", "libell_d_acheminement": "ST MARTIN DU VIVIER", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76617"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ceba53e57b962aa0d4828c60800774b2ebd0e3", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "AUQUEMESNIL", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b617926d4406d20c0122e044143511f420cc1754", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "INTRAVILLE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336a5c02b6346d1977eb6cb0d9c6e61790fc4262", "fields": {"nom_de_la_commune": "ST MARTIN OSMONVILLE", "libell_d_acheminement": "ST MARTIN OSMONVILLE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76621"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ca349f2c62ec97b7b3762bcf3701a76d39d05d", "fields": {"nom_de_la_commune": "ST MAURICE D ETELAN", "libell_d_acheminement": "ST MAURICE D ETELAN", "code_postal": "76330", "coordonnees_gps": [49.4716972983, 0.6014275892], "code_commune_insee": "76622"}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66654a6863297c2aaa1a6e2f422206f6da3ddc9c", "fields": {"nom_de_la_commune": "ST OUEN SOUS BAILLY", "libell_d_acheminement": "ST OUEN SOUS BAILLY", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76630"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5c9814c1c488e75afbbf3bd6e44713d66c252c", "fields": {"nom_de_la_commune": "ST PIERRE DE MANNEVILLE", "libell_d_acheminement": "ST PIERRE DE MANNEVILLE", "code_postal": "76113", "coordonnees_gps": [49.3773922379, 0.947884639946], "code_commune_insee": "76634"}, "geometry": {"type": "Point", "coordinates": [0.947884639946, 49.3773922379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295c4c4cb15cb1503c5a9679810022c46a9f4d6d", "fields": {"nom_de_la_commune": "ST PIERRE DE VARENGEVILLE", "libell_d_acheminement": "ST PIERRE DE VARENGEVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76636"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7c982795227a697866568098ee2dbae5d5ad59", "fields": {"nom_de_la_commune": "ST PIERRE EN PORT", "libell_d_acheminement": "ST PIERRE EN PORT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76637"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9ddcfdfde019c65ca8064ca7c0786f7e7ef80d", "fields": {"nom_de_la_commune": "ST PIERRE LAVIS", "libell_d_acheminement": "ST PIERRE LAVIS", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76639"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c5fab672479e9ae55130ba5571f6fa3c8381bb", "fields": {"nom_de_la_commune": "ST REMY BOSCROCOURT", "libell_d_acheminement": "ST REMY BOSCROCOURT", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76644"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a5104c20cd48a0c57c627455148ac103e65e00", "fields": {"nom_de_la_commune": "ST SAENS", "libell_d_acheminement": "ST SAENS", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76648"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8722906b935312de46bbace78b278647a696aa49", "fields": {"nom_de_la_commune": "ST VAAST D EQUIQUEVILLE", "libell_d_acheminement": "ST VAAST D EQUIQUEVILLE", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76652"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a687be6880c7984d85eb6ad4419f8baac51a98ad", "fields": {"nom_de_la_commune": "SASSEVILLE", "libell_d_acheminement": "SASSEVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76664"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d6ede40fd2d0d65b0bbfdccc23fcf38b8b6bd5", "fields": {"nom_de_la_commune": "SEPT MEULES", "libell_d_acheminement": "SEPT MEULES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76671"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4604ecb1b7056c1771dc5b51030971207a24c1a3", "fields": {"nom_de_la_commune": "SERQUEUX", "libell_d_acheminement": "SERQUEUX", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76672"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f866b15ad30b6b90471f8ea438dfed6256989ed6", "fields": {"nom_de_la_commune": "SERVAVILLE SALMONVILLE", "libell_d_acheminement": "SERVAVILLE SALMONVILLE", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76673"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07bbf7efa305e357b20f25ea084a5cbe498bf2bc", "fields": {"code_postal": "76780", "code_commune_insee": "76676", "libell_d_acheminement": "SIGY EN BRAY", "ligne_5": "ST LUCIEN", "nom_de_la_commune": "SIGY EN BRAY", "coordonnees_gps": [49.5162651662, 1.48144260019]}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8cc0c761e55033499315ecedd80711aa68a3ad", "fields": {"nom_de_la_commune": "TANCARVILLE", "libell_d_acheminement": "TANCARVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76684"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb1028b8e32336ca13be9e5dcf560eb152b8f64", "fields": {"nom_de_la_commune": "THEROULDEVILLE", "libell_d_acheminement": "THEROULDEVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76685"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c7c16efac23c610cd9443df3ec6b0a0efa6690", "fields": {"nom_de_la_commune": "TOCQUEVILLE EN CAUX", "libell_d_acheminement": "TOCQUEVILLE EN CAUX", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76694"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c80f4356271f1de9b97b5c10d1668b1371ee047", "fields": {"nom_de_la_commune": "TORCY LE PETIT", "libell_d_acheminement": "TORCY LE PETIT", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76698"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da9e3878c3b6d124759cd4853d4ccf359bf317b", "fields": {"nom_de_la_commune": "LE TORP MESNIL", "libell_d_acheminement": "LE TORP MESNIL", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76699"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0aa5897f2838f7c163f5e2952367ad3f8c2813", "fields": {"nom_de_la_commune": "TOTES", "libell_d_acheminement": "TOTES", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76700"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27c485ec3851f071a37abfe16e9bd80c00edd18a", "fields": {"nom_de_la_commune": "LE TRAIT", "libell_d_acheminement": "LE TRAIT", "code_postal": "76580", "coordonnees_gps": [49.4836816397, 0.820017087099], "code_commune_insee": "76709"}, "geometry": {"type": "Point", "coordinates": [0.820017087099, 49.4836816397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9c471d8d7062ef85ce3949ba0bc20c270fa70d", "fields": {"nom_de_la_commune": "TREMAUVILLE", "libell_d_acheminement": "TREMAUVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76710"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3775843f4294d33ffc9cf746b370d70af85bf9e8", "fields": {"nom_de_la_commune": "VARNEVILLE BRETTEVILLE", "libell_d_acheminement": "VARNEVILLE BRETTEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76721"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba7485bad1e2f7f21588ff8a9b628b3053266f1", "fields": {"nom_de_la_commune": "VATIERVILLE", "libell_d_acheminement": "VATIERVILLE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76724"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe07aec3296c601d9e8aec7b63fc1eb44ccdd021", "fields": {"nom_de_la_commune": "VEAUVILLE LES QUELLES", "libell_d_acheminement": "VEAUVILLE LES QUELLES", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76730"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6165b9b54120c668f52feb6355a6e4c54354c88a", "fields": {"nom_de_la_commune": "VENTES ST REMY", "libell_d_acheminement": "VENTES ST REMY", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76733"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ffca8fbb9f112e78150287cc5320f6d1414185", "fields": {"nom_de_la_commune": "VILLERS ECALLES", "libell_d_acheminement": "VILLERS ECALLES", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76743"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636de09404f80ad751e9a80dc384d70cbcf0711d", "fields": {"nom_de_la_commune": "VILLERS SOUS FOUCARMONT", "libell_d_acheminement": "VILLERS SOUS FOUCARMONT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76744"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135b9eb90d3fdf4fe471e904dea02aa3aa8b141d", "fields": {"nom_de_la_commune": "VINNEMERVILLE", "libell_d_acheminement": "VINNEMERVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76746"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14aea6bcbd092fe7f12e235a7a8d6f6ba2266b8", "fields": {"nom_de_la_commune": "YAINVILLE", "libell_d_acheminement": "YAINVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76750"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347ec77791577684c3778e346c5098572f7528f0", "fields": {"nom_de_la_commune": "YERVILLE", "libell_d_acheminement": "YERVILLE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76752"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b7682134f63dacadb66e734aa8e18c70b205e6", "fields": {"code_postal": "76540", "code_commune_insee": "76755", "libell_d_acheminement": "YPREVILLE BIVILLE", "ligne_5": "YPREVILLE", "nom_de_la_commune": "YPREVILLE BIVILLE", "coordonnees_gps": [49.7570077564, 0.523798637411]}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323951b92e94b90daf05061bb51436d9385ae15e", "fields": {"nom_de_la_commune": "ANDREZEL", "libell_d_acheminement": "ANDREZEL", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77004"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3795119558fb1f9cbfa1ccacc086e78705f795", "fields": {"nom_de_la_commune": "ARBONNE LA FORET", "libell_d_acheminement": "ARBONNE LA FORET", "code_postal": "77630", "coordonnees_gps": [48.4243787367, 2.57257810234], "code_commune_insee": "77006"}, "geometry": {"type": "Point", "coordinates": [2.57257810234, 48.4243787367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5a536c48409a2be1ef42d824c4261ef619f770", "fields": {"nom_de_la_commune": "ARGENTIERES", "libell_d_acheminement": "ARGENTIERES", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77007"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dc91f0dcab16fbf9ef28b4ce457f30419ce2bc", "fields": {"nom_de_la_commune": "ARMENTIERES EN BRIE", "libell_d_acheminement": "ARMENTIERES EN BRIE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77008"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebacb0457baa9551e6e65885c0deadfea164942", "fields": {"nom_de_la_commune": "TANCONVILLE", "libell_d_acheminement": "TANCONVILLE", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54512"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2db838b6177a08c836c3f388e3b78cf4421682c", "fields": {"nom_de_la_commune": "THELOD", "libell_d_acheminement": "THELOD", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54515"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b15ec280286a7b9d84de8488be73a72139a3bc91", "fields": {"nom_de_la_commune": "THIEBAUMENIL", "libell_d_acheminement": "THIEBAUMENIL", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54520"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0b39b9a716337d2f072ec118a7e27d2c3c4739", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "54880", "coordonnees_gps": [49.4734220665, 5.90642660057], "code_commune_insee": "54521"}, "geometry": {"type": "Point", "coordinates": [5.90642660057, 49.4734220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa48d6cedd35d71fb05ecf15c6b9c208a97e00a1", "fields": {"nom_de_la_commune": "THOREY LYAUTEY", "libell_d_acheminement": "THOREY LYAUTEY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54522"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1608d782602eadca522b39fe52fd747623385d4", "fields": {"nom_de_la_commune": "TRIEUX", "libell_d_acheminement": "TRIEUX", "code_postal": "54750", "coordonnees_gps": [49.3222767865, 5.94434518377], "code_commune_insee": "54533"}, "geometry": {"type": "Point", "coordinates": [5.94434518377, 49.3222767865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e5b4e23d4d043eb526e5b285b9681a0a9bc9e6", "fields": {"nom_de_la_commune": "VACQUEVILLE", "libell_d_acheminement": "VACQUEVILLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54539"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bcd95f2a6178f55435897da75088a9d279c2fc9", "fields": {"nom_de_la_commune": "VANDIERES", "libell_d_acheminement": "VANDIERES", "code_postal": "54121", "coordonnees_gps": [48.9586678329, 6.02025307834], "code_commune_insee": "54546"}, "geometry": {"type": "Point", "coordinates": [6.02025307834, 48.9586678329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527643e963907d292e2dbecd9bef054bc0ce166f", "fields": {"nom_de_la_commune": "VATHIMENIL", "libell_d_acheminement": "VATHIMENIL", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54550"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef273ecd1b36250ad77b1a248d2a1e111351e407", "fields": {"nom_de_la_commune": "VAUDEVILLE", "libell_d_acheminement": "VAUDEVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54553"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc87f7c87037596b053acdaa20243ca34520840", "fields": {"nom_de_la_commune": "VAUDIGNY", "libell_d_acheminement": "VAUDIGNY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54554"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25fbc3a619158e817b1b5335b66988115bcbb120", "fields": {"nom_de_la_commune": "VELAINE SOUS AMANCE", "libell_d_acheminement": "VELAINE SOUS AMANCE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54558"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cc4a9f0a6219f48911e90827d60a04aa998743", "fields": {"nom_de_la_commune": "VELLE SUR MOSELLE", "libell_d_acheminement": "VELLE SUR MOSELLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54559"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1cea207cb69fa017dc9f26632900464dcddf51", "fields": {"nom_de_la_commune": "VILLACOURT", "libell_d_acheminement": "VILLACOURT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54567"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9e85d8678ad10c5ecfef58e0bbfdb0c471c6b8", "fields": {"nom_de_la_commune": "VILLECEY SUR MAD", "libell_d_acheminement": "VILLECEY SUR MAD", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54570"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05f7fc746e5e7a29b5523536f4dde2b5ff00a4c", "fields": {"nom_de_la_commune": "VILLERS EN HAYE", "libell_d_acheminement": "VILLERS EN HAYE", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54573"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff69afb70b9653552e1d6dccd1f8f05ca3fc13d", "fields": {"nom_de_la_commune": "ST LAURENT L ABBAYE", "libell_d_acheminement": "ST LAURENT L ABBAYE", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58248"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a581bbf09970fa1ed7f78f1f2242360e2d7ef6f", "fields": {"nom_de_la_commune": "ST PARIZE LE CHATEL", "libell_d_acheminement": "ST PARIZE LE CHATEL", "code_postal": "58490", "coordonnees_gps": [46.8506484753, 3.18474672516], "code_commune_insee": "58260"}, "geometry": {"type": "Point", "coordinates": [3.18474672516, 46.8506484753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f41fa656cdb1671e7bd7fe6ae47f4ee695acea6", "fields": {"nom_de_la_commune": "ST REVERIEN", "libell_d_acheminement": "ST REVERIEN", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58266"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15bb9d6398d27eb522befce11b13f25a2eeba91e", "fields": {"nom_de_la_commune": "ST SAULGE", "libell_d_acheminement": "ST SAULGE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58267"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba320af970e2d842354a61903b679843c5b9fae", "fields": {"nom_de_la_commune": "ST VERAIN", "libell_d_acheminement": "ST VERAIN", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58270"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decaf633060d376a64c19239fec622f80450091b", "fields": {"nom_de_la_commune": "SEMELAY", "libell_d_acheminement": "SEMELAY", "code_postal": "58360", "coordonnees_gps": [46.8973238863, 3.8600072839], "code_commune_insee": "58276"}, "geometry": {"type": "Point", "coordinates": [3.8600072839, 46.8973238863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4438d2b3bf6c41eac9a2c046dd9b398dce41815b", "fields": {"nom_de_la_commune": "VILLIERS LE PRE", "libell_d_acheminement": "VILLIERS LE PRE", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50640"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f408c2f083130b31c9e5a57e33b709021f56612", "fields": {"nom_de_la_commune": "VILLIERS FOSSARD", "libell_d_acheminement": "VILLIERS FOSSARD", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50641"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a1e7eeeca5562bc6e2a367d3cf0cf2dc509735", "fields": {"nom_de_la_commune": "ALLEMANT", "libell_d_acheminement": "ALLEMANT", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51005"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc165956f117b0b2fc8cf7732689db2edbb06918", "fields": {"nom_de_la_commune": "ALLIANCELLES", "libell_d_acheminement": "ALLIANCELLES", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51006"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a2c2c05ee24cda3f33e1aa9133d04a8f92e10d6", "fields": {"nom_de_la_commune": "AMBONNAY", "libell_d_acheminement": "AMBONNAY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51007"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f29bed42b5e5c7529cff766a0848b3f56b4821", "fields": {"nom_de_la_commune": "ARZILLIERES NEUVILLE", "libell_d_acheminement": "ARZILLIERES NEUVILLE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51017"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac74af11586e9843b6a05ea4893d4643d10029ad", "fields": {"code_postal": "51150", "code_commune_insee": "51030", "libell_d_acheminement": "AY CHAMPAGNE", "ligne_5": "BISSEUIL", "nom_de_la_commune": "AY CHAMPAGNE", "coordonnees_gps": [49.0294111773, 4.16667797153]}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a70bd225eebdb2884850b240d1808e1301215c", "fields": {"nom_de_la_commune": "BACONNES", "libell_d_acheminement": "BACONNES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51031"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a7d2f3525391e4abb5144d83ae51db3bad1c33", "fields": {"nom_de_la_commune": "BANNAY", "libell_d_acheminement": "BANNAY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51034"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b67a4c96b63d047acae365a9017a5f0d016479d", "fields": {"nom_de_la_commune": "BEAUMONT SUR VESLE", "libell_d_acheminement": "BEAUMONT SUR VESLE", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51044"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01692371d6a9631e614d91ae34c8289c4e7856c6", "fields": {"nom_de_la_commune": "BELVAL EN ARGONNE", "libell_d_acheminement": "BELVAL EN ARGONNE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51047"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3572ec6a726a95ef76853580a465f3ce5bb8ce58", "fields": {"nom_de_la_commune": "BERMERICOURT", "libell_d_acheminement": "BERMERICOURT", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51051"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc633152fa406b3004ef91bbcd95ba1a92192de6", "fields": {"nom_de_la_commune": "BETTANCOURT LA LONGUE", "libell_d_acheminement": "BETTANCOURT LA LONGUE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51057"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "387e07e12397e9bea0dd165f6ad50cec78475fb5", "fields": {"nom_de_la_commune": "BINSON ET ORQUIGNY", "libell_d_acheminement": "BINSON ET ORQUIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51063"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b53dc27402f7caf21a6707bb7f92c4a18b82661d", "fields": {"nom_de_la_commune": "BREUVERY SUR COOLE", "libell_d_acheminement": "BREUVERY SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51087"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b664677a01bdb44728a489d6f3c589130b0e0d20", "fields": {"nom_de_la_commune": "BROUILLET", "libell_d_acheminement": "BROUILLET", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51089"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3fd4660e171443ad87b8d36e39368b835ddb72", "fields": {"nom_de_la_commune": "BROUSSY LE PETIT", "libell_d_acheminement": "BROUSSY LE PETIT", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51091"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d42a870a15dc77831bfeac532f8209bf02b085", "fields": {"nom_de_la_commune": "BUSSY LE REPOS", "libell_d_acheminement": "BUSSY LE REPOS", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51098"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172a9d5ab6b6fc18c734029c3e566c626d93e528", "fields": {"nom_de_la_commune": "CERNAY EN DORMOIS", "libell_d_acheminement": "CERNAY EN DORMOIS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51104"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac02fb1499d34b766475d00b72d46a33de93fb0", "fields": {"nom_de_la_commune": "CERNON", "libell_d_acheminement": "CERNON", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51106"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97802f2aba62420ba63d91654d4d7a9d21e4e9d0", "fields": {"nom_de_la_commune": "CHAMPIGNEUL CHAMPAGNE", "libell_d_acheminement": "CHAMPIGNEUL CHAMPAGNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51117"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00402ffe3d224a2fa06a3c78b4fba959049eddb2", "fields": {"nom_de_la_commune": "CHAMPIGNY", "libell_d_acheminement": "CHAMPIGNY", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51118"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd63971f9f7da7451906ee21fc0854b35780dca4", "fields": {"nom_de_la_commune": "CHANTEMERLE", "libell_d_acheminement": "CHANTEMERLE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51124"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba07803e82842dd94cda9b31d44bce555fff364", "fields": {"nom_de_la_commune": "CHARMONT", "libell_d_acheminement": "CHARMONT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51130"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a84f3b7f37a241d1ecbdc29f0d80f075cb3bb8e2", "fields": {"nom_de_la_commune": "CHATILLON SUR BROUE", "libell_d_acheminement": "CHATILLON SUR BROUE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51135"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38e3f78343fb92e55b4868f68714393315ad58af", "fields": {"nom_de_la_commune": "CHAUDEFONTAINE", "libell_d_acheminement": "CHAUDEFONTAINE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51139"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012d54e12e4e8a5f913888b2f1decb48efbbcb99", "fields": {"nom_de_la_commune": "LA CHAUSSEE SUR MARNE", "libell_d_acheminement": "LA CHAUSSEE SUR MARNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51141"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3297aba17a4cdc7b84f92621ed83e55750bc452", "fields": {"nom_de_la_commune": "CHAVOT COURCOURT", "libell_d_acheminement": "CHAVOT COURCOURT", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51142"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29696fc0fb0c0e0a0c9edf03ef62ad3cb3ed4df", "fields": {"nom_de_la_commune": "LE CHEMIN", "libell_d_acheminement": "LE CHEMIN", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51143"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490c851562db1eef3ac848b56e046c631e4c40aa", "fields": {"nom_de_la_commune": "CHEMINON", "libell_d_acheminement": "CHEMINON", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51144"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acae5e3da6693596440af2ff15d892b2aa20d5b3", "fields": {"nom_de_la_commune": "CHICHEY", "libell_d_acheminement": "CHICHEY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51151"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312c67f8c60ef415815147213e275e0ec412e0d8", "fields": {"nom_de_la_commune": "COOLUS", "libell_d_acheminement": "COOLUS", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51168"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c34035fc43b5ab82c21babc66d272a6e8d6029", "fields": {"nom_de_la_commune": "CORMICY", "libell_d_acheminement": "CORMICY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51171"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eff7a4af0b1e83e730793cb5f0482a6ac672ab5", "fields": {"nom_de_la_commune": "CORMONTREUIL", "libell_d_acheminement": "CORMONTREUIL", "code_postal": "51350", "coordonnees_gps": [49.2168828261, 4.05267122539], "code_commune_insee": "51172"}, "geometry": {"type": "Point", "coordinates": [4.05267122539, 49.2168828261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f321155e6cc702a08fbea4cd83a48d6b543f84", "fields": {"nom_de_la_commune": "COUPETZ", "libell_d_acheminement": "COUPETZ", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51178"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a53b752678e1b0321d11d4a5f67bfcf945b4ca", "fields": {"nom_de_la_commune": "COUPEVILLE", "libell_d_acheminement": "COUPEVILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51179"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9ed00b3b88a33f43a92b5cba7d964de8f198691", "fields": {"nom_de_la_commune": "COURGIVAUX", "libell_d_acheminement": "COURGIVAUX", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51185"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54edf48fa154ece0de616c1c6330f01e7eec2637", "fields": {"nom_de_la_commune": "COURTEMONT", "libell_d_acheminement": "COURTEMONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51191"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d008a6304eee34d0348c85b520e6058ccfc0ca", "fields": {"nom_de_la_commune": "COURVILLE", "libell_d_acheminement": "COURVILLE", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51194"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3654c8025824a5659dd42f52e4a90fa55578fedf", "fields": {"nom_de_la_commune": "COUVROT", "libell_d_acheminement": "COUVROT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51195"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a224563ad8439c515e1d8184ff84336a09e0c07", "fields": {"nom_de_la_commune": "CUPERLY", "libell_d_acheminement": "CUPERLY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51203"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75c3e3df1a01e2e92047e78f01e5305f4f83c5a", "fields": {"nom_de_la_commune": "DAMPIERRE AU TEMPLE", "libell_d_acheminement": "DAMPIERRE AU TEMPLE", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51205"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e1b2beabfa044c92ba09a0212d613ddaedbd2c", "fields": {"nom_de_la_commune": "DIZY", "libell_d_acheminement": "DIZY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51210"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba70e3e366d1668e4ff31388e936a37ec611950e", "fields": {"code_postal": "51700", "code_commune_insee": "51217", "libell_d_acheminement": "DORMANS", "ligne_5": "SOILLY", "nom_de_la_commune": "DORMANS", "coordonnees_gps": [49.0741079676, 3.71485064458]}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a7cdd675a4ddb3d91eb2a7e45d182f9dcd5441e", "fields": {"nom_de_la_commune": "DROUILLY", "libell_d_acheminement": "DROUILLY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51220"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52ae8390874bb2253256d7ee3f83807e4d4209d", "fields": {"nom_de_la_commune": "ECLAIRES", "libell_d_acheminement": "ECLAIRES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51222"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "299d1db65bd011c8339fb95b8e1db38bd42873c8", "fields": {"nom_de_la_commune": "LES ESSARTS LES SEZANNE", "libell_d_acheminement": "LES ESSARTS LES SEZANNE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51235"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ebccc3dc20f402752b4e03cecb79e3b48f52b4", "fields": {"nom_de_la_commune": "ETREPY", "libell_d_acheminement": "ETREPY", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51240"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937bf462b79349c391c8040824b7fc4938552767", "fields": {"nom_de_la_commune": "FAUX FRESNAY", "libell_d_acheminement": "FAUX FRESNAY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51243"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37077c4c192efe7859c236db57e8178c371de19f", "fields": {"nom_de_la_commune": "FAUX VESIGNEUL", "libell_d_acheminement": "FAUX VESIGNEUL", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51244"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f9528f4f76ac90f88561de55b697bac174122b0", "fields": {"nom_de_la_commune": "FONTAINE EN DORMOIS", "libell_d_acheminement": "FONTAINE EN DORMOIS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51255"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d286d232bcde26eaac633edc7f3a717bffa98ce", "fields": {"nom_de_la_commune": "LE FRESNE", "libell_d_acheminement": "LE FRESNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51260"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d29456c14992f4cb2ee3c33014133539338fa4c", "fields": {"nom_de_la_commune": "LE GAULT SOIGNY", "libell_d_acheminement": "LE GAULT SOIGNY", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51264"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317343fde2cc036a1629adfc9474ab820f1964fc", "fields": {"nom_de_la_commune": "GERMINON", "libell_d_acheminement": "GERMINON", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51268"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911e09d065eb782010ce8f610b91a6385a39795f", "fields": {"nom_de_la_commune": "HAUSSIMONT", "libell_d_acheminement": "HAUSSIMONT", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51285"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a11a6067f925ae3ece200e487cb761db39cff4d9", "fields": {"nom_de_la_commune": "JALONS", "libell_d_acheminement": "JALONS", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51303"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad309614a6018f949200df548f77c1d660b8f290", "fields": {"nom_de_la_commune": "JANVILLIERS", "libell_d_acheminement": "JANVILLIERS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51304"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98325b38a7a7b5ca47ebdb9a4e3745aed6859f6", "fields": {"nom_de_la_commune": "JOISELLE", "libell_d_acheminement": "JOISELLE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51306"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940ef6f39089743129fc153fe13b97f524380ae0", "fields": {"nom_de_la_commune": "JUVIGNY", "libell_d_acheminement": "JUVIGNY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51312"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9949237fde4a57cb74b0d6d999efea281df0c149", "fields": {"nom_de_la_commune": "LACHY", "libell_d_acheminement": "LACHY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51313"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "defa5ed63504dcbd3aee0f6bb66492f91c1ae798", "fields": {"nom_de_la_commune": "LANDRICOURT", "libell_d_acheminement": "LANDRICOURT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51315"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ddd20356b2b8040bbf4697946c887660742b68", "fields": {"nom_de_la_commune": "LENHARREE", "libell_d_acheminement": "LENHARREE", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51319"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c64124d39af04af0bbdd8f6b3132445c8ca73a", "fields": {"nom_de_la_commune": "LIGNON", "libell_d_acheminement": "LIGNON", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51322"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f749e474eeb08605ff050c99e0a4ed65c63b30c", "fields": {"nom_de_la_commune": "LOISY EN BRIE", "libell_d_acheminement": "LOISY EN BRIE", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51327"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db411c7e82b619c41f81a2a57087603941800a2", "fields": {"nom_de_la_commune": "LOISY SUR MARNE", "libell_d_acheminement": "LOISY SUR MARNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51328"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc948ac9f27b020a8351944bcb8dc436febe0026", "fields": {"nom_de_la_commune": "LUXEMONT ET VILLOTTE", "libell_d_acheminement": "LUXEMONT ET VILLOTTE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51334"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbafbb3c678ea551f7f86e88c12a6a62df286d8e", "fields": {"nom_de_la_commune": "MAISONS EN CHAMPAGNE", "libell_d_acheminement": "MAISONS EN CHAMPAGNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51340"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e90d5170dbc49291cfdd4e25b6d43007703a6da", "fields": {"nom_de_la_commune": "MANCY", "libell_d_acheminement": "MANCY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51342"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46aa71045067eec909b3bdbdb1345efabfec3047", "fields": {"nom_de_la_commune": "MARDEUIL", "libell_d_acheminement": "MARDEUIL", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51344"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb577fe1e7e583cf71908264bc5ae36095e5957", "fields": {"nom_de_la_commune": "MARGERIE HANCOURT", "libell_d_acheminement": "MARGERIE HANCOURT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51349"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78a1ddb412407e014ef781075f3c82d1856fd80", "fields": {"nom_de_la_commune": "MARGNY", "libell_d_acheminement": "MARGNY", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51350"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0399426c18418f8e74d13e7c2a3e968206a7c1", "fields": {"nom_de_la_commune": "MAURUPT LE MONTOIS", "libell_d_acheminement": "MAURUPT LE MONTOIS", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51358"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9acd75b35ff8ec3c31f763cde3b7ac736c9938", "fields": {"nom_de_la_commune": "MECRINGES", "libell_d_acheminement": "MECRINGES", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51359"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70d3a1949a46155434fdf229e0cf627c6c32268", "fields": {"nom_de_la_commune": "MONTGENOST", "libell_d_acheminement": "MONTGENOST", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51376"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4b3713ca2852f950cf7200319c151b6fa6a5616", "fields": {"nom_de_la_commune": "MONTIGNY SUR VESLE", "libell_d_acheminement": "MONTIGNY SUR VESLE", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51379"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cae9ac19880be662c0777718628d5edbb52dc42", "fields": {"nom_de_la_commune": "MONT SUR COURVILLE", "libell_d_acheminement": "MONT SUR COURVILLE", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51382"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f142655f792eb70d65f96aca8651b8b78ec2b3f9", "fields": {"nom_de_la_commune": "MOSLINS", "libell_d_acheminement": "MOSLINS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51387"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a882622e20900681a67df7bafc7d8d1a3d8a904", "fields": {"nom_de_la_commune": "MOUSSY", "libell_d_acheminement": "MOUSSY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51390"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e72e560c2ce8a39b6434312cbc2d3b1a0ac194fe", "fields": {"nom_de_la_commune": "MUIZON", "libell_d_acheminement": "MUIZON", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51391"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35276902c663fc94eb2ae94a90da897f24c5af45", "fields": {"nom_de_la_commune": "NEUVY", "libell_d_acheminement": "NEUVY", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51402"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c768fe233d2b1b0f3ddc5648bf37d725018bf502", "fields": {"nom_de_la_commune": "NORROIS", "libell_d_acheminement": "NORROIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51406"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aecb0c753b9b7d9f81b02580c2f542b68f7896b", "fields": {"nom_de_la_commune": "NUISEMENT SUR COOLE", "libell_d_acheminement": "NUISEMENT SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51409"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8556c5a77076bac90d93d001700c0098678483", "fields": {"nom_de_la_commune": "ORBAIS L ABBAYE", "libell_d_acheminement": "ORBAIS L ABBAYE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51416"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47b7308a8584d1d20f93abd49cbb19b512883529", "fields": {"nom_de_la_commune": "OUTINES", "libell_d_acheminement": "OUTINES", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51419"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc93dee3b9cf533fd2624413086648d1ff0ad0f7", "fields": {"nom_de_la_commune": "PARGNY LES REIMS", "libell_d_acheminement": "PARGNY LES REIMS", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51422"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f10449a7e68763637db43e0aa35e7aaeefd523", "fields": {"nom_de_la_commune": "LES PETITES LOGES", "libell_d_acheminement": "LES PETITES LOGES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51428"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09658fde68f97ea72eba638bd23539e92cd64fa", "fields": {"nom_de_la_commune": "PLEURS", "libell_d_acheminement": "PLEURS", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51432"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a96ea425bdcf5b59accc4ddb0008d65bdebeaf83", "fields": {"nom_de_la_commune": "PLIVOT", "libell_d_acheminement": "PLIVOT", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51434"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a262e41a234d2f63ab33518535c9d2b2014227b", "fields": {"nom_de_la_commune": "POUILLON", "libell_d_acheminement": "POUILLON", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51444"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "352087ed669d24d59189b565a32d5db42471c638", "fields": {"nom_de_la_commune": "PROUILLY", "libell_d_acheminement": "PROUILLY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51448"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4378f9f1f9d76cb8d0d9a2d68c9236b358e56692", "fields": {"nom_de_la_commune": "RAPSECOURT", "libell_d_acheminement": "RAPSECOURT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51452"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e200f0e8f2707c99a2f94c9549bc6795c9e91668", "fields": {"code_postal": "51100", "code_commune_insee": "51454", "libell_d_acheminement": "REIMS", "ligne_5": "LA NEUVILLETTE", "nom_de_la_commune": "REIMS", "coordonnees_gps": [49.2518578026, 4.03958522088]}, "geometry": {"type": "Point", "coordinates": [4.03958522088, 49.2518578026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "125f6a9ad32a8b0219aca0dfe61a82b5bac1a422", "fields": {"nom_de_la_commune": "LES RIVIERES HENRUEL", "libell_d_acheminement": "LES RIVIERES HENRUEL", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51463"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29de7155b6b953be7aba4b83f49ab27f17a9d0ab", "fields": {"nom_de_la_commune": "ROMIGNY", "libell_d_acheminement": "ROMIGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51466"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb21b4af4939c87d6880698d16aa2f5da252f32", "fields": {"nom_de_la_commune": "SAUGY", "libell_d_acheminement": "SAUGY", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18244"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263f8099896e389ee75a23cd96dcc39b40d55c53", "fields": {"nom_de_la_commune": "SAULZAIS LE POTIER", "libell_d_acheminement": "SAULZAIS LE POTIER", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18245"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20782c145f1cbb9d14a33bad3a0378c226c5b73e", "fields": {"nom_de_la_commune": "SENS BEAUJEU", "libell_d_acheminement": "SENS BEAUJEU", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18249"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb2d1d8cf0e6a91cf828c0077eaa7795f019d03", "fields": {"nom_de_la_commune": "SERRUELLES", "libell_d_acheminement": "SERRUELLES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18250"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952068b2364e1de5e449aace1eab06bda913a5fe", "fields": {"nom_de_la_commune": "SIDIAILLES", "libell_d_acheminement": "SIDIAILLES", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18252"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5861c2eb7c69af4e6c76b23afeac161157302d9", "fields": {"nom_de_la_commune": "THAUVENAY", "libell_d_acheminement": "THAUVENAY", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18262"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5add26cd1765b290ec1426159305c8817f3d8e04", "fields": {"nom_de_la_commune": "TROUY", "libell_d_acheminement": "TROUY", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18267"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755beacb269630a8711ea8c9fe36993bc812fd3a", "fields": {"nom_de_la_commune": "VEREAUX", "libell_d_acheminement": "VEREAUX", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18275"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab39f726472e87bec22f6d7c6f04c105fc0a0b7a", "fields": {"nom_de_la_commune": "VIGNOUX SUR BARANGEON", "libell_d_acheminement": "VIGNOUX SUR BARANGEON", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18281"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c859930cffd087f2d6fd78f343c8b521c9bebb13", "fields": {"nom_de_la_commune": "VILLABON", "libell_d_acheminement": "VILLABON", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18282"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c18a18e62fd16d769f7d5ba51eba142cb3eb5f", "fields": {"nom_de_la_commune": "VILLEGENON", "libell_d_acheminement": "VILLEGENON", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18284"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da19ec46d7d51be7e89523023c16d681095662dc", "fields": {"nom_de_la_commune": "VORNAY", "libell_d_acheminement": "VORNAY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18289"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844f498b811f1bc353205e41229e6364281d69bc", "fields": {"nom_de_la_commune": "LES ANGLES SUR CORREZE", "libell_d_acheminement": "LES ANGLES SUR CORREZE", "code_postal": "19000", "coordonnees_gps": [45.2793808785, 1.76981536054], "code_commune_insee": "19009"}, "geometry": {"type": "Point", "coordinates": [1.76981536054, 45.2793808785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c134062005c3f2a8febc2085b000030d79632ef", "fields": {"nom_de_la_commune": "ASTAILLAC", "libell_d_acheminement": "ASTAILLAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19012"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef6b15609a0ce3ad30dd6d9fb48379dec0a25d5", "fields": {"nom_de_la_commune": "AURIAC", "libell_d_acheminement": "AURIAC", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19014"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632a4ecef17c2f548b1f5dfd138b3d93d7bd1bca", "fields": {"nom_de_la_commune": "BASSIGNAC LE BAS", "libell_d_acheminement": "BASSIGNAC LE BAS", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19017"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d3a21ebb11899fe5535f75dcd7ed7c0576f81d", "fields": {"nom_de_la_commune": "BENAYES", "libell_d_acheminement": "BENAYES", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19022"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85d33336ceb5629437d41db7a82a8ceb6652a2d", "fields": {"nom_de_la_commune": "CAMPS ST MATHURIN LEOBAZEL", "libell_d_acheminement": "CAMPS ST MATHURIN LEOBAZEL", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19034"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8feb0d5bcc0cbbb126de8f70358532bdf795eebb", "fields": {"nom_de_la_commune": "CHAMBOULIVE", "libell_d_acheminement": "CHAMBOULIVE", "code_postal": "19450", "coordonnees_gps": [45.4271584984, 1.69945008096], "code_commune_insee": "19037"}, "geometry": {"type": "Point", "coordinates": [1.69945008096, 45.4271584984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4d7b8f359cf91048e6e41398d11953ed8e4df9", "fields": {"nom_de_la_commune": "CHAMPAGNAC LA NOAILLE", "libell_d_acheminement": "CHAMPAGNAC LA NOAILLE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19039"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2ff0583996a97ade2a5756f6b69193071e45d6", "fields": {"nom_de_la_commune": "CHANAC LES MINES", "libell_d_acheminement": "CHANAC LES MINES", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19041"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29ff02678297edc1e8002c3b174d3d70899a56a", "fields": {"nom_de_la_commune": "CHAUFFOUR SUR VELL", "libell_d_acheminement": "CHAUFFOUR SUR VELL", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19050"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a399a8e7e362a0111528eb7cd868ff34c609bf7d", "fields": {"nom_de_la_commune": "CHAUMEIL", "libell_d_acheminement": "CHAUMEIL", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19051"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c6abd97105278f5502005993ca622aa5ec778e", "fields": {"nom_de_la_commune": "CONDAT SUR GANAVEIX", "libell_d_acheminement": "CONDAT SUR GANAVEIX", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19060"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7e275a8899176d3b34744ac311cf46571a4d45", "fields": {"nom_de_la_commune": "COURTEIX", "libell_d_acheminement": "COURTEIX", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19065"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deaeeb2575ba2ec43e6dede1e8625025e66976e2", "fields": {"nom_de_la_commune": "CUBLAC", "libell_d_acheminement": "CUBLAC", "code_postal": "19520", "coordonnees_gps": [45.1579746689, 1.34205051388], "code_commune_insee": "19066"}, "geometry": {"type": "Point", "coordinates": [1.34205051388, 45.1579746689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed67fdc785c1338b156cd2798b135efca54ed77c", "fields": {"nom_de_la_commune": "DONZENAC", "libell_d_acheminement": "DONZENAC", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19072"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b1cb81cb288b5977846c80d133a2b57371fc1e", "fields": {"nom_de_la_commune": "EYGURANDE", "libell_d_acheminement": "EYGURANDE", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19080"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9886ea237115aaec78d75847582f045308a61b", "fields": {"nom_de_la_commune": "FAVARS", "libell_d_acheminement": "FAVARS", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19082"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118aadc74e25f28623e8e542f32cacbd615f56cc", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19084"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6835e52f2627ff6d5694d95374f1daa20c6487", "fields": {"nom_de_la_commune": "GIMEL LES CASCADES", "libell_d_acheminement": "GIMEL LES CASCADES", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19085"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f36b46a4fd3e422b7662eeb56bb2f1528e003c", "fields": {"nom_de_la_commune": "GOULLES", "libell_d_acheminement": "GOULLES", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19086"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb6dbf5936e882e7e0cc9182a6c97d4431bc380", "fields": {"nom_de_la_commune": "GROS CHASTANG", "libell_d_acheminement": "GROS CHASTANG", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19089"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba7ad96175bf0eee4419a039ce1e7d3c08e9173", "fields": {"nom_de_la_commune": "LE JARDIN", "libell_d_acheminement": "LE JARDIN", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19092"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e664e294d03428d6f9af304b2912fa3b35c1ce4c", "fields": {"nom_de_la_commune": "LADIGNAC SUR RONDELLES", "libell_d_acheminement": "LADIGNAC SUR RONDELLES", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19096"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494781116260c907d67e40847d867aee6613d04d", "fields": {"nom_de_la_commune": "LAMAZIERE BASSE", "libell_d_acheminement": "LAMAZIERE BASSE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19102"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421be1a60d53fb73b4567101741725b5c7c867af", "fields": {"nom_de_la_commune": "LAMONGERIE", "libell_d_acheminement": "LAMONGERIE", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19104"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4fe0f9ad6d7794fd98de37dd4e0b754b3118f31", "fields": {"nom_de_la_commune": "LAVAL SUR LUZEGE", "libell_d_acheminement": "LAVAL SUR LUZEGE", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19111"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b413df018e33f7388d58ebef0bf3389c7c458cd", "fields": {"nom_de_la_commune": "LIGNAREIX", "libell_d_acheminement": "LIGNAREIX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19114"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd86e607dbb21326223438d3bdbd9044336b646", "fields": {"nom_de_la_commune": "MANSAC", "libell_d_acheminement": "MANSAC", "code_postal": "19520", "coordonnees_gps": [45.1579746689, 1.34205051388], "code_commune_insee": "19124"}, "geometry": {"type": "Point", "coordinates": [1.34205051388, 45.1579746689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a868c28c974a2ecad8255375b48cc7f22c7a86", "fields": {"nom_de_la_commune": "MARCILLAC LA CROISILLE", "libell_d_acheminement": "MARCILLAC LA CROISILLE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19125"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d6d54525063442f46d5a66d88a699b05762f1a", "fields": {"nom_de_la_commune": "MAUSSAC", "libell_d_acheminement": "MAUSSAC", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19130"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2373a80b90bd3df440ef49f2a6d74ce4859ce1ba", "fields": {"nom_de_la_commune": "MEYRIGNAC L EGLISE", "libell_d_acheminement": "MEYRIGNAC L EGLISE", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19137"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32c4975a1de56a308abbdb6af3ce2467dff2b3d1", "fields": {"nom_de_la_commune": "MONCEAUX SUR DORDOGNE", "libell_d_acheminement": "MONCEAUX SUR DORDOGNE", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19140"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893d78ed65e2b07ac47cf09bcb954afe463615ba", "fields": {"nom_de_la_commune": "MONTGIBAUD", "libell_d_acheminement": "MONTGIBAUD", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19144"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc1ba3c91de3529e280dcc3842eeae39e17f562", "fields": {"nom_de_la_commune": "NESPOULS", "libell_d_acheminement": "NESPOULS", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19147"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5bcd7160c84b7cae652e8456310d309750767c0", "fields": {"nom_de_la_commune": "PANDRIGNES", "libell_d_acheminement": "PANDRIGNES", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19158"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c36d3b44f66bf1f152a05ecc182ba202a2379cf", "fields": {"nom_de_la_commune": "PEYRELEVADE", "libell_d_acheminement": "PEYRELEVADE", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19164"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c164faa68ec0576bba881a2128ef8cba015734", "fields": {"nom_de_la_commune": "ROCHE LE PEYROUX", "libell_d_acheminement": "ROCHE LE PEYROUX", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19175"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6255dc0d76cee86bfd598bad1afd75f7111caa54", "fields": {"nom_de_la_commune": "ROSIERS D EGLETONS", "libell_d_acheminement": "ROSIERS D EGLETONS", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19176"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646f08b2de8c3fd28e4ea5c60b04f38b030e0c10", "fields": {"nom_de_la_commune": "ST AULAIRE", "libell_d_acheminement": "ST AULAIRE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19182"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c428364b34ba6f70d7fb5d40ec83670f75d8fd5", "fields": {"nom_de_la_commune": "ST BONNET L ENFANTIER", "libell_d_acheminement": "ST BONNET L ENFANTIER", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19188"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81effa1a4c7179b01b50b4db486e70d3ed8746bc", "fields": {"nom_de_la_commune": "ST BONNET PRES BORT", "libell_d_acheminement": "ST BONNET PRES BORT", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19190"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a42f9a9f2b0e44c823ff10db154d85857845031", "fields": {"nom_de_la_commune": "ST CERNIN DE LARCHE", "libell_d_acheminement": "ST CERNIN DE LARCHE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19191"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "339e0750ca2ffa5dc0ba1b57b68ae5a2e54ccd74", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19195"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5cf1e6c6fb0a2221624a82f6f18859370b67984", "fields": {"nom_de_la_commune": "STE FEREOLE", "libell_d_acheminement": "STE FEREOLE", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19202"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592c1b1b360810fb400f5ee6d8a14079c80feab5", "fields": {"nom_de_la_commune": "ST FREJOUX", "libell_d_acheminement": "ST FREJOUX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19204"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31c2a9cfcc5957301198ac07442993094d78ffc", "fields": {"nom_de_la_commune": "ST HILAIRE LUC", "libell_d_acheminement": "ST HILAIRE LUC", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19210"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40379463e24cf6cdffe10789d4fc22f2673e694b", "fields": {"nom_de_la_commune": "ST JULIEN LE PELERIN", "libell_d_acheminement": "ST JULIEN LE PELERIN", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19215"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb92402c66ae53664aa7bec3be495139f39a7c0e", "fields": {"nom_de_la_commune": "ST MARTIAL DE GIMEL", "libell_d_acheminement": "ST MARTIAL DE GIMEL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19220"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39402ac41c59dcc0a2515085373d0f4f319227a0", "fields": {"nom_de_la_commune": "ST MARTIN LA MEANNE", "libell_d_acheminement": "ST MARTIN LA MEANNE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19222"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3080be3eb4b17ff70bcae10bc944ee83f437054", "fields": {"nom_de_la_commune": "ST MARTIN SEPERT", "libell_d_acheminement": "ST MARTIN SEPERT", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19223"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940c9b59a2ce84caf2a2f35ea510305eff760c47", "fields": {"nom_de_la_commune": "ST PANTALEON DE LARCHE", "libell_d_acheminement": "ST PANTALEON DE LARCHE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19229"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a4710ade4b78cdf00dae7e0177c1901cfc1d6ab", "fields": {"nom_de_la_commune": "ST PARDOUX L ORTIGIER", "libell_d_acheminement": "ST PARDOUX L ORTIGIER", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19234"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f63a3bfd4b4fec0c5b354c6ab7ad503a36a726f", "fields": {"nom_de_la_commune": "ST PRIEST DE GIMEL", "libell_d_acheminement": "ST PRIEST DE GIMEL", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19236"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb9434db3493180181cd5a79ca7641d07a7222b0", "fields": {"nom_de_la_commune": "ST ROBERT", "libell_d_acheminement": "ST ROBERT", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19239"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fead765167629878c0b93229c85a38d8ee966d5", "fields": {"nom_de_la_commune": "ST SETIERS", "libell_d_acheminement": "ST SETIERS", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19241"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6980bcc3439538b38ce8240fa4014204d70da7ae", "fields": {"nom_de_la_commune": "ST SULPICE LES BOIS", "libell_d_acheminement": "ST SULPICE LES BOIS", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19244"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a772b2fb3ab91991b33077b75092baf74ec4f9d", "fields": {"nom_de_la_commune": "ST SYLVAIN", "libell_d_acheminement": "ST SYLVAIN", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19245"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c646b0b0172e2f0f9feee838f4e589fe57702846", "fields": {"nom_de_la_commune": "ST VIANCE", "libell_d_acheminement": "ST VIANCE", "code_postal": "19240", "coordonnees_gps": [45.2278338531, 1.45884900159], "code_commune_insee": "19246"}, "geometry": {"type": "Point", "coordinates": [1.45884900159, 45.2278338531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a77b812749176ce7bea8c8ca4d5d21a1095ec43c", "fields": {"nom_de_la_commune": "ST VICTOUR", "libell_d_acheminement": "ST VICTOUR", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19247"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "939332af7ad953d664e2e6a4dee92bfb7117d23e", "fields": {"nom_de_la_commune": "SERANDON", "libell_d_acheminement": "SERANDON", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19256"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cea9d3981acf2b78432de11026f6a213e3fcc08", "fields": {"nom_de_la_commune": "SEXCLES", "libell_d_acheminement": "SEXCLES", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19259"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc0fe342879360b5a7bbdbc5ee5be2eff02a412", "fields": {"nom_de_la_commune": "TARNAC", "libell_d_acheminement": "TARNAC", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19265"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d955ba7f57e000ccc3bdfec445206c9bf726f3", "fields": {"nom_de_la_commune": "TULLE", "libell_d_acheminement": "TULLE", "code_postal": "19000", "coordonnees_gps": [45.2793808785, 1.76981536054], "code_commune_insee": "19272"}, "geometry": {"type": "Point", "coordinates": [1.76981536054, 45.2793808785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4adf01c5041296afcb4379e7ac254371251a6f", "fields": {"nom_de_la_commune": "USSEL", "libell_d_acheminement": "USSEL", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19275"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9890b7dcb41a807db21cfb42fa0d2f0924fe1e1", "fields": {"code_postal": "19200", "code_commune_insee": "19275", "libell_d_acheminement": "USSEL", "ligne_5": "LA TOURETTE", "nom_de_la_commune": "USSEL", "coordonnees_gps": [45.541954447, 2.3447608402]}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9193811aee22385376e1172db103abcd93a94767", "fields": {"code_postal": "19200", "code_commune_insee": "19275", "libell_d_acheminement": "USSEL", "ligne_5": "ST DEZERY", "nom_de_la_commune": "USSEL", "coordonnees_gps": [45.541954447, 2.3447608402]}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee244476957eb25ec0500e967d04aa0896ad4f7", "fields": {"nom_de_la_commune": "UZERCHE", "libell_d_acheminement": "UZERCHE", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19276"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97527d522284df5322358c6ca554590014d0a5c", "fields": {"nom_de_la_commune": "VALIERGUES", "libell_d_acheminement": "VALIERGUES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19277"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b700e86a4d862b054c569059ae4a0075a5aac7b6", "fields": {"nom_de_la_commune": "VEIX", "libell_d_acheminement": "VEIX", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19281"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dd9f901eeb108504ce0ec43d629426a117e591", "fields": {"nom_de_la_commune": "VEYRIERES", "libell_d_acheminement": "VEYRIERES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19283"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd23ebda1ff809c98ed3897f43250c5c27d37ce", "fields": {"nom_de_la_commune": "VOUTEZAC", "libell_d_acheminement": "VOUTEZAC", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19288"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757eba0b2304e51997d3bcc654b7d302e7958676", "fields": {"nom_de_la_commune": "YSSANDON", "libell_d_acheminement": "YSSANDON", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19289"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30489a5ef40cfee4927b4af1c1a2cc82b17e1fe7", "fields": {"nom_de_la_commune": "AGENCOURT", "libell_d_acheminement": "AGENCOURT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21001"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05a9f7bc8b0a959bedbdf5000ff0f100c108ec5", "fields": {"nom_de_la_commune": "AISEY SUR SEINE", "libell_d_acheminement": "AISEY SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21006"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f7ae758d428c166bb6bfe9a79a2f69f68469bf", "fields": {"nom_de_la_commune": "ALISE STE REINE", "libell_d_acheminement": "ALISE STE REINE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21008"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1a0aa0c1be9ba1c87357a34f380fb7b75e2270", "fields": {"nom_de_la_commune": "ALLEREY", "libell_d_acheminement": "ALLEREY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21009"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065d2a6b7819608523076c5aa69a80efff20036f", "fields": {"nom_de_la_commune": "AMPILLY LE SEC", "libell_d_acheminement": "AMPILLY LE SEC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21012"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73da9e88e19ac7f8bb51f3387dd5ed95c2bc5120", "fields": {"nom_de_la_commune": "ANCEY", "libell_d_acheminement": "ANCEY", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21013"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a1730c8c45fedada351c3c1a4c536320728371", "fields": {"nom_de_la_commune": "ASNIERES LES DIJON", "libell_d_acheminement": "ASNIERES LES DIJON", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21027"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35142b9f1a0db5fa92d14f387cb7eafdec19938a", "fields": {"nom_de_la_commune": "AUBIGNY LA RONCE", "libell_d_acheminement": "AUBIGNY LA RONCE", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21032"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dfe72f97d621e662b4ad4e5c5035ab33a1418a", "fields": {"nom_de_la_commune": "AUVILLARS SUR SAONE", "libell_d_acheminement": "AUVILLARS SUR SAONE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21035"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca67b6c64361bb32cf02183a4d3e8239aa7f5e53", "fields": {"nom_de_la_commune": "BAUBIGNY", "libell_d_acheminement": "BAUBIGNY", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21050"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02626ed86142e058a1e28355515a7d67ff5084c6", "fields": {"nom_de_la_commune": "BAULME LA ROCHE", "libell_d_acheminement": "BAULME LA ROCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21051"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fbacfc21abc7acd612e0d03dd229ba31db52d0", "fields": {"nom_de_la_commune": "BEAUNE", "libell_d_acheminement": "BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21054"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c59d31766004bd11293e8c782910be95be8b2f", "fields": {"nom_de_la_commune": "BELLENEUVE", "libell_d_acheminement": "BELLENEUVE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21060"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0378477c256804270c6788efe7b81a7429a58794", "fields": {"nom_de_la_commune": "BENEUVRE", "libell_d_acheminement": "BENEUVRE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21063"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98d2ec2aeebb2e81e058bb36663e1aaa04b68b9", "fields": {"nom_de_la_commune": "BEURIZOT", "libell_d_acheminement": "BEURIZOT", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21069"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c040d6877bcdaa7259a36f62393677c9a74b25b5", "fields": {"nom_de_la_commune": "BIERRE LES SEMUR", "libell_d_acheminement": "BIERRE LES SEMUR", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21073"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941c033021e5d024e525d573e8ff5970832e72ed", "fields": {"nom_de_la_commune": "COUVERTPUIS", "libell_d_acheminement": "COUVERTPUIS", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55133"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db54f51393adfaaecc0ac7128abf6cb889f5eee8", "fields": {"nom_de_la_commune": "CUMIERES LE MORT HOMME", "libell_d_acheminement": "CUMIERES LE MORT HOMME", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55139"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03143734767f01ab911ff75769b5fadc71cc05e", "fields": {"nom_de_la_commune": "CUNEL", "libell_d_acheminement": "CUNEL", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55140"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b06a1e6405b6ac249379cd9ebd2aed37892582", "fields": {"nom_de_la_commune": "DAGONVILLE", "libell_d_acheminement": "DAGONVILLE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55141"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5997dff1bf945fd7abfb6aa089eb321eac0d82cb", "fields": {"nom_de_la_commune": "DELUT", "libell_d_acheminement": "DELUT", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55149"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdab92caffee82098c93744b6a147bd71e11238", "fields": {"nom_de_la_commune": "DEMANGE AUX EAUX", "libell_d_acheminement": "DEMANGE AUX EAUX", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55150"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4ae24d72030cd702d13866ce2ccd1c0e6578eb", "fields": {"nom_de_la_commune": "DOMREMY LA CANNE", "libell_d_acheminement": "DOMREMY LA CANNE", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55162"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbce5db968a8f7702d6c75dcf60a3b3036f3729", "fields": {"nom_de_la_commune": "DOUAUMONT", "libell_d_acheminement": "DOUAUMONT", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55164"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df67f04f54211a801ed1676d4a227ef3815018dd", "fields": {"nom_de_la_commune": "DOULCON", "libell_d_acheminement": "DOULCON", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55165"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2058ab297d68e65e53f47b32e983c1e55996026f", "fields": {"nom_de_la_commune": "EPIEZ SUR MEUSE", "libell_d_acheminement": "EPIEZ SUR MEUSE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55173"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f751a321bff230bcc30c600295d04fe3dd6354d", "fields": {"nom_de_la_commune": "ERNEVILLE AUX BOIS", "libell_d_acheminement": "ERNEVILLE AUX BOIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55179"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb4be8298f2a23eff14f2c43dd658c4b47bee2e", "fields": {"nom_de_la_commune": "EUVILLE", "libell_d_acheminement": "EUVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55184"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983fe05dccf62d8b06f1bffb32c9e8fd394b27ef", "fields": {"code_postal": "55200", "code_commune_insee": "55184", "libell_d_acheminement": "EUVILLE", "ligne_5": "VILLE ISSEY", "nom_de_la_commune": "EUVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc83fef4d6db6394d7fdc4d09bf7cfcab958953a", "fields": {"nom_de_la_commune": "EVRES", "libell_d_acheminement": "EVRES", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55185"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941f21eda81654fca75719f709ccfa10a8e1e047", "fields": {"nom_de_la_commune": "FLEURY DEVANT DOUAUMONT", "libell_d_acheminement": "FLEURY DEVANT DOUAUMONT", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55189"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4785fdf4708afad231f4486689ed8855907a261a", "fields": {"nom_de_la_commune": "FONTAINES ST CLAIR", "libell_d_acheminement": "FONTAINES ST CLAIR", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55192"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25941b3e3a1374710633828d87d6b63a479dbaf0", "fields": {"nom_de_la_commune": "FROIDOS", "libell_d_acheminement": "FROIDOS", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55199"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ac5a4911fcfb75bebe76d4a0aa0dba3cf75361", "fields": {"nom_de_la_commune": "GESNES EN ARGONNE", "libell_d_acheminement": "GESNES EN ARGONNE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55208"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378272555b0f26f32800cecab2c80268c543e9b3", "fields": {"nom_de_la_commune": "GIRAUVOISIN", "libell_d_acheminement": "GIRAUVOISIN", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55212"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffea21c081cc85a1bac0ddec7651ee15bf1c14dc", "fields": {"nom_de_la_commune": "GIVRAUVAL", "libell_d_acheminement": "GIVRAUVAL", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55214"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec252f7eb98e20568e40e533339d7a029adabede", "fields": {"nom_de_la_commune": "GREMILLY", "libell_d_acheminement": "GREMILLY", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55218"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350c49997ab36588e76e271a82a36c668219e9a4", "fields": {"nom_de_la_commune": "GUERPONT", "libell_d_acheminement": "GUERPONT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55221"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3653ac252fcf8ecd70a1cea9d550e4c4b366c946", "fields": {"nom_de_la_commune": "GUSSAINVILLE", "libell_d_acheminement": "GUSSAINVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55222"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd6510fa4b00a7b3e8230d0d2481a777f1b51e7", "fields": {"nom_de_la_commune": "HANNONVILLE SOUS LES COTES", "libell_d_acheminement": "HANNONVILLE SOUS LES COTES", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55228"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb56767b96c12ab9250707920d98b3cd9a34b02", "fields": {"nom_de_la_commune": "HENNEMONT", "libell_d_acheminement": "HENNEMONT", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55242"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d396c13ed3c95129f8bd5a2bfd0fe8bf6746ab", "fields": {"nom_de_la_commune": "HOUDELAINCOURT", "libell_d_acheminement": "HOUDELAINCOURT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55248"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae584eed883af3e3f101344b23d8bbce206a5d65", "fields": {"nom_de_la_commune": "INOR", "libell_d_acheminement": "INOR", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55250"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e86088d03aa87c5af1c01ab7e074407ac9a798d", "fields": {"nom_de_la_commune": "LES TROIS DOMAINES", "libell_d_acheminement": "LES TROIS DOMAINES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55254"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a2c735f91926255d5e779317b5c8b6fabf21fa", "fields": {"code_postal": "55220", "code_commune_insee": "55254", "libell_d_acheminement": "LES TROIS DOMAINES", "ligne_5": "ISSONCOURT", "nom_de_la_commune": "LES TROIS DOMAINES", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b327300c07fd9a64224de1e93b9a80897d4863a1", "fields": {"nom_de_la_commune": "JUVIGNY SUR LOISON", "libell_d_acheminement": "JUVIGNY SUR LOISON", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55262"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c196d8d2423e1cc0bbc10dbab3171627f3a009", "fields": {"nom_de_la_commune": "LABEUVILLE", "libell_d_acheminement": "LABEUVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55265"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc62a892943040cff2ff4c5f59f198c4641a0d42", "fields": {"nom_de_la_commune": "LACROIX SUR MEUSE", "libell_d_acheminement": "LACROIX SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55268"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9680a1ee8626e3d4daf8f2067cb5542f819ca47", "fields": {"nom_de_la_commune": "LAHAYVILLE", "libell_d_acheminement": "LAHAYVILLE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55270"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5385b60a3093f114d7b9d905e419b595a749b0", "fields": {"nom_de_la_commune": "LAIMONT", "libell_d_acheminement": "LAIMONT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55272"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00cf19fc3a3fa45cc3169fc06799fd1115a54caa", "fields": {"code_postal": "55300", "code_commune_insee": "55274", "libell_d_acheminement": "LAMORVILLE", "ligne_5": "DEUXNOUDS AUX BOIS", "nom_de_la_commune": "LAMORVILLE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f22a5e070a9d0a26f58799c55cfb434bfb4fd6a", "fields": {"code_postal": "55300", "code_commune_insee": "55274", "libell_d_acheminement": "LAMORVILLE", "ligne_5": "LAVIGNEVILLE", "nom_de_la_commune": "LAMORVILLE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c85922739dcd613e10c90b0bc9350852b36a364", "fields": {"nom_de_la_commune": "LAVALLEE", "libell_d_acheminement": "LAVALLEE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55282"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f9b9c5ce1978b8a6de96be684d93cd73b6178a4", "fields": {"nom_de_la_commune": "LAVINCOURT", "libell_d_acheminement": "LAVINCOURT", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55284"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e88566baff35823b9e9cad0b08fa76010b5ced", "fields": {"nom_de_la_commune": "LEVONCOURT", "libell_d_acheminement": "LEVONCOURT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55289"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6983e1916c0f1a623eb17c7934b5bb14ec96ebdd", "fields": {"nom_de_la_commune": "LISLE EN RIGAULT", "libell_d_acheminement": "LISLE EN RIGAULT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55296"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1706c15441566851c52991cab24e79f6350fdd6", "fields": {"nom_de_la_commune": "LONGEAUX", "libell_d_acheminement": "LONGEAUX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55300"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b2136e0315d2d97c438aa0da438cf2bb4eb667", "fields": {"nom_de_la_commune": "LOUPPY LE CHATEAU", "libell_d_acheminement": "LOUPPY LE CHATEAU", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55304"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfaaf86dd73436f9c7e10f8e706bc8cd4d12dee1", "fields": {"nom_de_la_commune": "LUZY ST MARTIN", "libell_d_acheminement": "LUZY ST MARTIN", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55310"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cd0baeb5fa43a5d7ccf703b050219f0896f190", "fields": {"nom_de_la_commune": "MAIZEY", "libell_d_acheminement": "MAIZEY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55312"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89c00343f38de6e0c1c347590af0a2f7be883d6", "fields": {"nom_de_la_commune": "MARCHEVILLE EN WOEVRE", "libell_d_acheminement": "MARCHEVILLE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55320"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6abcc8368047b3f70aa98acf9b21acaf0c473852", "fields": {"nom_de_la_commune": "MARSON SUR BARBOURE", "libell_d_acheminement": "MARSON SUR BARBOURE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55322"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ebfae2b0167262d29a03390bf6923093b5dbbf", "fields": {"nom_de_la_commune": "MENIL SUR SAULX", "libell_d_acheminement": "MENIL SUR SAULX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55335"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975a9f515debff291ab9078badf52e69656e7dd1", "fields": {"code_postal": "55150", "code_commune_insee": "55341", "libell_d_acheminement": "MOIREY FLABAS CREPION", "ligne_5": "CREPION", "nom_de_la_commune": "MOIREY FLABAS CREPION", "coordonnees_gps": [49.3426883563, 5.43366095865]}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc73cdcbdc72ee9602c5c03cf49c3edbddd43d05", "fields": {"nom_de_la_commune": "MONTBLAINVILLE", "libell_d_acheminement": "MONTBLAINVILLE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55343"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02114b90d10845ae267365e9f8e08c94dee7b92", "fields": {"nom_de_la_commune": "MONTBRAS", "libell_d_acheminement": "MONTBRAS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55344"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74ab416fc8a49ae9fcf1e248194207e2d1a51d3", "fields": {"nom_de_la_commune": "MONTIGNY LES VAUCOULEURS", "libell_d_acheminement": "MONTIGNY LES VAUCOULEURS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55350"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35229126443fcbd0bb440047cb9c20b3c493e486", "fields": {"nom_de_la_commune": "VAL D ORNAIN", "libell_d_acheminement": "VAL D ORNAIN", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55366"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c8c5420c130d2c953a4961892580fa2d688032", "fields": {"nom_de_la_commune": "NAIX AUX FORGES", "libell_d_acheminement": "NAIX AUX FORGES", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55370"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db33f6b3e61644fc1e6fe711e07cc5ee36cb4a3a", "fields": {"nom_de_la_commune": "NANCOIS LE GRAND", "libell_d_acheminement": "NANCOIS LE GRAND", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55371"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79643ea93d54c0667e1441124c0b19d106fdce5d", "fields": {"nom_de_la_commune": "NANT LE PETIT", "libell_d_acheminement": "NANT LE PETIT", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55374"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3740e20b5da47aea5ce1ae28d8331b0696eb39ad", "fields": {"nom_de_la_commune": "NANTILLOIS", "libell_d_acheminement": "NANTILLOIS", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55375"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec15bc8d36bf048cabf8983e24a18f4c12c03f6a", "fields": {"nom_de_la_commune": "NEPVANT", "libell_d_acheminement": "NEPVANT", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55377"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751631bde27f835c7c054b9c96f45454a8be0f8c", "fields": {"code_postal": "55250", "code_commune_insee": "55389", "libell_d_acheminement": "NUBECOURT", "ligne_5": "BULAINVILLE", "nom_de_la_commune": "NUBECOURT", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0d250c3ec1bfefe18ac662b3c94dfcd6e523b0", "fields": {"nom_de_la_commune": "PARFONDRUPT", "libell_d_acheminement": "PARFONDRUPT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55400"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf0072c5ce8e21228f759e5f22922677b92f235c", "fields": {"nom_de_la_commune": "LES PAROCHES", "libell_d_acheminement": "LES PAROCHES", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55401"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcddeec0578442e9ee914f748cc37a408067ee43", "fields": {"nom_de_la_commune": "PONT SUR MEUSE", "libell_d_acheminement": "PONT SUR MEUSE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55407"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7d458e571f8159c42de9e41d6ffaa83d63f811", "fields": {"code_postal": "55250", "code_commune_insee": "55423", "libell_d_acheminement": "REMBERCOURT SOMMAISNE", "ligne_5": "SOMMAISNE", "nom_de_la_commune": "REMBERCOURT SOMMAISNE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a094d6262329a140bf12c27f890687c580c1c6", "fields": {"nom_de_la_commune": "REMENNECOURT", "libell_d_acheminement": "REMENNECOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55424"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40f1f6ae26af4208c83544991e5a40b3508b1ee", "fields": {"nom_de_la_commune": "RESSON", "libell_d_acheminement": "RESSON", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55426"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a144ddbabbb8aeaac77914aeab1ffe7c6bd4bb7c", "fields": {"nom_de_la_commune": "REVIGNY SUR ORNAIN", "libell_d_acheminement": "REVIGNY SUR ORNAIN", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55427"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df38f739e9c44694d77bc19e836b7860efc43a21", "fields": {"nom_de_la_commune": "RUMONT", "libell_d_acheminement": "RUMONT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55446"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1579ff76bc25e81def3c400612b1abada7442fe", "fields": {"nom_de_la_commune": "ST GERMAIN SUR MEUSE", "libell_d_acheminement": "ST GERMAIN SUR MEUSE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55456"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5b39ad9dd8525d73982e0969cf936e0c1eb387", "fields": {"nom_de_la_commune": "ST JOIRE", "libell_d_acheminement": "ST JOIRE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55459"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09c7727786d1697a3fff00a79b17ba87f531e998", "fields": {"nom_de_la_commune": "ST MAURICE SOUS LES COTES", "libell_d_acheminement": "ST MAURICE SOUS LES COTES", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55462"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f55b5cba3d451d5e2a2503b554ca1abbc5ab401", "fields": {"nom_de_la_commune": "ST PIERREVILLERS", "libell_d_acheminement": "ST PIERREVILLERS", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55464"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e0b02cb6f709ac0543b78282a8340d05d99d4f", "fields": {"nom_de_la_commune": "ST REMY LA CALONNE", "libell_d_acheminement": "ST REMY LA CALONNE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55465"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d9b6765137c142dda119fb74c3139e47375d47", "fields": {"nom_de_la_commune": "SALMAGNE", "libell_d_acheminement": "SALMAGNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55466"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bff287c356b9015aeb66c750fd7c2ad649d6e062", "fields": {"code_postal": "55500", "code_commune_insee": "55472", "libell_d_acheminement": "SAULVAUX", "ligne_5": "VAUX LA GRANDE", "nom_de_la_commune": "SAULVAUX", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7fb363f134a81d93cd1dcbabd946bcc031e5f38", "fields": {"nom_de_la_commune": "SAVONNIERES DEVANT BAR", "libell_d_acheminement": "SAVONNIERES DEVANT BAR", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55476"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df58f69273fa37a6a1a974020ee372435689b85c", "fields": {"nom_de_la_commune": "SAVONNIERES EN PERTHOIS", "libell_d_acheminement": "SAVONNIERES EN PERTHOIS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55477"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcecc373f0c564147824f33abeadae959d4b4e02", "fields": {"nom_de_la_commune": "SEIGNEULLES", "libell_d_acheminement": "SEIGNEULLES", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55479"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda5663d06f7aaec60496aabf98e218171cfe3c7", "fields": {"nom_de_la_commune": "SEPVIGNY", "libell_d_acheminement": "SEPVIGNY", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55485"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4efaa3677c239097ed374d4cfc32bf98396978d", "fields": {"nom_de_la_commune": "SORCY ST MARTIN", "libell_d_acheminement": "SORCY ST MARTIN", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55496"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57fefceaca5d82e6b670d08ab4c18545f4b21296", "fields": {"nom_de_la_commune": "STAINVILLE", "libell_d_acheminement": "STAINVILLE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55501"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d52b3e1bcc1d542f7f4cdc607c08940dd3c2861", "fields": {"nom_de_la_commune": "STENAY", "libell_d_acheminement": "STENAY", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55502"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ce0293a4fee2ae82014c64755294352834434c", "fields": {"nom_de_la_commune": "THILLOMBOIS", "libell_d_acheminement": "THILLOMBOIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55506"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9755345d03c238381504534d7bb068f671d79b5", "fields": {"nom_de_la_commune": "THONNE LES PRES", "libell_d_acheminement": "THONNE LES PRES", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55510"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884178d8084a038bd07622ae3a3dda1abddb1da2", "fields": {"nom_de_la_commune": "THONNELLE", "libell_d_acheminement": "THONNELLE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55511"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e26e0d49da17bb75d0a791d1279bdd08a25b018", "fields": {"nom_de_la_commune": "TREMONT SUR SAULX", "libell_d_acheminement": "TREMONT SUR SAULX", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55514"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0a2399bfdfc898e387f0298e288ff5d9467bbd", "fields": {"nom_de_la_commune": "COUSANCES LES TRICONVILLE", "libell_d_acheminement": "COUSANCES LES TRICONVILLE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55518"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b2b71f85c86c38f5c89e92b71284b87256c3e7", "fields": {"nom_de_la_commune": "TROUSSEY", "libell_d_acheminement": "TROUSSEY", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55520"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030a597a9dad6755f7b2b89f6b0dcb42850af8bc", "fields": {"nom_de_la_commune": "TROYON", "libell_d_acheminement": "TROYON", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55521"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e95cd84195aeb2085d48a9e660f5f4556aeb9b8", "fields": {"nom_de_la_commune": "UGNY SUR MEUSE", "libell_d_acheminement": "UGNY SUR MEUSE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55522"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310ec2bac990527b2e0dd4c6f40a3c2b49669e0f", "fields": {"nom_de_la_commune": "VADONVILLE", "libell_d_acheminement": "VADONVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55526"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad35dc285ae0556291e6aafd5a5bb380aa219b60", "fields": {"code_postal": "55300", "code_commune_insee": "55530", "libell_d_acheminement": "VALBOIS", "ligne_5": "SAVONNIERES EN WOEVRE", "nom_de_la_commune": "VALBOIS", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c6cfb2d67e41260320385f80b60435462e2ea5", "fields": {"nom_de_la_commune": "VAUDEVILLE LE HAUT", "libell_d_acheminement": "VAUDEVILLE LE HAUT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55534"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e095f34e66523b751e2215f582b9f5b8e06885d", "fields": {"nom_de_la_commune": "VAUDONCOURT", "libell_d_acheminement": "VAUDONCOURT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55535"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a891439e49d49771b6a504d4e9afcf57148c9ae", "fields": {"nom_de_la_commune": "VIGNEUL SOUS MONTMEDY", "libell_d_acheminement": "VIGNEUL SOUS MONTMEDY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55552"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c0a5365891a1b8428b096b37c81b3bfd5252ab", "fields": {"nom_de_la_commune": "VILLEROY SUR MEHOLLE", "libell_d_acheminement": "VILLEROY SUR MEHOLLE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55559"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de13eb8173ac45e6f427de48b0f2ffcc1818a7f", "fields": {"nom_de_la_commune": "VILLERS AUX VENTS", "libell_d_acheminement": "VILLERS AUX VENTS", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55560"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2715767ac790e3a53cce316dd573b9187711c393", "fields": {"nom_de_la_commune": "VILLERS LES MANGIENNES", "libell_d_acheminement": "VILLERS LES MANGIENNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55563"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f1006373dc04662654ece7cf769681335eae82", "fields": {"nom_de_la_commune": "VILLERS SUR MEUSE", "libell_d_acheminement": "VILLERS SUR MEUSE", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55566"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23517251ab0038a3ae119643629829958cbdacbb", "fields": {"nom_de_la_commune": "VILLE SUR COUSANCES", "libell_d_acheminement": "VILLE SUR COUSANCES", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55567"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd0c0a8f72fb72ba581e2586d14fcff092a3c62", "fields": {"nom_de_la_commune": "VILLE SUR SAULX", "libell_d_acheminement": "VILLE SUR SAULX", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55568"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea12019a8931fd64fa208a7ae70edd590549b25", "fields": {"nom_de_la_commune": "WOIMBEY", "libell_d_acheminement": "WOIMBEY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55584"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43940a652f037e98d00f0c6ecd92a3c77cf6ec2e", "fields": {"nom_de_la_commune": "ST PRIEST SOUS AIXE", "libell_d_acheminement": "ST PRIEST SOUS AIXE", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87177"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e88e150e9fad7040051d179e8940af705f5ff5c", "fields": {"nom_de_la_commune": "ST SORNIN LEULAC", "libell_d_acheminement": "ST SORNIN LEULAC", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87180"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f85e3b58371fe9bac1eb90b6bacac1259623f9d", "fields": {"nom_de_la_commune": "ST SULPICE LES FEUILLES", "libell_d_acheminement": "ST SULPICE LES FEUILLES", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87182"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb4419fc6ac8f520f106d2dde5091757eccd926", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SUR COUZE", "libell_d_acheminement": "ST SYMPHORIEN SUR COUZE", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87184"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29123c7f397904e0442d253954a0e8f90d5f7281", "fields": {"nom_de_la_commune": "SURDOUX", "libell_d_acheminement": "SURDOUX", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87193"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1eee7d9f23cd5f25ed3ccc5edb92df934c73ce1", "fields": {"nom_de_la_commune": "THORIGNE SUR DUE", "libell_d_acheminement": "THORIGNE SUR DUE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72358"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549cf291181f625f5ece11d9d2e7ef4153971732", "fields": {"nom_de_la_commune": "VERNEIL LE CHETIF", "libell_d_acheminement": "VERNEIL LE CHETIF", "code_postal": "72360", "coordonnees_gps": [47.7503941662, 0.276407152429], "code_commune_insee": "72369"}, "geometry": {"type": "Point", "coordinates": [0.276407152429, 47.7503941662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e4830eca3139af086e07ccc046aac95271445e", "fields": {"nom_de_la_commune": "VILLAINES SOUS MALICORNE", "libell_d_acheminement": "VILLAINES SOUS MALICORNE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72377"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f885e92087995ccb8332488d049d1bbd2dba197", "fields": {"nom_de_la_commune": "VIVOIN", "libell_d_acheminement": "VIVOIN", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72380"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c6f997d91e5da0a064794669caf3eec45fa5eb", "fields": {"nom_de_la_commune": "YVRE L EVEQUE", "libell_d_acheminement": "YVRE L EVEQUE", "code_postal": "72530", "coordonnees_gps": [48.0234814584, 0.281275359673], "code_commune_insee": "72386"}, "geometry": {"type": "Point", "coordinates": [0.281275359673, 48.0234814584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b17f51c7220ef64e2b0bbbb42c7fa379399cb91", "fields": {"nom_de_la_commune": "AILLON LE VIEUX", "libell_d_acheminement": "AILLON LE VIEUX", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73005"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "655a57ee78e17ca032b39f82daba39970a160a95", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "GRANIER", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baa0beacf15de1a5aa058dd746252ee86c647cd", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ALBENS", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e8a14395d438b87aca0148e9dcbb620c157ab7", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "MOGNARD", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43501ca31fd292e2ce6215304d717f09ae896f0e", "fields": {"nom_de_la_commune": "LES ALLUES", "libell_d_acheminement": "LES ALLUES", "code_postal": "73550", "coordonnees_gps": [45.3696826174, 6.58760256597], "code_commune_insee": "73015"}, "geometry": {"type": "Point", "coordinates": [6.58760256597, 45.3696826174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97439e0ee377d6f64642b03ea5879e2e569274c", "fields": {"nom_de_la_commune": "BARBY", "libell_d_acheminement": "BARBY", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73030"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6a6716e68f0f8a82829755e5a23b28d46f2003", "fields": {"nom_de_la_commune": "LA BATHIE", "libell_d_acheminement": "LA BATHIE", "code_postal": "73540", "coordonnees_gps": [45.6337991816, 6.45138868013], "code_commune_insee": "73032"}, "geometry": {"type": "Point", "coordinates": [6.45138868013, 45.6337991816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff8b897060bba0afd5d8e7ba7d1158bcb1888cd", "fields": {"code_postal": "73270", "code_commune_insee": "73034", "libell_d_acheminement": "BEAUFORT SUR DORON", "ligne_5": "ARECHES", "nom_de_la_commune": "BEAUFORT", "coordonnees_gps": [45.6914287305, 6.59333922308]}, "geometry": {"type": "Point", "coordinates": [6.59333922308, 45.6914287305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2513373a414dbef818024792d880c090447c78cb", "fields": {"nom_de_la_commune": "BELLECOMBE EN BAUGES", "libell_d_acheminement": "BELLECOMBE EN BAUGES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73036"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f544a02458b6f1921f540242bd1af5e79e135ad", "fields": {"nom_de_la_commune": "LA BIOLLE", "libell_d_acheminement": "LA BIOLLE", "code_postal": "73410", "coordonnees_gps": [45.773124755, 5.93479737577], "code_commune_insee": "73043"}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de546d502fc818caa710d6ad702e1e868d3fc2a3", "fields": {"nom_de_la_commune": "BOURG ST MAURICE", "libell_d_acheminement": "BOURG ST MAURICE", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73054"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c4ac69b859c9b0868638220f6a605bf9219d65", "fields": {"code_postal": "73700", "code_commune_insee": "73054", "libell_d_acheminement": "BOURG ST MAURICE", "ligne_5": "HAUTEVILLE GONDON", "nom_de_la_commune": "BOURG ST MAURICE", "coordonnees_gps": [45.6553139344, 6.78435107537]}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85326506741a0b62e2199eac35da36ac002ecd9c", "fields": {"nom_de_la_commune": "BRAMANS", "libell_d_acheminement": "BRAMANS", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73056"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec112196f65ce8b61ed68308098d4a3a3dfed8c", "fields": {"nom_de_la_commune": "LA BRIDOIRE", "libell_d_acheminement": "LA BRIDOIRE", "code_postal": "73520", "coordonnees_gps": [45.516425766, 5.73063906773], "code_commune_insee": "73058"}, "geometry": {"type": "Point", "coordinates": [5.73063906773, 45.516425766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216bb5db48cd3efba337f2b35b3c76b412266521", "fields": {"nom_de_la_commune": "CHAMPAGNEUX", "libell_d_acheminement": "CHAMPAGNEUX", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73070"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591c09073772330967a4e454df6a7f92a072f521", "fields": {"nom_de_la_commune": "CHAMP LAURENT", "libell_d_acheminement": "CHAMP LAURENT", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73072"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94dcb9c07240dfe81fd62563800da072cef32383", "fields": {"nom_de_la_commune": "CHANAZ", "libell_d_acheminement": "CHANAZ", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73073"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a01fc0a38ba55e0d508d190627612476ec188a", "fields": {"nom_de_la_commune": "LA CHAVANNE", "libell_d_acheminement": "LA CHAVANNE", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73082"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139ba9f65b34ba26ddff142bacb1cd1e6d6b8295", "fields": {"nom_de_la_commune": "CORBEL", "libell_d_acheminement": "CORBEL", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73092"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5fdf7cfb7977fff1b5c56801c316fa2e9d22d8", "fields": {"nom_de_la_commune": "DRUMETTAZ CLARAFOND", "libell_d_acheminement": "DRUMETTAZ CLARAFOND", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73103"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88d8b4736385b265512b4053f264b62bc60b382", "fields": {"nom_de_la_commune": "DULLIN", "libell_d_acheminement": "DULLIN", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73104"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e317d90c1d3b3759689d1c38bc030e535b5fcfe9", "fields": {"nom_de_la_commune": "ESSERTS BLAY", "libell_d_acheminement": "ESSERTS BLAY", "code_postal": "73540", "coordonnees_gps": [45.6337991816, 6.45138868013], "code_commune_insee": "73110"}, "geometry": {"type": "Point", "coordinates": [6.45138868013, 45.6337991816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1552b73e33ddab6901189ff19393bbd2d9ae631d", "fields": {"nom_de_la_commune": "ETABLE", "libell_d_acheminement": "ETABLE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73111"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73db4d5fd051f6105827c98263bce71e70194e0e", "fields": {"nom_de_la_commune": "FEISSONS SUR ISERE", "libell_d_acheminement": "FEISSONS SUR ISERE", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73112"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3a2d6f513c9e7ee4e5fa6c86f458a2f1b4d320", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73133"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0855ae7318f99c643cea16414b2f04f9fb06ea7e", "fields": {"nom_de_la_commune": "JACOB BELLECOMBETTE", "libell_d_acheminement": "JACOB BELLECOMBETTE", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73137"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee7a6fc7703df068d3c50ef18c23254e21d3d48d", "fields": {"nom_de_la_commune": "JONGIEUX", "libell_d_acheminement": "JONGIEUX", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73140"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aee9b9fc746eb98c443a4c42a8b647e6f37e4f2", "fields": {"nom_de_la_commune": "LOISIEUX", "libell_d_acheminement": "LOISIEUX", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73147"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3a1a0b24c492d7d0e02bc20270ca59e3d27d2b", "fields": {"nom_de_la_commune": "LUCEY", "libell_d_acheminement": "LUCEY", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73149"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b75266c657bc139a42cac7579fb7e2e45b9a86", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "MACOT LA PLAGNE", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4a152ded9eee79089f1e076457ca3df5ff3281", "fields": {"nom_de_la_commune": "MERY", "libell_d_acheminement": "MERY", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73155"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9254e70991d68b9350c769c086dc4a1ac4a3a64", "fields": {"nom_de_la_commune": "MONTGILBERT", "libell_d_acheminement": "MONTGILBERT", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73168"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34c403878078fae1079a2e65d21ee0c4ac91749", "fields": {"nom_de_la_commune": "MONTMELIAN", "libell_d_acheminement": "MONTMELIAN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73171"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ae52309cb096c31c9929838124cc9584ac6087", "fields": {"nom_de_la_commune": "MONTVERNIER", "libell_d_acheminement": "MONTVERNIER", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73177"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51de30b57c248c7660bfe16aa75425e0b8758fcf", "fields": {"nom_de_la_commune": "LA MOTTE SERVOLEX", "libell_d_acheminement": "LA MOTTE SERVOLEX", "code_postal": "73290", "coordonnees_gps": [45.6012692668, 5.85460489762], "code_commune_insee": "73179"}, "geometry": {"type": "Point", "coordinates": [5.85460489762, 45.6012692668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984ba0e2442f8f554166f99ae412c888595e54ac", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "PUSSY", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6a71f716a5f38fb882d2099cc0c2754dd2aa35", "fields": {"nom_de_la_commune": "PLANAY", "libell_d_acheminement": "PLANAY", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73201"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa92b51a8272a6805601fcec6005b5659a9bf889", "fields": {"nom_de_la_commune": "LE PONT DE BEAUVOISIN", "libell_d_acheminement": "LE PONT DE BEAUVOISIN", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73204"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8fa081d84a7641a6471966082e2a097f592c0a", "fields": {"nom_de_la_commune": "PUGNY CHATENOD", "libell_d_acheminement": "PUGNY CHATENOD", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73208"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d9c650a2813242ccf6cfc463ffc3d9e9bd67c6", "fields": {"nom_de_la_commune": "ROGNAIX", "libell_d_acheminement": "ROGNAIX", "code_postal": "73730", "coordonnees_gps": [45.5966737513, 6.45704572923], "code_commune_insee": "73216"}, "geometry": {"type": "Point", "coordinates": [6.45704572923, 45.5966737513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d55325dd49cbcb8ab742325f8c4f02a76cc011", "fields": {"nom_de_la_commune": "ST ALBAN D HURTIERES", "libell_d_acheminement": "ST ALBAN D HURTIERES", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73220"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f56a0f71532e60d92c499a62d767391b267290", "fields": {"code_postal": "73120", "code_commune_insee": "73227", "libell_d_acheminement": "ST BON TARENTAISE", "ligne_5": "COURCHEVEL", "nom_de_la_commune": "ST BON TARENTAISE", "coordonnees_gps": [45.3952559904, 6.63957315218]}, "geometry": {"type": "Point", "coordinates": [6.63957315218, 45.3952559904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f460b98f80b6a641c4e1f344614e56ec2e5c5c", "fields": {"nom_de_la_commune": "ST COLOMBAN DES VILLARDS", "libell_d_acheminement": "ST COLOMBAN DES VILLARDS", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73230"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09728263f719b4bfeda695284cbbc58ce9b7aba", "fields": {"nom_de_la_commune": "ST FRANCOIS LONGCHAMP", "libell_d_acheminement": "ST FRANCOIS LONGCHAMP", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73235"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd7c4cd936f51ecfbecdf21a565bda9008c97386", "fields": {"nom_de_la_commune": "ST JEAN D ARVES", "libell_d_acheminement": "ST JEAN D ARVES", "code_postal": "73530", "coordonnees_gps": [45.179061484, 6.24624710738], "code_commune_insee": "73242"}, "geometry": {"type": "Point", "coordinates": [6.24624710738, 45.179061484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38016fd9e0d146c0a2cd82667eb259840399e7bc", "fields": {"nom_de_la_commune": "ST JEAN D ARVEY", "libell_d_acheminement": "ST JEAN D ARVEY", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73243"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57918e7c20491c73a55907877ba492d8a4cefd1d", "fields": {"nom_de_la_commune": "ST JEAN DE COUZ", "libell_d_acheminement": "ST JEAN DE COUZ", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73246"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9482a15441ffecef267998288c8a072251d965fa", "fields": {"nom_de_la_commune": "ST JEAN DE LA PORTE", "libell_d_acheminement": "ST JEAN DE LA PORTE", "code_postal": "73250", "coordonnees_gps": [45.5739753959, 6.15768953868], "code_commune_insee": "73247"}, "geometry": {"type": "Point", "coordinates": [6.15768953868, 45.5739753959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3104b6eeeda1bed61f14579d9057e1abf7933703", "fields": {"nom_de_la_commune": "ST JULIEN MONT DENIS", "libell_d_acheminement": "ST JULIEN MONT DENIS", "code_postal": "73870", "coordonnees_gps": [45.2502051457, 6.413281012], "code_commune_insee": "73250"}, "geometry": {"type": "Point", "coordinates": [6.413281012, 45.2502051457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ad8ce693bd8f0c7975ed9743d506c68dc03746", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73252"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0158b6362355186b0cfc0674dad7a404b95a720b", "fields": {"nom_de_la_commune": "ST OFFENGE", "libell_d_acheminement": "ST OFFENGE", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73263"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415111d1e1f02f06da7b87d43b7e812c210738bd", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73269"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67e21596d86904b6016dd1e2b83045a5ba4bfbaa", "fields": {"nom_de_la_commune": "ST PIERRE DE SOUCY", "libell_d_acheminement": "ST PIERRE DE SOUCY", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73276"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7f3bb0c7c1c91af12d0d4d5942ba347bd1ef64", "fields": {"code_postal": "73600", "code_commune_insee": "73284", "libell_d_acheminement": "SALINS FONTAINE", "ligne_5": "FONTAINE LE PUITS", "nom_de_la_commune": "SALINS FONTAINE", "coordonnees_gps": [45.3739609607, 6.53145730027]}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee29b6c012ccac8d4fa2bc071c17535647a394b", "fields": {"nom_de_la_commune": "VALLOIRE", "libell_d_acheminement": "VALLOIRE", "code_postal": "73450", "coordonnees_gps": [45.1313081398, 6.44772577617], "code_commune_insee": "73306"}, "geometry": {"type": "Point", "coordinates": [6.44772577617, 45.1313081398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef01f6dc29f65a032b11c9cac88135eb247cf627", "fields": {"nom_de_la_commune": "VILLARD SALLET", "libell_d_acheminement": "VILLARD SALLET", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73316"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22a455d5280be0ae4e9ce987958c42a455a6e98", "fields": {"nom_de_la_commune": "VILLARD SUR DORON", "libell_d_acheminement": "VILLARD SUR DORON", "code_postal": "73270", "coordonnees_gps": [45.6914287305, 6.59333922308], "code_commune_insee": "73317"}, "geometry": {"type": "Point", "coordinates": [6.59333922308, 45.6914287305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20bc9f4c479215033f7273020e289dab97c8063", "fields": {"nom_de_la_commune": "VILLAROUX", "libell_d_acheminement": "VILLAROUX", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73324"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889cdff66d48a36a729a9a3179af0abfe590feed", "fields": {"nom_de_la_commune": "VOGLANS", "libell_d_acheminement": "VOGLANS", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73329"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac3ca2ac6ddd4ae7e2cce7ee62173b7aa1f5668", "fields": {"nom_de_la_commune": "ALLINGES", "libell_d_acheminement": "ALLINGES", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74005"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d896e82a3e2c4b7a37bc3bebabb58ba1c523266b", "fields": {"nom_de_la_commune": "ARENTHON", "libell_d_acheminement": "ARENTHON", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74018"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41fa28bc096d5fcf53efa58d3f62115ed5ec3e6c", "fields": {"nom_de_la_commune": "BASSY", "libell_d_acheminement": "BASSY", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74029"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c57613ff8e3631534f05a5daac1fe6ee536d490", "fields": {"nom_de_la_commune": "BELLEVAUX", "libell_d_acheminement": "BELLEVAUX", "code_postal": "74470", "coordonnees_gps": [46.2514067393, 6.54608924177], "code_commune_insee": "74032"}, "geometry": {"type": "Point", "coordinates": [6.54608924177, 46.2514067393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92701f7a55c79ea132421154c831e92223db4d0b", "fields": {"code_postal": "74380", "code_commune_insee": "74040", "libell_d_acheminement": "BONNE", "ligne_5": "LOEX", "nom_de_la_commune": "BONNE", "coordonnees_gps": [46.1808749905, 6.30733667317]}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1795a782efda5935a145cb39472b4129b12e92", "fields": {"nom_de_la_commune": "BOSSEY", "libell_d_acheminement": "BOSSEY", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74044"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a5d12cb2390706f2d4615dba4d6fb570756fd2", "fields": {"nom_de_la_commune": "BRIZON", "libell_d_acheminement": "BRIZON", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74049"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5885b536bb755c9e3afb871deb09000a147e33", "fields": {"nom_de_la_commune": "CERCIER", "libell_d_acheminement": "CERCIER", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74051"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab9b6552964899969be2c68f66f7324b3d2e5c1", "fields": {"nom_de_la_commune": "CERVENS", "libell_d_acheminement": "CERVENS", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74053"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f8021a1e7fcb3a5d497a5d97b9c4cc33d5c6a9", "fields": {"nom_de_la_commune": "CHATEL", "libell_d_acheminement": "CHATEL", "code_postal": "74390", "coordonnees_gps": [46.2487475128, 6.81692690811], "code_commune_insee": "74063"}, "geometry": {"type": "Point", "coordinates": [6.81692690811, 46.2487475128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fbab4bc1e6c3033c9286ba5a10cc4ad04ffbb8a", "fields": {"nom_de_la_commune": "CHENS SUR LEMAN", "libell_d_acheminement": "CHENS SUR LEMAN", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74070"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513beabca6461659c3a654d0e94878e105e1b10c", "fields": {"nom_de_la_commune": "CHOISY", "libell_d_acheminement": "CHOISY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74076"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751c76ce3993f66710e76937298ef0962213cac0", "fields": {"nom_de_la_commune": "CLARAFOND ARCINE", "libell_d_acheminement": "CLARAFOND ARCINE", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74077"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5e0ed0c932cae3f92cc7bac503cf549432fe88", "fields": {"nom_de_la_commune": "COPPONEX", "libell_d_acheminement": "COPPONEX", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74088"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a3c068198cba0d3883dbb8e6abaaf9cb1c4e20", "fields": {"nom_de_la_commune": "CORNIER", "libell_d_acheminement": "CORNIER", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74090"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca9f5a352143cf1521ff163babb5b12e811bcf2", "fields": {"nom_de_la_commune": "CRANVES SALES", "libell_d_acheminement": "CRANVES SALES", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74094"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962e950d2894063c320e76e71138a7e0f43bd3ed", "fields": {"nom_de_la_commune": "DOUVAINE", "libell_d_acheminement": "DOUVAINE", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74105"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c37a50313201ca5c0a5a01d9443889ae2a5b8b72", "fields": {"nom_de_la_commune": "DUINGT", "libell_d_acheminement": "DUINGT", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74108"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30a452fe580684507a49689cf8013f4575a90971", "fields": {"nom_de_la_commune": "ENTREVERNES", "libell_d_acheminement": "ENTREVERNES", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74111"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3777e604d5264d825760b33ed08f83656ea9adb6", "fields": {"nom_de_la_commune": "ETAUX", "libell_d_acheminement": "ETAUX", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74116"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f07134137b1dc915962e70ad04e0185c1163f192", "fields": {"nom_de_la_commune": "EXCENEVEX", "libell_d_acheminement": "EXCENEVEX", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74121"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3399a7b5034c040c1d15b853dfa6110a1a1b6df8", "fields": {"nom_de_la_commune": "LA FORCLAZ", "libell_d_acheminement": "LA FORCLAZ", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74129"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7300190c11fd2ca4758167be13999f06214f57", "fields": {"nom_de_la_commune": "FRANCLENS", "libell_d_acheminement": "FRANCLENS", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74130"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9747b123e0ff29c27a98c4fa1e8690482463e9aa", "fields": {"nom_de_la_commune": "GIEZ", "libell_d_acheminement": "GIEZ", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74135"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "215a097bafadebdfed561237bb8c2c7c32ce350b", "fields": {"nom_de_la_commune": "LES HOUCHES", "libell_d_acheminement": "LES HOUCHES", "code_postal": "74310", "coordonnees_gps": [45.9075030886, 6.79745986726], "code_commune_insee": "74143"}, "geometry": {"type": "Point", "coordinates": [6.79745986726, 45.9075030886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf8870e022350abaf5dcd122d370425bdeec086", "fields": {"nom_de_la_commune": "LOISIN", "libell_d_acheminement": "LOISIN", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74150"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6048c280e3add20a65d30bd6362227c6d6172bb7", "fields": {"nom_de_la_commune": "LORNAY", "libell_d_acheminement": "LORNAY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74151"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f171a209e314b5274a01483ef009ebe8a92ab20", "fields": {"nom_de_la_commune": "LULLIN", "libell_d_acheminement": "LULLIN", "code_postal": "74470", "coordonnees_gps": [46.2514067393, 6.54608924177], "code_commune_insee": "74155"}, "geometry": {"type": "Point", "coordinates": [6.54608924177, 46.2514067393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd2e383d84648b835ffd89c1607f66a75a63aed", "fields": {"nom_de_la_commune": "LULLY", "libell_d_acheminement": "LULLY", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74156"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b282bce2cc5f2dc4bb80d092a95ecb763fa498c", "fields": {"nom_de_la_commune": "MARCELLAZ", "libell_d_acheminement": "MARCELLAZ", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74162"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07f5df458be389e1c8181ad94d60623ca059938", "fields": {"nom_de_la_commune": "MARIGNIER", "libell_d_acheminement": "MARIGNIER", "code_postal": "74970", "coordonnees_gps": [46.0951489786, 6.49422859297], "code_commune_insee": "74164"}, "geometry": {"type": "Point", "coordinates": [6.49422859297, 46.0951489786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d594935f0012e86c3336db30146808fc290cedd", "fields": {"nom_de_la_commune": "VILLE SUR YRON", "libell_d_acheminement": "VILLE SUR YRON", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54581"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf61c45759fb1956ac262cbca5cee62ab0edea9", "fields": {"nom_de_la_commune": "VITTONVILLE", "libell_d_acheminement": "VITTONVILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54589"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29f0e17adec74844b2a2fbc37d2366691aef285", "fields": {"nom_de_la_commune": "XURES", "libell_d_acheminement": "XURES", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54601"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8fe84eb167953ace73b7264d386c4cf9f153b2", "fields": {"nom_de_la_commune": "ABAUCOURT HAUTECOURT", "libell_d_acheminement": "ABAUCOURT HAUTECOURT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55002"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25826ee3a91fce470b0950ee5345ce9d7c40f953", "fields": {"nom_de_la_commune": "APREMONT LA FORET", "libell_d_acheminement": "APREMONT LA FORET", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55012"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e330b90ef4585ec887903b7e56af229c0fb6ae3", "fields": {"code_postal": "55300", "code_commune_insee": "55012", "libell_d_acheminement": "APREMONT LA FORET", "ligne_5": "ST AGNANT SOUS LES COTES", "nom_de_la_commune": "APREMONT LA FORET", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d4958c6d9c7c23e6806332ead6da6b4200b647", "fields": {"nom_de_la_commune": "ARRANCY SUR CRUSNE", "libell_d_acheminement": "ARRANCY SUR CRUSNE", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55013"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c52e3ebde090465e9dfc312d75f0a65b5d7f0f3", "fields": {"nom_de_la_commune": "AVIOTH", "libell_d_acheminement": "AVIOTH", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55022"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292ba4b6a56659120a241eaf09ad7a605bfbfb40", "fields": {"nom_de_la_commune": "AVOCOURT", "libell_d_acheminement": "AVOCOURT", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55023"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7c526f0cb88c8fc8f505e1f7889d2885ff81d8", "fields": {"nom_de_la_commune": "AZANNES ET SOUMAZANNES", "libell_d_acheminement": "AZANNES ET SOUMAZANNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55024"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4438f56e65ae783433e1910ff5a5d34b405e96ec", "fields": {"nom_de_la_commune": "BANTHEVILLE", "libell_d_acheminement": "BANTHEVILLE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55028"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85630ced28f1ca6676c8b06d06caf3cfe7edbd5", "fields": {"nom_de_la_commune": "BAUDREMONT", "libell_d_acheminement": "BAUDREMONT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55032"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84865baca2883242eb3204b28699f8a3e72ac5f3", "fields": {"nom_de_la_commune": "BAULNY", "libell_d_acheminement": "BAULNY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55033"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df3bdb749fc2bb98a68577ee27ecea3697fb98f", "fields": {"nom_de_la_commune": "BAZINCOURT SUR SAULX", "libell_d_acheminement": "BAZINCOURT SUR SAULX", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55035"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad75ecd7bca7ba2d0c8416ca4bd66765a25061cc", "fields": {"nom_de_la_commune": "BEHONNE", "libell_d_acheminement": "BEHONNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55041"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6b70a18d0f4663c8d163fd32b6473bd54f4800d", "fields": {"nom_de_la_commune": "BENEY EN WOEVRE", "libell_d_acheminement": "BENEY EN WOEVRE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55046"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d377fbc336a47f982d2fd2dd59fffdd4a712276", "fields": {"nom_de_la_commune": "BEZONVAUX", "libell_d_acheminement": "BEZONVAUX", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55050"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d5fd2e5eb98b425e3fef1478699d5c1fa8904dc", "fields": {"code_postal": "55160", "code_commune_insee": "55060", "libell_d_acheminement": "BONZEE", "ligne_5": "MESNIL SOUS LES COTES", "nom_de_la_commune": "BONZEE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3e811638b99e5fb8c3af7ee202628dd4da7652", "fields": {"nom_de_la_commune": "BOULIGNY", "libell_d_acheminement": "BOULIGNY", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55063"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ec233dfec440947b0018e1526c9f1126f99d07", "fields": {"nom_de_la_commune": "BRILLON EN BARROIS", "libell_d_acheminement": "BRILLON EN BARROIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55079"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c811904df925fdc16c6bacb234333afd26cc69", "fields": {"nom_de_la_commune": "BROCOURT EN ARGONNE", "libell_d_acheminement": "BROCOURT EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55082"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c215a959b2565770c0e669949c78ce38f79cf54", "fields": {"nom_de_la_commune": "BROUSSEY EN BLOIS", "libell_d_acheminement": "BROUSSEY EN BLOIS", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55084"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3bcad35da58f6d7587fbcd55ebc299deaf1147", "fields": {"nom_de_la_commune": "BUXIERES SOUS LES COTES", "libell_d_acheminement": "BUXIERES SOUS LES COTES", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55093"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb3b5b6c208e1e012aa49d29780c3e406efb2ee", "fields": {"nom_de_la_commune": "CHAILLON", "libell_d_acheminement": "CHAILLON", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55096"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599fa0cafbe59a03ea4c476a9a82762716304cb7", "fields": {"nom_de_la_commune": "CHASSEY BEAUPRE", "libell_d_acheminement": "CHASSEY BEAUPRE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55104"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97e4db3a653077e976f49a585e7ad624ec0cbb3", "fields": {"nom_de_la_commune": "CHONVILLE MALAUMONT", "libell_d_acheminement": "CHONVILLE MALAUMONT", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55114"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3b10dcb0eda5d3b53eb795cfadc07d9d7801ce", "fields": {"code_postal": "55200", "code_commune_insee": "55114", "libell_d_acheminement": "CHONVILLE MALAUMONT", "ligne_5": "MALAUMONT", "nom_de_la_commune": "CHONVILLE MALAUMONT", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa6447a3c563c6f8d4dcd12ff7e7db6443ef43f0", "fields": {"nom_de_la_commune": "CIERGES SOUS MONTFAUCON", "libell_d_acheminement": "CIERGES SOUS MONTFAUCON", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55115"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4c0d4bc61f55c0c177d96f0d9694c3c77d6ec1d", "fields": {"nom_de_la_commune": "CLERMONT EN ARGONNE", "libell_d_acheminement": "CLERMONT EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55117"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab01e9a2adc97b726886dbb56bc4d4cbe92ee106", "fields": {"code_postal": "55120", "code_commune_insee": "55117", "libell_d_acheminement": "CLERMONT EN ARGONNE", "ligne_5": "JUBECOURT", "nom_de_la_commune": "CLERMONT EN ARGONNE", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ad08ab0ea33cbe09189b2efebf45bfaa0c01de", "fields": {"nom_de_la_commune": "CLERY LE GRAND", "libell_d_acheminement": "CLERY LE GRAND", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55118"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b45fddcfdd6765002df50582ca9d2d02a319e54", "fields": {"nom_de_la_commune": "COUROUVRE", "libell_d_acheminement": "COUROUVRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55129"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0414f228b43b87b4bae1a646eddd5d7d40a35d8", "fields": {"nom_de_la_commune": "COUSANCES LES FORGES", "libell_d_acheminement": "COUSANCES LES FORGES", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55132"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b13e2141a099e2dce5c7d67279e35207fe2d5e", "fields": {"nom_de_la_commune": "DAINVILLE BERTHELEVILLE", "libell_d_acheminement": "DAINVILLE BERTHELEVILLE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55142"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ca9cc0e34bd088719307563cd0088df97d62d0", "fields": {"nom_de_la_commune": "DAMVILLERS", "libell_d_acheminement": "DAMVILLERS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55145"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6355704490a3e07fc325d86c513ff36717b43ed", "fields": {"code_postal": "55130", "code_commune_insee": "55148", "libell_d_acheminement": "DELOUZE ROSIERES", "ligne_5": "ROSIERES EN BLOIS", "nom_de_la_commune": "DELOUZE ROSIERES", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca22e093afc424a0c0ce296dfb04f653edb8a0a", "fields": {"nom_de_la_commune": "DIEPPE SOUS DOUAUMONT", "libell_d_acheminement": "DIEPPE SOUS DOUAUMONT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55153"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18234838e531fc6d905fa9b2a96446b558827eda", "fields": {"nom_de_la_commune": "DOMBRAS", "libell_d_acheminement": "DOMBRAS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55156"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b27fc95d28d3f3ea83d227bb66960033f4783bc", "fields": {"nom_de_la_commune": "DOMMARTIN LA MONTAGNE", "libell_d_acheminement": "DOMMARTIN LA MONTAGNE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55157"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd36583bc791c268285295e91b35be4ded77310e", "fields": {"nom_de_la_commune": "EIX", "libell_d_acheminement": "EIX", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55171"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a8f4c9048ccf9375d5d2405488cd424786e08a", "fields": {"nom_de_la_commune": "ERIZE LA PETITE", "libell_d_acheminement": "ERIZE LA PETITE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55177"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4b1d371aa88356b7723db873f58154fd5e5bf5", "fields": {"code_postal": "55500", "code_commune_insee": "55179", "libell_d_acheminement": "ERNEVILLE AUX BOIS", "ligne_5": "LOXEVILLE", "nom_de_la_commune": "ERNEVILLE AUX BOIS", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802acca4ef5eb94053f71dd9f615bcd1b3adca0f", "fields": {"nom_de_la_commune": "ETAIN", "libell_d_acheminement": "ETAIN", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55181"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48d3152c26a95e4e7a766ceedf87682d0e0affd", "fields": {"nom_de_la_commune": "ETRAYE", "libell_d_acheminement": "ETRAYE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55183"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d6346049e4648d01736312e2a09226abed8a2d", "fields": {"code_postal": "55200", "code_commune_insee": "55184", "libell_d_acheminement": "EUVILLE", "ligne_5": "VERTUZEY", "nom_de_la_commune": "EUVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b33d8552ba876eea2d7796e63835b9cae9342e", "fields": {"code_postal": "55000", "code_commune_insee": "55186", "libell_d_acheminement": "FAINS VEEL", "ligne_5": "VEEL", "nom_de_la_commune": "FAINS VEEL", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8534cb0cc789b5eca80a818a7a736d1ec8733ad7", "fields": {"nom_de_la_commune": "FLASSIGNY", "libell_d_acheminement": "FLASSIGNY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55188"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b303662e924c2965a3459b5d874129dd8e4bc2b", "fields": {"nom_de_la_commune": "FOUCAUCOURT SUR THABAS", "libell_d_acheminement": "FOUCAUCOURT SUR THABAS", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55194"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c5faa8841c8c45aaed31a9a51d174004812738f", "fields": {"nom_de_la_commune": "FOUCHERES AUX BOIS", "libell_d_acheminement": "FOUCHERES AUX BOIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55195"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da5e5422c7a3265e6adcace0e4a8b5e9e88be9cc", "fields": {"nom_de_la_commune": "FUTEAU", "libell_d_acheminement": "FUTEAU", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55202"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76babee9ec29578878d83bc460bcc028847db67", "fields": {"nom_de_la_commune": "GIMECOURT", "libell_d_acheminement": "GIMECOURT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55210"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a95ab0fad0439e2753cdb82e0bc79ec973b09d20", "fields": {"nom_de_la_commune": "GOUSSAINCOURT", "libell_d_acheminement": "GOUSSAINCOURT", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55217"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525979ccfc00f20549cedd8d80ec47b54cb1b36b", "fields": {"nom_de_la_commune": "HALLES SOUS LES COTES", "libell_d_acheminement": "HALLES SOUS LES COTES", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55225"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e73cf3cd1e6f8e39743a9e1c27cfdd001cbfb7", "fields": {"nom_de_la_commune": "HAUMONT PRES SAMOGNEUX", "libell_d_acheminement": "HAUMONT PRES SAMOGNEUX", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55239"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48dc51d9b9f1a478f271536c89160d777a25d5df", "fields": {"nom_de_la_commune": "HORVILLE EN ORNOIS", "libell_d_acheminement": "HORVILLE EN ORNOIS", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55247"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2c0112a2efbac918c40a259811c91d4b93a2ea", "fields": {"nom_de_la_commune": "IRE LE SEC", "libell_d_acheminement": "IRE LE SEC", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55252"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2618b07d00591a6685f5763aae3e178473759d", "fields": {"code_postal": "55220", "code_commune_insee": "55254", "libell_d_acheminement": "LES TROIS DOMAINES", "ligne_5": "MONDRECOURT", "nom_de_la_commune": "LES TROIS DOMAINES", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823fed8df48af4defa847d34de71b3690e715fdc", "fields": {"nom_de_la_commune": "JUVIGNY EN PERTHOIS", "libell_d_acheminement": "JUVIGNY EN PERTHOIS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55261"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea758858d3072babc8f70c9fbddc07d9bdc020b", "fields": {"nom_de_la_commune": "LACHALADE", "libell_d_acheminement": "LACHALADE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55266"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "052ff77f3cabad555225cc2a26c5c2900f885d02", "fields": {"nom_de_la_commune": "LAHEYCOURT", "libell_d_acheminement": "LAHEYCOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55271"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ebdac1fb87d45abc470c696929c96764108186", "fields": {"code_postal": "55300", "code_commune_insee": "55274", "libell_d_acheminement": "LAMORVILLE", "ligne_5": "SPADA", "nom_de_la_commune": "LAMORVILLE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ee4ae62544cd2c1abba99009f2944c470f3b3b", "fields": {"nom_de_la_commune": "LAMOUILLY", "libell_d_acheminement": "LAMOUILLY", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55275"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13c75c5596fd6703b5fafcc346ae2fbe69ea8f9", "fields": {"nom_de_la_commune": "LANDRECOURT LEMPIRE", "libell_d_acheminement": "LANDRECOURT LEMPIRE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55276"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5cf165f42297900da504e43295afe136478970d", "fields": {"nom_de_la_commune": "LANHERES", "libell_d_acheminement": "LANHERES", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55280"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41fda8adc6f8feed4ea8bed5be75546260c7c617", "fields": {"nom_de_la_commune": "LISSEY", "libell_d_acheminement": "LISSEY", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55297"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58b77a085db176b232227bc44e07d45971ab78f", "fields": {"nom_de_la_commune": "LONGCHAMPS SUR AIRE", "libell_d_acheminement": "LONGCHAMPS SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55301"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d8a968e178321fff949590f9389c4f66614a52", "fields": {"nom_de_la_commune": "MARRE", "libell_d_acheminement": "MARRE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55321"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88fe02e25f37aafb50603cc4575d14e5d1888a90", "fields": {"nom_de_la_commune": "MAUVAGES", "libell_d_acheminement": "MAUVAGES", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55327"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4c5f2e9f4235f64ba079c70b93fee5af11a21f", "fields": {"nom_de_la_commune": "MELIGNY LE PETIT", "libell_d_acheminement": "MELIGNY LE PETIT", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55331"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ebb340c1d20743ea19bc94cadb4a080ce9ee0a", "fields": {"nom_de_la_commune": "MERLES SUR LOISON", "libell_d_acheminement": "MERLES SUR LOISON", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55336"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b925f4c42bec773c568a4d98a810104ab60512", "fields": {"code_postal": "55150", "code_commune_insee": "55341", "libell_d_acheminement": "MOIREY FLABAS CREPION", "ligne_5": "FLABAS", "nom_de_la_commune": "MOIREY FLABAS CREPION", "coordonnees_gps": [49.3426883563, 5.43366095865]}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9f750f8508d77ee1377a4d9c5876653ee9891f", "fields": {"nom_de_la_commune": "LES MONTHAIRONS", "libell_d_acheminement": "LES MONTHAIRONS", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55347"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecb599f74cce28e28446fedf3f4f71d44244ab73", "fields": {"nom_de_la_commune": "CHANTERAINE", "libell_d_acheminement": "CHANTERAINE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55358"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452e9b4f4b3fe388e36d58694c2fa8e5df4825f5", "fields": {"code_postal": "55500", "code_commune_insee": "55358", "libell_d_acheminement": "CHANTERAINE", "ligne_5": "CHENNEVIERES", "nom_de_la_commune": "CHANTERAINE", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28369f649e8daedc1976961ffa3663ece9b30b24", "fields": {"nom_de_la_commune": "MOUZAY", "libell_d_acheminement": "MOUZAY", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55364"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708fe299e7a831ea6d3c18a73fed285d3af8fe66", "fields": {"nom_de_la_commune": "NANT LE GRAND", "libell_d_acheminement": "NANT LE GRAND", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55373"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6891d55a24b9ec20fab9086eef88f801a243b4", "fields": {"nom_de_la_commune": "NETTANCOURT", "libell_d_acheminement": "NETTANCOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55378"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbd78879c8e5f71458fffb9f995465d04db75ab", "fields": {"nom_de_la_commune": "LE NEUFOUR", "libell_d_acheminement": "LE NEUFOUR", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55379"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f34e149f7fe8bc646ddefb3f119b1b55cded4fd", "fields": {"nom_de_la_commune": "NEUVILLE EN VERDUNOIS", "libell_d_acheminement": "NEUVILLE EN VERDUNOIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55380"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d0b4b77f7ab693e45c3381cd675a14782670bb7", "fields": {"nom_de_la_commune": "NEUVILLE SUR ORNAIN", "libell_d_acheminement": "NEUVILLE SUR ORNAIN", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55382"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78a796cf84009ae0e5f62e49be64f6fa3f6eb86", "fields": {"nom_de_la_commune": "NICEY SUR AIRE", "libell_d_acheminement": "NICEY SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55384"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4423f8436473a120382d313ead134d24279d520e", "fields": {"nom_de_la_commune": "NOYERS AUZECOURT", "libell_d_acheminement": "NOYERS AUZECOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55388"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a72f28d282f7373ded3bb811eeb5f0a6583ee22", "fields": {"nom_de_la_commune": "ORNES", "libell_d_acheminement": "ORNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55394"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44827eddecc9f35bd88b4924424e7337a7289d55", "fields": {"nom_de_la_commune": "PILLON", "libell_d_acheminement": "PILLON", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55405"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b9c1547be2ae5c84c27631d34cf953220586e9e", "fields": {"nom_de_la_commune": "PINTHEVILLE", "libell_d_acheminement": "PINTHEVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55406"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba08474d1526abb8ddd5a839ccbf9fdd19d4e67", "fields": {"nom_de_la_commune": "QUINCY LANDZECOURT", "libell_d_acheminement": "QUINCY LANDZECOURT", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55410"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a69cc8d31a2ba8595851b4e0e7cb01671d0641", "fields": {"nom_de_la_commune": "RAMBUCOURT", "libell_d_acheminement": "RAMBUCOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55412"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8339ce70e23afeefbfe68de72f4f6122cfb71a9e", "fields": {"nom_de_la_commune": "RANCOURT SUR ORNAIN", "libell_d_acheminement": "RANCOURT SUR ORNAIN", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55414"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67482d795b4db773badec1f4cd357642b6f3213", "fields": {"nom_de_la_commune": "RECICOURT", "libell_d_acheminement": "RECICOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55419"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abba0574da82309bceb205cf07700c4382d0c9c6", "fields": {"nom_de_la_commune": "RECOURT LE CREUX", "libell_d_acheminement": "RECOURT LE CREUX", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55420"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e359d8a4d2c6aa598c86830eefdd1a58534f829", "fields": {"nom_de_la_commune": "REFFROY", "libell_d_acheminement": "REFFROY", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55421"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1c865e93a6db3bcfbb454887eae498e71d6702", "fields": {"nom_de_la_commune": "RIGNY ST MARTIN", "libell_d_acheminement": "RIGNY ST MARTIN", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55434"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ac4452196836e69b778093d54840cf4af42416", "fields": {"nom_de_la_commune": "ROMAGNE SOUS MONTFAUCON", "libell_d_acheminement": "ROMAGNE SOUS MONTFAUCON", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55438"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1a0533bbb66583d8a43dc4508acb2f42f6064c", "fields": {"nom_de_la_commune": "RONVAUX", "libell_d_acheminement": "RONVAUX", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55439"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659db186ddf430a5808d281cefef07b21898832e", "fields": {"nom_de_la_commune": "ROUVRES EN WOEVRE", "libell_d_acheminement": "ROUVRES EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55443"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa3c9b9670281f0f977f550ea4a194453d85bf8", "fields": {"nom_de_la_commune": "ROUVROIS SUR MEUSE", "libell_d_acheminement": "ROUVROIS SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55444"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8175ced355eb45d4200c47dd014e9e75ced1856", "fields": {"nom_de_la_commune": "ROUVROIS SUR OTHAIN", "libell_d_acheminement": "ROUVROIS SUR OTHAIN", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55445"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15022376804c217103d4c7f5737609382f9d1dae", "fields": {"code_postal": "55160", "code_commune_insee": "55457", "libell_d_acheminement": "ST HILAIRE EN WOEVRE", "ligne_5": "WADONVILLE EN WOEVRE", "nom_de_la_commune": "ST HILAIRE EN WOEVRE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1005c2dd57f33353fc281e9189d08b6aa170952f", "fields": {"nom_de_la_commune": "ST JEAN LES BUZY", "libell_d_acheminement": "ST JEAN LES BUZY", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55458"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5b56f546e8551119050c9fd87bc3fe227e37bc", "fields": {"nom_de_la_commune": "SAMOGNEUX", "libell_d_acheminement": "SAMOGNEUX", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55468"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5bc684ec0bbc2b80fb9ef37ddd7107b909bf62b", "fields": {"nom_de_la_commune": "ST BRICE COURCELLES", "libell_d_acheminement": "ST BRICE COURCELLES", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51474"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e44485ba10b2b5567c5f3fa4ebfc9f4a8e492d0", "fields": {"nom_de_la_commune": "ST CHERON", "libell_d_acheminement": "ST CHERON", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51475"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d54dddd4c85a5d9f36ca767bb595e846e5fce2", "fields": {"nom_de_la_commune": "ST EULIEN", "libell_d_acheminement": "ST EULIEN", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "51478"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c849fee22abf6ea2a7b82d39d0a0081a19051c1", "fields": {"nom_de_la_commune": "ST EUPHRAISE ET CLAIRIZET", "libell_d_acheminement": "ST EUPHRAISE ET CLAIRIZET", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51479"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d27980f287913a21ec1aa8951a933ab439fa22a", "fields": {"nom_de_la_commune": "ST JEAN SUR TOURBE", "libell_d_acheminement": "ST JEAN SUR TOURBE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51491"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3eb7eefffc59911ec0c07430965b105e5a5e672", "fields": {"nom_de_la_commune": "ST MARD SUR AUVE", "libell_d_acheminement": "ST MARD SUR AUVE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51498"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65af837e7df90bef0ec2f08d249684d60d61efe", "fields": {"nom_de_la_commune": "ST MASMES", "libell_d_acheminement": "ST MASMES", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51505"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f8191c2239e02e6d605bac733af307ed201c52", "fields": {"nom_de_la_commune": "ST REMY SUR BUSSY", "libell_d_acheminement": "ST REMY SUR BUSSY", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51515"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e2cb026e53d0fa963135a94269cb04e19017cb", "fields": {"nom_de_la_commune": "SEPT SAULX", "libell_d_acheminement": "SEPT SAULX", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51530"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea219c0221ceddc145587f3640b096a674290f0a", "fields": {"nom_de_la_commune": "SERMAIZE LES BAINS", "libell_d_acheminement": "SERMAIZE LES BAINS", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51531"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a67846b915d79797dff0adf38b8aa391bea0b94", "fields": {"nom_de_la_commune": "SERVON MELZICOURT", "libell_d_acheminement": "SERVON MELZICOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51533"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcd70544c1e7004935acca303bc182f1eddd7ff", "fields": {"nom_de_la_commune": "SOGNY AUX MOULINS", "libell_d_acheminement": "SOGNY AUX MOULINS", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51538"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dce973b9477110e42743108633047cbfd41e1b9", "fields": {"nom_de_la_commune": "SOMMESOUS", "libell_d_acheminement": "SOMMESOUS", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51545"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ff52f092158aa08128c0a152f22307c5ddee00", "fields": {"nom_de_la_commune": "SOMSOIS", "libell_d_acheminement": "SOMSOIS", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51551"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f4ee95fb87f5fa8172c7dc71cb6bfad4391c5b", "fields": {"nom_de_la_commune": "SONGY", "libell_d_acheminement": "SONGY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51552"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c669367926b3b028fd780bc74b7f9fe3546fa8e8", "fields": {"nom_de_la_commune": "SOULANGES", "libell_d_acheminement": "SOULANGES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51557"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a430f08bc550322d94906ca15b36d388553eb938", "fields": {"nom_de_la_commune": "SOULIERES", "libell_d_acheminement": "SOULIERES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51558"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586f01bcf0ef5ef5534a2df20179943bdb7d7106", "fields": {"code_postal": "51150", "code_commune_insee": "51564", "libell_d_acheminement": "VAL DE LIVRE", "ligne_5": "TAUXIERES MUTRY", "nom_de_la_commune": "VAL DE LIVRE", "coordonnees_gps": [49.0294111773, 4.16667797153]}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f931b71b93804e3802c6d6bd4b701647d9888ab7", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51568"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6fb70a5afd4a5b32daad9be3755a2bb850e2de", "fields": {"nom_de_la_commune": "THILLOIS", "libell_d_acheminement": "THILLOIS", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51569"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a07610a86fff435dfe8b9524efc1594d0438f5e", "fields": {"nom_de_la_commune": "TOURS SUR MARNE", "libell_d_acheminement": "TOURS SUR MARNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51576"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260aa818e498ba8d436bcd88bbeb811d165d15f5", "fields": {"nom_de_la_commune": "TRECON", "libell_d_acheminement": "TRECON", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51578"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f4397b0c0f2b738d22c17a839d65dd12a56eb1", "fields": {"nom_de_la_commune": "VANAULT LES DAMES", "libell_d_acheminement": "VANAULT LES DAMES", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51590"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6476bba7a64e76130ca4d0000e4708bde800343d", "fields": {"nom_de_la_commune": "VAUCHAMPS", "libell_d_acheminement": "VAUCHAMPS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51596"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ead5d8d3c0fcc7174a31a701eb59091c1357be3", "fields": {"nom_de_la_commune": "VAUDESINCOURT", "libell_d_acheminement": "VAUDESINCOURT", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51600"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0130be80376993ca52cf8e62cd5da27df540f5f", "fields": {"nom_de_la_commune": "VAVRAY LE GRAND", "libell_d_acheminement": "VAVRAY LE GRAND", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51601"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896c79418f008f6caec64047d1f0a49c670de2cb", "fields": {"nom_de_la_commune": "VELYE", "libell_d_acheminement": "VELYE", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51603"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1669009610a2edb7c6518d7c3adb2f257497f2a", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51610"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357cf11a63eab33b6a7ba0241be3ec0c4241f4b8", "fields": {"nom_de_la_commune": "VERZY", "libell_d_acheminement": "VERZY", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51614"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e49cd60f8fc7e09b90eb9eab74baad6f0b63cc3", "fields": {"nom_de_la_commune": "VILLE EN SELVE", "libell_d_acheminement": "VILLE EN SELVE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51623"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4030b9682b9fa59357a4f4dd97556142227d4b5f", "fields": {"nom_de_la_commune": "VILLERS FRANQUEUX", "libell_d_acheminement": "VILLERS FRANQUEUX", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51633"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7be9dd372a460beb61c839a403d7d8eaa2bd886b", "fields": {"nom_de_la_commune": "VILLESENEUX", "libell_d_acheminement": "VILLESENEUX", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51638"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "746ce52bf7c51e924454269ffff3df844368e4f2", "fields": {"nom_de_la_commune": "VILLIERS AUX CORNEILLES", "libell_d_acheminement": "VILLIERS AUX CORNEILLES", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51642"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e755d627fe7cc95931d62d51a0901c717a76e1e5", "fields": {"nom_de_la_commune": "VIRGINY", "libell_d_acheminement": "VIRGINY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51646"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69df908c403e53dcd3402d9f8fd11d60d7b6bad", "fields": {"nom_de_la_commune": "VITRY EN PERTHOIS", "libell_d_acheminement": "VITRY EN PERTHOIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51647"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2166ad8701ffb26ce2b39a96b8ab8a4b5515b9", "fields": {"nom_de_la_commune": "VITRY LE FRANCOIS", "libell_d_acheminement": "VITRY LE FRANCOIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51649"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed364b16a0ced084689be845b508bbb835a62f28", "fields": {"nom_de_la_commune": "VOIPREUX", "libell_d_acheminement": "VOIPREUX", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51651"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb28124dc3b89655d4982e21f0b496891bb1a47", "fields": {"nom_de_la_commune": "WARGEMOULIN HURLUS", "libell_d_acheminement": "WARGEMOULIN HURLUS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51659"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d60b2507813a8a11bddec7ba0bbca8658b3499", "fields": {"nom_de_la_commune": "ANNONVILLE", "libell_d_acheminement": "ANNONVILLE", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52012"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da55d7be00a39eed0a92e4ac1094c4cd45a180cf", "fields": {"nom_de_la_commune": "ATTANCOURT", "libell_d_acheminement": "ATTANCOURT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52021"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce1b095cc2bbee9d69704c630ae024655213462", "fields": {"nom_de_la_commune": "AUDELONCOURT", "libell_d_acheminement": "AUDELONCOURT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52025"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6034527f10cf3822f06f07dd5f11d45e02f674c", "fields": {"nom_de_la_commune": "AUJEURRES", "libell_d_acheminement": "AUJEURRES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52027"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34b9f0010dc7f6da8a2c979e5f3070a12aa5769", "fields": {"nom_de_la_commune": "AULNOY SUR AUBE", "libell_d_acheminement": "AULNOY SUR AUBE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52028"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc56205ce9991776c066a942ef3add78b16b653", "fields": {"code_postal": "52270", "code_commune_insee": "52044", "libell_d_acheminement": "ROCHES BETTAINCOURT", "ligne_5": "BETTAINCOURT SUR ROGNON", "nom_de_la_commune": "ROCHES BETTAINCOURT", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a85dea13acf38673ffe08680fcf29c3072cbd3", "fields": {"nom_de_la_commune": "BLAISY", "libell_d_acheminement": "BLAISY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52053"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63acba0fac94b992bd6911eb8a4d6d306dfd5503", "fields": {"code_postal": "52310", "code_commune_insee": "52058", "libell_d_acheminement": "BOLOGNE", "ligne_5": "MARAULT", "nom_de_la_commune": "BOLOGNE", "coordonnees_gps": [48.2108562649, 5.11797313893]}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17b266c368c3b0b49a5e9bfcdb11f3c2b834cfe", "fields": {"nom_de_la_commune": "BONNECOURT", "libell_d_acheminement": "BONNECOURT", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52059"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6846f6c084c4c2af15956819b87daa37744de578", "fields": {"code_postal": "52400", "code_commune_insee": "52060", "libell_d_acheminement": "BOURBONNE LES BAINS", "ligne_5": "VILLARS ST MARCELLIN", "nom_de_la_commune": "BOURBONNE LES BAINS", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb3f9fec16e853541970c86d93dc42b2bae3598", "fields": {"nom_de_la_commune": "BOURG", "libell_d_acheminement": "BOURG", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52062"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e573ed66780b3e4dcac9602dcdd3ed1495186684", "fields": {"nom_de_la_commune": "BOURG STE MARIE", "libell_d_acheminement": "BOURG STE MARIE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52063"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6baf49b52940c3a64d6608aceedbf61f548332bd", "fields": {"nom_de_la_commune": "BRETHENAY", "libell_d_acheminement": "BRETHENAY", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52072"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a35e0a3cd97443416dee178321941d5ac2c71340", "fields": {"nom_de_la_commune": "BUXIERES LES CLEFMONT", "libell_d_acheminement": "BUXIERES LES CLEFMONT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52085"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5282037978bfcaaec18c2a79602aeb3de9d9b461", "fields": {"nom_de_la_commune": "CHAMBRONCOURT", "libell_d_acheminement": "CHAMBRONCOURT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52097"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f285ee28978f8286471db0f229f6ffd67050e0be", "fields": {"nom_de_la_commune": "CHAMOUILLEY", "libell_d_acheminement": "CHAMOUILLEY", "code_postal": "52410", "coordonnees_gps": [48.5892998637, 5.03091312346], "code_commune_insee": "52099"}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b97f3de6b4f25759c74713c4298fcbd7276def41", "fields": {"nom_de_la_commune": "CHANCENAY", "libell_d_acheminement": "CHANCENAY", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52104"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5134143b25bd7e3784049a86fb7eae420a799a7", "fields": {"nom_de_la_commune": "CHANTRAINES", "libell_d_acheminement": "CHANTRAINES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52107"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf01a49b25e8209d8e3dd3d60e80e69c0393698", "fields": {"nom_de_la_commune": "CHATENAY VAUDIN", "libell_d_acheminement": "CHATENAY VAUDIN", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52116"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807c56720e1b2815a050bf19aed0f94843881bee", "fields": {"nom_de_la_commune": "CHATONRUPT SOMMERMONT", "libell_d_acheminement": "CHATONRUPT SOMMERMONT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52118"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a58cf6e661917d59658a56c971577fcbb424686", "fields": {"nom_de_la_commune": "CHEVILLON", "libell_d_acheminement": "CHEVILLON", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52123"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "addfcfb14d1f225bc50ed0517f2a45f3918bfd77", "fields": {"code_postal": "52170", "code_commune_insee": "52123", "libell_d_acheminement": "CHEVILLON", "ligne_5": "SOMMEVILLE", "nom_de_la_commune": "CHEVILLON", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573849f92ed51a340e26a693f3d0a7dbf59d6a96", "fields": {"code_postal": "52000", "code_commune_insee": "52125", "libell_d_acheminement": "CHAMARANDES CHOIGNES", "ligne_5": "CHAMARANDES", "nom_de_la_commune": "CHAMARANDES CHOIGNES", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d54ff3b3c2c97cf90fea190aec0aa97dc28a9f", "fields": {"nom_de_la_commune": "CIREY LES MAREILLES", "libell_d_acheminement": "CIREY LES MAREILLES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52128"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdcfc1b13978fd569c852f088a392db05c573cd", "fields": {"nom_de_la_commune": "CIREY SUR BLAISE", "libell_d_acheminement": "CIREY SUR BLAISE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52129"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d7144483d1023af1867d9d82b7f747949f159a5", "fields": {"nom_de_la_commune": "COHONS", "libell_d_acheminement": "COHONS", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52134"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecbf7340ddbac71c506669e271f14818ff295f6", "fields": {"nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52140"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fcff41c49c2a8b158ad7dc4acaa4c278d2c861", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "BLAISE", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb882dc467398e4ec15671c4afe1d8a2e05b9cf", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "CHAMPCOURT", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4491c7e983c12d6a378e96a4c18e0a84ca4d0f69", "fields": {"nom_de_la_commune": "COUPRAY", "libell_d_acheminement": "COUPRAY", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52146"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b79d6186df13705627b1fe9d3d9f171399a9ec", "fields": {"nom_de_la_commune": "COURCELLES EN MONTAGNE", "libell_d_acheminement": "COURCELLES EN MONTAGNE", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52147"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc8f3950baac165dc3873e5fc7736e2ce3599ea", "fields": {"nom_de_la_commune": "CUSEY", "libell_d_acheminement": "CUSEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52158"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c9f421358df9f9c6b00a204152b35b3e8f36d8", "fields": {"nom_de_la_commune": "DAMREMONT", "libell_d_acheminement": "DAMREMONT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52164"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2063c7a2348ebf824a2babf35465edaf16c97ca5", "fields": {"nom_de_la_commune": "DOMREMY LANDEVILLE", "libell_d_acheminement": "DOMREMY LANDEVILLE", "code_postal": "52270", "coordonnees_gps": [48.329589946, 5.25765158251], "code_commune_insee": "52173"}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e362dc49c7c125fc884563b3061da4b5e02c96c2", "fields": {"code_postal": "52270", "code_commune_insee": "52173", "libell_d_acheminement": "DOMREMY LANDEVILLE", "ligne_5": "LANDEVILLE", "nom_de_la_commune": "DOMREMY LANDEVILLE", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc06995f85cee1c39715c93bc6073ee1ea51645c", "fields": {"nom_de_la_commune": "EFFINCOURT", "libell_d_acheminement": "EFFINCOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52184"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab652ec0148c3eeeb1ebd16a01909b67dc1d4258", "fields": {"code_postal": "52270", "code_commune_insee": "52187", "libell_d_acheminement": "EPIZON", "ligne_5": "AUGEVILLE", "nom_de_la_commune": "EPIZON", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2496dc41356b76c7ff1247d5bc66fba2846fda9d", "fields": {"nom_de_la_commune": "FAYL BILLOT", "libell_d_acheminement": "FAYL BILLOT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52197"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee55f6f48e0d773f8bc0768d26f4e9ac1c666d8", "fields": {"nom_de_la_commune": "FERRIERE ET LAFOLIE", "libell_d_acheminement": "FERRIERE ET LAFOLIE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52199"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45101aadcd77a8b8c447054db3b2b09e4a8105b5", "fields": {"nom_de_la_commune": "FONTAINES SUR MARNE", "libell_d_acheminement": "FONTAINES SUR MARNE", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52203"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f550f9f365b7e577d75cf6be114e2deb6893467c", "fields": {"nom_de_la_commune": "FORCEY", "libell_d_acheminement": "FORCEY", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52204"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fab94c59371d3407a46013c9972fa34e5eeb5f", "fields": {"code_postal": "52320", "code_commune_insee": "52211", "libell_d_acheminement": "FRONCLES", "ligne_5": "PROVENCHERES SUR MARNE", "nom_de_la_commune": "FRONCLES", "coordonnees_gps": [48.287832359, 5.09541662675]}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f6595780cf489f836fd3ca3292ba951f85ccc2", "fields": {"nom_de_la_commune": "GILLEY", "libell_d_acheminement": "GILLEY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52223"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afab10bda7c2a9fa1d60fb4c67eb39ecad7c9581", "fields": {"nom_de_la_commune": "GUDMONT VILLIERS", "libell_d_acheminement": "GUDMONT VILLIERS", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52230"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb91eb7f6165e0b9047476cdfc804e19f31f1f15", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "ROSOY SUR AMANCE", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4146e77caea09a8d6aea2c7592cb39e531ea8c55", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "TROISCHAMPS", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7b39d981c0fe60628605e95f6cb1d9b12861e4", "fields": {"nom_de_la_commune": "HUMBECOURT", "libell_d_acheminement": "HUMBECOURT", "code_postal": "52290", "coordonnees_gps": [48.5761520145, 4.85527369999], "code_commune_insee": "52244"}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9eea5146aa38d9cbb316d692c4f0c6cd845527", "fields": {"nom_de_la_commune": "HUMES JORQUENAY", "libell_d_acheminement": "HUMES JORQUENAY", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52246"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a9d864006ad4bd7f88305071d7da6d65d596c1", "fields": {"nom_de_la_commune": "ILLOUD", "libell_d_acheminement": "ILLOUD", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52247"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289f856324350334ac765daf272765652930215d", "fields": {"nom_de_la_commune": "ISOMES", "libell_d_acheminement": "ISOMES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52249"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165a849d55091c731b85e01b182f1a7b77303437", "fields": {"nom_de_la_commune": "JOINVILLE", "libell_d_acheminement": "JOINVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52250"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545ee93ffe1d226316c238826a9a64802987f947", "fields": {"nom_de_la_commune": "JUZENNECOURT", "libell_d_acheminement": "JUZENNECOURT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52253"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbfcc8bbf67df5dbbd993c7009f4398a3780f0d", "fields": {"nom_de_la_commune": "LAFERTE SUR AUBE", "libell_d_acheminement": "LAFERTE SUR AUBE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52258"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee999d757db082a6100dca57410fd4f6b1b4e12", "fields": {"nom_de_la_commune": "LANQUES SUR ROGNON", "libell_d_acheminement": "LANQUES SUR ROGNON", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52271"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60b67642b426fe35bfff4fc36610c8ed6f0fb82", "fields": {"nom_de_la_commune": "LAVILLE AUX BOIS", "libell_d_acheminement": "LAVILLE AUX BOIS", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52276"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390c71d8c4ebd0818fac62e86dde298a674b2e53", "fields": {"nom_de_la_commune": "LAVILLENEUVE", "libell_d_acheminement": "LAVILLENEUVE", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52277"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557ef20b34543973dc59b09de01f4f4d441d19c1", "fields": {"nom_de_la_commune": "LESCHERES SUR LE BLAISERON", "libell_d_acheminement": "LESCHERES SUR LE BLAISERON", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52284"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af5b75380f67d75cb186b4dd06252504a2edb7a", "fields": {"nom_de_la_commune": "MAGNEUX", "libell_d_acheminement": "MAGNEUX", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52300"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ccd33f42339f4daab350109574ecdab1fd37653", "fields": {"nom_de_la_commune": "MALAINCOURT SUR MEUSE", "libell_d_acheminement": "MALAINCOURT SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52304"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b479c6f0962ee5860651a4434dca4fa3efe60d89", "fields": {"nom_de_la_commune": "MARAC", "libell_d_acheminement": "MARAC", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52307"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aa40706d6053dc2f95a0e67a31d43355dbbdce9", "fields": {"code_postal": "52220", "code_commune_insee": "52331", "libell_d_acheminement": "LA PORTE DU DER", "ligne_5": "MONTIER EN DER", "nom_de_la_commune": "LA PORTE DU DER", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969e6f32f6ed53e3463bfcb5dc4da1a2cdedd491", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "PROVENCHERES SUR MEUSE", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32309ee38d5463f251d6e6a58adde9790817d475", "fields": {"nom_de_la_commune": "BISSEY LA COTE", "libell_d_acheminement": "BISSEY LA COTE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21077"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e045317d2e01316cde9a91bc00edb660c044b038", "fields": {"nom_de_la_commune": "BLIGNY LE SEC", "libell_d_acheminement": "BLIGNY LE SEC", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21085"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b2c519e2874f4199b028f8240c3a7881bfeeb4", "fields": {"nom_de_la_commune": "BLIGNY LES BEAUNE", "libell_d_acheminement": "BLIGNY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21086"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5097627c84df5136a6fd198b82b0060cd55f5b2c", "fields": {"nom_de_la_commune": "BOUSSENOIS", "libell_d_acheminement": "BOUSSENOIS", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21096"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a883d997c4d9f7bcfbea665fc5a33b84750964", "fields": {"nom_de_la_commune": "BRAZEY EN MORVAN", "libell_d_acheminement": "BRAZEY EN MORVAN", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21102"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75b60268a03a25ea70e3ea2a92b5be505f6bbee", "fields": {"nom_de_la_commune": "BRAZEY EN PLAINE", "libell_d_acheminement": "BRAZEY EN PLAINE", "code_postal": "21470", "coordonnees_gps": [47.1378444783, 5.21217795651], "code_commune_insee": "21103"}, "geometry": {"type": "Point", "coordinates": [5.21217795651, 47.1378444783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb3569f00057b7195f56e3865797c0f8532a205", "fields": {"nom_de_la_commune": "BRIANNY", "libell_d_acheminement": "BRIANNY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21108"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ed501a32d3ada57a6a5e07fb232e1383907170", "fields": {"nom_de_la_commune": "BROIN", "libell_d_acheminement": "BROIN", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21112"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1ae371191e5e2d2be42dea4e5a1ba2d3caea66", "fields": {"nom_de_la_commune": "BROINDON", "libell_d_acheminement": "BROINDON", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21113"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015d5b2e609b8e82cc0c51013f171ef854c739a6", "fields": {"nom_de_la_commune": "BURE LES TEMPLIERS", "libell_d_acheminement": "BURE LES TEMPLIERS", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21116"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a42590735876fcb5c60485d41a0c4c4ebb61ea", "fields": {"nom_de_la_commune": "BUSSEAUT", "libell_d_acheminement": "BUSSEAUT", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21117"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc61263b4ef5f1a3c61b13dfd6b62c8bf3f1cbe5", "fields": {"nom_de_la_commune": "BUSSEROTTE ET MONTENAILLE", "libell_d_acheminement": "BUSSEROTTE ET MONTENAILLE", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21118"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3110e1dbb2084d24cc8a758abfafc4448fe63676", "fields": {"nom_de_la_commune": "CHAILLY SUR ARMANCON", "libell_d_acheminement": "CHAILLY SUR ARMANCON", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21128"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdf6bf2379da2b0af9a8321846bee6e49d0718f", "fields": {"nom_de_la_commune": "CHAMBEIRE", "libell_d_acheminement": "CHAMBEIRE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21130"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129536d122a0abae004c6438398eccd3682a7a2d", "fields": {"nom_de_la_commune": "CHAMBLANC", "libell_d_acheminement": "CHAMBLANC", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21131"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c771ad0469f9b92acec5771c34bab24f2da1a334", "fields": {"nom_de_la_commune": "CHARENCEY", "libell_d_acheminement": "CHARENCEY", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21144"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761d3462b8832edcb46c808914cd6d70b4b3af7c", "fields": {"nom_de_la_commune": "CHARIGNY", "libell_d_acheminement": "CHARIGNY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21145"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ab9f298797bfaabb0d030bf864595c16298c2a", "fields": {"nom_de_la_commune": "CHATELLENOT", "libell_d_acheminement": "CHATELLENOT", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21153"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accafd1f85329fa2e8db284c6f778dc1826c7483", "fields": {"nom_de_la_commune": "CORBERON", "libell_d_acheminement": "CORBERON", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21189"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c373724001096c364435481acb7e1f2667590646", "fields": {"nom_de_la_commune": "CORGENGOUX", "libell_d_acheminement": "CORGENGOUX", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21193"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13ccb4df6133499aeac624ab0e060066543e76b", "fields": {"nom_de_la_commune": "CORMOT LE GRAND", "libell_d_acheminement": "CORMOT LE GRAND", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21195"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477eb59e5c09b94552ceb95a1bdbdd48fe65ea23", "fields": {"nom_de_la_commune": "CORROMBLES", "libell_d_acheminement": "CORROMBLES", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21198"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff5815f10a4f21653eb6d2d9f2ff335c69ad709", "fields": {"nom_de_la_commune": "CORSAINT", "libell_d_acheminement": "CORSAINT", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21199"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad6f1c44eb4370c6f294b4ecec196e3e2dd1d78", "fields": {"nom_de_la_commune": "CUISEREY", "libell_d_acheminement": "CUISEREY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21215"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8e332ad5b7a61c3468bd160a8c6db7062bdb6b", "fields": {"nom_de_la_commune": "CURTIL ST SEINE", "libell_d_acheminement": "CURTIL ST SEINE", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21218"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4759a82683988cea1a87cc38b893c2faca4272c", "fields": {"nom_de_la_commune": "CUSSY LE CHATEL", "libell_d_acheminement": "CUSSY LE CHATEL", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21222"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adbd565a57a99ec4d027f26cae603b61e04bba2", "fields": {"nom_de_la_commune": "DIENAY", "libell_d_acheminement": "DIENAY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21230"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f195b4c018d2bc27033a1d627721920ebf4d560c", "fields": {"nom_de_la_commune": "ECHALOT", "libell_d_acheminement": "ECHALOT", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21237"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0539150e8d3f98c43f127001df3f9a0dc8127a7e", "fields": {"nom_de_la_commune": "EPERNAY SOUS GEVREY", "libell_d_acheminement": "EPERNAY SOUS GEVREY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21246"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20998b80a258346da8fded7ff0d467382f1f6e83", "fields": {"nom_de_la_commune": "ETAULES", "libell_d_acheminement": "ETAULES", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21255"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03018796ded7c3703756674a497a2d638ff9352d", "fields": {"nom_de_la_commune": "FAVEROLLES LES LUCEY", "libell_d_acheminement": "FAVEROLLES LES LUCEY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21262"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde07767a59feb276537d0b4b705ecf81934a1da", "fields": {"nom_de_la_commune": "FLACEY", "libell_d_acheminement": "FLACEY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21266"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca13e6937118883902b8409ff4c1f90b298fa43c", "fields": {"nom_de_la_commune": "FONCEGRIVE", "libell_d_acheminement": "FONCEGRIVE", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21275"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb2fbdde756a0fe6aedb59287df1e57d70a38b2", "fields": {"nom_de_la_commune": "FROLOIS", "libell_d_acheminement": "FROLOIS", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21288"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c3ac96abbfb2ee07c67afc5879eee9024691ed", "fields": {"nom_de_la_commune": "GENAY", "libell_d_acheminement": "GENAY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21291"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa3900753e65420f7d9de71e4af85cda9f1bae1", "fields": {"nom_de_la_commune": "GILLY LES CITEAUX", "libell_d_acheminement": "GILLY LES CITEAUX", "code_postal": "21640", "coordonnees_gps": [47.1699047121, 4.99001555579], "code_commune_insee": "21297"}, "geometry": {"type": "Point", "coordinates": [4.99001555579, 47.1699047121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8baca46d8655b3a929d621585899571b9804aba", "fields": {"nom_de_la_commune": "GISSEY LE VIEIL", "libell_d_acheminement": "GISSEY LE VIEIL", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21298"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ae27c9dd426d77fa117ca7b5c38910eba66f2b", "fields": {"nom_de_la_commune": "GRANCEY LE CHATEAU NEUVELLE", "libell_d_acheminement": "GRANCEY LE CHATEAU", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21304"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbba8ddd7447379fd9a21fd5c02184b742970cf6", "fields": {"code_postal": "21580", "code_commune_insee": "21304", "libell_d_acheminement": "GRANCEY LE CHATEAU", "ligne_5": "NEUVELLE LES GRANCEY", "nom_de_la_commune": "GRANCEY LE CHATEAU NEUVELLE", "coordonnees_gps": [47.6313040317, 4.97754059731]}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d90f2291fe7569fc65f825e67c39332bf1fc56", "fields": {"nom_de_la_commune": "GRESIGNY STE REINE", "libell_d_acheminement": "GRESIGNY STE REINE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21307"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e788f7854d3dd9de3cdeea111b965fb3dbe21c41", "fields": {"nom_de_la_commune": "HAUTEROCHE", "libell_d_acheminement": "HAUTEROCHE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21314"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d5b0faed5fc3c5c481081a10d119ec145de5ada", "fields": {"nom_de_la_commune": "HAUTEVILLE LES DIJON", "libell_d_acheminement": "HAUTEVILLE LES DIJON", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21315"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf8323cbcd9d1261dd657f68baab34ab21308e3", "fields": {"nom_de_la_commune": "IZIER", "libell_d_acheminement": "IZIER", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21320"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff4f798499e1d0eb89328d6d5a4b03bdbda5412", "fields": {"nom_de_la_commune": "JUILLENAY", "libell_d_acheminement": "JUILLENAY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21328"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3903256ba7b553cae7ee6e2e97a6ac83396a4802", "fields": {"nom_de_la_commune": "JUILLY", "libell_d_acheminement": "JUILLY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21329"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a68880e40f807a798bc194453893a8b2e9a0e2", "fields": {"nom_de_la_commune": "LABERGEMENT LES SEURRE", "libell_d_acheminement": "LABERGEMENT LES SEURRE", "code_postal": "21820", "coordonnees_gps": [46.9896528835, 5.08851380654], "code_commune_insee": "21332"}, "geometry": {"type": "Point", "coordinates": [5.08851380654, 46.9896528835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd77dbb4afe87eebd80ae91ccd98cf22e5bdde1a", "fields": {"nom_de_la_commune": "LAIGNES", "libell_d_acheminement": "LAIGNES", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21336"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "321fac6c5bfec288dacef28e5c378e33185b2a2d", "fields": {"nom_de_la_commune": "LAMARCHE SUR SAONE", "libell_d_acheminement": "LAMARCHE SUR SAONE", "code_postal": "21760", "coordonnees_gps": [47.2728531205, 5.36976377016], "code_commune_insee": "21337"}, "geometry": {"type": "Point", "coordinates": [5.36976377016, 47.2728531205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ab2ccbf84e2b83800bb3b9f7bc45cdda32064b", "fields": {"nom_de_la_commune": "LARREY", "libell_d_acheminement": "LARREY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21343"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbaef32f3b456c78d755fa6e2478bd69f37e90a", "fields": {"nom_de_la_commune": "LEVERNOIS", "libell_d_acheminement": "LEVERNOIS", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21347"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d993e07a800f971ff70f6aad7352c4610b6b4a", "fields": {"nom_de_la_commune": "LIERNAIS", "libell_d_acheminement": "LIERNAIS", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21349"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7356e9c8e6182269170f0fdbe00567bf6908f385", "fields": {"nom_de_la_commune": "LOUESME", "libell_d_acheminement": "LOUESME", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21357"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34e1b356ca566e23cb65f21c4f535a3dbd3735ae", "fields": {"nom_de_la_commune": "LUCENAY LE DUC", "libell_d_acheminement": "LUCENAY LE DUC", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21358"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e014960572cc885cee6ee22159d2f83459e03c1", "fields": {"nom_de_la_commune": "LUX", "libell_d_acheminement": "LUX", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21361"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f16843ad60c779773f8e82125377c72c55bdef", "fields": {"nom_de_la_commune": "MAGNY LAMBERT", "libell_d_acheminement": "MAGNY LAMBERT", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21364"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf77ccb9a21db695bd705cf01c3d9d84f167cd2", "fields": {"nom_de_la_commune": "MALAIN", "libell_d_acheminement": "MALAIN", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21373"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae888a581b054523816f0bc2cc32ddd970e1c2fa", "fields": {"nom_de_la_commune": "MARCELLOIS", "libell_d_acheminement": "MARCELLOIS", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21377"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab6ddf985b24a84135680c1e26eab426ce2206a", "fields": {"nom_de_la_commune": "MARCILLY ET DRACY", "libell_d_acheminement": "MARCILLY ET DRACY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21381"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3adb2b4ad70ded83dc7400c5e93a9cc41b150e", "fields": {"nom_de_la_commune": "MENESBLE", "libell_d_acheminement": "MENESBLE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21402"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b534237b19b2b1200480841201518d1f38103c3", "fields": {"nom_de_la_commune": "MENETREUX LE PITOIS", "libell_d_acheminement": "MENETREUX LE PITOIS", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21404"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d05c80e302baf2fe61dd527492afd39efc1d907", "fields": {"nom_de_la_commune": "MIMEURE", "libell_d_acheminement": "MIMEURE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21414"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6428151af04db2c46f00930c9c9c93f2e117bf26", "fields": {"nom_de_la_commune": "MINOT", "libell_d_acheminement": "MINOT", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21415"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baef64f45a4066db452c2ca8eb9a2f652de4a248", "fields": {"nom_de_la_commune": "MIREBEAU SUR BEZE", "libell_d_acheminement": "MIREBEAU SUR BEZE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21416"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578fdbf6973ea9e919eb4ef4ea76bf8c7eb2d296", "fields": {"nom_de_la_commune": "MOLESME", "libell_d_acheminement": "MOLESME", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21419"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8953e4a6f113b5c69a88117535946f44934fc84e", "fields": {"nom_de_la_commune": "MOLOY", "libell_d_acheminement": "MOLOY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21421"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8a90471eab9a6aa5aedc11c95cef62b8021c85", "fields": {"nom_de_la_commune": "MONTAGNY LES SEURRE", "libell_d_acheminement": "MONTAGNY LES SEURRE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21424"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2da3384c6a212504a91674be853b1055684bd0", "fields": {"nom_de_la_commune": "MONTIGNY ST BARTHELEMY", "libell_d_acheminement": "MONTIGNY ST BARTHELEMY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21430"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9ff93a9e6a4f5b8388b3b39f50ae16b34fe151", "fields": {"code_postal": "21610", "code_commune_insee": "21433", "libell_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", "ligne_5": "MORNAY", "nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", "coordonnees_gps": [47.5437721668, 5.38811246138]}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29cb87b24e03e9a4d858b35fb0f4f09f0fbb44e5", "fields": {"nom_de_la_commune": "MONTLIOT ET COURCELLES", "libell_d_acheminement": "MONTLIOT ET COURCELLES", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21435"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddde2d86400e89ecee4857310193f6cabddf3a27", "fields": {"nom_de_la_commune": "MONTMOYEN", "libell_d_acheminement": "MONTMOYEN", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21438"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00581217c6e62064b509e6e28b6783a12569186c", "fields": {"nom_de_la_commune": "MUSSY LA FOSSE", "libell_d_acheminement": "MUSSY LA FOSSE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21448"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0593d7a6f4406f170095228ebc232d766833eed", "fields": {"nom_de_la_commune": "NICEY", "libell_d_acheminement": "NICEY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21454"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c218b1862f589c1c1740ca9ef3d0d3d9fd73c14f", "fields": {"nom_de_la_commune": "NOIRON SUR SEINE", "libell_d_acheminement": "NOIRON SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21460"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d29b18a3ea0000178148a6d5f028512c6b6db3", "fields": {"code_postal": "21340", "code_commune_insee": "21461", "libell_d_acheminement": "NOLAY", "ligne_5": "CIREY LES NOLAY", "nom_de_la_commune": "NOLAY", "coordonnees_gps": [46.9889799591, 4.61638229862]}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce311e01c33f26927382c2ec2d04f56948d6af5", "fields": {"nom_de_la_commune": "NORGES LA VILLE", "libell_d_acheminement": "NORGES LA VILLE", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21462"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74661111a67a9591673496fdb0e96a0c9168f5d2", "fields": {"nom_de_la_commune": "PERRIGNY SUR L OGNON", "libell_d_acheminement": "PERRIGNY SUR L OGNON", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21482"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d044d00ae5c1d20ebf1e8de4199dcf2abe9cb78", "fields": {"nom_de_la_commune": "POMMARD", "libell_d_acheminement": "POMMARD", "code_postal": "21630", "coordonnees_gps": [47.013381569, 4.79505168277], "code_commune_insee": "21492"}, "geometry": {"type": "Point", "coordinates": [4.79505168277, 47.013381569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7ae94e4dd6bcf93b98d7e672a509a17511a114", "fields": {"nom_de_la_commune": "PONT ET MASSENE", "libell_d_acheminement": "PONT ET MASSENE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21497"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f5b0645c3c7b28c6f1d905aa504ab99d579463f", "fields": {"nom_de_la_commune": "POSANGES", "libell_d_acheminement": "POSANGES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21498"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24fb8120824c41caf57371a11643e80125de9407", "fields": {"nom_de_la_commune": "POTHIERES", "libell_d_acheminement": "POTHIERES", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21499"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dcde695c6aafb44e167f28f8b1810aba19b338", "fields": {"nom_de_la_commune": "POUILLY SUR SAONE", "libell_d_acheminement": "POUILLY SUR SAONE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21502"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c9fae2ba0180b4baa2af8f15f292fde1b2ef93", "fields": {"nom_de_la_commune": "PRALON", "libell_d_acheminement": "PRALON", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21504"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98b6bf3af677bb3475ca1c1b1b3dc0319d193dd", "fields": {"nom_de_la_commune": "PRUSLY SUR OURCE", "libell_d_acheminement": "PRUSLY SUR OURCE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21510"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fbc29bdd4ed8e2b1da86c325d14c9817849c58", "fields": {"nom_de_la_commune": "QUINCEY", "libell_d_acheminement": "QUINCEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21517"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea6d9a70c57ea218c420a1beda5c8133a3e73fb", "fields": {"nom_de_la_commune": "QUINCY LE VICOMTE", "libell_d_acheminement": "QUINCY LE VICOMTE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21518"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81da94d5ae80af2daa06d6c24acb7f95c741f42", "fields": {"nom_de_la_commune": "SACQUENAY", "libell_d_acheminement": "SACQUENAY", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21536"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462d610f86fd7b19bb4cf9e4597547cd6b0625b4", "fields": {"nom_de_la_commune": "ST APOLLINAIRE", "libell_d_acheminement": "ST APOLLINAIRE", "code_postal": "21850", "coordonnees_gps": [47.3361536216, 5.09316183546], "code_commune_insee": "21540"}, "geometry": {"type": "Point", "coordinates": [5.09316183546, 47.3361536216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "160df4c39e0ab479a7073c7ac73e3f66037234ae", "fields": {"nom_de_la_commune": "ST GERMAIN DE MODEON", "libell_d_acheminement": "ST GERMAIN DE MODEON", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21548"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c872292609d1f8744e291c7fce840171da401c49", "fields": {"nom_de_la_commune": "ST JEAN DE BOEUF", "libell_d_acheminement": "ST JEAN DE BOEUF", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21553"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3331b6a2d1e838802a86c07b2aaac7d45359012f", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21555"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc497db096bfd5c7951ba6fe0c3fe254cc32e901", "fields": {"nom_de_la_commune": "ST MARTIN DU MONT", "libell_d_acheminement": "ST MARTIN DU MONT", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21561"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683bd22145e61be08d149175fe4c134a636b96e8", "fields": {"nom_de_la_commune": "ST MAURICE SUR VINGEANNE", "libell_d_acheminement": "ST MAURICE SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21562"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86b42dc4b08d5946a8487df61d0fdf48409790e", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21568"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a04839729004cf8929a8b77be42f5b9d04510f9", "fields": {"nom_de_la_commune": "ST THIBAULT", "libell_d_acheminement": "ST THIBAULT", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21576"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1d35771d84735018ad481cffc7acb9f180167f", "fields": {"nom_de_la_commune": "SANTOSSE", "libell_d_acheminement": "SANTOSSE", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21583"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feec63dec793cb7713da39514e92ff89eb87a3d5", "fields": {"nom_de_la_commune": "SAULX LE DUC", "libell_d_acheminement": "SAULX LE DUC", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21587"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea67b0a4fd93228ec980b431ce76475302df9cd", "fields": {"nom_de_la_commune": "SAUSSY", "libell_d_acheminement": "SAUSSY", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21589"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b523eef78f3abd2ab9cd33da404262151a0bfa", "fields": {"nom_de_la_commune": "SAVIGNY LE SEC", "libell_d_acheminement": "SAVIGNY LE SEC", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21591"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ab96f89b43739cd0de0553d7b7291613a35296", "fields": {"nom_de_la_commune": "LANNUX", "libell_d_acheminement": "LANNUX", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32192"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a34d576883c8eae0f3a222397604ec046db8266", "fields": {"nom_de_la_commune": "LARROQUE ENGALIN", "libell_d_acheminement": "LARROQUE ENGALIN", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32195"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63e09dceb6e72d1b1f8639831c0baf8797a2b5b", "fields": {"nom_de_la_commune": "XIVRAY ET MARVOISIN", "libell_d_acheminement": "XIVRAY ET MARVOISIN", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55586"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e7a3ef58161b629d9828eb2097b6718683fd10", "fields": {"nom_de_la_commune": "ALLAIRE", "libell_d_acheminement": "ALLAIRE", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56001"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b38249b498034861d6641daa2528b97f3a0480", "fields": {"nom_de_la_commune": "ARZAL", "libell_d_acheminement": "ARZAL", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56004"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9908a619b53160a638fbbab3fbe81a7665311de2", "fields": {"code_postal": "56640", "code_commune_insee": "56005", "libell_d_acheminement": "ARZON", "ligne_5": "PORT NAVALO", "nom_de_la_commune": "ARZON", "coordonnees_gps": [47.5474079943, -2.88721612106]}, "geometry": {"type": "Point", "coordinates": [-2.88721612106, 47.5474079943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "460267db2df879b4e8d0c659dbbbcc0d52b38192", "fields": {"nom_de_la_commune": "AURAY", "libell_d_acheminement": "AURAY", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56007"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "628bc84eb377c39596dd34d1f434630a8354586e", "fields": {"nom_de_la_commune": "BANGOR", "libell_d_acheminement": "BANGOR", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56009"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a6ec1f0455346132ed29a53e08188592e169ab", "fields": {"nom_de_la_commune": "BEGANNE", "libell_d_acheminement": "BEGANNE", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56011"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae4e25d8c730a63cfa6387a4f845ce743cd7eb6", "fields": {"nom_de_la_commune": "BREHAN", "libell_d_acheminement": "BREHAN", "code_postal": "56580", "coordonnees_gps": [48.0645686885, -2.7233749534], "code_commune_insee": "56024"}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f655a21ab32bbf625748330e06524226719c07c6", "fields": {"nom_de_la_commune": "BUBRY", "libell_d_acheminement": "BUBRY", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56026"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ce301f68c96be98dac014a5d112f21f66581b6", "fields": {"nom_de_la_commune": "BULEON", "libell_d_acheminement": "BULEON", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56027"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8656e0599e5c73138b7ffa9d101c9a70ead522d1", "fields": {"nom_de_la_commune": "CAMPENEAC", "libell_d_acheminement": "CAMPENEAC", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56032"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c52af2d32c62e657e6716ce9da26bde10d5da9d", "fields": {"nom_de_la_commune": "LA CHAPELLE GACELINE", "libell_d_acheminement": "LA CHAPELLE GACELINE", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56038"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e93807db42bdd6be4723f66eede0b5835b2028", "fields": {"nom_de_la_commune": "LA CHAPELLE NEUVE", "libell_d_acheminement": "LA CHAPELLE NEUVE", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56039"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0bb376e86f8864324f3e02bda1c18a206e30b9", "fields": {"nom_de_la_commune": "CONCORET", "libell_d_acheminement": "CONCORET", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56043"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c359bc92fb384750eb9069d85cac6f78553cdeed", "fields": {"nom_de_la_commune": "LE COURS", "libell_d_acheminement": "LE COURS", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56045"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fee347a8bf3f568833e31fc442a272f266c72e", "fields": {"nom_de_la_commune": "CRACH", "libell_d_acheminement": "CRACH", "code_postal": "56950", "coordonnees_gps": [47.6304651493, -3.00066063673], "code_commune_insee": "56046"}, "geometry": {"type": "Point", "coordinates": [-3.00066063673, 47.6304651493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565e8599071341cd26c382f4b6f99aee3a3a4c3b", "fields": {"nom_de_la_commune": "LA CROIX HELLEAN", "libell_d_acheminement": "LA CROIX HELLEAN", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56050"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94468ea51d18c2518666bf02e712879db8d22a10", "fields": {"nom_de_la_commune": "DAMGAN", "libell_d_acheminement": "DAMGAN", "code_postal": "56750", "coordonnees_gps": [47.5217687274, -2.57836197527], "code_commune_insee": "56052"}, "geometry": {"type": "Point", "coordinates": [-2.57836197527, 47.5217687274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b9a7597804c5aed0994678599c40217c394064", "fields": {"nom_de_la_commune": "LE FAOUET", "libell_d_acheminement": "LE FAOUET", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56057"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b004bb3048f3a1ce8e4e7e378dc6775547c01d30", "fields": {"nom_de_la_commune": "GESTEL", "libell_d_acheminement": "GESTEL", "code_postal": "56530", "coordonnees_gps": [47.7891669692, -3.42348141885], "code_commune_insee": "56063"}, "geometry": {"type": "Point", "coordinates": [-3.42348141885, 47.7891669692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b6cecc7bbd8928ac2f0811965c7ba207214eeec", "fields": {"nom_de_la_commune": "GRAND CHAMP", "libell_d_acheminement": "GRAND CHAMP", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56067"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982250ba84cdd5e993ee5bf4a67cfd400e226817", "fields": {"nom_de_la_commune": "GUEHENNO", "libell_d_acheminement": "GUEHENNO", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56071"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9934af238a303527e1dfdc9a3d961b34491da619", "fields": {"nom_de_la_commune": "GUELTAS", "libell_d_acheminement": "GUELTAS", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56072"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3b53ab2c665fd0b1b09dbb5d90e87e236f75b5", "fields": {"nom_de_la_commune": "GUEMENE SUR SCORFF", "libell_d_acheminement": "GUEMENE SUR SCORFF", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56073"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34166630aaadfc848d1b6bfc1a33a6914a83600", "fields": {"nom_de_la_commune": "GUENIN", "libell_d_acheminement": "GUENIN", "code_postal": "56150", "coordonnees_gps": [47.8954786966, -3.01425366823], "code_commune_insee": "56074"}, "geometry": {"type": "Point", "coordinates": [-3.01425366823, 47.8954786966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06eef14f2d88a46992fb0de0bdae5611b286c5", "fields": {"code_postal": "56380", "code_commune_insee": "56075", "libell_d_acheminement": "GUER", "ligne_5": "COETQUIDAN BELLEVUE", "nom_de_la_commune": "GUER", "coordonnees_gps": [47.9150020404, -2.16277339517]}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804e083d4595641ffaeda468930ed52c1a43f40e", "fields": {"nom_de_la_commune": "GUISCRIFF", "libell_d_acheminement": "GUISCRIFF", "code_postal": "56560", "coordonnees_gps": [48.0425866402, -3.62363029041], "code_commune_insee": "56081"}, "geometry": {"type": "Point", "coordinates": [-3.62363029041, 48.0425866402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09518d9c59ab9950410b485383d54a3805a557ba", "fields": {"nom_de_la_commune": "LE HEZO", "libell_d_acheminement": "LE HEZO", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56084"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244098575fa066069602579d8d387adb08db7489", "fields": {"nom_de_la_commune": "LANDEVANT", "libell_d_acheminement": "LANDEVANT", "code_postal": "56690", "coordonnees_gps": [47.758091509, -3.12551793319], "code_commune_insee": "56097"}, "geometry": {"type": "Point", "coordinates": [-3.12551793319, 47.758091509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d37112b4b9d5621c9ca719ba9c5e7b76e1afa1", "fields": {"nom_de_la_commune": "LANGOELAN", "libell_d_acheminement": "LANGOELAN", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56099"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778d70d8757885492cc04e121c98203b9fa1c7ae", "fields": {"nom_de_la_commune": "LARMOR PLAGE", "libell_d_acheminement": "LARMOR PLAGE", "code_postal": "56260", "coordonnees_gps": [47.7160037145, -3.39135560141], "code_commune_insee": "56107"}, "geometry": {"type": "Point", "coordinates": [-3.39135560141, 47.7160037145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312f797938f58c2d8936138fe26f9486ed3275f0", "fields": {"nom_de_la_commune": "LIZIO", "libell_d_acheminement": "LIZIO", "code_postal": "56460", "coordonnees_gps": [47.8267704974, -2.49804841656], "code_commune_insee": "56112"}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5286c376ddfc990a189c6524195a4a4b89f3fe1", "fields": {"nom_de_la_commune": "LOCMARIAQUER", "libell_d_acheminement": "LOCMARIAQUER", "code_postal": "56740", "coordonnees_gps": [47.5773440831, -2.9630029872], "code_commune_insee": "56116"}, "geometry": {"type": "Point", "coordinates": [-2.9630029872, 47.5773440831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f7800b0fa9d6d6a8f279b38edc0fa48c1abe2a", "fields": {"nom_de_la_commune": "LOCQUELTAS", "libell_d_acheminement": "LOCQUELTAS", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56120"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39fe726e85428936e344cd6886491130bf7a04c5", "fields": {"nom_de_la_commune": "MARZAN", "libell_d_acheminement": "MARZAN", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56126"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d692d729898a662521ace877d5024d86c2991e30", "fields": {"nom_de_la_commune": "MENEAC", "libell_d_acheminement": "MENEAC", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56129"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79d2e9e19aedcd1c1ee802ff77d36cabc2d8ffc", "fields": {"nom_de_la_commune": "MEUCON", "libell_d_acheminement": "MEUCON", "code_postal": "56890", "coordonnees_gps": [47.7007937591, -2.78248862102], "code_commune_insee": "56132"}, "geometry": {"type": "Point", "coordinates": [-2.78248862102, 47.7007937591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801ad7224ab4771ad6972cda7e1b0766fce01ad5", "fields": {"nom_de_la_commune": "MONTENEUF", "libell_d_acheminement": "MONTENEUF", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56136"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f715367722a4c5bb51ffd816e4a946a8e37bcc0c", "fields": {"nom_de_la_commune": "MONTERREIN", "libell_d_acheminement": "MONTERREIN", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56138"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d6aff56275cb91b3d0d43962485d7bba9113a4", "fields": {"nom_de_la_commune": "LE PALAIS", "libell_d_acheminement": "LE PALAIS", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56152"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7813c50a09904534e2c1601e0344deea359428", "fields": {"nom_de_la_commune": "PLOEMEL", "libell_d_acheminement": "PLOEMEL", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56161"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f049ee4de0a6ddb57a140bd050a0218f1a60359", "fields": {"nom_de_la_commune": "PLOERDUT", "libell_d_acheminement": "PLOERDUT", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56163"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b193667eaa958c34b8b8b96e30ff2c8d1d2e931", "fields": {"nom_de_la_commune": "PLOURAY", "libell_d_acheminement": "PLOURAY", "code_postal": "56770", "coordonnees_gps": [48.1344418052, -3.37567057711], "code_commune_insee": "56170"}, "geometry": {"type": "Point", "coordinates": [-3.37567057711, 48.1344418052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c25950518bbfae468be725199843205a86cb57", "fields": {"code_postal": "56330", "code_commune_insee": "56177", "libell_d_acheminement": "PLUVIGNER", "ligne_5": "BIEUZY LANVAUX", "nom_de_la_commune": "PLUVIGNER", "coordonnees_gps": [47.797362476, -3.01124558366]}, "geometry": {"type": "Point", "coordinates": [-3.01124558366, 47.797362476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09c7be670e0908335231f86fc083396f1581a68", "fields": {"nom_de_la_commune": "PONT SCORFF", "libell_d_acheminement": "PONT SCORFF", "code_postal": "56620", "coordonnees_gps": [47.8545097905, -3.38768121277], "code_commune_insee": "56179"}, "geometry": {"type": "Point", "coordinates": [-3.38768121277, 47.8545097905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6452feed882f9819df133cde6435b699f3154ea", "fields": {"nom_de_la_commune": "REGUINY", "libell_d_acheminement": "REGUINY", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56190"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "753952736839d23cf90b1f70af5c98b51ed709dc", "fields": {"nom_de_la_commune": "ST ALLOUESTRE", "libell_d_acheminement": "ST ALLOUESTRE", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56204"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6465e7b09db2d56bd009ae22e467dfd3aa3a78aa", "fields": {"nom_de_la_commune": "ST AVE", "libell_d_acheminement": "ST AVE", "code_postal": "56890", "coordonnees_gps": [47.7007937591, -2.78248862102], "code_commune_insee": "56206"}, "geometry": {"type": "Point", "coordinates": [-2.78248862102, 47.7007937591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d681df5528565b3a7464f8fe16b481e0629b21", "fields": {"nom_de_la_commune": "ST BRIEUC DE MAURON", "libell_d_acheminement": "ST BRIEUC DE MAURON", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56208"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2a058091da20c651e7f50fb72f9080b99df217", "fields": {"nom_de_la_commune": "STE BRIGITTE", "libell_d_acheminement": "STE BRIGITTE", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56209"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa54d6b025f79fc6004e153e13b390892c9fe09", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56220"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adedd8421e60aab05f767497f5b4057379bbec0", "fields": {"nom_de_la_commune": "ST LAURENT SUR OUST", "libell_d_acheminement": "ST LAURENT SUR OUST", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56224"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7a715267e4ca4669a37b5d7b96f86d9df20a74", "fields": {"nom_de_la_commune": "ST LERY", "libell_d_acheminement": "ST LERY", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56225"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a228fa475bc373a76f3b151e7c7692265566c64", "fields": {"nom_de_la_commune": "ST NICOLAS DU TERTRE", "libell_d_acheminement": "ST NICOLAS DU TERTRE", "code_postal": "56910", "coordonnees_gps": [47.8192433861, -2.1438942597], "code_commune_insee": "56230"}, "geometry": {"type": "Point", "coordinates": [-2.1438942597, 47.8192433861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea89fa46aac37eccee0435268e9f00e13218d742", "fields": {"nom_de_la_commune": "ST NOLFF", "libell_d_acheminement": "ST NOLFF", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56231"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a429c9ac7b6615ca694a2f220b2ea5d794477f1", "fields": {"nom_de_la_commune": "THEHILLAC", "libell_d_acheminement": "THEHILLAC", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56250"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55faca71a4de0c8b9f8ac6255c86f55b04db397", "fields": {"nom_de_la_commune": "LA TRINITE SUR MER", "libell_d_acheminement": "LA TRINITE SUR MER", "code_postal": "56470", "coordonnees_gps": [47.589127688, -3.01738513558], "code_commune_insee": "56258"}, "geometry": {"type": "Point", "coordinates": [-3.01738513558, 47.589127688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d13d782f0634713addaec83234169f6bf898073", "fields": {"nom_de_la_commune": "AMANVILLERS", "libell_d_acheminement": "AMANVILLERS", "code_postal": "57865", "coordonnees_gps": [49.1597746505, 6.04639096632], "code_commune_insee": "57017"}, "geometry": {"type": "Point", "coordinates": [6.04639096632, 49.1597746505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "436b3bd51d34eb7f631a915cb53390dd34bf0d6d", "fields": {"code_postal": "57360", "code_commune_insee": "57019", "libell_d_acheminement": "AMNEVILLE LES THERMES", "ligne_5": "MALANCOURT LA MONTAGNE", "nom_de_la_commune": "AMNEVILLE", "coordonnees_gps": [49.2415476274, 6.10299353804]}, "geometry": {"type": "Point", "coordinates": [6.10299353804, 49.2415476274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037e8b646d44ed3c8bc39dbca235143788e422f5", "fields": {"nom_de_la_commune": "ANCERVILLE", "libell_d_acheminement": "ANCERVILLE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57020"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a53776ee73a4e49eae80d76c229ad178d518912", "fields": {"nom_de_la_commune": "ARGANCY", "libell_d_acheminement": "ARGANCY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57028"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb84cb2543cb226585cbeb931009b28026a3a135", "fields": {"nom_de_la_commune": "ARS SUR MOSELLE", "libell_d_acheminement": "ARS SUR MOSELLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57032"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba0b5617e9d479cfbf5c69c9a3b69fcac98b6b3", "fields": {"nom_de_la_commune": "ARZVILLER", "libell_d_acheminement": "ARZVILLER", "code_postal": "57405", "coordonnees_gps": [48.7255604204, 7.15431817508], "code_commune_insee": "57033"}, "geometry": {"type": "Point", "coordinates": [7.15431817508, 48.7255604204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38204372b999f9ff7c408b347d417fd19ebe712c", "fields": {"nom_de_la_commune": "AUBE", "libell_d_acheminement": "AUBE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57037"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bb876760dd8ac9dec1d2f57b656d360bdffb20", "fields": {"nom_de_la_commune": "AUGNY", "libell_d_acheminement": "AUGNY", "code_postal": "57685", "coordonnees_gps": [49.0554257557, 6.11601583087], "code_commune_insee": "57039"}, "geometry": {"type": "Point", "coordinates": [6.11601583087, 49.0554257557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7944b792df997ddc69206dc4dafca4bdcff1a0e5", "fields": {"nom_de_la_commune": "BARCHAIN", "libell_d_acheminement": "BARCHAIN", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57050"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c62112270bf29311341e4dd578aad5469eb380", "fields": {"nom_de_la_commune": "BECHY", "libell_d_acheminement": "BECHY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57057"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4821c02e1bf56caf804cd29faeb4e4ed3bfbe97a", "fields": {"nom_de_la_commune": "BERG SUR MOSELLE", "libell_d_acheminement": "BERG SUR MOSELLE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57062"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5cf2d8d9f3cb8e907531e663a311a7cf27bb19", "fields": {"nom_de_la_commune": "BERMERING", "libell_d_acheminement": "BERMERING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57065"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7604fb24555baa6afd61edfcfe583f48d49e73e4", "fields": {"nom_de_la_commune": "BINING", "libell_d_acheminement": "BINING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57083"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dda19860a5d543e5d4723cd684244b340e277d8", "fields": {"nom_de_la_commune": "BITCHE", "libell_d_acheminement": "BITCHE", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57089"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9024eeed1417cef615d66a0b9b0bfbf48cc107e", "fields": {"nom_de_la_commune": "BLANCHE EGLISE", "libell_d_acheminement": "BLANCHE EGLISE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57090"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7feda6e40d94cea2e2d003d612779aad8fbd8120", "fields": {"nom_de_la_commune": "BOURGALTROFF", "libell_d_acheminement": "BOURGALTROFF", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57098"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7469f5a994ceb82878fb59615e10b7f15228c9be", "fields": {"nom_de_la_commune": "BOUSSE", "libell_d_acheminement": "BOUSSE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57102"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bc312f9b7aad397e09205b734b7a2c48615452", "fields": {"nom_de_la_commune": "BREIDENBACH", "libell_d_acheminement": "BREIDENBACH", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57108"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e6b75ebe23e1531182ea595a8f2495facf2552", "fields": {"nom_de_la_commune": "BRONVAUX", "libell_d_acheminement": "BRONVAUX", "code_postal": "57535", "coordonnees_gps": [49.2137829893, 6.11073002885], "code_commune_insee": "57111"}, "geometry": {"type": "Point", "coordinates": [6.11073002885, 49.2137829893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c737cc7897815dac3aaa68de50d677ad53dd82", "fields": {"nom_de_la_commune": "BUDLING", "libell_d_acheminement": "BUDLING", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57118"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d040072016fb62f13b76e8356ede9b377e723f56", "fields": {"nom_de_la_commune": "BURLIONCOURT", "libell_d_acheminement": "BURLIONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57120"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebb0a00c42a6e669eb52cd3ecfa543e3eb67f19", "fields": {"nom_de_la_commune": "CHARLEVILLE SOUS BOIS", "libell_d_acheminement": "CHARLEVILLE SOUS BOIS", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57128"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0e1c2d69cd8032242aa075fa467a38ec1503c7", "fields": {"nom_de_la_commune": "CHARLY ORADOUR", "libell_d_acheminement": "CHARLY ORADOUR", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57129"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab804cee3771de48139828d2a00e76a301cf1eeb", "fields": {"nom_de_la_commune": "CHATEAU SALINS", "libell_d_acheminement": "CHATEAU SALINS", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57132"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bcd4cb38622ab901ed0ba2574704be1196cd429", "fields": {"nom_de_la_commune": "CHATEAU VOUE", "libell_d_acheminement": "CHATEAU VOUE", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57133"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b60f2f3272fa2e8e81baabb4d38dfafc177e49", "fields": {"nom_de_la_commune": "CONDE NORTHEN", "libell_d_acheminement": "CONDE NORTHEN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57150"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c924d58676d4301049109f88351566e6e1833d52", "fields": {"nom_de_la_commune": "COUME", "libell_d_acheminement": "COUME", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57154"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cde4a12a40157c471f928b2dfc065261ff5b5dc", "fields": {"nom_de_la_commune": "DESSELING", "libell_d_acheminement": "DESSELING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57173"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23561618c7d6d695bd621aefaceec6f8992757d0", "fields": {"nom_de_la_commune": "DESTRY", "libell_d_acheminement": "DESTRY", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57174"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f4171ef2ba56d6f659f7049141658289e49a74", "fields": {"nom_de_la_commune": "DONNELAY", "libell_d_acheminement": "DONNELAY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57183"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46a6ca3ff6b8018793993e41657ef54b717ddc07", "fields": {"nom_de_la_commune": "EINCHEVILLE", "libell_d_acheminement": "EINCHEVILLE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57189"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439205d6f5f338d12673503bea5b366a5ad666b6", "fields": {"nom_de_la_commune": "ENNERY", "libell_d_acheminement": "ENNERY", "code_postal": "57365", "coordonnees_gps": [49.228567016, 6.24894723859], "code_commune_insee": "57193"}, "geometry": {"type": "Point", "coordinates": [6.24894723859, 49.228567016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa190c3f8c8378318617dd4037dc46837cde204", "fields": {"nom_de_la_commune": "ENTRANGE", "libell_d_acheminement": "ENTRANGE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57194"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da4e583c1dad98e1009766a0c0ab6e97fff0a0b", "fields": {"nom_de_la_commune": "ERNESTVILLER", "libell_d_acheminement": "ERNESTVILLER", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57197"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6adac6cb879b6c7075468849b4fbf50395c0c40d", "fields": {"nom_de_la_commune": "LES ETANGS", "libell_d_acheminement": "LES ETANGS", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57200"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a631a464faf015264b2faf53e2baa670cc908bc", "fields": {"nom_de_la_commune": "FAULQUEMONT", "libell_d_acheminement": "FAULQUEMONT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57209"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b1a55752786ca2d942c573f86313d488cfebd1", "fields": {"code_postal": "57380", "code_commune_insee": "57209", "libell_d_acheminement": "FAULQUEMONT", "ligne_5": "CHEMERY", "nom_de_la_commune": "FAULQUEMONT", "coordonnees_gps": [49.0163431022, 6.59197776669]}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd86dfb9405d710af4441b26369a53df0c66bb7", "fields": {"nom_de_la_commune": "FIXEM", "libell_d_acheminement": "FIXEM", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57214"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74382a44fd53927c17567dda8414d4e5e5790a44", "fields": {"code_postal": "57190", "code_commune_insee": "57221", "libell_d_acheminement": "FLORANGE", "ligne_5": "EBANGE", "nom_de_la_commune": "FLORANGE", "coordonnees_gps": [49.3279409342, 6.12312387666]}, "geometry": {"type": "Point", "coordinates": [6.12312387666, 49.3279409342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ec518008bcc2ccdd76c6e361e23e116d8bf8a0", "fields": {"nom_de_la_commune": "FOSSIEUX", "libell_d_acheminement": "FOSSIEUX", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57228"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fded00cbbc853ad90bcd903c5a11ea61c730ea2", "fields": {"nom_de_la_commune": "FREMESTROFF", "libell_d_acheminement": "FREMESTROFF", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57237"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18733c15aecb3401591b3e56e57c8c2020559f1c", "fields": {"nom_de_la_commune": "FREYBOUSE", "libell_d_acheminement": "FREYBOUSE", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57239"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e00fbb1953045aba68b9a72e5817fb718f6144", "fields": {"nom_de_la_commune": "FREYMING MERLEBACH", "libell_d_acheminement": "FREYMING MERLEBACH", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57240"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b9cfc55c7345bd10ca240daa7314e60d23e892", "fields": {"nom_de_la_commune": "MESSERY", "libell_d_acheminement": "MESSERY", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74180"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aace89d7dda206d5ad0c107a0643ae2679d8554f", "fields": {"code_postal": "74440", "code_commune_insee": "74183", "libell_d_acheminement": "MIEUSSY", "ligne_5": "SOMMAND", "nom_de_la_commune": "MIEUSSY", "coordonnees_gps": [46.1230411459, 6.600455476]}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb154f1dda74e9b6db9a92917ba1f70debbeb3f1", "fields": {"nom_de_la_commune": "MONNETIER MORNEX", "libell_d_acheminement": "MONNETIER MORNEX", "code_postal": "74560", "coordonnees_gps": [46.1345324619, 6.20396278518], "code_commune_insee": "74185"}, "geometry": {"type": "Point", "coordinates": [6.20396278518, 46.1345324619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3575449a468573fc2560c1a84c8b98143bd7c8d3", "fields": {"nom_de_la_commune": "MORILLON", "libell_d_acheminement": "MORILLON", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74190"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb17720811f3697b7735a1cda9cd4340f4b212fe", "fields": {"nom_de_la_commune": "MORZINE", "libell_d_acheminement": "MORZINE", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74191"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988420477901a9e7fa79f429fae970bb97c3d3e1", "fields": {"nom_de_la_commune": "NANCY SUR CLUSES", "libell_d_acheminement": "NANCY SUR CLUSES", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74196"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3810b4240437c6b805f773cd151a5240472990", "fields": {"nom_de_la_commune": "NEYDENS", "libell_d_acheminement": "NEYDENS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74201"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1119ff146a0450d0054bbecdf07b5b86f3f81afa", "fields": {"nom_de_la_commune": "NOVEL", "libell_d_acheminement": "NOVEL", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74203"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c22cd0b313f602bf5aacb2aab696c6b30378309", "fields": {"nom_de_la_commune": "ONNION", "libell_d_acheminement": "ONNION", "code_postal": "74490", "coordonnees_gps": [46.1756757633, 6.49134958977], "code_commune_insee": "74205"}, "geometry": {"type": "Point", "coordinates": [6.49134958977, 46.1756757633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9d79ccf415d97c800cec081cd3a4e9c03b7a7d", "fields": {"code_postal": "74190", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "CHEDDE", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6958f5891d92fa7a27061375522c6012eb063c6", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "74480", "coordonnees_gps": [45.9541023994, 6.74002173102], "code_commune_insee": "74208"}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff892096c5d19c633bffcb7727ee4bbf88bcb95e", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "GUEBRIANT", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f17ed803bd4776a0efb78b495ea70126a4e2746", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "PLATEAU D ASSY", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9c3ae4e74a18e6bf54b54f3c46217daee82fb1", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "PRAZ COUTANT", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77dce03039f6a6bb6eb84cafd4bfc0a761a49938", "fields": {"nom_de_la_commune": "LE PETIT BORNAND LES GLIERES", "libell_d_acheminement": "LE PETIT BORNAND LES GLIERES", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74212"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b628ba09bd8d7eb28336e8d7ff28b5beaa60a794", "fields": {"nom_de_la_commune": "LE REPOSOIR", "libell_d_acheminement": "LE REPOSOIR", "code_postal": "74950", "coordonnees_gps": [46.0082365533, 6.53107760543], "code_commune_insee": "74221"}, "geometry": {"type": "Point", "coordinates": [6.53107760543, 46.0082365533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bcd918b5431525acbc7e2e064262ca66057082c", "fields": {"nom_de_la_commune": "LA RIVIERE ENVERSE", "libell_d_acheminement": "LA RIVIERE ENVERSE", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74223"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733962e8e50a68708929d3b0c2e2780c2f91081f", "fields": {"nom_de_la_commune": "ST BLAISE", "libell_d_acheminement": "ST BLAISE", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74228"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d4cab2023213d6fea8730fb161b975bef44f6e", "fields": {"nom_de_la_commune": "ST GINGOLPH", "libell_d_acheminement": "ST GINGOLPH", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74237"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210861c4ce052e234c6a36f94fc4ba6ca35349c7", "fields": {"nom_de_la_commune": "ST JEAN DE SIXT", "libell_d_acheminement": "ST JEAN DE SIXT", "code_postal": "74450", "coordonnees_gps": [45.9510244124, 6.46516169644], "code_commune_insee": "74239"}, "geometry": {"type": "Point", "coordinates": [6.46516169644, 45.9510244124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5a3deb1f4c93bbf42e4dd2d857db486c2f970f", "fields": {"code_postal": "74700", "code_commune_insee": "74256", "libell_d_acheminement": "SALLANCHES", "ligne_5": "ST MARTIN SUR ARVE", "nom_de_la_commune": "SALLANCHES", "coordonnees_gps": [45.935449139, 6.60325360691]}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990f802db29226c73cffc8377f60d4d5ef5ba3dd", "fields": {"nom_de_la_commune": "LE SAPPEY", "libell_d_acheminement": "LE SAPPEY", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74259"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f4d0d9089e341f321b3b90b4cfab53093d9a70", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74260"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b239ed40d20e651e85756ca6540c39040cf41f5b", "fields": {"nom_de_la_commune": "SCIONZIER", "libell_d_acheminement": "SCIONZIER", "code_postal": "74950", "coordonnees_gps": [46.0082365533, 6.53107760543], "code_commune_insee": "74264"}, "geometry": {"type": "Point", "coordinates": [6.53107760543, 46.0082365533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7acf4424a000e6cbe7b37edfb3f074dcc27e557", "fields": {"nom_de_la_commune": "SEVRIER", "libell_d_acheminement": "SEVRIER", "code_postal": "74320", "coordonnees_gps": [45.8239490995, 6.13040612196], "code_commune_insee": "74267"}, "geometry": {"type": "Point", "coordinates": [6.13040612196, 45.8239490995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af45aac2f03ba12e7c9f31f9d862aec0510f33ee", "fields": {"nom_de_la_commune": "SIXT FER A CHEVAL", "libell_d_acheminement": "SIXT FER A CHEVAL", "code_postal": "74740", "coordonnees_gps": [46.0540293114, 6.81235489763], "code_commune_insee": "74273"}, "geometry": {"type": "Point", "coordinates": [6.81235489763, 46.0540293114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e0584a94917280f035e601a93ebbb81f59b071", "fields": {"nom_de_la_commune": "VAL DE FIER", "libell_d_acheminement": "VAL DE FIER", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74274"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23b49e446129f3b7782c9bcd6e75c6f7e2212dc", "fields": {"nom_de_la_commune": "THONES", "libell_d_acheminement": "THONES", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74280"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157e61bb6a0722e9e78be405a9f407f4214b1050", "fields": {"code_postal": "74200", "code_commune_insee": "74281", "libell_d_acheminement": "THONON LES BAINS", "ligne_5": "VONGY", "nom_de_la_commune": "THONON LES BAINS", "coordonnees_gps": [46.3412678337, 6.50524347796]}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4ea51abb39b0fdf9bdcad2a436e7119c15275a", "fields": {"nom_de_la_commune": "VALLORCINE", "libell_d_acheminement": "VALLORCINE", "code_postal": "74660", "coordonnees_gps": [46.0257105218, 6.90034904992], "code_commune_insee": "74290"}, "geometry": {"type": "Point", "coordinates": [6.90034904992, 46.0257105218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973dacced56c012461cd2c14ba67b4551718849a", "fields": {"nom_de_la_commune": "VERCHAIX", "libell_d_acheminement": "VERCHAIX", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74294"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7f87d94edee946ac5b451d704937f272dc7e45f", "fields": {"nom_de_la_commune": "LES VILLARDS SUR THONES", "libell_d_acheminement": "LES VILLARDS SUR THONES", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74302"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a002a9f2b89f3d1dfb0a90644af71ebf4b8fdac8", "fields": {"nom_de_la_commune": "YVOIRE", "libell_d_acheminement": "YVOIRE", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74315"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64a6fdf4f3bfda4b28638eee829777c5b958ce0", "fields": {"nom_de_la_commune": "PARIS 03", "libell_d_acheminement": "PARIS", "code_postal": "75003", "coordonnees_gps": [48.8630306677, 2.35966713643], "code_commune_insee": "75103"}, "geometry": {"type": "Point", "coordinates": [2.35966713643, 48.8630306677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c8b4d5287b749c2974a397c724e57da8ed9371", "fields": {"nom_de_la_commune": "PARIS 07", "libell_d_acheminement": "PARIS", "code_postal": "75007", "coordonnees_gps": [48.8561051636, 2.31254406306], "code_commune_insee": "75107"}, "geometry": {"type": "Point", "coordinates": [2.31254406306, 48.8561051636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ffeba14415b161c6d5a60a08b5783ecf85d9e4", "fields": {"nom_de_la_commune": "PARIS 19", "libell_d_acheminement": "PARIS", "code_postal": "75019", "coordonnees_gps": [48.8868704923, 2.38465309568], "code_commune_insee": "75119"}, "geometry": {"type": "Point", "coordinates": [2.38465309568, 48.8868704923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f859b0de339c07d9cd69af9e9112956e5e195aed", "fields": {"nom_de_la_commune": "ALVIMARE", "libell_d_acheminement": "ALVIMARE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76002"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c74b2966a4174d0792ab0bc7dda97c6cc1b4515", "fields": {"nom_de_la_commune": "ANCOURTEVILLE SUR HERICOURT", "libell_d_acheminement": "ANCOURTEVILLE SUR HERICOURT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76009"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a3a5703cbce2ad641891a4191226b526f92a6a", "fields": {"nom_de_la_commune": "ANGLESQUEVILLE L ESNEVAL", "libell_d_acheminement": "ANGLESQUEVILLE L ESNEVAL", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76017"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fccb9bed2c0679f3e9c08e7f64b7ce8bd019db", "fields": {"nom_de_la_commune": "VAL DE SAANE", "libell_d_acheminement": "VAL DE SAANE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76018"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed58f92a47ae17c228b763e3e7457d13f8773a01", "fields": {"nom_de_la_commune": "ANNEVILLE SUR SCIE", "libell_d_acheminement": "ANNEVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76019"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a492f63271ad5b61f6ca956ec503f0c6715e7029", "fields": {"code_postal": "76480", "code_commune_insee": "76020", "libell_d_acheminement": "ANNEVILLE AMBOURVILLE", "ligne_5": "AMBOURVILLE", "nom_de_la_commune": "ANNEVILLE AMBOURVILLE", "coordonnees_gps": [49.4756537781, 0.881261828892]}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2cb55b6423f52f4444ea54907a951d35aa45cc", "fields": {"nom_de_la_commune": "ANQUETIERVILLE", "libell_d_acheminement": "ANQUETIERVILLE", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76022"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec50104f5349d53c1ae28d4fadd6785ff647792", "fields": {"nom_de_la_commune": "AUBERMESNIL AUX ERABLES", "libell_d_acheminement": "AUBERMESNIL AUX ERABLES", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76029"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4767070acb86f873fd26a8419f494606a86bc2a", "fields": {"nom_de_la_commune": "AUTHIEUX RATIEVILLE", "libell_d_acheminement": "AUTHIEUX RATIEVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76038"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e45aa43dd1a9097901ec3681919714444e562f3", "fields": {"nom_de_la_commune": "AVESNES EN BRAY", "libell_d_acheminement": "AVESNES EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76048"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5057cd58c50b72aa38bd67ace3e1250c20c86347", "fields": {"nom_de_la_commune": "AVREMESNIL", "libell_d_acheminement": "AVREMESNIL", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76050"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25190717fb140ae4b5262155cdde2b728736835d", "fields": {"nom_de_la_commune": "BELLENGREVILLE", "libell_d_acheminement": "BELLENGREVILLE", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76071"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6207a8f3e7625b1a67465ad74982dff520514c0b", "fields": {"nom_de_la_commune": "BELLEVILLE EN CAUX", "libell_d_acheminement": "BELLEVILLE EN CAUX", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76072"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51922993591e3749e30dcd961932f99cc3045386", "fields": {"nom_de_la_commune": "BENESVILLE", "libell_d_acheminement": "BENESVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76077"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "552554ebabde2eeb42119ee5d4e30f1b3778fe59", "fields": {"nom_de_la_commune": "BERMONVILLE", "libell_d_acheminement": "BERMONVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76080"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65222242051382629a1e47ab30007786cf10e3f9", "fields": {"nom_de_la_commune": "BERNIERES", "libell_d_acheminement": "BERNIERES", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76082"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d75ea4f081a776df7d806569312a1e789597337", "fields": {"nom_de_la_commune": "BERTREVILLE", "libell_d_acheminement": "BERTREVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76084"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83f332c0152e9d712fced109b7063d73499734c7", "fields": {"nom_de_la_commune": "BEUZEVILLE LA GRENIER", "libell_d_acheminement": "BEUZEVILLE LA GRENIER", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76090"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c32f46675effa009a256d9c9fa2c075e3770a9", "fields": {"nom_de_la_commune": "BLAINVILLE CREVON", "libell_d_acheminement": "BLAINVILLE CREVON", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76100"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01c87e0a4cce61a6f59acf400e0aa01df1eb459", "fields": {"nom_de_la_commune": "BOIS GUILLAUME", "libell_d_acheminement": "BOIS GUILLAUME", "code_postal": "76230", "coordonnees_gps": [49.5059681606, 1.15634318194], "code_commune_insee": "76108"}, "geometry": {"type": "Point", "coordinates": [1.15634318194, 49.5059681606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158768cc8128dc34fcedb85e75244a4effd53877", "fields": {"nom_de_la_commune": "LE BOIS ROBERT", "libell_d_acheminement": "LE BOIS ROBERT", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76112"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca569017d960558f8272a4750652692421b8ade", "fields": {"nom_de_la_commune": "BORNAMBUSC", "libell_d_acheminement": "BORNAMBUSC", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76118"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3341b9e1c22e23c830653fd441d8492fcf6fb2c1", "fields": {"nom_de_la_commune": "BOSC HYONS", "libell_d_acheminement": "BOSC HYONS", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76124"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d5ee2bef4864b7a038bd54851c2d94e5fabbda", "fields": {"nom_de_la_commune": "BOSC LE HARD", "libell_d_acheminement": "BOSC LE HARD", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76125"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a59ef65c5e10656d7f2a5f4190892e11f0624c", "fields": {"nom_de_la_commune": "BOSC ROGER SUR BUCHY", "libell_d_acheminement": "BOSC ROGER SUR BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76127"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cded64fbbd730162efd10e4ef4bb36bec3659a8d", "fields": {"nom_de_la_commune": "BOUELLES", "libell_d_acheminement": "BOUELLES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76130"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d05f6bdce113ff9081c4bdeba9210570dc93f0", "fields": {"nom_de_la_commune": "LA BOUILLE", "libell_d_acheminement": "LA BOUILLE", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76131"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bad0cf505828ede28149814ff55924a838e26a6", "fields": {"nom_de_la_commune": "BOURDAINVILLE", "libell_d_acheminement": "BOURDAINVILLE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76132"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582e8be23c31fa2aa547117a9c88135044c3874d", "fields": {"nom_de_la_commune": "BRETTEVILLE DU GRAND CAUX", "libell_d_acheminement": "BRETTEVILLE DU GRAND CAUX", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76143"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d9f723a92781ae3c4bf8eb15bafb6d9c47549a", "fields": {"nom_de_la_commune": "BUTOT", "libell_d_acheminement": "BUTOT", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76149"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "772192f4da293ee06550c9166d7f218014b26a58", "fields": {"nom_de_la_commune": "CAILLEVILLE", "libell_d_acheminement": "CAILLEVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76151"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a390529d4bf1dad9d0d92bedf5be001e1dc4ed09", "fields": {"nom_de_la_commune": "CANOUVILLE", "libell_d_acheminement": "CANOUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76156"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cd128c7625ea30922868a2a3832caf8ded7f56", "fields": {"code_postal": "76380", "code_commune_insee": "76157", "libell_d_acheminement": "CANTELEU", "ligne_5": "BAPEAUME LES ROUEN", "nom_de_la_commune": "CANTELEU", "coordonnees_gps": [49.425520648, 1.00384964963]}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca8e593f2293fa2abb1a1bd109c88a406699b56", "fields": {"code_postal": "76380", "code_commune_insee": "76157", "libell_d_acheminement": "CANTELEU", "ligne_5": "DIEPPEDALLE CROISSET", "nom_de_la_commune": "CANTELEU", "coordonnees_gps": [49.425520648, 1.00384964963]}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646dc22eebacdc91dedfa824c08a4787b696d82d", "fields": {"nom_de_la_commune": "LES CENT ACRES", "libell_d_acheminement": "LES CENT ACRES", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76168"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31053f7510709e7d776e666ca6ef569efd0748b3", "fields": {"nom_de_la_commune": "LA CERLANGUE", "libell_d_acheminement": "LA CERLANGUE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76169"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1eb975377846fdaa7b8422fd008d689caee286", "fields": {"nom_de_la_commune": "CLASVILLE", "libell_d_acheminement": "CLASVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76176"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf35d95f0d3dda2e15944fd1c4b02f9c46b8f7b", "fields": {"nom_de_la_commune": "CLAVILLE MOTTEVILLE", "libell_d_acheminement": "CLAVILLE MOTTEVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76177"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "727e0e8f2513dfaa7217038c221c579543115bfb", "fields": {"nom_de_la_commune": "CLEON", "libell_d_acheminement": "CLEON", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76178"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89c2a583c2414c5d5ee99c67b15c6e959522018", "fields": {"nom_de_la_commune": "CLERES", "libell_d_acheminement": "CLERES", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76179"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f720663167f6e0b699f689d2ab49d9f1fad51039", "fields": {"nom_de_la_commune": "COLLEVILLE", "libell_d_acheminement": "COLLEVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76183"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa521fe29a89df9411b1debd57e3f788832afbdd", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76186"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9790b175caaaaa417d23d92fde3913afd249832b", "fields": {"nom_de_la_commune": "CROISY SUR ANDELLE", "libell_d_acheminement": "CROISY SUR ANDELLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76201"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dabc2bfca4ec2acd8474368462a1d197ca85d8ae", "fields": {"nom_de_la_commune": "CROPUS", "libell_d_acheminement": "CROPUS", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76204"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc4222c22c92d53477587a3f56003cac9a985f6", "fields": {"nom_de_la_commune": "CROSVILLE SUR SCIE", "libell_d_acheminement": "CROSVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76205"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3b03ad550c9ada3c66388b4d5fdeda17b97015", "fields": {"nom_de_la_commune": "CUVERVILLE SUR YERES", "libell_d_acheminement": "CUVERVILLE SUR YERES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76207"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0739ccd108b25d38e8f08ef89ae32a8c7d28a7", "fields": {"nom_de_la_commune": "DENESTANVILLE", "libell_d_acheminement": "DENESTANVILLE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76214"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f5ad127a2a5edefe9efb390b787a258bf878be", "fields": {"nom_de_la_commune": "DIEPPE", "libell_d_acheminement": "DIEPPE", "code_postal": "76200", "coordonnees_gps": [49.9220322134, 1.08701833857], "code_commune_insee": "76217"}, "geometry": {"type": "Point", "coordinates": [1.08701833857, 49.9220322134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6f66c972daa7818a083b914d8d392cdb03d38c", "fields": {"nom_de_la_commune": "DIEPPE", "libell_d_acheminement": "DIEPPE", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76217"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5852917f9953c6c1bb9550ed52d48da15820aff5", "fields": {"code_postal": "76370", "code_commune_insee": "76217", "libell_d_acheminement": "DIEPPE", "ligne_5": "NEUVILLE LES DIEPPE", "nom_de_la_commune": "DIEPPE", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc154c3857289b104284cfe739a56228c5818ca8", "fields": {"nom_de_la_commune": "DOUDEAUVILLE", "libell_d_acheminement": "DOUDEAUVILLE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76218"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094b25c1d1bc010e16a340a8c70f6663c176f016", "fields": {"nom_de_la_commune": "DROSAY", "libell_d_acheminement": "DROSAY", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76221"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04dc2231c094a8ea6053a2536f94a801cd8a5728", "fields": {"nom_de_la_commune": "EPOUVILLE", "libell_d_acheminement": "EPOUVILLE", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76238"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30966a34f6528eea7361cb906cd835bdf587e9bc", "fields": {"nom_de_la_commune": "EPREVILLE", "libell_d_acheminement": "EPREVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76240"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc4218faff0e203f588496746ea761922d33f11", "fields": {"nom_de_la_commune": "ERNEMONT SUR BUCHY", "libell_d_acheminement": "ERNEMONT SUR BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76243"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4293f6262e094c6da70aca1f722483af96de5d95", "fields": {"nom_de_la_commune": "ETOUTTEVILLE", "libell_d_acheminement": "ETOUTTEVILLE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76253"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f321715389b5ec7917be9e8a01790ed868471b", "fields": {"nom_de_la_commune": "FALLENCOURT", "libell_d_acheminement": "FALLENCOURT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76257"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9deb9cc12fa451ba274f61f04f2c6a187ae648c4", "fields": {"nom_de_la_commune": "FAUVILLE EN CAUX", "libell_d_acheminement": "FAUVILLE EN CAUX", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76258"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e49ce93aa7aa37801b286565cc4e2263f1b08d6c", "fields": {"nom_de_la_commune": "FECAMP", "libell_d_acheminement": "FECAMP", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76259"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ae6032f12ef8b1794333f4bbba484ca1f287ab2", "fields": {"nom_de_la_commune": "FONTAINE EN BRAY", "libell_d_acheminement": "FONTAINE EN BRAY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76269"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d04f07665c072243ee6198e7e1bf46e9b2bee2", "fields": {"nom_de_la_commune": "FOUCART", "libell_d_acheminement": "FOUCART", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76279"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8639a023eea426b5f4d6e30530582c8ed4ed98f", "fields": {"nom_de_la_commune": "FRENEUSE", "libell_d_acheminement": "FRENEUSE", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76282"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab8390621a13737423ad37681279307f9f43b2f", "fields": {"nom_de_la_commune": "FREULLEVILLE", "libell_d_acheminement": "FREULLEVILLE", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76288"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7446775da83dda2df9eb84326fde7ed3a0ce23d7", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "FREVILLE", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11071c1428cdb5576acd36fd92b425b6ec5d4af0", "fields": {"code_postal": "55500", "code_commune_insee": "55472", "libell_d_acheminement": "SAULVAUX", "ligne_5": "VAUX LA PETITE", "nom_de_la_commune": "SAULVAUX", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd66061ad182df505c10de0e8132c5467760b6a0", "fields": {"nom_de_la_commune": "SENON", "libell_d_acheminement": "SENON", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55481"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bac93f2962b589b6c59923b8bc40f90654d0239", "fields": {"nom_de_la_commune": "SIVRY LA PERCHE", "libell_d_acheminement": "SIVRY LA PERCHE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55489"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2d074dca2f294320d6096f7e0f76e716f3a019", "fields": {"nom_de_la_commune": "SOMMEDIEUE", "libell_d_acheminement": "SOMMEDIEUE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55492"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3747c18a9760d85fd670bc55e4b8ca586d660b", "fields": {"nom_de_la_commune": "SORBEY", "libell_d_acheminement": "SORBEY", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55495"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c140842c3b3252c80ee484da06a02ac6f535a1a", "fields": {"nom_de_la_commune": "LES SOUHESMES RAMPONT", "libell_d_acheminement": "LES SOUHESMES RAMPONT", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55497"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21dfd881b813bc777bedb40d283cba6edccf5f79", "fields": {"nom_de_la_commune": "SPINCOURT", "libell_d_acheminement": "SPINCOURT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55500"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ea060cf433e847f2d88f2a626366bbe0d73126", "fields": {"nom_de_la_commune": "THONNE LA LONG", "libell_d_acheminement": "THONNE LA LONG", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55508"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5e5666270c980aa352078e06ce64cfb911d5217", "fields": {"nom_de_la_commune": "TILLY SUR MEUSE", "libell_d_acheminement": "TILLY SUR MEUSE", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55512"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b924555fe1b63b695fbe64501774d15ea172c0ac", "fields": {"nom_de_la_commune": "TRESAUVAUX", "libell_d_acheminement": "TRESAUVAUX", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55515"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8423f0759a1fba74c587ee5bdc870a171312ae", "fields": {"nom_de_la_commune": "VARENNES EN ARGONNE", "libell_d_acheminement": "VARENNES EN ARGONNE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55527"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9bd3a96be35baf24d5e25b7fc971862367233e", "fields": {"nom_de_la_commune": "VASSINCOURT", "libell_d_acheminement": "VASSINCOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55531"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892270f793bc13741b8f28d9040670cb6398ea46", "fields": {"nom_de_la_commune": "VAUCOULEURS", "libell_d_acheminement": "VAUCOULEURS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55533"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee26fc9ea9d499daa025d069b058b484719c3cd", "fields": {"nom_de_la_commune": "VAUQUOIS", "libell_d_acheminement": "VAUQUOIS", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55536"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff18c153e05308f2bd321a81d4e52231ca53892", "fields": {"nom_de_la_commune": "VELAINES", "libell_d_acheminement": "VELAINES", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55543"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e024f69b8f6943a55556870f4e70004717a14f01", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "HATTONVILLE", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "169d5c0dc1653c8b8062e22a081d3664832b8840", "fields": {"nom_de_la_commune": "VILLECLOYE", "libell_d_acheminement": "VILLECLOYE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55554"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2884e3e9dedadb6e58b008ffcdb30f56064c445", "fields": {"nom_de_la_commune": "VILLOTTE DEVANT LOUPPY", "libell_d_acheminement": "VILLOTTE DEVANT LOUPPY", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55569"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0deb148ba698ab66d03af82a443b3526c273c024", "fields": {"nom_de_la_commune": "VILLOTTE SUR AIRE", "libell_d_acheminement": "VILLOTTE SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55570"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602fbfb28c181684a9e5cf4c9d1696f923f9a081", "fields": {"nom_de_la_commune": "VOUTHON HAUT", "libell_d_acheminement": "VOUTHON HAUT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55575"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c24be8633d0c6611e2e804e76654f8c45a5fc1", "fields": {"nom_de_la_commune": "AUGAN", "libell_d_acheminement": "AUGAN", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56006"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef7c08ef4eee01c5313fa6bf8c773c0b9286d2be", "fields": {"nom_de_la_commune": "BIGNAN", "libell_d_acheminement": "BIGNAN", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56017"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c288e2f436a694df95c7e767a26d74d31f350e1", "fields": {"nom_de_la_commune": "BRANDERION", "libell_d_acheminement": "BRANDERION", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56021"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e97b37f88fb4b3bcbf40c898e0bcfcf46a1ae0", "fields": {"nom_de_la_commune": "BRIGNAC", "libell_d_acheminement": "BRIGNAC", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56025"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbd86136d7da9cee49cebcf611b92e30e9f2f98", "fields": {"nom_de_la_commune": "CADEN", "libell_d_acheminement": "CADEN", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56028"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba3db71b6f3c397631d4a19066b1df42e29b7b5", "fields": {"nom_de_la_commune": "CARENTOIR", "libell_d_acheminement": "CARENTOIR", "code_postal": "56910", "coordonnees_gps": [47.8192433861, -2.1438942597], "code_commune_insee": "56033"}, "geometry": {"type": "Point", "coordinates": [-2.1438942597, 47.8192433861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1360ca598c66d313067f454f385582e884bd599", "fields": {"nom_de_la_commune": "CAUDAN", "libell_d_acheminement": "CAUDAN", "code_postal": "56850", "coordonnees_gps": [47.8135717348, -3.34076808827], "code_commune_insee": "56036"}, "geometry": {"type": "Point", "coordinates": [-3.34076808827, 47.8135717348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3c194f142a59055840eb7ded6b61b2ad5e3582", "fields": {"nom_de_la_commune": "CLEGUEREC", "libell_d_acheminement": "CLEGUEREC", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56041"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72f284b90a37aa418356043e861bcf37fc2e197", "fields": {"nom_de_la_commune": "COLPO", "libell_d_acheminement": "COLPO", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56042"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357dcfab8eddd6d1372a7191ca3761510059bf2c", "fields": {"nom_de_la_commune": "CREDIN", "libell_d_acheminement": "CREDIN", "code_postal": "56580", "coordonnees_gps": [48.0645686885, -2.7233749534], "code_commune_insee": "56047"}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e693f1c18b7912bf104190f318120939d78331a", "fields": {"nom_de_la_commune": "GOURIN", "libell_d_acheminement": "GOURIN", "code_postal": "56110", "coordonnees_gps": [48.1237137726, -3.61197294513], "code_commune_insee": "56066"}, "geometry": {"type": "Point", "coordinates": [-3.61197294513, 48.1237137726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cde6eea15f00226c7257bdedf76ba08294e3d15", "fields": {"nom_de_la_commune": "GUEGON", "libell_d_acheminement": "GUEGON", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56070"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbe514844f7a4e84e0e56ee99bd2286050164c5", "fields": {"nom_de_la_commune": "LE GUERNO", "libell_d_acheminement": "LE GUERNO", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56077"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fead168a122c51725d9fcc0fd4dbc2d2016d74", "fields": {"nom_de_la_commune": "GUILLIERS", "libell_d_acheminement": "GUILLIERS", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56080"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a558f9cf1d59111053560ca0464f2132ff6d4c", "fields": {"nom_de_la_commune": "HELLEAN", "libell_d_acheminement": "HELLEAN", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56082"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87d7c6a9285b44ef39aaac61959b60ae2ce6d28", "fields": {"nom_de_la_commune": "ILE D HOUAT", "libell_d_acheminement": "ILE D HOUAT", "code_postal": "56170", "coordonnees_gps": [47.4440195899, -3.0513582744], "code_commune_insee": "56086"}, "geometry": {"type": "Point", "coordinates": [-3.0513582744, 47.4440195899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adb910cf92a26e3b4ca23c7f6e89bda0a487a23", "fields": {"nom_de_la_commune": "ILE AUX MOINES", "libell_d_acheminement": "ILE AUX MOINES", "code_postal": "56780", "coordonnees_gps": [47.5859560902, -2.84883576048], "code_commune_insee": "56087"}, "geometry": {"type": "Point", "coordinates": [-2.84883576048, 47.5859560902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf5746716e18dd56d9947712f718bc9413b48501", "fields": {"nom_de_la_commune": "INGUINIEL", "libell_d_acheminement": "INGUINIEL", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56089"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b33f1a6395f659f1ba062882b83e0855bbfcab", "fields": {"nom_de_la_commune": "JOSSELIN", "libell_d_acheminement": "JOSSELIN", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56091"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c9c060f624733dd68ee80c3f5c7bb82e4451b7", "fields": {"nom_de_la_commune": "KERFOURN", "libell_d_acheminement": "KERFOURN", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56092"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876ef79b6766e33f1a839a3fcf5346121e9a3873", "fields": {"nom_de_la_commune": "LANDAUL", "libell_d_acheminement": "LANDAUL", "code_postal": "56690", "coordonnees_gps": [47.758091509, -3.12551793319], "code_commune_insee": "56096"}, "geometry": {"type": "Point", "coordinates": [-3.12551793319, 47.758091509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b252b74dced5a84dd089b413148af3dcc572f3f", "fields": {"nom_de_la_commune": "LOCOAL MENDON", "libell_d_acheminement": "LOCOAL MENDON", "code_postal": "56550", "coordonnees_gps": [47.6912476193, -3.11969109738], "code_commune_insee": "56119"}, "geometry": {"type": "Point", "coordinates": [-3.11969109738, 47.6912476193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f7c9262657d48878d44cf4f39a3977d073a69a", "fields": {"nom_de_la_commune": "MOHON", "libell_d_acheminement": "MOHON", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56134"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972dc7287904bd0be158f503a2f3b21bde9992e4", "fields": {"nom_de_la_commune": "MOUSTOIR AC", "libell_d_acheminement": "MOUSTOIR AC", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56141"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a08dd7f4ec23c14827938f25fc39f7f58b4ce4", "fields": {"nom_de_la_commune": "MUZILLAC", "libell_d_acheminement": "MUZILLAC", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56143"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "009b11c8cbaf7d37f72171acb0221f6f4a3ef833", "fields": {"nom_de_la_commune": "NEULLIAC", "libell_d_acheminement": "NEULLIAC", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56146"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15cf60a152f5a4ae6906e41e66ca124f2cd7bb7", "fields": {"nom_de_la_commune": "NIVILLAC", "libell_d_acheminement": "NIVILLAC", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56147"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f19d3b6488acfef425cab64e3be52aa60fa44fb", "fields": {"nom_de_la_commune": "PENESTIN", "libell_d_acheminement": "PENESTIN", "code_postal": "56760", "coordonnees_gps": [47.4728827712, -2.46536668814], "code_commune_insee": "56155"}, "geometry": {"type": "Point", "coordinates": [-2.46536668814, 47.4728827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc1b2baf058b0872c663d0554b7f5c1ee8a643b", "fields": {"nom_de_la_commune": "PLESCOP", "libell_d_acheminement": "PLESCOP", "code_postal": "56890", "coordonnees_gps": [47.7007937591, -2.78248862102], "code_commune_insee": "56158"}, "geometry": {"type": "Point", "coordinates": [-2.78248862102, 47.7007937591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03788b0b8608ad42c618c85b569362f634a90c0", "fields": {"nom_de_la_commune": "PLUMELIAU", "libell_d_acheminement": "PLUMELIAU", "code_postal": "56930", "coordonnees_gps": [47.9652143178, -2.98058590653], "code_commune_insee": "56173"}, "geometry": {"type": "Point", "coordinates": [-2.98058590653, 47.9652143178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e45c1c8cd4794b788a265f9b661ed522dcfe58", "fields": {"nom_de_la_commune": "PLUNERET", "libell_d_acheminement": "PLUNERET", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56176"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6910528d9e1e705b59cc6f4c1f18841826861e", "fields": {"nom_de_la_commune": "PLUVIGNER", "libell_d_acheminement": "PLUVIGNER", "code_postal": "56330", "coordonnees_gps": [47.797362476, -3.01124558366], "code_commune_insee": "56177"}, "geometry": {"type": "Point", "coordinates": [-3.01124558366, 47.797362476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f34ba3560b5ba46223bb36e55923921392678f", "fields": {"nom_de_la_commune": "PORT LOUIS", "libell_d_acheminement": "PORT LOUIS", "code_postal": "56290", "coordonnees_gps": [47.7098515691, -3.34971382473], "code_commune_insee": "56181"}, "geometry": {"type": "Point", "coordinates": [-3.34971382473, 47.7098515691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e327bcced9b6c25e94bbb77b754c82c298d96b", "fields": {"nom_de_la_commune": "PRIZIAC", "libell_d_acheminement": "PRIZIAC", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56182"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88d25576bf88a17b099e674a1bb77d79a573fa1", "fields": {"nom_de_la_commune": "QUISTINIC", "libell_d_acheminement": "QUISTINIC", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56188"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfbac180fee1f66784edccd846cf22821d699ef", "fields": {"code_postal": "56800", "code_commune_insee": "56197", "libell_d_acheminement": "VAL D OUST", "ligne_5": "QUILY", "nom_de_la_commune": "VAL D OUST", "coordonnees_gps": [47.9419730138, -2.35837892185]}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5236ad9f50cd548a61486d1d690055838d098a9", "fields": {"code_postal": "56580", "code_commune_insee": "56198", "libell_d_acheminement": "ROHAN", "ligne_5": "ST GOUVRY", "nom_de_la_commune": "ROHAN", "coordonnees_gps": [48.0645686885, -2.7233749534]}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13779ab350b520db8b3f6b0f5dfc79127030ec5", "fields": {"nom_de_la_commune": "RUFFIAC", "libell_d_acheminement": "RUFFIAC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56200"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b843cfb7c680cc53c00504e4e24a9be816d32b5", "fields": {"nom_de_la_commune": "ST ABRAHAM", "libell_d_acheminement": "ST ABRAHAM", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56202"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2741384e33cc3a53dcc40442b9522d0f287b32", "fields": {"nom_de_la_commune": "ST CONGARD", "libell_d_acheminement": "ST CONGARD", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56211"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a68d5b6e218f495cd38020f19221ca61373ee8", "fields": {"nom_de_la_commune": "ST GRAVE", "libell_d_acheminement": "ST GRAVE", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56218"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7828ffb1109dfd8f98508c6c521aeaaab643063", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56228"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dda255664089fbd69c6b5f413b1212acd7e511d", "fields": {"nom_de_la_commune": "ST MARTIN SUR OUST", "libell_d_acheminement": "ST MARTIN SUR OUST", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56229"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb36c97b8a0b7741f895180a8063977a09010ca3", "fields": {"nom_de_la_commune": "ST PERREUX", "libell_d_acheminement": "ST PERREUX", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56232"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b74fcf657741141e8d627db9e922d10f6a56201", "fields": {"nom_de_la_commune": "ST PHILIBERT", "libell_d_acheminement": "ST PHILIBERT", "code_postal": "56470", "coordonnees_gps": [47.589127688, -3.01738513558], "code_commune_insee": "56233"}, "geometry": {"type": "Point", "coordinates": [-3.01738513558, 47.589127688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b5d5ff4be1bc97267f9fe50b455633cab17fd3", "fields": {"nom_de_la_commune": "ST TUGDUAL", "libell_d_acheminement": "ST TUGDUAL", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56238"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6cb5ec6d96279729b9e9c04ca539a15f89f5d6e", "fields": {"nom_de_la_commune": "SEGLIEN", "libell_d_acheminement": "SEGLIEN", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56242"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf750ba3031c86c66b5e3722849ac7d47294872", "fields": {"nom_de_la_commune": "TREFFLEAN", "libell_d_acheminement": "TREFFLEAN", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56255"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb3870f1db7af1a8b099edd2579b55db4e9c390", "fields": {"nom_de_la_commune": "TREHORENTEUC", "libell_d_acheminement": "TREHORENTEUC", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56256"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9714f7de937910c2cc2eec59976b20974579a756", "fields": {"nom_de_la_commune": "LA TRINITE PORHOET", "libell_d_acheminement": "LA TRINITE PORHOET", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56257"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eace34f9cd8f888a17c515f186e1e99df2966e84", "fields": {"nom_de_la_commune": "BONO", "libell_d_acheminement": "LE BONO", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56262"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52352b844d7e84fb110d683776f39e91ed54a9f", "fields": {"nom_de_la_commune": "KERNASCLEDEN", "libell_d_acheminement": "KERNASCLEDEN", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56264"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252ee353be79d9d947461e0c220abd8982d36cb5", "fields": {"nom_de_la_commune": "ABONCOURT", "libell_d_acheminement": "ABONCOURT", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57001"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dab95b1499d5b104f10c897503945e7fbfdc961", "fields": {"nom_de_la_commune": "ADAINCOURT", "libell_d_acheminement": "ADAINCOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57007"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699a367b9a031dc77fe0a6cb75ee639747e08c8c", "fields": {"nom_de_la_commune": "ADELANGE", "libell_d_acheminement": "ADELANGE", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57008"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bc770497cc62783ad7b6ab528f84bff7c2181d", "fields": {"nom_de_la_commune": "ALAINCOURT LA COTE", "libell_d_acheminement": "ALAINCOURT LA COTE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57010"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c626e26c74f91febcc54a1e2eb362d87d5ce4622", "fields": {"nom_de_la_commune": "ALZING", "libell_d_acheminement": "ALZING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57016"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73bfb7b71d816738eec51c3a6f5d24405384e5b1", "fields": {"nom_de_la_commune": "AMNEVILLE", "libell_d_acheminement": "AMNEVILLE LES THERMES", "code_postal": "57360", "coordonnees_gps": [49.2415476274, 6.10299353804], "code_commune_insee": "57019"}, "geometry": {"type": "Point", "coordinates": [6.10299353804, 49.2415476274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cfc9a6a5dc24821e3a576eab85cd5ad72369cb5", "fields": {"nom_de_la_commune": "ATTILLONCOURT", "libell_d_acheminement": "ATTILLONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57036"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc804783e8c4df7a108f2556ce442407bbe988a", "fields": {"nom_de_la_commune": "AULNOIS SUR SEILLE", "libell_d_acheminement": "AULNOIS SUR SEILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57040"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11877d711ebee8a35b6aee90f7f21b3fdf44e05", "fields": {"nom_de_la_commune": "BAMBIDERSTROFF", "libell_d_acheminement": "BAMBIDERSTROFF", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57047"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cff3e69625bef1814faea5ad3f2998a7537660", "fields": {"nom_de_la_commune": "BARONVILLE", "libell_d_acheminement": "BARONVILLE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57051"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43498223cf15f8453852fdd59a925b8dbca621f7", "fields": {"nom_de_la_commune": "BEHREN LES FORBACH", "libell_d_acheminement": "BEHREN LES FORBACH", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57058"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d939e1a63b0b4019f1426b3bf8b589d2876f53f", "fields": {"nom_de_la_commune": "BENESTROFF", "libell_d_acheminement": "BENESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57060"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57aba098f23a987030a953f2d76bec7fc351ae5", "fields": {"nom_de_la_commune": "BERIG VINTRANGE", "libell_d_acheminement": "BERIG VINTRANGE", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57063"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab09d2ae29b586c0f3968ec55a70ad5fbdff066", "fields": {"nom_de_la_commune": "BERTHELMING", "libell_d_acheminement": "BERTHELMING", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57066"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46250ffad99671ea8ee775ff2644e033cefe5845", "fields": {"nom_de_la_commune": "BETTANGE", "libell_d_acheminement": "BETTANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57070"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882a8798a66a3740d75afa30c4561fc5ad9ae1f4", "fields": {"nom_de_la_commune": "BIDESTROFF", "libell_d_acheminement": "BIDESTROFF", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57081"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc711a8112944075d14653af414694a84e166ad6", "fields": {"code_postal": "57930", "code_commune_insee": "57086", "libell_d_acheminement": "BELLES FORETS", "ligne_5": "ANGVILLER LES BISPING", "nom_de_la_commune": "BELLES FORETS", "coordonnees_gps": [48.8282440547, 6.97722303236]}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ddd8fc5645a86615fb53c6cf80e88c63eeba38", "fields": {"nom_de_la_commune": "BISTEN EN LORRAINE", "libell_d_acheminement": "BISTEN EN LORRAINE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57087"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3c304c691e676b5fb5a8924f7942f8c9a6e23c", "fields": {"nom_de_la_commune": "BLIESBRUCK", "libell_d_acheminement": "BLIESBRUCK", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57091"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105857e30419a9d8bd66053134f6cd00d4870381", "fields": {"nom_de_la_commune": "BLIES EBERSING", "libell_d_acheminement": "BLIES EBERSING", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57092"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814280d41b977c04d15ebf109efef4f032491bb1", "fields": {"nom_de_la_commune": "BLIES GUERSVILLER", "libell_d_acheminement": "BLIES GUERSVILLER", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57093"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d30e3204dc174888f6feccc41a42c2592acee72", "fields": {"nom_de_la_commune": "BOURSCHEID", "libell_d_acheminement": "BOURSCHEID", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57100"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bfe9b76cf776ed9b01bb18faca1516dcd07c92", "fields": {"nom_de_la_commune": "BOUSSEVILLER", "libell_d_acheminement": "BOUSSEVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57103"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25cf2e488b120582f6c4a0a1c4e31cfd51436a0f", "fields": {"nom_de_la_commune": "BOUST", "libell_d_acheminement": "BOUST", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57104"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94886fa0dec82c3ed606933ce7b57b19c655f8e", "fields": {"nom_de_la_commune": "CATTENOM", "libell_d_acheminement": "CATTENOM", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57124"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bf5dc33f88834a2b0ca55d9e34aabe66e06dfd", "fields": {"nom_de_la_commune": "CHATEAU BREHAIN", "libell_d_acheminement": "CHATEAU BREHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57130"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e8fe4cf0645c8ef6a85d2fc504e115ec45281fe", "fields": {"nom_de_la_commune": "CHATEAU ROUGE", "libell_d_acheminement": "CHATEAU ROUGE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57131"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab493c27dc5fa7d5dd4a4eff38d1787321a5a81", "fields": {"nom_de_la_commune": "CHEMERY LES DEUX", "libell_d_acheminement": "CHEMERY LES DEUX", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57136"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ce4cb779381da293829a6ff1a861ecd014f5bc", "fields": {"code_postal": "52240", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "LENIZEUL", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [48.0703177579, 5.52769658592]}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a298e97f4554dda1a68798688ee361ef3b82203", "fields": {"code_postal": "52800", "code_commune_insee": "52353", "libell_d_acheminement": "NOGENT", "ligne_5": "ESSEY LES EAUX", "nom_de_la_commune": "NOGENT", "coordonnees_gps": [48.0321546961, 5.30922833367]}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988db43b539e700d504e9609762b511ffb4bd78f", "fields": {"code_postal": "52800", "code_commune_insee": "52353", "libell_d_acheminement": "NOGENT", "ligne_5": "ODIVAL", "nom_de_la_commune": "NOGENT", "coordonnees_gps": [48.0321546961, 5.30922833367]}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e611d1729746d518499b90632e1434c638508a", "fields": {"nom_de_la_commune": "NOMECOURT", "libell_d_acheminement": "NOMECOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52356"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6a627a8717777f65aefa8a251c3627a91c9694", "fields": {"nom_de_la_commune": "ORCEVAUX", "libell_d_acheminement": "ORCEVAUX", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52364"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaadf6207d16acbeea1f29302c2b097ac31bac8c", "fields": {"nom_de_la_commune": "ORMANCEY", "libell_d_acheminement": "ORMANCEY", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52366"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249e25e3bddec9df5e30ccfa65cad32cacbc226f", "fields": {"nom_de_la_commune": "ORQUEVAUX", "libell_d_acheminement": "ORQUEVAUX", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52369"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b13686774b0f6b5c152220bc47ed588b98631a7", "fields": {"nom_de_la_commune": "OUTREMECOURT", "libell_d_acheminement": "OUTREMECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52372"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6937893e1b85eff44e3e82072515deb4a0fbfa13", "fields": {"nom_de_la_commune": "OZIERES", "libell_d_acheminement": "OZIERES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52373"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "384ca3225952f7b0c631fa26598bff5ce6958f7a", "fields": {"nom_de_la_commune": "PARNOY EN BASSIGNY", "libell_d_acheminement": "PARNOY EN BASSIGNY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52377"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60db9453581f2d1a2bca98ffb5cedf4a9276d51", "fields": {"nom_de_la_commune": "PAROY SUR SAULX", "libell_d_acheminement": "PAROY SUR SAULX", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52378"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a38a22572719ddc58c400c4f98b98c06ccd6c60f", "fields": {"nom_de_la_commune": "PEIGNEY", "libell_d_acheminement": "PEIGNEY", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52380"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13011d6054580ef6e94d23f439f74eacca34b35", "fields": {"nom_de_la_commune": "PERRANCEY LES VIEUX MOULINS", "libell_d_acheminement": "PERRANCEY LES VIEUX MOULINS", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52383"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0d531ac5f69babe5a84c05c4025f5cebc5aca8", "fields": {"nom_de_la_commune": "PERTHES", "libell_d_acheminement": "PERTHES", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52386"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9f3169bb1c8773c1c43f408aed402a6f7080db", "fields": {"nom_de_la_commune": "PIERREMONT SUR AMANCE", "libell_d_acheminement": "PIERREMONT SUR AMANCE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52388"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844425872a6c947c810e7fb7e40bd97815d53b58", "fields": {"nom_de_la_commune": "PISSELOUP", "libell_d_acheminement": "PISSELOUP", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52390"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f276df3cac8f79d65ee714a5f333b1526b65cd3b", "fields": {"nom_de_la_commune": "POINSENOT", "libell_d_acheminement": "POINSENOT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52393"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72d571722020bd20c709ab012bfa22f3687d32b", "fields": {"nom_de_la_commune": "PONT LA VILLE", "libell_d_acheminement": "PONT LA VILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52399"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c37d13248524c5f358bc5d1fc9a34a8182d4d3a", "fields": {"code_postal": "52190", "code_commune_insee": "52405", "libell_d_acheminement": "LE MONTSAUGEONNAIS", "ligne_5": "PRAUTHOY", "nom_de_la_commune": "LE MONTSAUGEONNAIS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b0f228d58e44028cf91347a6e5981fd8687e27", "fields": {"nom_de_la_commune": "RICHEBOURG", "libell_d_acheminement": "RICHEBOURG", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52422"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d50db3b5c12b19b509130462d7fd42c0a06c37", "fields": {"code_postal": "52210", "code_commune_insee": "52431", "libell_d_acheminement": "ROCHETAILLEE", "ligne_5": "CHAMEROY", "nom_de_la_commune": "ROCHETAILLEE", "coordonnees_gps": [47.9325249173, 5.04140809229]}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61b886cc827d96869569b346635d5489e8fd07fa", "fields": {"code_postal": "52260", "code_commune_insee": "52432", "libell_d_acheminement": "ROLAMPONT", "ligne_5": "CHARMOILLES", "nom_de_la_commune": "ROLAMPONT", "coordonnees_gps": [47.9429449859, 5.2580157459]}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b3682e90c349ca024a23985b36cf3433f2e46e", "fields": {"nom_de_la_commune": "ROUGEUX", "libell_d_acheminement": "ROUGEUX", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52438"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaef440028ca6cbaafae4ddd14fc8c265c328a9e", "fields": {"nom_de_la_commune": "RUPT", "libell_d_acheminement": "RUPT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52442"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b61c4a56482c404ed0aada76db5b01428b0b67", "fields": {"nom_de_la_commune": "SAINTS GEOSMES", "libell_d_acheminement": "SAINTS GEOSMES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52449"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b93ec6b4686342ab865f39b1345f481a1c5593", "fields": {"nom_de_la_commune": "ST LOUP SUR AUJON", "libell_d_acheminement": "ST LOUP SUR AUJON", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52450"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a4843fac88c0776f472911edf07c49e8258681", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52453"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35813598040b05fb2b1b68724448b81faf95eb3", "fields": {"nom_de_la_commune": "SEMOUTIERS MONTSAON", "libell_d_acheminement": "SEMOUTIERS MONTSAON", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52469"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88762195534b25d9cd7dfa818a846252e2425eec", "fields": {"nom_de_la_commune": "SUZANNECOURT", "libell_d_acheminement": "SUZANNECOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52484"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2e47264761613f83c28d3bf1e6efa96d4c1bd7", "fields": {"nom_de_la_commune": "TERNAT", "libell_d_acheminement": "TERNAT", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52486"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6060cd9466963ad7d6574d447c6660214710529", "fields": {"nom_de_la_commune": "TORCENAY", "libell_d_acheminement": "TORCENAY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52492"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca2ccde2d1357f9523a9b26f83b0b8766b2b88b", "fields": {"nom_de_la_commune": "TORNAY", "libell_d_acheminement": "TORNAY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52493"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b2e70b5b40f175f59d16d725d434fd57704a9b", "fields": {"nom_de_la_commune": "TREMILLY", "libell_d_acheminement": "TREMILLY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52495"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b9c2f2112b7a01268c14e4df2d4ee178994e81", "fields": {"nom_de_la_commune": "TROISFONTAINES LA VILLE", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52497"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48167ab068fa143a2cd10c8ec4a1efd3fdc4ccf9", "fields": {"code_postal": "52130", "code_commune_insee": "52497", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "ligne_5": "AVRAINVILLE", "nom_de_la_commune": "TROISFONTAINES LA VILLE", "coordonnees_gps": [48.5070439267, 4.95367156302]}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602de1383b454aeffe57f2ae6a25bd622ce46870", "fields": {"nom_de_la_commune": "VAILLANT", "libell_d_acheminement": "VAILLANT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52499"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6fa5fe645d5cd59fd1cb241214b007377466b12", "fields": {"nom_de_la_commune": "VALLEROY", "libell_d_acheminement": "VALLEROY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52503"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e242c3f01bcf0dca7254dc62f77a17c150f584c2", "fields": {"nom_de_la_commune": "VAUXBONS", "libell_d_acheminement": "VAUXBONS", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52507"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6e7f10aea29f7f0cc60b4868ca48656eb23ccb", "fields": {"nom_de_la_commune": "VECQUEVILLE", "libell_d_acheminement": "VECQUEVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52512"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e2f826d8f41bed328715a31f590b76301f4b44", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52520"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0e93dceece5dcf946ec3f599caf146734b7a17", "fields": {"nom_de_la_commune": "VIGNES LA COTE", "libell_d_acheminement": "VIGNES LA COTE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52523"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468d5bb7297ff7bcd54c9c10964e7e88293b3838", "fields": {"code_postal": "52160", "code_commune_insee": "52526", "libell_d_acheminement": "VILLARS SANTENOGE", "ligne_5": "VILLARS MONTROYER", "nom_de_la_commune": "VILLARS SANTENOGE", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1c03c2e768562681695d2d72a8053bccf75c052", "fields": {"code_postal": "52190", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "PIEPAPE", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244b5f793fdb1daa165d8ff4d34034f3568af01e", "fields": {"nom_de_la_commune": "VILLIERS SUR SUIZE", "libell_d_acheminement": "VILLIERS SUR SUIZE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52538"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074acbc933c9394da1bf00a0aab970f9e413b551", "fields": {"nom_de_la_commune": "VIOLOT", "libell_d_acheminement": "VIOLOT", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52539"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6001e3008ee36404039ca6e29a16bf36de004dd1", "fields": {"nom_de_la_commune": "VITRY EN MONTAGNE", "libell_d_acheminement": "VITRY EN MONTAGNE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52540"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec645ea893420a574bca1892d85b885a5113b864", "fields": {"nom_de_la_commune": "VOUECOURT", "libell_d_acheminement": "VOUECOURT", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52547"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3a9d3ca5823552f1b306ccd60c5d79447899db", "fields": {"nom_de_la_commune": "AHUILLE", "libell_d_acheminement": "AHUILLE", "code_postal": "53940", "coordonnees_gps": [48.0612320187, -0.86717945825], "code_commune_insee": "53001"}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c518f243dde992524680974e4bd80be053a326e3", "fields": {"nom_de_la_commune": "ALEXAIN", "libell_d_acheminement": "ALEXAIN", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53002"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7a6ffd9f6ff7cff5a1bbf60b76d6cb9d065523", "fields": {"code_postal": "53300", "code_commune_insee": "53003", "libell_d_acheminement": "AMBRIERES LES VALLEES", "ligne_5": "CIGNE", "nom_de_la_commune": "AMBRIERES LES VALLEES", "coordonnees_gps": [48.4002685671, -0.643929114886]}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b329fc319a86b5575596e2d40266b5d2c7ea68", "fields": {"nom_de_la_commune": "BOUESSAY", "libell_d_acheminement": "BOUESSAY", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53037"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ed908ce235797a269ed445cf3207441a5507ad", "fields": {"nom_de_la_commune": "BOURGON", "libell_d_acheminement": "BOURGON", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53040"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ceac61317423c423a71c1e1808a52c2c76a1de", "fields": {"nom_de_la_commune": "BRAINS SUR LES MARCHES", "libell_d_acheminement": "BRAINS SUR LES MARCHES", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53041"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95196c60c57e4e3841a40bfa807675136e8eb979", "fields": {"nom_de_la_commune": "CARELLES", "libell_d_acheminement": "CARELLES", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53047"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e45b9b1d01b5c08de343d5f035036188047df80", "fields": {"code_postal": "53200", "code_commune_insee": "53062", "libell_d_acheminement": "CHATEAU GONTIER", "ligne_5": "BAZOUGES", "nom_de_la_commune": "CHATEAU GONTIER", "coordonnees_gps": [47.8199489086, -0.703656647783]}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ef527fbb2a224029fd4d3b747442c3e7d176f3", "fields": {"nom_de_la_commune": "CHEMAZE", "libell_d_acheminement": "CHEMAZE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53066"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3706c3e39bffd2286faf0087b5eb84bda878efe", "fields": {"nom_de_la_commune": "CHEVAIGNE DU MAINE", "libell_d_acheminement": "CHEVAIGNE DU MAINE", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53069"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad66b6277bd00fdab41eb62ee1bdddcd5508c0a", "fields": {"nom_de_la_commune": "COLOMBIERS DU PLESSIS", "libell_d_acheminement": "COLOMBIERS DU PLESSIS", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53071"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9e55e2ec17fac6365df1d42b53a685835e5e80", "fields": {"nom_de_la_commune": "COMMER", "libell_d_acheminement": "COMMER", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53072"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa8483c3f5c258ff274028582981143ef09f3a9", "fields": {"nom_de_la_commune": "CONTEST", "libell_d_acheminement": "CONTEST", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53074"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30350164eff4ae5f5667fc514b6214ef4edfe5e", "fields": {"nom_de_la_commune": "LA DOREE", "libell_d_acheminement": "LA DOREE", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53093"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b30af3b358b47a553c1beec969e9b63aae7225", "fields": {"nom_de_la_commune": "EPINEUX LE SEGUIN", "libell_d_acheminement": "EPINEUX LE SEGUIN", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53095"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecae620bbed1c7078cb56029e29996ddbbe0df3c", "fields": {"nom_de_la_commune": "FOUGEROLLES DU PLESSIS", "libell_d_acheminement": "FOUGEROLLES DU PLESSIS", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53100"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c4370da57db02691d7c1146ac0cdaee44b122b", "fields": {"nom_de_la_commune": "FROMENTIERES", "libell_d_acheminement": "FROMENTIERES", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53101"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4876cbc8a496f3bf230f5bec52b28e7b02a6b351", "fields": {"nom_de_la_commune": "LE GENEST ST ISLE", "libell_d_acheminement": "LE GENEST ST ISLE", "code_postal": "53940", "coordonnees_gps": [48.0612320187, -0.86717945825], "code_commune_insee": "53103"}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252929950d1a07ade8efc0bf3656e1d67b9b9dde", "fields": {"nom_de_la_commune": "GESNES", "libell_d_acheminement": "GESNES", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53105"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57980a48afa8db17cd487552c0eecfb5a753b8a8", "fields": {"nom_de_la_commune": "GESVRES", "libell_d_acheminement": "GESVRES", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53106"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cab9747b5d61cf9f0497fd34f8dda1161f9a9bc", "fields": {"nom_de_la_commune": "LE HAM", "libell_d_acheminement": "LE HAM", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53112"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bdeca8248ad3172fc6614287e216834280efc4", "fields": {"nom_de_la_commune": "L HUISSERIE", "libell_d_acheminement": "L HUISSERIE", "code_postal": "53970", "coordonnees_gps": [48.0004120893, -0.787519584296], "code_commune_insee": "53119"}, "geometry": {"type": "Point", "coordinates": [-0.787519584296, 48.0004120893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2598d4daf3af09738b7c66bc61218c0ccc09db", "fields": {"code_postal": "53250", "code_commune_insee": "53121", "libell_d_acheminement": "JAVRON LES CHAPELLES", "ligne_5": "LES CHAPELLES", "nom_de_la_commune": "JAVRON LES CHAPELLES", "coordonnees_gps": [48.4288854285, -0.342425192265]}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee18e660afa253724091694e029fb0f9367cc484", "fields": {"nom_de_la_commune": "LARCHAMP", "libell_d_acheminement": "LARCHAMP", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53126"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f471e1d0c84581fe4942334426a3f27c364ee1", "fields": {"code_postal": "53110", "code_commune_insee": "53127", "libell_d_acheminement": "LASSAY LES CHATEAUX", "ligne_5": "LA BAROCHE GONDOUIN", "nom_de_la_commune": "LASSAY LES CHATEAUX", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621a7df2faf15b31ba0cbe2f000f145e21fb613b", "fields": {"nom_de_la_commune": "MEZANGERS", "libell_d_acheminement": "MEZANGERS", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53153"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c28057d9f1edd383a583601a9fd67c1196d006b", "fields": {"nom_de_la_commune": "MONTAUDIN", "libell_d_acheminement": "MONTAUDIN", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53154"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c358b67ae3068d5c023b1a82c5f1850a82946c", "fields": {"nom_de_la_commune": "PARIGNE SUR BRAYE", "libell_d_acheminement": "PARIGNE SUR BRAYE", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53174"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706a496108a315c25bbe1a25ebd12f45655d6967", "fields": {"nom_de_la_commune": "PLACE", "libell_d_acheminement": "PLACE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53179"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f172c199cd0aa4e9d2b4e9062b44f116241f1d", "fields": {"nom_de_la_commune": "POMMERIEUX", "libell_d_acheminement": "POMMERIEUX", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53180"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8a5666ec74a97d4db918bd8546fb8b92dc34c2", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53184"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac67195bb7b728f209051839c68c9d43ba353d3", "fields": {"code_postal": "53360", "code_commune_insee": "53186", "libell_d_acheminement": "QUELAINES ST GAULT", "ligne_5": "ST GAULT", "nom_de_la_commune": "QUELAINES ST GAULT", "coordonnees_gps": [47.9163829894, -0.78422271898]}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71870b894a60db19d9c208c9a124ac05f6f9cd47", "fields": {"nom_de_la_commune": "RAVIGNY", "libell_d_acheminement": "RAVIGNY", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53187"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cb54ea4c098376ec2fb329f8a79ab4429fc6a7", "fields": {"nom_de_la_commune": "ST AIGNAN SUR ROE", "libell_d_acheminement": "ST AIGNAN SUR ROE", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53197"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c0341bfe529939210419b829f7c2189686bce9d", "fields": {"nom_de_la_commune": "ST BERTHEVIN", "libell_d_acheminement": "ST BERTHEVIN", "code_postal": "53940", "coordonnees_gps": [48.0612320187, -0.86717945825], "code_commune_insee": "53201"}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63810d9476d4d62e8f711e90ab3d1a9b41f96ae", "fields": {"nom_de_la_commune": "ST ELLIER DU MAINE", "libell_d_acheminement": "ST ELLIER DU MAINE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53213"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1625f08cbdf423214ccf1f0a1d9dfb969e65cb56", "fields": {"nom_de_la_commune": "ST FORT", "libell_d_acheminement": "ST FORT", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53215"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7abbed2bb0f47bb1bcc01e53473a7e468da0d1e", "fields": {"nom_de_la_commune": "ST GEORGES SUR ERVE", "libell_d_acheminement": "ST GEORGES SUR ERVE", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53221"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d782a6f37cce8cf741d0462e8b5c31ff9e59d72", "fields": {"nom_de_la_commune": "ST GERMAIN DE COULAMER", "libell_d_acheminement": "ST GERMAIN DE COULAMER", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53223"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4765d2571fcbb4284e916e9141ffe9fe8114c60e", "fields": {"nom_de_la_commune": "ST LOUP DU DORAT", "libell_d_acheminement": "ST LOUP DU DORAT", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53233"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6ae65d30e1bee55ea304990e459ac0bf813679", "fields": {"nom_de_la_commune": "ST MICHEL DE LA ROE", "libell_d_acheminement": "ST MICHEL DE LA ROE", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53242"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0886bb5c84dd1b3facfd5639602697fa5d9d97fa", "fields": {"nom_de_la_commune": "ST OUEN DES TOITS", "libell_d_acheminement": "ST OUEN DES TOITS", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53243"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca3fe46538304325e338cd405164249c3eda4f8", "fields": {"nom_de_la_commune": "ST OUEN DES VALLONS", "libell_d_acheminement": "ST OUEN DES VALLONS", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53244"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5f1789f9aa0ce54a2a5374a82121d2903cc942", "fields": {"nom_de_la_commune": "ST PIERRE DES LANDES", "libell_d_acheminement": "ST PIERRE DES LANDES", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53245"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e462ea32cae24b900c9d6271977c5b50b1a0a3b3", "fields": {"nom_de_la_commune": "ST PIERRE LA COUR", "libell_d_acheminement": "ST PIERRE LA COUR", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53247"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25b093b9207154e046a6706caa7901a0118dc1e", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53254"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487390008b19f895b588ce2af5e8f22e5bc199b3", "fields": {"nom_de_la_commune": "ST THOMAS DE COURCERIERS", "libell_d_acheminement": "ST THOMAS DE COURCERIERS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53256"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c33ac4c5fa47fb659ffd9406bea9ac2e639255e6", "fields": {"nom_de_la_commune": "SIMPLE", "libell_d_acheminement": "SIMPLE", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53260"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b517c24e802c42e372a63334d4eb2528e1fc673", "fields": {"nom_de_la_commune": "ALLAMPS", "libell_d_acheminement": "ALLAMPS", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54010"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992f956b3231cd1fd5a40874e677d7681ad3824c", "fields": {"nom_de_la_commune": "ART SUR MEURTHE", "libell_d_acheminement": "ART SUR MEURTHE", "code_postal": "54510", "coordonnees_gps": [48.6692716698, 6.24903144638], "code_commune_insee": "54025"}, "geometry": {"type": "Point", "coordinates": [6.24903144638, 48.6692716698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331a614500b3ad073374391bbf37afee0b376a06", "fields": {"nom_de_la_commune": "AUDUN LE ROMAN", "libell_d_acheminement": "AUDUN LE ROMAN", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54029"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accf1ffba2f3154c0beab3171d17f3909e47d1eb", "fields": {"nom_de_la_commune": "BAINVILLE AUX MIROIRS", "libell_d_acheminement": "BAINVILLE AUX MIROIRS", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54042"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e555ee16d1efa4d98d8d720538f5fdb630bf97", "fields": {"nom_de_la_commune": "BARBONVILLE", "libell_d_acheminement": "BARBONVILLE", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54045"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10ed27a63c052f52d3e55c1ec86fbe382a16579", "fields": {"nom_de_la_commune": "LARROQUE ST SERNIN", "libell_d_acheminement": "LARROQUE ST SERNIN", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32196"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9219250ee0a464abe486c90dabc16ed660bca38f", "fields": {"nom_de_la_commune": "LARTIGUE", "libell_d_acheminement": "LARTIGUE", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32198"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c7662dfa163101b02eba7d9c28a042995a6cfd", "fields": {"nom_de_la_commune": "LELIN LAPUJOLLE", "libell_d_acheminement": "LELIN LAPUJOLLE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32209"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2a0f74bc373664a99bbd282c28916b4b8222d8", "fields": {"nom_de_la_commune": "LUSSAN", "libell_d_acheminement": "LUSSAN", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32221"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa5d742d0428600daabbbddadc74c877d1f25af", "fields": {"nom_de_la_commune": "MAGNAN", "libell_d_acheminement": "MAGNAN", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32222"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f14801f43dff977c104b5279e19de9e9b1007e2", "fields": {"nom_de_la_commune": "MAIGNAUT TAUZIA", "libell_d_acheminement": "MAIGNAUT TAUZIA", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32224"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35433fb84d55280f5d571b8d26b56e9ad94f6056", "fields": {"nom_de_la_commune": "MALABAT", "libell_d_acheminement": "MALABAT", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32225"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3747fcb14215123716cea71551ce276da02bf28", "fields": {"nom_de_la_commune": "MARAMBAT", "libell_d_acheminement": "MARAMBAT", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32231"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5fc35c3c3e1cc8c63ed5c2f72f5ba2693adec4b", "fields": {"nom_de_la_commune": "MARSAN", "libell_d_acheminement": "MARSAN", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32237"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d193896698518d8152de5df41cb2aa31bc0fe8a", "fields": {"nom_de_la_commune": "MONBARDON", "libell_d_acheminement": "MONBARDON", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32260"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87ac3c6a000e12405c2dafc1bcfd9a777f37a26", "fields": {"nom_de_la_commune": "MONBLANC", "libell_d_acheminement": "MONBLANC", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32261"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4f7d496585b9398256bf96e3a1e7fba35c8689", "fields": {"nom_de_la_commune": "MONCORNEIL GRAZAN", "libell_d_acheminement": "MONCORNEIL GRAZAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32266"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152cc025919ccfe1d08c423256ef9eca4c4d8bca", "fields": {"nom_de_la_commune": "MONLEZUN D ARMAGNAC", "libell_d_acheminement": "MONLEZUN D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32274"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae130164bd26f781a69f8092b15aa2a6a2fd5d23", "fields": {"nom_de_la_commune": "MONTADET", "libell_d_acheminement": "MONTADET", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32276"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc62d716a632f4320b76078e701152bf14be93a", "fields": {"nom_de_la_commune": "MONTAUT LES CRENEAUX", "libell_d_acheminement": "MONTAUT LES CRENEAUX", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32279"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef7ce43fe9d2eab82318741262056ae51a1c5da1", "fields": {"nom_de_la_commune": "MONT D ASTARAC", "libell_d_acheminement": "MONT D ASTARAC", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32280"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4677900b7b04604f907ca3af7ab599495a4d2683", "fields": {"nom_de_la_commune": "MONTIES", "libell_d_acheminement": "MONTIES", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32287"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14309541022bda428afac5a8f4f1ace4520493a", "fields": {"nom_de_la_commune": "MORMES", "libell_d_acheminement": "MORMES", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32291"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83613d14f67735e7698903c66c69f9d44cbdaa32", "fields": {"nom_de_la_commune": "MOUCHAN", "libell_d_acheminement": "MOUCHAN", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32292"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8c7b9231541467df7bc8ea2dfb41acd7cba174", "fields": {"nom_de_la_commune": "MOUREDE", "libell_d_acheminement": "MOUREDE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32294"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3ac912121bb8cd9c2aa0db227a38211aa84bc3", "fields": {"nom_de_la_commune": "NOUGAROULET", "libell_d_acheminement": "NOUGAROULET", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32298"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab2a4e7dcebd1a342a8e33751655eb504457b98", "fields": {"nom_de_la_commune": "ORNEZAN", "libell_d_acheminement": "ORNEZAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32302"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921ef4e9a6cf50753413f802145d1ebca459234d", "fields": {"nom_de_la_commune": "PANASSAC", "libell_d_acheminement": "PANASSAC", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32304"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e6aff7c10696fa8233cccc37a4da4a3f18d8b5", "fields": {"nom_de_la_commune": "PEBEES", "libell_d_acheminement": "PEBEES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32308"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c9d56be5db8be82a8c3b34f332fa222edb8247", "fields": {"nom_de_la_commune": "PERGAIN TAILLAC", "libell_d_acheminement": "PERGAIN TAILLAC", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32311"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c1c1fe4bd0c7ae756019ac97c50c256b56cb93", "fields": {"nom_de_la_commune": "PEYRUSSE GRANDE", "libell_d_acheminement": "PEYRUSSE GRANDE", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32315"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8133e3c2e4390e8a2ffa20ce9a600b2c70a07a", "fields": {"nom_de_la_commune": "PEYRUSSE MASSAS", "libell_d_acheminement": "PEYRUSSE MASSAS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32316"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43d8305403d1ced5a8cf97214e79590f274b8b46", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32319"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9f1c38a7b8cafaaf640663f4d2a69188c67bcd6", "fields": {"nom_de_la_commune": "PONSAMPERE", "libell_d_acheminement": "PONSAMPERE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32323"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0be1cc384fef16b574e411716cf4aaa95d26ff6", "fields": {"nom_de_la_commune": "PONSAN SOUBIRAN", "libell_d_acheminement": "PONSAN SOUBIRAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32324"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b395486e57574296316b47380269cf42500bf67", "fields": {"nom_de_la_commune": "POUYLEBON", "libell_d_acheminement": "POUYLEBON", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32326"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3350b4c4cfb7148426b2ce2346d67e6ef326efaf", "fields": {"nom_de_la_commune": "POUY LOUBRIN", "libell_d_acheminement": "POUY LOUBRIN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32327"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943dec52103eb7041795203b5373fadebc30df36", "fields": {"nom_de_la_commune": "PREIGNAN", "libell_d_acheminement": "PREIGNAN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32331"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eba4a3f7b80db452049b268394d1f572e210021", "fields": {"nom_de_la_commune": "PROJAN", "libell_d_acheminement": "PROJAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32333"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b49bbb2a2e4c40e56747ac4da65e261fecf6442", "fields": {"nom_de_la_commune": "RAZENGUES", "libell_d_acheminement": "RAZENGUES", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32339"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f596f382ada1aadf368aeb0c6d8a41868cd5e81", "fields": {"nom_de_la_commune": "REJAUMONT", "libell_d_acheminement": "REJAUMONT", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32341"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d9612f38813988c339c4cf7e588ddce804382d", "fields": {"nom_de_la_commune": "RICOURT", "libell_d_acheminement": "RICOURT", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32342"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394d238511f37bc027fb0e85d298c5b01e55576d", "fields": {"nom_de_la_commune": "RIGUEPEU", "libell_d_acheminement": "RIGUEPEU", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32343"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8b7d0bea726e755691f39817f170ed54afb989", "fields": {"nom_de_la_commune": "ROQUEPINE", "libell_d_acheminement": "ROQUEPINE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32350"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29cff7b1a1fd19ccb14d0e9ae527fda9c7582f11", "fields": {"nom_de_la_commune": "ROZES", "libell_d_acheminement": "ROZES", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32352"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2e104ae6eac671494bfe66fbb55d0c664228dd", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32357"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ef7cb884052099f61016874cf2e37bcdd4c8b9", "fields": {"nom_de_la_commune": "ST ARAILLES", "libell_d_acheminement": "ST ARAILLES", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32360"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06be3218489f4c625208289763a6b04a23d2ef1c", "fields": {"nom_de_la_commune": "ST ARROMAN", "libell_d_acheminement": "ST ARROMAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32361"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f96addcf927b14127a6e2b15bac31b407363e77", "fields": {"nom_de_la_commune": "ST CHRISTAUD", "libell_d_acheminement": "ST CHRISTAUD", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32367"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5009cca7ba76a816abaccccfe1cd025ba28b4cf9", "fields": {"nom_de_la_commune": "ST ELIX THEUX", "libell_d_acheminement": "ST ELIX THEUX", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32375"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913678296545ad7c6bafb31af43933753ddf022a", "fields": {"nom_de_la_commune": "ST GRIEDE", "libell_d_acheminement": "ST GRIEDE", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32380"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec628b8b0f793b0f2a5a1f0cf5c81c24b8b784a", "fields": {"nom_de_la_commune": "STE MERE", "libell_d_acheminement": "STE MERE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32395"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe19cbedafdccc046ad4c0447c8fd29deb805ab", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32397"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fcad3e752788f746b548b777eeea46da36b7f1a", "fields": {"nom_de_la_commune": "ST PAUL DE BAISE", "libell_d_acheminement": "ST PAUL DE BAISE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32402"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfac3c03520b74fd3dedbca3f5daf2c3ea8e9be", "fields": {"nom_de_la_commune": "SARRANT", "libell_d_acheminement": "SARRANT", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32416"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fc4a8b2dfbcc3f4f3c0299f743cdd5558d7f11", "fields": {"nom_de_la_commune": "SCIEURAC ET FLOURES", "libell_d_acheminement": "SCIEURAC ET FLOURES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32422"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea96f34d2c6b3319c91208053832c322ed0a14f4", "fields": {"nom_de_la_commune": "SEMBOUES", "libell_d_acheminement": "SEMBOUES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32427"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a3f91bf92e99c432027935254700c9e8353bfb", "fields": {"nom_de_la_commune": "SOLOMIAC", "libell_d_acheminement": "SOLOMIAC", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32436"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d3bb5d2ca1b6f34eea7c6d6a07b08ba4ea6502e", "fields": {"nom_de_la_commune": "THOUX", "libell_d_acheminement": "THOUX", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32444"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc92e2061e07f36acbe7f28a71fdc95b5864fa0", "fields": {"nom_de_la_commune": "TOURRENQUETS", "libell_d_acheminement": "TOURRENQUETS", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32453"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f3f53540a8b813815f3d8dd3c9b218f1e6685d", "fields": {"nom_de_la_commune": "TRAVERSERES", "libell_d_acheminement": "TRAVERSERES", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32454"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55119826f256a9252f98e24ed09d0a42f29fa13d", "fields": {"nom_de_la_commune": "URDENS", "libell_d_acheminement": "URDENS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32457"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85172d3ddcfb491735b3f5655d6c923cebe6c196", "fields": {"nom_de_la_commune": "VALENCE SUR BAISE", "libell_d_acheminement": "VALENCE SUR BAISE", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32459"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e561b5519a7be1cbae529bbf3d39b4236923371", "fields": {"nom_de_la_commune": "VERGOIGNAN", "libell_d_acheminement": "VERGOIGNAN", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32460"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c243bdf8c43eb5b8d04fcf5bbcdb3ec8e99e080", "fields": {"nom_de_la_commune": "VERLUS", "libell_d_acheminement": "VERLUS", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32461"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39ab0a6d2de77a476c6b8f393557b1cc22a170c", "fields": {"code_postal": "32190", "code_commune_insee": "32462", "libell_d_acheminement": "VIC FEZENSAC", "ligne_5": "LAGRAULAS", "nom_de_la_commune": "VIC FEZENSAC", "coordonnees_gps": [43.7476319367, 0.263185282539]}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4132cc71f072d94d996be9ff9c506ee3394e7f4a", "fields": {"nom_de_la_commune": "AILLAS", "libell_d_acheminement": "AILLAS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33002"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4ecb04e9af75089a2e85c370c3f76386d57a4d", "fields": {"nom_de_la_commune": "ANDERNOS LES BAINS", "libell_d_acheminement": "ANDERNOS LES BAINS", "code_postal": "33510", "coordonnees_gps": [44.7544421271, -1.08074566596], "code_commune_insee": "33005"}, "geometry": {"type": "Point", "coordinates": [-1.08074566596, 44.7544421271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ccc550c8e93be58359d9cd74de5e5b6b16600c", "fields": {"nom_de_la_commune": "ARCACHON", "libell_d_acheminement": "ARCACHON", "code_postal": "33120", "coordonnees_gps": [44.6533391966, -1.17442732892], "code_commune_insee": "33009"}, "geometry": {"type": "Point", "coordinates": [-1.17442732892, 44.6533391966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f1c68f775deb4e30ac5e508299e62850e65838", "fields": {"nom_de_la_commune": "ARSAC", "libell_d_acheminement": "ARSAC", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33012"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733fd81a8ac90e6a5a5bb2834779ff243adc990f", "fields": {"code_postal": "33240", "code_commune_insee": "33018", "libell_d_acheminement": "VAL DE VIRVEE", "ligne_5": "ST ANTOINE", "nom_de_la_commune": "VAL DE VIRVEE", "coordonnees_gps": [44.9990310815, -0.398251913536]}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cafc8443528db80aa51f2e2cf70b22ec3d71dd", "fields": {"nom_de_la_commune": "BAGAS", "libell_d_acheminement": "BAGAS", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33024"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e201663d97a3a53d514fd0b8a2bf0595e3f57517", "fields": {"nom_de_la_commune": "BARIE", "libell_d_acheminement": "BARIE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33027"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe2a3b6be8c5ad5039ef0b3e4caed318718c069", "fields": {"nom_de_la_commune": "BAYON SUR GIRONDE", "libell_d_acheminement": "BAYON SUR GIRONDE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33035"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba9ea99a8245fd59010c8b187ab60d811a3ac24", "fields": {"nom_de_la_commune": "BAZAS", "libell_d_acheminement": "BAZAS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33036"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6a4805679e76987598c98078615b5f69c53ede", "fields": {"nom_de_la_commune": "BEAUTIRAN", "libell_d_acheminement": "BEAUTIRAN", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33037"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5591c74fcc95f4161db29e368a46b61fd6b7bf", "fields": {"nom_de_la_commune": "BEGADAN", "libell_d_acheminement": "BEGADAN", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33038"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03eb7ccea2793ebf6d6819ee6e02b67e48697393", "fields": {"nom_de_la_commune": "BEGLES", "libell_d_acheminement": "BEGLES", "code_postal": "33130", "coordonnees_gps": [44.8016807866, -0.548228052443], "code_commune_insee": "33039"}, "geometry": {"type": "Point", "coordinates": [-0.548228052443, 44.8016807866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddaf3f56dee223382f2035c98d593fbedad840f2", "fields": {"nom_de_la_commune": "BEGUEY", "libell_d_acheminement": "BEGUEY", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33040"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a920ee0f68f27d0a4c907482c3f625a299384494", "fields": {"code_postal": "33380", "code_commune_insee": "33051", "libell_d_acheminement": "BIGANOS", "ligne_5": "FACTURE", "nom_de_la_commune": "BIGANOS", "coordonnees_gps": [44.6379766887, -0.903316939902]}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b39ef4684ec2654648800d02552073b63dddd3", "fields": {"nom_de_la_commune": "BIRAC", "libell_d_acheminement": "BIRAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33053"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b802ece38baf3df4db62bd5540910534311b4df", "fields": {"nom_de_la_commune": "BLAIGNAN", "libell_d_acheminement": "BLAIGNAN", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33055"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946de1414efa6f3095bd8e4822b451426dd4b923", "fields": {"nom_de_la_commune": "BLASIMON", "libell_d_acheminement": "BLASIMON", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33057"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1cea3c519ae00f44abc9f68c3998c2bb1a76d5", "fields": {"nom_de_la_commune": "BOSSUGAN", "libell_d_acheminement": "BOSSUGAN", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33064"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ef7bf143a27833e13ea27f1b8a752fe35cf496", "fields": {"nom_de_la_commune": "BOURG", "libell_d_acheminement": "BOURG SUR GIRONDE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33067"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edda35717751ed657e069ad4eb0ac07355355f4", "fields": {"nom_de_la_commune": "BOURIDEYS", "libell_d_acheminement": "BOURIDEYS", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33068"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9264a2b279a14392efaf38b5c4d2d59c9f408c65", "fields": {"nom_de_la_commune": "BRAUD ET ST LOUIS", "libell_d_acheminement": "BRAUD ET ST LOUIS", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33073"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda16bc4eeb9d7c66beb21352dbd59a05ee2f457", "fields": {"nom_de_la_commune": "CENAC", "libell_d_acheminement": "CENAC", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33118"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42fab99c3463a03ecc112dd31165126f20127042", "fields": {"nom_de_la_commune": "CISSAC MEDOC", "libell_d_acheminement": "CISSAC MEDOC", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33125"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcef8f84d6d49fd762b0dd920142a02cbf6f2498", "fields": {"nom_de_la_commune": "COMPS", "libell_d_acheminement": "COMPS", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33132"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76cdd3d7830dd92a516178eab40f6ec262d6bfa6", "fields": {"nom_de_la_commune": "COUBEYRAC", "libell_d_acheminement": "COUBEYRAC", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33133"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b271f278f0cf9b8b7b9a7db0d04da0f58ac6b42f", "fields": {"nom_de_la_commune": "COUQUEQUES", "libell_d_acheminement": "COUQUEQUES", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33134"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ddce4fd4e4cab9a9e822bc00d68b25e4647a98", "fields": {"nom_de_la_commune": "CUBZAC LES PONTS", "libell_d_acheminement": "CUBZAC LES PONTS", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33143"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a6720163336f7d13d91b7465e1f01ee75695ec", "fields": {"nom_de_la_commune": "DAUBEZE", "libell_d_acheminement": "DAUBEZE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33149"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529c62d9a88a38a4363d1ff410dccbab715cbd7b", "fields": {"nom_de_la_commune": "ESPIET", "libell_d_acheminement": "ESPIET", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33157"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2d89e8a704ed10e3f321b2f466b40ee5954c94", "fields": {"nom_de_la_commune": "LES ESSEINTES", "libell_d_acheminement": "LES ESSEINTES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33158"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dc823c32fb56762f9f463a2df2d950da639075d", "fields": {"nom_de_la_commune": "ETAULIERS", "libell_d_acheminement": "ETAULIERS", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33159"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c8f529e26247c1e152f7bd06f17b9fc12dc29f0", "fields": {"nom_de_la_commune": "EYNESSE", "libell_d_acheminement": "EYNESSE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33160"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3718ee0fa9e2cc1e7759e5fe38833fb4a3d7d5", "fields": {"nom_de_la_commune": "FLOIRAC", "libell_d_acheminement": "FLOIRAC", "code_postal": "33270", "coordonnees_gps": [44.8258167302, -0.513262421066], "code_commune_insee": "33167"}, "geometry": {"type": "Point", "coordinates": [-0.513262421066, 44.8258167302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65c134bc71a59855b037b429ced0a8b7cbfe5fe", "fields": {"nom_de_la_commune": "FONTET", "libell_d_acheminement": "FONTET", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33170"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba942242c08b9f98a71732363d6253d310a7e63d", "fields": {"nom_de_la_commune": "GAJAC", "libell_d_acheminement": "GAJAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33178"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afec86dcef28165cf1e776153e1ad806b8e788f9", "fields": {"nom_de_la_commune": "GAURIAGUET", "libell_d_acheminement": "GAURIAGUET", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33183"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c402ebb2671b567d3edb3b69925a1f1d1064b930", "fields": {"nom_de_la_commune": "GENSAC", "libell_d_acheminement": "GENSAC", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33186"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49994833138a183ef90f13a05e7dca5f9c4221e2", "fields": {"nom_de_la_commune": "GIRONDE SUR DROPT", "libell_d_acheminement": "GIRONDE SUR DROPT", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33187"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0297eb9b44cb0f6b170f838fe7b0fe663e1bee69", "fields": {"nom_de_la_commune": "GUITRES", "libell_d_acheminement": "GUITRES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33198"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6118922cde8af274a11bdfbba99460b6df095315", "fields": {"nom_de_la_commune": "GRAVELOTTE", "libell_d_acheminement": "GRAVELOTTE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57256"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d848304475b980a3ef45a74c0ad043826cc7660", "fields": {"nom_de_la_commune": "GREMECEY", "libell_d_acheminement": "GREMECEY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57257"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe93045144640efc9035dd3d238022ee6c370113", "fields": {"nom_de_la_commune": "GRINDORFF BIZING", "libell_d_acheminement": "GRINDORFF BIZING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57259"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915857a75833ee486c512843a0a7b93bfa594027", "fields": {"nom_de_la_commune": "LE VAL DE GUEBLANGE", "libell_d_acheminement": "LE VAL DE GUEBLANGE", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57267"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2d695f206f30a2da650549c41cd44d1ed43f57", "fields": {"nom_de_la_commune": "GUEBLING", "libell_d_acheminement": "GUEBLING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57268"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f1746626cefd36e244dfa197f0f0fd6a099f5a", "fields": {"code_postal": "57260", "code_commune_insee": "57270", "libell_d_acheminement": "VAL DE BRIDE", "ligne_5": "KERPRICH LES DIEUZE", "nom_de_la_commune": "VAL DE BRIDE", "coordonnees_gps": [48.8146613171, 6.75592004038]}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553943607f98e90096640ce53b22c4924e13b176", "fields": {"nom_de_la_commune": "GUERMANGE", "libell_d_acheminement": "GUERMANGE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57272"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4860d3da6281e6735497846a2f4bb793527066f7", "fields": {"nom_de_la_commune": "GUINGLANGE", "libell_d_acheminement": "GUINGLANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57276"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c97e6328ca746949d241b3979d13d579451cef", "fields": {"nom_de_la_commune": "HAMPONT", "libell_d_acheminement": "HAMPONT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57290"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e797b532309cdef620778411db35503d955456fb", "fields": {"nom_de_la_commune": "HAYANGE", "libell_d_acheminement": "HAYANGE", "code_postal": "57700", "coordonnees_gps": [49.3161755107, 6.04071219328], "code_commune_insee": "57306"}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71ba789e944d77eacef61ad1e070708247932fc", "fields": {"code_postal": "57700", "code_commune_insee": "57306", "libell_d_acheminement": "HAYANGE", "ligne_5": "MARSPICH", "nom_de_la_commune": "HAYANGE", "coordonnees_gps": [49.3161755107, 6.04071219328]}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843f5fa0ac3ac856f3e7ef9245dd75e8044a0584", "fields": {"code_postal": "57700", "code_commune_insee": "57306", "libell_d_acheminement": "HAYANGE", "ligne_5": "ST NICOLAS EN FORET", "nom_de_la_commune": "HAYANGE", "coordonnees_gps": [49.3161755107, 6.04071219328]}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbcc11f7bea0e2efc3204e0b20dfc44c6b392985", "fields": {"nom_de_la_commune": "HEINING LES BOUZONVILLE", "libell_d_acheminement": "HEINING LES BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57309"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10fb9be5f20b27e58a5b514ba957d1e5009c1f8", "fields": {"nom_de_la_commune": "HESSE", "libell_d_acheminement": "HESSE", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57321"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adbcd8a604e37abbdf48d96f3beb801a44a0e835", "fields": {"nom_de_la_commune": "HILSPRICH", "libell_d_acheminement": "HILSPRICH", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57325"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dab8a35c00d7f25c1be024f6a230bdb573f4921", "fields": {"nom_de_la_commune": "HOLVING", "libell_d_acheminement": "HOLVING", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57330"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61884a7a397ffa070cd50a96a6f64bcfd1802cf4", "fields": {"nom_de_la_commune": "HOMBOURG BUDANGE", "libell_d_acheminement": "HOMBOURG BUDANGE", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57331"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58060fcdede22876e472818f714e98ab17318c18", "fields": {"nom_de_la_commune": "L HOPITAL", "libell_d_acheminement": "L HOPITAL", "code_postal": "57490", "coordonnees_gps": [49.1613905223, 6.7250851185], "code_commune_insee": "57336"}, "geometry": {"type": "Point", "coordinates": [6.7250851185, 49.1613905223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8564c93eb0e44afddf8df4eb21208785fb68e641", "fields": {"nom_de_la_commune": "INSVILLER", "libell_d_acheminement": "INSVILLER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57347"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ce1c7aa9953ccd8aa7862281409cd975d19b7a", "fields": {"nom_de_la_commune": "IPPLING", "libell_d_acheminement": "IPPLING", "code_postal": "57990", "coordonnees_gps": [49.1133507394, 6.98404572012], "code_commune_insee": "57348"}, "geometry": {"type": "Point", "coordinates": [6.98404572012, 49.1133507394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b29f857191cd7aaec278f55fb0e3c4983dfc57", "fields": {"nom_de_la_commune": "KERLING LES SIERCK", "libell_d_acheminement": "KERLING LES SIERCK", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57361"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97530413217262967a99ea7e32a367207395256", "fields": {"nom_de_la_commune": "HAUTE KONTZ", "libell_d_acheminement": "HAUTE KONTZ", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57371"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef1cd963227ce537f41151dfcb3fa540a6f1fb0", "fields": {"nom_de_la_commune": "LACHAMBRE", "libell_d_acheminement": "LACHAMBRE", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57373"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00bd71cf4ba5cc6a4803955cc2756738c2476a5", "fields": {"nom_de_la_commune": "LAUMESFELD", "libell_d_acheminement": "LAUMESFELD", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57387"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "406ab3167edf67d7f692da886da21333e9bd0d68", "fields": {"nom_de_la_commune": "LELLING", "libell_d_acheminement": "LELLING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57389"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9ecef92878be1310109fbf2211e57442498b30", "fields": {"nom_de_la_commune": "LESSY", "libell_d_acheminement": "LESSY", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57396"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e13a1cb2602992623cbcc48db6c0f0c9e405e89", "fields": {"nom_de_la_commune": "LEY", "libell_d_acheminement": "LEY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57397"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "850b1243b2cdcce883e448f65e65d3b91577837d", "fields": {"nom_de_la_commune": "LIEDERSCHIEDT", "libell_d_acheminement": "LIEDERSCHIEDT", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57402"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60f96d05c583814d0d5e2d23a61926c3164fb5e", "fields": {"nom_de_la_commune": "LIEHON", "libell_d_acheminement": "LIEHON", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57403"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8b8c9f349c6e8c764b6bce8017fb955bec6c96", "fields": {"nom_de_la_commune": "LIOCOURT", "libell_d_acheminement": "LIOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57406"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02b88548fafe14636488305ffff202bd094bcd2", "fields": {"nom_de_la_commune": "LIXING LES ST AVOLD", "libell_d_acheminement": "LIXING LES ST AVOLD", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57409"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d90da363d9cd2539fece3b8b09c25fa4562a3b", "fields": {"nom_de_la_commune": "MAINVILLERS", "libell_d_acheminement": "MAINVILLERS", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57430"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551f7e4ce0f74c7082d3d9d54d4fc9e49f5cfe46", "fields": {"nom_de_la_commune": "MAIZERY", "libell_d_acheminement": "MAIZERY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57432"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b11c5e41a3c876d26fd26f7678ec90676691396", "fields": {"nom_de_la_commune": "MALAUCOURT SUR SEILLE", "libell_d_acheminement": "MALAUCOURT SUR SEILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57436"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3363e826a20475baedbff0d02635cf041cd5a6", "fields": {"nom_de_la_commune": "MANOM", "libell_d_acheminement": "MANOM", "code_postal": "57100", "coordonnees_gps": [49.376778126, 6.13767637123], "code_commune_insee": "57441"}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143977e60ec8767dd0738caf4bd22b3c8a268e36", "fields": {"nom_de_la_commune": "MARANGE SILVANGE", "libell_d_acheminement": "MARANGE SILVANGE", "code_postal": "57535", "coordonnees_gps": [49.2137829893, 6.11073002885], "code_commune_insee": "57443"}, "geometry": {"type": "Point", "coordinates": [6.11073002885, 49.2137829893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8a1bd4afde5fda228e3db8df7bd6f990b907a45", "fields": {"nom_de_la_commune": "MARIMONT LES BENESTROFF", "libell_d_acheminement": "MARIMONT LES BENESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57446"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0272a54f9aa2de2b643644293728bd9c1e7f17ff", "fields": {"nom_de_la_commune": "LA MAXE", "libell_d_acheminement": "LA MAXE", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57452"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3549fd1e92ca4a9d3e29a3daddabe133ead42b50", "fields": {"nom_de_la_commune": "METTING", "libell_d_acheminement": "METTING", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57462"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145822a4b4d82f900f45b6675003ec6846a4bd7e", "fields": {"nom_de_la_commune": "METZ", "libell_d_acheminement": "METZ", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57463"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328b0adf2ea71887daff309c9aadeb529e48df79", "fields": {"nom_de_la_commune": "METZING", "libell_d_acheminement": "METZING", "code_postal": "57980", "coordonnees_gps": [49.1092636069, 6.94134556596], "code_commune_insee": "57466"}, "geometry": {"type": "Point", "coordinates": [6.94134556596, 49.1092636069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3328ac317a4cf91763df2d2fa677899cfb146893", "fields": {"nom_de_la_commune": "MONCHEUX", "libell_d_acheminement": "MONCHEUX", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57472"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52a2a8c9f4c9809c6a7e97390289b09c41a8319", "fields": {"nom_de_la_commune": "MONNEREN", "libell_d_acheminement": "MONNEREN", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57476"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2378ab407d76d7d32bd2e9ec9696eb7bdd70ecb", "fields": {"nom_de_la_commune": "MORSBACH", "libell_d_acheminement": "MORSBACH", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57484"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a8b3fa5c66055503b4b917f18c636a65367a11e", "fields": {"code_postal": "57250", "code_commune_insee": "57491", "libell_d_acheminement": "MOYEUVRE GRANDE", "ligne_5": "FROIDCUL", "nom_de_la_commune": "MOYEUVRE GRANDE", "coordonnees_gps": [49.2628995839, 6.0314436388]}, "geometry": {"type": "Point", "coordinates": [6.0314436388, 49.2628995839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90acd1c44f3c2288b35d32a1aeb66e68e4ba82db", "fields": {"nom_de_la_commune": "MOYEUVRE PETITE", "libell_d_acheminement": "MOYEUVRE PETITE", "code_postal": "57250", "coordonnees_gps": [49.2628995839, 6.0314436388], "code_commune_insee": "57492"}, "geometry": {"type": "Point", "coordinates": [6.0314436388, 49.2628995839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb74db6aec447457b55dc6215ee690686b0bf81", "fields": {"nom_de_la_commune": "NEBING", "libell_d_acheminement": "NEBING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57496"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823264f6a6614e7a4d265763c8668c02196c4118", "fields": {"nom_de_la_commune": "NEUFCHEF", "libell_d_acheminement": "NEUFCHEF", "code_postal": "57700", "coordonnees_gps": [49.3161755107, 6.04071219328], "code_commune_insee": "57498"}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd08a4bf8a4b1f58c2b5338f14fae5dacb2eb23", "fields": {"nom_de_la_commune": "NEUFMOULINS", "libell_d_acheminement": "NEUFMOULINS", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57500"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e915d3c461315cf66b09dab6064ee84ed830831a", "fields": {"nom_de_la_commune": "NIDERVILLER", "libell_d_acheminement": "NIDERVILLER", "code_postal": "57565", "coordonnees_gps": [48.7051512311, 7.11288052052], "code_commune_insee": "57505"}, "geometry": {"type": "Point", "coordinates": [7.11288052052, 48.7051512311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce9f10f2c8bf063bb9f37d2ad703c0abafbd269", "fields": {"nom_de_la_commune": "NOISSEVILLE", "libell_d_acheminement": "NOISSEVILLE", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57510"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faa4c6b9e15c17ac6476c5902a0a3c42137236a", "fields": {"nom_de_la_commune": "NOUSSEVILLER ST NABOR", "libell_d_acheminement": "NOUSSEVILLER ST NABOR", "code_postal": "57990", "coordonnees_gps": [49.1133507394, 6.98404572012], "code_commune_insee": "57514"}, "geometry": {"type": "Point", "coordinates": [6.98404572012, 49.1133507394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f7ec7e72c39b1cd1dc39bdd899aaf5e6d0f9b5", "fields": {"nom_de_la_commune": "OMMERAY", "libell_d_acheminement": "OMMERAY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57524"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6638611152a35fa79e2914c28aa043d505ba7a", "fields": {"nom_de_la_commune": "PHALSBOURG", "libell_d_acheminement": "PHALSBOURG", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57540"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b528fd8c2c79d16525d7441bdfff62e022f32362", "fields": {"nom_de_la_commune": "PONTPIERRE", "libell_d_acheminement": "PONTPIERRE", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57549"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9dc9068638d5ca95e5c5d4b92e7f3ff9c4ed97b", "fields": {"nom_de_la_commune": "PREVOCOURT", "libell_d_acheminement": "PREVOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57555"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f9ca88aa6d8ee99ae5b9bf3a9a24321ab4f39b", "fields": {"nom_de_la_commune": "REMILLY", "libell_d_acheminement": "REMILLY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57572"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb3f920f5796f21f90261da6ebc841549949d1d", "fields": {"nom_de_la_commune": "RENING", "libell_d_acheminement": "RENING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57573"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce9bc31b9bc9899892d0e94d9809b8c71052980", "fields": {"nom_de_la_commune": "REZONVILLE", "libell_d_acheminement": "REZONVILLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57578"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6dd70672dc57c5afe84e9ffeba1b3a708199f6", "fields": {"nom_de_la_commune": "ROMBAS", "libell_d_acheminement": "ROMBAS", "code_postal": "57120", "coordonnees_gps": [49.2378389849, 6.09052471357], "code_commune_insee": "57591"}, "geometry": {"type": "Point", "coordinates": [6.09052471357, 49.2378389849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c333bc98c0ea9fb19ced5f3048e8db5e11a871eb", "fields": {"nom_de_la_commune": "ROSSELANGE", "libell_d_acheminement": "ROSSELANGE", "code_postal": "57780", "coordonnees_gps": [49.2665936205, 6.06084289288], "code_commune_insee": "57597"}, "geometry": {"type": "Point", "coordinates": [6.06084289288, 49.2665936205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f90ea3926ed0163e9c9cebba7eafca72870198", "fields": {"nom_de_la_commune": "ROUSSY LE VILLAGE", "libell_d_acheminement": "ROUSSY LE VILLAGE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57600"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc09a3e48538bd442b48f5b3b84726d179c544f4", "fields": {"nom_de_la_commune": "RURANGE LES THIONVILLE", "libell_d_acheminement": "RURANGE LES THIONVILLE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57602"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d05f52d8c92a26774b2c778b94881f20f6e107", "fields": {"nom_de_la_commune": "RUSTROFF", "libell_d_acheminement": "RUSTROFF", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57604"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e06ec2166fe114e4993f41aa296a1281b045ea4", "fields": {"nom_de_la_commune": "STE BARBE", "libell_d_acheminement": "STE BARBE", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57607"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ed615fd588618a01d931f90d92f6be2c7b65bd", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57621"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884c9cf70f48f60da7181b324aadb716f33e2f5f", "fields": {"nom_de_la_commune": "STE RUFFINE", "libell_d_acheminement": "STE RUFFINE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57624"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38722325905d3c4a7c1e00a3f72d82ebeec173b", "fields": {"nom_de_la_commune": "SALONNES", "libell_d_acheminement": "SALONNES", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57625"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f2d05fb66c9fb7a0eeff1f2fbea81161033299", "fields": {"nom_de_la_commune": "SCHWEYEN", "libell_d_acheminement": "SCHWEYEN", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57641"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1c79602c0284e5dfb04312cb103dd4634f8272", "fields": {"nom_de_la_commune": "SERVIGNY LES RAVILLE", "libell_d_acheminement": "SERVIGNY LES RAVILLE", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57648"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d3ad3c451de4d36c328b70cd481b1d7b4e443b0", "fields": {"nom_de_la_commune": "SILLY SUR NIED", "libell_d_acheminement": "SILLY SUR NIED", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57654"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb22627bc9f4ccebbb66439b69d48a162372932", "fields": {"nom_de_la_commune": "SOLGNE", "libell_d_acheminement": "SOLGNE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57655"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25440b60c1787d520d28cac7ef7f16b963bab8bf", "fields": {"nom_de_la_commune": "TETING SUR NIED", "libell_d_acheminement": "TETING SUR NIED", "code_postal": "57385", "coordonnees_gps": [49.0669027987, 6.64766782853], "code_commune_insee": "57668"}, "geometry": {"type": "Point", "coordinates": [6.64766782853, 49.0669027987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa84bb4f55a1e955e08a4e2c7a7dbdeb618dc5a1", "fields": {"nom_de_la_commune": "TREMERY", "libell_d_acheminement": "TREMERY", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57677"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02467794880f2c303f387ef2f3b0dcc583c6c0c", "fields": {"nom_de_la_commune": "TRESSANGE", "libell_d_acheminement": "TRESSANGE", "code_postal": "57710", "coordonnees_gps": [49.4142056636, 5.96361653857], "code_commune_insee": "57678"}, "geometry": {"type": "Point", "coordinates": [5.96361653857, 49.4142056636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ff53b3644679b11eeec904901fc80184047800", "fields": {"nom_de_la_commune": "VASPERVILLER", "libell_d_acheminement": "VASPERVILLER", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57697"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9ae7baab4a4508ca233132148adef7cc09617a", "fields": {"nom_de_la_commune": "VAUDRECHING", "libell_d_acheminement": "VAUDRECHING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57700"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe5de263b448924dccf51df6760536f55fe32ac", "fields": {"nom_de_la_commune": "VESCHEIM", "libell_d_acheminement": "VESCHEIM", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57709"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc28499990e469cca7fca16b6b148bc58d82688", "fields": {"nom_de_la_commune": "VILLING", "libell_d_acheminement": "VILLING", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57720"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab73aaf71405bd8dd125912cc8997021dc41afc0", "fields": {"nom_de_la_commune": "VILSBERG", "libell_d_acheminement": "VILSBERG", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57721"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8745e86b2a4edaf220710e7c859fdf19d704e8e", "fields": {"nom_de_la_commune": "VOLMERANGE LES BOULAY", "libell_d_acheminement": "VOLMERANGE LES BOULAY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57730"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7f9abd5ce890e57e1e81820b037a66eead3556", "fields": {"nom_de_la_commune": "VOLMERANGE LES MINES", "libell_d_acheminement": "VOLMERANGE LES MINES", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57731"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9034e657199a11571156ab7f0d5f8115d4310a7d", "fields": {"nom_de_la_commune": "VOLMUNSTER", "libell_d_acheminement": "VOLMUNSTER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57732"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25850b6851e1f807e48f3232a15cd5ac88741a63", "fields": {"nom_de_la_commune": "WALDWEISTROFF", "libell_d_acheminement": "WALDWEISTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57739"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1adc62244ace0c6260251b8024b7532ca9144c", "fields": {"nom_de_la_commune": "WALSCHBRONN", "libell_d_acheminement": "WALSCHBRONN", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57741"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14bf9fc51ed6e18febc6bc8e3ed7b6a2064d400", "fields": {"nom_de_la_commune": "WILLERWALD", "libell_d_acheminement": "WILLERWALD", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57746"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd3df1b4e8a8d8744ad204d0e6f1c37f282d8c5", "fields": {"nom_de_la_commune": "ZARBELING", "libell_d_acheminement": "ZARBELING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57759"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a797d175b8c10845a95b074f5de9dec6d94539", "fields": {"nom_de_la_commune": "ZIMMING", "libell_d_acheminement": "ZIMMING", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57762"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee247390bf09b82e32b9d109bb57014fa4f23b4d", "fields": {"nom_de_la_commune": "ALLIGNY COSNE", "libell_d_acheminement": "ALLIGNY COSNE", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58002"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474e8bc6d2a741ccb52e2db3be1a701b78eafe40", "fields": {"nom_de_la_commune": "ALLIGNY EN MORVAN", "libell_d_acheminement": "ALLIGNY EN MORVAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58003"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6097831839d0d108cce3f5c650c33a981e02cffc", "fields": {"nom_de_la_commune": "AMAZY", "libell_d_acheminement": "AMAZY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58005"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6aa6d24a682c9ba183c2d9c6c184ba52f4176a7", "fields": {"nom_de_la_commune": "ASNOIS", "libell_d_acheminement": "ASNOIS", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58016"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de71cb74634fed285eb239f5253d6a774d16b0dd", "fields": {"nom_de_la_commune": "AUTHIOU", "libell_d_acheminement": "AUTHIOU", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58018"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0edcbb87c756eda2ba5a10902f7baaea63af4ef1", "fields": {"nom_de_la_commune": "BAZOCHES", "libell_d_acheminement": "BAZOCHES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58023"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c86b241b6ffcd7a1e246605f5073db63d74065a", "fields": {"nom_de_la_commune": "BAZOLLES", "libell_d_acheminement": "BAZOLLES", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58024"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598d139e1d91f443eaa505acff03bfbb85bd1899", "fields": {"code_postal": "58110", "code_commune_insee": "58024", "libell_d_acheminement": "BAZOLLES", "ligne_5": "BAYE", "nom_de_la_commune": "BAZOLLES", "coordonnees_gps": [47.0705293226, 3.65958996316]}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f11f6b42a7d77e3c87ba929879dfe54f46997a", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58026"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161a28d0433e81340bbe5bc629f37cb8065eefc8", "fields": {"nom_de_la_commune": "BEUVRON", "libell_d_acheminement": "BEUVRON", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58029"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5871a757e85eae7058be1caf3398f66894c8cd3e", "fields": {"nom_de_la_commune": "BULCY", "libell_d_acheminement": "BULCY", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58042"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f59dcb8b0def29055d132ff6e899816c25c2e0d", "fields": {"nom_de_la_commune": "BUSSY LA PESLE", "libell_d_acheminement": "BUSSY LA PESLE", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58043"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b4d8964e22a24ee3d4128a2143dbed7d4caf767", "fields": {"nom_de_la_commune": "FRY", "libell_d_acheminement": "FRY", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76292"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ef501f68db557da32938a584413b3afd23d569", "fields": {"nom_de_la_commune": "GERPONVILLE", "libell_d_acheminement": "GERPONVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76299"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbecdaa388b9c30a238cbcc837cc5ee0b4791fc2", "fields": {"nom_de_la_commune": "GOMMERVILLE", "libell_d_acheminement": "GOMMERVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76303"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c88e9f7c76df8136574734b17be549e27fd361", "fields": {"nom_de_la_commune": "GONFREVILLE L ORCHER", "libell_d_acheminement": "GONFREVILLE L ORCHER", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76305"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eef65af3d241263154df4f4e885c61e8ea21d56", "fields": {"nom_de_la_commune": "GONZEVILLE", "libell_d_acheminement": "GONZEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76309"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3985349224f2a090e448b460a1533849c9247a", "fields": {"nom_de_la_commune": "GRAND CAMP", "libell_d_acheminement": "GRAND CAMP", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76318"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d4613132b3427d740fe08963e8c01b5f3932ad", "fields": {"nom_de_la_commune": "GREUVILLE", "libell_d_acheminement": "GREUVILLE", "code_postal": "76810", "coordonnees_gps": [49.8183017172, 0.909956349488], "code_commune_insee": "76327"}, "geometry": {"type": "Point", "coordinates": [0.909956349488, 49.8183017172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0063a29116e20b02be64658aeb5478b3d88e1079", "fields": {"nom_de_la_commune": "HAUTOT ST SULPICE", "libell_d_acheminement": "HAUTOT ST SULPICE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76348"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0023f73366a73b31b89972cd1bf726919c73eae1", "fields": {"code_postal": "76550", "code_commune_insee": "76349", "libell_d_acheminement": "HAUTOT SUR MER", "ligne_5": "LE PETIT APPEVILLE", "nom_de_la_commune": "HAUTOT SUR MER", "coordonnees_gps": [49.8714214242, 1.05265186739]}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1792984cfc4eb4fca1faedc16fb8a7dadbd93b81", "fields": {"nom_de_la_commune": "LE HAVRE", "libell_d_acheminement": "LE HAVRE", "code_postal": "76620", "coordonnees_gps": [49.4965610328, 0.1402707121], "code_commune_insee": "76351"}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31490bc6f4a42718c5c8097cf8ab773a0419265f", "fields": {"nom_de_la_commune": "LA HAYE", "libell_d_acheminement": "LA HAYE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76352"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c99549c1f3326d3b430e53ce1883a7ec57dc901", "fields": {"nom_de_la_commune": "HEBERVILLE", "libell_d_acheminement": "HEBERVILLE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76353"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdc8d7d42be0437760b549595f95f2c8f2064be", "fields": {"nom_de_la_commune": "HEUQUEVILLE", "libell_d_acheminement": "HEUQUEVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76361"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7888a8858a59b12548cfb37710a5feb004788f1e", "fields": {"nom_de_la_commune": "INCHEVILLE", "libell_d_acheminement": "INCHEVILLE", "code_postal": "76117", "coordonnees_gps": [50.0052512426, 1.49970503899], "code_commune_insee": "76374"}, "geometry": {"type": "Point", "coordinates": [1.49970503899, 50.0052512426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f16ce84429da63b5a3c461cb1ce6d21d973f85", "fields": {"nom_de_la_commune": "LILLEBONNE", "libell_d_acheminement": "LILLEBONNE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76384"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83344bf847fdd06a6d2b91e287e4032ee1685058", "fields": {"nom_de_la_commune": "LIMPIVILLE", "libell_d_acheminement": "LIMPIVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76386"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae228773274f0af6305024f113935ee08c99f5a2", "fields": {"nom_de_la_commune": "LINDEBEUF", "libell_d_acheminement": "LINDEBEUF", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76387"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5000c3100a551909a06eaaacf70a4b4734387708", "fields": {"nom_de_la_commune": "LINTOT LES BOIS", "libell_d_acheminement": "LINTOT LES BOIS", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76389"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f9665a8c6289646125db360b189400f5da436a4", "fields": {"nom_de_la_commune": "LONGROY", "libell_d_acheminement": "LONGROY", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76394"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed2c9d9a57bdc23329d12eea6051e4a9716295e", "fields": {"nom_de_la_commune": "LUCY", "libell_d_acheminement": "LUCY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76399"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a63b69b9ee93300a9f9b17aae0f47e6de9a7d800", "fields": {"code_postal": "76940", "code_commune_insee": "76401", "libell_d_acheminement": "ARELAUNE EN SEINE", "ligne_5": "LA MAILLERAYE SUR SEINE", "nom_de_la_commune": "ARELAUNE EN SEINE", "coordonnees_gps": [49.4548266435, 0.725950851811]}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7389a5bd1f295fcb02f29c601465e32bdf56d12c", "fields": {"nom_de_la_commune": "MALLEVILLE LES GRES", "libell_d_acheminement": "MALLEVILLE LES GRES", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76403"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b81756e3c648d30f703e934c5d1fdd609b56d72", "fields": {"nom_de_la_commune": "MANEGLISE", "libell_d_acheminement": "MANEGLISE", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76404"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a315e86edf6cef42f0bd5050dfdfe0558413d65", "fields": {"nom_de_la_commune": "MANEHOUVILLE", "libell_d_acheminement": "MANEHOUVILLE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76405"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b89b259d0d063f297c99237ed135d8d030c9af", "fields": {"nom_de_la_commune": "MANNEVILLE ES PLAINS", "libell_d_acheminement": "MANNEVILLE ES PLAINS", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76407"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb958795853839e51cff65b9cc3080fe704a9e2c", "fields": {"nom_de_la_commune": "MAROMME", "libell_d_acheminement": "MAROMME", "code_postal": "76150", "coordonnees_gps": [49.4875793097, 1.0078796915], "code_commune_insee": "76410"}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f489bcbbe95c7098ec5e01d34d921f19ef9a3f78", "fields": {"nom_de_la_commune": "MATHONVILLE", "libell_d_acheminement": "MATHONVILLE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76416"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7103796d6de17a5804b9626bcfeb91a860fc30", "fields": {"nom_de_la_commune": "MELLEVILLE", "libell_d_acheminement": "MELLEVILLE", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76422"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9989011cb19e7901ef967216d3c555353ed9336e", "fields": {"nom_de_la_commune": "MENERVAL", "libell_d_acheminement": "MENERVAL", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76423"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7865a0f2988eeb514cf17940d7c6b65e5383f523", "fields": {"nom_de_la_commune": "LE MESNIL LIEUBRAY", "libell_d_acheminement": "LE MESNIL LIEUBRAY", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76431"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285b2fb9879c27588e009e4bc5a2ae96e95f339d", "fields": {"nom_de_la_commune": "MEULERS", "libell_d_acheminement": "MEULERS", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76437"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bed861b10630dbce34c95d0ba8432a846cf807b", "fields": {"nom_de_la_commune": "MOLAGNIES", "libell_d_acheminement": "MOLAGNIES", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76440"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8f1251b0f0987da493102fd3af5782f428deaa", "fields": {"nom_de_la_commune": "MONTEROLIER", "libell_d_acheminement": "MONTEROLIER", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76445"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29e710cdd4435e1a805ba90fc12e0a6d576f018", "fields": {"nom_de_la_commune": "MONT ST AIGNAN", "libell_d_acheminement": "MONT ST AIGNAN", "code_postal": "76130", "coordonnees_gps": [49.4669830851, 1.08138912712], "code_commune_insee": "76451"}, "geometry": {"type": "Point", "coordinates": [1.08138912712, 49.4669830851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508cf177b687addb83199dfd87cbea721ba5a715", "fields": {"nom_de_la_commune": "MOULINEAUX", "libell_d_acheminement": "MOULINEAUX", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76457"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8dd76ce7dc519f7cbb6797a8860c531ce357fb", "fields": {"nom_de_la_commune": "NESLE NORMANDEUSE", "libell_d_acheminement": "NESLE NORMANDEUSE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76460"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04538de835dd3ec329fd175d13ade3efb7ccb5ab", "fields": {"nom_de_la_commune": "NEUF MARCHE", "libell_d_acheminement": "NEUF MARCHE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76463"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4463f3f3fc55f2be77bdff497af0fb01eeac841", "fields": {"nom_de_la_commune": "NOTRE DAME DE BLIQUETUIT", "libell_d_acheminement": "NOTRE DAME DE BLIQUETUIT", "code_postal": "76940", "coordonnees_gps": [49.4548266435, 0.725950851811], "code_commune_insee": "76473"}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dcea0d5b8fc769fc27188775cedfd2cdde90e3", "fields": {"nom_de_la_commune": "NOTRE DAME DE BONDEVILLE", "libell_d_acheminement": "NOTRE DAME DE BONDEVILLE", "code_postal": "76960", "coordonnees_gps": [49.4877534102, 1.0549887883], "code_commune_insee": "76474"}, "geometry": {"type": "Point", "coordinates": [1.0549887883, 49.4877534102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99e5fdc3ddd48116bece5020b10c12922f58d0c", "fields": {"nom_de_la_commune": "NOTRE DAME DU PARC", "libell_d_acheminement": "NOTRE DAME DU PARC", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76478"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e16c23f9567c631abfdf299829b9f1b5a87dbf", "fields": {"nom_de_la_commune": "NULLEMONT", "libell_d_acheminement": "NULLEMONT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76479"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03f7f1912cf2bbad940e2a1f203490ae0909555", "fields": {"nom_de_la_commune": "OCQUEVILLE", "libell_d_acheminement": "OCQUEVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76480"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a26e469005aee266d6fd005e4897cb8c04b0a49", "fields": {"nom_de_la_commune": "PETIT COURONNE", "libell_d_acheminement": "PETIT COURONNE", "code_postal": "76650", "coordonnees_gps": [49.3804321668, 1.03471399702], "code_commune_insee": "76497"}, "geometry": {"type": "Point", "coordinates": [1.03471399702, 49.3804321668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556b7f0fee4761fc61d59e283bd8a236b3230f44", "fields": {"nom_de_la_commune": "LE PETIT QUEVILLY", "libell_d_acheminement": "LE PETIT QUEVILLY", "code_postal": "76140", "coordonnees_gps": [49.4243826059, 1.05958574063], "code_commune_insee": "76498"}, "geometry": {"type": "Point", "coordinates": [1.05958574063, 49.4243826059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51639f79f73e13738baa4ac361775e9181ea1c14", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76509"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75b79db15edf10f2686267f78a89386dd55bcb4", "fields": {"nom_de_la_commune": "PREUSEVILLE", "libell_d_acheminement": "PREUSEVILLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76511"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a24bb1d2bb13eaf40c9f28cacfb1406eb86e10", "fields": {"nom_de_la_commune": "QUEVREVILLE LA POTERIE", "libell_d_acheminement": "QUEVREVILLE LA POTERIE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76514"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0308fc1fddadd92e32342a9691333e221231a9", "fields": {"nom_de_la_commune": "RAINFREVILLE", "libell_d_acheminement": "RAINFREVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76519"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49e25b0f8eeb1b1cd023aba1822753e4162878af", "fields": {"nom_de_la_commune": "RETONVAL", "libell_d_acheminement": "RETONVAL", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76523"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026854045b359f434ae4cee091b2eaaeb2b2c604", "fields": {"nom_de_la_commune": "ROBERTOT", "libell_d_acheminement": "ROBERTOT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76530"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12aaf8ee273c639f8baba38463e89b660528b1d", "fields": {"nom_de_la_commune": "ROCQUEMONT", "libell_d_acheminement": "ROCQUEMONT", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76532"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0c2a23e66e518abf3a847b8d510f1faf46d5de", "fields": {"nom_de_la_commune": "ROLLEVILLE", "libell_d_acheminement": "ROLLEVILLE", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76534"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01de421bfea48e417e30c6cbb596f8c82e4f33c", "fields": {"nom_de_la_commune": "RONCHEROLLES EN BRAY", "libell_d_acheminement": "RONCHEROLLES EN BRAY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76535"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5fac23ff64e47eb94fad1077f9d9c0445100d9", "fields": {"nom_de_la_commune": "RONCHEROLLES SUR LE VIVIER", "libell_d_acheminement": "RONCHEROLLES SUR LE VIVIER", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76536"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da80458a8af1468f17b2b47696e5da8b8da581a", "fields": {"nom_de_la_commune": "RONCHOIS", "libell_d_acheminement": "RONCHOIS", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76537"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a440bdfcd1bf427a0db11dfea785b690c1a127", "fields": {"nom_de_la_commune": "ROUEN", "libell_d_acheminement": "ROUEN", "code_postal": "76000", "coordonnees_gps": [49.4414760352, 1.09318612833], "code_commune_insee": "76540"}, "geometry": {"type": "Point", "coordinates": [1.09318612833, 49.4414760352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fb0e1b26c9bd0a27a25288360ecfe812e4a2a6", "fields": {"nom_de_la_commune": "ROUXMESNIL BOUTEILLES", "libell_d_acheminement": "ROUXMESNIL BOUTEILLES", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76545"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1746fe82fca22a961dc379a13bace776f6867f88", "fields": {"nom_de_la_commune": "SAANE ST JUST", "libell_d_acheminement": "SAANE ST JUST", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76549"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690fea7ee6933733cfee73e5b176d3b6515745c2", "fields": {"nom_de_la_commune": "STE AGATHE D ALIERMONT", "libell_d_acheminement": "STE AGATHE D ALIERMONT", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76553"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d46e632dec135fb26c524cf31a0f7891cb6eeb", "fields": {"nom_de_la_commune": "ST AUBIN ROUTOT", "libell_d_acheminement": "ST AUBIN ROUTOT", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76563"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a044b09183115534763143d0979d2c88863d1830", "fields": {"nom_de_la_commune": "ST DENIS SUR SCIE", "libell_d_acheminement": "ST DENIS SUR SCIE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76574"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426b498ac8585c44707e0b9782d38dc530f16c90", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76577"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23793788648e313765d6cad515ea6bdd7ec6d102", "fields": {"nom_de_la_commune": "ST GERMAIN SUR EAULNE", "libell_d_acheminement": "ST GERMAIN SUR EAULNE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76584"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1817ff6b945277e8ae7ad459106b91d0560bafe1", "fields": {"nom_de_la_commune": "ST HONORE", "libell_d_acheminement": "ST HONORE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76589"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a77f27c65fb779526af9bb623e7547ba66a5c8", "fields": {"nom_de_la_commune": "ST JEAN DE FOLLEVILLE", "libell_d_acheminement": "ST JEAN DE FOLLEVILLE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76592"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84258441e06c8ca6b422176a67687ba4a56bc89d", "fields": {"nom_de_la_commune": "ST LAURENT EN CAUX", "libell_d_acheminement": "ST LAURENT EN CAUX", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76597"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "defc9c37ea18cd6b239eb387d3257eb3b71e11ab", "fields": {"nom_de_la_commune": "ST LEGER AUX BOIS", "libell_d_acheminement": "ST LEGER AUX BOIS", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76598"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05a235e3b175b67087329c95cc717655974e138", "fields": {"nom_de_la_commune": "STE MARIE AU BOSC", "libell_d_acheminement": "STE MARIE AU BOSC", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76609"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19072c187f99cbe3f6ebd48715b3516751537bb6", "fields": {"nom_de_la_commune": "STE MARIE DES CHAMPS", "libell_d_acheminement": "STE MARIE DES CHAMPS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76610"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c7454b6b776d73e48d8c5a9160590373fc0382", "fields": {"nom_de_la_commune": "ST MARTIN DE BOSCHERVILLE", "libell_d_acheminement": "ST MARTIN DE BOSCHERVILLE", "code_postal": "76840", "coordonnees_gps": [49.4447486828, 0.958671899236], "code_commune_insee": "76614"}, "geometry": {"type": "Point", "coordinates": [0.958671899236, 49.4447486828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b70e52b8d6766d2e4f2adaef4e731aaeec665ea4", "fields": {"nom_de_la_commune": "ST MARTIN DU BEC", "libell_d_acheminement": "ST MARTIN DU BEC", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76615"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb167edaf3024cbafe7e61babf189e7590909fe4", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BRACQUEMONT", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6484e0e720cf37b03488692fa4b3b88aa74cf6ff", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "DERCHIGNY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efedbda390897357a4c19ab0443b43692a410b32", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "ASSIGNY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a4c50e90ccb17344068912c2ee27f156b097b0", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BIVILLE SUR MER", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238bd392d1775ec58a769e2979450c2ad9f78d6f", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "TOURVILLE LA CHAPELLE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd29c2bcb9754b9400f7c0ddb457d2a47aef62e1", "fields": {"code_postal": "76910", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "TOCQUEVILLE SUR EU", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [50.002581149, 1.30116674877]}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b07325f7f5f0ed96c1f7a7c182bd914b43f0e9a9", "fields": {"nom_de_la_commune": "ST OUEN DU BREUIL", "libell_d_acheminement": "ST OUEN DU BREUIL", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76628"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f25b2097a5827923776d833f5537a282fdb7a81", "fields": {"nom_de_la_commune": "ST PIERRE LE VIGER", "libell_d_acheminement": "ST PIERRE LE VIGER", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76642"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7896dd48248ceff363d003d9ca796be5ab1ed360", "fields": {"nom_de_la_commune": "ST SAIRE", "libell_d_acheminement": "ST SAIRE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76649"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964cc563b5aa986572c36916e188766f6b089cac", "fields": {"nom_de_la_commune": "ST SAUVEUR D EMALLEVILLE", "libell_d_acheminement": "ST SAUVEUR D EMALLEVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76650"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be02b6935c8bd47037d2cf061d90d217b182796", "fields": {"nom_de_la_commune": "ST VINCENT CRAMESNIL", "libell_d_acheminement": "ST VINCENT CRAMESNIL", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76658"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044cb859239c7cf845fa62085077456bb2729569", "fields": {"nom_de_la_commune": "SASSETOT LE MALGARDE", "libell_d_acheminement": "SASSETOT LE MALGARDE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76662"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656d56acd849e0187c005a2f4dbe381abbeff99f", "fields": {"nom_de_la_commune": "SAUCHAY", "libell_d_acheminement": "SAUCHAY", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76665"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb650426b9d72b2f8b5d5f6816161040bb0eb474", "fields": {"nom_de_la_commune": "SAUMONT LA POTERIE", "libell_d_acheminement": "SAUMONT LA POTERIE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76666"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0bd636cf5bc57a51a4e3475090212ed78ef26af", "fields": {"nom_de_la_commune": "SENNEVILLE SUR FECAMP", "libell_d_acheminement": "SENNEVILLE SUR FECAMP", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76670"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936afd30742bac4a7a08ab7de4f1e1ab07eb6544", "fields": {"nom_de_la_commune": "SORQUAINVILLE", "libell_d_acheminement": "SORQUAINVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76680"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f40cafdbcd13e096b9752c7918dec6285a1624a", "fields": {"nom_de_la_commune": "THIERGEVILLE", "libell_d_acheminement": "THIERGEVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76688"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8746ce6a9cef63a8c9ea51301d115aa2eec04040", "fields": {"nom_de_la_commune": "THIOUVILLE", "libell_d_acheminement": "THIOUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76692"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bab19e3d50f7b6f4c2bc4ac613760c83547161", "fields": {"nom_de_la_commune": "LE TILLEUL", "libell_d_acheminement": "LE TILLEUL", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76693"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7920bae39adc0f76de267e1eb9d57723b4f58ce3", "fields": {"nom_de_la_commune": "TOCQUEVILLE LES MURS", "libell_d_acheminement": "TOCQUEVILLE LES MURS", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76695"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469c5c4dddd0eade825a6e26bbdbfe4ef5a4c4dd", "fields": {"nom_de_la_commune": "TOURVILLE LA RIVIERE", "libell_d_acheminement": "TOURVILLE LA RIVIERE", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76705"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc65b035a80a7615279ec89994c939a2f2b6cb3", "fields": {"nom_de_la_commune": "TOUSSAINT", "libell_d_acheminement": "TOUSSAINT", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76708"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da5c26fe9115aafcae46353819d2aa6ded62252", "fields": {"nom_de_la_commune": "VALMONT", "libell_d_acheminement": "VALMONT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76719"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f3cf847a1207a16f92228afbe2c047df7ccd6f", "fields": {"nom_de_la_commune": "VATTETOT SOUS BEAUMONT", "libell_d_acheminement": "VATTETOT SOUS BEAUMONT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76725"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64049975f310abb2d3365b04316aa0cf6632d1a4", "fields": {"nom_de_la_commune": "VENESTANVILLE", "libell_d_acheminement": "VENESTANVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76731"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3538bc3655c5d95cfa60d9c6e4007cf14ba7585", "fields": {"nom_de_la_commune": "BUTOT VENESVILLE", "libell_d_acheminement": "BUTOT VENESVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76732"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad7ea6563a395aa607e69d6c9a58973c4217d72", "fields": {"nom_de_la_commune": "VEULETTES SUR MER", "libell_d_acheminement": "VEULETTES SUR MER", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76736"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aee13532d1650276268edaccb85cc3554ebf178", "fields": {"nom_de_la_commune": "VIEUX MANOIR", "libell_d_acheminement": "VIEUX MANOIR", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76738"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603fccbcec1a44c5b84cee94c772cedcd37637c7", "fields": {"nom_de_la_commune": "VITTEFLEUR", "libell_d_acheminement": "VITTEFLEUR", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76748"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dd928cb27fe77b06b7bf172795ccc4ce7e5555", "fields": {"nom_de_la_commune": "CHERISEY", "libell_d_acheminement": "CHERISEY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57139"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f16403793deb9a5420dfb788d6a7d62acaec4a", "fields": {"nom_de_la_commune": "CHESNY", "libell_d_acheminement": "CHESNY", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57140"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3eeb38fec78e73f95cd9f3b65ecdcd38dd811b", "fields": {"nom_de_la_commune": "CHICOURT", "libell_d_acheminement": "CHICOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57141"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a87776792750a311ca5c519a006525e0344876b5", "fields": {"nom_de_la_commune": "CORNY SUR MOSELLE", "libell_d_acheminement": "CORNY SUR MOSELLE", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57153"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343508ea8f4167de89e719aeeb6c2762f0669297", "fields": {"nom_de_la_commune": "COURCELLES CHAUSSY", "libell_d_acheminement": "COURCELLES CHAUSSY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57155"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813be9e0d8adda1a663ccf9ccb717463be38ce80", "fields": {"nom_de_la_commune": "CRAINCOURT", "libell_d_acheminement": "CRAINCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57158"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b786e29cfec93a70992ef514972cb6b1336000e4", "fields": {"nom_de_la_commune": "CUVRY", "libell_d_acheminement": "CUVRY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57162"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b6a4e19cd1a79f6ceb959c03a56628737c4c7c", "fields": {"code_postal": "57850", "code_commune_insee": "57163", "libell_d_acheminement": "DABO", "ligne_5": "SCHAEFERHOF", "nom_de_la_commune": "DABO", "coordonnees_gps": [48.6473916816, 7.23779474872]}, "geometry": {"type": "Point", "coordinates": [7.23779474872, 48.6473916816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781f86635a6981d2dcefd8ce3214e88c25923095", "fields": {"nom_de_la_commune": "DALEM", "libell_d_acheminement": "DALEM", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57165"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676f7a8ce5b8396bf6a1d1aa70be1fd661f3c0bb", "fields": {"nom_de_la_commune": "DELME", "libell_d_acheminement": "DELME", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57171"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9afe5523955e14ab2300a23983b3be152e21eb69", "fields": {"nom_de_la_commune": "DENTING", "libell_d_acheminement": "DENTING", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57172"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27260d6258d7c633094410214a5a3e9636514e39", "fields": {"nom_de_la_commune": "DIEUZE", "libell_d_acheminement": "DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57177"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "004943a8ab2a5b1d5f526c7a803264ed8ba859cb", "fields": {"nom_de_la_commune": "EGUELSHARDT", "libell_d_acheminement": "EGUELSHARDT", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57188"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e788058307e87721dba217bd6288382c2ca29fc5", "fields": {"nom_de_la_commune": "ELZANGE", "libell_d_acheminement": "ELZANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57191"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df78578991a2d160adc1a8bcc09d9f7556132cef", "fields": {"nom_de_la_commune": "ESCHERANGE", "libell_d_acheminement": "ESCHERANGE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57199"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "723b642c36cd0486ede4930997207f95b836a109", "fields": {"nom_de_la_commune": "FOLKLING", "libell_d_acheminement": "FOLKLING", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57222"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b107afb6ae9de0a9af8c9904bf3f32905dc7cd6b", "fields": {"nom_de_la_commune": "FONTENY", "libell_d_acheminement": "FONTENY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57225"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "638dfc5a7a2966a1a0ce83c17b8f006faefe4919", "fields": {"code_postal": "57600", "code_commune_insee": "57227", "libell_d_acheminement": "FORBACH", "ligne_5": "KREUTZBERG", "nom_de_la_commune": "FORBACH", "coordonnees_gps": [49.1737473048, 6.89495701943]}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25c0fa1196a40439374d5ad88467213cc840026", "fields": {"nom_de_la_commune": "FRANCALTROFF", "libell_d_acheminement": "FRANCALTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57232"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35136fe42e2889c38fd306c4c1fd13d3cd42c3a1", "fields": {"nom_de_la_commune": "FREMERY", "libell_d_acheminement": "FREMERY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57236"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6d8d9fab92d8a2b8040f60a94bf97ef5860809", "fields": {"nom_de_la_commune": "GAVISSE", "libell_d_acheminement": "GAVISSE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57245"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6dc427d0ed0f292b81ccdaff169475c33bd4103", "fields": {"nom_de_la_commune": "GROS REDERCHING", "libell_d_acheminement": "GROS REDERCHING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57261"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7092fc4af0c9628cc4dbd7fe3b5636a29ab2c13a", "fields": {"nom_de_la_commune": "GUEBESTROFF", "libell_d_acheminement": "GUEBESTROFF", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57265"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371523a430a6d4dbacb3a1951fc6b28212bbb02f", "fields": {"nom_de_la_commune": "GUEBLANGE LES DIEUZE", "libell_d_acheminement": "GUEBLANGE LES DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57266"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d048eb2ed989541f2dc7e0009d39cf93d47eebc5", "fields": {"nom_de_la_commune": "GUENANGE", "libell_d_acheminement": "GUENANGE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57269"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a505430a1c54b011783c9475cca3c9272ffd54", "fields": {"nom_de_la_commune": "GUERSTLING", "libell_d_acheminement": "GUERSTLING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57273"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2aa4bc822f64bc1c5aa519e101faaebae016eb", "fields": {"nom_de_la_commune": "GUINZELING", "libell_d_acheminement": "GUINZELING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57278"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f35f19944da0f31febe6eab182557006271220b", "fields": {"nom_de_la_commune": "HALLERING", "libell_d_acheminement": "HALLERING", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57284"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e22b0079b8038d2fcd114dc313e03fd337d30b", "fields": {"nom_de_la_commune": "HAMBACH", "libell_d_acheminement": "HAMBACH", "code_postal": "57910", "coordonnees_gps": [49.0604348767, 7.04678570853], "code_commune_insee": "57289"}, "geometry": {"type": "Point", "coordinates": [7.04678570853, 49.0604348767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd9682dac276bbb399d53af09b2ccccc0952aa8", "fields": {"nom_de_la_commune": "HARGARTEN AUX MINES", "libell_d_acheminement": "HARGARTEN AUX MINES", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57296"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0cd101ea4374852c7ec614eb717735cde510729", "fields": {"nom_de_la_commune": "HARPRICH", "libell_d_acheminement": "HARPRICH", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57297"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a357ea9b812b38978ae951381cc6e3ecec7278", "fields": {"nom_de_la_commune": "HATTIGNY", "libell_d_acheminement": "HATTIGNY", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57302"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa27493e8697130be6481c8fa77201a09f4e777", "fields": {"nom_de_la_commune": "HAYES", "libell_d_acheminement": "HAYES", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57307"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47791c5daeacee164d6a926470764f70c59c2095", "fields": {"nom_de_la_commune": "HERANGE", "libell_d_acheminement": "HERANGE", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57317"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851b6cb14391b0967ad36d541ed2466663d15bd5", "fields": {"nom_de_la_commune": "HOLACOURT", "libell_d_acheminement": "HOLACOURT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57328"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56074ec05d207aa1ff7bef90ab478d493e24198f", "fields": {"nom_de_la_commune": "HUNDLING", "libell_d_acheminement": "HUNDLING", "code_postal": "57990", "coordonnees_gps": [49.1133507394, 6.98404572012], "code_commune_insee": "57340"}, "geometry": {"type": "Point", "coordinates": [6.98404572012, 49.1133507394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d106ace29da4a5e0e88fab4e30d3c9ac276b2504", "fields": {"nom_de_la_commune": "JALLAUCOURT", "libell_d_acheminement": "JALLAUCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57349"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5d988b85dc59e7bf316ec74a1aae0309b01401", "fields": {"nom_de_la_commune": "JURY", "libell_d_acheminement": "JURY", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57351"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206648b6a0daee25cea0b5eac303894ed544d954", "fields": {"nom_de_la_commune": "KALHAUSEN", "libell_d_acheminement": "KALHAUSEN", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57355"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c13c8e80e3cfaa5538fd0e66b3233cfa236193b", "fields": {"nom_de_la_commune": "KAPPELKINGER", "libell_d_acheminement": "KAPPELKINGER", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57357"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360f48a862c815519557395347d28b752a7e42cc", "fields": {"nom_de_la_commune": "KEDANGE SUR CANNER", "libell_d_acheminement": "KEDANGE SUR CANNER", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57358"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e8fdf012370de269150f83eaebddbf37ce93031", "fields": {"nom_de_la_commune": "KERBACH", "libell_d_acheminement": "KERBACH", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57360"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f46932ed92e668eedd5f8de4f2b54908ec6782", "fields": {"nom_de_la_commune": "KIRSCHNAUMEN", "libell_d_acheminement": "KIRSCHNAUMEN", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57365"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb1bcd91f3ba7f24eb17ac92a00c84dd38136040", "fields": {"nom_de_la_commune": "LAMBACH", "libell_d_acheminement": "LAMBACH", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57376"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f614565e73bca27fb60f9d75f9e376f35c2aadb", "fields": {"nom_de_la_commune": "LANDROFF", "libell_d_acheminement": "LANDROFF", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57379"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39e4d95abbee48070907bf109b613a89ff5c067", "fields": {"nom_de_la_commune": "LANING", "libell_d_acheminement": "LANING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57384"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abc9e55a2bdf0e9b284f0bad2ebfd8f5a18575a", "fields": {"nom_de_la_commune": "LAQUENEXY", "libell_d_acheminement": "LAQUENEXY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57385"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c3ce83399f7f97da36f743809299a6ca0d1d4b", "fields": {"nom_de_la_commune": "LEMBERG", "libell_d_acheminement": "LEMBERG", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57390"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "890b372296cbea293b4328643023d06b643968d6", "fields": {"nom_de_la_commune": "LEMUD", "libell_d_acheminement": "LEMUD", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57392"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7818443c104cbb636c0badd41d2e3c6d9a0ed740", "fields": {"nom_de_la_commune": "LENGELSHEIM", "libell_d_acheminement": "LENGELSHEIM", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57393"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c13e453219e6273a7b13b0f4ae4c4b1e8eb93fa", "fields": {"nom_de_la_commune": "LEZEY", "libell_d_acheminement": "LEZEY", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57399"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30dbfa9ae1f0b0ecb36be17f0dd1f8517b693b89", "fields": {"nom_de_la_commune": "LINDRE BASSE", "libell_d_acheminement": "LINDRE BASSE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57404"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c91e74eb3eb70f1feb4b4c1fbf2c40454a6671d", "fields": {"nom_de_la_commune": "LINDRE HAUTE", "libell_d_acheminement": "LINDRE HAUTE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57405"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3aeaf8e46476306668f05e67c06072228bbbf4a", "fields": {"nom_de_la_commune": "LHOR", "libell_d_acheminement": "LHOR", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57410"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ddfcad030dfd86d20532eadd6c998c741269eee", "fields": {"nom_de_la_commune": "LONGEVILLE LES METZ", "libell_d_acheminement": "LONGEVILLE LES METZ", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57412"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a428283b9dc820be80d0744b53b3cbb4eabf640f", "fields": {"nom_de_la_commune": "LORQUIN", "libell_d_acheminement": "LORQUIN", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57414"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b135c5be2ed570ea91c4af20357c9fe7eb70a759", "fields": {"nom_de_la_commune": "LOUDREFING", "libell_d_acheminement": "LOUDREFING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57418"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aef02e255a75feb048aa1219939e473668c00f0", "fields": {"nom_de_la_commune": "LOUTZVILLER", "libell_d_acheminement": "LOUTZVILLER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57421"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3a87c33dd9dcdeb0b562b0f224aecb626d9aa3", "fields": {"nom_de_la_commune": "LUBECOURT", "libell_d_acheminement": "LUBECOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57423"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527ee1a8ce63176c2e682ffbd61aab14ed8b0ea6", "fields": {"nom_de_la_commune": "LUCY", "libell_d_acheminement": "LUCY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57424"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d385db77bcacabf64a203b626bca46cca17d07c6", "fields": {"nom_de_la_commune": "MACHEREN", "libell_d_acheminement": "MACHEREN", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57428"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73acfface454ae59dc24a0abd92c5c11ece6ec95", "fields": {"nom_de_la_commune": "MAIZIERES LES METZ", "libell_d_acheminement": "MAIZIERES LES METZ", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57433"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19bf5b8c55f7a0903fd79bfd1a3d09fecf96c7b8", "fields": {"nom_de_la_commune": "MALLING", "libell_d_acheminement": "MALLING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57437"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e54aaa240a3149cf14fb14223fd18a6a98df85", "fields": {"nom_de_la_commune": "MALROY", "libell_d_acheminement": "MALROY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57438"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5612948968e4f5f44873c6cec5e2f2fd0b4f2681", "fields": {"nom_de_la_commune": "MENSKIRCH", "libell_d_acheminement": "MENSKIRCH", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57457"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec118db02c4f0e769c1dc59aa6edf082cc9d3663", "fields": {"nom_de_la_commune": "MERTEN", "libell_d_acheminement": "MERTEN", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57460"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2c80e983e5518f24b2c28833af433c2c5b208a", "fields": {"nom_de_la_commune": "METZ", "libell_d_acheminement": "METZ", "code_postal": "57000", "coordonnees_gps": [49.1080992241, 6.19573945551], "code_commune_insee": "57463"}, "geometry": {"type": "Point", "coordinates": [6.19573945551, 49.1080992241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fdff2866aa3bc0043fbf11ffb06b3f129c8793a", "fields": {"nom_de_la_commune": "METZERVISSE", "libell_d_acheminement": "METZERVISSE", "code_postal": "57940", "coordonnees_gps": [49.3080727824, 6.26745665011], "code_commune_insee": "57465"}, "geometry": {"type": "Point", "coordinates": [6.26745665011, 49.3080727824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7bc299ad9928006a6f2342d58988b5a291bf9e4", "fields": {"nom_de_la_commune": "MOMERSTROFF", "libell_d_acheminement": "MOMERSTROFF", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57471"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a1de3d9fd4a0663670564b2b6b964d1de79716", "fields": {"nom_de_la_commune": "MONDELANGE", "libell_d_acheminement": "MONDELANGE", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57474"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fb2467152b0dac81a3b77612bb2189730c9698", "fields": {"nom_de_la_commune": "MONDORFF", "libell_d_acheminement": "MONDORFF", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57475"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb61ecaeb05704790221c6dd47ef28280d7629d", "fields": {"nom_de_la_commune": "MONTDIDIER", "libell_d_acheminement": "MONTDIDIER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57478"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be54037187079aac5a0e365381dc5d4b35a76e56", "fields": {"nom_de_la_commune": "MONTENACH", "libell_d_acheminement": "MONTENACH", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57479"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52eb54ffbed97bacf93512a3f7b6b3e305c0c4cf", "fields": {"nom_de_la_commune": "MORHANGE", "libell_d_acheminement": "MORHANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57483"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efba803ec16bab92bced8c2baa361c4a202c6005", "fields": {"nom_de_la_commune": "MORVILLE LES VIC", "libell_d_acheminement": "MORVILLE LES VIC", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57485"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3144a7df4c0e977372289d54169328d21544f4b", "fields": {"code_postal": "57160", "code_commune_insee": "57487", "libell_d_acheminement": "MOULINS LES METZ", "ligne_5": "MOULINS ST PIERRE", "nom_de_la_commune": "MOULINS LES METZ", "coordonnees_gps": [49.1183395813, 6.08364219773]}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805be3e563ed306bd41a29df5d7bc9fc99bf4941", "fields": {"nom_de_la_commune": "MOYENVIC", "libell_d_acheminement": "MOYENVIC", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57490"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2b18d22a8c48d34ea9c3e5768695b693ac0e37", "fields": {"nom_de_la_commune": "NARBEFONTAINE", "libell_d_acheminement": "NARBEFONTAINE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57495"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73027eecf557ad2b174ca832d38c51e8ab06155b", "fields": {"nom_de_la_commune": "NEUFGRANGE", "libell_d_acheminement": "NEUFGRANGE", "code_postal": "57910", "coordonnees_gps": [49.0604348767, 7.04678570853], "code_commune_insee": "57499"}, "geometry": {"type": "Point", "coordinates": [7.04678570853, 49.0604348767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac92d3217c52a0674a491e230f7dc71b4602b7c", "fields": {"nom_de_la_commune": "NORROY LE VENEUR", "libell_d_acheminement": "NORROY LE VENEUR", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57511"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50fb45dc5744e034edbfccfde54fd46a3b362c85", "fields": {"nom_de_la_commune": "NOUSSEVILLER LES BITCHE", "libell_d_acheminement": "NOUSSEVILLER LES BITCHE", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57513"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5603e45952a41ef3628d4902a0c2f5961ae79795", "fields": {"nom_de_la_commune": "OBERDORFF", "libell_d_acheminement": "OBERDORFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57516"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d9d008fbeef8c1a1ca5e92a47f4a1e76f53177", "fields": {"nom_de_la_commune": "OBERGAILBACH", "libell_d_acheminement": "OBERGAILBACH", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57517"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cae9a51ae82d30c8719d76301bb6de5f13d8a4a9", "fields": {"nom_de_la_commune": "OBERSTINZEL", "libell_d_acheminement": "OBERSTINZEL", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57518"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aacb848cc1d237727c2398de5c036064e6a3e99", "fields": {"nom_de_la_commune": "OETING", "libell_d_acheminement": "OETING", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57521"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8d46379737b9ebb702b69bfb09a0cbfe2d0d69", "fields": {"nom_de_la_commune": "ORMERSVILLER", "libell_d_acheminement": "ORMERSVILLER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57526"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100678790e678e37f8991827ebc3fb8e10f6aab7", "fields": {"nom_de_la_commune": "OTTANGE", "libell_d_acheminement": "OTTANGE", "code_postal": "57840", "coordonnees_gps": [49.4301490662, 6.01185144376], "code_commune_insee": "57529"}, "geometry": {"type": "Point", "coordinates": [6.01185144376, 49.4301490662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0564d18c445c9237c90b34116ca035daa5c4d686", "fields": {"nom_de_la_commune": "OTTONVILLE", "libell_d_acheminement": "OTTONVILLE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57530"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c984c6f323613865f6dc451a8db7223f0ea153c", "fields": {"nom_de_la_commune": "PETIT REDERCHING", "libell_d_acheminement": "PETIT REDERCHING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57535"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebe794833147e910e060e147cb773588df84f55", "fields": {"nom_de_la_commune": "PEVANGE", "libell_d_acheminement": "PEVANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57539"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb7d09c1f28f10afbbc09783554377c989942df", "fields": {"nom_de_la_commune": "PIBLANGE", "libell_d_acheminement": "PIBLANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57542"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1556ea4edf233db6c9c34a84ec881ff5c88cdf3f", "fields": {"nom_de_la_commune": "PORCELETTE", "libell_d_acheminement": "PORCELETTE", "code_postal": "57890", "coordonnees_gps": [49.1645840246, 6.6727973003], "code_commune_insee": "57550"}, "geometry": {"type": "Point", "coordinates": [6.6727973003, 49.1645840246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6143dfaa2785d63fdfce26efea812f5f3a268c87", "fields": {"nom_de_la_commune": "POURNOY LA CHETIVE", "libell_d_acheminement": "POURNOY LA CHETIVE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57553"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8ec336245545edba1eb0888c02103359cab0d4", "fields": {"nom_de_la_commune": "PUTTELANGE AUX LACS", "libell_d_acheminement": "PUTTELANGE AUX LACS", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57556"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069f1ccbd7300720edbc5793ea87cf8cdab648ab", "fields": {"nom_de_la_commune": "RECHICOURT LE CHATEAU", "libell_d_acheminement": "RECHICOURT LE CHATEAU", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57564"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae1a458f486f6b1c1521b454b9bf0760b50d4a3", "fields": {"nom_de_la_commune": "REDING", "libell_d_acheminement": "REDING", "code_postal": "57445", "coordonnees_gps": [48.7493754059, 7.10464333939], "code_commune_insee": "57566"}, "geometry": {"type": "Point", "coordinates": [7.10464333939, 48.7493754059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62610c7ef7cff7bd4f59f69e9c414d06e7cfa817", "fields": {"nom_de_la_commune": "REMELFANG", "libell_d_acheminement": "REMELFANG", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57567"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096349c2a3308e1be122cdddec3ca45c258b250a", "fields": {"nom_de_la_commune": "RHODES", "libell_d_acheminement": "RHODES", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57579"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a582a05f9068c02238c2f3bbf1e8200d5e4f4c8", "fields": {"nom_de_la_commune": "RICHE", "libell_d_acheminement": "RICHE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57580"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cfbb5ecc0d61bd91ef83aaa4c18f10c9d74320", "fields": {"nom_de_la_commune": "RICHELING", "libell_d_acheminement": "RICHELING", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57581"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ff5df540343b3af0ef52bf655a599d4dbc0d74", "fields": {"nom_de_la_commune": "BARISEY LA COTE", "libell_d_acheminement": "BARISEY LA COTE", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54047"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab66412f9bc93226779d9bb80503876d20154cb", "fields": {"code_postal": "54150", "code_commune_insee": "54048", "libell_d_acheminement": "LES BAROCHES", "ligne_5": "GENAVILLE", "nom_de_la_commune": "LES BAROCHES", "coordonnees_gps": [49.264324437, 5.89404491023]}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e85e8170cd19578179286b71c8e2a0157f0f7e0", "fields": {"nom_de_la_commune": "BATTIGNY", "libell_d_acheminement": "BATTIGNY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54052"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02371d539a84793affd1d1127546ccb6e53c635", "fields": {"nom_de_la_commune": "BELLEAU", "libell_d_acheminement": "BELLEAU", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54059"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab1430b11a9886fbf26139bedb658a18b1699d3", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "MANONCOURT SUR SEILLE", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b423358f2509a09f83c4db880a3525933878b1ae", "fields": {"nom_de_la_commune": "BENNEY", "libell_d_acheminement": "BENNEY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54062"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e30763532dd2e57cdfb608b8359556baaabe713", "fields": {"nom_de_la_commune": "BETTAINVILLERS", "libell_d_acheminement": "BETTAINVILLERS", "code_postal": "54640", "coordonnees_gps": [49.3041198945, 5.8990385658], "code_commune_insee": "54066"}, "geometry": {"type": "Point", "coordinates": [5.8990385658, 49.3041198945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2046126798677e1b5f101832b6baa45b3c29d69", "fields": {"nom_de_la_commune": "BOISMONT", "libell_d_acheminement": "BOISMONT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54081"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7230f8d6a0f7fa33a9e157d2973698ee5ced4044", "fields": {"nom_de_la_commune": "BORVILLE", "libell_d_acheminement": "BORVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54085"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e34d740590c63c5dd6d8feaee39452581003d07", "fields": {"nom_de_la_commune": "BOUXIERES AUX CHENES", "libell_d_acheminement": "BOUXIERES AUX CHENES", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54089"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b2f02c120fdc7c82e2d0edc074a5d2acdf8cdb", "fields": {"nom_de_la_commune": "BOUZANVILLE", "libell_d_acheminement": "BOUZANVILLE", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54092"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36bff50f33af91e90e7a2d118a7e0bd0ef284d6a", "fields": {"nom_de_la_commune": "BREHAIN LA VILLE", "libell_d_acheminement": "BREHAIN LA VILLE", "code_postal": "54190", "coordonnees_gps": [49.4525960193, 5.89523270383], "code_commune_insee": "54096"}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219ddc8f112d3def2384f0f6676b9340a50ab20a", "fields": {"nom_de_la_commune": "BRULEY", "libell_d_acheminement": "BRULEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54102"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48a1583507cc282d008623156c5a63b598f07dc", "fields": {"nom_de_la_commune": "BULLIGNY", "libell_d_acheminement": "BULLIGNY", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54105"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1ba005a33d98a41ea538dfb285ca0ef4f16bfd", "fields": {"nom_de_la_commune": "CHARMOIS", "libell_d_acheminement": "CHARMOIS", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54121"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00682993f07c45c166d5595274f574c6ac84fba6", "fields": {"nom_de_la_commune": "CHAZELLES SUR ALBE", "libell_d_acheminement": "CHAZELLES SUR ALBE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54124"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f4e809e2b0313f501d859adf4ecdec014a14b1", "fields": {"code_postal": "54200", "code_commune_insee": "54128", "libell_d_acheminement": "CHOLOY MENILLOT", "ligne_5": "MENILLOT", "nom_de_la_commune": "CHOLOY MENILLOT", "coordonnees_gps": [48.7137861444, 5.87312333064]}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63ab93a5417acc4a81fcfc8eafe49bfe711e2a9", "fields": {"nom_de_la_commune": "CLEREY SUR BRENON", "libell_d_acheminement": "CLEREY SUR BRENON", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54132"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f317914d3cddd16807209ed46aeef702f088c9b", "fields": {"nom_de_la_commune": "COURBESSEAUX", "libell_d_acheminement": "COURBESSEAUX", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54139"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af4a50c3ef0bdc638b9b2251c4ea6d2c7283c47", "fields": {"nom_de_la_commune": "CUSTINES", "libell_d_acheminement": "CUSTINES", "code_postal": "54670", "coordonnees_gps": [48.7978385403, 6.14814767129], "code_commune_insee": "54150"}, "geometry": {"type": "Point", "coordinates": [6.14814767129, 48.7978385403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ea9defef824c3c20ec93a78c6c14e8e3735ccd", "fields": {"nom_de_la_commune": "DIARVILLE", "libell_d_acheminement": "DIARVILLE", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54156"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2652ada518ebd91a2e9a6622fd5f3be610b96792", "fields": {"nom_de_la_commune": "DOMBASLE SUR MEURTHE", "libell_d_acheminement": "DOMBASLE SUR MEURTHE", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54159"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f73a4fdd65517f6cf6e1f9e5e3055276aecca37", "fields": {"nom_de_la_commune": "DROUVILLE", "libell_d_acheminement": "DROUVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54173"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0c5fa36848f6597765ba3c377a4855a2a5d30c", "fields": {"nom_de_la_commune": "ESSEY LA COTE", "libell_d_acheminement": "ESSEY LA COTE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54183"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f93bc3983b4b91a1585263395ec2aab699add5", "fields": {"nom_de_la_commune": "ETREVAL", "libell_d_acheminement": "ETREVAL", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54185"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82011f37d2adeca3e23628ca79e5aca45ea87e67", "fields": {"nom_de_la_commune": "FAULX", "libell_d_acheminement": "FAULX", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54188"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2d213b72204a77e3dd66a4ebd2cfe0eb6cd0c5", "fields": {"nom_de_la_commune": "FLAVIGNY SUR MOSELLE", "libell_d_acheminement": "FLAVIGNY SUR MOSELLE", "code_postal": "54630", "coordonnees_gps": [48.5776512425, 6.18802494178], "code_commune_insee": "54196"}, "geometry": {"type": "Point", "coordinates": [6.18802494178, 48.5776512425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "098d8227adb12e8959b014f86e1be2947b52b4df", "fields": {"nom_de_la_commune": "FOUG", "libell_d_acheminement": "FOUG", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54205"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a8244c6228ce1e21cbcce56ebf79e586ba7ba2", "fields": {"nom_de_la_commune": "FRAISNES EN SAINTOIS", "libell_d_acheminement": "FRAISNES EN SAINTOIS", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54207"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9f338f3a722d3c0fad72d269f215577c96e386", "fields": {"nom_de_la_commune": "FROUARD", "libell_d_acheminement": "FROUARD", "code_postal": "54390", "coordonnees_gps": [48.750746492, 6.12302354849], "code_commune_insee": "54215"}, "geometry": {"type": "Point", "coordinates": [6.12302354849, 48.750746492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa35fb334f633ccb0247be9c5cdaf03b083e16e", "fields": {"nom_de_la_commune": "GELAUCOURT", "libell_d_acheminement": "GELAUCOURT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54218"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63f982696d193a61b1d9d7dfc2e794fb20bf2cf9", "fields": {"nom_de_la_commune": "GIBEAUMEIX", "libell_d_acheminement": "GIBEAUMEIX", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54226"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "082cb73281f231618e83b980736c806189736973", "fields": {"nom_de_la_commune": "GIRIVILLER", "libell_d_acheminement": "GIRIVILLER", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54228"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d2120d69fa71a63a8298ec0a926c483a981d4b", "fields": {"nom_de_la_commune": "GONDREXON", "libell_d_acheminement": "GONDREXON", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54233"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0187e9f4c95c9d1775d0065f1ea7273970ef36cf", "fields": {"nom_de_la_commune": "GRIMONVILLER", "libell_d_acheminement": "GRIMONVILLER", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54237"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84eca9d53f7c9bc7e7cbf2db783ba23359d29253", "fields": {"nom_de_la_commune": "GUGNEY", "libell_d_acheminement": "GUGNEY", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54241"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0553c89be9513ced36137aa92ca2191ca835f320", "fields": {"nom_de_la_commune": "HAGEVILLE", "libell_d_acheminement": "HAGEVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54244"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72878ff5f42fdcdd07427e2d98f0ac88ad374c7e", "fields": {"nom_de_la_commune": "HALLOVILLE", "libell_d_acheminement": "HALLOVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54246"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057123f059ac50b6d2c0a7fd0920ca59d403d9ba", "fields": {"nom_de_la_commune": "HAROUE", "libell_d_acheminement": "HAROUE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54252"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2690269ff35b22b85a9f1fb794b83fabee147f85", "fields": {"nom_de_la_commune": "HENAMENIL", "libell_d_acheminement": "HENAMENIL", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54258"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b924e163ffad70d008807e91b67b707930a017a", "fields": {"nom_de_la_commune": "HERSERANGE", "libell_d_acheminement": "HERSERANGE", "code_postal": "54440", "coordonnees_gps": [49.5186978966, 5.79263554372], "code_commune_insee": "54261"}, "geometry": {"type": "Point", "coordinates": [5.79263554372, 49.5186978966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3810e9b052f36bbea882b08d382bf472a49dfdf2", "fields": {"nom_de_la_commune": "HOUDEMONT", "libell_d_acheminement": "HOUDEMONT", "code_postal": "54180", "coordonnees_gps": [48.6456781443, 6.18472060521], "code_commune_insee": "54265"}, "geometry": {"type": "Point", "coordinates": [6.18472060521, 48.6456781443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19844a45aea095e193ea435c905a96f123a08e1b", "fields": {"nom_de_la_commune": "HUSSIGNY GODBRANGE", "libell_d_acheminement": "HUSSIGNY GODBRANGE", "code_postal": "54590", "coordonnees_gps": [49.4956665774, 5.85569171913], "code_commune_insee": "54270"}, "geometry": {"type": "Point", "coordinates": [5.85569171913, 49.4956665774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2c882bf3164b6e690a8ecfa524630d99abdb4e", "fields": {"nom_de_la_commune": "JUVRECOURT", "libell_d_acheminement": "JUVRECOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54285"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2879284eaec8fed46fce8c5d2d17c379f170461c", "fields": {"nom_de_la_commune": "LAGNEY", "libell_d_acheminement": "LAGNEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54288"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e967bdf891ffb60f4c7b59774c78ccbab9b2e2b", "fields": {"nom_de_la_commune": "LALOEUF", "libell_d_acheminement": "LALOEUF", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54291"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2e9c1ee173973d17f31ad3545b7059a7194329", "fields": {"nom_de_la_commune": "LANEUVELOTTE", "libell_d_acheminement": "LANEUVELOTTE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54296"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5b6b1cf89980396623d42839e3064383701ef5", "fields": {"nom_de_la_commune": "LANFROICOURT", "libell_d_acheminement": "LANFROICOURT", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54301"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683665be9cdcf2d1b7364d2008d74915d152061e", "fields": {"code_postal": "54520", "code_commune_insee": "54304", "libell_d_acheminement": "LAXOU", "ligne_5": "LAXOU CHAMPLEBOEUF", "nom_de_la_commune": "LAXOU", "coordonnees_gps": [48.6821372702, 6.11416538481]}, "geometry": {"type": "Point", "coordinates": [6.11416538481, 48.6821372702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0e02271dba881677cb647ae776dd21a8e6942c", "fields": {"nom_de_la_commune": "LEMENIL MITRY", "libell_d_acheminement": "LEMENIL MITRY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54310"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7acabca3e00becf8ac43c02c5163384b3dfb1a54", "fields": {"nom_de_la_commune": "LEXY", "libell_d_acheminement": "LEXY", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54314"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294d3b89d50925b2f6e9b4b461e8a8d714c0c41a", "fields": {"nom_de_la_commune": "LIMEY REMENAUVILLE", "libell_d_acheminement": "LIMEY REMENAUVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54316"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f50a0a3722725250aaa436f51a06daa757ab63b", "fields": {"nom_de_la_commune": "LIVERDUN", "libell_d_acheminement": "LIVERDUN", "code_postal": "54460", "coordonnees_gps": [48.7483628916, 6.04028548825], "code_commune_insee": "54318"}, "geometry": {"type": "Point", "coordinates": [6.04028548825, 48.7483628916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ded8dba933a8a0e5839180bf06595a1c75a7d9a", "fields": {"nom_de_la_commune": "LUCEY", "libell_d_acheminement": "LUCEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54327"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf4f18ab93b374e97475d6849616dae1409a33e", "fields": {"nom_de_la_commune": "LUNEVILLE", "libell_d_acheminement": "LUNEVILLE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54329"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bbb483978d41ce0c876ff5aec936f7e8cd8ad20", "fields": {"nom_de_la_commune": "MANCIEULLES", "libell_d_acheminement": "MANCIEULLES", "code_postal": "54790", "coordonnees_gps": [49.2813313847, 5.8972195561], "code_commune_insee": "54342"}, "geometry": {"type": "Point", "coordinates": [5.8972195561, 49.2813313847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4453d96586f2084f64ac9b3e91396cfd2df9070f", "fields": {"nom_de_la_commune": "MARTINCOURT", "libell_d_acheminement": "MARTINCOURT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54355"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9977812e851514f0cda2fa49495b56e40084e15", "fields": {"nom_de_la_commune": "MEHONCOURT", "libell_d_acheminement": "MEHONCOURT", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54359"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc21ea06049c8c436b80d17c0ceb385029c856ba", "fields": {"nom_de_la_commune": "MENIL LA TOUR", "libell_d_acheminement": "MENIL LA TOUR", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54360"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa16f60a41630f96e7e59c00c13b0ab801dfab4", "fields": {"nom_de_la_commune": "MERCY LE BAS", "libell_d_acheminement": "MERCY LE BAS", "code_postal": "54960", "coordonnees_gps": [49.385429349, 5.75808279243], "code_commune_insee": "54362"}, "geometry": {"type": "Point", "coordinates": [5.75808279243, 49.385429349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da253defb476afedc9c26d4f21a6a53156e2f46", "fields": {"nom_de_la_commune": "MERVILLER", "libell_d_acheminement": "MERVILLER", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54365"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdd6719a0527b0484fe61800c741721b5910c2b", "fields": {"nom_de_la_commune": "MINORVILLE", "libell_d_acheminement": "MINORVILLE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54370"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b485139e4edcc8d76cc5aba860a628ca9cb5b1a", "fields": {"nom_de_la_commune": "MOIVRONS", "libell_d_acheminement": "MOIVRONS", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54372"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0e5b1a36c984c3f0ffdf7085a2715196fa5548", "fields": {"nom_de_la_commune": "MONCEL SUR SEILLE", "libell_d_acheminement": "MONCEL SUR SEILLE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54374"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e84fc65166dba0d034bb0314e20879df8903c470", "fields": {"nom_de_la_commune": "MONTENOY", "libell_d_acheminement": "MONTENOY", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54376"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3acd8a48ec3dab8cdc08879a65961e1e4833b4", "fields": {"nom_de_la_commune": "MONT LE VIGNOBLE", "libell_d_acheminement": "MONT LE VIGNOBLE", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54380"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05579e777f9e1c547bc3aa910670455717f82165", "fields": {"nom_de_la_commune": "MOUSSON", "libell_d_acheminement": "MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54390"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5574152002407e41ab05275771c64269b2dc083", "fields": {"nom_de_la_commune": "MURVILLE", "libell_d_acheminement": "MURVILLE", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54394"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98daaa14779183a1ab911971b92c713ad632cfab", "fields": {"nom_de_la_commune": "NANCY", "libell_d_acheminement": "NANCY", "code_postal": "54000", "coordonnees_gps": [48.6902043213, 6.1760319489], "code_commune_insee": "54395"}, "geometry": {"type": "Point", "coordinates": [6.1760319489, 48.6902043213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b5cbf3419402e93494f2a69a4f6c166e441e729", "fields": {"nom_de_la_commune": "NANCY", "libell_d_acheminement": "NANCY", "code_postal": "54100", "coordonnees_gps": [48.6902043213, 6.1760319489], "code_commune_insee": "54395"}, "geometry": {"type": "Point", "coordinates": [6.1760319489, 48.6902043213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f55815f7e7baba06192aea10d75159995600f79", "fields": {"nom_de_la_commune": "NORROY LE SEC", "libell_d_acheminement": "NORROY LE SEC", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54402"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3199bcba53af79c1a35b12b9e41a45ec026e18c", "fields": {"nom_de_la_commune": "OZERAILLES", "libell_d_acheminement": "OZERAILLES", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54413"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9efe3285e9afa57b9c7c0f0e0433708dcc7b602", "fields": {"nom_de_la_commune": "POMPEY", "libell_d_acheminement": "POMPEY", "code_postal": "54340", "coordonnees_gps": [48.7731935592, 6.11138149777], "code_commune_insee": "54430"}, "geometry": {"type": "Point", "coordinates": [6.11138149777, 48.7731935592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a6a4aa18ae059b31ed4d563230ccc947b9b30a", "fields": {"nom_de_la_commune": "PORT SUR SEILLE", "libell_d_acheminement": "PORT SUR SEILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54433"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1b2616a293947eba608e0a1481c5e9f8d2a759", "fields": {"nom_de_la_commune": "PULNOY", "libell_d_acheminement": "PULNOY", "code_postal": "54425", "coordonnees_gps": [48.7019193071, 6.265324903], "code_commune_insee": "54439"}, "geometry": {"type": "Point", "coordinates": [6.265324903, 48.7019193071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84e3c962a97b5378bf734d470710b76f2d9ec39f", "fields": {"nom_de_la_commune": "RAUCOURT", "libell_d_acheminement": "RAUCOURT", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54444"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da56a8ed62bc4751bb46aa7580896ce3ef9a020", "fields": {"nom_de_la_commune": "RECLONVILLE", "libell_d_acheminement": "RECLONVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54447"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45b84215da66be4761a85c90938490c67a847337", "fields": {"nom_de_la_commune": "REHAINVILLER", "libell_d_acheminement": "REHAINVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54449"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b620dc97be97ad6239f0ee5af5b1a9558f53bd20", "fields": {"nom_de_la_commune": "REMBERCOURT SUR MAD", "libell_d_acheminement": "REMBERCOURT SUR MAD", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54453"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40993939715d54aa0f4a1999d31a2c656c036604", "fields": {"nom_de_la_commune": "REMEREVILLE", "libell_d_acheminement": "REMEREVILLE", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54456"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c3d2e1376165efec5b0c3779d4c7486ffe344a", "fields": {"nom_de_la_commune": "REMONCOURT", "libell_d_acheminement": "REMONCOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54457"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9380f83623df1f8ca42f2432b8b07b17b28c3664", "fields": {"nom_de_la_commune": "ROSIERES AUX SALINES", "libell_d_acheminement": "ROSIERES AUX SALINES", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54462"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f176e6393025252e35938ec8e8ff59fd26f860", "fields": {"nom_de_la_commune": "ROSIERES EN HAYE", "libell_d_acheminement": "ROSIERES EN HAYE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54463"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce770f156d2c50e9231c2cc325f20d755b5b891", "fields": {"code_postal": "54580", "code_commune_insee": "54469", "libell_d_acheminement": "ST AIL", "ligne_5": "HABONVILLE", "nom_de_la_commune": "ST AIL", "coordonnees_gps": [49.1903187118, 5.97291024326]}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9b150d575fceca955217308b00ca375d336426", "fields": {"nom_de_la_commune": "ST BAUSSANT", "libell_d_acheminement": "ST BAUSSANT", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54470"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192c6228021ca7eb03f29fd768f5163be65ad21e", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54474"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c21da89dadc897a7c049dda52fa65321240937d", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54475"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0835f605d0ccf8eb9e0a9801043d51ffc4feb30f", "fields": {"nom_de_la_commune": "ST JULIEN LES GORZE", "libell_d_acheminement": "ST JULIEN LES GORZE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54477"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea65b86a89c0393335d0bccfdf3f6a09a74a37b", "fields": {"nom_de_la_commune": "ST REMIMONT", "libell_d_acheminement": "ST REMIMONT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54486"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d82e1de157ae8baf551ad1646c627334bd082cd", "fields": {"nom_de_la_commune": "SAIZERAIS", "libell_d_acheminement": "SAIZERAIS", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54490"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce3e67435cb08f880378dec59884a5856de124e", "fields": {"nom_de_la_commune": "SAULXURES LES VANNES", "libell_d_acheminement": "SAULXURES LES VANNES", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54496"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9eafc0ca975356ba3f2cc497e5843f21fa06403", "fields": {"nom_de_la_commune": "SAXON SION", "libell_d_acheminement": "SAXON SION", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54497"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ecd56db55ac8a6dd13737097628ba30b6fbd4f1", "fields": {"nom_de_la_commune": "SEICHAMPS", "libell_d_acheminement": "SEICHAMPS", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54498"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf6e2a27ae145acd46a560413de5a49d795bd0f5", "fields": {"nom_de_la_commune": "SELAINCOURT", "libell_d_acheminement": "SELAINCOURT", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54500"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00bc300c6dd9963d7d27af02ac27045d8897532", "fields": {"nom_de_la_commune": "SIVRY", "libell_d_acheminement": "SIVRY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54508"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef0b8e7b284052f975e0a127d027af311c881dc3", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68063"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fb5e195440402c2a41019f81dfaa2c664b75cf", "fields": {"nom_de_la_commune": "CHALAMPE", "libell_d_acheminement": "CHALAMPE", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68064"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295c01e78d69b4bc4c17d60b1454aaa8bec201d9", "fields": {"nom_de_la_commune": "DANNEMARIE", "libell_d_acheminement": "DANNEMARIE", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68068"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2379bd59c4be83332571c4a8a71a19dfb97fd2f1", "fields": {"nom_de_la_commune": "DIEFMATTEN", "libell_d_acheminement": "DIEFMATTEN", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68071"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f324efbf3b286c849bd42023f818010a7404cb22", "fields": {"nom_de_la_commune": "DURRENENTZEN", "libell_d_acheminement": "DURRENENTZEN", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68076"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09191b17485dbc06a094666fd88afffdc2b58dc4", "fields": {"nom_de_la_commune": "HOSTENS", "libell_d_acheminement": "HOSTENS", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33202"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732597d3f90967a3aefeb1d048ad58a31026ba7c", "fields": {"nom_de_la_commune": "IZON", "libell_d_acheminement": "IZON", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33207"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d694d71a781b024e48e5ca712d8c0d23bc2e1c", "fields": {"nom_de_la_commune": "LABARDE", "libell_d_acheminement": "LABARDE", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33211"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "393ff616c3ee0751759377e91658b5a8a6cdaf55", "fields": {"nom_de_la_commune": "LANDIRAS", "libell_d_acheminement": "LANDIRAS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33225"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68ecd5bdd21e9a1bc00dce38dae002271401688", "fields": {"nom_de_la_commune": "LARUSCADE", "libell_d_acheminement": "LARUSCADE", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33233"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa27b0434d932ef436a7b78cbc53d03481cd6977", "fields": {"nom_de_la_commune": "LEGE CAP FERRET", "libell_d_acheminement": "LEGE CAP FERRET", "code_postal": "33970", "coordonnees_gps": [44.7600136809, -1.19365601812], "code_commune_insee": "33236"}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cf3f132bed3c430f30c708266f19efa1e56dd7", "fields": {"nom_de_la_commune": "LESPARRE MEDOC", "libell_d_acheminement": "LESPARRE MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33240"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be2f8be067be685bdb2e48146d5f06879ecdcc9", "fields": {"nom_de_la_commune": "LIGNAN DE BAZAS", "libell_d_acheminement": "LIGNAN DE BAZAS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33244"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be29daf35950af997ad1b1625d7fc336fa8ac62", "fields": {"nom_de_la_commune": "LISTRAC MEDOC", "libell_d_acheminement": "LISTRAC MEDOC", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33248"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13a48ef2e003d53bfd142e3e452de995b1902f5", "fields": {"nom_de_la_commune": "LORMONT", "libell_d_acheminement": "LORMONT", "code_postal": "33310", "coordonnees_gps": [44.8765889573, -0.519217278128], "code_commune_insee": "33249"}, "geometry": {"type": "Point", "coordinates": [-0.519217278128, 44.8765889573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab92a79619f09b45869b509a38ecfa29fab4674", "fields": {"nom_de_la_commune": "LUGAIGNAC", "libell_d_acheminement": "LUGAIGNAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33257"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d77cd6439969c60056a4535c94f241cab40208", "fields": {"nom_de_la_commune": "LUSSAC", "libell_d_acheminement": "LUSSAC", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33261"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c5e28d2b855f85ed3f47aa2a6bbf63942bb5a6", "fields": {"nom_de_la_commune": "MACAU", "libell_d_acheminement": "MACAU", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33262"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf308bcbc15d8f2a7af31e6bf670a95077cd9a19", "fields": {"nom_de_la_commune": "MARGUERON", "libell_d_acheminement": "MARGUERON", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33269"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1d1a943b5b94db32fd2060fd1cc356316cf488", "fields": {"nom_de_la_commune": "MAURIAC", "libell_d_acheminement": "MAURIAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33278"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66590a83731e6fe3ae86f0c625208397102cabfe", "fields": {"nom_de_la_commune": "MERIGNAS", "libell_d_acheminement": "MERIGNAS", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33282"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2803ab279d4fca05e1cf8e3ec237d67f41a0b00", "fields": {"code_postal": "33570", "code_commune_insee": "33290", "libell_d_acheminement": "MONTAGNE", "ligne_5": "PARSAC", "nom_de_la_commune": "MONTAGNE", "coordonnees_gps": [44.952442946, -0.0837974329549]}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7607e021e51a93be2927e9d05852df6f8f2acf", "fields": {"nom_de_la_commune": "MONTUSSAN", "libell_d_acheminement": "MONTUSSAN", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33293"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dd655bf2a719ec450d22314a3ee7295cfac452", "fields": {"nom_de_la_commune": "MOUILLAC", "libell_d_acheminement": "MOUILLAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33295"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1aae5651df8a272d16735c98241491f7d0b55ff", "fields": {"nom_de_la_commune": "MOULIETS ET VILLEMARTIN", "libell_d_acheminement": "MOULIETS ET VILLEMARTIN", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33296"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd7ccb62b4e37ed04e41c894c8635909a464456", "fields": {"nom_de_la_commune": "MOULIS EN MEDOC", "libell_d_acheminement": "MOULIS EN MEDOC", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33297"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8541c45e57e067a93c111aad82a7263346e79a0", "fields": {"nom_de_la_commune": "PAILLET", "libell_d_acheminement": "PAILLET", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33311"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c478ef44ccda75ce84569aa5aef8e87d2ca0b9", "fields": {"nom_de_la_commune": "PAREMPUYRE", "libell_d_acheminement": "PAREMPUYRE", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33312"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279d66285a13b8b772933c29c97bfb91ae8bc368", "fields": {"nom_de_la_commune": "PAUILLAC", "libell_d_acheminement": "PAUILLAC", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33314"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b13340a92040378f16926304c1d929b499446d", "fields": {"nom_de_la_commune": "LES PEINTURES", "libell_d_acheminement": "LES PEINTURES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33315"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93310fbf77af5cd1d631ad4265e2a62e71dd71fe", "fields": {"nom_de_la_commune": "PESSAC", "libell_d_acheminement": "PESSAC", "code_postal": "33600", "coordonnees_gps": [44.7920119665, -0.675304941506], "code_commune_insee": "33318"}, "geometry": {"type": "Point", "coordinates": [-0.675304941506, 44.7920119665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d066a4726622c15be4842cea3e13413bad83857e", "fields": {"nom_de_la_commune": "LE PIAN MEDOC", "libell_d_acheminement": "LE PIAN MEDOC", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33322"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f39975aff1c0e4ca68a1c0abdcc43d45b8c4a5", "fields": {"nom_de_la_commune": "PLEINE SELVE", "libell_d_acheminement": "PLEINE SELVE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33326"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ceabddde1d82f5ed8f97f14b873311f3f3a9c8", "fields": {"nom_de_la_commune": "PODENSAC", "libell_d_acheminement": "PODENSAC", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33327"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8107493a21675fe6746917c239e2d13d926859f5", "fields": {"nom_de_la_commune": "PORTETS", "libell_d_acheminement": "PORTETS", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33334"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "228d1b02361659f9d2f6cff6243aa6adc3272526", "fields": {"nom_de_la_commune": "PRIGNAC ET MARCAMPS", "libell_d_acheminement": "PRIGNAC ET MARCAMPS", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33339"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b0be2ee2102b0f8aafb83299326b4cbd76a417", "fields": {"nom_de_la_commune": "LE PUY", "libell_d_acheminement": "LE PUY", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33345"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e493e29812f3713ebaa7d1ae4afb71c0da915f4a", "fields": {"nom_de_la_commune": "PUYBARBAN", "libell_d_acheminement": "PUYBARBAN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33346"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75ac6dccf9d9fcdc2d5a624921f22b9b50fa405", "fields": {"nom_de_la_commune": "RIONS", "libell_d_acheminement": "RIONS", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33355"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15853226bad24d1184f87514530db6bc244dbc8b", "fields": {"nom_de_la_commune": "LA RIVIERE", "libell_d_acheminement": "LA RIVIERE", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33356"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c5bdeffd8d260d2333a97dbe1799d690fde366", "fields": {"nom_de_la_commune": "ROAILLAN", "libell_d_acheminement": "ROAILLAN", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33357"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa669bbfc453f1ff967009db6797bc7c297a635", "fields": {"nom_de_la_commune": "ROMAGNE", "libell_d_acheminement": "ROMAGNE", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33358"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23f68775a49b396f525800fcda2206756f14ff4", "fields": {"nom_de_la_commune": "LA ROQUILLE", "libell_d_acheminement": "LA ROQUILLE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33360"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469fee80cfc121c5bb10309b8f25574f12be6d6e", "fields": {"nom_de_la_commune": "SADIRAC", "libell_d_acheminement": "SADIRAC", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33363"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6661e02d69103ccb5e02e82c17a0fff3dd1032cc", "fields": {"nom_de_la_commune": "SAILLANS", "libell_d_acheminement": "SAILLANS", "code_postal": "33141", "coordonnees_gps": [44.9675844038, -0.299545189755], "code_commune_insee": "33364"}, "geometry": {"type": "Point", "coordinates": [-0.299545189755, 44.9675844038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add2e9c40f509f4951f0362f8058290002cf902d", "fields": {"nom_de_la_commune": "ST AVIT ST NAZAIRE", "libell_d_acheminement": "ST AVIT ST NAZAIRE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33378"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e0129497149df7b33b466e1b3b681eb8d56cc5", "fields": {"nom_de_la_commune": "ST CHRISTOLY MEDOC", "libell_d_acheminement": "ST CHRISTOLY MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33383"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862a691f125bc02af5b33a4817de83c0b3d76ed4", "fields": {"nom_de_la_commune": "ST CIBARD", "libell_d_acheminement": "ST CIBARD", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33386"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ab56e4182ae4f86e632f07881da18f7be471bc", "fields": {"nom_de_la_commune": "ST CIERS D ABZAC", "libell_d_acheminement": "ST CIERS D ABZAC", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33387"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa87f07102eab497124c6ab782b3492669360b25", "fields": {"nom_de_la_commune": "STE FOY LA GRANDE", "libell_d_acheminement": "STE FOY LA GRANDE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33402"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d751b7db995486f960b428b145f28551982b45", "fields": {"nom_de_la_commune": "ST GENES DE FRONSAC", "libell_d_acheminement": "ST GENES DE FRONSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33407"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22eebc3cfc4a4dc2481726b9164b53a80793236", "fields": {"nom_de_la_commune": "ST GERMAIN D ESTEUIL", "libell_d_acheminement": "ST GERMAIN D ESTEUIL", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33412"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e86363af1d36f917317d1be08432b29a7f9a080", "fields": {"nom_de_la_commune": "ST LOUBERT", "libell_d_acheminement": "ST LOUBERT", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33432"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d47460426cfc125f4f606b53948c8187b2f0a79", "fields": {"nom_de_la_commune": "ST MARTIN DU BOIS", "libell_d_acheminement": "ST MARTIN DU BOIS", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33445"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969e3adea600d0eff823b932d323394c56821cee", "fields": {"nom_de_la_commune": "ST MEDARD DE GUIZIERES", "libell_d_acheminement": "ST MEDARD DE GUIZIERES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33447"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc319273d2ec280e49fba922f0c0c98ce75f7c53", "fields": {"nom_de_la_commune": "ST PEY DE CASTETS", "libell_d_acheminement": "ST PEY DE CASTETS", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33460"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9f195dc9eb55476e11aba6f3c019ab6bdc6030", "fields": {"nom_de_la_commune": "ST PHILIPPE D AIGUILLE", "libell_d_acheminement": "ST PHILIPPE D AIGUILLE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33461"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22409e25dd04d4956af0a0094387474d1e18891a", "fields": {"nom_de_la_commune": "ST PIERRE DE BAT", "libell_d_acheminement": "ST PIERRE DE BAT", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33464"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d1f40527744765ce65b48087f35709e4fbeeb5", "fields": {"nom_de_la_commune": "ST PIERRE DE MONS", "libell_d_acheminement": "ST PIERRE DE MONS", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33465"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4ebf5c1dfb72960b03961b0c1b6d7ac5454488", "fields": {"nom_de_la_commune": "ST QUENTIN DE BARON", "libell_d_acheminement": "ST QUENTIN DE BARON", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33466"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a98b1e96a347bbebbd1987ccb44653db1541f4", "fields": {"nom_de_la_commune": "ST QUENTIN DE CAPLONG", "libell_d_acheminement": "ST QUENTIN DE CAPLONG", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33467"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3878b870d43812397fb9c8a4b3969e0049b21a7", "fields": {"nom_de_la_commune": "ST SEURIN DE CADOURNE", "libell_d_acheminement": "ST SEURIN DE CADOURNE", "code_postal": "33180", "coordonnees_gps": [45.262541575, -0.809284319605], "code_commune_insee": "33476"}, "geometry": {"type": "Point", "coordinates": [-0.809284319605, 45.262541575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6502d3753a9e3ce33c139c14226c5ebe01c47727", "fields": {"nom_de_la_commune": "ST SEVE", "libell_d_acheminement": "ST SEVE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33479"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f37221c84f2b3115ba8dca7008eed302d41b4f", "fields": {"nom_de_la_commune": "ST TROJAN", "libell_d_acheminement": "ST TROJAN", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33486"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fd70ba299006f4213514f587c65f4c676c72e7", "fields": {"nom_de_la_commune": "ST VINCENT DE PAUL", "libell_d_acheminement": "ST VINCENT DE PAUL", "code_postal": "33440", "coordonnees_gps": [44.9552105783, -0.50282224185], "code_commune_insee": "33487"}, "geometry": {"type": "Point", "coordinates": [-0.50282224185, 44.9552105783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc192441d24dd1092608e19c37207b90e951220", "fields": {"nom_de_la_commune": "ST VINCENT DE PERTIGNAS", "libell_d_acheminement": "ST VINCENT DE PERTIGNAS", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33488"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832f251ec87fead8ca54aa58feb3fa8290a4e66b", "fields": {"nom_de_la_commune": "ST YZAN DE SOUDIAC", "libell_d_acheminement": "ST YZAN DE SOUDIAC", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33492"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce60e85fc8e337dda674caa1eb10c0fbbaf1cea", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "33770", "coordonnees_gps": [44.5415934171, -0.883407721273], "code_commune_insee": "33498"}, "geometry": {"type": "Point", "coordinates": [-0.883407721273, 44.5415934171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd190f6440294a3408a3a94e132d946b1415117", "fields": {"nom_de_la_commune": "SAUGON", "libell_d_acheminement": "SAUGON", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33502"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4dcaf39b94cfd283159582a67f5da542efc0bc", "fields": {"nom_de_la_commune": "SAUMOS", "libell_d_acheminement": "SAUMOS", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33503"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c796725d113768aba5fd281b53e2d200831fefb4", "fields": {"nom_de_la_commune": "SAVIGNAC DE L ISLE", "libell_d_acheminement": "SAVIGNAC DE L ISLE", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33509"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "853ed364fe3f1f9466f14bd96b5bcc175cabf5b2", "fields": {"nom_de_la_commune": "SOULAC SUR MER", "libell_d_acheminement": "SOULAC SUR MER", "code_postal": "33780", "coordonnees_gps": [45.4932494644, -1.10972499284], "code_commune_insee": "33514"}, "geometry": {"type": "Point", "coordinates": [-1.10972499284, 45.4932494644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a46ae3936b84c2227fa045d7362bab56eefc80", "fields": {"nom_de_la_commune": "SOULIGNAC", "libell_d_acheminement": "SOULIGNAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33515"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea8b390dc1869a31fc33e7dded6ae335af011c0", "fields": {"nom_de_la_commune": "TALENCE", "libell_d_acheminement": "TALENCE", "code_postal": "33400", "coordonnees_gps": [44.8056885142, -0.591027573737], "code_commune_insee": "33522"}, "geometry": {"type": "Point", "coordinates": [-0.591027573737, 44.8056885142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18eeebcc12ef02a66fc11186c761e2cf8a8aa87", "fields": {"nom_de_la_commune": "TOULENNE", "libell_d_acheminement": "TOULENNE", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33533"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fd26275e8c02b72d4e75dd069b0a95c8c13d87", "fields": {"nom_de_la_commune": "LE TUZAN", "libell_d_acheminement": "LE TUZAN", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33536"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a33c7258d9f839cc7ee6e8d3971b9553c296f19", "fields": {"nom_de_la_commune": "VERAC", "libell_d_acheminement": "VERAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33542"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c594097b788fb818886d8673024ba1fde31d80", "fields": {"nom_de_la_commune": "ABEILHAN", "libell_d_acheminement": "ABEILHAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34001"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0635a304bf151bf542fdea6aa9d4d53ea382e2ea", "fields": {"nom_de_la_commune": "LES AIRES", "libell_d_acheminement": "LES AIRES", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34008"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9061881837c2074b1948b8d06069820f3ab1240", "fields": {"nom_de_la_commune": "ARGELLIERS", "libell_d_acheminement": "ARGELLIERS", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34012"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8812897cc42b90e8492c70959fecf49fbb740cb3", "fields": {"nom_de_la_commune": "ASPIRAN", "libell_d_acheminement": "ASPIRAN", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34013"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c66d216a0b5a9d43b4dbc84ee6fd2bf5afbdf0", "fields": {"nom_de_la_commune": "AUMES", "libell_d_acheminement": "AUMES", "code_postal": "34530", "coordonnees_gps": [43.4730122504, 3.50379748517], "code_commune_insee": "34017"}, "geometry": {"type": "Point", "coordinates": [3.50379748517, 43.4730122504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c3f2b80495a9247153af715c8079384e9232e2", "fields": {"nom_de_la_commune": "BAILLARGUES", "libell_d_acheminement": "BAILLARGUES", "code_postal": "34670", "coordonnees_gps": [43.6617396739, 4.0210678464], "code_commune_insee": "34022"}, "geometry": {"type": "Point", "coordinates": [4.0210678464, 43.6617396739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1371b7f12e1927991b00dcf3cc96993d7113d2", "fields": {"nom_de_la_commune": "BEZIERS", "libell_d_acheminement": "BEZIERS", "code_postal": "34500", "coordonnees_gps": [43.3428885301, 3.23996566024], "code_commune_insee": "34032"}, "geometry": {"type": "Point", "coordinates": [3.23996566024, 43.3428885301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd02053b8d3fe33f05524463161d6a640ba9e75", "fields": {"nom_de_la_commune": "BOISSET", "libell_d_acheminement": "BOISSET", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34034"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8a294b933e76fb17a8ea83dee5970b0209a9b68", "fields": {"nom_de_la_commune": "BRIGNAC", "libell_d_acheminement": "BRIGNAC", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34041"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6772efb627b398e8214831db954adac45722b9fe", "fields": {"nom_de_la_commune": "CANDILLARGUES", "libell_d_acheminement": "CANDILLARGUES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34050"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2095f4cdfbba7660d3791713ef434077393c335b", "fields": {"nom_de_la_commune": "CANET", "libell_d_acheminement": "CANET", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34051"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "498783cf66f1d5b4f3c5a58111d53dc1be83e6fd", "fields": {"nom_de_la_commune": "CAPESTANG", "libell_d_acheminement": "CAPESTANG", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34052"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6e74e16e62e8efe7011fc5f6bb2797be552cac", "fields": {"nom_de_la_commune": "CAZILHAC", "libell_d_acheminement": "CAZILHAC", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34067"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7590b198a397ff8e6174f2a12ae7fd24840b801", "fields": {"nom_de_la_commune": "CEILHES ET ROCOZELS", "libell_d_acheminement": "CEILHES ET ROCOZELS", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34071"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad624c3bc1e26f8db1fd7f4ac7d9d78715af9985", "fields": {"nom_de_la_commune": "CESSENON SUR ORB", "libell_d_acheminement": "CESSENON SUR ORB", "code_postal": "34460", "coordonnees_gps": [43.4734338181, 3.02585092661], "code_commune_insee": "34074"}, "geometry": {"type": "Point", "coordinates": [3.02585092661, 43.4734338181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880889e385c87675f150cd8fefa1d71c6e92af48", "fields": {"nom_de_la_commune": "CESSERAS", "libell_d_acheminement": "CESSERAS", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34075"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827ea0b70e94bc5e71fcc6101c31b27b27aaf111", "fields": {"nom_de_la_commune": "COULOBRES", "libell_d_acheminement": "COULOBRES", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34085"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183d4ad5f9848aabec0efad2b28dc0f7673b6a2b", "fields": {"nom_de_la_commune": "COURNONTERRAL", "libell_d_acheminement": "COURNONTERRAL", "code_postal": "34660", "coordonnees_gps": [43.5604318583, 3.70546216229], "code_commune_insee": "34088"}, "geometry": {"type": "Point", "coordinates": [3.70546216229, 43.5604318583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13dc537ec683f92467e9a4b587a058b3602eb725", "fields": {"nom_de_la_commune": "ESPONDEILHAN", "libell_d_acheminement": "ESPONDEILHAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34094"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff64312a0d8fdb3056541de565b406a1e9f5456", "fields": {"nom_de_la_commune": "FABREGUES", "libell_d_acheminement": "FABREGUES", "code_postal": "34690", "coordonnees_gps": [43.5339626532, 3.77144949139], "code_commune_insee": "34095"}, "geometry": {"type": "Point", "coordinates": [3.77144949139, 43.5339626532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97f6ced2e29e9745beff8a351622104dd227db3", "fields": {"nom_de_la_commune": "GARRIGUES", "libell_d_acheminement": "GARRIGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34112"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb913b19d5f076f15d8192935270415a49635e6e", "fields": {"nom_de_la_commune": "LAGAMAS", "libell_d_acheminement": "LAGAMAS", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34125"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41387174009f4405e2b56bd7ee8fffea42ff773f", "fields": {"nom_de_la_commune": "LAVERUNE", "libell_d_acheminement": "LAVERUNE", "code_postal": "34880", "coordonnees_gps": [43.5849389203, 3.80161642579], "code_commune_insee": "34134"}, "geometry": {"type": "Point", "coordinates": [3.80161642579, 43.5849389203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f43f5bdb22b77db09406640326290cb737132a7", "fields": {"nom_de_la_commune": "LESPIGNAN", "libell_d_acheminement": "LESPIGNAN", "code_postal": "34710", "coordonnees_gps": [43.2732858209, 3.16986859659], "code_commune_insee": "34135"}, "geometry": {"type": "Point", "coordinates": [3.16986859659, 43.2732858209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b0a12b698f5e1cd87e89e80838673af98d5042", "fields": {"nom_de_la_commune": "LEZIGNAN LA CEBE", "libell_d_acheminement": "LEZIGNAN LA CEBE", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34136"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60affe8f80dddcaae14d48bdf409fd20e8e10214", "fields": {"nom_de_la_commune": "LUNEL", "libell_d_acheminement": "LUNEL", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34145"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1ec3eb1b69a887f581f0f384027abcbc39eaad", "fields": {"nom_de_la_commune": "LUNEL VIEL", "libell_d_acheminement": "LUNEL VIEL", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34146"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e2894e604c23152607080a8c40f1e1acbf507e", "fields": {"nom_de_la_commune": "MAS DE LONDRES", "libell_d_acheminement": "MAS DE LONDRES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34152"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b1ee22098d340226eebb79ca5ec516a656b9d5", "fields": {"nom_de_la_commune": "LA CELLE SUR LOIRE", "libell_d_acheminement": "LA CELLE SUR LOIRE", "code_postal": "58440", "coordonnees_gps": [47.4771194845, 2.93695618494], "code_commune_insee": "58044"}, "geometry": {"type": "Point", "coordinates": [2.93695618494, 47.4771194845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d77997097a3aa259b91df27f8dddb30b2024e45", "fields": {"nom_de_la_commune": "CERVON", "libell_d_acheminement": "CERVON", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58047"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4892514b51c4921bf014b9099ddc4305e89aba66", "fields": {"nom_de_la_commune": "CHAMPLIN", "libell_d_acheminement": "CHAMPLIN", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58054"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44449df687424847f0b18faecf30b7a57e3122c4", "fields": {"nom_de_la_commune": "CHITRY LES MINES", "libell_d_acheminement": "CHITRY LES MINES", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58075"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f194c1710a3112028898183e328c7721096b75c", "fields": {"code_postal": "58500", "code_commune_insee": "58079", "libell_d_acheminement": "CLAMECY", "ligne_5": "BEAUGY", "nom_de_la_commune": "CLAMECY", "coordonnees_gps": [47.4641711809, 3.49201148604]}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848e788aec73e695efaaddc8207f3286aef48cd9", "fields": {"nom_de_la_commune": "CORBIGNY", "libell_d_acheminement": "CORBIGNY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58083"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd2cf223e822ba48ff19905a1210178736af3124", "fields": {"nom_de_la_commune": "CORVOL L ORGUEILLEUX", "libell_d_acheminement": "CORVOL L ORGUEILLEUX", "code_postal": "58460", "coordonnees_gps": [47.436143333, 3.39666081915], "code_commune_insee": "58085"}, "geometry": {"type": "Point", "coordinates": [3.39666081915, 47.436143333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923d5aaed018b12f02f6c45c4a17b4320b51cf9c", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58090"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1557f8a9ba0a233e1ca072631bc2256e232e4ad1", "fields": {"nom_de_la_commune": "CUNCY LES VARZY", "libell_d_acheminement": "CUNCY LES VARZY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58093"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c68d476b699a56bedd8e52660e10e008705f63", "fields": {"nom_de_la_commune": "DIROL", "libell_d_acheminement": "DIROL", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58098"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1185ea61da92a6298acf9af00551b576676911", "fields": {"nom_de_la_commune": "DONZY", "libell_d_acheminement": "DONZY", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58102"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c7abd0ab7b769802405ae238a6c943683a67cb", "fields": {"nom_de_la_commune": "DORNES", "libell_d_acheminement": "DORNES", "code_postal": "58390", "coordonnees_gps": [46.7188316156, 3.33778904385], "code_commune_insee": "58104"}, "geometry": {"type": "Point", "coordinates": [3.33778904385, 46.7188316156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede143287baa5d70710c6a273fe89348b6e203d2", "fields": {"nom_de_la_commune": "ENTRAINS SUR NOHAIN", "libell_d_acheminement": "ENTRAINS SUR NOHAIN", "code_postal": "58410", "coordonnees_gps": [47.4484285575, 3.26965518858], "code_commune_insee": "58109"}, "geometry": {"type": "Point", "coordinates": [3.26965518858, 47.4484285575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a62a1b21162a0d27fad17aafdadef8e9b6309e", "fields": {"nom_de_la_commune": "GACOGNE", "libell_d_acheminement": "GACOGNE", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58120"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc17fcad10bd835ce90769ec831d31341d998539", "fields": {"code_postal": "58150", "code_commune_insee": "58122", "libell_d_acheminement": "GARCHY", "ligne_5": "MAIZIERES", "nom_de_la_commune": "GARCHY", "coordonnees_gps": [47.3141169585, 3.01884186422]}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "184cf1ab67948844feb7e540c53e7ca23ffd79c8", "fields": {"nom_de_la_commune": "GERMENAY", "libell_d_acheminement": "GERMENAY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58123"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0beca5c8ad24ea9eaa989eabdeb401585fec018d", "fields": {"nom_de_la_commune": "ISENAY", "libell_d_acheminement": "ISENAY", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58135"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2996a38c5c6006aa7e97dc50c0b118e828857dde", "fields": {"nom_de_la_commune": "LANGERON", "libell_d_acheminement": "LANGERON", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58138"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbdd1d79aa175b1c2fd7084f711b2a872dcb42d", "fields": {"nom_de_la_commune": "LIVRY", "libell_d_acheminement": "LIVRY", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58144"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197775072f17d4fdebe180a453e0a1dfc2fc18f3", "fields": {"nom_de_la_commune": "LURCY LE BOURG", "libell_d_acheminement": "LURCY LE BOURG", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58147"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86614c72763c58e9b628dad0e0bd6fa46b9b199d", "fields": {"nom_de_la_commune": "MENOU", "libell_d_acheminement": "MENOU", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58163"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cade73a2d5db9988f7b5f039dbd59f91e72313e", "fields": {"nom_de_la_commune": "METZ LE COMTE", "libell_d_acheminement": "METZ LE COMTE", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58165"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fb004fef3671e8ec3a6964a2b60a49ebcc4bff", "fields": {"nom_de_la_commune": "MOISSY MOULINOT", "libell_d_acheminement": "MOISSY MOULINOT", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58169"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1a4480dffe91a7da98f2b13f10cb3c26d9ad10", "fields": {"nom_de_la_commune": "MONTAPAS", "libell_d_acheminement": "MONTAPAS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58171"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f27978008211916aab25b1ad4e7b12638ac695", "fields": {"code_postal": "58230", "code_commune_insee": "58180", "libell_d_acheminement": "MONTSAUCHE LES SETTONS", "ligne_5": "LES SETTONS", "nom_de_la_commune": "MONTSAUCHE LES SETTONS", "coordonnees_gps": [47.2108848273, 4.05888838547]}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "398ffcc5fb95aa6f6bab3e097360ac12b41e36f4", "fields": {"nom_de_la_commune": "NANNAY", "libell_d_acheminement": "NANNAY", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58188"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19d9978caeac6cf1801432a0506d59dcdad6394c", "fields": {"nom_de_la_commune": "NARCY", "libell_d_acheminement": "NARCY", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58189"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c9eb3453dc5a20bd014c107107c910a9fb8631", "fields": {"nom_de_la_commune": "NEVERS", "libell_d_acheminement": "NEVERS", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58194"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecb741d07b7cdda7f88e155482d1d189b40d5b7", "fields": {"nom_de_la_commune": "LA NOCLE MAULAIX", "libell_d_acheminement": "LA NOCLE MAULAIX", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58195"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91fbe7171e7d372c248d111c6cc5d507c04fc32", "fields": {"nom_de_la_commune": "OUAGNE", "libell_d_acheminement": "OUAGNE", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58200"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906b2163ec19f8cbb15bb5f63a901ee91e481b42", "fields": {"nom_de_la_commune": "OUDAN", "libell_d_acheminement": "OUDAN", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58201"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d64ce5136cd2acfe2d20a831bcb0e1b70c6314", "fields": {"nom_de_la_commune": "ST ETIENNE ROILAYE", "libell_d_acheminement": "ST ETIENNE ROILAYE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60572"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57c352810990ac9190dcd4cfb03c0b0a9797ebb", "fields": {"nom_de_la_commune": "ST JEAN AUX BOIS", "libell_d_acheminement": "ST JEAN AUX BOIS", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60579"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193b3698a78d75d62bc7eb8f53e2d450f9ccb789", "fields": {"nom_de_la_commune": "ST LEGER EN BRAY", "libell_d_acheminement": "ST LEGER EN BRAY", "code_postal": "60155", "coordonnees_gps": [49.3994473154, 2.0089385619], "code_commune_insee": "60583"}, "geometry": {"type": "Point", "coordinates": [2.0089385619, 49.3994473154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fac85e4ca675b51e9b0f58b3c7fb6847ecb2f66", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60588"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c08cb17135b5537d6baf23306b3a045bd3ff8d", "fields": {"nom_de_la_commune": "ST QUENTIN DES PRES", "libell_d_acheminement": "ST QUENTIN DES PRES", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60594"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0048db6a2727ce15631a26a5aa22a1f812d20bc", "fields": {"nom_de_la_commune": "ST VAAST DE LONGMONT", "libell_d_acheminement": "ST VAAST DE LONGMONT", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60600"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01b5c67045cd90529dbaa29bb8a00e747fe69d1", "fields": {"nom_de_la_commune": "SALENCY", "libell_d_acheminement": "SALENCY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60603"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4815f3d600e4db9f8061bc3d7a16862a81ae52", "fields": {"nom_de_la_commune": "SEREVILLERS", "libell_d_acheminement": "SEREVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60615"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78ffd1ab3febbeae2d0b0359748bb58c187a3ff", "fields": {"nom_de_la_commune": "TARTIGNY", "libell_d_acheminement": "TARTIGNY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60627"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e37d0881a22ed395f39d9b30dbd09483c460ac", "fields": {"nom_de_la_commune": "THIESCOURT", "libell_d_acheminement": "THIESCOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60632"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e763e2fd59ba0075b0cbf14443917f336da0c62", "fields": {"nom_de_la_commune": "TRIE CHATEAU", "libell_d_acheminement": "TRIE CHATEAU", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60644"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23375567e72d4409e0c25478c45184e67bf333a2", "fields": {"nom_de_la_commune": "TRUMILLY", "libell_d_acheminement": "TRUMILLY", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60650"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b9dd757b426a18eea13a54b07fe14db1190a25", "fields": {"nom_de_la_commune": "ULLY ST GEORGES", "libell_d_acheminement": "ULLY ST GEORGES", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60651"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c080cd76f09ea96bcdfe467b33778661487d9903", "fields": {"nom_de_la_commune": "VALESCOURT", "libell_d_acheminement": "VALESCOURT", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60653"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0aeaafb5eaf4a66649fd266efcb73b794a41c18", "fields": {"nom_de_la_commune": "VAUCHELLES", "libell_d_acheminement": "VAUCHELLES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60657"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1b29414813f15a164dc48829512a511a10ab45", "fields": {"nom_de_la_commune": "VIEFVILLERS", "libell_d_acheminement": "VIEFVILLERS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60673"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee33bbd2187ee9e5bb5b5b241d8f082862e22fd1", "fields": {"nom_de_la_commune": "VIEUX MOULIN", "libell_d_acheminement": "VIEUX MOULIN", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60674"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd351a84cc06f98a91f45e77e75fc2ee80b87def", "fields": {"nom_de_la_commune": "VILLERS ST PAUL", "libell_d_acheminement": "VILLERS ST PAUL", "code_postal": "60870", "coordonnees_gps": [49.2979695646, 2.51851013647], "code_commune_insee": "60684"}, "geometry": {"type": "Point", "coordinates": [2.51851013647, 49.2979695646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25cd60109edf4b9b1ac7c367a5d181d7de5dcea", "fields": {"nom_de_la_commune": "VILLERS ST SEPULCRE", "libell_d_acheminement": "VILLERS ST SEPULCRE", "code_postal": "60134", "coordonnees_gps": [49.3709674035, 2.20669140352], "code_commune_insee": "60685"}, "geometry": {"type": "Point", "coordinates": [2.20669140352, 49.3709674035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d2b8a7017d33becbc29a506501e4522464bdad8", "fields": {"nom_de_la_commune": "VILLERS SUR COUDUN", "libell_d_acheminement": "VILLERS SUR COUDUN", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60689"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea1c7d39dd4a16fa19c2f9145947dee1d5503ab", "fields": {"nom_de_la_commune": "WELLES PERENNES", "libell_d_acheminement": "WELLES PERENNES", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60702"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6dd7c542bf39eff4df9867a885a93b991675f07", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "LA CARNEILLE", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83e33990618206f2abf6471e4d48f26d6822677", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "TAILLEBOIS", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2427ae866056e44cb807053411d877ffffddde", "fields": {"nom_de_la_commune": "LES AUTHIEUX DU PUITS", "libell_d_acheminement": "LES AUTHIEUX DU PUITS", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61017"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0d27c854b0e2de23a8bf40a965eed740b47085", "fields": {"nom_de_la_commune": "AVRILLY", "libell_d_acheminement": "AVRILLY", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61021"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8336449b6d5a09ce9d1bb3e493bd39a83b3f5719", "fields": {"nom_de_la_commune": "BEAUFAI", "libell_d_acheminement": "BEAUFAI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61032"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951d8e44d0d1f3ccbad89119072653cbe65a7628", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61034"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb5a8f3082deeb5a7ac082d92ba78fc79e0b88d", "fields": {"nom_de_la_commune": "BEAUVAIN", "libell_d_acheminement": "BEAUVAIN", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61035"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b4f51f2aa4843dffdee48de925b16727456b56", "fields": {"nom_de_la_commune": "BELLOU EN HOULME", "libell_d_acheminement": "BELLOU EN HOULME", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61040"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a534c26570ff5bdad37a9c2c77542421752f75", "fields": {"nom_de_la_commune": "BERD HUIS", "libell_d_acheminement": "BERD HUIS", "code_postal": "61340", "coordonnees_gps": [48.372155968, 0.719847889248], "code_commune_insee": "61043"}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa46ddd6d71ed8556c9de5211ab5979a08e977b", "fields": {"nom_de_la_commune": "BERJOU", "libell_d_acheminement": "BERJOU", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61044"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3743004d16eb783dd5799dc0694b1b79556619c9", "fields": {"nom_de_la_commune": "BOISSEI LA LANDE", "libell_d_acheminement": "BOISSEI LA LANDE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61049"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66c8681e348de4fddd1ce0ef5e939d8dd6e3e5e5", "fields": {"nom_de_la_commune": "BOUCE", "libell_d_acheminement": "BOUCE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61055"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edff5a5a99e978e01adeae64b41bd02753a55a2b", "fields": {"nom_de_la_commune": "LE BOURG ST LEONARD", "libell_d_acheminement": "LE BOURG ST LEONARD", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61057"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f72336b0bb869f65801a8a6e002e414a15c2274", "fields": {"nom_de_la_commune": "BRETONCELLES", "libell_d_acheminement": "BRETONCELLES", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61061"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ad2e665ac1ea331821c83487ecbaf6237b9452", "fields": {"nom_de_la_commune": "BRULLEMAIL", "libell_d_acheminement": "BRULLEMAIL", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61064"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d324437e74045fd2929a9a4ca3632026cb331075", "fields": {"nom_de_la_commune": "BURE", "libell_d_acheminement": "BURE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61066"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14736de2d090d1125dbcd539aa71f70146a992e8", "fields": {"nom_de_la_commune": "CAHAN", "libell_d_acheminement": "CAHAN", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61069"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7dd7da2dac18c3372699b3aae0d72672f8bf050", "fields": {"nom_de_la_commune": "CALIGNY", "libell_d_acheminement": "CALIGNY", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61070"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d454c82145fde1d5f2144d46480e4bd54e128370", "fields": {"nom_de_la_commune": "LE CERCUEIL", "libell_d_acheminement": "LE CERCUEIL", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61076"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f38ad06006216382db2269d66b44437efbed95d", "fields": {"nom_de_la_commune": "CERISY BELLE ETOILE", "libell_d_acheminement": "CERISY BELLE ETOILE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61078"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff10568a765dfacf5e0f9339bf0449f8cdffc237", "fields": {"nom_de_la_commune": "CETON", "libell_d_acheminement": "CETON", "code_postal": "61260", "coordonnees_gps": [48.2308054852, 0.743916298767], "code_commune_insee": "61079"}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010905afae9c163b4c21612db2d308c04f5dfcac", "fields": {"nom_de_la_commune": "CHAMPOSOULT", "libell_d_acheminement": "CHAMPOSOULT", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61089"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba5cdbbb9268b4c95075a2579a1b39a322b4a83", "fields": {"nom_de_la_commune": "CHANDAI", "libell_d_acheminement": "CHANDAI", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61092"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61a8512ef18cc67132692b007aa3f056e4da0999", "fields": {"nom_de_la_commune": "LA CHAPELLE BICHE", "libell_d_acheminement": "LA CHAPELLE BICHE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61095"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d984faa4ec970d9b9b5f061c4cf2fa2ebc093c", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTLIGEON", "libell_d_acheminement": "LA CHAPELLE MONTLIGEON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61097"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8738b55560ac6fe41be5c5a31cbf5b351848e0aa", "fields": {"nom_de_la_commune": "LA CHAUX", "libell_d_acheminement": "LA CHAUX", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61104"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4f8bd594a76674c663643b56833a41357a5b05", "fields": {"nom_de_la_commune": "CISAI ST AUBIN", "libell_d_acheminement": "CISAI ST AUBIN", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61108"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b623e3305bbfb224a9e3af465e2fdb4f873419b", "fields": {"nom_de_la_commune": "COMMEAUX", "libell_d_acheminement": "COMMEAUX", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61114"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250f221863fe8e9f12491972d41c8f0db2302551", "fields": {"code_postal": "61110", "code_commune_insee": "61116", "libell_d_acheminement": "SABLONS SUR HUISNE", "ligne_5": "CONDE SUR HUISNE", "nom_de_la_commune": "SABLONS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbc46a37f10680a528c6794175514835071f50de", "fields": {"nom_de_la_commune": "COULIMER", "libell_d_acheminement": "COULIMER", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61121"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad876b1ba1035ddfdb76ceb79b869e72139259b", "fields": {"nom_de_la_commune": "LA COULONCHE", "libell_d_acheminement": "LA COULONCHE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61124"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb9ea95d35e05901c2233390bae5ccaa6393dd8", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61138"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c354110d8b2557d9158f96e286e3c0c91413808f", "fields": {"nom_de_la_commune": "CUISSAI", "libell_d_acheminement": "CUISSAI", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61141"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a17fbc0f3ed2bebaa27490c5a69302e3540a45", "fields": {"nom_de_la_commune": "ECORCHES", "libell_d_acheminement": "ECORCHES", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61152"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095a36cfcc5e817ac1b8a51d523bedd55a933b95", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "LA COURBE", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3d0cb92767488bba7e85417cfc189cc1ebcbb4", "fields": {"nom_de_la_commune": "ESSAY", "libell_d_acheminement": "ESSAY", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61156"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc2a3553981c4db0ad28d32b0aee7bd3ee5443b", "fields": {"nom_de_la_commune": "LA FERRIERE AU DOYEN", "libell_d_acheminement": "LA FERRIERE AU DOYEN", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61162"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337a3d46ef11774b60ed8ab5fb76ac6a4a02056e", "fields": {"nom_de_la_commune": "LA FERRIERE AUX ETANGS", "libell_d_acheminement": "LA FERRIERE AUX ETANGS", "code_postal": "61450", "coordonnees_gps": [48.6630002344, -0.54676985736], "code_commune_insee": "61163"}, "geometry": {"type": "Point", "coordinates": [-0.54676985736, 48.6630002344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee682c9fe61bc935be85620d4aa135a6d52ae0c3", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "GLOS LA FERRIERE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87075113bc258b10fdb0f56828c0dccf243db41f", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "VILLERS EN OUCHE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c472f80b6d8073871bf322330923bc0e92dadb", "fields": {"nom_de_la_commune": "FONTAINE LES BASSETS", "libell_d_acheminement": "FONTAINE LES BASSETS", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61171"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a659a727ddb0c5312d2b288c4cc6a7bff3d6e728", "fields": {"nom_de_la_commune": "FONTENAI LES LOUVETS", "libell_d_acheminement": "FONTENAI LES LOUVETS", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61172"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dbeac1969e47d2c5ac22b7cb3f4d69e84f3e7e5", "fields": {"nom_de_la_commune": "GACE", "libell_d_acheminement": "GACE", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61181"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b85b7194b2b5dfce6cc2fba4207954314a40d5", "fields": {"nom_de_la_commune": "GINAI", "libell_d_acheminement": "GINAI", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61190"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd105170486a47f4d079bc650324354043796a2", "fields": {"nom_de_la_commune": "GUERQUESALLES", "libell_d_acheminement": "GUERQUESALLES", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61198"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6080b89c89c1d40330d2b0e2932009c692cc79c4", "fields": {"nom_de_la_commune": "HAUTERIVE", "libell_d_acheminement": "HAUTERIVE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61202"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "655c278fcb9aca7a10c2f3b215f3ff331b7a49ea", "fields": {"nom_de_la_commune": "L HOME CHAMONDOT", "libell_d_acheminement": "L HOME CHAMONDOT", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61206"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2872d4c60afe79e0b8a0fc07d194c008d71ff9c2", "fields": {"nom_de_la_commune": "IGE", "libell_d_acheminement": "IGE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61207"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6567e8a13225b7015601fe0f3167e3b576911d4", "fields": {"nom_de_la_commune": "WANCHY CAPVAL", "libell_d_acheminement": "WANCHY CAPVAL", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76749"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e56f2f8d845ab310f7a52d4dc6e8f192403c9cb", "fields": {"nom_de_la_commune": "YPORT", "libell_d_acheminement": "YPORT", "code_postal": "76111", "coordonnees_gps": [49.7290566584, 0.303233550691], "code_commune_insee": "76754"}, "geometry": {"type": "Point", "coordinates": [0.303233550691, 49.7290566584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d280f7fcb927f7133bf15b152c54985e0a35c30c", "fields": {"nom_de_la_commune": "YVILLE SUR SEINE", "libell_d_acheminement": "YVILLE SUR SEINE", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76759"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbbc04ef53ffe72e17d50dc50fb8c1330c30731", "fields": {"nom_de_la_commune": "AMPONVILLE", "libell_d_acheminement": "AMPONVILLE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77003"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894091c089538687eda63c7f09e14efb86b32935", "fields": {"nom_de_la_commune": "AROZ", "libell_d_acheminement": "AROZ", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70028"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fd36dd1f77b8c0ca0df2d7b64617fa17a20291", "fields": {"nom_de_la_commune": "ATHESANS ETROITEFONTAINE", "libell_d_acheminement": "ATHESANS ETROITEFONTAINE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70031"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf6c9f42cc3c96ca89b84bcdfd115e7978f7741", "fields": {"nom_de_la_commune": "AUTOREILLE", "libell_d_acheminement": "AUTOREILLE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70039"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff37ceacdff081361ae3301a3b3c736db744639", "fields": {"nom_de_la_commune": "AUTREY LES CERRE", "libell_d_acheminement": "AUTREY LES CERRE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70040"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10f97d23ab3a30d7481adbde69473757e6c3f60", "fields": {"nom_de_la_commune": "AUTREY LE VAY", "libell_d_acheminement": "AUTREY LE VAY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70042"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd3f7175164026696da89eeccf210f5ded7bfbe", "fields": {"code_postal": "70100", "code_commune_insee": "70058", "libell_d_acheminement": "BEAUJEU ET QUITTEUR", "ligne_5": "QUITTEUR", "nom_de_la_commune": "BEAUJEU ET QUITTEUR", "coordonnees_gps": [47.4450284828, 5.5835389303]}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb1ccc5bc6a7d1bec551608509e6baa25cc4256", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70062"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaca3b1e57b39d2945bd4a47d53e6d9a94eae481", "fields": {"nom_de_la_commune": "BONNEVENT VELLOREILLE", "libell_d_acheminement": "BONNEVENT VELLOREILLE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70076"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4542ba4d6d645078e9fc2b2afb655fa11f1a02a7", "fields": {"nom_de_la_commune": "BOURGUIGNON LES MOREY", "libell_d_acheminement": "BOURGUIGNON LES MOREY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70089"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee755f9ee13ec1966ec108800a7bc263a209ac61", "fields": {"nom_de_la_commune": "BRESILLEY", "libell_d_acheminement": "BRESILLEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70092"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ff51a32f677d55865ba1983fddf04eb10092de", "fields": {"nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", "libell_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70101"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39af0f3ad7a3cbab477600cb4092c5a753dd0c22", "fields": {"nom_de_la_commune": "LA BRUYERE", "libell_d_acheminement": "LA BRUYERE", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70103"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "723208f343376791266cc4251d75e1bdb8ac56dc", "fields": {"nom_de_la_commune": "BUFFIGNECOURT", "libell_d_acheminement": "BUFFIGNECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70106"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dccedec0de43c19bef28e9c6ebb5b3ccc5d8fff3", "fields": {"nom_de_la_commune": "CENDRECOURT", "libell_d_acheminement": "CENDRECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70114"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3169a82ff14a1970111bf7a5f11eafa8b576cde", "fields": {"nom_de_la_commune": "CHALONVILLARS", "libell_d_acheminement": "CHALONVILLARS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70117"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80fbe704999cb10d3b6da773b73e7df41efe01de", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "CHAMPLITTE LA VILLE", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef042afc8f2639a3cbe75266b57e9336b82faa57", "fields": {"nom_de_la_commune": "CHANCEY", "libell_d_acheminement": "CHANCEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70126"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15aa77176c8d11ea5b64ea164d5cea55384cbc7", "fields": {"nom_de_la_commune": "CHARCENNE", "libell_d_acheminement": "CHARCENNE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70130"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bb587ff9104b31b6b6e2ae9a214b0a81de11d3", "fields": {"nom_de_la_commune": "CHARGEY LES GRAY", "libell_d_acheminement": "CHARGEY LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70132"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b849933ef52eaa56c4dea3878cff134ae82541", "fields": {"nom_de_la_commune": "CHARMOILLE", "libell_d_acheminement": "CHARMOILLE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70136"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7691f6c367e52df66add66b34ed9f0df393945de", "fields": {"nom_de_la_commune": "CHASSEY LES SCEY", "libell_d_acheminement": "CHASSEY LES SCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70138"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aaf7e4ccf9c9123453f46c6677edf272e987668", "fields": {"nom_de_la_commune": "CHAUMERCENNE", "libell_d_acheminement": "CHAUMERCENNE", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70142"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28878b2c879abb02dbe398b885fc70ed75965fea", "fields": {"nom_de_la_commune": "COLOMBE LES VESOUL", "libell_d_acheminement": "COLOMBE LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70162"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0780376ed7f1de0585ca6c561d805af4a8932b1f", "fields": {"nom_de_la_commune": "COMBEAUFONTAINE", "libell_d_acheminement": "COMBEAUFONTAINE", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70165"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b03c880a800f2fd7e887e9b7fdeb0241ce9c2fd", "fields": {"nom_de_la_commune": "COMBERJON", "libell_d_acheminement": "COMBERJON", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70166"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d54afab8c84abac680b6cb15381e48d9c07b241", "fields": {"nom_de_la_commune": "COURMONT", "libell_d_acheminement": "COURMONT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70182"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b222b78ecbd87d0b410c76fcb6f2074df189f1c", "fields": {"nom_de_la_commune": "CUGNEY", "libell_d_acheminement": "CUGNEY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70192"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f9cf13dfda62368b3922f1aa46e5cc7210d1b2", "fields": {"nom_de_la_commune": "DENEVRE", "libell_d_acheminement": "DENEVRE", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70204"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899f7200adcf4c728dc6d94b420d0be68b08b27a", "fields": {"nom_de_la_commune": "ESPRELS", "libell_d_acheminement": "ESPRELS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70219"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9949cd7ecd80c5cab333016640bd91dd7ed093ea", "fields": {"nom_de_la_commune": "FAUCOGNEY ET LA MER", "libell_d_acheminement": "FAUCOGNEY ET LA MER", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70227"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea33baeaba0bf8a89f813299b27cecfc623ae7c", "fields": {"code_postal": "70160", "code_commune_insee": "70228", "libell_d_acheminement": "FAVERNEY", "ligne_5": "PORT D ATELIER", "nom_de_la_commune": "FAVERNEY", "coordonnees_gps": [47.7821357866, 6.09657961176]}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74cd2d3c3dfce4bf1e65ad6f844565daeb431fdc", "fields": {"nom_de_la_commune": "FLAGY", "libell_d_acheminement": "FLAGY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70235"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7aee3ef7cdeb13fd167d2a9123163a5a730631c", "fields": {"nom_de_la_commune": "FLEUREY LES ST LOUP", "libell_d_acheminement": "FLEUREY LES ST LOUP", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70238"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5274a4b362c1008665c2fea293a9173307284658", "fields": {"nom_de_la_commune": "FONTENOIS LA VILLE", "libell_d_acheminement": "FONTENOIS LA VILLE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70242"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5cc74f79b62760a42099d97579a0f2c7da9555", "fields": {"nom_de_la_commune": "FOUCHECOURT", "libell_d_acheminement": "FOUCHECOURT", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70244"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40e2d2ca830e2d9d62cb641c428c8d01254b353", "fields": {"nom_de_la_commune": "FRANCALMONT", "libell_d_acheminement": "FRANCALMONT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70249"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebe9fab83d154b1a33d6fb199ef71a0492f3866", "fields": {"code_postal": "70600", "code_commune_insee": "70252", "libell_d_acheminement": "FRAMONT", "ligne_5": "MONT LE FRANOIS", "nom_de_la_commune": "FRAMONT", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528529672e535b6df50485b591154d00f888169c", "fields": {"nom_de_la_commune": "FRESNE ST MAMES", "libell_d_acheminement": "FRESNE ST MAMES", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70255"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a4fb48d0050244bc59d9d0b3af3c6340901d84", "fields": {"nom_de_la_commune": "GENEVREUILLE", "libell_d_acheminement": "GENEVREUILLE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70262"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd409f718bc4b194290cc306edd1c335babe3021", "fields": {"nom_de_la_commune": "GERMIGNEY", "libell_d_acheminement": "GERMIGNEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70265"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4decb3f12b07555338a71edc10e9125d990519c3", "fields": {"nom_de_la_commune": "GRANGES LE BOURG", "libell_d_acheminement": "GRANGES LE BOURG", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70277"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d777e30403218fbc615451152d0145ea8d81908", "fields": {"nom_de_la_commune": "GRAY", "libell_d_acheminement": "GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70279"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1c3bca0465887f09950ed179b16523245974ac", "fields": {"nom_de_la_commune": "GY", "libell_d_acheminement": "GY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70282"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c62cf8d2ff7f6201131f0cd1a2e586d080c3aa9", "fields": {"code_postal": "70400", "code_commune_insee": "70285", "libell_d_acheminement": "HERICOURT", "ligne_5": "BUSSUREL", "nom_de_la_commune": "HERICOURT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37d1a4afd2829be457d4e5e4cdc57b5a8771bb3", "fields": {"code_postal": "70400", "code_commune_insee": "70285", "libell_d_acheminement": "HERICOURT", "ligne_5": "BYANS", "nom_de_la_commune": "HERICOURT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5241a65e81933fc75edbb90ba2b2e839e013f60", "fields": {"nom_de_la_commune": "LANTENOT", "libell_d_acheminement": "LANTENOT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70294"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d398edcdb2ac343b979579b88542b3b9461b3bfc", "fields": {"nom_de_la_commune": "LIEFFRANS", "libell_d_acheminement": "LIEFFRANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70301"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f51ed02636ba5f63fd8d8ea798012123809e667", "fields": {"nom_de_la_commune": "LOEUILLEY", "libell_d_acheminement": "LOEUILLEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70305"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d793bc949bd39038ccd35c1846ea8955cfb730c0", "fields": {"nom_de_la_commune": "MAGNONCOURT", "libell_d_acheminement": "MAGNONCOURT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70315"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29ac4c9b5db3f08de945aee644d76cb7cf58c58", "fields": {"nom_de_la_commune": "MAGNY LES JUSSEY", "libell_d_acheminement": "MAGNY LES JUSSEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70320"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6811449cb41e75618688177107c693404a09818", "fields": {"nom_de_la_commune": "MALANS", "libell_d_acheminement": "MALANS", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70327"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9341aec61f25838ce3ff5d487851e02d8f95a33", "fields": {"nom_de_la_commune": "MALVILLERS", "libell_d_acheminement": "MALVILLERS", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70329"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07297ae3a14a1468a6ff5bf0c70fd51f00c47f8a", "fields": {"nom_de_la_commune": "MARAST", "libell_d_acheminement": "MARAST", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70332"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa368159c548adf56770df5c055b23d0bd11059", "fields": {"nom_de_la_commune": "MELECEY", "libell_d_acheminement": "MELECEY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70336"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46587a92898e62e9dab1269e7da63364915d48bb", "fields": {"nom_de_la_commune": "MEURCOURT", "libell_d_acheminement": "MEURCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70344"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fa4def8d014dceb9dce848e9704fbc3a0a4f41", "fields": {"nom_de_la_commune": "MIELLIN", "libell_d_acheminement": "MIELLIN", "code_postal": "70440", "coordonnees_gps": [47.8263854039, 6.71661809603], "code_commune_insee": "70345"}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d288eefd349e52720caff52d5ae76d1871cb85e", "fields": {"nom_de_la_commune": "LA MONTAGNE", "libell_d_acheminement": "LA MONTAGNE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70352"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b9eb0fd522452797a3b949f9782ab5bf899e58", "fields": {"nom_de_la_commune": "MONTCEY", "libell_d_acheminement": "MONTCEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70358"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff784b1d5093a66914ee7871531023f01847f01", "fields": {"nom_de_la_commune": "MONTIGNY LES VESOUL", "libell_d_acheminement": "MONTIGNY LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70363"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59d5fc39bd503e400929c2d00c2779d1426f3a88", "fields": {"nom_de_la_commune": "MONTJUSTIN ET VELOTTE", "libell_d_acheminement": "MONTJUSTIN ET VELOTTE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70364"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1c97e41c574806a62b54aceb988b7db2c19e60", "fields": {"nom_de_la_commune": "VILLERS CHEMIN ET MONT LES ETRELLES", "libell_d_acheminement": "VILLERS CHEMIN MONT LES ETRELLES", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70366"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d859dbecad549ba666e1ac89a4b0e5c8fc347cbc", "fields": {"nom_de_la_commune": "MONT LE VERNOIS", "libell_d_acheminement": "MONT LE VERNOIS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70367"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2d336398d401022d8283b0d641a41716b5266c", "fields": {"nom_de_la_commune": "MONTOT", "libell_d_acheminement": "MONTOT", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70368"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c01c5b3ff63549c943603016100cf2668375f83", "fields": {"nom_de_la_commune": "MONT ST LEGER", "libell_d_acheminement": "MONT ST LEGER", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70369"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5b4592f1ef6ea9b83b75f374cac303274b3f8f", "fields": {"nom_de_la_commune": "LA ROCHE MOREY", "libell_d_acheminement": "LA ROCHE MOREY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70373"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d5abefbd5cf5757e339310af3a022cc762a001", "fields": {"code_postal": "70120", "code_commune_insee": "70373", "libell_d_acheminement": "LA ROCHE MOREY", "ligne_5": "SUAUCOURT ET PISSELOUP", "nom_de_la_commune": "LA ROCHE MOREY", "coordonnees_gps": [47.6952639398, 5.81680839597]}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240faf2724f7fc77ea0a7d01f001527563fc8d3b", "fields": {"nom_de_la_commune": "MOTEY BESUCHE", "libell_d_acheminement": "MOTEY BESUCHE", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70374"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d63be6fd66b8e2c4a143393aae261360991e94", "fields": {"nom_de_la_commune": "MOTEY SUR SAONE", "libell_d_acheminement": "MOTEY SUR SAONE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70375"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508a3ce0b7fe5f8b24ff541552786dc32d46a3f7", "fields": {"nom_de_la_commune": "NEUREY EN VAUX", "libell_d_acheminement": "NEUREY EN VAUX", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70380"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb32cf229122d79f305250b6f1124014db2566a0", "fields": {"nom_de_la_commune": "NEUREY LES LA DEMIE", "libell_d_acheminement": "NEUREY LES LA DEMIE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70381"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edb9d3d8088a6d750e07eda08b45240ab989a63d", "fields": {"nom_de_la_commune": "OISELAY ET GRACHAUX", "libell_d_acheminement": "OISELAY ET GRACHAUX", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70393"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c16a24481075a78cf8d144b16134edb5dd8f8a", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70399"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86ce900e7c4f001cc8e06e7e3877eca2d06c417", "fields": {"nom_de_la_commune": "PENNESIERES", "libell_d_acheminement": "PENNESIERES", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70405"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5196480f26f619a9a9beade0e410fe08705044", "fields": {"nom_de_la_commune": "PIN", "libell_d_acheminement": "PIN", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70410"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a3bec8b6ef3cae09cc4037164c723a6c115906", "fields": {"nom_de_la_commune": "PREIGNEY", "libell_d_acheminement": "PREIGNEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70423"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517985f4abd9def82a86904216f22e4e8602d602", "fields": {"nom_de_la_commune": "PUSEY", "libell_d_acheminement": "PUSEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70428"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fc3b5cdaf42e0442aae787f388df6c2fe4b2ff", "fields": {"nom_de_la_commune": "QUERS", "libell_d_acheminement": "QUERS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70432"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0676ef87ef636b72e8c971cd67acc911827fdd", "fields": {"nom_de_la_commune": "RAY SUR SAONE", "libell_d_acheminement": "RAY SUR SAONE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70438"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08fd4a5fb0c5a077e80d359ad4035c9b44c4e7ac", "fields": {"nom_de_la_commune": "RECOLOGNE LES RIOZ", "libell_d_acheminement": "RECOLOGNE LES RIOZ", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70441"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4257ed378863bf46c7c4de61d4238280a12decaa", "fields": {"nom_de_la_commune": "RENAUCOURT", "libell_d_acheminement": "RENAUCOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70442"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14fe6c6f639f7eb4222b1e1acf99da3fbe9ecf57", "fields": {"nom_de_la_commune": "LA RESIE ST MARTIN", "libell_d_acheminement": "LA RESIE ST MARTIN", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70444"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a8cba03c5d0dc72ca655439e7e3e2a5e878a70", "fields": {"nom_de_la_commune": "RIGNOVELLE", "libell_d_acheminement": "RIGNOVELLE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70445"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ddc0671a24c68670a5bd7cf99225aa7831a43d", "fields": {"nom_de_la_commune": "RIOZ", "libell_d_acheminement": "RIOZ", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70447"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15357e703b5a53c1df14885375ef3c0692a53bad", "fields": {"code_postal": "70190", "code_commune_insee": "70447", "libell_d_acheminement": "RIOZ", "ligne_5": "LES FONTENIS", "nom_de_la_commune": "RIOZ", "coordonnees_gps": [47.4343544936, 6.05247846774]}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff3b8e7c7ac64b1520a544f8543f18383f9b3fe", "fields": {"nom_de_la_commune": "ROYE", "libell_d_acheminement": "ROYE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70455"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a969ec24d0cd466426674a9d0de2178cca1dabf8", "fields": {"nom_de_la_commune": "RUHANS", "libell_d_acheminement": "RUHANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70456"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290fc710b34276de543f37863b716f1f0797c482", "fields": {"nom_de_la_commune": "RUPT SUR SAONE", "libell_d_acheminement": "RUPT SUR SAONE", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70457"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283de7411cdf025613231074e907ca37bd02c279", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70459"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0737479bb511d64e95432ff02f4e7f0456605b1f", "fields": {"nom_de_la_commune": "ST GAND", "libell_d_acheminement": "ST GAND", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70463"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c115ae7a436087f4bd45911c14b23f5394f8d90", "fields": {"nom_de_la_commune": "ST VALBERT", "libell_d_acheminement": "ST VALBERT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70475"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786c83425665c2d6a450f6f69b42b999b89cde62", "fields": {"nom_de_la_commune": "SAUVIGNEY LES PESMES", "libell_d_acheminement": "SAUVIGNEY LES PESMES", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70480"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f385e4b4ef7a4188f0fe00df30a9a5df91338be1", "fields": {"nom_de_la_commune": "SAVOYEUX", "libell_d_acheminement": "SAVOYEUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70481"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca638445158e768dcc3c3239b227a9e363cba33", "fields": {"nom_de_la_commune": "SECENANS", "libell_d_acheminement": "SECENANS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70484"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "795bbb3dd3beca1d36265ae133c227c2163a0b3d", "fields": {"nom_de_la_commune": "SENARGENT MIGNAFANS", "libell_d_acheminement": "SENARGENT MIGNAFANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70487"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f42b4af2165417cad63d267bdcb5407e66522c", "fields": {"code_postal": "70110", "code_commune_insee": "70487", "libell_d_acheminement": "SENARGENT MIGNAFANS", "ligne_5": "MIGNAFANS", "nom_de_la_commune": "SENARGENT MIGNAFANS", "coordonnees_gps": [47.5606005441, 6.44969851367]}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44ec31df269e64ea9ae50c5767e3eb9620353ac7", "fields": {"nom_de_la_commune": "THEULEY", "libell_d_acheminement": "THEULEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70499"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6899d633d58e37bb90cf5aa53cde047dde56f397", "fields": {"nom_de_la_commune": "RODEMACK", "libell_d_acheminement": "RODEMACK", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57588"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83883ddd789bf66c2648064ea649a341ff7182b3", "fields": {"nom_de_la_commune": "ROMELFING", "libell_d_acheminement": "ROMELFING", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57592"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752d0975b9160544e7850d76bdd59ed13f9633f2", "fields": {"nom_de_la_commune": "ROPPEVILLER", "libell_d_acheminement": "ROPPEVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57594"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc022586ed39a66f2dd0efcd2f7e10bede4a53cd", "fields": {"nom_de_la_commune": "ROSBRUCK", "libell_d_acheminement": "ROSBRUCK", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57596"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf99c07f318cb0681bdd2e528ecfc56208248a1c", "fields": {"nom_de_la_commune": "ROUPELDANGE", "libell_d_acheminement": "ROUPELDANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57599"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7224e5b50bd3cf7ab3d24010fa859a0a4006c820", "fields": {"nom_de_la_commune": "RUSSANGE", "libell_d_acheminement": "RUSSANGE", "code_postal": "57390", "coordonnees_gps": [49.4698725399, 5.94728059458], "code_commune_insee": "57603"}, "geometry": {"type": "Point", "coordinates": [5.94728059458, 49.4698725399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9458183f281007c3fa8662dfb84eabe1c7eebc", "fields": {"nom_de_la_commune": "ST JURE", "libell_d_acheminement": "ST JURE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57617"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8981fa58a52d966e8edc779df55c6c9297ea492b", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57618"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6727b168d8b359b2a4db40f727e7271d24fcf8a1", "fields": {"nom_de_la_commune": "ST LOUIS LES BITCHE", "libell_d_acheminement": "ST LOUIS LES BITCHE", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57619"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5bcdca43019725c405e1eb8f944338c5aa0625", "fields": {"nom_de_la_commune": "STE MARIE AUX CHENES", "libell_d_acheminement": "STE MARIE AUX CHENES", "code_postal": "57255", "coordonnees_gps": [49.1915639312, 6.00678448387], "code_commune_insee": "57620"}, "geometry": {"type": "Point", "coordinates": [6.00678448387, 49.1915639312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ab5094136edc8bbb1aa90cb13a81d27d08f47d", "fields": {"nom_de_la_commune": "SARRALTROFF", "libell_d_acheminement": "SARRALTROFF", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57629"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df43ace2f1823786225f099ee068b73ed59a3e7", "fields": {"nom_de_la_commune": "SAULNY", "libell_d_acheminement": "SAULNY", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57634"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5200f88479c6e221b6f990e29d38a74d3446c0c8", "fields": {"nom_de_la_commune": "SEREMANGE ERZANGE", "libell_d_acheminement": "SEREMANGE ERZANGE", "code_postal": "57290", "coordonnees_gps": [49.3041832839, 6.102475564], "code_commune_insee": "57647"}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45015936ac76261e0f27d59fb0351a725ab2d768", "fields": {"nom_de_la_commune": "SERVIGNY LES STE BARBE", "libell_d_acheminement": "SERVIGNY LES STE BARBE", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57649"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4897c45e65e64fdf00a1090007511635cc95f2cf", "fields": {"nom_de_la_commune": "SOUCHT", "libell_d_acheminement": "SOUCHT", "code_postal": "57960", "coordonnees_gps": [48.965339221, 7.32931540364], "code_commune_insee": "57658"}, "geometry": {"type": "Point", "coordinates": [7.32931540364, 48.965339221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcde6cbcbdfdbe5a11ea493d4790ce53a86808b6", "fields": {"nom_de_la_commune": "SPICHEREN", "libell_d_acheminement": "SPICHEREN", "code_postal": "57350", "coordonnees_gps": [49.2014476423, 6.94907800284], "code_commune_insee": "57659"}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d598590a904fe799a37738d99ab6966b773b87a", "fields": {"nom_de_la_commune": "TARQUIMPOL", "libell_d_acheminement": "TARQUIMPOL", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57664"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3838c6bc1ac363613ed6180d9680ccb1a230d5", "fields": {"nom_de_la_commune": "TENTELING", "libell_d_acheminement": "TENTELING", "code_postal": "57980", "coordonnees_gps": [49.1092636069, 6.94134556596], "code_commune_insee": "57665"}, "geometry": {"type": "Point", "coordinates": [6.94134556596, 49.1092636069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9138cbd4d822a27d16d32e8e798cb7d0895465", "fields": {"nom_de_la_commune": "THICOURT", "libell_d_acheminement": "THICOURT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57670"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6417f65e21248b350b56e12e714eba71af9b6a", "fields": {"nom_de_la_commune": "THIMONVILLE", "libell_d_acheminement": "THIMONVILLE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57671"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6604c6b5522fc0c9f6f216c5af74198c15233c9c", "fields": {"nom_de_la_commune": "THIONVILLE", "libell_d_acheminement": "THIONVILLE", "code_postal": "57100", "coordonnees_gps": [49.376778126, 6.13767637123], "code_commune_insee": "57672"}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057dda1501f0877a5484225c0ecdf5bbbf738038", "fields": {"nom_de_la_commune": "TINCRY", "libell_d_acheminement": "TINCRY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57674"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8432d50ba26242fd2d5ebf72e7b95752f008bd6f", "fields": {"code_postal": "57870", "code_commune_insee": "57680", "libell_d_acheminement": "TROISFONTAINES", "ligne_5": "VALLERYSTHAL", "nom_de_la_commune": "TROISFONTAINES", "coordonnees_gps": [48.6442661172, 7.16634369748]}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587822500f3fa52175dc251cdf07004434fafa92", "fields": {"nom_de_la_commune": "VAHL LES FAULQUEMONT", "libell_d_acheminement": "VAHL LES FAULQUEMONT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57686"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a427327e42370caad16de0dc6786b52bb8c0b1a5", "fields": {"nom_de_la_commune": "VALLERANGE", "libell_d_acheminement": "VALLERANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57687"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f979c289c78f594e4c7a9a4724b62fa3f82153b3", "fields": {"nom_de_la_commune": "VALMONT", "libell_d_acheminement": "VALMONT", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57690"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc21375a58eece7d425dad9c865a4bd9d242db2e", "fields": {"nom_de_la_commune": "VANTOUX", "libell_d_acheminement": "VANTOUX", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57693"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8d9a8587efc85ca30e58682b8e1ba36b6d4ee7", "fields": {"nom_de_la_commune": "VAXY", "libell_d_acheminement": "VAXY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57702"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526c24b0ce61a7a7311e4b1e8d321245ca3cb44a", "fields": {"nom_de_la_commune": "VELVING", "libell_d_acheminement": "VELVING", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57705"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9d17f2ff885e922e6bb40a103aa552249eb848", "fields": {"nom_de_la_commune": "VERGAVILLE", "libell_d_acheminement": "VERGAVILLE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57706"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abd522a77f2834c1066fca36ecc877c95674dd2", "fields": {"nom_de_la_commune": "VIEUX LIXHEIM", "libell_d_acheminement": "VIEUX LIXHEIM", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57713"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297bc03c58c9e63e1a1207c0da4fcdc4d6ffc38e", "fields": {"nom_de_la_commune": "HAUTE VIGNEULLES", "libell_d_acheminement": "HAUTE VIGNEULLES", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57714"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62a29201372951531d356f38325425ec9340f12", "fields": {"nom_de_la_commune": "VIGNY", "libell_d_acheminement": "VIGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57715"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4abb8b19670803072266328b4baf5ef0ba58bb98", "fields": {"nom_de_la_commune": "VIRMING", "libell_d_acheminement": "VIRMING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57723"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef2d30ce6e5ac03e404bf03989bca099a6f4224", "fields": {"nom_de_la_commune": "VITTONCOURT", "libell_d_acheminement": "VITTONCOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57726"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b012cfa5fb227ed934c4c3254731cf5ed58853", "fields": {"nom_de_la_commune": "VOYER", "libell_d_acheminement": "VOYER", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57734"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394c8cef6dbb2c9d3ac78d22d88d1d15e40502d8", "fields": {"nom_de_la_commune": "WALDWISSE", "libell_d_acheminement": "WALDWISSE", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57740"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de07862346c3651779fcc1c7ea1b57cf97714f34", "fields": {"nom_de_la_commune": "WIESVILLER", "libell_d_acheminement": "WIESVILLER", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57745"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec123c06ea5b9411b29259ca43f99c274fa82a3b", "fields": {"nom_de_la_commune": "WINTERSBOURG", "libell_d_acheminement": "WINTERSBOURG", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57747"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a58d5b20796ee616b0e72a8306faf809b9d4b1", "fields": {"nom_de_la_commune": "WITTRING", "libell_d_acheminement": "WITTRING", "code_postal": "57905", "coordonnees_gps": [49.0718152134, 7.12581121183], "code_commune_insee": "57748"}, "geometry": {"type": "Point", "coordinates": [7.12581121183, 49.0718152134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc14e06005756ad3774f629621676d2da6d43f93", "fields": {"nom_de_la_commune": "WOELFLING LES SARREGUEMINES", "libell_d_acheminement": "WOELFLING LES SARREGUEMINES", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57750"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fa4d55e466ca52d5f004b640f4c93ea085a4e5", "fields": {"nom_de_la_commune": "ARQUIAN", "libell_d_acheminement": "ARQUIAN", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58012"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc48e355aa28191f691405564b3f0318da4af62c", "fields": {"nom_de_la_commune": "AVREE", "libell_d_acheminement": "AVREE", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58019"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f415d85cf3ffca054c43f1f3a3c9e5b35f8a572e", "fields": {"nom_de_la_commune": "BALLERAY", "libell_d_acheminement": "BALLERAY", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58022"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "808f5c3e8ce03b3ce2e44f8e9ad5809d4b77101d", "fields": {"nom_de_la_commune": "BOUHY", "libell_d_acheminement": "BOUHY", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58036"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28b82a6805a59a467089ae408d8276a1888ef27", "fields": {"nom_de_la_commune": "BRASSY", "libell_d_acheminement": "BRASSY", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58037"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba2eedf4662de4474aa0ea1d84536fb8dc85437", "fields": {"nom_de_la_commune": "BREVES", "libell_d_acheminement": "BREVES", "code_postal": "58530", "coordonnees_gps": [47.4363082505, 3.60631182763], "code_commune_insee": "58039"}, "geometry": {"type": "Point", "coordinates": [3.60631182763, 47.4363082505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78642b2b0e1b99049a4dfe389cd9e9b25628c4f4", "fields": {"nom_de_la_commune": "BRINON SUR BEUVRON", "libell_d_acheminement": "BRINON SUR BEUVRON", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58041"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d617bc13a2441f0bdee520609df26372e805e9", "fields": {"nom_de_la_commune": "CERCY LA TOUR", "libell_d_acheminement": "CERCY LA TOUR", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58046"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05450421ecaced425a4eecab4737582e0c927d58", "fields": {"nom_de_la_commune": "CESSY LES BOIS", "libell_d_acheminement": "CESSY LES BOIS", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58048"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed49b5d09634bf2ba71cc655e488c79bce8ae08", "fields": {"nom_de_la_commune": "CHAMPVOUX", "libell_d_acheminement": "CHAMPVOUX", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58056"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459b71b1824f29be584d858bb555ffa9dcbfff83", "fields": {"nom_de_la_commune": "CHAULGNES", "libell_d_acheminement": "CHAULGNES", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58067"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a631dcf58e182a5b9db8a4c07a603f19e705c9", "fields": {"nom_de_la_commune": "CHAUMOT", "libell_d_acheminement": "CHAUMOT", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58069"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa863c97783db193d0db716c09195d5dd61fb57", "fields": {"nom_de_la_commune": "LA COLLANCELLE", "libell_d_acheminement": "LA COLLANCELLE", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58080"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17da993f9aacb4547f8718230c55f7d39b50602", "fields": {"nom_de_la_commune": "COLMERY", "libell_d_acheminement": "COLMERY", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58081"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "901301801c9fb4c32e9a87fdd1b34598cd919148", "fields": {"nom_de_la_commune": "COSNE COURS SUR LOIRE", "libell_d_acheminement": "COSNE COURS SUR LOIRE", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58086"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad99aa69040de42cbac59f1e0a05b4d472a6b75", "fields": {"nom_de_la_commune": "CRUX LA VILLE", "libell_d_acheminement": "CRUX LA VILLE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58092"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52db2f7b6296cc34a54779136ea84695e8f49ce8", "fields": {"nom_de_la_commune": "DIENNES AUBIGNY", "libell_d_acheminement": "DIENNES AUBIGNY", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58097"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e4b9b20e760c8682615824f55d0508ed9bf633", "fields": {"nom_de_la_commune": "DUN LES PLACES", "libell_d_acheminement": "DUN LES PLACES", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58106"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43b1b658e33e3243998585042fc123805c65744", "fields": {"nom_de_la_commune": "EMPURY", "libell_d_acheminement": "EMPURY", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58108"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a92e24f564b449935463ff51bbed62a0cec339", "fields": {"nom_de_la_commune": "FOURS", "libell_d_acheminement": "FOURS", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58118"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc061acba6a7042b1a7cfb401db18ae68e5d205", "fields": {"nom_de_la_commune": "GUERIGNY", "libell_d_acheminement": "GUERIGNY", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58131"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9baf0382558554b2702893d029a6970d15cf18", "fields": {"nom_de_la_commune": "GUIPY", "libell_d_acheminement": "GUIPY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58132"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "727e3144e33e41039a20ffe96ab853b0b410b242", "fields": {"nom_de_la_commune": "HERY", "libell_d_acheminement": "HERY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58133"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a01f1c7240afb9eae3851ded29b3c3246317d15a", "fields": {"nom_de_la_commune": "LANTY", "libell_d_acheminement": "LANTY", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58139"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bcb63c0729a9458f906531b0bffe938395125e", "fields": {"nom_de_la_commune": "LIMANTON", "libell_d_acheminement": "LIMANTON", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58142"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f25dcce040daeddf475351904989382fedb30c7", "fields": {"nom_de_la_commune": "LYS", "libell_d_acheminement": "LYS", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58150"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ff8062bf2b0c0b07ed60cdf7241df6e74b1ef7", "fields": {"nom_de_la_commune": "LA MACHINE", "libell_d_acheminement": "LA MACHINE", "code_postal": "58260", "coordonnees_gps": [46.9023530657, 3.46382245029], "code_commune_insee": "58151"}, "geometry": {"type": "Point", "coordinates": [3.46382245029, 46.9023530657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c51aefb1dd2e3e1bcad2fa300a6bdd3ed8c77c36", "fields": {"nom_de_la_commune": "MAGNY COURS", "libell_d_acheminement": "MAGNY COURS", "code_postal": "58470", "coordonnees_gps": [46.9060969897, 3.12154059247], "code_commune_insee": "58152"}, "geometry": {"type": "Point", "coordinates": [3.12154059247, 46.9060969897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffcfcf0bf780c4d687d36920657ab5951b5f07ff", "fields": {"nom_de_la_commune": "MENESTREAU", "libell_d_acheminement": "MENESTREAU", "code_postal": "58410", "coordonnees_gps": [47.4484285575, 3.26965518858], "code_commune_insee": "58162"}, "geometry": {"type": "Point", "coordinates": [3.26965518858, 47.4484285575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4573752d34f65d1a5d72b24cdfe280d4d59603", "fields": {"nom_de_la_commune": "MONCEAUX LE COMTE", "libell_d_acheminement": "MONCEAUX LE COMTE", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58170"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76eedbea2e74c30dbe8b4f093a44d466d51a301", "fields": {"nom_de_la_commune": "MOUSSY", "libell_d_acheminement": "MOUSSY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58184"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0650f1310ced9dd3d5d4ea3b2ce4aefbff05b4", "fields": {"nom_de_la_commune": "MOUX EN MORVAN", "libell_d_acheminement": "MOUX EN MORVAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58185"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5102444683ad8803bc1c598da3cc0cdff0594df1", "fields": {"nom_de_la_commune": "MURLIN", "libell_d_acheminement": "MURLIN", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58186"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdf6d783b6e3918bc3d18d9c6b4e505bac071ea", "fields": {"nom_de_la_commune": "OUROUER", "libell_d_acheminement": "OUROUER", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58204"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c29599230fa8fa118f2904e4bc16939329551d9", "fields": {"nom_de_la_commune": "POUGNY", "libell_d_acheminement": "POUGNY", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58213"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0dddd72237e2d7c64b21f8c3019cbe6b0119819", "fields": {"nom_de_la_commune": "POUILLY SUR LOIRE", "libell_d_acheminement": "POUILLY SUR LOIRE", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58215"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c19a9dae41931bf81bf37a36a81a26c1898b4b", "fields": {"nom_de_la_commune": "PREMERY", "libell_d_acheminement": "PREMERY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58218"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7944283848287b145fa2788732bbf5f35fc3a95", "fields": {"nom_de_la_commune": "RAVEAU", "libell_d_acheminement": "RAVEAU", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58220"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e57ef08b8d77e07a458c82775974314a516238", "fields": {"nom_de_la_commune": "ROUY", "libell_d_acheminement": "ROUY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58223"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fd61e1d525f9f3a251e0dd442d65cb4ec983b6f", "fields": {"nom_de_la_commune": "ST AMAND EN PUISAYE", "libell_d_acheminement": "ST AMAND EN PUISAYE", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58227"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700b0bf65f6e5dcf5cd6fd1b28e94315898e80d3", "fields": {"nom_de_la_commune": "ST AUBIN LES FORGES", "libell_d_acheminement": "ST AUBIN LES FORGES", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58231"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a35f4df954cef0c18fdcba1bd2741237e985f5", "fields": {"nom_de_la_commune": "ST BONNOT", "libell_d_acheminement": "ST BONNOT", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58234"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace5aacbfae9a87c8d554e34208b437c5af80b05", "fields": {"nom_de_la_commune": "ST BRISSON", "libell_d_acheminement": "ST BRISSON", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58235"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a43ad3dab8e47272c82dde9c8642a9dd69e3602", "fields": {"nom_de_la_commune": "ST HILAIRE EN MORVAN", "libell_d_acheminement": "ST HILAIRE EN MORVAN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58244"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc43654acbe9379eaa5393d096601fc31e7f6fcf", "fields": {"nom_de_la_commune": "ST HILAIRE FONTAINE", "libell_d_acheminement": "ST HILAIRE FONTAINE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58245"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03fe3511272d06401a859e701c3a481d19cbaedc", "fields": {"nom_de_la_commune": "ST HONORE LES BAINS", "libell_d_acheminement": "ST HONORE LES BAINS", "code_postal": "58360", "coordonnees_gps": [46.8973238863, 3.8600072839], "code_commune_insee": "58246"}, "geometry": {"type": "Point", "coordinates": [3.8600072839, 46.8973238863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bbb51b7530ae4b982e0b6f544e551b6e92d459", "fields": {"nom_de_la_commune": "ST LEGER DE FOUGERET", "libell_d_acheminement": "ST LEGER DE FOUGERET", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58249"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f2b45ea25271c35c550da079495aff51ef0f1f", "fields": {"nom_de_la_commune": "ST LEGER DES VIGNES", "libell_d_acheminement": "ST LEGER DES VIGNES", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58250"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446814a193376ea4110744d7667863b19f51bfa1", "fields": {"nom_de_la_commune": "ST MALO EN DONZIOIS", "libell_d_acheminement": "ST MALO EN DONZIOIS", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58252"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ab01f1236a2d4607a107b373162d97d288ccf8", "fields": {"nom_de_la_commune": "SAUVIGNY LES BOIS", "libell_d_acheminement": "SAUVIGNY LES BOIS", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58273"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ffcc08996513f844a7faa6aa36fb6aa406d9cc", "fields": {"code_postal": "58160", "code_commune_insee": "58273", "libell_d_acheminement": "SAUVIGNY LES BOIS", "ligne_5": "FORGES", "nom_de_la_commune": "SAUVIGNY LES BOIS", "coordonnees_gps": [46.9269219844, 3.29890842672]}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11c21024ff7a6555c8d5baf922ad891eadf0d85", "fields": {"nom_de_la_commune": "SAXI BOURDON", "libell_d_acheminement": "SAXI BOURDON", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58275"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bdbb9f52af4d87087c4e8715dc0ea5c16f2d67", "fields": {"nom_de_la_commune": "ABLANCOURT", "libell_d_acheminement": "ABLANCOURT", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51001"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c3fb8fa1fbbb88dda6bb63b5ecedbacd9931fa", "fields": {"nom_de_la_commune": "ST MARTIN D ABLOIS", "libell_d_acheminement": "ST MARTIN D ABLOIS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51002"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e4a9d47539064a912aa626cab024826f9eabad", "fields": {"nom_de_la_commune": "ANGLURE", "libell_d_acheminement": "ANGLURE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51009"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720e1861437d2a23498c341296e0b195e2f68393", "fields": {"nom_de_la_commune": "AULNAY SUR MARNE", "libell_d_acheminement": "AULNAY SUR MARNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51023"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551e7d06e5dda066bd55229000d341502606f3be", "fields": {"nom_de_la_commune": "AVENAY VAL D OR", "libell_d_acheminement": "AVENAY VAL D OR", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51028"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27c7d5864314c5c43c7ad746e301fcd6bedf67cf", "fields": {"nom_de_la_commune": "BASLIEUX SOUS CHATILLON", "libell_d_acheminement": "BASLIEUX SOUS CHATILLON", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51038"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2b0563c55a99ad61aa8d6d0b0d913fa846187b", "fields": {"nom_de_la_commune": "BEINE NAUROY", "libell_d_acheminement": "BEINE NAUROY", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51046"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66e593ccacc6ae8e7c0498790f83cd882f9c38f", "fields": {"nom_de_la_commune": "EMLINGEN", "libell_d_acheminement": "EMLINGEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68080"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3598498ce0d3524a7196b4f64eee18bd39648a26", "fields": {"nom_de_la_commune": "ETEIMBES", "libell_d_acheminement": "ETEIMBES", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68085"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b294a5c31c040284f9ead7f7de70a5437fb92151", "fields": {"nom_de_la_commune": "FERRETTE", "libell_d_acheminement": "FERRETTE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68090"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9106c21913e2f3252f16e844ce572060407432a0", "fields": {"nom_de_la_commune": "FRELAND", "libell_d_acheminement": "FRELAND", "code_postal": "68240", "coordonnees_gps": [48.1678355817, 7.21603176483], "code_commune_insee": "68097"}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d5651138d73c94f46c439cc9ecda3c1c4ac8040", "fields": {"nom_de_la_commune": "FROENINGEN", "libell_d_acheminement": "FROENINGEN", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68099"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab4eaab89ad08328eb3373e42786ac67829f579", "fields": {"nom_de_la_commune": "GEISPITZEN", "libell_d_acheminement": "GEISPITZEN", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68103"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862828cec0beed987c46e5834724f1e55ed164be", "fields": {"nom_de_la_commune": "GOLDBACH ALTENBACH", "libell_d_acheminement": "GOLDBACH ALTENBACH", "code_postal": "68760", "coordonnees_gps": [47.8611273336, 7.08860657983], "code_commune_insee": "68106"}, "geometry": {"type": "Point", "coordinates": [7.08860657983, 47.8611273336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f397bb092ea38cbef7a126988b4a8e704d9f06d", "fields": {"code_postal": "68760", "code_commune_insee": "68106", "libell_d_acheminement": "GOLDBACH ALTENBACH", "ligne_5": "ALTENBACH", "nom_de_la_commune": "GOLDBACH ALTENBACH", "coordonnees_gps": [47.8611273336, 7.08860657983]}, "geometry": {"type": "Point", "coordinates": [7.08860657983, 47.8611273336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e73401ebc14c3c53dedeacbc2c0a2f501a1c385", "fields": {"nom_de_la_commune": "GUEVENATTEN", "libell_d_acheminement": "GUEVENATTEN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68114"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93639a9510508677489f3b9de923daea767b6c0", "fields": {"nom_de_la_commune": "HAGENTHAL LE HAUT", "libell_d_acheminement": "HAGENTHAL LE HAUT", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68121"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4cc47281cc77173c07e9008385d3c543806944", "fields": {"nom_de_la_commune": "HEIDWILLER", "libell_d_acheminement": "HEIDWILLER", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68127"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946b87f346c76d18ab86c23f2a13d2f98d019f34", "fields": {"nom_de_la_commune": "HESINGUE", "libell_d_acheminement": "HESINGUE", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68135"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519c9601dfe93a80a80bc9640fe6759958df8140", "fields": {"nom_de_la_commune": "HIRTZFELDEN", "libell_d_acheminement": "HIRTZFELDEN", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68140"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844a078a41d54648d8b7af18e830074858fdc954", "fields": {"code_postal": "68320", "code_commune_insee": "68143", "libell_d_acheminement": "PORTE DU RIED", "ligne_5": "HOLTZWIHR", "nom_de_la_commune": "PORTE DU RIED", "coordonnees_gps": [48.0998914946, 7.49472150161]}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "355c5315d3c20fde3aa012568c1e71ffc1b6433e", "fields": {"code_postal": "68320", "code_commune_insee": "68143", "libell_d_acheminement": "PORTE DU RIED", "ligne_5": "RIEDWIHR", "nom_de_la_commune": "PORTE DU RIED", "coordonnees_gps": [48.0998914946, 7.49472150161]}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0082f83ca83ab30d089e5e1ae8d7d30c66904076", "fields": {"nom_de_la_commune": "HOMBOURG", "libell_d_acheminement": "HOMBOURG", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68144"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f568fb8fb44df6a2967a9e1fcec592f56ea2f50", "fields": {"code_postal": "68180", "code_commune_insee": "68145", "libell_d_acheminement": "HORBOURG WIHR", "ligne_5": "WIHR EN PLAINE", "nom_de_la_commune": "HORBOURG WIHR", "coordonnees_gps": [48.0830630727, 7.40347360738]}, "geometry": {"type": "Point", "coordinates": [7.40347360738, 48.0830630727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a979a10ad56ac524c7583c937a05b442aaae5eea", "fields": {"nom_de_la_commune": "HOUSSEN", "libell_d_acheminement": "HOUSSEN", "code_postal": "68125", "coordonnees_gps": [48.1316498521, 7.37525951288], "code_commune_insee": "68146"}, "geometry": {"type": "Point", "coordinates": [7.37525951288, 48.1316498521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d397bc450dd0943dab6be8a9b84c5e229867e7", "fields": {"nom_de_la_commune": "ISSENHEIM", "libell_d_acheminement": "ISSENHEIM", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68156"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b797d68b048879459f8ee9046616a10196ee2c1", "fields": {"nom_de_la_commune": "KAPPELEN", "libell_d_acheminement": "KAPPELEN", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68160"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6774212cb10dd52ef2b7c3d73530b82a5429203", "fields": {"code_postal": "68680", "code_commune_insee": "68163", "libell_d_acheminement": "KEMBS", "ligne_5": "KEMBS LOECHLE", "nom_de_la_commune": "KEMBS", "coordonnees_gps": [47.692052435, 7.4996914336]}, "geometry": {"type": "Point", "coordinates": [7.4996914336, 47.692052435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7882603dfde8e4db0f291d907cc206cdbfd378f", "fields": {"nom_de_la_commune": "KOESTLACH", "libell_d_acheminement": "KOESTLACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68169"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e8918ee7a0c53f5aed017a38053683215a1d2e", "fields": {"nom_de_la_commune": "LANDSER", "libell_d_acheminement": "LANDSER", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68174"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819cae4b029fb6438610ef5398f0e518f0e972fd", "fields": {"nom_de_la_commune": "LARGITZEN", "libell_d_acheminement": "LARGITZEN", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68176"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "230b865406e321b31910eb06dae7f40a2ed0c018", "fields": {"nom_de_la_commune": "LAUTENBACHZELL", "libell_d_acheminement": "LAUTENBACHZELL", "code_postal": "68610", "coordonnees_gps": [47.9413913563, 7.11100776725], "code_commune_insee": "68178"}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c039ec1d370f6edd6fe3e7b04eca9548c2da1fd6", "fields": {"nom_de_la_commune": "LIEBSDORF", "libell_d_acheminement": "LIEBSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68184"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b3b4a17c62ad23a384ea00f7b2a0bbcfd7d81e", "fields": {"nom_de_la_commune": "LINSDORF", "libell_d_acheminement": "LINSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68187"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d266d4eb79b4751af4b896c5205fd32f904016", "fields": {"nom_de_la_commune": "LUCELLE", "libell_d_acheminement": "LUCELLE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68190"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780afe571013b44aa710bf487aa9e9dd428844a9", "fields": {"code_postal": "68210", "code_commune_insee": "68192", "libell_d_acheminement": "VALDIEU LUTRAN", "ligne_5": "VALDIEU", "nom_de_la_commune": "VALDIEU LUTRAN", "coordonnees_gps": [47.6465535695, 7.10668724533]}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845a0bd1728181d53d2d7132fc6b10bc9ac79f27", "fields": {"nom_de_la_commune": "MICHELBACH LE HAUT", "libell_d_acheminement": "MICHELBACH LE HAUT", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68208"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bbd0c8237b155945a247145b414137ccd13d29", "fields": {"nom_de_la_commune": "MITTELWIHR", "libell_d_acheminement": "MITTELWIHR", "code_postal": "68630", "coordonnees_gps": [48.1423548591, 7.33228036662], "code_commune_insee": "68209"}, "geometry": {"type": "Point", "coordinates": [7.33228036662, 48.1423548591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9657473ad93b35e9d1c3786f8fd9669fc427af8", "fields": {"nom_de_la_commune": "MITTLACH", "libell_d_acheminement": "MITTLACH", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68210"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43bd7dbc94c1b330e687b3be4c73a3f8dcebfc95", "fields": {"nom_de_la_commune": "MOERNACH", "libell_d_acheminement": "MOERNACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68212"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba08736aad9c1a42c583ec174cbfea09f8783f6", "fields": {"nom_de_la_commune": "MONTREUX JEUNE", "libell_d_acheminement": "MONTREUX JEUNE", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68214"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0cca4b1bf7f6f2dc0fc6794814ee4ba6132209", "fields": {"nom_de_la_commune": "MONTREUX VIEUX", "libell_d_acheminement": "MONTREUX VIEUX", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68215"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ceb73d8e4a037136d6a08f2c199b45463b7262", "fields": {"code_postal": "68580", "code_commune_insee": "68216", "libell_d_acheminement": "MOOSLARGUE", "ligne_5": "NIEDERLARG", "nom_de_la_commune": "MOOSLARGUE", "coordonnees_gps": [47.5481438325, 7.17349023322]}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ffebe2c456ce6f58e1e19c931b10da416afb70", "fields": {"nom_de_la_commune": "MORSCHWILLER LE BAS", "libell_d_acheminement": "MORSCHWILLER LE BAS", "code_postal": "68790", "coordonnees_gps": [47.733791142, 7.26547349647], "code_commune_insee": "68218"}, "geometry": {"type": "Point", "coordinates": [7.26547349647, 47.733791142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d059e3ce694c43dfe72c78c7b65543123a89513", "fields": {"nom_de_la_commune": "MUHLBACH SUR MUNSTER", "libell_d_acheminement": "MUHLBACH SUR MUNSTER", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68223"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca072690b7b8e0ec407bc2188889a0a5f23385fc", "fields": {"nom_de_la_commune": "MUNCHHOUSE", "libell_d_acheminement": "MUNCHHOUSE", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68225"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13377140ebfb2babb1f802ecaa56316538042fd7", "fields": {"nom_de_la_commune": "NEUF BRISACH", "libell_d_acheminement": "NEUF BRISACH", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68231"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9382f85d48d079bd848bb512ae245944370db12d", "fields": {"code_postal": "68960", "code_commune_insee": "68240", "libell_d_acheminement": "ILLTAL", "ligne_5": "OBERDORF", "nom_de_la_commune": "ILLTAL", "coordonnees_gps": [47.5717118449, 7.32148674865]}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc448e89a70c64481dcd715429727031f871610", "fields": {"nom_de_la_commune": "PFETTERHOUSE", "libell_d_acheminement": "PFETTERHOUSE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68257"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff0a1f575d6cc51963bebed0466517a5b220405", "fields": {"nom_de_la_commune": "RAEDERSDORF", "libell_d_acheminement": "RAEDERSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68259"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80d3176070bb33e22937c85b97965a74cb3ea741", "fields": {"nom_de_la_commune": "RAMMERSMATT", "libell_d_acheminement": "RAMMERSMATT", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68261"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae46017908de4484f42efcc44e00fd1f0367dffc", "fields": {"nom_de_la_commune": "RANSPACH LE HAUT", "libell_d_acheminement": "RANSPACH LE HAUT", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68264"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd89200afcca645be1caa63c0b0c8f63de21a93", "fields": {"nom_de_la_commune": "RIESPACH", "libell_d_acheminement": "RIESPACH", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68273"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f95d6d03a99916c9bfdecc3f5446f5e3dbabc0f", "fields": {"nom_de_la_commune": "RODERN", "libell_d_acheminement": "RODERN", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68280"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52d8ab99d0a29e74c69f0b2612643133be67c6b4", "fields": {"nom_de_la_commune": "ROMAGNY", "libell_d_acheminement": "ROMAGNY", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68282"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188218954ecf111e063055853b9f663f2650905f", "fields": {"nom_de_la_commune": "ROSENAU", "libell_d_acheminement": "ROSENAU", "code_postal": "68128", "coordonnees_gps": [47.6245252213, 7.55534503962], "code_commune_insee": "68286"}, "geometry": {"type": "Point", "coordinates": [7.55534503962, 47.6245252213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c553409e5c3badbddee6ceaaa24bc2cc7e46651", "fields": {"nom_de_la_commune": "RUELISHEIM", "libell_d_acheminement": "RUELISHEIM", "code_postal": "68270", "coordonnees_gps": [47.8139348594, 7.32361311446], "code_commune_insee": "68289"}, "geometry": {"type": "Point", "coordinates": [7.32361311446, 47.8139348594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf640f5e6cb677d449e9ad36fbec7cf9f1bad71", "fields": {"nom_de_la_commune": "ST COSME", "libell_d_acheminement": "ST COSME", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68293"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6af85c7ed5eb520a9fd7065ee67a0a08a94b0d", "fields": {"nom_de_la_commune": "STE CROIX AUX MINES", "libell_d_acheminement": "STE CROIX AUX MINES", "code_postal": "68160", "coordonnees_gps": [48.2436580194, 7.18389066901], "code_commune_insee": "68294"}, "geometry": {"type": "Point", "coordinates": [7.18389066901, 48.2436580194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "399ebb5cb7985fb07f2c48b9621d1953fb690ca6", "fields": {"nom_de_la_commune": "STE CROIX EN PLAINE", "libell_d_acheminement": "STE CROIX EN PLAINE", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68295"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b0131937b29846c9c64e10b80cd2ed426cccea", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "68300", "coordonnees_gps": [47.6023175125, 7.54024522111], "code_commune_insee": "68297"}, "geometry": {"type": "Point", "coordinates": [7.54024522111, 47.6023175125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fd94c8788f65f5fadd195dad52c3711ea2f7cc", "fields": {"nom_de_la_commune": "SCHWOBEN", "libell_d_acheminement": "SCHWOBEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68303"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d665a831897c1f61bca04041b5933ca91f10835", "fields": {"nom_de_la_commune": "SICKERT", "libell_d_acheminement": "SICKERT", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68308"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c76297d85e93633c2f7511f161d6017a3b6a8fa", "fields": {"nom_de_la_commune": "SOULTZBACH LES BAINS", "libell_d_acheminement": "SOULTZBACH LES BAINS", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68316"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c36bc14634880e60356afafcdeab9bb1c0ce606", "fields": {"nom_de_la_commune": "TAGSDORF", "libell_d_acheminement": "TAGSDORF", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68333"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b987b808e5a0418762e455f19617f5326d942e47", "fields": {"nom_de_la_commune": "THANN", "libell_d_acheminement": "THANN", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68334"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f192e7a1a28288ba7fab09964bc157da8a386b8", "fields": {"nom_de_la_commune": "UFFHEIM", "libell_d_acheminement": "UFFHEIM", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68341"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b76249e515fe88dcac32ae7e00a43155df8af16", "fields": {"nom_de_la_commune": "UFFHOLTZ", "libell_d_acheminement": "UFFHOLTZ", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68342"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab4a47b12a7d6796a718c06666c9b226e425b453", "fields": {"nom_de_la_commune": "VILLAGE NEUF", "libell_d_acheminement": "VILLAGE NEUF", "code_postal": "68128", "coordonnees_gps": [47.6245252213, 7.55534503962], "code_commune_insee": "68349"}, "geometry": {"type": "Point", "coordinates": [7.55534503962, 47.6245252213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c756a7978345876ff68e48086cec42c94abad03b", "fields": {"nom_de_la_commune": "VOEGTLINSHOFFEN", "libell_d_acheminement": "VOEGTLINSHOFFEN", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68350"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6a2c896a7ea70427dabbdef956e322f1e80b60f", "fields": {"nom_de_la_commune": "WASSERBOURG", "libell_d_acheminement": "WASSERBOURG", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68358"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cefa48e25a22513824109b64047f695d243ca08", "fields": {"nom_de_la_commune": "WATTWILLER", "libell_d_acheminement": "WATTWILLER", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68359"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f41c1518a4efad6c2a1e05e6ec764c59bf1a26", "fields": {"nom_de_la_commune": "WETTOLSHEIM", "libell_d_acheminement": "WETTOLSHEIM", "code_postal": "68920", "coordonnees_gps": [48.0596682305, 7.28277674315], "code_commune_insee": "68365"}, "geometry": {"type": "Point", "coordinates": [7.28277674315, 48.0596682305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0e687d49a8198d6dc760c0652328aef78b9f4a", "fields": {"nom_de_la_commune": "WILLER SUR THUR", "libell_d_acheminement": "WILLER SUR THUR", "code_postal": "68760", "coordonnees_gps": [47.8611273336, 7.08860657983], "code_commune_insee": "68372"}, "geometry": {"type": "Point", "coordinates": [7.08860657983, 47.8611273336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e051f912b0d9bb43284e01255156c45c6b6441a", "fields": {"code_postal": "68124", "code_commune_insee": "68374", "libell_d_acheminement": "WINTZENHEIM", "ligne_5": "LOGELBACH", "nom_de_la_commune": "WINTZENHEIM", "coordonnees_gps": [48.063273489, 7.27115402765]}, "geometry": {"type": "Point", "coordinates": [7.27115402765, 48.063273489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d162e1044ed1c1981463a7264950ad4126284891", "fields": {"nom_de_la_commune": "WOLSCHWILLER", "libell_d_acheminement": "WOLSCHWILLER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68380"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c74c791a052663e844efb91a468fafbae88d192", "fields": {"nom_de_la_commune": "WUENHEIM", "libell_d_acheminement": "WUENHEIM", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68381"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9403b8d53e01fed7371c3c8c7a06f43e2a27234", "fields": {"nom_de_la_commune": "ZIMMERBACH", "libell_d_acheminement": "ZIMMERBACH", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68385"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff179774363a954a9c8e04724df7a8e03746692d", "fields": {"nom_de_la_commune": "AMPLEPUIS", "libell_d_acheminement": "AMPLEPUIS", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69006"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee5d113908d03f9444ae989dd8c497de0acf72f", "fields": {"nom_de_la_commune": "ANCY", "libell_d_acheminement": "ANCY", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69008"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71289853e8cc36c596c2ec0dcb097cab99e14ede", "fields": {"nom_de_la_commune": "ARNAS", "libell_d_acheminement": "ARNAS", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69013"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06e16b9bc2998b1c33b357d20771525bfefdda4", "fields": {"nom_de_la_commune": "BELLEVILLE", "libell_d_acheminement": "BELLEVILLE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69019"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e150babffa5c34babe59b76714270f50eaabad3", "fields": {"nom_de_la_commune": "BELMONT D AZERGUES", "libell_d_acheminement": "BELMONT D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69020"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ef37dcebbef8ce288535a21ba8978b2c0d33b4", "fields": {"nom_de_la_commune": "BIBOST", "libell_d_acheminement": "BIBOST", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69022"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0b5a55395b3e048c84a9dd562bb89cd0ca11fa", "fields": {"code_postal": "69690", "code_commune_insee": "69022", "libell_d_acheminement": "BIBOST", "ligne_5": "LA CALONNIERE", "nom_de_la_commune": "BIBOST", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93d788067bc53bd04513a27d93eb1907f0989c2", "fields": {"nom_de_la_commune": "LE BOIS D OINGT", "libell_d_acheminement": "LE BOIS D OINGT", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69024"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba953d99862e128fd1ca7048d97e959516f57d8", "fields": {"nom_de_la_commune": "CHAPONOST", "libell_d_acheminement": "CHAPONOST", "code_postal": "69630", "coordonnees_gps": [45.708648101, 4.7456828007], "code_commune_insee": "69043"}, "geometry": {"type": "Point", "coordinates": [4.7456828007, 45.708648101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937eef42188c35aa85005afca46d6337d09d761f", "fields": {"nom_de_la_commune": "CHASSELAY", "libell_d_acheminement": "CHASSELAY", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69049"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf2367a14e14c05b7f49983c64031fbde513adb", "fields": {"code_postal": "69440", "code_commune_insee": "69051", "libell_d_acheminement": "CHAUSSAN", "ligne_5": "LE RICHOUD", "nom_de_la_commune": "CHAUSSAN", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09178a9228b40478058c65cc91a1d9a029135241", "fields": {"nom_de_la_commune": "LES CHERES", "libell_d_acheminement": "LES CHERES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69055"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a2e11f261b5962d6aab2b944ec92c8168e4288", "fields": {"nom_de_la_commune": "CHIROUBLES", "libell_d_acheminement": "CHIROUBLES", "code_postal": "69115", "coordonnees_gps": [46.1852438194, 4.65593997989], "code_commune_insee": "69058"}, "geometry": {"type": "Point", "coordinates": [4.65593997989, 46.1852438194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48bee4d8a57399db3730c155de0b1004f4586d06", "fields": {"nom_de_la_commune": "COISE", "libell_d_acheminement": "COISE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69062"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25025ff0a32e1e1691e99ab9519c484bf8ad34c6", "fields": {"nom_de_la_commune": "COLLONGES AU MONT D OR", "libell_d_acheminement": "COLLONGES AU MONT D OR", "code_postal": "69660", "coordonnees_gps": [45.8215040365, 4.84320288902], "code_commune_insee": "69063"}, "geometry": {"type": "Point", "coordinates": [4.84320288902, 45.8215040365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1ad4bf5d75971e1168ccd5ab96229701d57b25", "fields": {"nom_de_la_commune": "CORCELLES EN BEAUJOLAIS", "libell_d_acheminement": "CORCELLES EN BEAUJOLAIS", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69065"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32859029b5d4e89f2674ec8780650db6ec8c088", "fields": {"code_postal": "69470", "code_commune_insee": "69066", "libell_d_acheminement": "COURS", "ligne_5": "LA VILLE", "nom_de_la_commune": "COURS", "coordonnees_gps": [46.1151639398, 4.3657661109]}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8432e9c3f2d99e960677835f5589214a8e9d93c", "fields": {"nom_de_la_commune": "CUBLIZE", "libell_d_acheminement": "CUBLIZE", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69070"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e22e25df372441c29d23bb38db76ef8274ee5ef", "fields": {"nom_de_la_commune": "DAREIZE", "libell_d_acheminement": "DAREIZE", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69073"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d48d416a10eb30d3c901a11759f4483e9a075fb", "fields": {"nom_de_la_commune": "FLEURIE", "libell_d_acheminement": "FLEURIE", "code_postal": "69820", "coordonnees_gps": [46.2082600685, 4.66076858585], "code_commune_insee": "69084"}, "geometry": {"type": "Point", "coordinates": [4.66076858585, 46.2082600685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c4b843117c14b5943fb887dcc2ad5e0ababc2b", "fields": {"nom_de_la_commune": "LES HALLES", "libell_d_acheminement": "LES HALLES", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69098"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c4e105c5a2668ef54c7c68d16cb5c726bc7994c", "fields": {"nom_de_la_commune": "HAUTE RIVOIRE", "libell_d_acheminement": "HAUTE RIVOIRE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69099"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdb3143326a0ac90a4bc36126816839390ec322", "fields": {"nom_de_la_commune": "JULIENAS", "libell_d_acheminement": "JULIENAS", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69103"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dcd921e259728b1d6ba4768a1d7ca3ccadce6f", "fields": {"nom_de_la_commune": "LANTIGNIE", "libell_d_acheminement": "LANTIGNIE", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69109"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b0e46dd35b3a7103f08101ce02e8bf7d2970a1", "fields": {"nom_de_la_commune": "LENTILLY", "libell_d_acheminement": "LENTILLY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69112"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03480d0637d64c2fe6adf1ac9ebe7978ee3c7191", "fields": {"nom_de_la_commune": "LETRA", "libell_d_acheminement": "LETRA", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69113"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9d8bc1edd29c555d9fa644523f5604af0542e9", "fields": {"nom_de_la_commune": "LOIRE SUR RHONE", "libell_d_acheminement": "LOIRE SUR RHONE", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69118"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ceab064eef74cf0086742e99c7bebbf48fdc9", "fields": {"nom_de_la_commune": "LUCENAY", "libell_d_acheminement": "LUCENAY", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69122"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d72cc410bce5de27a8f5e32220e335322ff253", "fields": {"nom_de_la_commune": "MARCY L ETOILE", "libell_d_acheminement": "MARCY L ETOILE", "code_postal": "69280", "coordonnees_gps": [45.7789755728, 4.70169351324], "code_commune_insee": "69127"}, "geometry": {"type": "Point", "coordinates": [4.70169351324, 45.7789755728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ec4f2880fcdd676e6dfda2459f22606b0249b6", "fields": {"nom_de_la_commune": "MONTARNAUD", "libell_d_acheminement": "MONTARNAUD", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34163"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19de280ff77c0d83cb2f945043ae310ec8244706", "fields": {"nom_de_la_commune": "MONTBAZIN", "libell_d_acheminement": "MONTBAZIN", "code_postal": "34560", "coordonnees_gps": [43.505994329, 3.63477988295], "code_commune_insee": "34165"}, "geometry": {"type": "Point", "coordinates": [3.63477988295, 43.505994329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfe3ce9d917d93412c1ceab10e070fc0ccd2fbac", "fields": {"nom_de_la_commune": "MONTBLANC", "libell_d_acheminement": "MONTBLANC", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34166"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d323ba504933b30be7dd18d6cff600eace41f3d0", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34000", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d324cdaa621e751657ff883df4ef3317905cc37", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34173"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0cb0c952cf6ae2fef5cc478c0d3c0067a5c9b91", "fields": {"nom_de_la_commune": "MURVIEL LES MONTPELLIER", "libell_d_acheminement": "MURVIEL LES MONTPELLIER", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34179"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024a1ff0e994b567fcb00614817fcfa81b5483e7", "fields": {"nom_de_la_commune": "PAILHES", "libell_d_acheminement": "PAILHES", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34191"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9da4a376efe9f850b86cdbbd2e0fc7519ebf7d", "fields": {"nom_de_la_commune": "PEGAIROLLES DE L ESCALETTE", "libell_d_acheminement": "PEGAIROLLES DE L ESCALETTE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34196"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f870e32b58018585853800e7cb57f0e9b3fb3dd8", "fields": {"nom_de_la_commune": "POILHES", "libell_d_acheminement": "POILHES", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34206"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8024ee0a7d18209e814030876d41868629debf2a", "fields": {"nom_de_la_commune": "PORTIRAGNES", "libell_d_acheminement": "PORTIRAGNES", "code_postal": "34420", "coordonnees_gps": [43.3127282598, 3.32015070092], "code_commune_insee": "34209"}, "geometry": {"type": "Point", "coordinates": [3.32015070092, 43.3127282598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67389ac2c8af34864135dc4e6515e05a1cedc6a9", "fields": {"nom_de_la_commune": "POUSSAN", "libell_d_acheminement": "POUSSAN", "code_postal": "34560", "coordonnees_gps": [43.505994329, 3.63477988295], "code_commune_insee": "34213"}, "geometry": {"type": "Point", "coordinates": [3.63477988295, 43.505994329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b71f1dc445f0f8ec72d8d78cc4e6b375cdbfe2", "fields": {"nom_de_la_commune": "PRADES LE LEZ", "libell_d_acheminement": "PRADES LE LEZ", "code_postal": "34730", "coordonnees_gps": [43.7084709884, 3.86709593283], "code_commune_insee": "34217"}, "geometry": {"type": "Point", "coordinates": [3.86709593283, 43.7084709884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9a7d92c81615fb616ea4a434e8a62614c15f6b", "fields": {"nom_de_la_commune": "PUISSALICON", "libell_d_acheminement": "PUISSALICON", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34224"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe8c18ee0ede631bcaa43617656b4029cf2a842", "fields": {"nom_de_la_commune": "PUISSERGUIER", "libell_d_acheminement": "PUISSERGUIER", "code_postal": "34620", "coordonnees_gps": [43.3769386377, 3.04669438058], "code_commune_insee": "34225"}, "geometry": {"type": "Point", "coordinates": [3.04669438058, 43.3769386377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df2af5e30f77ddb7cf7fb6a1f6d89a9b0ef77f3", "fields": {"nom_de_la_commune": "ROMIGUIERES", "libell_d_acheminement": "ROMIGUIERES", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34231"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7a58c622a4c77e2e7a182657eb44ad9b19edd8", "fields": {"nom_de_la_commune": "ST BAUZILLE DE PUTOIS", "libell_d_acheminement": "ST BAUZILLE DE PUTOIS", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34243"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19808a00e6fcc43404a468210666ab284d50e7d", "fields": {"nom_de_la_commune": "ST ETIENNE D ALBAGNAN", "libell_d_acheminement": "ST ETIENNE D ALBAGNAN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34250"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50edbe3d9c5caccc29dcef187590670e369d168e", "fields": {"nom_de_la_commune": "ST GENIES DES MOURGUES", "libell_d_acheminement": "ST GENIES DES MOURGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34256"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577d431b1b69c4fa1715f82f42b0e7e7a05b611a", "fields": {"nom_de_la_commune": "ST GERVAIS SUR MARE", "libell_d_acheminement": "ST GERVAIS SUR MARE", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34260"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb1eb1d8ee047968dd46c14641829faee19e399", "fields": {"nom_de_la_commune": "ST GUIRAUD", "libell_d_acheminement": "ST GUIRAUD", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34262"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53489fae0255f4a967dcf52df620ddeed9c03dd6", "fields": {"nom_de_la_commune": "ST HILAIRE DE BEAUVOIR", "libell_d_acheminement": "ST HILAIRE DE BEAUVOIR", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34263"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00036717fa5ee6854e3ca7b44681c8efe710e48a", "fields": {"nom_de_la_commune": "ST JEAN DE FOS", "libell_d_acheminement": "ST JEAN DE FOS", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34267"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cbeec2768894b979923984daf3dfdeb3d7ae81", "fields": {"nom_de_la_commune": "ST JEAN DE VEDAS", "libell_d_acheminement": "ST JEAN DE VEDAS", "code_postal": "34430", "coordonnees_gps": [43.5716336218, 3.83171118012], "code_commune_insee": "34270"}, "geometry": {"type": "Point", "coordinates": [3.83171118012, 43.5716336218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fdfce9765281c3a9b80bab8d4d65515dae8995", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34272"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f5ac1fbc3a3b7f79569fadf0473a508a9ab84b", "fields": {"nom_de_la_commune": "ST MARTIN DE L ARCON", "libell_d_acheminement": "ST MARTIN DE L ARCON", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34273"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b73bd58c3c38c405ca527497409dfc3abd5f35eb", "fields": {"nom_de_la_commune": "ST MATHIEU DE TREVIERS", "libell_d_acheminement": "ST MATHIEU DE TREVIERS", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34276"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42773ccecabbebcb5e8f640623d0e96d2f5ce8d3", "fields": {"nom_de_la_commune": "ST MAURICE NAVACELLES", "libell_d_acheminement": "ST MAURICE NAVACELLES", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34277"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81356adb53bfe148e508c9e1619ec6e51888ea49", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34278"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a2e28c0cbc3ca772730bfcf2e10963c24f47ae", "fields": {"nom_de_la_commune": "LA SALVETAT SUR AGOUT", "libell_d_acheminement": "LA SALVETAT SUR AGOUT", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34293"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109389d20c91658147d41522a040c473d3981db5", "fields": {"nom_de_la_commune": "SAUTEYRARGUES", "libell_d_acheminement": "SAUTEYRARGUES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34297"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7454b93f40fcb0d3999011cd26134439950a86e", "fields": {"nom_de_la_commune": "LA TOUR SUR ORB", "libell_d_acheminement": "LA TOUR SUR ORB", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34312"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b804c8d4498039988ad23370c4da25d98f269d9", "fields": {"nom_de_la_commune": "USCLAS DU BOSC", "libell_d_acheminement": "USCLAS DU BOSC", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34316"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4b305382e4cfaae482f435ff60a3f7b09d84be", "fields": {"nom_de_la_commune": "VALMASCLE", "libell_d_acheminement": "VALMASCLE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34323"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407cdb388ad59e0ec58712592a1b266fe3d4799a", "fields": {"nom_de_la_commune": "VALRAS PLAGE", "libell_d_acheminement": "VALRAS PLAGE", "code_postal": "34350", "coordonnees_gps": [43.2574196352, 3.23174001635], "code_commune_insee": "34324"}, "geometry": {"type": "Point", "coordinates": [3.23174001635, 43.2574196352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddddb849a8cd1ebbd3f1cae5bd4d95051e53c11", "fields": {"nom_de_la_commune": "VALROS", "libell_d_acheminement": "VALROS", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34325"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fac2e40e59518ff7b7ae8fe8d30593fabba41f", "fields": {"nom_de_la_commune": "VIAS", "libell_d_acheminement": "VIAS", "code_postal": "34450", "coordonnees_gps": [43.3129531331, 3.39921346505], "code_commune_insee": "34332"}, "geometry": {"type": "Point", "coordinates": [3.39921346505, 43.3129531331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb8262df4dbf2203344b3fb2ae37b7f0102394d", "fields": {"nom_de_la_commune": "VIEUSSAN", "libell_d_acheminement": "VIEUSSAN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34334"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec64ff4b865e565675820deaed082224435f0d9", "fields": {"nom_de_la_commune": "VILLENEUVE LES BEZIERS", "libell_d_acheminement": "VILLENEUVE LES BEZIERS", "code_postal": "34500", "coordonnees_gps": [43.3428885301, 3.23996566024], "code_commune_insee": "34336"}, "geometry": {"type": "Point", "coordinates": [3.23996566024, 43.3428885301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b5f47897c088c51b3572727b3adca1934e2d57", "fields": {"nom_de_la_commune": "VILLESPASSANS", "libell_d_acheminement": "VILLESPASSANS", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34339"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8fb0180fc8bed33e5bad01125d10a156e298aee", "fields": {"nom_de_la_commune": "VILLEVEYRAC", "libell_d_acheminement": "VILLEVEYRAC", "code_postal": "34560", "coordonnees_gps": [43.505994329, 3.63477988295], "code_commune_insee": "34341"}, "geometry": {"type": "Point", "coordinates": [3.63477988295, 43.505994329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8c23f47597b549cc1fd923ee978b5b772e741d", "fields": {"nom_de_la_commune": "ARBRISSEL", "libell_d_acheminement": "ARBRISSEL", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35005"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e2d761ec397331f49a3b3e000458b9c35b2341", "fields": {"nom_de_la_commune": "AVAILLES SUR SEICHE", "libell_d_acheminement": "AVAILLES SUR SEICHE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35008"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "858996fbd48d8b8c2386c9660b7f903396e9310b", "fields": {"nom_de_la_commune": "BAILLE", "libell_d_acheminement": "BAILLE", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35011"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1af69aa4d609fbb81ae6a7c669b518ecb551a79", "fields": {"nom_de_la_commune": "BAIN DE BRETAGNE", "libell_d_acheminement": "BAIN DE BRETAGNE", "code_postal": "35470", "coordonnees_gps": [47.8366270433, -1.70588612819], "code_commune_insee": "35012"}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8892ff5baa9c73f7ea9564f0e6a74b203160fe56", "fields": {"nom_de_la_commune": "BAINS SUR OUST", "libell_d_acheminement": "BAINS SUR OUST", "code_postal": "35600", "coordonnees_gps": [47.6975566329, -2.0582593409], "code_commune_insee": "35013"}, "geometry": {"type": "Point", "coordinates": [-2.0582593409, 47.6975566329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16cf05ac892c4c911b631deb19f8af172f966b0", "fields": {"nom_de_la_commune": "BAZOUGES LA PEROUSE", "libell_d_acheminement": "BAZOUGES LA PEROUSE", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35019"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dbcf25ae603bc87edd3431f171ef0997475165", "fields": {"nom_de_la_commune": "BEAUCE", "libell_d_acheminement": "BEAUCE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35021"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5059077da898fef05800633b4b7a7d1d857636", "fields": {"nom_de_la_commune": "BOVEL", "libell_d_acheminement": "BOVEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35035"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f240fad066e82dc029eb06459bc6107a56880a99", "fields": {"nom_de_la_commune": "BRUC SUR AFF", "libell_d_acheminement": "BRUC SUR AFF", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35045"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c19184adfbc312f98df6bf5342df07798cea92", "fields": {"nom_de_la_commune": "BRUZ", "libell_d_acheminement": "BRUZ", "code_postal": "35170", "coordonnees_gps": [48.0258206706, -1.74865477283], "code_commune_insee": "35047"}, "geometry": {"type": "Point", "coordinates": [-1.74865477283, 48.0258206706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde4a24a57b0fa9615fa1523593910c10ae1ba6c", "fields": {"nom_de_la_commune": "CESSON SEVIGNE", "libell_d_acheminement": "CESSON SEVIGNE", "code_postal": "35510", "coordonnees_gps": [48.1206278296, -1.59690492956], "code_commune_insee": "35051"}, "geometry": {"type": "Point", "coordinates": [-1.59690492956, 48.1206278296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157cc68b4789a2480026c23277dfb1959308a6a0", "fields": {"nom_de_la_commune": "CHANTEPIE", "libell_d_acheminement": "CHANTEPIE", "code_postal": "35135", "coordonnees_gps": [48.0823134568, -1.60390327167], "code_commune_insee": "35055"}, "geometry": {"type": "Point", "coordinates": [-1.60390327167, 48.0823134568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9894ba84a018c9d77ad2e999b7862dc95446c8", "fields": {"nom_de_la_commune": "LA CHAPELLE JANSON", "libell_d_acheminement": "LA CHAPELLE JANSON", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35062"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f10f7f4165f550822b00fdffc0e15bd6e2d5e39", "fields": {"nom_de_la_commune": "LA CHAPELLE THOUARAULT", "libell_d_acheminement": "LA CHAPELLE THOUARAULT", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35065"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b32c739ca277a6ba5f7b06887ab663a3e4379cb", "fields": {"nom_de_la_commune": "CINTRE", "libell_d_acheminement": "CINTRE", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35080"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b5da8d4dec8d6573b274858a1044980b628d9a", "fields": {"nom_de_la_commune": "COMBLESSAC", "libell_d_acheminement": "COMBLESSAC", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35084"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba80f833acd9b40abf966ec15256eb68cf1b9308", "fields": {"nom_de_la_commune": "CUGUEN", "libell_d_acheminement": "CUGUEN", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35092"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8ed1d0e9c6c013f4403424d1977ac9286030b0", "fields": {"nom_de_la_commune": "DOMALAIN", "libell_d_acheminement": "DOMALAIN", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35097"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a4b07bd1b6df88f3a4d1b4f83ab8c50b2d3470", "fields": {"nom_de_la_commune": "FORGES LA FORET", "libell_d_acheminement": "FORGES LA FORET", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35114"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12207fbbce470d5ba013b43f46b90f27a7507fcc", "fields": {"nom_de_la_commune": "GENNES SUR SEICHE", "libell_d_acheminement": "GENNES SUR SEICHE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35119"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538d22b985fd56fa6996d65423183b7ea23c5bed", "fields": {"nom_de_la_commune": "GUICHEN", "libell_d_acheminement": "GUICHEN", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35126"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4360c4c301b0a33cfdec481416fe7ea2b4d7d2f6", "fields": {"code_postal": "35630", "code_commune_insee": "35130", "libell_d_acheminement": "HEDE BAZOUGES", "ligne_5": "BAZOUGES SOUS HEDE", "nom_de_la_commune": "HEDE BAZOUGES", "coordonnees_gps": [48.2776802001, -1.81257635657]}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951eaca461a43607e0f1c63824c9d5d0f3f06409", "fields": {"nom_de_la_commune": "LAILLE", "libell_d_acheminement": "LAILLE", "code_postal": "35890", "coordonnees_gps": [47.9478686946, -1.71764789932], "code_commune_insee": "35139"}, "geometry": {"type": "Point", "coordinates": [-1.71764789932, 47.9478686946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc780b970b4bf44b4c22ab3257f0aa5d7905d7f", "fields": {"nom_de_la_commune": "LANDAVRAN", "libell_d_acheminement": "LANDAVRAN", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35141"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6594acff5893cc623b9b3152193c980ac8541945", "fields": {"nom_de_la_commune": "LANDEAN", "libell_d_acheminement": "LANDEAN", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35142"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bffffaf1eb69cb3a74b902a5c6a7eb763d5fe34c", "fields": {"nom_de_la_commune": "LECOUSSE", "libell_d_acheminement": "LECOUSSE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35150"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a595b77977fd6e99a96353b08b1d253265a8cbc", "fields": {"nom_de_la_commune": "LIFFRE", "libell_d_acheminement": "LIFFRE", "code_postal": "35340", "coordonnees_gps": [48.199281564, -1.48595491187], "code_commune_insee": "35152"}, "geometry": {"type": "Point", "coordinates": [-1.48595491187, 48.199281564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b41e3cc0312990db1d4cbbd721c2b088fec271", "fields": {"nom_de_la_commune": "LE LOROUX", "libell_d_acheminement": "LE LOROUX", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35157"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc2d56241e642bf9b258ae85ab673507437a690", "fields": {"nom_de_la_commune": "MAXENT", "libell_d_acheminement": "MAXENT", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35169"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2f95ac00a6bf459ee1b96132dad919eb817cb2", "fields": {"nom_de_la_commune": "MONTGERMONT", "libell_d_acheminement": "MONTGERMONT", "code_postal": "35760", "coordonnees_gps": [48.1574437046, -1.69175560497], "code_commune_insee": "35189"}, "geometry": {"type": "Point", "coordinates": [-1.69175560497, 48.1574437046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ddbc13d5cd22d3c2f1f759d752bcb90eff21d8e", "fields": {"nom_de_la_commune": "MONTREUIL LE GAST", "libell_d_acheminement": "MONTREUIL LE GAST", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35193"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49307e89ded7c013449bbca4291f9b898b4655c9", "fields": {"nom_de_la_commune": "MOUAZE", "libell_d_acheminement": "MOUAZE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35197"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd436aa8118fe9685b79a83f8a6e651a194bb4e2", "fields": {"nom_de_la_commune": "MUEL", "libell_d_acheminement": "MUEL", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35201"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697f4498b7ba28202065cbf5f22deba6ba0bd838", "fields": {"nom_de_la_commune": "NOYAL SOUS BAZOUGES", "libell_d_acheminement": "NOYAL SOUS BAZOUGES", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35205"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ebd9cddf9cb2ce6c5a4f02b68ce37c8e81fcd2", "fields": {"nom_de_la_commune": "NOYAL CHATILLON SUR SEICHE", "libell_d_acheminement": "NOYAL CHATILLON SUR SEICHE", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35206"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a829da9dc727dc2c81bb84573f9a10c39e84fc8", "fields": {"nom_de_la_commune": "PANCE", "libell_d_acheminement": "PANCE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35212"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6551f131ad88d6a89a8eff98cf27acb304a126", "fields": {"nom_de_la_commune": "PARTHENAY DE BRETAGNE", "libell_d_acheminement": "PARTHENAY DE BRETAGNE", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35216"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ab9770675f5ea6ea4464746713c69187001fd5", "fields": {"nom_de_la_commune": "LE PETIT FOUGERAY", "libell_d_acheminement": "LE PETIT FOUGERAY", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35218"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c705999b1bb1482640c0b639b06832763f9adb", "fields": {"nom_de_la_commune": "PIRE SUR SEICHE", "libell_d_acheminement": "PIRE SUR SEICHE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35220"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c229879c43b0f979d17379ff17bbdaa126cadb7", "fields": {"nom_de_la_commune": "PLESDER", "libell_d_acheminement": "PLESDER", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35225"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390dfe167e4e44832065ed65f440a9cf80fd5d11", "fields": {"nom_de_la_commune": "QUEBRIAC", "libell_d_acheminement": "QUEBRIAC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35233"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ea3fd71feed07eb8821a3d615e7044547da615", "fields": {"nom_de_la_commune": "RENNES", "libell_d_acheminement": "RENNES", "code_postal": "35700", "coordonnees_gps": [48.1116364246, -1.6816378334], "code_commune_insee": "35238"}, "geometry": {"type": "Point", "coordinates": [-1.6816378334, 48.1116364246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "475229b67ce1b22586310888b96931ce520e9079", "fields": {"nom_de_la_commune": "STE ANNE SUR VILAINE", "libell_d_acheminement": "STE ANNE SUR VILAINE", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35249"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ecabf86b34ff1290046097e42954d14a577126", "fields": {"nom_de_la_commune": "ST AUBIN DES LANDES", "libell_d_acheminement": "ST AUBIN DES LANDES", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35252"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886de832c891b6c5b737f4c514c48ef008b79574", "fields": {"nom_de_la_commune": "ST AUBIN DU PAVAIL", "libell_d_acheminement": "ST AUBIN DU PAVAIL", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35254"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2cb0caa0393b8a99f388c4a33d10fb294bc41f5", "fields": {"nom_de_la_commune": "ST BRIEUC DES IFFS", "libell_d_acheminement": "ST BRIEUC DES IFFS", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35258"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e00d1dcc6318588547799f0e7b474e4c803717e0", "fields": {"nom_de_la_commune": "ST BROLADRE", "libell_d_acheminement": "ST BROLADRE", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35259"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc21baebaa8197c6d66afc836883eabec24f6e5f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DES BOIS", "libell_d_acheminement": "ST CHRISTOPHE DES BOIS", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35260"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "881c077927e19d220594026adde02229a2a48283", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "35134", "coordonnees_gps": [47.8649465156, -1.44024199912], "code_commune_insee": "35262"}, "geometry": {"type": "Point", "coordinates": [-1.44024199912, 47.8649465156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2605251309a2c00f80de65e75eb251188097d0", "fields": {"nom_de_la_commune": "ST COULOMB", "libell_d_acheminement": "ST COULOMB", "code_postal": "35350", "coordonnees_gps": [48.645566435, -1.90776582617], "code_commune_insee": "35263"}, "geometry": {"type": "Point", "coordinates": [-1.90776582617, 48.645566435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f9b2935b9efe94f419aa4bf9ec246a210cc295", "fields": {"nom_de_la_commune": "ST ERBLON", "libell_d_acheminement": "ST ERBLON", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35266"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d284b380a5c4e99759d6b0f874d21d310c7d2f6", "fields": {"nom_de_la_commune": "ST JEAN SUR COUESNON", "libell_d_acheminement": "ST JEAN SUR COUESNON", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35282"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea98a5b2f46d96c42bc8f3c325fd117a423ee0e", "fields": {"nom_de_la_commune": "ST LEGER DES PRES", "libell_d_acheminement": "ST LEGER DES PRES", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35286"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e622d6039f0f50ae30956f4f0c82d64db43c997", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "CHATEAU MALO", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca78fc971e22b9a1b6d15685b1333797783c903", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "ST SERVAN SUR MER", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2042b1a9dd727ab93b9556f0abc72452b8ce58b", "fields": {"nom_de_la_commune": "ST MARC LE BLANC", "libell_d_acheminement": "ST MARC LE BLANC", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35292"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d17ae2cdac5800ab69d4f66b0bfa823b62ab3f", "fields": {"nom_de_la_commune": "ST MARC SUR COUESNON", "libell_d_acheminement": "ST MARC SUR COUESNON", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35293"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9185d496ea1754a78160782a26e6291c98b718", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "35600", "coordonnees_gps": [47.6975566329, -2.0582593409], "code_commune_insee": "35294"}, "geometry": {"type": "Point", "coordinates": [-2.0582593409, 47.6975566329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d862c01ca1935bdb93a86b9ca5e3ce72ff4223", "fields": {"nom_de_la_commune": "ST OUEN DES ALLEUX", "libell_d_acheminement": "ST OUEN DES ALLEUX", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35304"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63f62f3ce330c9ee39b1c4825d1a8db21ff88aa3", "fields": {"nom_de_la_commune": "ST REMY DU PLAIN", "libell_d_acheminement": "ST REMY DU PLAIN", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35309"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f4bfbea421b120d40f0ff17744baafcb13a5db", "fields": {"code_postal": "61140", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "BEAULANDAIS", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5525924741, -0.471509032545]}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7439cb15a9c41e8b309ac091f0f0db6895d539", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "LA BAROCHE SOUS LUCE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc367e21a4d9079b9e9c9c6a8249294fe57702e", "fields": {"nom_de_la_commune": "LA LANDE DE GOULT", "libell_d_acheminement": "LA LANDE DE GOULT", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61216"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e0856bb734eb4fc5cf251ea03529550155caad", "fields": {"nom_de_la_commune": "LOISAIL", "libell_d_acheminement": "LOISAIL", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61229"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e23452877672d1a8475eee6af91a8cba51d209", "fields": {"nom_de_la_commune": "LONRAI", "libell_d_acheminement": "LONRAI", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61234"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "938551919518c0e927c71bbccc1398a09a3be2e2", "fields": {"nom_de_la_commune": "LOUVIERES EN AUGE", "libell_d_acheminement": "LOUVIERES EN AUGE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61238"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fef922099009472aca6109fafaa6d32eeff36ca", "fields": {"nom_de_la_commune": "MAGNY LE DESERT", "libell_d_acheminement": "MAGNY LE DESERT", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61243"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aaa7aa422c9e39474f1f5bd547443a2f1222469", "fields": {"nom_de_la_commune": "MAUVES SUR HUISNE", "libell_d_acheminement": "MAUVES SUR HUISNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61255"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "917f8dccce8ffcf6ab44a22c2d1b78b0bab37b4b", "fields": {"nom_de_la_commune": "MEDAVY", "libell_d_acheminement": "MEDAVY", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61256"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0be8a210e24c8d233eecb267c187def1edefc32", "fields": {"nom_de_la_commune": "MENIL VIN", "libell_d_acheminement": "MENIL VIN", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61273"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "532b6d04456822ff09754a34a35ea5fde808bec6", "fields": {"nom_de_la_commune": "LES MENUS", "libell_d_acheminement": "LES MENUS", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61274"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900ee243bf17ab7eff9440a6dea1ec6362fdc8b7", "fields": {"nom_de_la_commune": "MIEUXCE", "libell_d_acheminement": "MIEUXCE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61279"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f022c76e25c2356c9410c50a501bb627996883d9", "fields": {"nom_de_la_commune": "MONTCHEVREL", "libell_d_acheminement": "MONTCHEVREL", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61284"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a67b970cd88513b9a432fb027acfc4a89592ee9", "fields": {"nom_de_la_commune": "MONTGAUDRY", "libell_d_acheminement": "MONTGAUDRY", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61286"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf780faad358975f740af09d1e7dfc6988806305", "fields": {"code_postal": "61800", "code_commune_insee": "61292", "libell_d_acheminement": "MONTSECRET CLAIREFOUGERE", "ligne_5": "CLAIREFOUGERE", "nom_de_la_commune": "MONTSECRET CLAIREFOUGERE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab47e11ceca1f91c6ef37fa0c31fb8a2d7e58e9", "fields": {"nom_de_la_commune": "NEAUPHE SUR DIVE", "libell_d_acheminement": "NEAUPHE SUR DIVE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61302"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bac3392d9b43e9c7e1323900ec8dd381c4b668", "fields": {"nom_de_la_commune": "NEUVILLE SUR TOUQUES", "libell_d_acheminement": "NEUVILLE SUR TOUQUES", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61307"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b742e50a03ff9df508772e7c2257107d1fcf1ec0", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "PREAUX DU PERCHE", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca76425bb0a090c1a115f92aaa4edb964a56afc", "fields": {"nom_de_la_commune": "NORMANDEL", "libell_d_acheminement": "NORMANDEL", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61311"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f61ea8c94b7434d99fbe24a2a480ac2f450a1a", "fields": {"nom_de_la_commune": "LE PAS ST L HOMER", "libell_d_acheminement": "LE PAS ST L HOMER", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61323"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbf965bf1ecff3a6a95d95ddc36fef747600c81", "fields": {"nom_de_la_commune": "PLANCHES", "libell_d_acheminement": "PLANCHES", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61330"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9a08b9fa2f2430beb76576eecc5502d0e23e54", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "MENIL JEAN", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eededf00adf1d97bc4f51fa24b2da0732c61af89", "fields": {"code_postal": "61250", "code_commune_insee": "61341", "libell_d_acheminement": "ECOUVES", "ligne_5": "FORGES", "nom_de_la_commune": "ECOUVES", "coordonnees_gps": [48.4708532437, 0.079807061748]}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bb1f0009f1b1430c952fc87fc950efb59cd9f7", "fields": {"code_postal": "61250", "code_commune_insee": "61341", "libell_d_acheminement": "ECOUVES", "ligne_5": "VINGT HANAPS", "nom_de_la_commune": "ECOUVES", "coordonnees_gps": [48.4708532437, 0.079807061748]}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba21902de2a1828ab26b48070b037730ddbc821d", "fields": {"nom_de_la_commune": "RONAI", "libell_d_acheminement": "RONAI", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61352"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0b298068a82bf55c9eb160cf16645b35fcb5df", "fields": {"nom_de_la_commune": "ST AUBIN DE COURTERAIE", "libell_d_acheminement": "ST AUBIN DE COURTERAIE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61367"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b92daf095cead15a13b592289d82da74823064", "fields": {"nom_de_la_commune": "ST BOMER LES FORGES", "libell_d_acheminement": "ST BOMER LES FORGES", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61369"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33c2667f9cd031113952e9d0d56c2074cd99a5c", "fields": {"nom_de_la_commune": "BOISCHAMPRE", "libell_d_acheminement": "BOISCHAMPRE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61375"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dab1f8cd656d1697f0f393783366b96351a8a1c", "fields": {"code_postal": "61570", "code_commune_insee": "61375", "libell_d_acheminement": "BOISCHAMPRE", "ligne_5": "MARCEI", "nom_de_la_commune": "BOISCHAMPRE", "coordonnees_gps": [48.6574688891, 0.0273677647898]}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9053c72519c30c54673c1c8c531d627e04299c5b", "fields": {"nom_de_la_commune": "ST DENIS SUR HUISNE", "libell_d_acheminement": "ST DENIS SUR HUISNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61381"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8c7cc85aa6c3998373d783e875be54dfccace0", "fields": {"nom_de_la_commune": "ST EVROULT DE MONTFORT", "libell_d_acheminement": "ST EVROULT DE MONTFORT", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61385"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e7474e5a0240c019225871c3cd2d6ae9c62038c", "fields": {"nom_de_la_commune": "ST EVROULT NOTRE DAME DU BOIS", "libell_d_acheminement": "ST EVROULT NOTRE DAME DU BOIS", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61386"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e0778662b62a5bdb88d2ab30332d5346223533f", "fields": {"nom_de_la_commune": "ST FULGENT DES ORMES", "libell_d_acheminement": "ST FULGENT DES ORMES", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61388"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a12ad9c4b5ab711bed802bb8d5508658dfc2f8", "fields": {"nom_de_la_commune": "ST GERMAIN DE CLAIREFEUILLE", "libell_d_acheminement": "ST GERMAIN DE CLAIREFEUILLE", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61393"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761ede29450b8b243a6232305f1b17403255fbda", "fields": {"nom_de_la_commune": "ST GERMAIN DE LA COUDRE", "libell_d_acheminement": "ST GERMAIN DE LA COUDRE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61394"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c24383511ce685176c1989490498c4330e29d8d8", "fields": {"nom_de_la_commune": "ST GERMAIN DES GROIS", "libell_d_acheminement": "ST GERMAIN DES GROIS", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61395"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ddf362954049a9a2d6d69b1c75fb685f468751", "fields": {"nom_de_la_commune": "ST GERVAIS DU PERRON", "libell_d_acheminement": "ST GERVAIS DU PERRON", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61400"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c930ec93869258d278ba25303d7913e044502a75", "fields": {"nom_de_la_commune": "ST GILLES DES MARAIS", "libell_d_acheminement": "ST GILLES DES MARAIS", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61401"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f0c1072a2c7525367ca19facb064f0503f7a88", "fields": {"nom_de_la_commune": "ST HILAIRE DE BRIOUZE", "libell_d_acheminement": "ST HILAIRE DE BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61402"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6647d03058604493eb6e7d1d1903c7067d8dd970", "fields": {"nom_de_la_commune": "ST JULIEN SUR SARTHE", "libell_d_acheminement": "ST JULIEN SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61412"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c1d8f578e3d23ace46b4d7ee85361babab8f4d", "fields": {"nom_de_la_commune": "ST LANGIS LES MORTAGNE", "libell_d_acheminement": "ST LANGIS LES MORTAGNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61414"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88e1edd1caa3b4157d1ad12a1af9a0ac3b3654a", "fields": {"nom_de_la_commune": "ST MARTIN D ECUBLEI", "libell_d_acheminement": "ST MARTIN D ECUBLEI", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61423"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ad75e038378717e4499bca9a6841c874d70623", "fields": {"nom_de_la_commune": "ST MAURICE LES CHARENCEY", "libell_d_acheminement": "ST MAURICE LES CHARENCEY", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61429"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72eb2199381103df4fbbef7a525abedc7e771fad", "fields": {"nom_de_la_commune": "ST NICOLAS DES BOIS", "libell_d_acheminement": "ST NICOLAS DES BOIS", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61433"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4060e02fd360a43a2015748b6619652944d697", "fields": {"nom_de_la_commune": "ST OUEN DE LA COUR", "libell_d_acheminement": "ST OUEN DE LA COUR", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61437"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af869fd43d142d8c2fd351e6e5c238b2df960cc", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61443"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd42c43c3605ccfae24970d520acfd1271d4762c", "fields": {"nom_de_la_commune": "ST PHILBERT SUR ORNE", "libell_d_acheminement": "ST PHILBERT SUR ORNE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61444"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdb81001ac02ce0599336653c7ead659a085063", "fields": {"nom_de_la_commune": "ST QUENTIN LES CHARDONNETS", "libell_d_acheminement": "ST QUENTIN LES CHARDONNETS", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61451"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01d11cf268cd2c1f648d528ed5d0b472e8591eb7", "fields": {"nom_de_la_commune": "ST ROCH SUR EGRENNE", "libell_d_acheminement": "ST ROCH SUR EGRENNE", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61452"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b1dde6e48fba5d6bc7f41c1fa46020678a9d49d", "fields": {"code_postal": "61120", "code_commune_insee": "61460", "libell_d_acheminement": "SAP EN AUGE", "ligne_5": "ORVILLE", "nom_de_la_commune": "SAP EN AUGE", "coordonnees_gps": [48.8979629292, 0.218290083963]}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ac1fdc92701071bbadcf995d8bae95bb19f6b7", "fields": {"nom_de_la_commune": "SARCEAUX", "libell_d_acheminement": "SARCEAUX", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61462"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a21e179bf5def712e46987271b909f96e86df0c3", "fields": {"nom_de_la_commune": "SERIGNY", "libell_d_acheminement": "SERIGNY", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61471"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fbf62fde915586d8886233ec2e8113d351ba1a", "fields": {"nom_de_la_commune": "SEVIGNY", "libell_d_acheminement": "SEVIGNY", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61472"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516b2cc948ee706f8032fe9e5f78d988395faa95", "fields": {"nom_de_la_commune": "SURVIE", "libell_d_acheminement": "SURVIE", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61477"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "594e031393fc5bec5ebb5edec7aeed1ea6fdd920", "fields": {"nom_de_la_commune": "BAGNOLES DE L ORNE NORMANDIE", "libell_d_acheminement": "BAGNOLES DE L ORNE NORMANDIE", "code_postal": "61140", "coordonnees_gps": [48.5525924741, -0.471509032545], "code_commune_insee": "61483"}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b563df2c1a9b9cd3b254c65eaeb3f219bdaf90e", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "LA ROUGE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfb6a7d21e1fed704516ad2c281277645598572", "fields": {"nom_de_la_commune": "TICHEVILLE", "libell_d_acheminement": "TICHEVILLE", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61485"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff3c6c4cd5fc7e4ebaca6f540d976e11a8bed6d", "fields": {"nom_de_la_commune": "TINCHEBRAY BOCAGE", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61486"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235292d64223c4cca9922a5bc1c085300545c2f6", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "FRENES", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c50d4b3075b6aa9d4d40cddf88e641556d92d1c", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "ST CORNIER DES LANDES", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7704eefcdb2c08ad981d7911296186f96e54416a", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "YVRANDES", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b556e3033752e6946d76e023edd11dca065d9fc", "fields": {"nom_de_la_commune": "TOURNAI SUR DIVE", "libell_d_acheminement": "TOURNAI SUR DIVE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61490"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a574e46416e6f1f2b169585517022045f217708e", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "CHAMPS", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d883f506cf6099634b540564dbc5b3379399281", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "RANDONNAI", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7a627766d05440e5a900215f89b07f997d8769", "fields": {"nom_de_la_commune": "VAUNOISE", "libell_d_acheminement": "VAUNOISE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61498"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59134482b3dd94a4dd1f13c5ab87f49fd13b3a1d", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61501"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aafcaeeb55554ab47e7dc7cbf9749c30309b206", "fields": {"nom_de_la_commune": "ACQUIN WESTBECOURT", "libell_d_acheminement": "ACQUIN WESTBECOURT", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62008"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d080701ff719dea9bc96e6a66ec35d25072027", "fields": {"code_postal": "62380", "code_commune_insee": "62008", "libell_d_acheminement": "ACQUIN WESTBECOURT", "ligne_5": "WESTBECOURT", "nom_de_la_commune": "ACQUIN WESTBECOURT", "coordonnees_gps": [50.6840669393, 2.07902625888]}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61be867d0f355160b2460bfd362bad69f0b793fb", "fields": {"nom_de_la_commune": "ADINFER", "libell_d_acheminement": "ADINFER", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62009"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dba524b06c52425fceeb5788a9d25c02f949b35", "fields": {"nom_de_la_commune": "ALINCTHUN", "libell_d_acheminement": "ALINCTHUN", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62022"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a27e22716ce65ce3684e6dbc627ea8e2bc994fbc", "fields": {"nom_de_la_commune": "ANNAY", "libell_d_acheminement": "ANNAY", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62033"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5da08c276e11660987f436f22b270e9494afcc", "fields": {"code_postal": "62610", "code_commune_insee": "62038", "libell_d_acheminement": "ARDRES", "ligne_5": "BOIS EN ARDRES", "nom_de_la_commune": "ARDRES", "coordonnees_gps": [50.8468659582, 1.97558955191]}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9a367594a4f2447e1f10ee2b570780f9370286", "fields": {"nom_de_la_commune": "AUCHEL", "libell_d_acheminement": "AUCHEL", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62048"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f460d9035fbe35412c0b5c52b08a7b6704d386d1", "fields": {"nom_de_la_commune": "AUCHY AU BOIS", "libell_d_acheminement": "AUCHY AU BOIS", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62049"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad68d73f988bc65a11e9049241bd9d81409c43d1", "fields": {"nom_de_la_commune": "AUDEMBERT", "libell_d_acheminement": "AUDEMBERT", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62052"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed4159fb36867fa0d111baa6c4eece5f27a0b8d", "fields": {"nom_de_la_commune": "AUDINCTHUN", "libell_d_acheminement": "AUDINCTHUN", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62053"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07cbb4508b587b90afb6165ff278ae56c42779bb", "fields": {"nom_de_la_commune": "AUMERVAL", "libell_d_acheminement": "AUMERVAL", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62058"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf18db24a600ec9d4a532241d92354b5a755515", "fields": {"nom_de_la_commune": "AVERDOINGT", "libell_d_acheminement": "AVERDOINGT", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62061"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c63d7112d023ed9858a2a90cdb1c6d236f8603e1", "fields": {"nom_de_la_commune": "AVESNES", "libell_d_acheminement": "AVESNES", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62062"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e44900735f337f770bb8e58a0885bbad43a17e", "fields": {"nom_de_la_commune": "AZINCOURT", "libell_d_acheminement": "AZINCOURT", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62069"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9c02e5e03caa0ed399d6a768cdc2397819f5bf", "fields": {"nom_de_la_commune": "BAILLEUL LES PERNES", "libell_d_acheminement": "BAILLEUL LES PERNES", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62071"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3899c41d52c3e8fb2764db807f204bc697182d9f", "fields": {"nom_de_la_commune": "BARASTRE", "libell_d_acheminement": "BARASTRE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62082"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9831592ae52c1cb67fdd6ce606062654e67e661f", "fields": {"nom_de_la_commune": "BARLIN", "libell_d_acheminement": "BARLIN", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62083"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641468a5c84392795c5d0f3a1bc1ddd4ecc402b8", "fields": {"nom_de_la_commune": "BASSEUX", "libell_d_acheminement": "BASSEUX", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62085"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e8fceb232d1525eb998fff03c20c5c55102227", "fields": {"nom_de_la_commune": "BAYENGHEM LES SENINGHEM", "libell_d_acheminement": "BAYENGHEM LES SENINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62088"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4d27d0fe7153ca0924b922fb8405be6e400879", "fields": {"nom_de_la_commune": "BAZINGHEN", "libell_d_acheminement": "BAZINGHEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62089"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8f12f72cae5156abdb876bc3be6fb023d88367", "fields": {"nom_de_la_commune": "BENIFONTAINE", "libell_d_acheminement": "BENIFONTAINE", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62107"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ae7b4a1af5e4ff0ef63a7da1d6e50d3a46cae0", "fields": {"nom_de_la_commune": "BERMICOURT", "libell_d_acheminement": "BERMICOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62114"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c8638544cbfe46e938b409b10fed17eb9e7a2c", "fields": {"nom_de_la_commune": "BERNIEULLES", "libell_d_acheminement": "BERNIEULLES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62116"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bafbda045b73d75352471890704da9dad11c3c64", "fields": {"nom_de_la_commune": "BIENVILLERS AU BOIS", "libell_d_acheminement": "BIENVILLERS AU BOIS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62130"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d22ff5543b9f7172968ba5a952ba7966da422cf", "fields": {"nom_de_la_commune": "BLANGERVAL BLANGERMONT", "libell_d_acheminement": "BLANGERVAL BLANGERMONT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62137"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a9b5dfc5528c113840d0f9136d469e25e8a308", "fields": {"nom_de_la_commune": "BLANGY SUR TERNOISE", "libell_d_acheminement": "BLANGY SUR TERNOISE", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62138"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66f2ce82805ddf8e80afff2f164a6c5431c56f0", "fields": {"nom_de_la_commune": "BOIRY NOTRE DAME", "libell_d_acheminement": "BOIRY NOTRE DAME", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62145"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41287f4063e9b898a62e48dace7dd91f729a245a", "fields": {"nom_de_la_commune": "BOISDINGHEM", "libell_d_acheminement": "BOISDINGHEM", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62149"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c828377639a210b825826bd31b2b9c8f8d6be6c5", "fields": {"nom_de_la_commune": "BONNINGUES LES ARDRES", "libell_d_acheminement": "BONNINGUES LES ARDRES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62155"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b540e01f0fe95b1329215550ac221b415fc27c87", "fields": {"nom_de_la_commune": "BOURECQ", "libell_d_acheminement": "BOURECQ", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62162"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c33dba591fe3dbaf5d6473c81f2f7f2f2d60d57", "fields": {"nom_de_la_commune": "BOURET SUR CANCHE", "libell_d_acheminement": "BOURET SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62163"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f53923b0d5f316398a040348a947d625ac205", "fields": {"nom_de_la_commune": "BREMES", "libell_d_acheminement": "BREMES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62174"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf7a43db6906ef82e4b73d8fb3bc3792b77fe25", "fields": {"nom_de_la_commune": "BRIMEUX", "libell_d_acheminement": "BRIMEUX", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62177"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb36ea94a4d8f779c303dca54311cec955b6fa7", "fields": {"nom_de_la_commune": "BRUNEMBERT", "libell_d_acheminement": "BRUNEMBERT", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62179"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b510dda5660f0a0b499bb1fb62a2e0b944b4aa5", "fields": {"nom_de_la_commune": "THIEFFRANS", "libell_d_acheminement": "THIEFFRANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70500"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ce966663b864c4b4563c726efb2988ef202fef", "fields": {"nom_de_la_commune": "THIENANS", "libell_d_acheminement": "THIENANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70501"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95211de9405580aa975560efd3764b5317efa959", "fields": {"nom_de_la_commune": "LE TREMBLOIS", "libell_d_acheminement": "LE TREMBLOIS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70505"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25827f4d5828e3753ceac02702c7c0d601b95065", "fields": {"nom_de_la_commune": "TRESILLEY", "libell_d_acheminement": "TRESILLEY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70507"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f0dc321809f03fc40cc6902a1ed2dbb04b7820", "fields": {"nom_de_la_commune": "TROMAREY", "libell_d_acheminement": "TROMAREY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70509"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8974af3cc6cd2a0bc818fb1570539d7739d6d321", "fields": {"nom_de_la_commune": "VADANS", "libell_d_acheminement": "VADANS", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70510"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af866e93189f2c307300d0bb814e967b3862af37", "fields": {"nom_de_la_commune": "LA VAIVRE", "libell_d_acheminement": "LA VAIVRE", "code_postal": "70320", "coordonnees_gps": [47.9247841994, 6.33509809591], "code_commune_insee": "70512"}, "geometry": {"type": "Point", "coordinates": [6.33509809591, 47.9247841994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc39fcaaa179c061ab16c773f58ef6d29a72356a", "fields": {"nom_de_la_commune": "LE VAL DE GOUHENANS", "libell_d_acheminement": "LE VAL DE GOUHENANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70515"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9516298219f0d41b5ab3f4ccdd68b9d68561aa2", "fields": {"nom_de_la_commune": "VAUCONCOURT NERVEZAIN", "libell_d_acheminement": "VAUCONCOURT NERVEZAIN", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70525"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac5d1c7364be5df5cb99b695eedc61311466f67", "fields": {"nom_de_la_commune": "VELLECHEVREUX ET COURBENANS", "libell_d_acheminement": "VELLECHEVREUX ET COURBENANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70530"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cc8ee13b3b7fadd975e12f697ba9fb12ce1cc0", "fields": {"nom_de_la_commune": "VELLEFAUX", "libell_d_acheminement": "VELLEFAUX", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70532"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a04e9219ec79b75e7dec3a32987d400baabb33", "fields": {"nom_de_la_commune": "VELLE LE CHATEL", "libell_d_acheminement": "VELLE LE CHATEL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70536"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be44118d630d7db23d4a7f5f8e3db9f67f0b4b9", "fields": {"nom_de_la_commune": "VELLEXON QUEUTREY ET VAUDEY", "libell_d_acheminement": "VELLEXON QUEUTREY ET VAUDEY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70539"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb4dc81b5cb0f74c631bfad61df44ec020e58d7", "fields": {"nom_de_la_commune": "VELLOREILLE LES CHOYE", "libell_d_acheminement": "VELLOREILLE LES CHOYE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70540"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8f8cbf13d7bb0c737ff40801516d4fb1c260ba", "fields": {"nom_de_la_commune": "VELORCEY", "libell_d_acheminement": "VELORCEY", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70541"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f90ad105827b9057d18b4618e0ecaf6f874d93", "fields": {"nom_de_la_commune": "VENERE", "libell_d_acheminement": "VENERE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70542"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6057b03596f7de96f5fc9e06c730ec4710334cf9", "fields": {"nom_de_la_commune": "VILLARGENT", "libell_d_acheminement": "VILLARGENT", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70553"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fe324e90b8ff2029e8be304bd3de1cb5ac50062", "fields": {"nom_de_la_commune": "VILLEFRANCON", "libell_d_acheminement": "VILLEFRANCON", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70557"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b2027d76a6d4aff3e2ee1c80818ddd235eb0b6", "fields": {"nom_de_la_commune": "LA VILLENEUVE BELLENOYE LA MAIZE", "libell_d_acheminement": "LA VILLENEUVE BELLENOYE LA MAIZE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70558"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfdc43399e8de06d087d303711cf33051f03144", "fields": {"nom_de_la_commune": "VILLEPAROIS", "libell_d_acheminement": "VILLEPAROIS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70559"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2662082688616edcbb9cbbb640663a6852f2dedb", "fields": {"nom_de_la_commune": "VILLERS LES LUXEUIL", "libell_d_acheminement": "VILLERS LES LUXEUIL", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70564"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39134a7f4853b1d10893303fd58bb997c5d3c1f", "fields": {"nom_de_la_commune": "VILLERS SUR PORT", "libell_d_acheminement": "VILLERS SUR PORT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70566"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298ee7a1d2db8d4807476bc568e156c77a734fea", "fields": {"nom_de_la_commune": "VOLON", "libell_d_acheminement": "VOLON", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70574"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424f7f96860e0bf8ef765e0d3fc0aaa4b9a44ab9", "fields": {"nom_de_la_commune": "ALLERIOT", "libell_d_acheminement": "ALLERIOT", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71004"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d377fddbc1b1872b017306b253a768e26e4f74a2", "fields": {"nom_de_la_commune": "ARTAIX", "libell_d_acheminement": "ARTAIX", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71012"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd22672ebb6c36fd7f7249dd31730ca6465c56e", "fields": {"nom_de_la_commune": "AUTUN", "libell_d_acheminement": "AUTUN", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71014"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12347a1b310c409af439f3225e4489f7ee24e56d", "fields": {"nom_de_la_commune": "BARIZEY", "libell_d_acheminement": "BARIZEY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71019"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3cf6d334084c4c6df9484f78d1f54bb4bd4b83", "fields": {"nom_de_la_commune": "BARNAY", "libell_d_acheminement": "BARNAY", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71020"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ff8a8759ce811ca1d7292c905f266e8cd5f7f8", "fields": {"nom_de_la_commune": "BAUDEMONT", "libell_d_acheminement": "BAUDEMONT", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71022"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b6b07bab9d916cae44cb4109b274bd040db814", "fields": {"nom_de_la_commune": "BAUDRIERES", "libell_d_acheminement": "BAUDRIERES", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71023"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5dd602c000b2fe44e18e9377e4dcee3159f488", "fields": {"nom_de_la_commune": "BEAUBERY", "libell_d_acheminement": "BEAUBERY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71025"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a9555c9117c7d3215c6c264ff0cea6517b43e3", "fields": {"nom_de_la_commune": "BOIS STE MARIE", "libell_d_acheminement": "BOIS STE MARIE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71041"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035de81be4d3230d7c8080ee34725b0e075a2bc6", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71043"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f66fd3eedb08536a0d83da37714943c5b818011", "fields": {"nom_de_la_commune": "BOUHANS", "libell_d_acheminement": "BOUHANS", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71045"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c95f17b7cbc9b7e9a76eded40f6087a2929231", "fields": {"nom_de_la_commune": "BURNAND", "libell_d_acheminement": "BURNAND", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71067"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01d04e6bd7e031ed88daa7b9800b148d874259c", "fields": {"nom_de_la_commune": "CHALMOUX", "libell_d_acheminement": "CHALMOUX", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71075"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28336176c3ca1f51d91afbbbb840ab8ba4b3f3c2", "fields": {"nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", "libell_d_acheminement": "LA CHAPELLE DE GUINCHAY", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71090"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfec77bb06e95cf02128b948d8efacd7407a4117", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS BRANCION", "libell_d_acheminement": "LA CHAPELLE SOUS BRANCION", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71094"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337650079846af3942b967c0456e2fe25d7b1e52", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS UCHON", "libell_d_acheminement": "LA CHAPELLE SOUS UCHON", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71096"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a76dba2503a2ead92f389e9051e8940e449bcb", "fields": {"nom_de_la_commune": "CHARBONNAT", "libell_d_acheminement": "CHARBONNAT", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71098"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645aa586e9b9fdb31a10c1858aa66ac2fa0f895e", "fields": {"nom_de_la_commune": "CHARDONNAY", "libell_d_acheminement": "CHARDONNAY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71100"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8001178ae8e199bf6e836d65dba075a238b92d", "fields": {"code_postal": "71270", "code_commune_insee": "71101", "libell_d_acheminement": "CHARETTE VARENNES", "ligne_5": "VARENNE SUR LE DOUBS", "nom_de_la_commune": "CHARETTE VARENNES", "coordonnees_gps": [46.8994601906, 5.25743617076]}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8118d8b992235b2bee23bc8c1b42e1c58faafaae", "fields": {"nom_de_la_commune": "CHARRECEY", "libell_d_acheminement": "CHARRECEY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71107"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90417f0098e9e6bd6d828a5bb1eee96266b423fb", "fields": {"nom_de_la_commune": "CHASSEY LE CAMP", "libell_d_acheminement": "CHASSEY LE CAMP", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71109"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf62fd182be63f198b42f12c55e585f9a108ab61", "fields": {"nom_de_la_commune": "CHASSY", "libell_d_acheminement": "CHASSY", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71111"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703b8b8f3ec8395e9cf1f7e5a206d773aaf49c73", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71113"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa72d18213ad427276d855382d0e8a704e796c1", "fields": {"nom_de_la_commune": "CHEVAGNY SUR GUYE", "libell_d_acheminement": "CHEVAGNY SUR GUYE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71127"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81082edaa398ca1fe4b534ccb84ddcaab0410e2b", "fields": {"nom_de_la_commune": "CIEL", "libell_d_acheminement": "CIEL", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71131"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c79ea3c981be086a4c1e879e33228a18a865f1", "fields": {"nom_de_la_commune": "CLERMAIN", "libell_d_acheminement": "CLERMAIN", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71134"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56efe22380d56c99c5868401eda2540c6eba59ec", "fields": {"nom_de_la_commune": "CLESSE", "libell_d_acheminement": "CLESSE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71135"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5344b4732e4a59c5ea37fe0c893686500ce4a23", "fields": {"nom_de_la_commune": "COLOMBIER EN BRIONNAIS", "libell_d_acheminement": "COLOMBIER EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71141"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ce368152f2c51a60335cfb0d9f8a9474cb269b", "fields": {"nom_de_la_commune": "CONDAL", "libell_d_acheminement": "CONDAL", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71143"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3d6b370180bceb9b030f09b551f7ef087962a7", "fields": {"nom_de_la_commune": "CRECHES SUR SAONE", "libell_d_acheminement": "CRECHES SUR SAONE", "code_postal": "71680", "coordonnees_gps": [46.2494951765, 4.78409941334], "code_commune_insee": "71150"}, "geometry": {"type": "Point", "coordinates": [4.78409941334, 46.2494951765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c72c80e20884f18bebe764387e99f755cc02d5", "fields": {"nom_de_la_commune": "CRONAT", "libell_d_acheminement": "CRONAT", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71155"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c416b2e96563f2c47043ad7f3bc5659dc4339804", "fields": {"nom_de_la_commune": "CUISEAUX", "libell_d_acheminement": "CUISEAUX", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71157"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29e9259acf5ee6e33c45bff9144a27241d30fbb", "fields": {"nom_de_la_commune": "CUSSY EN MORVAN", "libell_d_acheminement": "CUSSY EN MORVAN", "code_postal": "71550", "coordonnees_gps": [47.0673836602, 4.11662023514], "code_commune_insee": "71165"}, "geometry": {"type": "Point", "coordinates": [4.11662023514, 47.0673836602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5f4b60e9d35ec00054a6515ad9911a956efc00", "fields": {"nom_de_la_commune": "CUZY", "libell_d_acheminement": "CUZY", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71166"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b788e9982a9c0ee18da5bd9db665df87f68628a", "fields": {"nom_de_la_commune": "DENNEVY", "libell_d_acheminement": "DENNEVY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71171"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328d39742cc09247d62a16f51e40fd6940ea781f", "fields": {"nom_de_la_commune": "DETTEY", "libell_d_acheminement": "DETTEY", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71172"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "089078317a588c9c7bb0336ca4b2d4dc5366aeee", "fields": {"nom_de_la_commune": "DRACY ST LOUP", "libell_d_acheminement": "DRACY ST LOUP", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71184"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3be15b7a5e94358da22d650b70496e7552b3ec", "fields": {"nom_de_la_commune": "DYO", "libell_d_acheminement": "DYO", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71185"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa704aaa3aa33d453a2c5464ec706cf33d213ed", "fields": {"nom_de_la_commune": "ECUISSES", "libell_d_acheminement": "ECUISSES", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71187"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc2245c5849ec98e81161afc6bc4a7c4f290373", "fields": {"nom_de_la_commune": "ETANG SUR ARROUX", "libell_d_acheminement": "ETANG SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71192"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc78482ccc324375b32ffc72560508eff193508d", "fields": {"nom_de_la_commune": "ETRIGNY", "libell_d_acheminement": "ETRIGNY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71193"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737085f3ccfd4cff02d793e9dac1ce7686795e53", "fields": {"nom_de_la_commune": "FLACEY EN BRESSE", "libell_d_acheminement": "FLACEY EN BRESSE", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71198"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5cf6ce50167f7a73a9edccd454d5a1e73bc6cd", "fields": {"nom_de_la_commune": "FLAGY", "libell_d_acheminement": "FLAGY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71199"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f83c0b96e978430d99d9dab003bcbfe4aea4329", "fields": {"nom_de_la_commune": "FLEURY LA MONTAGNE", "libell_d_acheminement": "FLEURY LA MONTAGNE", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71200"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e713847f64bdccc88bcac0d816fcc91661cd63", "fields": {"code_postal": "71530", "code_commune_insee": "71204", "libell_d_acheminement": "FRAGNES LA LOYERE", "ligne_5": "LA LOYERE", "nom_de_la_commune": "FRAGNES LA LOYERE", "coordonnees_gps": [46.8388869017, 4.87612871845]}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d5f96fbac2c68f6e4b1784f8175c46730895f7", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71222"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c728b9f8ac8648fce9c174d03fda547c1d392b", "fields": {"nom_de_la_commune": "GRANDVAUX", "libell_d_acheminement": "GRANDVAUX", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71224"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea06f2d3937cbd9e5eeb462e62b0d3c3074ca16", "fields": {"nom_de_la_commune": "GRANGES", "libell_d_acheminement": "GRANGES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71225"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385898de124b57de88fc971dd483c7e2f390a70a", "fields": {"nom_de_la_commune": "IGORNAY", "libell_d_acheminement": "IGORNAY", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71237"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6726052d46b7a8a99be8bd0ee3b09db6f840d411", "fields": {"nom_de_la_commune": "JALOGNY", "libell_d_acheminement": "JALOGNY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71240"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120372e3a43d3259d94acfd45360b9fb80528dda", "fields": {"nom_de_la_commune": "JOUDES", "libell_d_acheminement": "JOUDES", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71243"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3bbe3fa55a232c3e937a3114bee606ef7f232d", "fields": {"nom_de_la_commune": "LANS", "libell_d_acheminement": "LANS", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71253"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0275634b9ce9bd3e4e2a96194f2c33795a2e934", "fields": {"nom_de_la_commune": "LAYS SUR LE DOUBS", "libell_d_acheminement": "LAYS SUR LE DOUBS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71254"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0116d9bfca4773133af03d286c9310599ee465", "fields": {"nom_de_la_commune": "LUX", "libell_d_acheminement": "LUX", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71269"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4908fb0afbdcc03aee057f1b97331758df5afb", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "FLACE LES MACON", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f50576c94531bc2aa2b0eff2e33cacee0e196ce", "fields": {"nom_de_la_commune": "MAILLY", "libell_d_acheminement": "MAILLY", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71271"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf1933a32d48059659658adae15288c7e2ece01", "fields": {"nom_de_la_commune": "MARNAY", "libell_d_acheminement": "MARNAY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71283"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae91fd99761b18a47941033920690b61e7aaceb", "fields": {"nom_de_la_commune": "MASSY", "libell_d_acheminement": "MASSY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71288"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad31cd2cf8b1f8ebbe9c4a8d90245c91bbe799ad", "fields": {"nom_de_la_commune": "MELLECEY", "libell_d_acheminement": "MELLECEY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71292"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9b0ff5545e48275c633820e4a5209787adc0b3", "fields": {"nom_de_la_commune": "MONTCENIS", "libell_d_acheminement": "MONTCENIS", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71309"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b16db96fe646bef932e06c1cac40d464f53094c", "fields": {"nom_de_la_commune": "MONTCHANIN", "libell_d_acheminement": "MONTCHANIN", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71310"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a80dce744acbf30b7f454cce1c9ac8cf584bd50d", "fields": {"nom_de_la_commune": "MONT LES SEURRE", "libell_d_acheminement": "MONT LES SEURRE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71315"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf28a5869a28734524f5b28b764b69967246cf3", "fields": {"nom_de_la_commune": "MORLET", "libell_d_acheminement": "MORLET", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71322"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bfd7e35c2e74b26c20f2d76b886841b9fd8cf18", "fields": {"nom_de_la_commune": "MORNAY", "libell_d_acheminement": "MORNAY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71323"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59509aa0bf399ec06b8308f75b6a037be55bd31", "fields": {"nom_de_la_commune": "MOUTHIER EN BRESSE", "libell_d_acheminement": "MOUTHIER EN BRESSE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71326"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "666b7ce5c673df884b34fc315885c7724c8b63a7", "fields": {"nom_de_la_commune": "OZOLLES", "libell_d_acheminement": "OZOLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71339"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49435e747f46cd659e898a8ce4a29056ca9fc10c", "fields": {"nom_de_la_commune": "PALINGES", "libell_d_acheminement": "PALINGES", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71340"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b98725fcc3560cd63c7049bbda58da62f963c5", "fields": {"nom_de_la_commune": "PARIS L HOPITAL", "libell_d_acheminement": "PARIS L HOPITAL", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71343"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "866c610a15952cdd07e87d5c81185c3bcb7ca05c", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71344"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51876ecac547a384539a033d6fbb8e839f71c875", "fields": {"nom_de_la_commune": "POISSON", "libell_d_acheminement": "POISSON", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71354"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05911a0f886c0eff0a44ef7c3ea438a7d70ee74", "fields": {"nom_de_la_commune": "POURLANS", "libell_d_acheminement": "POURLANS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71357"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c5d7b5db85631d7bfdc10eace241921ceb26a1", "fields": {"nom_de_la_commune": "PRISSE", "libell_d_acheminement": "PRISSE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71360"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5e4ffcecbb408e9f84c246bbc2db4ff28133f2", "fields": {"nom_de_la_commune": "PRIZY", "libell_d_acheminement": "PRIZY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71361"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c16682f22d2c3ff40137e5b64ef85b8d1d816b", "fields": {"nom_de_la_commune": "RECLESNE", "libell_d_acheminement": "RECLESNE", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71368"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbebd6c3de5c3d7f7bcfedddb9715307712e16f8", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71381"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0951cac64ecbc5714ce4495b1b56d4b38f89e021", "fields": {"nom_de_la_commune": "ST AMBREUIL", "libell_d_acheminement": "ST AMBREUIL", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71384"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a652fe230d7c32fd7ebfa12e4c346d1b911af9d8", "fields": {"nom_de_la_commune": "ST ANDRE LE DESERT", "libell_d_acheminement": "ST ANDRE LE DESERT", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71387"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52642574dd62839bb8303b08629f3d9feae21639", "fields": {"nom_de_la_commune": "BERGERES SOUS MONTMIRAIL", "libell_d_acheminement": "BERGERES SOUS MONTMIRAIL", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51050"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a184e87a4f16f05acc6287f944c3cb2702cd85", "fields": {"nom_de_la_commune": "BERRU", "libell_d_acheminement": "BERRU", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51052"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3ce978074758bd4fa301a191a68fa1b63bc2531", "fields": {"nom_de_la_commune": "BETHENY", "libell_d_acheminement": "BETHENY", "code_postal": "51450", "coordonnees_gps": [49.2957748213, 4.06017274114], "code_commune_insee": "51055"}, "geometry": {"type": "Point", "coordinates": [4.06017274114, 49.2957748213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c674044848bd9e7d3d9e4850264391a1cea096ce", "fields": {"nom_de_la_commune": "BIGNICOURT SUR MARNE", "libell_d_acheminement": "BIGNICOURT SUR MARNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51059"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b63feac62b462efe7f27e12057c4e38c4bcf651", "fields": {"nom_de_la_commune": "BOISSY LE REPOS", "libell_d_acheminement": "BOISSY LE REPOS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51070"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458d33a223b33af34d436469cb0d00b3199dd373", "fields": {"nom_de_la_commune": "BOULEUSE", "libell_d_acheminement": "BOULEUSE", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51073"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1337137484a1511a26f4f8be034d8b55b9516520", "fields": {"nom_de_la_commune": "BRANSCOURT", "libell_d_acheminement": "BRANSCOURT", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51081"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ac3c08d9a8fc94f806c0891aadd10834ba4b24", "fields": {"nom_de_la_commune": "BRAUX ST REMY", "libell_d_acheminement": "BRAUX ST REMY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51083"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8321edddcb4e9b4dc3337534499cee40f72799d0", "fields": {"nom_de_la_commune": "BRIMONT", "libell_d_acheminement": "BRIMONT", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51088"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad5492c04bdb89b1ee1912e324123e20ce3f0a0", "fields": {"nom_de_la_commune": "BUSSY LE CHATEAU", "libell_d_acheminement": "BUSSY LE CHATEAU", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51097"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205606d34432b400069f8c09527ed2ad550994a8", "fields": {"nom_de_la_commune": "BUSSY LETTREE", "libell_d_acheminement": "BUSSY LETTREE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51099"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ac3a9399aa162eda6f155b27f033a875add2e7", "fields": {"nom_de_la_commune": "CAUREL", "libell_d_acheminement": "CAUREL", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51101"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2787044f9b6c6799a4b42428d94215ffbe67477", "fields": {"nom_de_la_commune": "CHALONS EN CHAMPAGNE", "libell_d_acheminement": "CHALONS EN CHAMPAGNE", "code_postal": "51000", "coordonnees_gps": [48.9640626928, 4.37886072639], "code_commune_insee": "51108"}, "geometry": {"type": "Point", "coordinates": [4.37886072639, 48.9640626928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff94088bb1d4c0bf97f26412566b8ebd2563b350", "fields": {"nom_de_la_commune": "CHAMBRECY", "libell_d_acheminement": "CHAMBRECY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51111"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710cf666cc9a38d5b004cadc8b6d37549cdf94ec", "fields": {"nom_de_la_commune": "CHAMPGUYON", "libell_d_acheminement": "CHAMPGUYON", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51116"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aacd9b4e8b637fd2ee8dd996a31524d3154f7326", "fields": {"nom_de_la_commune": "CHAMPILLON", "libell_d_acheminement": "CHAMPILLON", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51119"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc5f419332aea3516051e57a89c7787a59cf4d5", "fields": {"nom_de_la_commune": "LES CHARMONTOIS", "libell_d_acheminement": "LES CHARMONTOIS", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51132"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb4fc10cd56efcff32c17db21d3b09d343332e81", "fields": {"nom_de_la_commune": "LE CHATELIER", "libell_d_acheminement": "LE CHATELIER", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51133"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db59354ebed00cc4afa4d986a952bc557def3aba", "fields": {"nom_de_la_commune": "CHATILLON SUR MARNE", "libell_d_acheminement": "CHATILLON SUR MARNE", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51136"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370bc50b588abd8e480e396edcf751537aabd0d1", "fields": {"nom_de_la_commune": "CHATILLON SUR MORIN", "libell_d_acheminement": "CHATILLON SUR MORIN", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51137"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15f155851561592549ed65d1489e433c5f18e5b", "fields": {"nom_de_la_commune": "COIZARD JOCHES", "libell_d_acheminement": "COIZARD JOCHES", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51157"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c23277cc9bfe4a23edb23205fe853359336c748", "fields": {"nom_de_la_commune": "VAL DES MARAIS", "libell_d_acheminement": "VAL DES MARAIS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51158"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9e0b2a2cadd58cb982ac944cc59980ef3ad280", "fields": {"nom_de_la_commune": "CONDE SUR MARNE", "libell_d_acheminement": "CONDE SUR MARNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51161"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd13d6009a57fea4d50b97165bbe08ca544aee0e", "fields": {"nom_de_la_commune": "CONGY", "libell_d_acheminement": "CONGY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51163"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcdfc50ad6c3fce5a3dd137289e6e1f626204bd1", "fields": {"nom_de_la_commune": "CORMOYEUX", "libell_d_acheminement": "CORMOYEUX", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51173"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455a63632ba4a19a5ba9c7580f297d1d3407af6d", "fields": {"nom_de_la_commune": "COURCY", "libell_d_acheminement": "COURCY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51183"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecd0e29bdcba84f4a568c109ee14112a217d404", "fields": {"nom_de_la_commune": "COURDEMANGES", "libell_d_acheminement": "COURDEMANGES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51184"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36599de910ceed2d40ef3e724dd9dd070f561df", "fields": {"nom_de_la_commune": "COURMAS", "libell_d_acheminement": "COURMAS", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51188"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0f5e64496fe47db4d02f1121b5ed468784ceae", "fields": {"nom_de_la_commune": "CRUGNY", "libell_d_acheminement": "CRUGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51198"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08677cbdfb68ab86ab642da49e439eec02e1e0db", "fields": {"nom_de_la_commune": "CUCHERY", "libell_d_acheminement": "CUCHERY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51199"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aeab225d28786d763a6e81b4a68f176530bc949", "fields": {"nom_de_la_commune": "DAMPIERRE LE CHATEAU", "libell_d_acheminement": "DAMPIERRE LE CHATEAU", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51206"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d35d59ec55bae199e92fd0ba0360da0bf5916f2", "fields": {"nom_de_la_commune": "DOMMARTIN DAMPIERRE", "libell_d_acheminement": "DOMMARTIN DAMPIERRE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51211"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d05cb7e1bb40e6037c3d55b8ea13af5da7ca04", "fields": {"nom_de_la_commune": "DROSNAY", "libell_d_acheminement": "DROSNAY", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51219"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da34791d3651ef87d1ee2401aadbf586b8164c8", "fields": {"nom_de_la_commune": "ECURY SUR COOLE", "libell_d_acheminement": "ECURY SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51227"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5766df22928abf592ae22c6e70b263b28cc404", "fields": {"nom_de_la_commune": "EPENSE", "libell_d_acheminement": "EPENSE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51229"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdfbca6e0572a46e4067b20bafc22fae1dc66fc", "fields": {"nom_de_la_commune": "ESCLAVOLLES LUREY", "libell_d_acheminement": "ESCLAVOLLES LUREY", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51234"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce6afa7922670c055f5eaa78c41f05d314c65dcc", "fields": {"nom_de_la_commune": "ETRECHY", "libell_d_acheminement": "ETRECHY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51239"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251ee068f5be1269d31a1c3c4cc9d0702a03b93e", "fields": {"nom_de_la_commune": "EUVY", "libell_d_acheminement": "EUVY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51241"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f93a0dcaf7e890861951a4b47c9b22b27a7af0", "fields": {"nom_de_la_commune": "FAGNIERES", "libell_d_acheminement": "FAGNIERES", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51242"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b5fc57aa07861a09c5cd4b6470b654a64a1bfe", "fields": {"nom_de_la_commune": "FAVRESSE", "libell_d_acheminement": "FAVRESSE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51246"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb97774783463073b750960698f21c83815da3ed", "fields": {"nom_de_la_commune": "FONTAINE DENIS NUISY", "libell_d_acheminement": "FONTAINE DENIS NUISY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51254"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a31bb1c3969c18f04369861b642f4d58c9f239e0", "fields": {"nom_de_la_commune": "GERMIGNY", "libell_d_acheminement": "GERMIGNY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51267"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c173c6aa3222686418e70e402643c216907c63", "fields": {"nom_de_la_commune": "GRANGES SUR AUBE", "libell_d_acheminement": "GRANGES SUR AUBE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51279"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbdcd3bd5338e2d35b3f5add11497994be154c35", "fields": {"nom_de_la_commune": "GRATREUIL", "libell_d_acheminement": "GRATREUIL", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51280"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19ee5a8dff261b6c9307820ddfbfe6910ec10be", "fields": {"nom_de_la_commune": "HEILTZ LE MAURUPT", "libell_d_acheminement": "HEILTZ LE MAURUPT", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51289"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f634f452be5e67a62ee7fb801375cf4d139af4", "fields": {"nom_de_la_commune": "HERPONT", "libell_d_acheminement": "HERPONT", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51292"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18305f06bb022cf0c347a9adbf6a572dc13adc9f", "fields": {"nom_de_la_commune": "JANVRY", "libell_d_acheminement": "JANVRY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51305"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04479ab6749f1c63247f2b786259c1a860b62421", "fields": {"nom_de_la_commune": "JONCHERY SUR SUIPPE", "libell_d_acheminement": "JONCHERY SUR SUIPPE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51307"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e771a647a3239353716b93b464106cce125afd4", "fields": {"nom_de_la_commune": "JONQUERY", "libell_d_acheminement": "JONQUERY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51309"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dac36e3f463667b7338ca7ff544cd77e68e72d9", "fields": {"nom_de_la_commune": "LAVANNES", "libell_d_acheminement": "LAVANNES", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51318"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8021ec1a18f6ba988a185d2477e8d42bfc121a0", "fields": {"nom_de_la_commune": "MAILLY CHAMPAGNE", "libell_d_acheminement": "MAILLY CHAMPAGNE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51338"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d11aeb2f71051bf57c2b9b4dc36d46006751ad", "fields": {"nom_de_la_commune": "MARCILLY SUR SEINE", "libell_d_acheminement": "MARCILLY SUR SEINE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51343"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb956d7c7c99ccb6dc35ccf5edb3c1de25923ece", "fields": {"nom_de_la_commune": "MAREUIL EN BRIE", "libell_d_acheminement": "MAREUIL EN BRIE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51345"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92229ac38d456e2e112c0dff2b11c194fef59c7a", "fields": {"nom_de_la_commune": "MAREUIL LE PORT", "libell_d_acheminement": "MAREUIL LE PORT", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51346"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a886c5eaab5e139bc189f5ea3d178eefd5d119de", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51351"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383a1e300056c0830e4069926ab81753eba17030", "fields": {"nom_de_la_commune": "MASSIGES", "libell_d_acheminement": "MASSIGES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51355"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f36496d6c400a19d5b8bbeaae13246be883e4c", "fields": {"nom_de_la_commune": "MATOUGUES", "libell_d_acheminement": "MATOUGUES", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51357"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c82af37aec09dd1d44586ac68419cb647892f7", "fields": {"nom_de_la_commune": "MERY PREMECY", "libell_d_acheminement": "MERY PREMECY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51364"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591ba0548b119eb7a15fd9332d95493100253aa9", "fields": {"nom_de_la_commune": "LE MESNIL SUR OGER", "libell_d_acheminement": "LE MESNIL SUR OGER", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51367"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fa9cca0102bbba68945d8fd015493fa2b67ec9", "fields": {"nom_de_la_commune": "MORSAINS", "libell_d_acheminement": "MORSAINS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51386"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01063a72c4126b5a57c4229e02674430b54ae5ef", "fields": {"nom_de_la_commune": "MOURMELON LE GRAND", "libell_d_acheminement": "MOURMELON LE GRAND", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51388"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be943f84d51f18c5cc60ed469facc6571f12b6e9", "fields": {"nom_de_la_commune": "LA NEUVILLE AUX BOIS", "libell_d_acheminement": "LA NEUVILLE AUX BOIS", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51397"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7efb7108a33d1735100ad37481f03680c94a80", "fields": {"nom_de_la_commune": "LA NEUVILLE AU PONT", "libell_d_acheminement": "LA NEUVILLE AU PONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51399"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f06ced21b2b775a89449286f249aaa3a85b4d61", "fields": {"nom_de_la_commune": "NOIRLIEU", "libell_d_acheminement": "NOIRLIEU", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51404"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909a46344593a1aae42e9413f5138de97ddf3720", "fields": {"nom_de_la_commune": "PEVY", "libell_d_acheminement": "PEVY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51429"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b6c6931bd453569663fc2c257948d85814332c", "fields": {"nom_de_la_commune": "PLICHANCOURT", "libell_d_acheminement": "PLICHANCOURT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51433"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ce7c8a8cf67fc823e04eee9f380c3fe96bcd9d", "fields": {"nom_de_la_commune": "POGNY", "libell_d_acheminement": "POGNY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51436"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551be3b6b7e519632e370e6a5af0cc871980bcfd", "fields": {"nom_de_la_commune": "POMACLE", "libell_d_acheminement": "POMACLE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51439"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322cbdf4cee11a2f3eece7eeba1049be8507d3ae", "fields": {"nom_de_la_commune": "PONTFAVERGER MORONVILLIERS", "libell_d_acheminement": "PONTFAVERGER MORONVILLIERS", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51440"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704fd7dd078eb2e655c4a8ebb64c29225edfa718", "fields": {"nom_de_la_commune": "POSSESSE", "libell_d_acheminement": "POSSESSE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51442"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8314ebc5cbf742b4e27a19a18e86343dd2d2cc4", "fields": {"nom_de_la_commune": "ROMERY", "libell_d_acheminement": "ROMERY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51465"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621ecc6f24e4120f3da47b19697af12769497d4e", "fields": {"nom_de_la_commune": "ROUFFY", "libell_d_acheminement": "ROUFFY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51469"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d026a506d63757d68fde20e1633afab95303de2e", "fields": {"nom_de_la_commune": "ROUVROY RIPONT", "libell_d_acheminement": "ROUVROY RIPONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51470"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417837e3f5317b81e5464726e196e5f9fd65ae7b", "fields": {"nom_de_la_commune": "ST AMAND SUR FION", "libell_d_acheminement": "ST AMAND SUR FION", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51472"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f207847067fe1726c7f6d394c93ad7722a8482c8", "fields": {"nom_de_la_commune": "ST GERMAIN LA VILLE", "libell_d_acheminement": "ST GERMAIN LA VILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51482"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee875f15a67c4e8315df09102e2d9c0a0757837", "fields": {"nom_de_la_commune": "ST HILAIRE AU TEMPLE", "libell_d_acheminement": "ST HILAIRE AU TEMPLE", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51485"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4617aa4b42ec3edea69afa347ac511ed5518caea", "fields": {"nom_de_la_commune": "ST HILAIRE LE PETIT", "libell_d_acheminement": "ST HILAIRE LE PETIT", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51487"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a21f106472ffe390cfb5fe4265f1d579deff0d", "fields": {"nom_de_la_commune": "ST JEAN DEVANT POSSESSE", "libell_d_acheminement": "ST JEAN DEVANT POSSESSE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51489"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62282262792ea2de3c25c391c3cdd8d76e7e54a", "fields": {"nom_de_la_commune": "ST LUMIER LA POPULEUSE", "libell_d_acheminement": "ST LUMIER LA POPULEUSE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51497"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d41ef0504f8a73418398f39d358e87eda6351c8", "fields": {"nom_de_la_commune": "ST MARD LES ROUFFY", "libell_d_acheminement": "ST MARD LES ROUFFY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51499"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6884e7c91adb29d1a0fea5cb48dd150f430a5816", "fields": {"nom_de_la_commune": "ST MARTIN AUX CHAMPS", "libell_d_acheminement": "ST MARTIN AUX CHAMPS", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51502"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f31fdc7c85fc34c9dff81d1290a891efa0296491", "fields": {"nom_de_la_commune": "ST MARTIN SUR LE PRE", "libell_d_acheminement": "ST MARTIN SUR LE PRE", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51504"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fedad820a38d762119df34f27370d364ec11047e", "fields": {"nom_de_la_commune": "ST QUENTIN LE VERGER", "libell_d_acheminement": "ST QUENTIN LE VERGER", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51511"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e89ad08af97e1a7c193c0a594d86cef1874afa", "fields": {"nom_de_la_commune": "ST QUENTIN SUR COOLE", "libell_d_acheminement": "ST QUENTIN SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51512"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537d34b861626c7cc0c266a796ffd2cf7d138f26", "fields": {"nom_de_la_commune": "ST REMY SOUS BROYES", "libell_d_acheminement": "ST REMY SOUS BROYES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51514"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380dbda870f3c44471be6ab3b42e09a6652671e3", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51516"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb2b7a48adcfcadb8a8c772c3f96cae097759ee", "fields": {"nom_de_la_commune": "ST VRAIN", "libell_d_acheminement": "ST VRAIN", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51521"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22c2c19fac4867e60a7df1b4ee8bc72351e183b", "fields": {"nom_de_la_commune": "SARON SUR AUBE", "libell_d_acheminement": "SARON SUR AUBE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51524"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8396c03ddcee0b01c1a2c65f81a247a34675e7", "fields": {"nom_de_la_commune": "SCRUPT", "libell_d_acheminement": "SCRUPT", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51528"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef694b9a86ea3c83d0875ba5bd9bc591ae07cc36", "fields": {"nom_de_la_commune": "SEZANNE", "libell_d_acheminement": "SEZANNE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51535"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f532549c6aacf18112432db0ebab36b472091c76", "fields": {"nom_de_la_commune": "SILLERY", "libell_d_acheminement": "SILLERY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51536"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1dfb1b8de276f652713f8807860418382db85a", "fields": {"nom_de_la_commune": "SOGNY EN L ANGLE", "libell_d_acheminement": "SOGNY EN L ANGLE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51539"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2088952fb7e7d2b8c2ee2b714f5b2a6936efd3", "fields": {"nom_de_la_commune": "SOMME BIONNE", "libell_d_acheminement": "SOMME BIONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51543"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c838ef9f888fb8ac9037560b4c6062343a33c54b", "fields": {"nom_de_la_commune": "SOMME TOURBE", "libell_d_acheminement": "SOMME TOURBE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51547"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e1d7aa78a330c268beb79330d7b7fb41ad9645", "fields": {"nom_de_la_commune": "SOUDE", "libell_d_acheminement": "SOUDE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51555"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880460d02250278e384bba1f8756cc5732be057d", "fields": {"nom_de_la_commune": "SOUDRON", "libell_d_acheminement": "SOUDRON", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51556"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab01879b78c92745467d5dd13c7b35a2580eb849", "fields": {"nom_de_la_commune": "TAISSY", "libell_d_acheminement": "TAISSY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51562"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963a08f4653ace348481400fa3428ac48fdba936", "fields": {"code_postal": "51150", "code_commune_insee": "51564", "libell_d_acheminement": "VAL DE LIVRE", "ligne_5": "LOUVOIS", "nom_de_la_commune": "VAL DE LIVRE", "coordonnees_gps": [49.0294111773, 4.16667797153]}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096a053da88994fee96416ca22032d8f405454f1", "fields": {"nom_de_la_commune": "THIEBLEMONT FAREMONT", "libell_d_acheminement": "THIEBLEMONT FAREMONT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51567"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ab258a50d1ce9dced46df97c34f482edf49969", "fields": {"nom_de_la_commune": "LE THOULT TROSNAY", "libell_d_acheminement": "LE THOULT TROSNAY", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51570"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d195418aa2209daf99717af223bddb26ef6a11ff", "fields": {"nom_de_la_commune": "MEAUX LA MONTAGNE", "libell_d_acheminement": "MEAUX LA MONTAGNE", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69130"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f747b9e224204c79ebd4e1f557bad66c5a1ff8", "fields": {"nom_de_la_commune": "MONTAGNY", "libell_d_acheminement": "MONTAGNY", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69136"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2539a3db1cab62b72d4acfe4ff1ebf2cf3c2e2c4", "fields": {"code_postal": "69480", "code_commune_insee": "69140", "libell_d_acheminement": "MORANCE", "ligne_5": "ST PIERRE", "nom_de_la_commune": "MORANCE", "coordonnees_gps": [45.9282095873, 4.70232833984]}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a19896148f651c43d82b6bd1b0b1aaa123ebc33", "fields": {"nom_de_la_commune": "MORNANT", "libell_d_acheminement": "MORNANT", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69141"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9057b33d868904f9b25416854b5a78d51b2cff", "fields": {"code_postal": "69440", "code_commune_insee": "69141", "libell_d_acheminement": "MORNANT", "ligne_5": "LE ROSSEON", "nom_de_la_commune": "MORNANT", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efbbbfa11048704bbb7039b8a80136e5f06954a", "fields": {"nom_de_la_commune": "NEUVILLE SUR SAONE", "libell_d_acheminement": "NEUVILLE SUR SAONE", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69143"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315887da3fbfaffd7b86fcf2091515e868abebae", "fields": {"nom_de_la_commune": "PIERRE BENITE", "libell_d_acheminement": "PIERRE BENITE", "code_postal": "69310", "coordonnees_gps": [45.7022087927, 4.8264216036], "code_commune_insee": "69152"}, "geometry": {"type": "Point", "coordinates": [4.8264216036, 45.7022087927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d017abf41bd725d3d44ccc0df273df3955069f", "fields": {"nom_de_la_commune": "POLEYMIEUX AU MONT D OR", "libell_d_acheminement": "POLEYMIEUX AU MONT D OR", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69153"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408375cf6001ac7aadf4618dfa78cbae67d3fd12", "fields": {"nom_de_la_commune": "POMEYS", "libell_d_acheminement": "POMEYS", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69155"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f855a42024c531e09e8583362bf9b74b28f1a55a", "fields": {"nom_de_la_commune": "POUILLY LE MONIAL", "libell_d_acheminement": "POUILLY LE MONIAL", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69159"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4157277d10d2771ab630114c2f1537029315447", "fields": {"nom_de_la_commune": "RONTALON", "libell_d_acheminement": "RONTALON", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69170"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cbf216bbeb7d0dc5bc6223fa816ff9edccc45e", "fields": {"nom_de_la_commune": "SALLES ARBUISSONNAS EN BEAUJOLAIS", "libell_d_acheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69172"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1b62f8ceaa0afdeec32b7fb97b15f170d4e8d9", "fields": {"nom_de_la_commune": "SARCEY", "libell_d_acheminement": "SARCEY", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69173"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919e6c3ae26108677666be7597a735b13eb36cfe", "fields": {"nom_de_la_commune": "LES SAUVAGES", "libell_d_acheminement": "LES SAUVAGES", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69174"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2906b86c5c99e62976eb1a2f7b1b0def250e6d3a", "fields": {"nom_de_la_commune": "ST CLEMENT LES PLACES", "libell_d_acheminement": "ST CLEMENT LES PLACES", "code_postal": "69930", "coordonnees_gps": [45.7453041401, 4.44630555022], "code_commune_insee": "69187"}, "geometry": {"type": "Point", "coordinates": [4.44630555022, 45.7453041401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea2ee0ad016fb4709c05074224bcca2f3a032cd", "fields": {"nom_de_la_commune": "ST CLEMENT SUR VALSONNE", "libell_d_acheminement": "ST CLEMENT SUR VALSONNE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69188"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1a9bd383312c0b50edb85ac69a05d1de1d91eb", "fields": {"nom_de_la_commune": "STE CONSORCE", "libell_d_acheminement": "STE CONSORCE", "code_postal": "69280", "coordonnees_gps": [45.7789755728, 4.70169351324], "code_commune_insee": "69190"}, "geometry": {"type": "Point", "coordinates": [4.70169351324, 45.7789755728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad57c98cdeff262f2978e804109dd2c7cea82508", "fields": {"nom_de_la_commune": "ST CYR LE CHATOUX", "libell_d_acheminement": "ST CYR LE CHATOUX", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69192"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791279ea9b559cdd0e706262dc6b3f9b168a24d1", "fields": {"nom_de_la_commune": "ST DIDIER AU MONT D OR", "libell_d_acheminement": "ST DIDIER AU MONT D OR", "code_postal": "69370", "coordonnees_gps": [45.8154250732, 4.79803220273], "code_commune_insee": "69194"}, "geometry": {"type": "Point", "coordinates": [4.79803220273, 45.8154250732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbfb69a3be043b6de0b32e184ad4beac454f197", "fields": {"nom_de_la_commune": "ST DIDIER SOUS RIVERIE", "libell_d_acheminement": "ST DIDIER SOUS RIVERIE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69195"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ade3fc2754629990e5e3b6e456634894b4c4e5", "fields": {"nom_de_la_commune": "ST FORGEUX", "libell_d_acheminement": "ST FORGEUX", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69200"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cc4d9c195ba1bd817e5d4d6fb25ac4d4683acf", "fields": {"nom_de_la_commune": "STE FOY L ARGENTIERE", "libell_d_acheminement": "STE FOY L ARGENTIERE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69201"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4fa4ae19a4d26153c0b25dd34aafe538d228774", "fields": {"nom_de_la_commune": "STE FOY LES LYON", "libell_d_acheminement": "STE FOY LES LYON", "code_postal": "69110", "coordonnees_gps": [45.7361365553, 4.79359970827], "code_commune_insee": "69202"}, "geometry": {"type": "Point", "coordinates": [4.79359970827, 45.7361365553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8629351dbad77e5112224a632dbd8b514f5136d0", "fields": {"nom_de_la_commune": "ST GENIS L ARGENTIERE", "libell_d_acheminement": "ST GENIS L ARGENTIERE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69203"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa5b60fe6fd5803f536c7069e35493aedb936cf", "fields": {"nom_de_la_commune": "ST IGNY DE VERS", "libell_d_acheminement": "ST IGNY DE VERS", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69209"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3d64ce0a3c1ce29b56aadf73a1838ac08873dd", "fields": {"nom_de_la_commune": "ST JULIEN SUR BIBOST", "libell_d_acheminement": "ST JULIEN SUR BIBOST", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69216"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efca161bd7c93fb979c237b9d53d0a8a7a7a38f4", "fields": {"nom_de_la_commune": "ST MARTIN EN HAUT", "libell_d_acheminement": "ST MARTIN EN HAUT", "code_postal": "69850", "coordonnees_gps": [45.6632329556, 4.55020035776], "code_commune_insee": "69227"}, "geometry": {"type": "Point", "coordinates": [4.55020035776, 45.6632329556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65949023f71d9f8a4c64f964a3846287125477d5", "fields": {"nom_de_la_commune": "ST MAURICE SUR DARGOIRE", "libell_d_acheminement": "ST MAURICE SUR DARGOIRE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69228"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d0642c382e13439a72927d35598bd834f5a78f", "fields": {"code_postal": "69440", "code_commune_insee": "69228", "libell_d_acheminement": "ST MAURICE SUR DARGOIRE", "ligne_5": "ROUSSILLIERE", "nom_de_la_commune": "ST MAURICE SUR DARGOIRE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba61ecc5f4f6975878c491b63629505101d9a2b", "fields": {"code_postal": "69560", "code_commune_insee": "69235", "libell_d_acheminement": "ST ROMAIN EN GAL", "ligne_5": "POMERIEUX", "nom_de_la_commune": "ST ROMAIN EN GAL", "coordonnees_gps": [45.5296436366, 4.83023010495]}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676ca1f4265191173b55eeaea7dea92da7f5bc77", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SUR COISE", "libell_d_acheminement": "ST SYMPHORIEN SUR COISE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69238"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fdfc2bd44674298e33c5246280e5ac67fd5f5d3", "fields": {"nom_de_la_commune": "ST VINCENT DE REINS", "libell_d_acheminement": "ST VINCENT DE REINS", "code_postal": "69240", "coordonnees_gps": [46.068199037, 4.3380922269], "code_commune_insee": "69240"}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ecd5bb666964fb5a5772e66f22462184c6dee9b", "fields": {"code_postal": "69440", "code_commune_insee": "69241", "libell_d_acheminement": "TALUYERS", "ligne_5": "LE BATARD", "nom_de_la_commune": "TALUYERS", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d61fd08be88a97f2e549df2152ac0cf81080d26", "fields": {"nom_de_la_commune": "TARARE", "libell_d_acheminement": "TARARE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69243"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497d7b2ff622725e46178115661366b101c192f4", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "BOURG DE THIZY", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d22b3d2e127a9d9b5c6d1f9d7a43a7c74efb2ef", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "MARDORE", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d2c832d8fd83f8559d6b32b5a3a16968ae49e0", "fields": {"nom_de_la_commune": "TRADES", "libell_d_acheminement": "TRADES", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69251"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3d0267915d3adfa489c0c15be48c6d07ba6bca", "fields": {"nom_de_la_commune": "TUPIN ET SEMONS", "libell_d_acheminement": "TUPIN ET SEMONS", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69253"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81fe670f728e6a6d0b23664a681a4c9b44904250", "fields": {"nom_de_la_commune": "VALSONNE", "libell_d_acheminement": "VALSONNE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69254"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3c7aa45c56aee0844182da1ee4868e81d80e5a", "fields": {"nom_de_la_commune": "VILLEFRANCHE SUR SAONE", "libell_d_acheminement": "VILLEFRANCHE SUR SAONE", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69264"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6970b7b62c0b9cbaf416281dc4a125ccd8ab6819", "fields": {"nom_de_la_commune": "VILLE SUR JARNIOUX", "libell_d_acheminement": "VILLE SUR JARNIOUX", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69265"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a069f627362bae25e9144bd65d9f469f4e90e217", "fields": {"nom_de_la_commune": "YZERON", "libell_d_acheminement": "YZERON", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69269"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94704ca362b42453fdebeecf98381c66a7e468e", "fields": {"nom_de_la_commune": "CHAPONNAY", "libell_d_acheminement": "CHAPONNAY", "code_postal": "69970", "coordonnees_gps": [45.626140728, 4.93340438392], "code_commune_insee": "69270"}, "geometry": {"type": "Point", "coordinates": [4.93340438392, 45.626140728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a799b05f6e93507bafd87b2634b4faefdaf1c9ee", "fields": {"nom_de_la_commune": "CORBAS", "libell_d_acheminement": "CORBAS", "code_postal": "69960", "coordonnees_gps": [45.6681487919, 4.90843192874], "code_commune_insee": "69273"}, "geometry": {"type": "Point", "coordinates": [4.90843192874, 45.6681487919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e879d45fd90c0c366a149f6133806569b6a1944", "fields": {"code_postal": "69150", "code_commune_insee": "69275", "libell_d_acheminement": "DECINES CHARPIEU", "ligne_5": "LE MOLARD", "nom_de_la_commune": "DECINES CHARPIEU", "coordonnees_gps": [45.7718173914, 4.96151842912]}, "geometry": {"type": "Point", "coordinates": [4.96151842912, 45.7718173914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0cd85fa0eab49694fd6db6bd4cabfbc31dd0a1d", "fields": {"nom_de_la_commune": "JONS", "libell_d_acheminement": "JONS", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69280"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88e3c650a5282bbb511ab074d7278f09226fb27", "fields": {"nom_de_la_commune": "MIONS", "libell_d_acheminement": "MIONS", "code_postal": "69780", "coordonnees_gps": [45.6517385833, 4.9906607201], "code_commune_insee": "69283"}, "geometry": {"type": "Point", "coordinates": [4.9906607201, 45.6517385833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "696d434e6148d45c6d995de36e55413fca5b47d3", "fields": {"nom_de_la_commune": "ST BONNET DE MURE", "libell_d_acheminement": "ST BONNET DE MURE", "code_postal": "69720", "coordonnees_gps": [45.6898441312, 5.04322574847], "code_commune_insee": "69287"}, "geometry": {"type": "Point", "coordinates": [5.04322574847, 45.6898441312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b071e8f4dc8fe7ccfd989ab4591baa916466f31", "fields": {"nom_de_la_commune": "SATHONAY CAMP", "libell_d_acheminement": "SATHONAY CAMP", "code_postal": "69580", "coordonnees_gps": [45.8366159534, 4.88315598235], "code_commune_insee": "69292"}, "geometry": {"type": "Point", "coordinates": [4.88315598235, 45.8366159534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8174291b1bed9f5997bade30b037184244267de", "fields": {"nom_de_la_commune": "SEREZIN DU RHONE", "libell_d_acheminement": "SEREZIN DU RHONE", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69294"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de82d4ce95eac8897a1f402debeac31462f4b1f", "fields": {"nom_de_la_commune": "SOLAIZE", "libell_d_acheminement": "SOLAIZE", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69296"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe005936e0382acf8f80429a0f46e4d8ffa4c69", "fields": {"nom_de_la_commune": "LYON 09", "libell_d_acheminement": "LYON", "code_postal": "69009", "coordonnees_gps": [45.7824566011, 4.80893117264], "code_commune_insee": "69389"}, "geometry": {"type": "Point", "coordinates": [4.80893117264, 45.7824566011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c4fa7493b81772d68c430c449da53c4858c1ba6", "fields": {"nom_de_la_commune": "AILLEVANS", "libell_d_acheminement": "AILLEVANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70005"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52028ec32796a825d921ea146d11680dc17db5b1", "fields": {"nom_de_la_commune": "ANCIER", "libell_d_acheminement": "ANCIER", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70018"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f655c4803ff4d8907897f01ee647882382c2c3", "fields": {"nom_de_la_commune": "ARSANS", "libell_d_acheminement": "ARSANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70030"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda56446840d16a09b3b38694a28ea56f5e0174c", "fields": {"nom_de_la_commune": "AULX LES CROMARY", "libell_d_acheminement": "AULX LES CROMARY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70036"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7456d3b5b8cdc32816f97af9d9115dcb1f693d", "fields": {"nom_de_la_commune": "AUTET", "libell_d_acheminement": "AUTET", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70037"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be38569b76c5c2dccf5d5ebf031fa5956215c70", "fields": {"nom_de_la_commune": "AVRIGNEY VIREY", "libell_d_acheminement": "AVRIGNEY VIREY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70045"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4c5fa544db71601dc7f53d5272ec5dfbe1b008", "fields": {"code_postal": "70150", "code_commune_insee": "70045", "libell_d_acheminement": "AVRIGNEY VIREY", "ligne_5": "VIREY", "nom_de_la_commune": "AVRIGNEY VIREY", "coordonnees_gps": [47.3218065084, 5.78836351199]}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915292cab0f789fe0c44691be794aa9dc30400e4", "fields": {"nom_de_la_commune": "LA BARRE", "libell_d_acheminement": "LA BARRE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70050"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "624664041984eb2f9e59bfe4379b2ce7d057a743", "fields": {"nom_de_la_commune": "BASSIGNEY", "libell_d_acheminement": "BASSIGNEY", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70052"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ca6b0fd99b623e3a3c692ac9e55808e4f90b269", "fields": {"nom_de_la_commune": "BEAUMOTTE AUBERTANS", "libell_d_acheminement": "BEAUMOTTE AUBERTANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70059"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f71685772b2b2ce5397e6399314e725d2c162a2", "fields": {"nom_de_la_commune": "BELONCHAMP", "libell_d_acheminement": "BELONCHAMP", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70063"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4601a5060445593490a15de960d88fd3027e8a2b", "fields": {"nom_de_la_commune": "BOULIGNEY", "libell_d_acheminement": "BOULIGNEY", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70083"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5691c14d1d3ebd943da268fd09c8c8fd7499e7", "fields": {"nom_de_la_commune": "BOURGUIGNON LES CONFLANS", "libell_d_acheminement": "BOURGUIGNON LES CONFLANS", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70087"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2985e2d8576b4ee31e7daff52b9f9d27839f6802", "fields": {"nom_de_la_commune": "BREUREY LES FAVERNEY", "libell_d_acheminement": "BREUREY LES FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70095"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e431afe6e4a36e38015b35ff12a09934333f74", "fields": {"code_postal": "70140", "code_commune_insee": "70101", "libell_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", "ligne_5": "MONTSEUGNY", "nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", "coordonnees_gps": [47.3157094968, 5.59575332821]}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622806c7891eb47c4b7af340f6873107f2e9fa96", "fields": {"nom_de_la_commune": "BRUSSEY", "libell_d_acheminement": "BRUSSEY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70102"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd794582ff815c6311c61d7f4fe45048a0892de", "fields": {"nom_de_la_commune": "BUCEY LES GY", "libell_d_acheminement": "BUCEY LES GY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70104"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283096aba297074d40d7ded5a3a147e47f7b81ba", "fields": {"nom_de_la_commune": "CHAMBORNAY LES BELLEVAUX", "libell_d_acheminement": "CHAMBORNAY LES BELLEVAUX", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70118"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60e7af7a79f095527502d789a77266916fb86a3", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "MARGILLEY", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cb05fab7d6ccaca3f2a5a6ed6e6c4f2e4caef0", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "MONTARLOT LES CHAMPLITTE", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd094aa2aa06ea30f3c911ccb4a8ffac99c28b8b", "fields": {"nom_de_la_commune": "LA CHAPELLE ST QUILLAIN", "libell_d_acheminement": "LA CHAPELLE ST QUILLAIN", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70129"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae447961dcff0a444fbbf1c5ab21d21a39867af", "fields": {"nom_de_la_commune": "CHARGEY LES PORT", "libell_d_acheminement": "CHARGEY LES PORT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70133"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f6d149f040ee1d2f48cede476ab3870aa41872", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70141"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3c112dbc655d0bc1845458217762f89cd75fba", "fields": {"nom_de_la_commune": "CHAUX LA LOTIERE", "libell_d_acheminement": "CHAUX LA LOTIERE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70145"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d49fdb2da88dee97b6cae98cd4274377513f28a", "fields": {"nom_de_la_commune": "CHAVANNE", "libell_d_acheminement": "CHAVANNE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70147"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcab18c55e9bea357deb1da0e1c8e2eb33b47e86", "fields": {"nom_de_la_commune": "CORRAVILLERS", "libell_d_acheminement": "CORRAVILLERS", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70176"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98400c0cb3d1e222e2e4c38647538758fe8e337", "fields": {"nom_de_la_commune": "LA COTE", "libell_d_acheminement": "LA COTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70178"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22546543dfe8a816e91d0b6ec454a2be99cdef3e", "fields": {"nom_de_la_commune": "COURCUIRE", "libell_d_acheminement": "COURCUIRE", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70181"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b144b5f2f8b7d2cb5ce22ed69232d3f4dcb517ed", "fields": {"nom_de_la_commune": "COUTHENANS", "libell_d_acheminement": "COUTHENANS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70184"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b961a8dfa0a28f24f300fa7e475a935ba71915ff", "fields": {"nom_de_la_commune": "CUVE", "libell_d_acheminement": "CUVE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70194"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37a119a5906ab7807392bdae35b36053075fd29", "fields": {"nom_de_la_commune": "DAMBENOIT LES COLOMBE", "libell_d_acheminement": "DAMBENOIT LES COLOMBE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70195"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c1e489cc55d8dcd322fc954cde38bbb09cfb10", "fields": {"code_postal": "70200", "code_commune_insee": "70195", "libell_d_acheminement": "DAMBENOIT LES COLOMBE", "ligne_5": "COLOMBE LES BITHAINE", "nom_de_la_commune": "DAMBENOIT LES COLOMBE", "coordonnees_gps": [47.6775063744, 6.50353320831]}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed895f5e75c7e29f3c1be4289016782aa182e59", "fields": {"nom_de_la_commune": "DAMPVALLEY LES COLOMBE", "libell_d_acheminement": "DAMPVALLEY LES COLOMBE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70199"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f8152b7db3c669200fb87b0dc05d969d146c6bd", "fields": {"nom_de_la_commune": "DAMPVALLEY ST PANCRAS", "libell_d_acheminement": "DAMPVALLEY ST PANCRAS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70200"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca61f3d90df1bf5f8c10048caa62e35a575724f5", "fields": {"nom_de_la_commune": "DELAIN", "libell_d_acheminement": "DELAIN", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70201"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd129581ce2e38e5a6f04264f71db23f9d77623c", "fields": {"nom_de_la_commune": "ECHAVANNE", "libell_d_acheminement": "ECHAVANNE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70205"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9738d088fc70130487e6095cc16944f90c6092a3", "fields": {"nom_de_la_commune": "ESBOZ BREST", "libell_d_acheminement": "ESBOZ BREST", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70216"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e971e4d9b26cd4e127ddfaef79771daf9482beaf", "fields": {"nom_de_la_commune": "ESMOULINS", "libell_d_acheminement": "ESMOULINS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70218"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567c8bf06e8dd1e48e6e001086556d93b0a06670", "fields": {"nom_de_la_commune": "ETOBON", "libell_d_acheminement": "ETOBON", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70221"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9ded4607b0278a6c96beb284e019d36f5c31aa", "fields": {"nom_de_la_commune": "FALLON", "libell_d_acheminement": "FALLON", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70226"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bbb9b73cf24c1b4db6fc403b7c8e48369c7d648", "fields": {"nom_de_la_commune": "FERRIERES LES SCEY", "libell_d_acheminement": "FERRIERES LES SCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70232"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99b212aa3b614fbb5919a7d514966b0802b83dd", "fields": {"nom_de_la_commune": "FILAIN", "libell_d_acheminement": "FILAIN", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70234"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1198dd91880f1c840ff964bed85a5db2545fe3e7", "fields": {"nom_de_la_commune": "FLEUREY LES FAVERNEY", "libell_d_acheminement": "FLEUREY LES FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70236"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee2975baf5131e7f0118a5d58fd06de547c0880", "fields": {"nom_de_la_commune": "FONDREMAND", "libell_d_acheminement": "FONDREMAND", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70239"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf245365b5ef25c0db7068b32debdec90b99280", "fields": {"nom_de_la_commune": "FONTAINE LES LUXEUIL", "libell_d_acheminement": "FONTAINE LES LUXEUIL", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70240"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af90287cb9ded89aa825708eb1c454778bf3463c", "fields": {"nom_de_la_commune": "FOUVENT ST ANDOCHE", "libell_d_acheminement": "FOUVENT ST ANDOCHE", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70247"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed251a6baa92b7cd3558946d6a9738b45064b43", "fields": {"nom_de_la_commune": "FRAHIER ET CHATEBIER", "libell_d_acheminement": "FRAHIER ET CHATEBIER", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70248"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96782e206b7b6b986b2e367355e2b8eb7f3713cd", "fields": {"nom_de_la_commune": "FRANCHEVELLE", "libell_d_acheminement": "FRANCHEVELLE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70250"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3185dc567899b02438e18581c4edff195bfc66", "fields": {"nom_de_la_commune": "ST SAUVEUR DES LANDES", "libell_d_acheminement": "ST SAUVEUR DES LANDES", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35310"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2cc7a980f5e313209d189995a4af0122cd774a", "fields": {"nom_de_la_commune": "ST SULPICE LA FORET", "libell_d_acheminement": "ST SULPICE LA FORET", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35315"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "391f91ccd3586b277052e52b60636e1559f75288", "fields": {"nom_de_la_commune": "ST THURIAL", "libell_d_acheminement": "ST THURIAL", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35319"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c544a944e43790daf47699d45ce2e784e89a636b", "fields": {"nom_de_la_commune": "LE SEL DE BRETAGNE", "libell_d_acheminement": "LE SEL DE BRETAGNE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35322"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e781cb3ab8de3a57c876b4018b7f36e868f8159", "fields": {"nom_de_la_commune": "SIXT SUR AFF", "libell_d_acheminement": "SIXT SUR AFF", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35328"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "518ff226b1d6409e23dfcf4f49eb94ab3ef7d22b", "fields": {"nom_de_la_commune": "LE THEIL DE BRETAGNE", "libell_d_acheminement": "LE THEIL DE BRETAGNE", "code_postal": "35240", "coordonnees_gps": [47.9216015444, -1.36801801684], "code_commune_insee": "35333"}, "geometry": {"type": "Point", "coordinates": [-1.36801801684, 47.9216015444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c367e0d792fa8b00d19248a43a9004dcac8e241", "fields": {"nom_de_la_commune": "THORIGNE FOUILLARD", "libell_d_acheminement": "THORIGNE FOUILLARD", "code_postal": "35235", "coordonnees_gps": [48.1563529935, -1.58358444348], "code_commune_insee": "35334"}, "geometry": {"type": "Point", "coordinates": [-1.58358444348, 48.1563529935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd2c6dc0ed202789a324e527c62ac9c4c6bb417f", "fields": {"nom_de_la_commune": "THOURIE", "libell_d_acheminement": "THOURIE", "code_postal": "35134", "coordonnees_gps": [47.8649465156, -1.44024199912], "code_commune_insee": "35335"}, "geometry": {"type": "Point", "coordinates": [-1.44024199912, 47.8649465156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa1b19a4de66b0f3ee8338d665f0e0c77486134", "fields": {"nom_de_la_commune": "TRESSE", "libell_d_acheminement": "TRESSE", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35344"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186db898212c68ab53145e93d06373609fbf9e65", "fields": {"nom_de_la_commune": "TREVERIEN", "libell_d_acheminement": "TREVERIEN", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35345"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d069f5f2aa7f05e9059b82436b36ae195dba8c7", "fields": {"nom_de_la_commune": "VAL D IZE", "libell_d_acheminement": "VAL D IZE", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35347"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa5585d9cdc1e00776b3d52e13441edd70b8abe", "fields": {"nom_de_la_commune": "VIEUX VIEL", "libell_d_acheminement": "VIEUX VIEL", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35354"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfe250da4157da0d3adcb8769f33c7dff93183c", "fields": {"nom_de_la_commune": "VILLAMEE", "libell_d_acheminement": "VILLAMEE", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35357"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a97eba9be6d455e14feee366fe7206351e4c52", "fields": {"nom_de_la_commune": "VITRE", "libell_d_acheminement": "VITRE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35360"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70978cb5eca600e49a268b7b0acd2cf50855a2e1", "fields": {"nom_de_la_commune": "AMBRAULT", "libell_d_acheminement": "AMBRAULT", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36003"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699b5e5d8630b3a609e636c645354708198fe7e9", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36011"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45421e8735048adb35bf852c51716f1b87011054", "fields": {"nom_de_la_commune": "BAZAIGES", "libell_d_acheminement": "BAZAIGES", "code_postal": "36270", "coordonnees_gps": [46.4580307735, 1.55896815313], "code_commune_insee": "36014"}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e811b5a562d74e9fc53e95b67118bc2eb2c40a0", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36015"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b409ade9e852d364c3e76d8deb931b7fcb31ab3d", "fields": {"nom_de_la_commune": "LA BERTHENOUX", "libell_d_acheminement": "LA BERTHENOUX", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36017"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb74fea6cce81b994fcedc4f8f9703fc2d2b5aa", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36036"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a26b89630b229f16c19cdf2f88456ac8d9a1c2", "fields": {"nom_de_la_commune": "COINGS", "libell_d_acheminement": "COINGS", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36057"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c3717e033e83ccb45ce69317fa1ae171a41b46", "fields": {"nom_de_la_commune": "CONCREMIERS", "libell_d_acheminement": "CONCREMIERS", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36058"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045c6280aec804868494969e33920b9ab5e08cdc", "fields": {"nom_de_la_commune": "DOUADIC", "libell_d_acheminement": "DOUADIC", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36066"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a5dbcba9eea9f50acd168edd3181b8fec484bf", "fields": {"code_postal": "36270", "code_commune_insee": "36070", "libell_d_acheminement": "EGUZON CHANTOME", "ligne_5": "CHANTOME", "nom_de_la_commune": "EGUZON CHANTOME", "coordonnees_gps": [46.4580307735, 1.55896815313]}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b431c0b07a8ba268e905590ccbbb88ad932a9a", "fields": {"nom_de_la_commune": "ETRECHET", "libell_d_acheminement": "ETRECHET", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36071"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded3325f89c5fdd7fd8bdbff27f29e5ceecd09a6", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36075"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2902593eb235d198604965985614531cf9947e", "fields": {"nom_de_la_commune": "GOURNAY", "libell_d_acheminement": "GOURNAY", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36084"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c1d61691a33d52a7e7a29f473f65e8376bf5e4", "fields": {"nom_de_la_commune": "GUILLY", "libell_d_acheminement": "GUILLY", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36085"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd5f7d4913ba719ff98456df7fb1f72dbcccefb", "fields": {"nom_de_la_commune": "LINIEZ", "libell_d_acheminement": "LINIEZ", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36097"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5707179fe4c3a3e4f736b9e1d5be8796a66502e2", "fields": {"nom_de_la_commune": "LIZERAY", "libell_d_acheminement": "LIZERAY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36098"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3496daf47fd6c6ba069dde6aa7d518b1b37a169b", "fields": {"nom_de_la_commune": "LOURDOUEIX ST MICHEL", "libell_d_acheminement": "LOURDOUEIX ST MICHEL", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36099"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800e408d257e1ca4108d542e032d583cb3583d9d", "fields": {"nom_de_la_commune": "MALICORNAY", "libell_d_acheminement": "MALICORNAY", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36111"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e6f170ad1e0031d10503ced0073f7ece3a8caa", "fields": {"nom_de_la_commune": "MEOBECQ", "libell_d_acheminement": "MEOBECQ", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36118"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038ca59467f62a1d65aa5025fdde9a1c66d51291", "fields": {"nom_de_la_commune": "NEUILLAY LES BOIS", "libell_d_acheminement": "NEUILLAY LES BOIS", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36139"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117bf2921c35dda1ba527f1f1febcf7d0033e7b3", "fields": {"nom_de_la_commune": "NEUVY PAILLOUX", "libell_d_acheminement": "NEUVY PAILLOUX", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36140"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c0c33a42207a88c28d6d272b22653f855a64c7", "fields": {"nom_de_la_commune": "NURET LE FERRON", "libell_d_acheminement": "NURET LE FERRON", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36144"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77d6fef62e4416581f04d2bc5f5be1ed03b2ac5e", "fields": {"nom_de_la_commune": "PARNAC", "libell_d_acheminement": "PARNAC", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36150"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77d4ef5993bf8fd3ce5e61e1c7adb707111d8e9e", "fields": {"nom_de_la_commune": "PAUDY", "libell_d_acheminement": "PAUDY", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36152"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef586e4315698854d8bb71893368ec91f7606f69", "fields": {"nom_de_la_commune": "PERASSAY", "libell_d_acheminement": "PERASSAY", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36156"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620729adffab02ed0e27caba663cf465113bd0fe", "fields": {"nom_de_la_commune": "ROUVRES LES BOIS", "libell_d_acheminement": "ROUVRES LES BOIS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36175"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2934683d697885160c945feb9a3a6962556bcec1", "fields": {"nom_de_la_commune": "ST AIGNY", "libell_d_acheminement": "ST AIGNY", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36178"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42757494a84376184dd3286cb2e51c5da86b95bb", "fields": {"nom_de_la_commune": "ST AOUSTRILLE", "libell_d_acheminement": "ST AOUSTRILLE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36179"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe78b4495f0109336afd31e5d8d45700711bc3a", "fields": {"nom_de_la_commune": "ST HILAIRE SUR BENAIZE", "libell_d_acheminement": "ST HILAIRE SUR BENAIZE", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36197"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a21156ef64a3d4dba3409b831506876bad420ad", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "36250", "coordonnees_gps": [46.7938326835, 1.59829810404], "code_commune_insee": "36202"}, "geometry": {"type": "Point", "coordinates": [1.59829810404, 46.7938326835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0343d1400b87b7421c2f58aaa1884add0083a12f", "fields": {"code_postal": "36250", "code_commune_insee": "36202", "libell_d_acheminement": "ST MAUR", "ligne_5": "VILLERS LES ORMES", "nom_de_la_commune": "ST MAUR", "coordonnees_gps": [46.7938326835, 1.59829810404]}, "geometry": {"type": "Point", "coordinates": [1.59829810404, 46.7938326835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4790b6a63df1e8696b2853b6b8e19e5a593561b", "fields": {"nom_de_la_commune": "SAZERAY", "libell_d_acheminement": "SAZERAY", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36214"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef81d0630979dd3e7beaf335f7acec3ed1e5ed1a", "fields": {"nom_de_la_commune": "SELLES SUR NAHON", "libell_d_acheminement": "SELLES SUR NAHON", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36216"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bf3b14a3e38601083adfdd5dbea616b13566c09", "fields": {"nom_de_la_commune": "TRANZAULT", "libell_d_acheminement": "TRANZAULT", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36226"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c781420612a24708f94ba15552f02d28b0da7f26", "fields": {"code_postal": "36210", "code_commune_insee": "36229", "libell_d_acheminement": "VAL FOUZON", "ligne_5": "PARPECAY", "nom_de_la_commune": "VAL FOUZON", "coordonnees_gps": [47.1964381478, 1.69756497046]}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f07479e0001faeb447d6920ad6b759130d7a941", "fields": {"nom_de_la_commune": "VATAN", "libell_d_acheminement": "VATAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36230"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffab49c095ac360b07e813215dcf63e5e07c5df3", "fields": {"nom_de_la_commune": "VICQ EXEMPLET", "libell_d_acheminement": "VICQ EXEMPLET", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36236"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c285c453a14fee4b7a34b334ef74e337c7e0dda3", "fields": {"nom_de_la_commune": "VIJON", "libell_d_acheminement": "VIJON", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36240"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44167654b7a7badf8fc9f733d082ae4cfa7df01a", "fields": {"nom_de_la_commune": "ARTANNES SUR INDRE", "libell_d_acheminement": "ARTANNES SUR INDRE", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37006"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8328d9e56ae32acc72eb4aaca80313317286a86", "fields": {"nom_de_la_commune": "ATHEE SUR CHER", "libell_d_acheminement": "ATHEE SUR CHER", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37008"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe31880b460203de0b09fe7201a5022f5458940", "fields": {"nom_de_la_commune": "AVOINE", "libell_d_acheminement": "AVOINE", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37011"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b46df44c2b8e90f48acd91ee96b895521ebad97", "fields": {"nom_de_la_commune": "AZAY SUR INDRE", "libell_d_acheminement": "AZAY SUR INDRE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37016"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2889b225b589a991acaf718f60de9d175707d400", "fields": {"nom_de_la_commune": "BERTHENAY", "libell_d_acheminement": "BERTHENAY", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37025"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1af96fafb0855f72d0f9b04642ad7affb0fbe7a", "fields": {"nom_de_la_commune": "BOSSEE", "libell_d_acheminement": "BOSSEE", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37029"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc79db82cbd75d86ef44403ef5f2773d3b945369", "fields": {"nom_de_la_commune": "BREHEMONT", "libell_d_acheminement": "BREHEMONT", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37038"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b943eff2968008d13330fd61d44a82d91804cc", "fields": {"nom_de_la_commune": "CHAMBRAY LES TOURS", "libell_d_acheminement": "CHAMBRAY LES TOURS", "code_postal": "37170", "coordonnees_gps": [47.3315126303, 0.715864698032], "code_commune_insee": "37050"}, "geometry": {"type": "Point", "coordinates": [0.715864698032, 47.3315126303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3118b7b0045fdf9f1fa4f49802c88bbafac3b350", "fields": {"nom_de_la_commune": "CHAMPIGNY SUR VEUDE", "libell_d_acheminement": "CHAMPIGNY SUR VEUDE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37051"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4d7e40758347b12f13f95d68cf0fdec9f04854", "fields": {"nom_de_la_commune": "CHANCAY", "libell_d_acheminement": "CHANCAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37052"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e41a3aebd7e4d4321a40113d787fd354e76661", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR LOIRE", "libell_d_acheminement": "LA CHAPELLE SUR LOIRE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37058"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfefaedb7c08a77e05434d4e03af707a0dcca31d", "fields": {"nom_de_la_commune": "CHAUMUSSAY", "libell_d_acheminement": "CHAUMUSSAY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37064"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58521f826813b4c2aea94eb7b3c85a061e73f209", "fields": {"nom_de_la_commune": "CHEILLE", "libell_d_acheminement": "CHEILLE", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37067"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d47263e3f762fae0f975e086056d969ce37d2365", "fields": {"nom_de_la_commune": "CHEMILLE SUR INDROIS", "libell_d_acheminement": "CHEMILLE SUR INDROIS", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37069"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "816d8a73d86dd90f77f3b64989d903a3455e1c6f", "fields": {"nom_de_la_commune": "CINQ MARS LA PILE", "libell_d_acheminement": "CINQ MARS LA PILE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37077"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73686f9892616f89b953692b8a467ed952da26a9", "fields": {"nom_de_la_commune": "COURCOUE", "libell_d_acheminement": "COURCOUE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37087"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1422bfa650788337b3dc6427908c2093bfcd22d", "fields": {"nom_de_la_commune": "COUZIERS", "libell_d_acheminement": "COUZIERS", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37088"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48257b1bfd5590746e193994e94f63828dec5207", "fields": {"nom_de_la_commune": "CROUZILLES", "libell_d_acheminement": "CROUZILLES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37093"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177be99becd97acb4628b1bcea9eb28de850dd87", "fields": {"nom_de_la_commune": "DIERRE", "libell_d_acheminement": "DIERRE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37096"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4298e0e72c2ec6f51fce58db55301202dd99674a", "fields": {"nom_de_la_commune": "DOLUS LE SEC", "libell_d_acheminement": "DOLUS LE SEC", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37097"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0da1657d4e14b94f78fbd7a99b3a3208bbfa67", "fields": {"nom_de_la_commune": "LES ESSARDS", "libell_d_acheminement": "LES ESSARDS", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37102"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "960177717795ced6a5919d85487000c4b5d5959f", "fields": {"nom_de_la_commune": "ESVRES", "libell_d_acheminement": "ESVRES", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37104"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740b6da0f079d53ee34d0f8cc830b62e1baaf9c5", "fields": {"nom_de_la_commune": "FERRIERE LARCON", "libell_d_acheminement": "FERRIERE LARCON", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37107"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da07b7f7abe4509401fa7c2260e2c82ea510368c", "fields": {"nom_de_la_commune": "FERRIERE SUR BEAULIEU", "libell_d_acheminement": "FERRIERE SUR BEAULIEU", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37108"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c9b6ae75cd1121ae6a5ec472e823ed360152bc", "fields": {"nom_de_la_commune": "GIZEUX", "libell_d_acheminement": "GIZEUX", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37112"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dced61d7914adbc28ab14101818fe722c9999a3", "fields": {"nom_de_la_commune": "LES HERMITES", "libell_d_acheminement": "LES HERMITES", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37116"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c235fdf78dd04610e3ef4f5c9b3fc10ced30d9", "fields": {"nom_de_la_commune": "LOCHES", "libell_d_acheminement": "LOCHES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37132"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b01298bab680c66f0096a696ac7ae1c67038f9", "fields": {"nom_de_la_commune": "LUBLE", "libell_d_acheminement": "LUBLE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37137"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c791ef9cd0172980a85130e642acc6fb18d1466d", "fields": {"nom_de_la_commune": "LUYNES", "libell_d_acheminement": "LUYNES", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37139"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5ff9a313c828fa1d54167b00737b54f8419441", "fields": {"nom_de_la_commune": "MARCILLY SUR VIENNE", "libell_d_acheminement": "MARCILLY SUR VIENNE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37147"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a7b61351fafa5caa4f7f213aa05adbf3d0e31a3", "fields": {"nom_de_la_commune": "MARIGNY MARMANDE", "libell_d_acheminement": "MARIGNY MARMANDE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37148"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b27cd2f9ea4d74c7abf04adb4e9b9c489017222", "fields": {"nom_de_la_commune": "MAZIERES DE TOURAINE", "libell_d_acheminement": "MAZIERES DE TOURAINE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37150"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eae8202a02cc3b7a2eb300e04ba88e0db4a99d4", "fields": {"nom_de_la_commune": "MONTBAZON", "libell_d_acheminement": "MONTBAZON", "code_postal": "37250", "coordonnees_gps": [47.2559000067, 0.703996574131], "code_commune_insee": "37154"}, "geometry": {"type": "Point", "coordinates": [0.703996574131, 47.2559000067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcf5937e471b3414ca5da78cdeb11c611940245", "fields": {"nom_de_la_commune": "MOSNES", "libell_d_acheminement": "MOSNES", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37161"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f4ab7d6d5d9de0f80580f6e38eb4bd4627d213", "fields": {"nom_de_la_commune": "NAZELLES NEGRON", "libell_d_acheminement": "NAZELLES NEGRON", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37163"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa4cb0682b608b1682e5fcb4eede4e5df488b0b", "fields": {"nom_de_la_commune": "NEUIL", "libell_d_acheminement": "NEUIL", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37165"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ebc3bd4d02460353a51a2d7343946676fd12dd", "fields": {"nom_de_la_commune": "STE MARTHE", "libell_d_acheminement": "STE MARTHE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27568"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70741a7a7531bb36a85bb6006357042a6fd9041c", "fields": {"nom_de_la_commune": "STE OPPORTUNE LA MARE", "libell_d_acheminement": "STE OPPORTUNE LA MARE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27577"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92dc4aa55bbbe8cc38f614a8121bcd58714dc8dd", "fields": {"code_postal": "27160", "code_commune_insee": "27578", "libell_d_acheminement": "STE MARIE D ATTEZ", "ligne_5": "ST OUEN D ATTEZ", "nom_de_la_commune": "STE MARIE D ATTEZ", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c968e4798f0731ba67cef606143a1b154c000be", "fields": {"nom_de_la_commune": "ST PHILBERT SUR BOISSEY", "libell_d_acheminement": "ST PHILBERT SUR BOISSEY", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27586"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ed7e21f11dbdad1c07948678a14ebad5f86a80", "fields": {"nom_de_la_commune": "ST PIERRE D AUTILS", "libell_d_acheminement": "ST PIERRE D AUTILS", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27588"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfffdfa83eaa9fedae37352c487294668d7e39d", "fields": {"nom_de_la_commune": "ST PIERRE DE BAILLEUL", "libell_d_acheminement": "ST PIERRE DE BAILLEUL", "code_postal": "27920", "coordonnees_gps": [49.1220332709, 1.39197763752], "code_commune_insee": "27589"}, "geometry": {"type": "Point", "coordinates": [1.39197763752, 49.1220332709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea90584c052c12b1f2ba9940f68a2250e0c1089c", "fields": {"nom_de_la_commune": "ST PIERRE DE CERNIERES", "libell_d_acheminement": "ST PIERRE DE CERNIERES", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27590"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b4e4919c512e5d22a51480b75c375330f75285", "fields": {"nom_de_la_commune": "ST PIERRE DES IFS", "libell_d_acheminement": "ST PIERRE DES IFS", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27594"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2038f71405eb97759e65cc04f950cf5907aa673", "fields": {"nom_de_la_commune": "ST QUENTIN DES ISLES", "libell_d_acheminement": "ST QUENTIN DES ISLES", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27600"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4ea2dce93a2ae83cc2eb5606f6a55ccbd545ff", "fields": {"nom_de_la_commune": "ST VINCENT DES BOIS", "libell_d_acheminement": "ST VINCENT DES BOIS", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27612"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0006183aeb5d50267a55395544415f7cb44567d2", "fields": {"nom_de_la_commune": "ST VINCENT DU BOULAY", "libell_d_acheminement": "ST VINCENT DU BOULAY", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27613"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f3a5b655dbb503c8012e5f6c86286196a08cc05", "fields": {"nom_de_la_commune": "SEBECOURT", "libell_d_acheminement": "SEBECOURT", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27618"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3161ba5d6da42a7116b5680221b08771c3f9a804", "fields": {"nom_de_la_commune": "BUISSY", "libell_d_acheminement": "BUISSY", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62184"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2fb5004f976e86ce888e1a08586a9162a712303", "fields": {"nom_de_la_commune": "BULLECOURT", "libell_d_acheminement": "BULLECOURT", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62185"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74aa04b1b971afe3ca56a0bb63fc90aecc0f1821", "fields": {"nom_de_la_commune": "BUNEVILLE", "libell_d_acheminement": "BUNEVILLE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62187"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f98d882534ad2de171485898e5800ee4c5d6b02", "fields": {"nom_de_la_commune": "CAMBLIGNEUL", "libell_d_acheminement": "CAMBLIGNEUL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62198"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6281a56a03074df44b44a4d9c5c698a13fc566cd", "fields": {"nom_de_la_commune": "CAMPAGNE LES GUINES", "libell_d_acheminement": "CAMPAGNE LES GUINES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62203"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c951fdf321d33b4e7cc817a7abad45768d4f8e0f", "fields": {"nom_de_la_commune": "CAMPIGNEULLES LES GRANDES", "libell_d_acheminement": "CAMPIGNEULLES LES GRANDES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62206"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18caa31cef05dbc0d15db380d3c9dcef13bdd2ce", "fields": {"nom_de_la_commune": "CANTELEUX", "libell_d_acheminement": "CANTELEUX", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62210"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962a3d31a61aaa3d9eb0cc31281c95d8ff27cc2d", "fields": {"nom_de_la_commune": "CARENCY", "libell_d_acheminement": "CARENCY", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62213"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fbdc14cc55b9f150c9dac9dc751f05ef9f90952", "fields": {"nom_de_la_commune": "CARVIN", "libell_d_acheminement": "CARVIN", "code_postal": "62220", "coordonnees_gps": [50.4895582272, 2.94871056601], "code_commune_insee": "62215"}, "geometry": {"type": "Point", "coordinates": [2.94871056601, 50.4895582272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9973515caef0f7edc9f32de69093353d75b01ee6", "fields": {"nom_de_la_commune": "CAUCHY A LA TOUR", "libell_d_acheminement": "CAUCHY A LA TOUR", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62217"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce95a5fd6ee1b70030905b2788611624646c56c", "fields": {"nom_de_la_commune": "CLAIRMARAIS", "libell_d_acheminement": "CLAIRMARAIS", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62225"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fefbcdc7e9e24d97f80eaccdcd226fdbdd5118f", "fields": {"nom_de_la_commune": "COLLINE BEAUMONT", "libell_d_acheminement": "COLLINE BEAUMONT", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62231"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3f0fa0f1aa27ec7369ee25474bde82c757c4be", "fields": {"nom_de_la_commune": "LA COMTE", "libell_d_acheminement": "LA COMTE", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62232"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f672f14b15edad3237bb84888032c11da7d9a7f0", "fields": {"nom_de_la_commune": "CONCHY SUR CANCHE", "libell_d_acheminement": "CONCHY SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62234"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36084d0a5e05cd5677267c910e9ac25b47061e7d", "fields": {"nom_de_la_commune": "CONTEVILLE LES BOULOGNE", "libell_d_acheminement": "CONTEVILLE LES BOULOGNE", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62237"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de41bf67fc35ff00bc37203abb4585638fe6b4f", "fields": {"nom_de_la_commune": "COULOGNE", "libell_d_acheminement": "COULOGNE", "code_postal": "62137", "coordonnees_gps": [50.916892866, 1.88690595419], "code_commune_insee": "62244"}, "geometry": {"type": "Point", "coordinates": [1.88690595419, 50.916892866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66d04a1b2a9378783292d8048cc8e56e9850b77", "fields": {"nom_de_la_commune": "COUPELLE VIEILLE", "libell_d_acheminement": "COUPELLE VIEILLE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62247"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd55ab5148a70c2120cdcb3d614db032091ab7eb", "fields": {"nom_de_la_commune": "COURCELLES LES LENS", "libell_d_acheminement": "COURCELLES LES LENS", "code_postal": "62970", "coordonnees_gps": [50.4149409295, 3.01587971483], "code_commune_insee": "62249"}, "geometry": {"type": "Point", "coordinates": [3.01587971483, 50.4149409295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e139c51636a7adda1fd1584a6cecf7cba3c322b2", "fields": {"nom_de_la_commune": "COYECQUES", "libell_d_acheminement": "COYECQUES", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62254"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d8f516c522659ed897cf38250dc3a55407e068", "fields": {"nom_de_la_commune": "DELETTES", "libell_d_acheminement": "DELETTES", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62265"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d859e7109076633c733186a7293e47a07dcb33d7", "fields": {"nom_de_la_commune": "DENNEBROEUCQ", "libell_d_acheminement": "DENNEBROEUCQ", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62267"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a059fc6cf4ef4578bfca17b39d790359795db53", "fields": {"nom_de_la_commune": "DOUCHY LES AYETTE", "libell_d_acheminement": "DOUCHY LES AYETTE", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62272"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e7da0b7f34584749d8f652767e20e37ac23e76c", "fields": {"nom_de_la_commune": "DROCOURT", "libell_d_acheminement": "DROCOURT", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62277"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43bb64f4c802c506a57eb283b1d93798b29fb8d", "fields": {"nom_de_la_commune": "DROUVIN LE MARAIS", "libell_d_acheminement": "DROUVIN LE MARAIS", "code_postal": "62131", "coordonnees_gps": [50.4979995318, 2.63240823084], "code_commune_insee": "62278"}, "geometry": {"type": "Point", "coordinates": [2.63240823084, 50.4979995318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc5795173e5a2809357892320b48c51d5391af29", "fields": {"nom_de_la_commune": "DUISANS", "libell_d_acheminement": "DUISANS", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62279"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fcddd22d29942eb9fba84ccb02f297f56c4d76f", "fields": {"nom_de_la_commune": "DURY", "libell_d_acheminement": "DURY", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62280"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d6349775d347f06db1aa8f3add06fa52cda5ab", "fields": {"nom_de_la_commune": "ECOURT ST QUENTIN", "libell_d_acheminement": "ECOURT ST QUENTIN", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62284"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d4db0290b742711633ed08a19b44f1aba8c840", "fields": {"nom_de_la_commune": "ELNES", "libell_d_acheminement": "ELNES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62292"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4949039317d74349ddb4fea81c0c26b3bf2cda", "fields": {"nom_de_la_commune": "ENQUIN SUR BAILLONS", "libell_d_acheminement": "ENQUIN SUR BAILLONS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62296"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3294a2d7b74e51253daa67547f32b585cdaae18f", "fields": {"nom_de_la_commune": "ESQUERDES", "libell_d_acheminement": "ESQUERDES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62309"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cf47e4dbf71e60d2ac935a5af9242a28f0e355", "fields": {"nom_de_la_commune": "ESTREE WAMIN", "libell_d_acheminement": "ESTREE WAMIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62316"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42922b0ec7a2daa2ea437fe00e33e87383c14192", "fields": {"nom_de_la_commune": "FARBUS", "libell_d_acheminement": "FARBUS", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62324"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1329b08c6161e25487a62041d733610bc0b8471d", "fields": {"nom_de_la_commune": "FIENNES", "libell_d_acheminement": "FIENNES", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62334"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda925ff2ec18bdeaae321430f163f4eb801572f", "fields": {"nom_de_la_commune": "FILLIEVRES", "libell_d_acheminement": "FILLIEVRES", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62335"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5a4e8dae0a4f0c5b02185e69b855b234252a5a", "fields": {"nom_de_la_commune": "FLECHIN", "libell_d_acheminement": "FLECHIN", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62336"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a01273cb71392fa3ed1935332da7542745180f8b", "fields": {"nom_de_la_commune": "FLEURBAIX", "libell_d_acheminement": "FLEURBAIX", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62338"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74deecdc19c65c2cec0cb97bef16ed6680829039", "fields": {"nom_de_la_commune": "FLORINGHEM", "libell_d_acheminement": "FLORINGHEM", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62340"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c8ea5ef8a524395824189054ecc76e32c15c30", "fields": {"nom_de_la_commune": "FONCQUEVILLERS", "libell_d_acheminement": "FONCQUEVILLERS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62341"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03c39053a081c09ad83f22423a0bc15538551be", "fields": {"nom_de_la_commune": "FOSSEUX", "libell_d_acheminement": "FOSSEUX", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62347"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff7054f5a5cad06147515291a171ef0dc2e71a1", "fields": {"nom_de_la_commune": "FOUFFLIN RICAMETZ", "libell_d_acheminement": "FOUFFLIN RICAMETZ", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62348"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3037d5b8815ef5c8edc90fa668dca747d38f73", "fields": {"nom_de_la_commune": "FOUQUIERES LES LENS", "libell_d_acheminement": "FOUQUIERES LES LENS", "code_postal": "62740", "coordonnees_gps": [50.429254845, 2.9051160951], "code_commune_insee": "62351"}, "geometry": {"type": "Point", "coordinates": [2.9051160951, 50.429254845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df46b5070a3a031b1f78f7767d908a82e27ec841", "fields": {"nom_de_la_commune": "GIVENCHY EN GOHELLE", "libell_d_acheminement": "GIVENCHY EN GOHELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62371"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c1c313ad29f1fca64f50a7293c5aea9ef496c7", "fields": {"nom_de_la_commune": "GIVENCHY LES LA BASSEE", "libell_d_acheminement": "GIVENCHY LES LA BASSEE", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62373"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef3e80b54a43989f48b825341dd6479efd1ff228", "fields": {"nom_de_la_commune": "GRAINCOURT LES HAVRINCOURT", "libell_d_acheminement": "GRAINCOURT LES HAVRINCOURT", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62384"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4640afd54f0a84220db15ef07e39285c5b586a45", "fields": {"nom_de_la_commune": "GUARBECQUE", "libell_d_acheminement": "GUARBECQUE", "code_postal": "62330", "coordonnees_gps": [50.61399538, 2.46439960248], "code_commune_insee": "62391"}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b94a00e0b7546e07f52b4fb44b2ba5a7cf3992", "fields": {"nom_de_la_commune": "HALINGHEN", "libell_d_acheminement": "HALINGHEN", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62402"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1a4e2a44f4ee7d2a9cb1a90f2b5105a00aac0e", "fields": {"nom_de_la_commune": "HALLINES", "libell_d_acheminement": "HALLINES", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62403"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ad2d9433ce781b6bc5cd3a4e1e8db07478f1be", "fields": {"nom_de_la_commune": "HAMELINCOURT", "libell_d_acheminement": "HAMELINCOURT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62406"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e253d7cb0b136799109274e9aa8cd0cf60e2021d", "fields": {"nom_de_la_commune": "HAVRINCOURT", "libell_d_acheminement": "HAVRINCOURT", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62421"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a0111529b1fb590262205aff47866183995c4a", "fields": {"nom_de_la_commune": "HENINEL", "libell_d_acheminement": "HENINEL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62426"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1cbf166e2e687e60ab61597e5829e308e4a287", "fields": {"nom_de_la_commune": "HENNEVEUX", "libell_d_acheminement": "HENNEVEUX", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62429"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdbfc2ffab1e27716feb1b30d42c9ec400d468c1", "fields": {"nom_de_la_commune": "HERICOURT", "libell_d_acheminement": "HERICOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62433"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83151e7fd789fb622f242b9c202b54a781849e2", "fields": {"nom_de_la_commune": "HERLIN LE SEC", "libell_d_acheminement": "HERLIN LE SEC", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62436"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c412bdfeff43963edd3d4ed77eb845fc21b760", "fields": {"nom_de_la_commune": "HERMAVILLE", "libell_d_acheminement": "HERMAVILLE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62438"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4455d61e4f93d22fa40dc8e25a3c74a9fedd45bb", "fields": {"nom_de_la_commune": "HERMELINGHEN", "libell_d_acheminement": "HERMELINGHEN", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62439"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9febd58174a782cdce28387464fa12401babe2b8", "fields": {"nom_de_la_commune": "HESDIN", "libell_d_acheminement": "HESDIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62447"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81406b5009e2200c28647f90b401214cf1b39b4d", "fields": {"nom_de_la_commune": "HOUCHIN", "libell_d_acheminement": "HOUCHIN", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62456"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41903f11562e5cc04582cfe7a5d8dcf2b49c6c0", "fields": {"nom_de_la_commune": "HUMIERES", "libell_d_acheminement": "HUMIERES", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62468"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60e834d8c352879ff3a8c0f8b3045b84579bdfc", "fields": {"code_postal": "62330", "code_commune_insee": "62473", "libell_d_acheminement": "ISBERGUES", "ligne_5": "MOLINGHEM", "nom_de_la_commune": "ISBERGUES", "coordonnees_gps": [50.61399538, 2.46439960248]}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317078b69ac28bf073c94643fdcbb091d3625e71", "fields": {"nom_de_la_commune": "LAIRES", "libell_d_acheminement": "LAIRES", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62485"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89877f45c5b59a3e4bbf32e5a46ce3799a24ec7c", "fields": {"nom_de_la_commune": "LEDINGHEM", "libell_d_acheminement": "LEDINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62495"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8989f1e071b0df43dbeec299f0dd95c612bc3e44", "fields": {"nom_de_la_commune": "LESPESSES", "libell_d_acheminement": "LESPESSES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62500"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9691aeaf109bb1e8a18827642ef533b8a8df05fd", "fields": {"nom_de_la_commune": "LINGHEM", "libell_d_acheminement": "LINGHEM", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62517"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c8a1f7503228c25c8619f1ab503c25a92f1556", "fields": {"nom_de_la_commune": "LOCON", "libell_d_acheminement": "LOCON", "code_postal": "62400", "coordonnees_gps": [50.5494833407, 2.65621048886], "code_commune_insee": "62520"}, "geometry": {"type": "Point", "coordinates": [2.65621048886, 50.5494833407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8f93b02de000c4703cbadbfdd94a70e8be3e03", "fields": {"nom_de_la_commune": "LOISON SUR CREQUOISE", "libell_d_acheminement": "LOISON SUR CREQUOISE", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62522"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8950d712b30991ab2dd5ae5e1e3299de8400eff", "fields": {"nom_de_la_commune": "LONGUENESSE", "libell_d_acheminement": "LONGUENESSE", "code_postal": "62219", "coordonnees_gps": [50.7332429452, 2.228444485], "code_commune_insee": "62525"}, "geometry": {"type": "Point", "coordinates": [2.228444485, 50.7332429452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3badabe03dca0d67aef3f2580c2c47990b74465", "fields": {"nom_de_la_commune": "LUGY", "libell_d_acheminement": "LUGY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62533"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29e9a2c678fbe6eddb44c80b7f658bfa14a6120", "fields": {"nom_de_la_commune": "MARCK", "libell_d_acheminement": "MARCK", "code_postal": "62730", "coordonnees_gps": [50.9324891449, 1.94466017116], "code_commune_insee": "62548"}, "geometry": {"type": "Point", "coordinates": [1.94466017116, 50.9324891449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bc97fede056ceac05a99956debfde2f00ed3a48", "fields": {"nom_de_la_commune": "MARENLA", "libell_d_acheminement": "MARENLA", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62551"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76ea7ac5b04d05deab2549caed9c07513384879", "fields": {"nom_de_la_commune": "MARESVILLE", "libell_d_acheminement": "MARESVILLE", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62554"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee671d0c77b15bf58018acf82ffeddb57079b75", "fields": {"nom_de_la_commune": "MAROEUIL", "libell_d_acheminement": "MAROEUIL", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62557"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7172364edcf3e42534def6b637ce445c2e464e3", "fields": {"nom_de_la_commune": "MENNEVILLE", "libell_d_acheminement": "MENNEVILLE", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62566"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0049dc6f7ce5c1a7dcc6eb83089d49886b148ece", "fields": {"nom_de_la_commune": "METZ EN COUTURE", "libell_d_acheminement": "METZ EN COUTURE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62572"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2aaa1ee2432c13a6bd7eb364b29274b98311cef", "fields": {"nom_de_la_commune": "MONCHEL SUR CANCHE", "libell_d_acheminement": "MONCHEL SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62577"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcaa8923bf0c6746771c7e879de86e7231fbb45", "fields": {"nom_de_la_commune": "MONCHIET", "libell_d_acheminement": "MONCHIET", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62578"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f9820fe093dc8e504d02da0e6ee981418d46cc", "fields": {"nom_de_la_commune": "MONCHY BRETON", "libell_d_acheminement": "MONCHY BRETON", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62580"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31b9357e22be12599d5800b01dccc0171900793", "fields": {"nom_de_la_commune": "MONCHY CAYEUX", "libell_d_acheminement": "MONCHY CAYEUX", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62581"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c2b177a208caa6fcd3a9cf6562419fbe24c699", "fields": {"nom_de_la_commune": "MONCHY LE PREUX", "libell_d_acheminement": "MONCHY LE PREUX", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62582"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5ae10f6ae805d85d204bfefaafe224e0390abc", "fields": {"nom_de_la_commune": "MONT BERNANCHON", "libell_d_acheminement": "MONT BERNANCHON", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62584"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ab4dcc5eb1ad8b303ab75a6778ec5032479760", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62588"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee009552a6b58127ac3af7b8a87f2f68fb3b5ce", "fields": {"nom_de_la_commune": "MONTS EN TERNOIS", "libell_d_acheminement": "MONTS EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62590"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd48ad30d6e21bfe4496562f2670b74b1b485be", "fields": {"nom_de_la_commune": "MORVAL", "libell_d_acheminement": "MORVAL", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62593"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6529ef6b6d5fbff1852f5af8bb0c0ea8e840e9b", "fields": {"nom_de_la_commune": "MOURIEZ", "libell_d_acheminement": "MOURIEZ", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62596"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "701234a75412f25f77bd24e7ad5c636671d38eed", "fields": {"nom_de_la_commune": "NESLES", "libell_d_acheminement": "NESLES", "code_postal": "62152", "coordonnees_gps": [50.6179006282, 1.6259917167], "code_commune_insee": "62603"}, "geometry": {"type": "Point", "coordinates": [1.6259917167, 50.6179006282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8ced1bbdb62057bcfe8a047913055283137db2", "fields": {"nom_de_la_commune": "NEUFCHATEL HARDELOT", "libell_d_acheminement": "NEUFCHATEL HARDELOT", "code_postal": "62152", "coordonnees_gps": [50.6179006282, 1.6259917167], "code_commune_insee": "62604"}, "geometry": {"type": "Point", "coordinates": [1.6259917167, 50.6179006282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b136c5f0f17d0efe17556feae39403f75eadf41", "fields": {"nom_de_la_commune": "NEULETTE", "libell_d_acheminement": "NEULETTE", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62605"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8734f95da59c803b3937831e513d4d1ff85dd9f", "fields": {"nom_de_la_commune": "NEUVE CHAPELLE", "libell_d_acheminement": "NEUVE CHAPELLE", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62606"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3d1f03b20010e8ab8d9c9ff340204a54021f2a", "fields": {"nom_de_la_commune": "NEUVILLE SOUS MONTREUIL", "libell_d_acheminement": "NEUVILLE SOUS MONTREUIL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62610"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057b6ecd7f834de5d1a59957c36d35bdc987a666", "fields": {"nom_de_la_commune": "NIELLES LES CALAIS", "libell_d_acheminement": "NIELLES LES CALAIS", "code_postal": "62185", "coordonnees_gps": [50.9031968827, 1.82269226345], "code_commune_insee": "62615"}, "geometry": {"type": "Point", "coordinates": [1.82269226345, 50.9031968827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "774d3a32e7a57c583b13f026f2360d7ebacecc31", "fields": {"nom_de_la_commune": "NORT LEULINGHEM", "libell_d_acheminement": "NORT LEULINGHEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62622"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f226554039ef020997cd2f85fe7dc9ab366e1a8a", "fields": {"nom_de_la_commune": "NOUVELLE EGLISE", "libell_d_acheminement": "NOUVELLE EGLISE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62623"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eda4f7905520a9fad64f3dc977feaf6f99c0f6d", "fields": {"nom_de_la_commune": "NOYELLES GODAULT", "libell_d_acheminement": "NOYELLES GODAULT", "code_postal": "62950", "coordonnees_gps": [50.4179645622, 2.99397067433], "code_commune_insee": "62624"}, "geometry": {"type": "Point", "coordinates": [2.99397067433, 50.4179645622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd64bf1fffcacd0a8475a24d35f4f28c5171f48", "fields": {"nom_de_la_commune": "OEUF EN TERNOIS", "libell_d_acheminement": "OEUF EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62633"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecb50ea2196f360fc99a4a6b8640eadb220ad89c", "fields": {"nom_de_la_commune": "OFFIN", "libell_d_acheminement": "OFFIN", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62635"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad8bd2544ab2321ff8bf1e48e381bd14366f25d", "fields": {"nom_de_la_commune": "OUTREAU", "libell_d_acheminement": "OUTREAU", "code_postal": "62230", "coordonnees_gps": [50.6981882438, 1.59246943476], "code_commune_insee": "62643"}, "geometry": {"type": "Point", "coordinates": [1.59246943476, 50.6981882438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b869250cd519fae05f584acc489df47d5f08c07", "fields": {"nom_de_la_commune": "PAS EN ARTOIS", "libell_d_acheminement": "PAS EN ARTOIS", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62649"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97852b47c1b04f30dce3a6d51e6f31f322d9ee23", "fields": {"nom_de_la_commune": "PEUPLINGUES", "libell_d_acheminement": "PEUPLINGUES", "code_postal": "62231", "coordonnees_gps": [50.929758247, 1.77843645708], "code_commune_insee": "62654"}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b842c0617245568010ff8fe4bc436d79f6b084", "fields": {"nom_de_la_commune": "PIERREMONT", "libell_d_acheminement": "PIERREMONT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62655"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75a65405882412a729b2d9d59e3c9c4dd6238a2", "fields": {"nom_de_la_commune": "PLOUVAIN", "libell_d_acheminement": "PLOUVAIN", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62660"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591a0b2372cd641aa63590d76f8fb590a0eac200", "fields": {"nom_de_la_commune": "LE PONCHEL", "libell_d_acheminement": "LE PONCHEL", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62665"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8210ed673f7d94b9786515185f388b272386d91", "fields": {"nom_de_la_commune": "STE CECILE", "libell_d_acheminement": "STE CECILE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71397"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed1b85bc6554e006645d22cc5e837d00a851b19e", "fields": {"nom_de_la_commune": "ST DESERT", "libell_d_acheminement": "ST DESERT", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71404"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a17970a05d9729262a8040491e9bc324fe89413", "fields": {"nom_de_la_commune": "ST EUGENE", "libell_d_acheminement": "ST EUGENE", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71411"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76697a109bc7aeefe25155b7dc69baad27fffcd7", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN", "code_postal": "71670", "coordonnees_gps": [46.8253378412, 4.49167816237], "code_commune_insee": "71413"}, "geometry": {"type": "Point", "coordinates": [4.49167816237, 46.8253378412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1092ed2a1740a07ed0eae4530e2e4ba78edd616", "fields": {"nom_de_la_commune": "ST HURUGE", "libell_d_acheminement": "ST HURUGE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71427"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6038f10b3e4a40714a216f0b20d1ab9f7bf01a96", "fields": {"nom_de_la_commune": "ST LEGER DU BOIS", "libell_d_acheminement": "ST LEGER DU BOIS", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71438"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b93827e21dff3a87d9fa4ad2c2fc141160798c4", "fields": {"nom_de_la_commune": "ST LEGER SOUS BEUVRAY", "libell_d_acheminement": "ST LEGER SOUS BEUVRAY", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71440"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09f8641ac7993d22d0deeef5bef690b05bec4ae3", "fields": {"nom_de_la_commune": "ST MARCELIN DE CRAY", "libell_d_acheminement": "ST MARCELIN DE CRAY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71446"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6bdc919849eb9b5a5ae0578a599741167b05ddc", "fields": {"nom_de_la_commune": "ST MARD DE VAUX", "libell_d_acheminement": "ST MARD DE VAUX", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71447"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c625ddd19b2d76c2a28f8c90ce50233c3a097052", "fields": {"nom_de_la_commune": "ST MARTIN D AUXY", "libell_d_acheminement": "ST MARTIN D AUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71449"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acce177e7540286de2d7589c16a39922a1b1c579", "fields": {"nom_de_la_commune": "ST MARTIN DE LIXY", "libell_d_acheminement": "ST MARTIN DE LIXY", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71451"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efc19130668d28a625124c561156121584b5d76", "fields": {"nom_de_la_commune": "ST MARTIN LA PATROUILLE", "libell_d_acheminement": "ST MARTIN LA PATROUILLE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71458"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa6c94975582bfb18b5d9ce93606e3ffd8382710", "fields": {"nom_de_la_commune": "ST MAURICE EN RIVIERE", "libell_d_acheminement": "ST MAURICE EN RIVIERE", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71462"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19705100ccda85a8ae7e32fb5d75a6b4f73ed646", "fields": {"nom_de_la_commune": "ST MAURICE LES CHATEAUNEUF", "libell_d_acheminement": "ST MAURICE LES CHATEAUNEUF", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71463"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5fb21f9c8f690ace3cd61dcc317ae0512e0695", "fields": {"nom_de_la_commune": "ST MAURICE LES COUCHES", "libell_d_acheminement": "ST MAURICE LES COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71464"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e10e50e33dabe9cd3944c99565114fb6d5d1b8", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71469"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7654afcc1f22bf8ecd4521d4a78c085b45c9c605", "fields": {"nom_de_la_commune": "ST PRIVE", "libell_d_acheminement": "ST PRIVE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71471"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75698b1da526aeef4b80ce75459aece7f29c1efa", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71475"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35bdbd3d419a5886a5b9b29519e84a798f32183", "fields": {"nom_de_la_commune": "ST ROMAIN SOUS GOURDON", "libell_d_acheminement": "ST ROMAIN SOUS GOURDON", "code_postal": "71230", "coordonnees_gps": [46.6235547336, 4.3737497458], "code_commune_insee": "71477"}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4958d6c1477675c852814bd50ac9ac5691c55464", "fields": {"nom_de_la_commune": "ST VINCENT DES PRES", "libell_d_acheminement": "ST VINCENT DES PRES", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71488"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cd500205ded2b937fa6d5f9013d2fbfd6fe07d", "fields": {"nom_de_la_commune": "ST YTHAIRE", "libell_d_acheminement": "ST YTHAIRE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71492"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98df011bb3edafe0a6bcd03358fc2a45bfdfde07", "fields": {"nom_de_la_commune": "SANTILLY", "libell_d_acheminement": "SANTILLY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71498"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0556c76214744a986360c7602a27c82787b5a8a", "fields": {"nom_de_la_commune": "SANVIGNES LES MINES", "libell_d_acheminement": "SANVIGNES LES MINES", "code_postal": "71410", "coordonnees_gps": [46.6680452949, 4.27949256026], "code_commune_insee": "71499"}, "geometry": {"type": "Point", "coordinates": [4.27949256026, 46.6680452949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70758431c938a67813c6b253acc63b61280ce268", "fields": {"nom_de_la_commune": "SASSENAY", "libell_d_acheminement": "SASSENAY", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71502"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98f106479fbd26d12e8a5d63100a2a91fd61b4e", "fields": {"nom_de_la_commune": "SAULES", "libell_d_acheminement": "SAULES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71503"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5cc030e01a151dbcb14c7635e565b0a468538a", "fields": {"nom_de_la_commune": "SAVIANGES", "libell_d_acheminement": "SAVIANGES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71505"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e4527630e914baae1e9c969dd5e41acc80c4fe9", "fields": {"nom_de_la_commune": "SENS SUR SEILLE", "libell_d_acheminement": "SENS SUR SEILLE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71514"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecdaeba0bfd5aebf6b1671a52a382daffd982b9", "fields": {"nom_de_la_commune": "SIGY LE CHATEL", "libell_d_acheminement": "SIGY LE CHATEL", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71521"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b172eb1bc4b87b9229141424755fb531a2e745e7", "fields": {"nom_de_la_commune": "SIMANDRE", "libell_d_acheminement": "SIMANDRE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71522"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680542602969b85826ae0b1cae64be23278c8d7b", "fields": {"nom_de_la_commune": "SIVIGNON", "libell_d_acheminement": "SIVIGNON", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71524"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28337cc1a3202029694a3b3216dde5f26db09ff5", "fields": {"nom_de_la_commune": "LA TAGNIERE", "libell_d_acheminement": "LA TAGNIERE", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71531"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0103369cb9a5bf8697e1cd80bc6eb727cb129e3d", "fields": {"nom_de_la_commune": "LE TARTRE", "libell_d_acheminement": "LE TARTRE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71534"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8770cb483a01a0e7e08fca51666534b7bff72d", "fields": {"nom_de_la_commune": "THIL SUR ARROUX", "libell_d_acheminement": "THIL SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71537"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4039b4b16ad9e42cec4b1ced97fa5381aea8893a", "fields": {"nom_de_la_commune": "TOUTENANT", "libell_d_acheminement": "TOUTENANT", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71544"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed99c41292993740b1e155057d094f55347aa4b", "fields": {"nom_de_la_commune": "TRIVY", "libell_d_acheminement": "TRIVY", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71547"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ac44e3f03189a7c49aacd21bc88f3fbdb5226e", "fields": {"nom_de_la_commune": "UCHIZY", "libell_d_acheminement": "UCHIZY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71550"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe90ea9c6d18f27521a8959f4e9cbd47001cfa6", "fields": {"nom_de_la_commune": "VARENNES LES MACON", "libell_d_acheminement": "VARENNES LES MACON", "code_postal": "71000", "coordonnees_gps": [46.3175504743, 4.81977288125], "code_commune_insee": "71556"}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c5b2b0f8da1f8bcd4c6efeebf8fb529e5502dd", "fields": {"code_postal": "71600", "code_commune_insee": "71557", "libell_d_acheminement": "VARENNE ST GERMAIN", "ligne_5": "ST GERMAIN DES RIVES", "nom_de_la_commune": "VARENNE ST GERMAIN", "coordonnees_gps": [46.4281559429, 4.10161949628]}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a8b973322e69cb216312d6758ba634265e42ee", "fields": {"nom_de_la_commune": "VENDENESSE LES CHAROLLES", "libell_d_acheminement": "VENDENESSE LES CHAROLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71564"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d20c3357babeced74b0aeeaca6794d4b43b9e94", "fields": {"nom_de_la_commune": "VERS", "libell_d_acheminement": "VERS", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71572"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3909d739d6c5d2ec63b77b52cdf4251050d94b01", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71580"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0c5f286d91ca50e6aa79de3df38aa6eabda717", "fields": {"nom_de_la_commune": "VINDECY", "libell_d_acheminement": "VINDECY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71581"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b2e71c06e234087af0b70ea600b47e11881ea0", "fields": {"nom_de_la_commune": "LA VINEUSE", "libell_d_acheminement": "LA VINEUSE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71582"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9854f4ed724ed81ceafc6c89ac2edf59e951715", "fields": {"nom_de_la_commune": "VIREY LE GRAND", "libell_d_acheminement": "VIREY LE GRAND", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71585"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16cbe0585c7060a3dbf69ca01c19d7efe3a264b6", "fields": {"nom_de_la_commune": "VIRY", "libell_d_acheminement": "VIRY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71586"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721a989e1eb41e95d2fb2f61164c2d1fff5cbdbd", "fields": {"nom_de_la_commune": "VITRY EN CHAROLLAIS", "libell_d_acheminement": "VITRY EN CHAROLLAIS", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71588"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e4d86f9f92df0cf6f5eff8cf7d3e876b9a98b37", "fields": {"nom_de_la_commune": "VOLESVRES", "libell_d_acheminement": "VOLESVRES", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71590"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507e95621e492c1f876da0cefe52420a43351854", "fields": {"nom_de_la_commune": "AUBIGNE RACAN", "libell_d_acheminement": "AUBIGNE RACAN", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72013"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e786d1fc72c3b80d48ca39be138791e40140e015", "fields": {"nom_de_la_commune": "AVOISE", "libell_d_acheminement": "AVOISE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72021"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fd10bf976d33bcd3cdf3b452226074eff58d3b", "fields": {"nom_de_la_commune": "BAZOUGES SUR LE LOIR", "libell_d_acheminement": "BAZOUGES SUR LE LOIR", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72025"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec5e3e7c9b9711526219540e37dd0be2bde7e8b9", "fields": {"nom_de_la_commune": "BERFAY", "libell_d_acheminement": "BERFAY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72032"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbdd122d387cd76259b4738d6cb61e98663f1ef", "fields": {"nom_de_la_commune": "BESSE SUR BRAYE", "libell_d_acheminement": "BESSE SUR BRAYE", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72035"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b05b2746a0666efbd68296db0170468b7359d6c", "fields": {"nom_de_la_commune": "BLEVES", "libell_d_acheminement": "BLEVES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72037"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f7aa6361058ee728de9527040149365760eeb7e", "fields": {"nom_de_la_commune": "BONNETABLE", "libell_d_acheminement": "BONNETABLE", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72039"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6e36fa2d9f65143bf1e930a74d07c9ce5909145", "fields": {"nom_de_la_commune": "BOUER", "libell_d_acheminement": "BOUER", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72041"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565fa9f64f7d3f9c08f44d49033a474c2c401fb8", "fields": {"nom_de_la_commune": "BOUSSE", "libell_d_acheminement": "BOUSSE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72044"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc7897bacacc107025c5420c97a6bbf1ccaa490", "fields": {"nom_de_la_commune": "LA BRUERE SUR LOIR", "libell_d_acheminement": "LA BRUERE SUR LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72049"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3cbc2d8be46e6adde57b57a6465e4679edd992", "fields": {"nom_de_la_commune": "CERANS FOULLETOURTE", "libell_d_acheminement": "CERANS FOULLETOURTE", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72051"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc84a126e52d409e4d94ec7680ab0d25a2cd9e56", "fields": {"nom_de_la_commune": "CHANTENAY VILLEDIEU", "libell_d_acheminement": "CHANTENAY VILLEDIEU", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72059"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0467efaa999130ea13cf156115b1cdb7c95ad669", "fields": {"nom_de_la_commune": "LA CHAPELLE GAUGAIN", "libell_d_acheminement": "LA CHAPELLE GAUGAIN", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72063"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d29fcf96089344b65ec4bc046380fa2cc58c18", "fields": {"nom_de_la_commune": "CHERRE", "libell_d_acheminement": "CHERRE", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72080"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a600157208383643aac792a9636cadfb9e8c3d5", "fields": {"nom_de_la_commune": "CLERMONT CREANS", "libell_d_acheminement": "CLERMONT CREANS", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72084"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6e2472a16338d4fa0099d9c98696e8b8eec0cb", "fields": {"nom_de_la_commune": "COGNERS", "libell_d_acheminement": "COGNERS", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72085"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52dc4143965ecf6d85f5a4551b200d0d105ee62", "fields": {"nom_de_la_commune": "CONNERRE", "libell_d_acheminement": "CONNERRE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72090"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55032a92b8b056b2f9a46f56d4dcd47044144a9", "fields": {"nom_de_la_commune": "COUDRECIEUX", "libell_d_acheminement": "COUDRECIEUX", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72094"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ddfe34a4ab650555313a9ecefd938500162c92", "fields": {"nom_de_la_commune": "DANGEUL", "libell_d_acheminement": "DANGEUL", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72112"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd71f64453b310aebd98552d3f28cfa315f3505", "fields": {"nom_de_la_commune": "ECORPAIN", "libell_d_acheminement": "ECORPAIN", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72125"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26aa0558359ba23a846578fc76c61c4555d28abd", "fields": {"nom_de_la_commune": "ETIVAL LES LE MANS", "libell_d_acheminement": "ETIVAL LES LE MANS", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72127"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9264b8e426b6ea88edcef3f82086ae63acf5ae52", "fields": {"nom_de_la_commune": "FATINES", "libell_d_acheminement": "FATINES", "code_postal": "72470", "coordonnees_gps": [48.0204564826, 0.363077616761], "code_commune_insee": "72129"}, "geometry": {"type": "Point", "coordinates": [0.363077616761, 48.0204564826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848cf0e02bd2a7816cbb9bf867c5a48f16bf3c90", "fields": {"nom_de_la_commune": "FAY", "libell_d_acheminement": "FAY", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72130"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a115b8a6b3a9701612f7fb0ddf3d760f467d7e2", "fields": {"nom_de_la_commune": "FILLE", "libell_d_acheminement": "FILLE SUR SARTHE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72133"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc3c3132bc43927aec74f7737d6a794f2aac0774", "fields": {"nom_de_la_commune": "FONTENAY SUR VEGRE", "libell_d_acheminement": "FONTENAY SUR VEGRE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72136"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c4301cfbfa48325492f5588ae75d460484ab82", "fields": {"nom_de_la_commune": "GUECELARD", "libell_d_acheminement": "GUECELARD", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72146"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1099bd180014eaec087f49e4e6f4761b993dc1fa", "fields": {"nom_de_la_commune": "LA GUIERCHE", "libell_d_acheminement": "LA GUIERCHE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72147"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e36da3d93791c1106d66c93e6ac1c568fd1c40d", "fields": {"nom_de_la_commune": "JOUE EN CHARNIE", "libell_d_acheminement": "JOUE EN CHARNIE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72149"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc28cf13099450096517c7e0a8344f129c4221e", "fields": {"nom_de_la_commune": "LA FLECHE", "libell_d_acheminement": "LA FLECHE", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72154"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b71623de8ea661317fe0bbb43f859c2936bfbe0", "fields": {"nom_de_la_commune": "LHOMME", "libell_d_acheminement": "LHOMME", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72161"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed9b429e1b0e16ef96e2ec8f51f55eb2226c1697", "fields": {"nom_de_la_commune": "LIGRON", "libell_d_acheminement": "LIGRON", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72163"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9523e98316ccbbc818b9f12ad2c469f3c9b17922", "fields": {"nom_de_la_commune": "LOUAILLES", "libell_d_acheminement": "LOUAILLES", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72167"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce7604e5053b6b2e7eb886d80d609d6ad4554fe", "fields": {"nom_de_la_commune": "MAMERS", "libell_d_acheminement": "MAMERS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72180"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d0f874ac6b3e031c5c267c10f8f393a8594cdea", "fields": {"nom_de_la_commune": "MAREIL EN CHAMPAGNE", "libell_d_acheminement": "MAREIL EN CHAMPAGNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72184"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3911c3b4c75b37ab1550a4019121c1084458800", "fields": {"nom_de_la_commune": "MAROLLES LES ST CALAIS", "libell_d_acheminement": "MAROLLES LES ST CALAIS", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72190"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb6d96314edcf579998d97b2d2644a689f94c3e2", "fields": {"nom_de_la_commune": "MEZIERES SOUS LAVARDIN", "libell_d_acheminement": "MEZIERES SOUS LAVARDIN", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72197"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a14f48f7aad5ffbc02b9f74005ac0d65e774f07", "fields": {"nom_de_la_commune": "MONTREUIL LE CHETIF", "libell_d_acheminement": "MONTREUIL LE CHETIF", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72209"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19ca5e07711c94da79fc5ede1dedc3e91b48166", "fields": {"nom_de_la_commune": "NEUVILLE SUR SARTHE", "libell_d_acheminement": "NEUVILLE SUR SARTHE", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72217"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00a65ef6519b9edb88b597e299c2f46d7e7ee36", "fields": {"nom_de_la_commune": "OISSEAU LE PETIT", "libell_d_acheminement": "OISSEAU LE PETIT", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72225"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82c6b07acef7be939d32c8030611cb2dd8607d4", "fields": {"nom_de_la_commune": "PARIGNE LE POLIN", "libell_d_acheminement": "PARIGNE LE POLIN", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72230"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e14f9f89f9345a3e0ad3837022948ae4a62405", "fields": {"nom_de_la_commune": "RAHAY", "libell_d_acheminement": "RAHAY", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72250"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29dc05060cdc43ba88220480bbe94217776467c5", "fields": {"nom_de_la_commune": "ROUESSE FONTAINE", "libell_d_acheminement": "ROUESSE FONTAINE", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72254"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3395d0452da07a7c590b982cbef2e8a0ce1b25c", "fields": {"nom_de_la_commune": "ROUESSE VASSE", "libell_d_acheminement": "ROUESSE VASSE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72255"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dce95660cf668149d269bfa1dcebc09cb44600f", "fields": {"nom_de_la_commune": "ROUEZ", "libell_d_acheminement": "ROUEZ", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72256"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2455adc73f614040f20bceaa7e95996b721c02e7", "fields": {"nom_de_la_commune": "ROUILLON", "libell_d_acheminement": "ROUILLON", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72257"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622f16de857f95f32955fd345a6102734a7ce6d9", "fields": {"nom_de_la_commune": "ROUPERROUX LE COQUET", "libell_d_acheminement": "ROUPERROUX LE COQUET", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72259"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2018c91256d7ff29e3b412b408a26749a614a57", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72265"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ef6cf62cf5a25a722ca329d66d0f27b6c0d6c6", "fields": {"nom_de_la_commune": "ST AUBIN DE LOCQUENAY", "libell_d_acheminement": "ST AUBIN DE LOCQUENAY", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72266"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebac176e0800d548c7c626f1e8ed22622a416820", "fields": {"nom_de_la_commune": "ST AUBIN DES COUDRAIS", "libell_d_acheminement": "ST AUBIN DES COUDRAIS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72267"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "679b5c9e244465f9776ebcefa4e6ab52be102827", "fields": {"nom_de_la_commune": "ST BIEZ EN BELIN", "libell_d_acheminement": "ST BIEZ EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72268"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c130d20d40b3ff4edf605a700b5d44a9be0d5b5", "fields": {"nom_de_la_commune": "ST CALAIS", "libell_d_acheminement": "ST CALAIS", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72269"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733dde7d8d24af5feab0ab39432a8ec0fc59064f", "fields": {"nom_de_la_commune": "ST CELERIN", "libell_d_acheminement": "ST CELERIN", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72271"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea2deee0dd67c73bd794082cdaab7fc887001af", "fields": {"nom_de_la_commune": "ST DENIS D ORQUES", "libell_d_acheminement": "ST DENIS D ORQUES", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72278"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4acecfd92f1aabec7595be910ec034fb8d58ba", "fields": {"nom_de_la_commune": "TOGNY AUX BOEUFS", "libell_d_acheminement": "TOGNY AUX BOEUFS", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51574"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b2719ff7c890245edd7659287a767191f7191a", "fields": {"nom_de_la_commune": "TRAMERY", "libell_d_acheminement": "TRAMERY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51577"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74abe5129a93ed0f908c12b75ddcf7dbb12986e", "fields": {"nom_de_la_commune": "TREPAIL", "libell_d_acheminement": "TREPAIL", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51580"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c51a18a12e8dde4418a2ac85445f0250a56f3fd", "fields": {"nom_de_la_commune": "TRESLON", "libell_d_acheminement": "TRESLON", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51581"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cefa295e52b35cdca37a84a0c32d570731299c71", "fields": {"nom_de_la_commune": "TRIGNY", "libell_d_acheminement": "TRIGNY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51582"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d2ef6d0ce886c098acf43e0c9c6561a344079", "fields": {"nom_de_la_commune": "TROISSY", "libell_d_acheminement": "TROISSY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51585"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7f93855fc6069d35ba89e172b16fef08d857ad", "fields": {"nom_de_la_commune": "VALMY", "libell_d_acheminement": "VALMY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51588"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebed09cbeda03cd042d36550e9b973ee125664b", "fields": {"nom_de_la_commune": "VANAULT LE CHATEL", "libell_d_acheminement": "VANAULT LE CHATEL", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51589"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7989bda9a8a34b9e99b6394b66eadfba76355cab", "fields": {"nom_de_la_commune": "VANDEUIL", "libell_d_acheminement": "VANDEUIL", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51591"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47be46a70751a86df926a4ebc23f0a0c29b21c08", "fields": {"nom_de_la_commune": "VENTELAY", "libell_d_acheminement": "VENTELAY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51604"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63e956f895a30137b5d02ef27820bf9fa7fa1c87", "fields": {"nom_de_la_commune": "VERDON", "libell_d_acheminement": "VERDON", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51607"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1710a69acda10c285e2025cf48773d265e796ee", "fields": {"nom_de_la_commune": "VERNANCOURT", "libell_d_acheminement": "VERNANCOURT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51608"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5c248481d587e9cd637397c8485437cb489759", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51609"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35dda94f03729a9a1fed278c41cc6f64c3b4dac", "fields": {"nom_de_la_commune": "VIENNE LE CHATEAU", "libell_d_acheminement": "VIENNE LE CHATEAU", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51621"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9786ae25658c22af13a0c886a8444e32e4653408", "fields": {"nom_de_la_commune": "LA VILLENEUVE LES CHARLEVILLE", "libell_d_acheminement": "LA VILLENEUVE LES CHARLEVILLE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51626"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888e5021dceecf5d07c1cb5f3920f1fbd06b4b43", "fields": {"nom_de_la_commune": "VILLENEUVE ST VISTRE ET VILLEVOTTE", "libell_d_acheminement": "VILLENEUVE ST VISTRE VILLEVOTTE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51628"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9ee02f264591e12d61eec8b6b7c4a7615033f0", "fields": {"nom_de_la_commune": "VILLERS ALLERAND", "libell_d_acheminement": "VILLERS ALLERAND", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51629"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dddb255ec85d70d39f7a01c1728df09ced82aab", "fields": {"nom_de_la_commune": "VILLERS EN ARGONNE", "libell_d_acheminement": "VILLERS EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51632"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c542268520d5b822b5a425d7b8b5bf64230c1ce", "fields": {"nom_de_la_commune": "VILLERS LE CHATEAU", "libell_d_acheminement": "VILLERS LE CHATEAU", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51634"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae4f333ab222cdae81ea349a5c41646212b8482", "fields": {"nom_de_la_commune": "VILLERS MARMERY", "libell_d_acheminement": "VILLERS MARMERY", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51636"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb9ca09c71c4ff66e2fdb8d8269476c89872179", "fields": {"nom_de_la_commune": "VILLEVENARD", "libell_d_acheminement": "VILLEVENARD", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51641"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f62c08cc9b68f4f289f595f2b0bdee53b4372f", "fields": {"nom_de_la_commune": "VITRY LA VILLE", "libell_d_acheminement": "VITRY LA VILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51648"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503b69262fb99b4e7edb3c034514ffa5033260be", "fields": {"code_postal": "51240", "code_commune_insee": "51648", "libell_d_acheminement": "VITRY LA VILLE", "ligne_5": "VOUCIENNES", "nom_de_la_commune": "VITRY LA VILLE", "coordonnees_gps": [48.8713241468, 4.48928355914]}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0852296f9bd3d00d5288c86f0762afc95cfbf47", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52002"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f965776ba2242e4f51496827087ac4bcd20b56", "fields": {"nom_de_la_commune": "AINGOULAINCOURT", "libell_d_acheminement": "AINGOULAINCOURT", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52004"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9615ef17336d234da9360c2ae4ff223b803bf368", "fields": {"nom_de_la_commune": "ARC EN BARROIS", "libell_d_acheminement": "ARC EN BARROIS", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52017"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ff2fb892a3c4b03e8b704e2426a373d1b5bfe6", "fields": {"nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52031"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0dd0ee56044997964046bf5e12d08c0c198df4", "fields": {"code_postal": "52120", "code_commune_insee": "52031", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "ligne_5": "VALDELANCOURT", "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa94b2b55a1904ca339b1da630857ba65d7c33f", "fields": {"nom_de_la_commune": "BAUDRECOURT", "libell_d_acheminement": "BAUDRECOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52039"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22458fc5cf49c2a2980311ab54418c367f074730", "fields": {"code_postal": "52270", "code_commune_insee": "52044", "libell_d_acheminement": "ROCHES BETTAINCOURT", "ligne_5": "ROCHES SUR ROGNON", "nom_de_la_commune": "ROCHES BETTAINCOURT", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b5de2a49618a88bbfd87b52458f843fed4e571", "fields": {"nom_de_la_commune": "BEURVILLE", "libell_d_acheminement": "BEURVILLE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52047"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721c648302f988f361387969110ec57211d757e4", "fields": {"code_postal": "52310", "code_commune_insee": "52058", "libell_d_acheminement": "BOLOGNE", "ligne_5": "ROOCOURT LA COTE", "nom_de_la_commune": "BOLOGNE", "coordonnees_gps": [48.2108562649, 5.11797313893]}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f6a14626dafebc22b5aa94c8fa384321ba2dd1", "fields": {"nom_de_la_commune": "BOURDONS SUR ROGNON", "libell_d_acheminement": "BOURDONS SUR ROGNON", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52061"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81fb52c15aa8e44e49a5a3582139362a964ac964", "fields": {"nom_de_la_commune": "BRAUX LE CHATEL", "libell_d_acheminement": "BRAUX LE CHATEL", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52069"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1664cb83d72dcae5c932c6d76bd80f983874b5f", "fields": {"nom_de_la_commune": "CHAMPSEVRAINE", "libell_d_acheminement": "CHAMPSEVRAINE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52083"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd6b162080b174b9b19a3f42db20bb82f1e0f82", "fields": {"nom_de_la_commune": "CEFFONDS", "libell_d_acheminement": "CEFFONDS", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52088"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df6d7f54bc4dc943c2ac5368276f956e1aaaa8b", "fields": {"code_postal": "52220", "code_commune_insee": "52088", "libell_d_acheminement": "CEFFONDS", "ligne_5": "ANGLUS", "nom_de_la_commune": "CEFFONDS", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f9b5852a216d50b6f488168b5d8c0507b93ae78", "fields": {"nom_de_la_commune": "CELLES EN BASSIGNY", "libell_d_acheminement": "CELLES EN BASSIGNY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52089"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9ba8d0b8afab4f74d70402f0a3836ef5997546", "fields": {"nom_de_la_commune": "CHALINDREY", "libell_d_acheminement": "CHALINDREY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52093"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333649bca7feef7b444c9ecc937dde612941443e", "fields": {"nom_de_la_commune": "CHALVRAINES", "libell_d_acheminement": "CHALVRAINES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52095"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2065c6e99c7f92900d91af39f6d69f069f55d4c5", "fields": {"nom_de_la_commune": "CHAMPIGNEULLES EN BASSIGNY", "libell_d_acheminement": "CHAMPIGNEULLES EN BASSIGNY", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52101"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e7967a8777ba1a941317972f15e3068289c404", "fields": {"nom_de_la_commune": "CHANOY", "libell_d_acheminement": "CHANOY", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52106"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40580021449ce27250ad557d33f56ab7427fa452", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52108"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26edc6a01d99dea5ab12b6183f19635cd9c80028", "fields": {"nom_de_la_commune": "CHASSIGNY", "libell_d_acheminement": "CHASSIGNY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52113"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cf68b5642f841207522dbcaf4809a90eb843e0", "fields": {"nom_de_la_commune": "CHATEAUVILLAIN", "libell_d_acheminement": "CHATEAUVILLAIN", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52114"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55ee3e49d455aecdd8a16fe652c095df763d424", "fields": {"code_postal": "52120", "code_commune_insee": "52114", "libell_d_acheminement": "CHATEAUVILLAIN", "ligne_5": "MARMESSE", "nom_de_la_commune": "CHATEAUVILLAIN", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f047415eb9ceb0ed9f486db7f61274f0a5425a3", "fields": {"nom_de_la_commune": "CHAUDENAY", "libell_d_acheminement": "CHAUDENAY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52119"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc1977a9afdc1a775ab044cb31ef3bd8b182d80", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52121"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89257c1aaea513240148d121bbedf386195663a4", "fields": {"code_postal": "52000", "code_commune_insee": "52121", "libell_d_acheminement": "CHAUMONT", "ligne_5": "BROTTES", "nom_de_la_commune": "CHAUMONT", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c7bc498379928f01d100c90f69df368a2eba80", "fields": {"nom_de_la_commune": "CHAUMONT LA VILLE", "libell_d_acheminement": "CHAUMONT LA VILLE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52122"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e323aab8b2a67c02edd0bcd79663b932766e1384", "fields": {"nom_de_la_commune": "CHEZEAUX", "libell_d_acheminement": "CHEZEAUX", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52124"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa642ce9d246808c525f1b88b37fa3ab2be2dc58", "fields": {"code_postal": "52190", "code_commune_insee": "52126", "libell_d_acheminement": "CHOILLEY DARDENAY", "ligne_5": "DARDENAY", "nom_de_la_commune": "CHOILLEY DARDENAY", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d0812fa239cd6b8e746212009bff6b713dfebe", "fields": {"nom_de_la_commune": "CIRFONTAINES EN AZOIS", "libell_d_acheminement": "CIRFONTAINES EN AZOIS", "code_postal": "52370", "coordonnees_gps": [48.1346812321, 4.86216753048], "code_commune_insee": "52130"}, "geometry": {"type": "Point", "coordinates": [4.86216753048, 48.1346812321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d50c635f75bf14f24cefc620b44029495590063", "fields": {"nom_de_la_commune": "CLEFMONT", "libell_d_acheminement": "CLEFMONT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52132"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381efd4e4508768209a1d396716fe6704c346c2d", "fields": {"nom_de_la_commune": "COIFFY LE HAUT", "libell_d_acheminement": "COIFFY LE HAUT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52136"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a52723623ddf575bf5edba6f3f11c83a449cff8", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "HARRICOURT", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19ac4bc3db0f19395d99b9cf2a9611005444039", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "PRATZ", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4510eef240e3befcd6b272dcf01b70400abf8e", "fields": {"nom_de_la_commune": "CONSIGNY", "libell_d_acheminement": "CONSIGNY", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52142"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e6828ad167ce1553f32eadb2df746f58755b81", "fields": {"nom_de_la_commune": "DARMANNES", "libell_d_acheminement": "DARMANNES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52167"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733c81fa136ea82a3e65626b928805fedec2ba5b", "fields": {"nom_de_la_commune": "DOMMARIEN", "libell_d_acheminement": "DOMMARIEN", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52170"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6729c1960d1351d1a3329115323c558c930fa2ab", "fields": {"nom_de_la_commune": "DOULAINCOURT SAUCOURT", "libell_d_acheminement": "DOULAINCOURT SAUCOURT", "code_postal": "52270", "coordonnees_gps": [48.329589946, 5.25765158251], "code_commune_insee": "52177"}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322317c4c5f62c558a9e6c102f21d9df99688e8d", "fields": {"code_postal": "52270", "code_commune_insee": "52177", "libell_d_acheminement": "DOULAINCOURT SAUCOURT", "ligne_5": "SAUCOURT SUR ROGNON", "nom_de_la_commune": "DOULAINCOURT SAUCOURT", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33381ad57f9ca3506ae974fe6d3d42d398a15801", "fields": {"code_postal": "52290", "code_commune_insee": "52182", "libell_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", "ligne_5": "STE LIVIERE", "nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", "coordonnees_gps": [48.5761520145, 4.85527369999]}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba69db03370b600c231399963f155afba44138eb", "fields": {"nom_de_la_commune": "ENFONVELLE", "libell_d_acheminement": "ENFONVELLE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52185"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3b49465050684b947a0858b0358334d07523a3", "fields": {"code_postal": "52270", "code_commune_insee": "52187", "libell_d_acheminement": "EPIZON", "ligne_5": "PAUTAINES", "nom_de_la_commune": "EPIZON", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cbc9cd99f28bcf1a975a3028b0a374b1b5886dd", "fields": {"nom_de_la_commune": "LE VAL D ESNOMS", "libell_d_acheminement": "LE VAL D ESNOMS", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52189"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fa02969b9d16d22e86bd683a7eca8050d0ebc00", "fields": {"nom_de_la_commune": "EUFFIGNEIX", "libell_d_acheminement": "EUFFIGNEIX", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52193"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c8fe7b4f1a81dd9ddec71601d527a9d9c4afc5", "fields": {"nom_de_la_commune": "FARINCOURT", "libell_d_acheminement": "FARINCOURT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52195"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20bccd2d05f895a3d11513638049b8fa983d5bc7", "fields": {"code_postal": "52500", "code_commune_insee": "52197", "libell_d_acheminement": "FAYL BILLOT", "ligne_5": "CHARMOY", "nom_de_la_commune": "FAYL BILLOT", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3568a60fb3dbb1cd7070da9a0201544f38844c2c", "fields": {"nom_de_la_commune": "FAYS", "libell_d_acheminement": "FAYS", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52198"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d03cc43e3ed86734b2ba69df1da8ead914720", "fields": {"nom_de_la_commune": "FLAGEY", "libell_d_acheminement": "FLAGEY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52200"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5ee4905a5e9b80ad01d91c986c2fee44409284", "fields": {"nom_de_la_commune": "FOULAIN", "libell_d_acheminement": "FOULAIN", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52205"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c89b40abd16afd401c40bd2c893d1851e5839a", "fields": {"code_postal": "52320", "code_commune_insee": "52211", "libell_d_acheminement": "FRONCLES", "ligne_5": "BUXIERES LES FRONCLES", "nom_de_la_commune": "FRONCLES", "coordonnees_gps": [48.287832359, 5.09541662675]}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65d64b2351b7534014040d17f1dc28a3a367cd7", "fields": {"nom_de_la_commune": "GERMAINES", "libell_d_acheminement": "GERMAINES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52216"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d10b82eedec643a39de5302a49dc37c1b7627be", "fields": {"nom_de_la_commune": "GERMAY", "libell_d_acheminement": "GERMAY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52218"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a269a0178dac74aceddd469e9239efc705fbd9", "fields": {"nom_de_la_commune": "GIEY SUR AUJON", "libell_d_acheminement": "GIEY SUR AUJON", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52220"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd682a265f5ff557c34b0e9978e183029f166ca7", "fields": {"code_postal": "52320", "code_commune_insee": "52230", "libell_d_acheminement": "GUDMONT VILLIERS", "ligne_5": "VILLIERS SUR MARNE", "nom_de_la_commune": "GUDMONT VILLIERS", "coordonnees_gps": [48.287832359, 5.09541662675]}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6525c37729ea7b5d028bc2b626fa46ad362c146", "fields": {"nom_de_la_commune": "HUILLIECOURT", "libell_d_acheminement": "HUILLIECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52243"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e10a7abd1e3c198cbd6532f3d5ff091a8a9d0b1", "fields": {"nom_de_la_commune": "IS EN BASSIGNY", "libell_d_acheminement": "IS EN BASSIGNY", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52248"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1384a781261159f1d1acd06858fa3adac1039ed", "fields": {"nom_de_la_commune": "JONCHERY", "libell_d_acheminement": "JONCHERY", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52251"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07782b5767090d13e2aeb9b49c397a434867660", "fields": {"code_postal": "52000", "code_commune_insee": "52251", "libell_d_acheminement": "JONCHERY", "ligne_5": "SARCICOURT", "nom_de_la_commune": "JONCHERY", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f90e467a1b2d7488eaf0a27fa3f925a955dc8f", "fields": {"nom_de_la_commune": "LAFERTE SUR AMANCE", "libell_d_acheminement": "LAFERTE SUR AMANCE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52257"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f7ec79e07894b31bb1fe33079dd904f8e68f05", "fields": {"nom_de_la_commune": "LAMOTHE EN BLAISY", "libell_d_acheminement": "LAMOTHE EN BLAISY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52262"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3709a3673015d948d705cdf0c8d426eeeb1aa28", "fields": {"code_postal": "52170", "code_commune_insee": "52265", "libell_d_acheminement": "BAYARD SUR MARNE", "ligne_5": "PREZ SUR MARNE", "nom_de_la_commune": "BAYARD SUR MARNE", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a26f1f5f1842e77b55faf5a2a300f0dd36a1ec", "fields": {"nom_de_la_commune": "LANGRES", "libell_d_acheminement": "LANGRES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52269"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b52e8e8c782aac7ae7a8e97b451286e03bf792", "fields": {"code_postal": "52200", "code_commune_insee": "52269", "libell_d_acheminement": "LANGRES", "ligne_5": "CORLEE", "nom_de_la_commune": "LANGRES", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5447c56f82073a4a5346e3048ac69744cddabaf7", "fields": {"nom_de_la_commune": "LEVECOURT", "libell_d_acheminement": "LEVECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52287"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb320dbdcd939f2155475c6d005625cedb003eb6", "fields": {"nom_de_la_commune": "LEZEVILLE", "libell_d_acheminement": "LEZEVILLE", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52288"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a27e3d50b1e6a85fef4613811e71a2d1727aa78", "fields": {"code_postal": "52230", "code_commune_insee": "52288", "libell_d_acheminement": "LEZEVILLE", "ligne_5": "HARMEVILLE", "nom_de_la_commune": "LEZEVILLE", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb8c24c413ba053a4745e216b2bba7fb780ef0e", "fields": {"nom_de_la_commune": "MAATZ", "libell_d_acheminement": "MAATZ", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52298"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ad36d2e32c29d022b491359c9238cd31057c30", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52302"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0028b97974d2e76639c481c83304e156665e718d", "fields": {"nom_de_la_commune": "MARDOR", "libell_d_acheminement": "MARDOR", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52312"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643b813186e975bfadc5bb08b66b596df7863927", "fields": {"nom_de_la_commune": "MENNOUVEAUX", "libell_d_acheminement": "MENNOUVEAUX", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52319"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e979c6672860bc7aaf2b80b8253846dd8aa4e368", "fields": {"nom_de_la_commune": "MONTCHARVOT", "libell_d_acheminement": "MONTCHARVOT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52328"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33af54256b1c46704a2266d7e061e23d2172654f", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "LECOURT", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7267dd688affdf709adccccef75eec03f1743ff", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "MONTIGNY LE ROI", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4263f22ff7955201956e0c596d11d6a3c9ab7553", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "RAVENNEFONTAINES", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2af5a290da3d70d8d3532cd34c0d2e54636a2ac", "fields": {"nom_de_la_commune": "MONTREUIL SUR BLAISE", "libell_d_acheminement": "MONTREUIL SUR BLAISE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52336"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db49fbe41a0ffc7cd1d5f3df162abb796aaf626", "fields": {"nom_de_la_commune": "MORIONVILLIERS", "libell_d_acheminement": "MORIONVILLIERS", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52342"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb242b2bd450974e9504c7918066c21cc06988d5", "fields": {"nom_de_la_commune": "NOIDANT CHATENOY", "libell_d_acheminement": "NOIDANT CHATENOY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52354"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00039072797e970e67eff03ffe88ee23100d64eb", "fields": {"nom_de_la_commune": "FRESSE", "libell_d_acheminement": "FRESSE", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70256"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86f2c467963e1ed4906fc06e3eeb08a204353e5", "fields": {"nom_de_la_commune": "FROIDECONCHE", "libell_d_acheminement": "FROIDECONCHE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70258"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09df1a74f266fa1dcc9c2e6341b0b9c3bd9f20e", "fields": {"nom_de_la_commune": "FROIDETERRE", "libell_d_acheminement": "FROIDETERRE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70259"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062ee2a61d14806cb54f7d27a8760fc55e1bb876", "fields": {"nom_de_la_commune": "GEORFANS", "libell_d_acheminement": "GEORFANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70264"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a4892a8fc55d98c70164418b092ea85a3c63c24", "fields": {"nom_de_la_commune": "GIREFONTAINE", "libell_d_acheminement": "GIREFONTAINE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70269"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c368c0f7a01b878e0d78dbfeaed3d78c313a3e4", "fields": {"nom_de_la_commune": "GRAMMONT", "libell_d_acheminement": "GRAMMONT", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70273"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72db1040bb1eb37e42ab1c7fa2f476772eb2a0b6", "fields": {"nom_de_la_commune": "GRANDVELLE ET LE PERRENOT", "libell_d_acheminement": "GRANDVELLE ET LE PERRENOT", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70275"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502d344bf1e4316bc030bc9747a09998b1dd03c6", "fields": {"nom_de_la_commune": "GRANGES LA VILLE", "libell_d_acheminement": "GRANGES LA VILLE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70276"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe2b8c934990da6b8603d89106c8e9ecfee6e69", "fields": {"nom_de_la_commune": "LA LANTERNE ET LES ARMONTS", "libell_d_acheminement": "LA LANTERNE ET LES ARMONTS", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70295"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a127db993e32c21a017288201d99881252069c2", "fields": {"nom_de_la_commune": "LUXEUIL LES BAINS", "libell_d_acheminement": "LUXEUIL LES BAINS", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70311"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "339741632da85e8d1148cd7ca57b5c534e2ce3c4", "fields": {"nom_de_la_commune": "LYOFFANS", "libell_d_acheminement": "LYOFFANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70313"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e480cf03987621ff91e2a26a92e4e42ed53615b", "fields": {"nom_de_la_commune": "MAGNIVRAY", "libell_d_acheminement": "MAGNIVRAY", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70314"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b280003daaf4dba69af0816bbe2860d5634979", "fields": {"nom_de_la_commune": "LE MAGNORAY", "libell_d_acheminement": "LE MAGNORAY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70316"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "629431934884ccbbb856fe85d91097e11ad1b19e", "fields": {"nom_de_la_commune": "MALBOUHANS", "libell_d_acheminement": "MALBOUHANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70328"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4728e4b5552c4848b40779789a7a49b08df0ef", "fields": {"nom_de_la_commune": "MANDREVILLARS", "libell_d_acheminement": "MANDREVILLARS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70330"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0478605946ca45609fbd70990d0d053c49e8fe", "fields": {"nom_de_la_commune": "MELIN", "libell_d_acheminement": "MELIN", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70337"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e03582a96f8b2e0fcbee050e0e287d7170b80d", "fields": {"nom_de_la_commune": "MELINCOURT", "libell_d_acheminement": "MELINCOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70338"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4c2e12d9e0908880f9501c210ef340daab6239", "fields": {"nom_de_la_commune": "MOLAY", "libell_d_acheminement": "MOLAY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70350"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b64257d68e1738ad50eb3dbac7f3678959a93f", "fields": {"nom_de_la_commune": "MOLLANS", "libell_d_acheminement": "MOLLANS", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70351"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5b41cd894cef182a737e18ebe7d37d37e01323", "fields": {"nom_de_la_commune": "MONTAGNEY", "libell_d_acheminement": "MONTAGNEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70353"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6597dd248572a7631bf2d080dbcfa8eb46efa8", "fields": {"nom_de_la_commune": "MONTUREUX ET PRANTIGNY", "libell_d_acheminement": "MONTUREUX ET PRANTIGNY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70371"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fb5d08a50f61b604699d4988d324083ee5c368", "fields": {"nom_de_la_commune": "NAVENNE", "libell_d_acheminement": "NAVENNE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70378"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b564e67c94c63297920a2ebcc4abc43f5b7f408", "fields": {"nom_de_la_commune": "LA NEUVELLE LES LURE", "libell_d_acheminement": "LA NEUVELLE LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70385"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8141af1a53bbac4e048ee3e5252893c84110dc79", "fields": {"nom_de_la_commune": "ONAY", "libell_d_acheminement": "ONAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70394"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdd293132c8f926dc90952c7665c159d5e98327", "fields": {"nom_de_la_commune": "OYRIERES", "libell_d_acheminement": "OYRIERES", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70402"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f13a0f94b41af09a31cc6b6a6976f277d2d6d7b", "fields": {"nom_de_la_commune": "PASSAVANT LA ROCHERE", "libell_d_acheminement": "PASSAVANT LA ROCHERE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70404"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec4c0a01149dd1648f80b7c7f2b09c3a6f5afa4", "fields": {"nom_de_la_commune": "PIERRECOURT", "libell_d_acheminement": "PIERRECOURT", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70409"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3769b856cd2deea64b4c0249d65d189d97513b", "fields": {"nom_de_la_commune": "LA PISSEURE", "libell_d_acheminement": "LA PISSEURE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70411"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d45289f6160a773287fc65199931a3212235e6", "fields": {"nom_de_la_commune": "PLANCHER LES MINES", "libell_d_acheminement": "PLANCHER LES MINES", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70414"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61973dd44e70c4915809670725303c7fc7f19bf0", "fields": {"nom_de_la_commune": "POLAINCOURT ET CLAIREFONTAINE", "libell_d_acheminement": "POLAINCOURT ET CLAIREFONTAINE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70415"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90e2b841157d9c90d4a9815b76a9f891e2764a06", "fields": {"nom_de_la_commune": "POMOY", "libell_d_acheminement": "POMOY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70416"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0d44e339eead8a065723962bfd4379c02147de", "fields": {"code_postal": "70130", "code_commune_insee": "70418", "libell_d_acheminement": "LA ROMAINE", "ligne_5": "GREUCOURT", "nom_de_la_commune": "LA ROMAINE", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86acc85b5682df1434c9afdaf678f8a2ae2b8015", "fields": {"code_postal": "70130", "code_commune_insee": "70418", "libell_d_acheminement": "LA ROMAINE", "ligne_5": "VEZET", "nom_de_la_commune": "LA ROMAINE", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f020988d7c514fc78689ff77d779f0a0d619fb3", "fields": {"nom_de_la_commune": "RADDON ET CHAPENDU", "libell_d_acheminement": "RADDON ET CHAPENDU", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70435"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c5d032060e5d4c96fc5c40543ecf4c3566eae42", "fields": {"nom_de_la_commune": "RAINCOURT", "libell_d_acheminement": "RAINCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70436"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a38ad1f7dc01c738ff9cdf694365914707e928", "fields": {"nom_de_la_commune": "LA ROCHELLE", "libell_d_acheminement": "LA ROCHELLE", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70450"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3645f9dd2f40249d1a3c64159e3ca09b0576e1a", "fields": {"nom_de_la_commune": "ST FERJEUX", "libell_d_acheminement": "ST FERJEUX", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70462"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b26180ea2a9c07ec3e467a74f610bf1e6fe4b03", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70472"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22cb93805328d4b81a911ff31b20c4bcaaf0519b", "fields": {"nom_de_la_commune": "SAULNOT", "libell_d_acheminement": "SAULNOT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70477"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f74ef0d64db3916aa636364243f40e57bf42aed", "fields": {"code_postal": "70400", "code_commune_insee": "70477", "libell_d_acheminement": "SAULNOT", "ligne_5": "CORCELLES", "nom_de_la_commune": "SAULNOT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2c657ff29098b3e6625eb1717c82d8ac003579", "fields": {"nom_de_la_commune": "TARTECOURT", "libell_d_acheminement": "TARTECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70496"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ef3569cea615585f6f6541b3062eed071136c2d", "fields": {"nom_de_la_commune": "TERNUAY MELAY ET ST HILAIRE", "libell_d_acheminement": "TERNUAY MELAY ET ST HILAIRE", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70498"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08520e3fb3c13b9d373ee14a145d0b316100442a", "fields": {"nom_de_la_commune": "TINCEY ET PONTREBEAU", "libell_d_acheminement": "TINCEY ET PONTREBEAU", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70502"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73e6c1e59c8540791bd4e4e23fbcb716c487fff", "fields": {"nom_de_la_commune": "VAIVRE ET MONTOILLE", "libell_d_acheminement": "VAIVRE ET MONTOILLE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70513"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6def6a0a3361a7411170e3f660cd95f353f6ad8d", "fields": {"nom_de_la_commune": "LE VAL ST ELOI", "libell_d_acheminement": "LE VAL ST ELOI", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70518"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4481a9706f3620e62999b901ab90478d851f42aa", "fields": {"nom_de_la_commune": "VAUCHOUX", "libell_d_acheminement": "VAUCHOUX", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70524"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fa0a9b0217fba50caa1026eb8671053a30f0822", "fields": {"nom_de_la_commune": "VELESMES ECHEVANNE", "libell_d_acheminement": "VELESMES ECHEVANNE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70528"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44fb729208b4990f4f6ad5c18ac8e9112fc77440", "fields": {"nom_de_la_commune": "VELLECLAIRE", "libell_d_acheminement": "VELLECLAIRE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70531"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671795f08ef784c25de283bd0578672edf820b94", "fields": {"nom_de_la_commune": "VELLEFREY ET VELLEFRANGE", "libell_d_acheminement": "VELLEFREY ET VELLEFRANGE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70533"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19634b61fb98e21e18ddbf8610f0bbb8b690e9d9", "fields": {"nom_de_la_commune": "VENISEY", "libell_d_acheminement": "VENISEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70545"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46532258dfb8d85bc46f9aff0d25bcec2d4aead1", "fields": {"nom_de_la_commune": "VEREUX", "libell_d_acheminement": "VEREUX", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70546"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91db820df6053531cbc0b91c7a29d70025f86efc", "fields": {"nom_de_la_commune": "VERLANS", "libell_d_acheminement": "VERLANS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70547"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8a35d7fef71038d6be5fcd14304fb7d069c27e", "fields": {"nom_de_la_commune": "VILLERS PATER", "libell_d_acheminement": "VILLERS PATER", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70565"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a70c0299ed0b4fd7ddd75c393da3c3675279924", "fields": {"nom_de_la_commune": "VILLERS SUR SAULNOT", "libell_d_acheminement": "VILLERS SUR SAULNOT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70567"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ed98ac2732b461602b103cb0791523a4d37f2f", "fields": {"nom_de_la_commune": "VISONCOURT", "libell_d_acheminement": "VISONCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70571"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4da093bb92ef6b07ac0118e4a8e83a76bcf9476", "fields": {"nom_de_la_commune": "VOUHENANS", "libell_d_acheminement": "VOUHENANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70577"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987009e43c3771ccf3c995d0c02c19ed1dcb1b7d", "fields": {"nom_de_la_commune": "VREGILLE", "libell_d_acheminement": "VREGILLE", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70578"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0283ccd7967af005a1b90895733480721cba5e05", "fields": {"nom_de_la_commune": "L ABERGEMENT STE COLOMBE", "libell_d_acheminement": "L ABERGEMENT STE COLOMBE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71002"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4835c96e2d9811022b7ebe7e46f208603f8efa", "fields": {"nom_de_la_commune": "AUTHUMES", "libell_d_acheminement": "AUTHUMES", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71013"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec85a8baf1c95991f23d5a25e231bf38a4bf7621", "fields": {"code_postal": "71400", "code_commune_insee": "71014", "libell_d_acheminement": "AUTUN", "ligne_5": "ST PANTALEON", "nom_de_la_commune": "AUTUN", "coordonnees_gps": [46.9658637429, 4.31686540744]}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0923c35393c9204ea8184ce6286924c3694a551", "fields": {"nom_de_la_commune": "AUXY", "libell_d_acheminement": "AUXY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71015"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c36451db9236930a60bbaf03d7439ad0c9b5312", "fields": {"nom_de_la_commune": "AZE", "libell_d_acheminement": "AZE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71016"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c543f5d133e103b563f97d9d1f1859a7b59da9bd", "fields": {"nom_de_la_commune": "BALLORE", "libell_d_acheminement": "BALLORE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71017"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f562bda0745a8eaf0c7a78698718ee965537315", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71024"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7679ab824833eeaf6ceed459a6d2444dbbc8e6", "fields": {"nom_de_la_commune": "BERZE LE CHATEL", "libell_d_acheminement": "BERZE LE CHATEL", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71031"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dacf4d2d317206067d84eb27fc826a93b5955ab", "fields": {"nom_de_la_commune": "BISSY LA MACONNAISE", "libell_d_acheminement": "BISSY LA MACONNAISE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71035"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f6dd0043298a5dca43483bd08ede41d0ccd654", "fields": {"nom_de_la_commune": "BISSY SOUS UXELLES", "libell_d_acheminement": "BISSY SOUS UXELLES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71036"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd9ae9b05df1ddf0e529d92e95c8350e9e651c9", "fields": {"nom_de_la_commune": "BLANOT", "libell_d_acheminement": "BLANOT", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71039"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e552919828f6b941085f260f4c38326782360c30", "fields": {"nom_de_la_commune": "BOSJEAN", "libell_d_acheminement": "BOSJEAN", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71044"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a17967340f2ecfa2cf77835bd0b83346c87d8e", "fields": {"nom_de_la_commune": "BOURGVILAIN", "libell_d_acheminement": "BOURGVILAIN", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71050"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04a2390d166b0f35b7e42362a6b1a8456d7ca62", "fields": {"nom_de_la_commune": "BRANDON", "libell_d_acheminement": "BRANDON", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71055"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c29f1cacffffc51355238e37ff13e63bcdb5584", "fields": {"nom_de_la_commune": "BRANGES", "libell_d_acheminement": "BRANGES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71056"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3550ee1f40ccf9891272b9e5d2d4e79ab0d1be0f", "fields": {"nom_de_la_commune": "BRAY", "libell_d_acheminement": "BRAY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71057"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac71478b1106eceeb0ff4eb5a3769c02e755d085", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71062"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e51984d0886dd804c59c79fb0e812251352485", "fields": {"nom_de_la_commune": "BRUAILLES", "libell_d_acheminement": "BRUAILLES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71064"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43731133f02efb192f4e3a8dcf39bbc7d539fa3", "fields": {"nom_de_la_commune": "BUFFIERES", "libell_d_acheminement": "BUFFIERES", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71065"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b4d5263ddc98938d890e37279c400913e8c4df", "fields": {"nom_de_la_commune": "BURGY", "libell_d_acheminement": "BURGY", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71066"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c65fbe16ece39cc4ba8d33888c87b94528be78", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71069"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0bd85acf2f569e206876651c50ab26b14cfe3d5", "fields": {"nom_de_la_commune": "CHAMILLY", "libell_d_acheminement": "CHAMILLY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71078"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37767cdd18ecaf2d9a99f2a754b0b535aa5520ca", "fields": {"nom_de_la_commune": "CHAMPAGNAT", "libell_d_acheminement": "CHAMPAGNAT", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71079"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba01f9ba01cef8fc2b3cee370781514d88fe2a7c", "fields": {"nom_de_la_commune": "CHAMPLECY", "libell_d_acheminement": "CHAMPLECY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71082"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49d17d6a361011dc8b7dd7bbb504ba0ff9d5d9a", "fields": {"nom_de_la_commune": "CHANGE", "libell_d_acheminement": "CHANGE", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "71085"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae172b4edcd35637b52349cabd4dc74137d8baa", "fields": {"nom_de_la_commune": "CHANGY", "libell_d_acheminement": "CHANGY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71086"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0f834af18d55291943f11fe0548284c1c07156", "fields": {"nom_de_la_commune": "CHAPAIZE", "libell_d_acheminement": "CHAPAIZE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71087"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdfe62f12c3a7a796985895703fa6d2af2a4681a", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS DUN", "libell_d_acheminement": "LA CHAPELLE SOUS DUN", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71095"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ed9de98d89a48801302b04df53b7b033c7424e", "fields": {"nom_de_la_commune": "CHARBONNIERES", "libell_d_acheminement": "CHARBONNIERES", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71099"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680e646d51bb8187711f6d1f63945c4c888affb9", "fields": {"nom_de_la_commune": "CHARMOY", "libell_d_acheminement": "CHARMOY", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71103"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd89a84f091a36714384e31094106892d99f53e9", "fields": {"nom_de_la_commune": "CHATENOY EN BRESSE", "libell_d_acheminement": "CHATENOY EN BRESSE", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71117"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d758c152df63589eefa8e22245adf567a480ff96", "fields": {"nom_de_la_commune": "CHAUFFAILLES", "libell_d_acheminement": "CHAUFFAILLES", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71120"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a92234e61e9f18e70449ff4ffe6c35457f63fe", "fields": {"nom_de_la_commune": "LA CHAUX", "libell_d_acheminement": "LA CHAUX", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71121"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b32510503073359bad9ec72bb311c86a81f83a8", "fields": {"nom_de_la_commune": "CHERIZET", "libell_d_acheminement": "CHERIZET", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71125"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb533fa40769228fd08916fc4036dbe7d20c5c70", "fields": {"nom_de_la_commune": "CIRY LE NOBLE", "libell_d_acheminement": "CIRY LE NOBLE", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71132"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb4f809ee9c1fafe5728d12bb4a6dd712e37f03", "fields": {"nom_de_la_commune": "COUCHES", "libell_d_acheminement": "COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71149"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af149bcd4d25fe0cd5964cef79d087dd73129e0", "fields": {"nom_de_la_commune": "CREOT", "libell_d_acheminement": "CREOT", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71151"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95248ebee874750fc8d6fb194358e2d17465bad7", "fields": {"nom_de_la_commune": "CURBIGNY", "libell_d_acheminement": "CURBIGNY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71160"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb948edd8a9dd7bda3f42f6b0d3526d29c184a80", "fields": {"nom_de_la_commune": "CURGY", "libell_d_acheminement": "CURGY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71162"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb7628e6951e23613d7cf24aec2248a48e9a62a", "fields": {"nom_de_la_commune": "CURTIL SOUS BUFFIERES", "libell_d_acheminement": "CURTIL SOUS BUFFIERES", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71163"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c6d034f2129c727f3d9f10b7ce9369354bc57bc", "fields": {"nom_de_la_commune": "DICONNE", "libell_d_acheminement": "DICONNE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71175"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73da49a835685f32c40fc6dcc38d2989f418300c", "fields": {"code_postal": "71160", "code_commune_insee": "71176", "libell_d_acheminement": "DIGOIN", "ligne_5": "VIGNY LES PARAY", "nom_de_la_commune": "DIGOIN", "coordonnees_gps": [46.5259433972, 3.94371544939]}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c538841101e669dc7553036c6c55ebea6d08d6d6", "fields": {"nom_de_la_commune": "DOMMARTIN LES CUISEAUX", "libell_d_acheminement": "DOMMARTIN LES CUISEAUX", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71177"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def91b11c480162c8c784bb858e9b01ea503d75c", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27620"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc9e115460c37f04b3a06951e711925ffe8c384", "fields": {"nom_de_la_commune": "THEILLEMENT", "libell_d_acheminement": "THEILLEMENT", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27626"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82d23ac21e42f009f1c4832d2da32a6521d3e0f", "fields": {"nom_de_la_commune": "TOURVILLE LA CAMPAGNE", "libell_d_acheminement": "TOURVILLE LA CAMPAGNE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27654"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f75ba848859c8c70cb861ee9d7984dc41905f6", "fields": {"nom_de_la_commune": "TRIQUEVILLE", "libell_d_acheminement": "TRIQUEVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27662"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49d828e35a5c189e45327da71989cdb2c944f03", "fields": {"nom_de_la_commune": "VALAILLES", "libell_d_acheminement": "VALAILLES", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27667"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07562d320872ebad3c1ee25339218ba1e1cf857e", "fields": {"nom_de_la_commune": "VALLETOT", "libell_d_acheminement": "VALLETOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27669"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703027343b8c96aa3c6e13ba98eeb9a5798c2d6e", "fields": {"nom_de_la_commune": "VANNECROCQ", "libell_d_acheminement": "VANNECROCQ", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27671"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362988b31559c81ce66119323bf6e7658d0eb55b", "fields": {"nom_de_la_commune": "VASCOEUIL", "libell_d_acheminement": "VASCOEUIL", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27672"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3690b62a869960506582b57874465072cb3175cb", "fields": {"nom_de_la_commune": "VAUX SUR EURE", "libell_d_acheminement": "VAUX SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27674"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc55656dde7586e93fa1029f3d88db0a47feace", "fields": {"nom_de_la_commune": "VERNON", "libell_d_acheminement": "VERNON", "code_postal": "27200", "coordonnees_gps": [49.0878727116, 1.48448951533], "code_commune_insee": "27681"}, "geometry": {"type": "Point", "coordinates": [1.48448951533, 49.0878727116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d68ab7a501ea1f67715fd87a43e098d8a02529", "fields": {"nom_de_la_commune": "LE VIEIL EVREUX", "libell_d_acheminement": "LE VIEIL EVREUX", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27684"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3397f9a6eaf630df3f148e541fe68dc21b7088", "fields": {"nom_de_la_commune": "VILLEGATS", "libell_d_acheminement": "VILLEGATS", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27689"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea1bb14bce0188ae8a9d4cc65002ecffccb65cb", "fields": {"code_postal": "27240", "code_commune_insee": "27693", "libell_d_acheminement": "SYLVAINS LES MOULINS", "ligne_5": "VILLALET", "nom_de_la_commune": "SYLVAINS LES MOULINS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6622006a4ad6121e2e3269dbb26a8d9aeb04516d", "fields": {"nom_de_la_commune": "VILLEZ SUR LE NEUBOURG", "libell_d_acheminement": "VILLEZ SUR LE NEUBOURG", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27695"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69004bd68f5aeee3acee1ffbb21a532411ebbcd4", "fields": {"nom_de_la_commune": "VAL DE REUIL", "libell_d_acheminement": "VAL DE REUIL", "code_postal": "27100", "coordonnees_gps": [49.2628287582, 1.2134503663], "code_commune_insee": "27701"}, "geometry": {"type": "Point", "coordinates": [1.2134503663, 49.2628287582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00143b86899bb605e22ac907b32462923d514f44", "fields": {"code_postal": "28310", "code_commune_insee": "28002", "libell_d_acheminement": "ALLAINES MERVILLIERS", "ligne_5": "MERVILLIERS", "nom_de_la_commune": "ALLAINES MERVILLIERS", "coordonnees_gps": [48.2536557069, 1.88422826059]}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc60a0527c9575172694df285153b8840fc62a7", "fields": {"nom_de_la_commune": "ANET", "libell_d_acheminement": "ANET", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28007"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c8e5418338bcee04fafb4f303e2022dd85ce54e", "fields": {"nom_de_la_commune": "AUNAY SOUS AUNEAU", "libell_d_acheminement": "AUNAY SOUS AUNEAU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28013"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a1750fb4c3972bd72253008b022aff4282a4825", "fields": {"nom_de_la_commune": "AUTHON DU PERCHE", "libell_d_acheminement": "AUTHON DU PERCHE", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28018"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8766c4c9dbe3eb9adecf362b2d55dca138875f", "fields": {"nom_de_la_commune": "BAIGNEAUX", "libell_d_acheminement": "BAIGNEAUX", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28019"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4471af6745a858be221865f16a7a319dc5c9ffee", "fields": {"nom_de_la_commune": "BAILLEAU L EVEQUE", "libell_d_acheminement": "BAILLEAU L EVEQUE", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28022"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0dbe72ccc14131dcf42d0dd266b0e31c6a1a60e", "fields": {"nom_de_la_commune": "LA BAZOCHE GOUET", "libell_d_acheminement": "LA BAZOCHE GOUET", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28027"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da23f47fb36239762c22be32e0502b13be52fd4a", "fields": {"nom_de_la_commune": "BAZOCHES EN DUNOIS", "libell_d_acheminement": "BAZOCHES EN DUNOIS", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28028"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d11a5ca320fc1405dd76f6390bc9574bccc64a", "fields": {"nom_de_la_commune": "BEAUVILLIERS", "libell_d_acheminement": "BEAUVILLIERS", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28032"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79af878f13ed1b483f1c4a643b3c2d321e714320", "fields": {"nom_de_la_commune": "BERCHERES ST GERMAIN", "libell_d_acheminement": "BERCHERES ST GERMAIN", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28034"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c25ae71824e128ad45d8f53ab8c7209d18086c", "fields": {"code_postal": "28300", "code_commune_insee": "28034", "libell_d_acheminement": "BERCHERES ST GERMAIN", "ligne_5": "ST GERMAIN LA GATINE", "nom_de_la_commune": "BERCHERES ST GERMAIN", "coordonnees_gps": [48.4964776729, 1.45446147738]}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e5af52e40eaf9f0354d344e304a595c3ebac08", "fields": {"nom_de_la_commune": "BLANDAINVILLE", "libell_d_acheminement": "BLANDAINVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28041"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38b0f732ec5d08fa790a3413079ad87088930ed", "fields": {"nom_de_la_commune": "BOISSY LES PERCHE", "libell_d_acheminement": "BOISSY LES PERCHE", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28046"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecdf81453a9b920a73277492dede93f61ddb37f", "fields": {"code_postal": "28360", "code_commune_insee": "28048", "libell_d_acheminement": "LA BOURDINIERE ST LOUP", "ligne_5": "ST LOUP", "nom_de_la_commune": "LA BOURDINIERE ST LOUP", "coordonnees_gps": [48.3227374254, 1.50670193351]}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be6704c64ecc5457d44620fb19d1f96761369f0", "fields": {"nom_de_la_commune": "BONCE", "libell_d_acheminement": "BONCE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28049"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ec107ad1950f5aa6ba4bec56c3830b26b09ae9", "fields": {"nom_de_la_commune": "LE BOULLAY MIVOYE", "libell_d_acheminement": "LE BOULLAY MIVOYE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28054"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3f903ced495d77dafce9c4d7497930f105813c", "fields": {"nom_de_la_commune": "BRUNELLES", "libell_d_acheminement": "BRUNELLES", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28063"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4982847753036d71ccffd716ebbe8cde29ca2827", "fields": {"nom_de_la_commune": "BU", "libell_d_acheminement": "BU", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28064"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646214aad40575c32350f15d7334900fb87c2805", "fields": {"nom_de_la_commune": "CHAMPSERU", "libell_d_acheminement": "CHAMPSERU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28073"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec741cac00163bc084081dd71e05012d4625f14", "fields": {"nom_de_la_commune": "LA CHAPELLE D AUNAINVILLE", "libell_d_acheminement": "LA CHAPELLE D AUNAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28074"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f595aee6957de259bac56d82f177c0384eae874e", "fields": {"nom_de_la_commune": "CHATEAUDUN", "libell_d_acheminement": "CHATEAUDUN", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28088"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd4113f239ed3853a732942808d274ce77e6ab1", "fields": {"nom_de_la_commune": "CHATEAUNEUF EN THYMERAIS", "libell_d_acheminement": "CHATEAUNEUF EN THYMERAIS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28089"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e8e02eb6d6cb40306492cd0d9b1785cab21c52", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28092"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb7dd0bc527004d12f56f06fbf7bea53a75957a", "fields": {"nom_de_la_commune": "CHATILLON EN DUNOIS", "libell_d_acheminement": "CHATILLON EN DUNOIS", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28093"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8e6667218e4033a1dbfa863a83655d9d39c144", "fields": {"nom_de_la_commune": "CHAUDON", "libell_d_acheminement": "CHAUDON", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28094"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5071d921135d3e239bf47457f0b26f3681ad4620", "fields": {"nom_de_la_commune": "LA CHAUSSEE D IVRY", "libell_d_acheminement": "LA CHAUSSEE D IVRY", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28096"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa11b81d476938e0f5d5936402969787b1cb4450", "fields": {"nom_de_la_commune": "LES CORVEES LES YYS", "libell_d_acheminement": "LES CORVEES LES YYS", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28109"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a11bee7179822a96c9959650003d1dbf9076184", "fields": {"nom_de_la_commune": "LE COUDRAY", "libell_d_acheminement": "LE COUDRAY", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28110"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdf58a9923f0eb9181484f950c0537e413fb0eae", "fields": {"nom_de_la_commune": "COUDRAY AU PERCHE", "libell_d_acheminement": "COUDRAY AU PERCHE", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28111"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09aec67bdd3e75742af52de33f35793c8688b923", "fields": {"nom_de_la_commune": "COUDRECEAU", "libell_d_acheminement": "COUDRECEAU", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28112"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cf933e8760760554eb9811a2fdd85a6c8467a9", "fields": {"nom_de_la_commune": "DAMPIERRE SUR AVRE", "libell_d_acheminement": "DAMPIERRE SUR AVRE", "code_postal": "28350", "coordonnees_gps": [48.7549252293, 1.16177089609], "code_commune_insee": "28124"}, "geometry": {"type": "Point", "coordinates": [1.16177089609, 48.7549252293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3f67480003febdf4709c342b98b99c0b91829d", "fields": {"nom_de_la_commune": "DANGEAU", "libell_d_acheminement": "DANGEAU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28127"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a007f8fbb42c22ff4ee66b196b3dfa1ec65df4", "fields": {"nom_de_la_commune": "DANGERS", "libell_d_acheminement": "DANGERS", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28128"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb62d7afaee8d674b344ecaffb01eb5e6a5a57f", "fields": {"nom_de_la_commune": "DOUY", "libell_d_acheminement": "DOUY", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28133"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b14bc44a827ea3effa59848cb18e0ecb7029394", "fields": {"nom_de_la_commune": "ECLUZELLES", "libell_d_acheminement": "ECLUZELLES", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28136"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb80800fdac481bedf297112c7b64613de6867e", "fields": {"nom_de_la_commune": "ERMENONVILLE LA GRANDE", "libell_d_acheminement": "ERMENONVILLE LA GRANDE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28141"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a52e1b941b09d4327c27b9757289c502e8eef1", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28146"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a08b091622683259ed38cef342808ee8e5866e9d", "fields": {"nom_de_la_commune": "LA FERTE VILLENEUIL", "libell_d_acheminement": "LA FERTE VILLENEUIL", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28150"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1e7a731a5db48a71c0d242518d1e0a50d7b04f", "fields": {"nom_de_la_commune": "FONTENAY SUR CONIE", "libell_d_acheminement": "FONTENAY SUR CONIE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28157"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2f24ada981247e1a22af47939424c86ac55034", "fields": {"nom_de_la_commune": "FRAZE", "libell_d_acheminement": "FRAZE", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28161"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8d7bdc65af8fa8dbd2a685389d75450924153a", "fields": {"nom_de_la_commune": "FRESNAY LE GILMERT", "libell_d_acheminement": "FRESNAY LE GILMERT", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28163"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a91c68db0482ba30f7a55358360316fad58e587", "fields": {"nom_de_la_commune": "FRESNAY L EVEQUE", "libell_d_acheminement": "FRESNAY L EVEQUE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28164"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575de1b6873a7ae1181f63fcf1b80b89b9a8ffb6", "fields": {"nom_de_la_commune": "GASVILLE OISEME", "libell_d_acheminement": "GASVILLE OISEME", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28173"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75dce4649a3bea70e362494eae7684b3fa91b1a6", "fields": {"nom_de_la_commune": "GILLES", "libell_d_acheminement": "GILLES", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28180"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9acca600472084206b780623ca45d9c73804dc2", "fields": {"code_postal": "28700", "code_commune_insee": "28183", "libell_d_acheminement": "GOMMERVILLE", "ligne_5": "ORLU", "nom_de_la_commune": "GOMMERVILLE", "coordonnees_gps": [48.4174133692, 1.78775113893]}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a21a85de8f249ce9156c390bca8f8a14f79f0244", "fields": {"code_postal": "28410", "code_commune_insee": "28185", "libell_d_acheminement": "GOUSSAINVILLE", "ligne_5": "CHAMPAGNE", "nom_de_la_commune": "GOUSSAINVILLE", "coordonnees_gps": [48.777838041, 1.50962562015]}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0898a0c5dc89dc05492891a8a2b126472720ae78", "fields": {"nom_de_la_commune": "LE GUE DE LONGROI", "libell_d_acheminement": "LE GUE DE LONGROI", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28188"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6c24a9a313d5268cf78098f1ae9cbb8676c794", "fields": {"nom_de_la_commune": "HAVELU", "libell_d_acheminement": "HAVELU", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28193"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "449f9e7614ee5d94507db33bfd863dffc4c4d327", "fields": {"nom_de_la_commune": "HOUVILLE LA BRANCHE", "libell_d_acheminement": "HOUVILLE LA BRANCHE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28194"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f38bc012f362fc80273ae866d56f29927d6585", "fields": {"nom_de_la_commune": "INTREVILLE", "libell_d_acheminement": "INTREVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28197"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5000511a60f9b2fc9ec4b18e090910c0f2239770", "fields": {"nom_de_la_commune": "LANNERAY", "libell_d_acheminement": "LANNERAY", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28205"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84707bdc64d37c94cc422764550a427e3c9b18f6", "fields": {"nom_de_la_commune": "LAONS", "libell_d_acheminement": "LAONS", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28206"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9057f678cc6a171316bf4ef53125d2595fba343e", "fields": {"nom_de_la_commune": "LEVES", "libell_d_acheminement": "LEVES", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28209"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b089568b6642c91d4c872344b9b32a1be84b9b03", "fields": {"nom_de_la_commune": "LOUVILLIERS LES PERCHE", "libell_d_acheminement": "LOUVILLIERS LES PERCHE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28217"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d250dbf16acb2a75da588ba32fcad4b2c0f00e", "fields": {"nom_de_la_commune": "MARBOUE", "libell_d_acheminement": "MARBOUE", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28233"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c070e6cd3ba40ffc62fc56313e205c556f2c20d", "fields": {"nom_de_la_commune": "MARCHEZAIS", "libell_d_acheminement": "MARCHEZAIS", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28235"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3258fa8e3a11bea773055b3f5dbbcd8e8b9731aa", "fields": {"nom_de_la_commune": "MEAUCE", "libell_d_acheminement": "MEAUCE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28240"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1849c9d68c41d0356b2a2c17801a29e86a486962", "fields": {"nom_de_la_commune": "MONTHARVILLE", "libell_d_acheminement": "MONTHARVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28260"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976fe7154cefa502f504ec278b0d91a0ac046eee", "fields": {"nom_de_la_commune": "NONVILLIERS GRANDHOUX", "libell_d_acheminement": "NONVILLIERS GRANDHOUX", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28282"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b3d025f3c2b77f5ea1a76b70b342b9d4343fd9", "fields": {"nom_de_la_commune": "OINVILLE SOUS AUNEAU", "libell_d_acheminement": "OINVILLE SOUS AUNEAU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28285"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9fd73ee964631703fdeef14500762393563b1b", "fields": {"nom_de_la_commune": "ORGERES EN BEAUCE", "libell_d_acheminement": "ORGERES EN BEAUCE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28287"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe6a5bde993387c40ec8f8da2626ce33ac2f0e3", "fields": {"nom_de_la_commune": "PRUDEMANCHE", "libell_d_acheminement": "PRUDEMANCHE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28308"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493e5ea248661ae60dd8e395659725e989f89b53", "fields": {"nom_de_la_commune": "REVERCOURT", "libell_d_acheminement": "REVERCOURT", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28315"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3a61b3aeabeb9efac0e443259781eea62c605c", "fields": {"nom_de_la_commune": "ST ANGE ET TORCAY", "libell_d_acheminement": "ST ANGE ET TORCAY", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28323"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b74c49ac0cb18f8709488aafe2b21323bcd0792", "fields": {"nom_de_la_commune": "ST BOMER", "libell_d_acheminement": "ST BOMER", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28327"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3967a9c48d24d0319d1ef936710d97a773212b", "fields": {"nom_de_la_commune": "ST CLOUD EN DUNOIS", "libell_d_acheminement": "ST CLOUD EN DUNOIS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28330"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23649531618e4593d9996a06e1fddfaa5474348", "fields": {"nom_de_la_commune": "ST DENIS D AUTHOU", "libell_d_acheminement": "ST DENIS D AUTHOU", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28331"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f58544fbd5b453a16f484caaf23d782abe237bc", "fields": {"nom_de_la_commune": "ST LUBIN DES JONCHERETS", "libell_d_acheminement": "ST LUBIN DES JONCHERETS", "code_postal": "28350", "coordonnees_gps": [48.7549252293, 1.16177089609], "code_commune_insee": "28348"}, "geometry": {"type": "Point", "coordinates": [1.16177089609, 48.7549252293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e13b5c3debefda2fb8e7b79884f0ffb9772d81", "fields": {"nom_de_la_commune": "SENONCHES", "libell_d_acheminement": "SENONCHES", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28373"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3c9648c70e0618bdf32186b34ec03811a6b676", "fields": {"nom_de_la_commune": "SOULAIRES", "libell_d_acheminement": "SOULAIRES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28379"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25ed51442611bf5bded7aeb74c40bfbefbef139", "fields": {"nom_de_la_commune": "THEUVILLE", "libell_d_acheminement": "THEUVILLE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28383"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b3fcb920bf13d4f160fe2f0ec7b1027e7b0cf5", "fields": {"nom_de_la_commune": "LE THIEULIN", "libell_d_acheminement": "LE THIEULIN", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28385"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd71bec8d7a7f6abf9712082e4b5cbcf2789a744", "fields": {"nom_de_la_commune": "THIVARS", "libell_d_acheminement": "THIVARS", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28388"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d3f6055efe9801afb8b289f9ac24876f9c5636", "fields": {"nom_de_la_commune": "TILLAY LE PENEUX", "libell_d_acheminement": "TILLAY LE PENEUX", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28390"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6cc0080bbf3a5540599fcf455593af84e3384c", "fields": {"nom_de_la_commune": "TRIZAY LES BONNEVAL", "libell_d_acheminement": "TRIZAY LES BONNEVAL", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28396"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913a37f28cf87e3262db56c80a7d3a7784b46346", "fields": {"nom_de_la_commune": "VERNOUILLET", "libell_d_acheminement": "VERNOUILLET", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28404"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5b21792935094c882c6ea734b130e52a4262414", "fields": {"nom_de_la_commune": "VERT EN DROUAIS", "libell_d_acheminement": "VERT EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28405"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52fb19789d12794a777e482893379a1813ad4f4", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "ROUVRAY ST FLORENTIN", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad3daad6567f57dde1a51eba8b96d0401c1bbbb", "fields": {"nom_de_la_commune": "YMONVILLE", "libell_d_acheminement": "YMONVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28426"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48ab48c4cd5c9d5eedda33dcbce8b4006911a5b", "fields": {"nom_de_la_commune": "BERRIEN", "libell_d_acheminement": "BERRIEN", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29007"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed1411cb70023b3f6b38e2076e3a6762f7040e3", "fields": {"nom_de_la_commune": "BEUZEC CAP SIZUN", "libell_d_acheminement": "BEUZEC CAP SIZUN", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29008"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed3efe9d1585baf4e82d65e9c803f487eb4d57d", "fields": {"nom_de_la_commune": "BOLAZEC", "libell_d_acheminement": "BOLAZEC", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29012"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86cdde0e1b7c9585ff132926933be1a20b43995f", "fields": {"nom_de_la_commune": "BOTMEUR", "libell_d_acheminement": "BOTMEUR", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29013"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e542952e49e4b8b86ef7c8af02caffec3eb5f6d1", "fields": {"nom_de_la_commune": "BOTSORHEL", "libell_d_acheminement": "BOTSORHEL", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29014"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c464b892f5728c508c847bebd191ca290f719b9", "fields": {"nom_de_la_commune": "BRELES", "libell_d_acheminement": "BRELES", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29017"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df49f1a2504d8b7513465486c7e23a10527115b", "fields": {"nom_de_la_commune": "PRONVILLE", "libell_d_acheminement": "PRONVILLE", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62671"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ee0abc07761821e77cf948de73d82553b63fb7", "fields": {"nom_de_la_commune": "QUERNES", "libell_d_acheminement": "QUERNES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62676"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac2c978c7df39209e9cff47c33fb50a137e82be", "fields": {"nom_de_la_commune": "QUIERY LA MOTTE", "libell_d_acheminement": "QUIERY LA MOTTE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62680"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15c3ce839f8cd3ec3f3863eeb75f080f0a344253", "fields": {"nom_de_la_commune": "QUIESTEDE", "libell_d_acheminement": "QUIESTEDE", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62681"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b7266bcd3c1f7190737926043ba2211219bbd9", "fields": {"nom_de_la_commune": "RANG DU FLIERS", "libell_d_acheminement": "RANG DU FLIERS", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62688"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940d94b9efbf501daed405fefa3f81bde5e46b0e", "fields": {"code_postal": "62120", "code_commune_insee": "62691", "libell_d_acheminement": "ST AUGUSTIN", "ligne_5": "REBECQUES", "nom_de_la_commune": "ST AUGUSTIN", "coordonnees_gps": [50.6358470101, 2.3677470535]}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1749d0956cb72225abf143997fa13ed9bfe4f954", "fields": {"nom_de_la_commune": "REGNAUVILLE", "libell_d_acheminement": "REGNAUVILLE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62700"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6670140298bd917c0c03b2c9f58f73f450d09eaa", "fields": {"nom_de_la_commune": "REMILLY WIRQUIN", "libell_d_acheminement": "REMILLY WIRQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62702"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139dc5e8d26f0f38cbbac435dbbf70308190bb25", "fields": {"nom_de_la_commune": "REMY", "libell_d_acheminement": "REMY", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62703"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ee02f0ff9f9119ff717ea850e1b687e09dba7f", "fields": {"nom_de_la_commune": "RICHEBOURG", "libell_d_acheminement": "RICHEBOURG", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62706"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f2bd5ba8b211dcf7977723752be947e87a6317", "fields": {"nom_de_la_commune": "RIENCOURT LES CAGNICOURT", "libell_d_acheminement": "RIENCOURT LES CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62709"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242a5da221112d47230357b8e599655b5058186e", "fields": {"nom_de_la_commune": "RIMBOVAL", "libell_d_acheminement": "RIMBOVAL", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62710"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790139c935719aadd642283490dee5ae942eab04", "fields": {"nom_de_la_commune": "ROBECQ", "libell_d_acheminement": "ROBECQ", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62713"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5c616352df234474fa22119856be6bfa10ce39", "fields": {"nom_de_la_commune": "ROELLECOURT", "libell_d_acheminement": "ROELLECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62717"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7f3ba200db975631463ad1b0e3eeecd7519e5a", "fields": {"nom_de_la_commune": "ROUGEFAY", "libell_d_acheminement": "ROUGEFAY", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62722"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42626f64a2f41d87a6d4c91e16de7330f37a855f", "fields": {"nom_de_la_commune": "ROUVROY", "libell_d_acheminement": "ROUVROY", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62724"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a037609c3304d97000b340c47d0cf0d01f14cd", "fields": {"nom_de_la_commune": "RUMAUCOURT", "libell_d_acheminement": "RUMAUCOURT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62728"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ddced14885acc5c4a7acfa4fd362e621684834", "fields": {"nom_de_la_commune": "ST AMAND", "libell_d_acheminement": "ST AMAND", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62741"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78716316662b7203078f60081b7fe65821833d71", "fields": {"nom_de_la_commune": "ST DENOEUX", "libell_d_acheminement": "ST DENOEUX", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62745"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf2fb13d135fd461bf72dfe2a9cb974d10bb666", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62749"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8427c8dd309938d590216bdc977dccc0e319ed", "fields": {"nom_de_la_commune": "ST INGLEVERT", "libell_d_acheminement": "ST INGLEVERT", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62751"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bedd2d0d411f2c9a4f29c85b983276fe9bd63fc", "fields": {"nom_de_la_commune": "ST LAURENT BLANGY", "libell_d_acheminement": "ST LAURENT BLANGY", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62753"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674af3eb1f903aefb7feec17c48a57569ce598ff", "fields": {"nom_de_la_commune": "ST MARTIN LEZ TATINGHEM", "libell_d_acheminement": "ST MARTIN LEZ TATINGHEM", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62757"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d76586630c793faccfa588573c9771a9f8120d4", "fields": {"code_postal": "62500", "code_commune_insee": "62757", "libell_d_acheminement": "ST MARTIN LEZ TATINGHEM", "ligne_5": "TATINGHEM", "nom_de_la_commune": "ST MARTIN LEZ TATINGHEM", "coordonnees_gps": [50.7591830774, 2.23290877714]}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c013ebac653d2b6f2cb797073d8d1e79a5478a3", "fields": {"nom_de_la_commune": "ST MARTIN BOULOGNE", "libell_d_acheminement": "ST MARTIN BOULOGNE", "code_postal": "62280", "coordonnees_gps": [50.723565994, 1.64723102775], "code_commune_insee": "62758"}, "geometry": {"type": "Point", "coordinates": [1.64723102775, 50.723565994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397ebee7cb2fe8d253de3282fda8d09d35e1a793", "fields": {"nom_de_la_commune": "ST POL SUR TERNOISE", "libell_d_acheminement": "ST POL SUR TERNOISE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62767"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42c1decdf35aeb1db3f211c77084ff724f83c2a", "fields": {"nom_de_la_commune": "SAMER", "libell_d_acheminement": "SAMER", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62773"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10904a1ebf42517fb0313f5d7d71564f96a660d3", "fields": {"nom_de_la_commune": "SANGATTE", "libell_d_acheminement": "SANGATTE", "code_postal": "62231", "coordonnees_gps": [50.929758247, 1.77843645708], "code_commune_insee": "62774"}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f934c1e0ef69aa58b56d468a2d1c984a154695", "fields": {"nom_de_la_commune": "SANGHEN", "libell_d_acheminement": "SANGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62775"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc512cd67956f36b2e526fbc932a5fcf2ec89b77", "fields": {"nom_de_la_commune": "SAULTY", "libell_d_acheminement": "SAULTY", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62784"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6856f293f20fdb3b75a27f9f32ca1822ed680813", "fields": {"nom_de_la_commune": "SERQUES", "libell_d_acheminement": "SERQUES", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62792"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6554ea810780f5a8735f0ec7f002c35a423a2492", "fields": {"nom_de_la_commune": "SOUASTRE", "libell_d_acheminement": "SOUASTRE", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62800"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12203e3490f4b9563bd22617108f06f279c5faa", "fields": {"nom_de_la_commune": "TANGRY", "libell_d_acheminement": "TANGRY", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62805"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3e1f734fa410515bc94bda7f501e3d865caaa0", "fields": {"nom_de_la_commune": "TENEUR", "libell_d_acheminement": "TENEUR", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62808"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe2d70118ad65610e87fbff1f3bd0489a24241a", "fields": {"nom_de_la_commune": "THELUS", "libell_d_acheminement": "THELUS", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62810"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebb391e43ca183bce911a1a6c90ebe7cbeedc7c", "fields": {"nom_de_la_commune": "THEROUANNE", "libell_d_acheminement": "THEROUANNE", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62811"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac323e149f3e053b54d7572e0fbb62c40624c08", "fields": {"nom_de_la_commune": "LA THIEULOYE", "libell_d_acheminement": "LA THIEULOYE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62813"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0868d38ddaaddfa83f324b99ca38cea198e051c4", "fields": {"nom_de_la_commune": "TILLOY LES MOFFLAINES", "libell_d_acheminement": "TILLOY LES MOFFLAINES", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62817"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca1987888a1fff2fc1275b599aac0c72c66bcc0", "fields": {"nom_de_la_commune": "TILLY CAPELLE", "libell_d_acheminement": "TILLY CAPELLE", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62818"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d52afc0aab73d282164f60839ff53c09b7fac9", "fields": {"nom_de_la_commune": "TINGRY", "libell_d_acheminement": "TINGRY", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62821"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f0928f3b0131d38d2012e6b0393a4d4cc19484", "fields": {"nom_de_la_commune": "TORCY", "libell_d_acheminement": "TORCY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62823"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539ab3cabff8160740cbfd7220a9eebd002e55b0", "fields": {"nom_de_la_commune": "TROISVAUX", "libell_d_acheminement": "TROISVAUX", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62831"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fc01620d3663f51a0cc503b369e1da43cffc70", "fields": {"nom_de_la_commune": "VALHUON", "libell_d_acheminement": "VALHUON", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62835"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66348150666425d1e19a60dc78ccf22989b74b0", "fields": {"nom_de_la_commune": "VERTON", "libell_d_acheminement": "VERTON", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62849"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c540eada2ff21d41f788478b57c6db82c9f1b0f3", "fields": {"nom_de_la_commune": "VILLERS BRULIN", "libell_d_acheminement": "VILLERS BRULIN", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62856"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c71750fc7c5906bb6b079e6ab6664d5e4cce34", "fields": {"nom_de_la_commune": "VINCLY", "libell_d_acheminement": "VINCLY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62862"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a7783f0a01f96feac8f2fe3a6af5353ce6d627", "fields": {"nom_de_la_commune": "WANCOURT", "libell_d_acheminement": "WANCOURT", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62873"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65f2f66b52f2a45fc9b58aada8cf2419f97e91e", "fields": {"nom_de_la_commune": "WANQUETIN", "libell_d_acheminement": "WANQUETIN", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62874"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7be3d6aa5b74d9f9bef3a2816a9def411a2673", "fields": {"nom_de_la_commune": "BEAUVOIR WAVANS", "libell_d_acheminement": "BEAUVOIR WAVANS", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62881"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf96a34912c55a36bdaeaf06c2f3de62041ac85e", "fields": {"nom_de_la_commune": "WAVRANS SUR L AA", "libell_d_acheminement": "WAVRANS SUR L AA", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62882"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94e53f78a04aec853980a881bacc653c98bfca54", "fields": {"nom_de_la_commune": "WAVRANS SUR TERNOISE", "libell_d_acheminement": "WAVRANS SUR TERNOISE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62883"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441e110b626522eec8779dde278fc172085ebb0e", "fields": {"nom_de_la_commune": "WILLEMAN", "libell_d_acheminement": "WILLEMAN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62890"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d7173b6e8cf41bf61a7254ade639eee2f5533b", "fields": {"nom_de_la_commune": "WILLENCOURT", "libell_d_acheminement": "WILLENCOURT", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62891"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f2050414566c171d66ce74e0779f5f25013175", "fields": {"nom_de_la_commune": "WITTES", "libell_d_acheminement": "WITTES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62901"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e1bf743490af23c3a903bc5d4600bb4664e4ee", "fields": {"nom_de_la_commune": "WIZERNES", "libell_d_acheminement": "WIZERNES", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62902"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40e7219e5507ef397339a6a203d0b7689c62d53", "fields": {"nom_de_la_commune": "ZOUAFQUES", "libell_d_acheminement": "ZOUAFQUES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62904"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b06ec2ad14dc3e71ef34da2c31bb80a75f520e", "fields": {"nom_de_la_commune": "AIX LA FAYETTE", "libell_d_acheminement": "AIX LA FAYETTE", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63002"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea2280741267442f5f7ce06e26fd712c2108715", "fields": {"nom_de_la_commune": "LES ANCIZES COMPS", "libell_d_acheminement": "LES ANCIZES COMPS", "code_postal": "63770", "coordonnees_gps": [45.9328819518, 2.80522779596], "code_commune_insee": "63004"}, "geometry": {"type": "Point", "coordinates": [2.80522779596, 45.9328819518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7ab6655bf3000054bb4357ce48e60f8ed9b8f5", "fields": {"nom_de_la_commune": "ANTOINGT", "libell_d_acheminement": "ANTOINGT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63005"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc04719f0575801f4d2854434ed26cea8546d264", "fields": {"nom_de_la_commune": "ARCONSAT", "libell_d_acheminement": "ARCONSAT", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63008"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3663ab5b2974ea08f7e2d8814d507051dd1f3e70", "fields": {"nom_de_la_commune": "ARDES", "libell_d_acheminement": "ARDES", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63009"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4af6ad79cbd17bc8f88daa3f6f1ba8ed0f8c48c", "fields": {"nom_de_la_commune": "ARLANC", "libell_d_acheminement": "ARLANC", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63010"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692c8f0de0a2b11b17a0d0227880d36878c67208", "fields": {"nom_de_la_commune": "ARS LES FAVETS", "libell_d_acheminement": "ARS LES FAVETS", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63011"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0780755bad8d42de014c9da1ea6aa670ee3bce79", "fields": {"nom_de_la_commune": "ARTONNE", "libell_d_acheminement": "ARTONNE", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63012"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c613b9daa8ff2c10674b2e5b1ca309af7972ca3", "fields": {"code_postal": "63260", "code_commune_insee": "63013", "libell_d_acheminement": "AUBIAT", "ligne_5": "CHAZELLES", "nom_de_la_commune": "AUBIAT", "coordonnees_gps": [46.0185019732, 3.21337186417]}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "176c06d45805b8ed60e561d6547d41b8df4ac621", "fields": {"nom_de_la_commune": "AUBIERE", "libell_d_acheminement": "AUBIERE", "code_postal": "63170", "coordonnees_gps": [45.7453592394, 3.13138248185], "code_commune_insee": "63014"}, "geometry": {"type": "Point", "coordinates": [3.13138248185, 45.7453592394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1beec70f04cfbe3dd7cf3f7ba81ce9fbf020bb", "fields": {"nom_de_la_commune": "AUTHEZAT", "libell_d_acheminement": "AUTHEZAT", "code_postal": "63114", "coordonnees_gps": [45.6254856472, 3.19813088283], "code_commune_insee": "63021"}, "geometry": {"type": "Point", "coordinates": [3.19813088283, 45.6254856472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecedddf8346e1f6dec57368032242089e930b77", "fields": {"nom_de_la_commune": "AVEZE", "libell_d_acheminement": "AVEZE", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63024"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcbd1ff5eeb4fc9e2098067e1c4a11ce850fb1f", "fields": {"nom_de_la_commune": "BANSAT", "libell_d_acheminement": "BANSAT", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63029"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16db34dd8ce956d695b387a0b734049aab96454d", "fields": {"nom_de_la_commune": "BESSE ET ST ANASTAISE", "libell_d_acheminement": "BESSE ET ST ANASTAISE", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63038"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9708da43cfc40a0447c26212b83751078f5d33e", "fields": {"code_postal": "63610", "code_commune_insee": "63038", "libell_d_acheminement": "BESSE ET ST ANASTAISE", "ligne_5": "SUPER BESSE", "nom_de_la_commune": "BESSE ET ST ANASTAISE", "coordonnees_gps": [45.477068899, 2.93237565554]}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf3c46d72e2056b9c1f46b11db99e7fecca0de7", "fields": {"nom_de_la_commune": "BILLOM", "libell_d_acheminement": "BILLOM", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63040"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edec3cd65976bd12e2efc0500eaf889329261000", "fields": {"nom_de_la_commune": "BOUZEL", "libell_d_acheminement": "BOUZEL", "code_postal": "63910", "coordonnees_gps": [45.7740957976, 3.29534868018], "code_commune_insee": "63049"}, "geometry": {"type": "Point", "coordinates": [3.29534868018, 45.7740957976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298142e7e47128082284b1b276cf7f6d3637ae5c", "fields": {"nom_de_la_commune": "BRASSAC LES MINES", "libell_d_acheminement": "BRASSAC LES MINES", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63050"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d733860c311474e519e3554fada4c6fc4534518a", "fields": {"nom_de_la_commune": "BRENAT", "libell_d_acheminement": "BRENAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63051"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9eb45b5451089bb7ee1e88cc085897406f7e06b", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63064"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61a8f91021c10e530bddc348cc5c75a7acae695", "fields": {"nom_de_la_commune": "CELLES SUR DUROLLE", "libell_d_acheminement": "CELLES SUR DUROLLE", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63066"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de308311eac14a6ad29718eb53cf26425a2ddf02", "fields": {"nom_de_la_commune": "CEYRAT", "libell_d_acheminement": "CEYRAT", "code_postal": "63122", "coordonnees_gps": [45.7250562511, 3.00944108289], "code_commune_insee": "63070"}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d64f7df2c153e3f100796d4179f8c2122b0bac6c", "fields": {"nom_de_la_commune": "CEYSSAT", "libell_d_acheminement": "CEYSSAT", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63071"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208c82ff04123beca413760e5b2538ff89d76eef", "fields": {"nom_de_la_commune": "CHADELEUF", "libell_d_acheminement": "CHADELEUF", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63073"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91aa17b670421c03648851d977db72a075cbb2ca", "fields": {"nom_de_la_commune": "LA CHAPELLE AGNON", "libell_d_acheminement": "LA CHAPELLE AGNON", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63086"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e47ba1b9817317a48ef43c70bc31fc8cc448c35", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR USSON", "libell_d_acheminement": "LA CHAPELLE SUR USSON", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63088"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568e7113ca3e569ae3212784421c8087624304cd", "fields": {"nom_de_la_commune": "CHARBONNIERES LES VARENNES", "libell_d_acheminement": "CHARBONNIERES LES VARENNES", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63092"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "365632c23e009b7fd433639f3aedf9ec1a719337", "fields": {"nom_de_la_commune": "CHASTREIX", "libell_d_acheminement": "CHASTREIX", "code_postal": "63680", "coordonnees_gps": [45.5115697686, 2.72357891601], "code_commune_insee": "63098"}, "geometry": {"type": "Point", "coordinates": [2.72357891601, 45.5115697686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9811fff2a4bab2667988c118eca14c0d8654d1c", "fields": {"nom_de_la_commune": "CHATEAU SUR CHER", "libell_d_acheminement": "CHATEAU SUR CHER", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63101"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2bc9c8a18533b63533f7c8b986bc01689c72de2", "fields": {"nom_de_la_commune": "CHAUMONT LE BOURG", "libell_d_acheminement": "CHAUMONT LE BOURG", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63105"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a300d2d017c4b2bbd54695df1357a0ec09f88ebe", "fields": {"nom_de_la_commune": "COMBRAILLES", "libell_d_acheminement": "COMBRAILLES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63115"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e4d46091ab9e3735233f6e9dd4b9b9418d8881", "fields": {"nom_de_la_commune": "CONDAT EN COMBRAILLE", "libell_d_acheminement": "CONDAT EN COMBRAILLE", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63118"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdc8c3d8da92370f151b0cc10666790716ca694", "fields": {"nom_de_la_commune": "CORENT", "libell_d_acheminement": "CORENT", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63120"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c6160d555e006dfd2b82a570e823600f3bb592", "fields": {"nom_de_la_commune": "COUDES", "libell_d_acheminement": "COUDES", "code_postal": "63114", "coordonnees_gps": [45.6254856472, 3.19813088283], "code_commune_insee": "63121"}, "geometry": {"type": "Point", "coordinates": [3.19813088283, 45.6254856472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9d78a05662daf8c96748b587e699dd0997a8a9", "fields": {"nom_de_la_commune": "COURGOUL", "libell_d_acheminement": "COURGOUL", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63122"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28321ecc9fb6d08fce5c2623183ce8caf5b9b8a", "fields": {"nom_de_la_commune": "CUNLHAT", "libell_d_acheminement": "CUNLHAT", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63132"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7512057f22af012e791d3979af0a6e4578aaf3d", "fields": {"nom_de_la_commune": "DAVAYAT", "libell_d_acheminement": "DAVAYAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63135"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d05b77e0ece7d24f4a66c3c6b32e74e40ed686", "fields": {"nom_de_la_commune": "DOMAIZE", "libell_d_acheminement": "DOMAIZE", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63136"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27956470bb3d3d809cbf4b7588d28b6901d15d8", "fields": {"nom_de_la_commune": "DURMIGNAT", "libell_d_acheminement": "DURMIGNAT", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63140"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa54ac9602ac60a815063ca22a3c8e3a8796a8b", "fields": {"nom_de_la_commune": "DURTOL", "libell_d_acheminement": "DURTOL", "code_postal": "63830", "coordonnees_gps": [45.8036028369, 3.05439430506], "code_commune_insee": "63141"}, "geometry": {"type": "Point", "coordinates": [3.05439430506, 45.8036028369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2763626aea4692bdd9556ddcea8b1c5adeb041", "fields": {"nom_de_la_commune": "EGLISOLLES", "libell_d_acheminement": "EGLISOLLES", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63147"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ee5688c6a2c044991c7d7e6eb519e932592eea", "fields": {"code_postal": "50800", "code_commune_insee": "50639", "libell_d_acheminement": "VILLEDIEU LES POELES ROUFFIGNY", "ligne_5": "ROUFFIGNY", "nom_de_la_commune": "VILLEDIEU LES POELES ROUFFIGNY", "coordonnees_gps": [48.8292712717, -1.21839643313]}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008e1f639dde5474c63b6cd1350d56814bffbc4e", "fields": {"nom_de_la_commune": "YVETOT BOCAGE", "libell_d_acheminement": "YVETOT BOCAGE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50648"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987d90971aff46114e9ec52837bd6a4846ffebb1", "fields": {"nom_de_la_commune": "AIGNY", "libell_d_acheminement": "AIGNY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51003"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9327919a90dc145bf8f555d0831822ceea0a01a", "fields": {"nom_de_la_commune": "ST JEAN DES ECHELLES", "libell_d_acheminement": "ST JEAN DES ECHELLES", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72292"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049cad0dac9d87aeb9d241518f67366e029f9c90", "fields": {"nom_de_la_commune": "ST LEONARD DES BOIS", "libell_d_acheminement": "ST LEONARD DES BOIS", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72294"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23a4df03bb1f9f99735849415013987213e87ef", "fields": {"nom_de_la_commune": "ST MARS LA BRIERE", "libell_d_acheminement": "ST MARS LA BRIERE", "code_postal": "72470", "coordonnees_gps": [48.0204564826, 0.363077616761], "code_commune_insee": "72300"}, "geometry": {"type": "Point", "coordinates": [0.363077616761, 48.0204564826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18080a326de3b77c13b0b025117b28423c90fd76", "fields": {"nom_de_la_commune": "ST PAVACE", "libell_d_acheminement": "ST PAVACE", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72310"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9728a31f563e9c83fb2e1c7be0a82dd68de38757", "fields": {"nom_de_la_commune": "ST PIERRE DU LOROUER", "libell_d_acheminement": "ST PIERRE DU LOROUER", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72314"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc41d7ba96ca03a40c1ef973d1063daef90e5b1", "fields": {"nom_de_la_commune": "ST REMY DES MONTS", "libell_d_acheminement": "ST REMY DES MONTS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72316"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577816973b800e726309c01f130cc512e0149612", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72321"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca08f0fa9048faf12070e90876617fc5d9e5d2b", "fields": {"nom_de_la_commune": "ST VICTEUR", "libell_d_acheminement": "ST VICTEUR", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72323"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956f78512ecd10a52167b9dfe32aca12114301b6", "fields": {"nom_de_la_commune": "ST VINCENT DES PRES", "libell_d_acheminement": "ST VINCENT DES PRES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72324"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839fc517159a93a77f95e59ad39fefa4cd577596", "fields": {"nom_de_la_commune": "SAOSNES", "libell_d_acheminement": "SAOSNES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72326"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f1c906c4aa79f53097e10fb88ad6900b8b175bd", "fields": {"nom_de_la_commune": "SARGE LES LE MANS", "libell_d_acheminement": "SARGE LES LE MANS", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72328"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d040d15f8d96bd96b5fd513197281b26d45b4d20", "fields": {"nom_de_la_commune": "SCEAUX SUR HUISNE", "libell_d_acheminement": "SCEAUX SUR HUISNE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72331"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4780f247152419a5b64359f4c2d0ec87cb7283d0", "fields": {"nom_de_la_commune": "SOUILLE", "libell_d_acheminement": "SOUILLE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72338"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8921f190b5cd7f4543f69379c71ec2ba717683", "fields": {"nom_de_la_commune": "SOULIGNE SOUS BALLON", "libell_d_acheminement": "SOULIGNE SOUS BALLON", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72340"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5cd9bacd36920aab5005ebec0f11b65f0a642b2", "fields": {"nom_de_la_commune": "SPAY", "libell_d_acheminement": "SPAY", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72344"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cbad53020b5b108ab35ff1b772f711e88a6d68", "fields": {"nom_de_la_commune": "SURFONDS", "libell_d_acheminement": "SURFONDS", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72345"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007c4d1d915771f884d558c40dd96e7988408b5b", "fields": {"nom_de_la_commune": "VAULRY", "libell_d_acheminement": "VAULRY", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87198"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce5915b6ba5fd89bbec03cdd39bfcf329b02a5d", "fields": {"nom_de_la_commune": "VICQ SUR BREUILH", "libell_d_acheminement": "VICQ SUR BREUILH", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87203"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cac1b6ee2c70cf446600d19f7b44dfeca2147d", "fields": {"nom_de_la_commune": "AINVELLE", "libell_d_acheminement": "AINVELLE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88004"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a85c4b83cee8b995f685b07cc2a7dd5aa805465c", "fields": {"nom_de_la_commune": "AOUZE", "libell_d_acheminement": "AOUZE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88010"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785fc0f38f5871496192ed936b9629bc5405ec82", "fields": {"nom_de_la_commune": "ATTIGNEVILLE", "libell_d_acheminement": "ATTIGNEVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88015"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6e0f43bd98617cf475f97b3f1d9a5be99856fd", "fields": {"nom_de_la_commune": "AULNOIS", "libell_d_acheminement": "AULNOIS", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88017"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e1cd13260f3c396ff0211b5c4e4db25be44d2c", "fields": {"nom_de_la_commune": "AUTREVILLE", "libell_d_acheminement": "AUTREVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88020"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4612b61438d3378aaffd49650594f1a2e5ef42b7", "fields": {"nom_de_la_commune": "BAN DE SAPT", "libell_d_acheminement": "BAN DE SAPT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88033"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76c42e4d1832ee1a8ab6ee41640a4c09e5ec43c", "fields": {"nom_de_la_commune": "BATTEXEY", "libell_d_acheminement": "BATTEXEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88038"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bbf7ed17dbcfa796153b8722f6fa7d00e12eff", "fields": {"nom_de_la_commune": "BAZEGNEY", "libell_d_acheminement": "BAZEGNEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88041"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba896294fbe45c31dc33b73643566e2e7431dae0", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "88370", "coordonnees_gps": [47.9937026909, 6.4494827214], "code_commune_insee": "88048"}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfa64fec7e05526ca093b1dd2c36bc5f5609068", "fields": {"nom_de_la_commune": "BELMONT SUR BUTTANT", "libell_d_acheminement": "BELMONT SUR BUTTANT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88050"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947cc826d984c3ccd3eb18015221e6a596663705", "fields": {"nom_de_la_commune": "BELVAL", "libell_d_acheminement": "BELVAL", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88053"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d834ea7ac02bf421812d542dd984af7e9be53023", "fields": {"nom_de_la_commune": "BETTEGNEY ST BRICE", "libell_d_acheminement": "BETTEGNEY ST BRICE", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88055"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a271316e1ae4d15a097751984968ece66b61cf18", "fields": {"nom_de_la_commune": "LE BEULAY", "libell_d_acheminement": "LE BEULAY", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88057"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec2e5ee758a8e371da184cf75fb4698c4c68fce", "fields": {"nom_de_la_commune": "BIFFONTAINE", "libell_d_acheminement": "BIFFONTAINE", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88059"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7093cf3a0f31aa92f710247ab070c16ef7f968d5", "fields": {"nom_de_la_commune": "BLEURVILLE", "libell_d_acheminement": "BLEURVILLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88061"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e58136d0f663ec03e0e9a4abc3cb4db148e80c", "fields": {"nom_de_la_commune": "BOIS DE CHAMP", "libell_d_acheminement": "BOIS DE CHAMP", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88064"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a95de767d074f3117f5456335446bcc7ab1ca2fa", "fields": {"nom_de_la_commune": "BRANTIGNY", "libell_d_acheminement": "BRANTIGNY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88073"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcad71ae6c8f1d871e5a3497c3d3048599143e7d", "fields": {"nom_de_la_commune": "BRU", "libell_d_acheminement": "BRU", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88077"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323d8a77357b214330ef5e35bf58eeddaa76e624", "fields": {"nom_de_la_commune": "BRUYERES", "libell_d_acheminement": "BRUYERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88078"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f05fc2132b94d33c21732f9699ef01a28fe1a76", "fields": {"nom_de_la_commune": "BULGNEVILLE", "libell_d_acheminement": "BULGNEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88079"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd7b021ac60a75a601c96e43bf09e526e498649", "fields": {"nom_de_la_commune": "BUSSANG", "libell_d_acheminement": "BUSSANG", "code_postal": "88540", "coordonnees_gps": [47.8915745036, 6.87676798215], "code_commune_insee": "88081"}, "geometry": {"type": "Point", "coordinates": [6.87676798215, 47.8915745036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce6e3032c86647163fdef9cefd98be77a8a12dd", "fields": {"nom_de_la_commune": "CHAMAGNE", "libell_d_acheminement": "CHAMAGNE", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88084"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04cead8a3a6bb5e1fb108406e8848a7ab258a3f9", "fields": {"nom_de_la_commune": "CIRCOURT", "libell_d_acheminement": "CIRCOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88103"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "303d4da7cbcbd6f42e7c384b993b221e9abc7fdd", "fields": {"nom_de_la_commune": "CRAINVILLIERS", "libell_d_acheminement": "CRAINVILLIERS", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88119"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec96619c6d799f83f9e9112ae9c462335f6e571", "fields": {"nom_de_la_commune": "LA CROIX AUX MINES", "libell_d_acheminement": "LA CROIX AUX MINES", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88120"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7413922b1a3be21b468a5fd5280dd6eff18aed0b", "fields": {"nom_de_la_commune": "DARNEY", "libell_d_acheminement": "DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88124"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ab01b7c93797ebb98250675596dd3d3677dc4c", "fields": {"nom_de_la_commune": "DEYCIMONT", "libell_d_acheminement": "DEYCIMONT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88131"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96dc1680a17af97cae0cad14c97d28bc4059880c", "fields": {"nom_de_la_commune": "DINOZE", "libell_d_acheminement": "DINOZE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88134"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee2b6582cd6746e9397cabe7c143b8199ef6a95", "fields": {"nom_de_la_commune": "DOLAINCOURT", "libell_d_acheminement": "DOLAINCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88137"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534ef26d2edf68242c857a3137233a72a12fc297", "fields": {"nom_de_la_commune": "DOMBROT SUR VAIR", "libell_d_acheminement": "DOMBROT SUR VAIR", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88141"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9427365456a3b896111eed38798f85cac26a1d6d", "fields": {"nom_de_la_commune": "DOMFAING", "libell_d_acheminement": "DOMFAING", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88145"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc659db247075a53843081d4a3073780d3d56b8", "fields": {"nom_de_la_commune": "DOMMARTIN LES VALLOIS", "libell_d_acheminement": "DOMMARTIN LES VALLOIS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88149"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eda75528b34ab4b937370bba97ac8b8cbfb506d", "fields": {"nom_de_la_commune": "DOMPIERRE", "libell_d_acheminement": "DOMPIERRE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88152"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8746965abeec62072d67c4c2f499fd1e555a31e8", "fields": {"nom_de_la_commune": "DOMVALLIER", "libell_d_acheminement": "DOMVALLIER", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88155"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6345190cdebd157bad47d3fef1ebe84823405c", "fields": {"nom_de_la_commune": "DONCIERES", "libell_d_acheminement": "DONCIERES", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88156"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2793cd8b99d949ef2796fefcd74fd812684977d2", "fields": {"nom_de_la_commune": "ESSEGNEY", "libell_d_acheminement": "ESSEGNEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88163"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871aeb2ec3243aa640496555bb9ebf4405bf1e46", "fields": {"nom_de_la_commune": "FLOREMONT", "libell_d_acheminement": "FLOREMONT", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88173"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818a7b13914b13951ebcf8d3ea1a67a8002e30cf", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88175"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e865df80bff56e1c2178b4951547a2441a57e64e", "fields": {"nom_de_la_commune": "LES FORGES", "libell_d_acheminement": "LES FORGES", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88178"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8b7ffa098f155e2b61bc703c78f121d64ff8dd", "fields": {"nom_de_la_commune": "FREMIFONTAINE", "libell_d_acheminement": "FREMIFONTAINE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88184"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d2e5804bc9615149f3463375f4eaf6d83adc84", "fields": {"nom_de_la_commune": "FREVILLE", "libell_d_acheminement": "FREVILLE", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88189"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3437129d94c983acbacee4a203afb8b39803d2", "fields": {"nom_de_la_commune": "GERBAMONT", "libell_d_acheminement": "GERBAMONT", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88197"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32def70caf89346345e3d8606ee13f70f0205bfa", "fields": {"nom_de_la_commune": "GIGNEVILLE", "libell_d_acheminement": "GIGNEVILLE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88199"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51224e8a8e8bc4fbfe1bd5ebe869894592caf14f", "fields": {"nom_de_la_commune": "GOLBEY", "libell_d_acheminement": "GOLBEY", "code_postal": "88190", "coordonnees_gps": [48.1998237909, 6.42518589351], "code_commune_insee": "88209"}, "geometry": {"type": "Point", "coordinates": [6.42518589351, 48.1998237909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af0d5b4e481c3d9a169a99d022b77f799561e4c", "fields": {"nom_de_la_commune": "GRAND", "libell_d_acheminement": "GRAND", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88212"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5ce43e0a2b79921f6d2737ea65a666c06742d7", "fields": {"nom_de_la_commune": "GRANDVILLERS", "libell_d_acheminement": "GRANDVILLERS", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88216"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7808500cf9689249f397f7cbbcecfc53daed2c4d", "fields": {"nom_de_la_commune": "GRANGES AUMONTZEY", "libell_d_acheminement": "GRANGES AUMONTZEY", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88218"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ef6d36b39ecda3fb0ec68183af9403617476bc", "fields": {"code_postal": "88640", "code_commune_insee": "88218", "libell_d_acheminement": "GRANGES AUMONTZEY", "ligne_5": "AUMONTZEY", "nom_de_la_commune": "GRANGES AUMONTZEY", "coordonnees_gps": [48.1317016087, 6.78306883061]}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6376e9961758529b6af7c675206020f4e89ab6e9", "fields": {"nom_de_la_commune": "HAGNEVILLE ET RONCOURT", "libell_d_acheminement": "HAGNEVILLE ET RONCOURT", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88227"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab46628b9c6b77e8d2d5dd99876974177022004", "fields": {"nom_de_la_commune": "HARSAULT", "libell_d_acheminement": "HARSAULT", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88234"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d4816105011a23c2442c7210d2585203c601b2", "fields": {"code_postal": "88240", "code_commune_insee": "88234", "libell_d_acheminement": "HARSAULT", "ligne_5": "LA FORGE DE THUNIMONT", "nom_de_la_commune": "HARSAULT", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce069eab834b0ede7ea3360fb160991d2ed570a1", "fields": {"nom_de_la_commune": "HAUTMOUGEY", "libell_d_acheminement": "HAUTMOUGEY", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88235"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9cc17ca6b4620c64b76f15d3d4bbe428c326ce", "fields": {"nom_de_la_commune": "LA HOUSSIERE", "libell_d_acheminement": "LA HOUSSIERE", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88244"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e717262fb4fce01914bdcd55b97b39bcc23a04bb", "fields": {"nom_de_la_commune": "HYMONT", "libell_d_acheminement": "HYMONT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88246"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e59a78590349270dc02594af911adf24794114", "fields": {"nom_de_la_commune": "JEANMENIL", "libell_d_acheminement": "JEANMENIL", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88251"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23aa3214a4122184f1aa69ff85a0910f3faf41be", "fields": {"nom_de_la_commune": "JEUXEY", "libell_d_acheminement": "JEUXEY", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88253"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2b3bc2f78ed9c374f492b05728dd5149c2315b", "fields": {"nom_de_la_commune": "LANDAVILLE", "libell_d_acheminement": "LANDAVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88259"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84e2757f6546bde8ac7232c94c821b6212c208b", "fields": {"nom_de_la_commune": "LAVELINE DEVANT BRUYERES", "libell_d_acheminement": "LAVELINE DEVANT BRUYERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88262"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d69ed315fa8eb171f0b72068d1228353ee2dad8", "fields": {"nom_de_la_commune": "LEMMECOURT", "libell_d_acheminement": "LEMMECOURT", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88265"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ef84724704f87e5f5a20268fb3a39b0df9dcb5", "fields": {"nom_de_la_commune": "LIEZEY", "libell_d_acheminement": "LIEZEY", "code_postal": "88400", "coordonnees_gps": [48.0708964326, 6.88124451872], "code_commune_insee": "88269"}, "geometry": {"type": "Point", "coordinates": [6.88124451872, 48.0708964326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e32df6e88027077c9be5766b95d8e72a53b54515", "fields": {"nom_de_la_commune": "LONGCHAMP SOUS CHATENOIS", "libell_d_acheminement": "LONGCHAMP SOUS CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88274"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f17acd06f5c559d4401b91a6a711ba8a717ae53", "fields": {"nom_de_la_commune": "LUBINE", "libell_d_acheminement": "LUBINE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88275"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd26458ee2ddf392ad485088f0ca8536ca0c306", "fields": {"nom_de_la_commune": "MARONCOURT", "libell_d_acheminement": "MARONCOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88288"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce6cfe85e42ba201141cab537bf915e4edd9b57", "fields": {"nom_de_la_commune": "MARTINVELLE", "libell_d_acheminement": "MARTINVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88291"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e1febbcdf5ebfcebabb9a1dd28719b1ff5d649", "fields": {"nom_de_la_commune": "MEMENIL", "libell_d_acheminement": "MEMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88297"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee0917f57a5916f1eb5c2a6a05aa3eb70f79f17", "fields": {"nom_de_la_commune": "MENIL DE SENONES", "libell_d_acheminement": "MENIL DE SENONES", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88300"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eda7571a148d031022e48f3a22e0a27f0a7114a", "fields": {"nom_de_la_commune": "MIRECOURT", "libell_d_acheminement": "MIRECOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88304"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fde3ba1ec36d03bf35acb1e42b745e8fea7c37", "fields": {"nom_de_la_commune": "MONCEL SUR VAIR", "libell_d_acheminement": "MONCEL SUR VAIR", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88305"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c59d3cb65752caa6daadf6bf5c6f5fb4167ccf", "fields": {"nom_de_la_commune": "MONT LES NEUFCHATEAU", "libell_d_acheminement": "MONT LES NEUFCHATEAU", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88308"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab7ad169fbbede9a2c2aedd4370376477464e8f", "fields": {"nom_de_la_commune": "MOUSSEY", "libell_d_acheminement": "MOUSSEY", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88317"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f534c3441600189f2024494ec41e18ce170952ec", "fields": {"nom_de_la_commune": "MOYEMONT", "libell_d_acheminement": "MOYEMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88318"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5937f78d07084c71ed7ddb0b05bc42b464500fe", "fields": {"code_postal": "88600", "code_commune_insee": "88322", "libell_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", "ligne_5": "LE BOULAY", "nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", "coordonnees_gps": [48.2228084318, 6.69811489698]}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a99a3523e9e330a4df5b243d866ef6852baa6c", "fields": {"nom_de_la_commune": "NOMEXY", "libell_d_acheminement": "NOMEXY", "code_postal": "88440", "coordonnees_gps": [48.2939351767, 6.36082179338], "code_commune_insee": "88327"}, "geometry": {"type": "Point", "coordinates": [6.36082179338, 48.2939351767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c60b9be29f83bbae7ac341c88d31f0cbba0d651", "fields": {"nom_de_la_commune": "NONZEVILLE", "libell_d_acheminement": "NONZEVILLE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88331"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92bd1150dde1756bbeb059145401571e8bab0f6f", "fields": {"nom_de_la_commune": "OLLAINVILLE", "libell_d_acheminement": "OLLAINVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88336"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf31b62e3f573df08b83d8facd3bb02fd51ae9ad", "fields": {"nom_de_la_commune": "ORTONCOURT", "libell_d_acheminement": "ORTONCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88338"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd7cda4743ff71264fc7c6e5379da141a81ac07", "fields": {"nom_de_la_commune": "LA PETITE RAON", "libell_d_acheminement": "LA PETITE RAON", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88346"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2403301accb87bd68a0393fd36f019fe8ee3c10", "fields": {"code_postal": "88370", "code_commune_insee": "88351", "libell_d_acheminement": "PLOMBIERES LES BAINS", "ligne_5": "RUAUX", "nom_de_la_commune": "PLOMBIERES LES BAINS", "coordonnees_gps": [47.9937026909, 6.4494827214]}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6953644baca06c836a1d6c855029a6a55f149868", "fields": {"nom_de_la_commune": "POMPIERRE", "libell_d_acheminement": "POMPIERRE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88352"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d7f4f0d91a04045566b8c0f5165bf85c5163e9", "fields": {"nom_de_la_commune": "POUSSAY", "libell_d_acheminement": "POUSSAY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88357"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecc36811e3aca6fed3f0bd475177d7b64ec2b5a4", "fields": {"nom_de_la_commune": "PREY", "libell_d_acheminement": "PREY", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88359"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7831daf7c1eaebd7b68a2982cc9d57d3473694de", "fields": {"code_postal": "88490", "code_commune_insee": "88361", "libell_d_acheminement": "PROVENCHERES ET COLROY", "ligne_5": "COLROY LA GRANDE", "nom_de_la_commune": "PROVENCHERES ET COLROY", "coordonnees_gps": [48.3052037465, 7.10759475498]}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1bd2972fe6d33851cdba9c4766032b2935d3621", "fields": {"nom_de_la_commune": "NULLY", "libell_d_acheminement": "NULLY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52359"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "849df4c8082eb78399ed1b2bf69e4cf24653c502", "fields": {"nom_de_la_commune": "ORMOY LES SEXFONTAINES", "libell_d_acheminement": "ORMOY LES SEXFONTAINES", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52367"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04728941f58888195a2fdc09a2f35b698e0c6a20", "fields": {"nom_de_la_commune": "OUDINCOURT", "libell_d_acheminement": "OUDINCOURT", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52371"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21174ff12910008edbea084c52f6037d4ccbcf18", "fields": {"nom_de_la_commune": "PALAISEUL", "libell_d_acheminement": "PALAISEUL", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52375"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46c4a171cf69fe69613a665a9f3e38815654678", "fields": {"code_postal": "52200", "code_commune_insee": "52383", "libell_d_acheminement": "PERRANCEY LES VIEUX MOULINS", "ligne_5": "VIEUX MOULINS", "nom_de_la_commune": "PERRANCEY LES VIEUX MOULINS", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4b4b3befb753123d6e8bc670702a4f2fe55bd1", "fields": {"nom_de_la_commune": "PLANRUPT", "libell_d_acheminement": "PLANRUPT", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52391"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de8294199cd1f10122022b2321165680d6a3f88", "fields": {"nom_de_la_commune": "LE CHATELET SUR MEUSE", "libell_d_acheminement": "LE CHATELET SUR MEUSE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52400"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba52ebb6b23bd87e06152cc40fd9eda9de58fae8", "fields": {"code_postal": "52400", "code_commune_insee": "52400", "libell_d_acheminement": "LE CHATELET SUR MEUSE", "ligne_5": "POUILLY EN BASSIGNY", "nom_de_la_commune": "LE CHATELET SUR MEUSE", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "224b9ea4b661bb857ad309e8d142a70b0cb532d3", "fields": {"nom_de_la_commune": "PRASLAY", "libell_d_acheminement": "PRASLAY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52403"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5270e76ca06f24cf4aca1555b1661ea725e1a8", "fields": {"code_postal": "52190", "code_commune_insee": "52405", "libell_d_acheminement": "LE MONTSAUGEONNAIS", "ligne_5": "MONTSAUGEON", "nom_de_la_commune": "LE MONTSAUGEONNAIS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182f59f52ba2cd4fa399a521a3114ef6f3e04b3e", "fields": {"code_postal": "52190", "code_commune_insee": "52405", "libell_d_acheminement": "LE MONTSAUGEONNAIS", "ligne_5": "VAUX SOUS AUBIGNY", "nom_de_la_commune": "LE MONTSAUGEONNAIS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a51a55665951832127249a5f480fe09d05c3e5", "fields": {"nom_de_la_commune": "PRESSIGNY", "libell_d_acheminement": "PRESSIGNY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52406"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7365c1ed7952d77778e926a2ce6b7243e407e6", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "LONGEVILLE SUR LA LAINES", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925d9b9aa1b039ac39140a5a1f5df64961180d4a", "fields": {"nom_de_la_commune": "RACHECOURT SUZEMONT", "libell_d_acheminement": "RACHECOURT SUZEMONT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52413"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76014ad49d0e0a1832c43f7541d7c934a5ea648e", "fields": {"nom_de_la_commune": "RANCONNIERES", "libell_d_acheminement": "RANCONNIERES", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52415"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0cdae195ab1fdc1aa82fdded0600fd0aac0dbb", "fields": {"nom_de_la_commune": "REYNEL", "libell_d_acheminement": "REYNEL", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52420"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7a8f83461683fff31f15ee6ee66ba60d713485", "fields": {"nom_de_la_commune": "RIZAUCOURT BUCHEY", "libell_d_acheminement": "RIZAUCOURT BUCHEY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52426"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a305b36d219056cac36940836dcf9d89d632159", "fields": {"nom_de_la_commune": "ROCHES SUR MARNE", "libell_d_acheminement": "ROCHES SUR MARNE", "code_postal": "52410", "coordonnees_gps": [48.5892998637, 5.03091312346], "code_commune_insee": "52429"}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091eb7c8936919e05634f159909386a5850068de", "fields": {"nom_de_la_commune": "ROMAIN SUR MEUSE", "libell_d_acheminement": "ROMAIN SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52433"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246d4bb7759fe64863aec7952000eed22beb22b7", "fields": {"nom_de_la_commune": "ROUELLES", "libell_d_acheminement": "ROUELLES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52437"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb2c0d6d758b0cdd7d754232a268918c893af06", "fields": {"nom_de_la_commune": "ROUVROY SUR MARNE", "libell_d_acheminement": "ROUVROY SUR MARNE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52440"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8d0301de50fefb9af18a6b74321ff6f57fd4fd", "fields": {"nom_de_la_commune": "ST BROINGT LE BOIS", "libell_d_acheminement": "ST BROINGT LE BOIS", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52445"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891ad2fa69c814d6a1be9e6ff82144fb44057c69", "fields": {"nom_de_la_commune": "ST BROINGT LES FOSSES", "libell_d_acheminement": "ST BROINGT LES FOSSES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52446"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f61f0a811abcbfaff265e8c0d97ca9c743b5aca", "fields": {"nom_de_la_commune": "ST CIERGUES", "libell_d_acheminement": "ST CIERGUES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52447"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5655e1a5cfba6a49a9849c68300dd0c95dcc6ed", "fields": {"nom_de_la_commune": "ST MARTIN LES LANGRES", "libell_d_acheminement": "ST MARTIN LES LANGRES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52452"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3162cf03ceb58834989214c5676565e9fea69380", "fields": {"nom_de_la_commune": "SAULLES", "libell_d_acheminement": "SAULLES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52464"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1460c6cfebb8240e8b5371be5cc343284caed2", "fields": {"nom_de_la_commune": "SAULXURES", "libell_d_acheminement": "SAULXURES", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52465"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0ea443bdca6e274220343cd031797829c6c0df", "fields": {"nom_de_la_commune": "SEXFONTAINES", "libell_d_acheminement": "SEXFONTAINES", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52472"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528cbc93fdcbffd48c1c3a6890f101d6530f0329", "fields": {"nom_de_la_commune": "SOULAUCOURT SUR MOUZON", "libell_d_acheminement": "SOULAUCOURT SUR MOUZON", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52482"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf86d78540150fc9a8b1370e995e898c20bb17df", "fields": {"nom_de_la_commune": "THILLEUX", "libell_d_acheminement": "THILLEUX", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52487"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0090dcea3d91ab1ecc5d96cf525c0ec102d6e258", "fields": {"nom_de_la_commune": "THONNANCE LES MOULINS", "libell_d_acheminement": "THONNANCE LES MOULINS", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52491"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca8ae6af9602ed5baee79cc5f0baa81ab187c2c", "fields": {"code_postal": "52230", "code_commune_insee": "52491", "libell_d_acheminement": "THONNANCE LES MOULINS", "ligne_5": "BRESSONCOURT", "nom_de_la_commune": "THONNANCE LES MOULINS", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54caa3e4e003f384cb970a73bc497e317b033be", "fields": {"nom_de_la_commune": "VALCOURT", "libell_d_acheminement": "VALCOURT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52500"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb1862d7b29312ce2aacae1e8d13697148c4a5a", "fields": {"nom_de_la_commune": "VALLERET", "libell_d_acheminement": "VALLERET", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52502"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc363c04cb1c06e33e3275a089003eee3c535283", "fields": {"nom_de_la_commune": "VELLES", "libell_d_acheminement": "VELLES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52513"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320ca3b1b5e231855154d319ec8bd65f2ea1e3f8", "fields": {"nom_de_la_commune": "VIGNORY", "libell_d_acheminement": "VIGNORY", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52524"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12e16d9e7daced17de1f29bb0ad9ee51a1896704", "fields": {"nom_de_la_commune": "VILLARS SANTENOGE", "libell_d_acheminement": "VILLARS SANTENOGE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52526"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9c750ee493a51403b462f632d13e1255d10b79", "fields": {"code_postal": "52160", "code_commune_insee": "52526", "libell_d_acheminement": "VILLARS SANTENOGE", "ligne_5": "SANTENOGE", "nom_de_la_commune": "VILLARS SANTENOGE", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952d7f1fcde7f14b4673a9c42884255212c200ad", "fields": {"code_postal": "52190", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "PRANGEY", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4cd7b0f145f076e54ce3ade8b818004c04d9981", "fields": {"nom_de_la_commune": "VILLIERS EN LIEU", "libell_d_acheminement": "VILLIERS EN LIEU", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52534"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d208e7ff1ca5c1c5d0263a2b00d9117e3bfff286", "fields": {"nom_de_la_commune": "VITRY LES NOGENT", "libell_d_acheminement": "VITRY LES NOGENT", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52541"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153a6b8c93657cfc2a0b718a122c119bcf805241", "fields": {"nom_de_la_commune": "VRONCOURT LA COTE", "libell_d_acheminement": "VRONCOURT LA COTE", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52549"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb7f33a3add779d644d53b34a705725b4f265ff", "fields": {"nom_de_la_commune": "WASSY", "libell_d_acheminement": "WASSY", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52550"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538ed303b3527a159c31e9e668f0c5e17470b043", "fields": {"nom_de_la_commune": "AMPOIGNE", "libell_d_acheminement": "AMPOIGNE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53004"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945d2dd85dadfddfafeccfcdbb0756c01f0485e6", "fields": {"nom_de_la_commune": "ASSE LE BERENGER", "libell_d_acheminement": "ASSE LE BERENGER", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53010"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9718fb08c33c46073e0e9fe65b17bd8397cc94af", "fields": {"nom_de_la_commune": "ASTILLE", "libell_d_acheminement": "ASTILLE", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53011"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8726a5818958938e1e88dcd91f263e44e50ffc97", "fields": {"nom_de_la_commune": "AVERTON", "libell_d_acheminement": "AVERTON", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53013"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f140e8f6cad92a42028ea2e5a7885d143ddca8b", "fields": {"nom_de_la_commune": "BALLOTS", "libell_d_acheminement": "BALLOTS", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53018"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a0f7ca4288b581debe6a5e3e8ac7e739d490dc", "fields": {"nom_de_la_commune": "LA BAZOUGE DES ALLEUX", "libell_d_acheminement": "LA BAZOUGE DES ALLEUX", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53023"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d900a9a0bd8415bb084c8ca79257d94d6838935", "fields": {"nom_de_la_commune": "BIERNE", "libell_d_acheminement": "BIERNE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53029"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24719878050eb6c37ddd1612152af04e26451934", "fields": {"nom_de_la_commune": "LE BIGNON DU MAINE", "libell_d_acheminement": "LE BIGNON DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53030"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07025a852d1349e743942084044da4c0175275a5", "fields": {"nom_de_la_commune": "LA BIGOTTIERE", "libell_d_acheminement": "LA BIGOTTIERE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53031"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7977f83a7cba660b440a035b1e4456b66fca5f95", "fields": {"nom_de_la_commune": "BOUCHAMPS LES CRAON", "libell_d_acheminement": "BOUCHAMPS LES CRAON", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53035"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c1b032fbb88295f55f2a78fda06c7234d796fa", "fields": {"nom_de_la_commune": "BOUERE", "libell_d_acheminement": "BOUERE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53036"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a04a7872701ae25be78035118967042c5013252", "fields": {"nom_de_la_commune": "BOULAY LES IFS", "libell_d_acheminement": "BOULAY LES IFS", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53038"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a77c6b35858261444a4dc7fa3c5161ab4b23668", "fields": {"nom_de_la_commune": "CHAMPEON", "libell_d_acheminement": "CHAMPEON", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53051"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989e27020ce8e61cfe80b4b31f55d1477a35561a", "fields": {"nom_de_la_commune": "CHAMPFREMONT", "libell_d_acheminement": "CHAMPFREMONT", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53052"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41c8dd0abe883b5fc4d8f7643214e4d743de6f9", "fields": {"nom_de_la_commune": "CHANGE", "libell_d_acheminement": "CHANGE", "code_postal": "53810", "coordonnees_gps": [48.1076010926, -0.799424532764], "code_commune_insee": "53054"}, "geometry": {"type": "Point", "coordinates": [-0.799424532764, 48.1076010926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1f0d208bbc241183d2049755135c43994560ee", "fields": {"nom_de_la_commune": "LA CHAPELLE CRAONNAISE", "libell_d_acheminement": "LA CHAPELLE CRAONNAISE", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53058"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70a19a0d889881b2873d61a14b2028e51017b55", "fields": {"nom_de_la_commune": "CHARCHIGNE", "libell_d_acheminement": "CHARCHIGNE", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53061"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c97639dbc82ebe3ef5541dd17834fd9c3d6898", "fields": {"nom_de_la_commune": "CHATEAU GONTIER", "libell_d_acheminement": "CHATEAU GONTIER", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53062"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba1d93db2e75e89cad455504894e6745f8a22d2", "fields": {"nom_de_la_commune": "CHATELAIN", "libell_d_acheminement": "CHATELAIN", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53063"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9d5aec199e114b5a55f4e2df17a9cda3868be1", "fields": {"nom_de_la_commune": "CHERANCE", "libell_d_acheminement": "CHERANCE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53068"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d380056cb2da53bd431d75acbfbb68eee1ab9f", "fields": {"nom_de_la_commune": "CONGRIER", "libell_d_acheminement": "CONGRIER", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53073"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce97376593b0882265c8eaf1b52f85f653b6ac55", "fields": {"nom_de_la_commune": "COUPTRAIN", "libell_d_acheminement": "COUPTRAIN", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53080"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc21d1e1285552566d973c264410c8928023ec20", "fields": {"nom_de_la_commune": "CRENNES SUR FRAUBEE", "libell_d_acheminement": "CRENNES SUR FRAUBEE", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53085"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8852bcfe580303343ecb6df316d9f6ca188178a8", "fields": {"nom_de_la_commune": "ENTRAMMES", "libell_d_acheminement": "ENTRAMMES", "code_postal": "53260", "coordonnees_gps": [48.0032103275, -0.692724123682], "code_commune_insee": "53094"}, "geometry": {"type": "Point", "coordinates": [-0.692724123682, 48.0032103275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f909c8fe3b13c788ab34b48b6b09761676cb1bff", "fields": {"nom_de_la_commune": "GORRON", "libell_d_acheminement": "GORRON", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53107"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c074afdf3af3c5f0103a28e039719816b0ad00f0", "fields": {"nom_de_la_commune": "HAMBERS", "libell_d_acheminement": "HAMBERS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53113"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7562097c9becc87f4d56195365176639c1e8eab", "fields": {"nom_de_la_commune": "HERCE", "libell_d_acheminement": "HERCE", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53115"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033526c9aaec134376c46aad765875596caedd03", "fields": {"nom_de_la_commune": "LE HOUSSEAU BRETIGNOLLES", "libell_d_acheminement": "LE HOUSSEAU BRETIGNOLLES", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53118"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fffca9e6105ed4f259186288b1b96d039d5e842a", "fields": {"nom_de_la_commune": "LESBOIS", "libell_d_acheminement": "LESBOIS", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53131"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848fe2a1f41b6f704e312a298dd803b493471c52", "fields": {"nom_de_la_commune": "LEVARE", "libell_d_acheminement": "LEVARE", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53132"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ddacd55c30b804194ee9a5305f023560a0338fd", "fields": {"code_postal": "53140", "code_commune_insee": "53133", "libell_d_acheminement": "LIGNIERES ORGERES", "ligne_5": "ORGERES LA ROCHE", "nom_de_la_commune": "LIGNIERES ORGERES", "coordonnees_gps": [48.4797003216, -0.222461490352]}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0901dee846bc9f9bfe395ca96f13c22210049aea", "fields": {"nom_de_la_commune": "LONGUEFUYE", "libell_d_acheminement": "LONGUEFUYE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53138"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7d83761badabb62f475ae19995a6eca17668eb", "fields": {"nom_de_la_commune": "LOUVERNE", "libell_d_acheminement": "LOUVERNE", "code_postal": "53950", "coordonnees_gps": [48.1285774332, -0.685956019561], "code_commune_insee": "53140"}, "geometry": {"type": "Point", "coordinates": [-0.685956019561, 48.1285774332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01c70f4a48b722649344c96064a7aea3b45c64c", "fields": {"nom_de_la_commune": "MARTIGNE SUR MAYENNE", "libell_d_acheminement": "MARTIGNE SUR MAYENNE", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53146"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d62cc9210928c82f1c0149a4e80dccaf539f99", "fields": {"nom_de_la_commune": "MONTOURTIER", "libell_d_acheminement": "MONTOURTIER", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53159"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22779bce20d259ae2edc2871c03cef3065c72b0", "fields": {"nom_de_la_commune": "NEUILLY LE VENDIN", "libell_d_acheminement": "NEUILLY LE VENDIN", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53164"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d391e3fac1ea4f4173cc78cfae8212d113352e0", "fields": {"nom_de_la_commune": "PARNE SUR ROC", "libell_d_acheminement": "PARNE SUR ROC", "code_postal": "53260", "coordonnees_gps": [48.0032103275, -0.692724123682], "code_commune_insee": "53175"}, "geometry": {"type": "Point", "coordinates": [-0.692724123682, 48.0032103275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2dae2253ae85f8a335eee8e42b4ab8937e366a7", "fields": {"nom_de_la_commune": "LA PELLERINE", "libell_d_acheminement": "LA PELLERINE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53177"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738bb2cf539d10bf7261ee0fbe137d834c2912fd", "fields": {"nom_de_la_commune": "PORT BRILLET", "libell_d_acheminement": "PORT BRILLET", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53182"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3d1a4fc9252e30ea3ad8a6817416eeaa58a80d", "fields": {"nom_de_la_commune": "QUELAINES ST GAULT", "libell_d_acheminement": "QUELAINES ST GAULT", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53186"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007107b26c8f932708f92c81e28da976e8d5fda4", "fields": {"nom_de_la_commune": "LA ROE", "libell_d_acheminement": "LA ROE", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53191"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8680850d455a22502c7233b7994715fb1d71f4da", "fields": {"nom_de_la_commune": "ST AIGNAN DE COUPTRAIN", "libell_d_acheminement": "ST AIGNAN DE COUPTRAIN", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53196"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae43aa171f34b31d66224afea683d124551d065", "fields": {"nom_de_la_commune": "ST BERTHEVIN LA TANNIERE", "libell_d_acheminement": "ST BERTHEVIN LA TANNIERE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53202"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3066e71d5b994ebca4478a644d238414c61eb4", "fields": {"nom_de_la_commune": "ST CYR EN PAIL", "libell_d_acheminement": "ST CYR EN PAIL", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53208"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1627e45a8cba6836f0c5578788f8b05c786cebb6", "fields": {"nom_de_la_commune": "ST CYR LE GRAVELAIS", "libell_d_acheminement": "ST CYR LE GRAVELAIS", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53209"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6abb32c0abe7534f304eb724024d59a62e8d78", "fields": {"nom_de_la_commune": "ST GEORGES BUTTAVENT", "libell_d_acheminement": "ST GEORGES BUTTAVENT", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53219"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c8214a1ee754220693a6b4c9e205986ef82cd8", "fields": {"nom_de_la_commune": "ST JULIEN DU TERROUX", "libell_d_acheminement": "ST JULIEN DU TERROUX", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53230"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266a8f0b0d693fd89bdd74d61f98322a90e29cd7", "fields": {"nom_de_la_commune": "ST MARS SUR COLMONT", "libell_d_acheminement": "ST MARS SUR COLMONT", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53237"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e30ea80f7a44d6b1def9628ba021e48fe79b514", "fields": {"nom_de_la_commune": "ST MARS SUR LA FUTAIE", "libell_d_acheminement": "ST MARS SUR LA FUTAIE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53238"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe992387aa927d4ca8eb57cc20175c80538abfea", "fields": {"nom_de_la_commune": "ST PIERRE SUR ERVE", "libell_d_acheminement": "ST PIERRE SUR ERVE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53248"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84891692d7f86cde4b808b44b49b2845fcf93321", "fields": {"nom_de_la_commune": "TORCE VIVIERS EN CHARNIE", "libell_d_acheminement": "TORCE VIVIERS EN CHARNIE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53265"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa4247c856e15b56d82f675b42a1c38850173ad", "fields": {"code_postal": "53270", "code_commune_insee": "53265", "libell_d_acheminement": "TORCE VIVIERS EN CHARNIE", "ligne_5": "VIVIERS EN CHARNIE", "nom_de_la_commune": "TORCE VIVIERS EN CHARNIE", "coordonnees_gps": [48.066547004, -0.33227388574]}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd28f5ec491c85774290d3d0e87db255cd33a96", "fields": {"nom_de_la_commune": "VAUTORTE", "libell_d_acheminement": "VAUTORTE", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53269"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c461b6d58f5c5f377939a7269d0d59ef8e5af808", "fields": {"nom_de_la_commune": "VIEUVY", "libell_d_acheminement": "VIEUVY", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53270"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12f1df46b9809e42200a0f77aad5d46a752a1126", "fields": {"nom_de_la_commune": "VILLEPAIL", "libell_d_acheminement": "VILLEPAIL", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53272"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2c88a33cf9cd27820791a72fcb173d4a5a79a5", "fields": {"nom_de_la_commune": "VILLIERS CHARLEMAGNE", "libell_d_acheminement": "VILLIERS CHARLEMAGNE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53273"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd5172cb3d1e367ab504325c0d4ad3556edeebe", "fields": {"nom_de_la_commune": "ABBEVILLE LES CONFLANS", "libell_d_acheminement": "ABBEVILLE LES CONFLANS", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54002"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c20d2c60d04c788cfd59a3a3119d67aa8462d3a", "fields": {"nom_de_la_commune": "DOMPIERRE SOUS SANVIGNES", "libell_d_acheminement": "DOMPIERRE SOUS SANVIGNES", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71179"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf6bfdd6892c9cba0dbc47417098929e2eabc51", "fields": {"nom_de_la_commune": "FARGES LES CHALON", "libell_d_acheminement": "FARGES LES CHALON", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71194"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea93ce995ff0f4e3b2afa7c2804a5d0cb437fec", "fields": {"nom_de_la_commune": "FARGES LES MACON", "libell_d_acheminement": "FARGES LES MACON", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71195"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed0ef43bf11e1f8b81e83aa835f85620e334a0e", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71203"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ae8fa60479144e08c78be393c4524e60f75e1b", "fields": {"nom_de_la_commune": "FUISSE", "libell_d_acheminement": "FUISSE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71210"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2e963b115554e94a736eb6cb33e11af6f54c02", "fields": {"nom_de_la_commune": "GERMOLLES SUR GROSNE", "libell_d_acheminement": "GERMOLLES SUR GROSNE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71217"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fad5f1e18717e1d7001d2bf9f2ea9c6f27fd14", "fields": {"nom_de_la_commune": "GILLY SUR LOIRE", "libell_d_acheminement": "GILLY SUR LOIRE", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71220"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a843c24eaa38c6d071f31dddd2c00244a6ca62", "fields": {"nom_de_la_commune": "GIVRY", "libell_d_acheminement": "GIVRY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71221"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35b4d0265a2ad7bfbdd6c125ba47aa665c8731f", "fields": {"nom_de_la_commune": "GUERFAND", "libell_d_acheminement": "GUERFAND", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71228"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10076912681117d0e000819bbd6268cea04308a5", "fields": {"nom_de_la_commune": "HAUTEFOND", "libell_d_acheminement": "HAUTEFOND", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71232"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaa655f88314bab5782380a3753073da643392d", "fields": {"nom_de_la_commune": "IGUERANDE", "libell_d_acheminement": "IGUERANDE", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71238"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb0153d8c49ae493d8bb59b4f691878a6452c1c", "fields": {"nom_de_la_commune": "ISSY L EVEQUE", "libell_d_acheminement": "ISSY L EVEQUE", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71239"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24507fbaaff1cbfb5c62fec650f9cbd0ae23f041", "fields": {"nom_de_la_commune": "JAMBLES", "libell_d_acheminement": "JAMBLES", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71241"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "141da077e9670c0c950cfbfa25586d2d694e8f74", "fields": {"nom_de_la_commune": "JULLY LES BUXY", "libell_d_acheminement": "JULLY LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71247"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb83571e9f15f0784748a9bde70efc2efd494369", "fields": {"nom_de_la_commune": "LEYNES", "libell_d_acheminement": "LEYNES", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71258"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d7c086f20dedd6f5a1c934c8a34b0d1764718f", "fields": {"nom_de_la_commune": "LIGNY EN BRIONNAIS", "libell_d_acheminement": "LIGNY EN BRIONNAIS", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71259"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd38b477249539b2ed6b593f57f56076d2ec2c4", "fields": {"nom_de_la_commune": "LUGNY LES CHAROLLES", "libell_d_acheminement": "LUGNY LES CHAROLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71268"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b4bd93f2f1ae7379052b174b67d83f0a9a8eb7", "fields": {"nom_de_la_commune": "MANCEY", "libell_d_acheminement": "MANCEY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71274"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4584aba1f803ba5d7a07e5b5e8a9341d31091192", "fields": {"nom_de_la_commune": "MARCIGNY", "libell_d_acheminement": "MARCIGNY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71275"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f87cdc03de10330005e2d3932c3a04acef19087", "fields": {"nom_de_la_commune": "MARCILLY LES BUXY", "libell_d_acheminement": "MARCILLY LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71277"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e37e7b82c5fc435c03a28655a5f850f2f40fef", "fields": {"nom_de_la_commune": "MARLY SOUS ISSY", "libell_d_acheminement": "MARLY SOUS ISSY", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71280"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7aa434b3320fed029a10f47c2db5120a9572a48", "fields": {"nom_de_la_commune": "MARLY SUR ARROUX", "libell_d_acheminement": "MARLY SUR ARROUX", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71281"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e09dc00ffe5104f3919cf339dae5a11463ad060", "fields": {"nom_de_la_commune": "MARY", "libell_d_acheminement": "MARY", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71286"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1992420aecbaf28e6ddc158db8c3ca2e7dee932", "fields": {"nom_de_la_commune": "MASSILLY", "libell_d_acheminement": "MASSILLY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71287"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f782df810fc1b1be792d93f4a727aca142a1153", "fields": {"nom_de_la_commune": "LE MIROIR", "libell_d_acheminement": "LE MIROIR", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71300"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289e4b603afb594aca3a97c509b6cb059b69cba2", "fields": {"nom_de_la_commune": "MONTAGNY LES BUXY", "libell_d_acheminement": "MONTAGNY LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71302"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cf40b974eb26782252faa79b147de000f4e806", "fields": {"nom_de_la_commune": "MONTAGNY PRES LOUHANS", "libell_d_acheminement": "MONTAGNY PRES LOUHANS", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71303"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490652fb337456a482c2ef3e360a266ac9495c9f", "fields": {"nom_de_la_commune": "MONTAGNY SUR GROSNE", "libell_d_acheminement": "MONTAGNY SUR GROSNE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71304"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752c9928769b7bd81ca92defedec9e543bea5bcf", "fields": {"nom_de_la_commune": "MONTBELLET", "libell_d_acheminement": "MONTBELLET", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71305"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ec3e8a1d415c9ff8bfaa00e127472ef1e86b16", "fields": {"nom_de_la_commune": "MONTCEAUX RAGNY", "libell_d_acheminement": "MONTCEAUX RAGNY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71308"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb4f91ded3c289b99db0d6ae45ddda0f3d08d00", "fields": {"nom_de_la_commune": "MONTCONY", "libell_d_acheminement": "MONTCONY", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71311"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea68e405bb437474348975a6923967b4dd8e3162", "fields": {"nom_de_la_commune": "MONTHELON", "libell_d_acheminement": "MONTHELON", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71313"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "418cad6afc3406f3049c21420098586bf89d3c14", "fields": {"nom_de_la_commune": "MONTMORT", "libell_d_acheminement": "MONTMORT", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71317"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94dd1b458def8c39effc598434a7552d2a81f96", "fields": {"nom_de_la_commune": "MONTRET", "libell_d_acheminement": "MONTRET", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71319"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4121f811a8ffc305fae3bb26f2073680f58799", "fields": {"nom_de_la_commune": "LA MOTTE ST JEAN", "libell_d_acheminement": "LA MOTTE ST JEAN", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71325"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb87a81493c921ec30c85472831e260060ea46e1", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71332"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea87962bf23c35fa03381c856c7c65553c88f4f", "fields": {"nom_de_la_commune": "OUDRY", "libell_d_acheminement": "OUDRY", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71334"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79fec55f0de73bc5ca11714564f490adef9a7c9f", "fields": {"nom_de_la_commune": "OYE", "libell_d_acheminement": "OYE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71337"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb010dd4479e4d192b5d3b8d48c82b70163593f", "fields": {"nom_de_la_commune": "PARAY LE MONIAL", "libell_d_acheminement": "PARAY LE MONIAL", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71342"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e486049ed92dc6671207b48c9e6a3b35b86df8", "fields": {"nom_de_la_commune": "PERRECY LES FORGES", "libell_d_acheminement": "PERRECY LES FORGES", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71346"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390d264d577d4b85be7855c1986fed5981500bd5", "fields": {"nom_de_la_commune": "LA PETITE VERRIERE", "libell_d_acheminement": "LA PETITE VERRIERE", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71349"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043249d672a0eb42454d98da0d67655e50b02b1b", "fields": {"code_postal": "71270", "code_commune_insee": "71351", "libell_d_acheminement": "PIERRE DE BRESSE", "ligne_5": "TERRANS", "nom_de_la_commune": "PIERRE DE BRESSE", "coordonnees_gps": [46.8994601906, 5.25743617076]}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a7562272948fe61f420b8f0c3ba399db8ed61c", "fields": {"nom_de_la_commune": "PRETY", "libell_d_acheminement": "PRETY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71359"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab104b3d6232e10a4b70495b9fba37cfb1e16acf", "fields": {"nom_de_la_commune": "LA RACINEUSE", "libell_d_acheminement": "LA RACINEUSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71364"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1ec9add3d5102f204c30c23c1075be83479ca6", "fields": {"nom_de_la_commune": "ROYER", "libell_d_acheminement": "ROYER", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71377"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec79673bbb7441a22148970693012634113c2f86", "fields": {"nom_de_la_commune": "ST ALBAIN", "libell_d_acheminement": "ST ALBAIN", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71383"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8000d663d4c6b82cb327d180f5f4903f8076815", "fields": {"nom_de_la_commune": "ST AMOUR BELLEVUE", "libell_d_acheminement": "ST AMOUR BELLEVUE", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71385"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e314e6ecc4fe5cd455619d5ce12eb8273b011036", "fields": {"nom_de_la_commune": "ST BERAIN SOUS SANVIGNES", "libell_d_acheminement": "ST BERAIN SOUS SANVIGNES", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71390"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592ffabbcd5bb3d07ce864098d78e24cfa2ab999", "fields": {"nom_de_la_commune": "ST BONNET EN BRESSE", "libell_d_acheminement": "ST BONNET EN BRESSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71396"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56467107649950c9187ebfae8a77bb64d6d59b36", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71401"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d2e4cbc3b6df268da27361225f0055bdde0e6e", "fields": {"nom_de_la_commune": "ST DENIS DE VAUX", "libell_d_acheminement": "ST DENIS DE VAUX", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71403"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d3de81ccd5477e078bd7695bd46e6b83b127d0", "fields": {"nom_de_la_commune": "ST DIDIER SUR ARROUX", "libell_d_acheminement": "ST DIDIER SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71407"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d98804440ec5604a071ba7782be3d8c9045a9c", "fields": {"nom_de_la_commune": "ST EDMOND", "libell_d_acheminement": "ST EDMOND", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71408"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5550dae44d7d6809e0245cc17c8e4799d1c95691", "fields": {"nom_de_la_commune": "ST FORGEOT", "libell_d_acheminement": "ST FORGEOT", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71414"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7778c5f1279c140d928b9e1819c98ebc180a32b0", "fields": {"nom_de_la_commune": "ST GERMAIN DU BOIS", "libell_d_acheminement": "ST GERMAIN DU BOIS", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71419"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476b378793e2dd40fc5f6c45565425848772a0a5", "fields": {"nom_de_la_commune": "ST GERMAIN EN BRIONNAIS", "libell_d_acheminement": "ST GERMAIN EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71421"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce2e37436417bf74e1246695abb1b70e3f6ff7c", "fields": {"nom_de_la_commune": "ST GERMAIN LES BUXY", "libell_d_acheminement": "ST GERMAIN LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71422"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0778af7296bcbd8a93f56e043ee65ed9780939f9", "fields": {"nom_de_la_commune": "ST GERVAIS EN VALLIERE", "libell_d_acheminement": "ST GERVAIS EN VALLIERE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71423"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31b24c7368c2e92a9dcf3d69e17d06393c15dafe", "fields": {"nom_de_la_commune": "ST LAURENT D ANDENAY", "libell_d_acheminement": "ST LAURENT D ANDENAY", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71436"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b6172084d87df96881d02e380cf7f84437438c", "fields": {"nom_de_la_commune": "BAILLEUL SIR BERTHOULT", "libell_d_acheminement": "BAILLEUL SIR BERTHOULT", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62073"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff2a4d01fa807f8f7528df1e38feee42d6c70b1", "fields": {"nom_de_la_commune": "BAINGHEN", "libell_d_acheminement": "BAINGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62076"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001d96ad61f439b11b709f260dc8d7e0ff9813bd", "fields": {"nom_de_la_commune": "BAYENGHEM LES EPERLECQUES", "libell_d_acheminement": "BAYENGHEM LES EPERLECQUES", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62087"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7555390a2c0c1fbb9b5d217293e28616b564be6", "fields": {"nom_de_la_commune": "BEAUMETZ LES AIRE", "libell_d_acheminement": "BEAUMETZ LES AIRE", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62095"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc83bd6d5b1dfc48833e7e424da645aa8f21973", "fields": {"nom_de_la_commune": "BEAURAINVILLE", "libell_d_acheminement": "BEAURAINVILLE", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62100"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18776ef9a4885ecb64d228f6a9b125336293ff45", "fields": {"nom_de_la_commune": "BECOURT", "libell_d_acheminement": "BECOURT", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62102"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb7010a7345ee20a5b9d985c0a5617b11d21f5a", "fields": {"nom_de_la_commune": "BELLEBRUNE", "libell_d_acheminement": "BELLEBRUNE", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62104"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d426a0098a9b56f35909386c5bad66b306a25847", "fields": {"nom_de_la_commune": "BERGUENEUSE", "libell_d_acheminement": "BERGUENEUSE", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62109"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ff617ef5473f51081065c1062938c9bf28ba6b", "fields": {"nom_de_la_commune": "BERTINCOURT", "libell_d_acheminement": "BERTINCOURT", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62117"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0138f3a40dacafe16457bf3bf5e88fbe707c59f6", "fields": {"nom_de_la_commune": "BETHUNE", "libell_d_acheminement": "BETHUNE", "code_postal": "62400", "coordonnees_gps": [50.5494833407, 2.65621048886], "code_commune_insee": "62119"}, "geometry": {"type": "Point", "coordinates": [2.65621048886, 50.5494833407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a17abc325ea80be63406f76db5658f67f344cb", "fields": {"nom_de_la_commune": "BEUGIN", "libell_d_acheminement": "BEUGIN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62120"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "190f1b3628b4521a120f52cecc3521db0f2f0ce6", "fields": {"nom_de_la_commune": "BEUGNY", "libell_d_acheminement": "BEUGNY", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62122"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205abedca5cc07968d6dca924352229ac626db37", "fields": {"nom_de_la_commune": "BEUVREQUEN", "libell_d_acheminement": "BEUVREQUEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62125"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2192265f2048f8444bfba479f3cba9150e5a4bb", "fields": {"nom_de_la_commune": "BIACHE ST VAAST", "libell_d_acheminement": "BIACHE ST VAAST", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62128"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5fcf4398918ac2d6191dffe57cc9ce3d450d08e", "fields": {"nom_de_la_commune": "BIHUCOURT", "libell_d_acheminement": "BIHUCOURT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62131"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40be3bca457763748ed76c5a31f18f70c6fdcb1", "fields": {"nom_de_la_commune": "BIMONT", "libell_d_acheminement": "BIMONT", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62134"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2a12a083cd3e589ba3d5458e3ce05e06250355", "fields": {"nom_de_la_commune": "BOFFLES", "libell_d_acheminement": "BOFFLES", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62143"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a778e2fb88e733751888ad560c068923c0a433f", "fields": {"nom_de_la_commune": "BOISLEUX AU MONT", "libell_d_acheminement": "BOISLEUX AU MONT", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62151"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf93efc08be835e798273055c33a46ec1c55941", "fields": {"nom_de_la_commune": "BONNIERES", "libell_d_acheminement": "BONNIERES", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62154"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dd7728cbbd9597236c8bd451929231130917c6", "fields": {"nom_de_la_commune": "BOURLON", "libell_d_acheminement": "BOURLON", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62164"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc1445f16fc0fece316d1a98218de2a3aabfcb2", "fields": {"nom_de_la_commune": "BOURSIN", "libell_d_acheminement": "BOURSIN", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62167"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c03d94bc6cf8ff432dda667439efef4dbe569241", "fields": {"nom_de_la_commune": "BOURTHES", "libell_d_acheminement": "BOURTHES", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62168"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0428cf0a8e594a6023a207e9953a81f9d4576a78", "fields": {"nom_de_la_commune": "BOUVELINGHEM", "libell_d_acheminement": "BOUVELINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62169"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c863935ed46c73f44e19908c9dac7cd1b012c685", "fields": {"nom_de_la_commune": "BOYELLES", "libell_d_acheminement": "BOYELLES", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62172"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f7486ea243032b40f1587a1c001315e9a28fb1", "fields": {"nom_de_la_commune": "BREBIERES", "libell_d_acheminement": "BREBIERES", "code_postal": "62117", "coordonnees_gps": [50.3378113552, 3.01977264157], "code_commune_insee": "62173"}, "geometry": {"type": "Point", "coordinates": [3.01977264157, 50.3378113552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2447c5bc471ff9de67109670e44194635d5b86f4", "fields": {"nom_de_la_commune": "BREXENT ENOCQ", "libell_d_acheminement": "BREXENT ENOCQ", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62176"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3fb06a4bf7dc4274ad34c9432794d9d14348984", "fields": {"nom_de_la_commune": "BULLY LES MINES", "libell_d_acheminement": "BULLY LES MINES", "code_postal": "62160", "coordonnees_gps": [50.434305501, 2.71988094941], "code_commune_insee": "62186"}, "geometry": {"type": "Point", "coordinates": [2.71988094941, 50.434305501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3793072e473ecec9f35da0c5538adea1d682af", "fields": {"nom_de_la_commune": "CAFFIERS", "libell_d_acheminement": "CAFFIERS", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62191"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96340aee4b417e0ce7b0490449d8c824b13728c", "fields": {"nom_de_la_commune": "CALAIS", "libell_d_acheminement": "CALAIS", "code_postal": "62100", "coordonnees_gps": [50.9500651474, 1.87611226111], "code_commune_insee": "62193"}, "geometry": {"type": "Point", "coordinates": [1.87611226111, 50.9500651474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ad3747dff2593f89728cc1374d2f25565f622c", "fields": {"nom_de_la_commune": "LA CALOTTERIE", "libell_d_acheminement": "LA CALOTTERIE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62196"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626e74da93fd27a06801facc1ac1e11e97a7b86e", "fields": {"nom_de_la_commune": "CAMBLAIN L ABBE", "libell_d_acheminement": "CAMBLAIN L ABBE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62199"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aadfad009b2543436634cbdba7ee579c45225a", "fields": {"code_postal": "62176", "code_commune_insee": "62201", "libell_d_acheminement": "CAMIERS", "ligne_5": "STE CECILE", "nom_de_la_commune": "CAMIERS", "coordonnees_gps": [50.5643841007, 1.61258915324]}, "geometry": {"type": "Point", "coordinates": [1.61258915324, 50.5643841007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97953d935c764d82e3e6f76954bb8951d3957d95", "fields": {"nom_de_la_commune": "CAMPAGNE LES HESDIN", "libell_d_acheminement": "CAMPAGNE LES HESDIN", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62204"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292fb4b575ef8a73358b99941e0b5bfab8847e04", "fields": {"nom_de_la_commune": "CARLY", "libell_d_acheminement": "CARLY", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62214"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac3f92538586a600b8719831091db3f966fff35", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62219"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c2078ce51410926389bb186c631704b3904b41", "fields": {"nom_de_la_commune": "CAVRON ST MARTIN", "libell_d_acheminement": "CAVRON ST MARTIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62220"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decea7ac76cc4105dfe1088aa8b11c2dd17a2cbf", "fields": {"nom_de_la_commune": "CHELERS", "libell_d_acheminement": "CHELERS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62221"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b1055c3c7f7d028fffa40cb359c04a12f2a4ad", "fields": {"nom_de_la_commune": "CHERISY", "libell_d_acheminement": "CHERISY", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62223"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203c5c55981290f1edd2ff94242f1f9c4759a44e", "fields": {"nom_de_la_commune": "CONTES", "libell_d_acheminement": "CONTES", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62236"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05e056e2034f947414b481521b77f910481def9", "fields": {"nom_de_la_commune": "CORBEHEM", "libell_d_acheminement": "CORBEHEM", "code_postal": "62112", "coordonnees_gps": [50.3205971806, 3.05553687028], "code_commune_insee": "62240"}, "geometry": {"type": "Point", "coordinates": [3.05553687028, 50.3205971806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a896c5a46687bb97bbdaa8dfe8197397cf26d2", "fields": {"nom_de_la_commune": "COULLEMONT", "libell_d_acheminement": "COULLEMONT", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62243"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bec0484a6df4ea5878c02aba7fd04a67984834d", "fields": {"nom_de_la_commune": "BRENNILIS", "libell_d_acheminement": "BRENNILIS", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29018"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8c93098a8a2c0bcd221039fbcaaf93ff6a59cd", "fields": {"nom_de_la_commune": "BREST", "libell_d_acheminement": "BREST", "code_postal": "29200", "coordonnees_gps": [48.3998970513, -4.5026725313], "code_commune_insee": "29019"}, "geometry": {"type": "Point", "coordinates": [-4.5026725313, 48.3998970513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4080ff9543a44b34c28d08233be7624245fb51e6", "fields": {"nom_de_la_commune": "CAST", "libell_d_acheminement": "CAST", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29025"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f954dda1a44287fbb60a9bff1d70e7da9fa1b7", "fields": {"nom_de_la_commune": "COAT MEAL", "libell_d_acheminement": "COAT MEAL", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29035"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7210cc242a591c7a0b744140bfd7dbd9b691678b", "fields": {"nom_de_la_commune": "COMMANA", "libell_d_acheminement": "COMMANA", "code_postal": "29450", "coordonnees_gps": [48.3997146924, -4.03661538866], "code_commune_insee": "29038"}, "geometry": {"type": "Point", "coordinates": [-4.03661538866, 48.3997146924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f523037a71043791067c93f6da903c533aeb0c7a", "fields": {"code_postal": "29160", "code_commune_insee": "29042", "libell_d_acheminement": "CROZON", "ligne_5": "MORGAT", "nom_de_la_commune": "CROZON", "coordonnees_gps": [48.2509456374, -4.48250403015]}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a8d51e37004bfea9659d17a96d3660521b21b1", "fields": {"nom_de_la_commune": "DIRINON", "libell_d_acheminement": "DIRINON", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29045"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a48760aaacc39b088f68512b9e4e85a5ee1463", "fields": {"nom_de_la_commune": "DOUARNENEZ", "libell_d_acheminement": "DOUARNENEZ", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29046"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37ec2695a253d415ce32354d7b0e6a73102ba50", "fields": {"nom_de_la_commune": "LE FAOU", "libell_d_acheminement": "LE FAOU", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29053"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5decad00313ec949e84533a60cd9b7e0e2b47cfa", "fields": {"nom_de_la_commune": "GOUESNOU", "libell_d_acheminement": "GOUESNOU", "code_postal": "29850", "coordonnees_gps": [48.4463653072, -4.46262748284], "code_commune_insee": "29061"}, "geometry": {"type": "Point", "coordinates": [-4.46262748284, 48.4463653072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37953ca36ce57f4a8a19c5a18dc9a0b30041e953", "fields": {"nom_de_la_commune": "GOUEZEC", "libell_d_acheminement": "GOUEZEC", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29062"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19f2d0a854006c41b8740b4bb159f67438f5747", "fields": {"nom_de_la_commune": "GOULIEN", "libell_d_acheminement": "GOULIEN", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29063"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffab31e7691fffbcbb7492789f7a4444a897c75", "fields": {"nom_de_la_commune": "GOURLIZON", "libell_d_acheminement": "GOURLIZON", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29065"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7af1bf55fe318c9e518572017d9c2c585655aef", "fields": {"nom_de_la_commune": "GUILERS", "libell_d_acheminement": "GUILERS", "code_postal": "29820", "coordonnees_gps": [48.4223401129, -4.55120430112], "code_commune_insee": "29069"}, "geometry": {"type": "Point", "coordinates": [-4.55120430112, 48.4223401129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e708b9bec138ae4b85880a571579bf0c8db3ff", "fields": {"nom_de_la_commune": "GUIMILIAU", "libell_d_acheminement": "GUIMILIAU", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29074"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0971792062278def0fddd43076dd3d3ecc90be7", "fields": {"nom_de_la_commune": "ILE DE BATZ", "libell_d_acheminement": "ILE DE BATZ", "code_postal": "29253", "coordonnees_gps": [48.7451496585, -4.01396117173], "code_commune_insee": "29082"}, "geometry": {"type": "Point", "coordinates": [-4.01396117173, 48.7451496585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "422f1e719ab55a853409cf621788e80d4d249bbd", "fields": {"nom_de_la_commune": "ILE TUDY", "libell_d_acheminement": "ILE TUDY", "code_postal": "29980", "coordonnees_gps": [47.8535512561, -4.16110508856], "code_commune_insee": "29085"}, "geometry": {"type": "Point", "coordinates": [-4.16110508856, 47.8535512561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f945b22cb4f1b4f4d928eb1effa67d0ea2f4ae60", "fields": {"nom_de_la_commune": "LANDERNEAU", "libell_d_acheminement": "LANDERNEAU", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29103"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00b82e3c3dc656b1bcedd2b956a990a81b80d4a", "fields": {"nom_de_la_commune": "LANGOLEN", "libell_d_acheminement": "LANGOLEN", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29110"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e94a07b44da4f7233df1aefc6045bd6f0a20474", "fields": {"nom_de_la_commune": "LANNEDERN", "libell_d_acheminement": "LANNEDERN", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29115"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ee04a0b66c1b9939c86d300a743a51c733a97d", "fields": {"nom_de_la_commune": "LESNEVEN", "libell_d_acheminement": "LESNEVEN", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29124"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1215557c6d328b99924122bdcb37f1ae33dfb86", "fields": {"nom_de_la_commune": "LOCQUENOLE", "libell_d_acheminement": "LOCQUENOLE", "code_postal": "29670", "coordonnees_gps": [48.6115229936, -3.90607440481], "code_commune_insee": "29132"}, "geometry": {"type": "Point", "coordinates": [-3.90607440481, 48.6115229936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49bc7507a81e781831aefce0713ca5751c3567c9", "fields": {"nom_de_la_commune": "LOCUNOLE", "libell_d_acheminement": "LOCUNOLE", "code_postal": "29310", "coordonnees_gps": [47.9478080575, -3.53309930028], "code_commune_insee": "29136"}, "geometry": {"type": "Point", "coordinates": [-3.53309930028, 47.9478080575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e357a4b911f90992e44917a5968d35b141b95428", "fields": {"nom_de_la_commune": "MORLAIX", "libell_d_acheminement": "MORLAIX", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29151"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b594f567cece80fd84f570ce7008e67b80d973ab", "fields": {"code_postal": "29920", "code_commune_insee": "29153", "libell_d_acheminement": "NEVEZ", "ligne_5": "PORT MANECH", "nom_de_la_commune": "NEVEZ", "coordonnees_gps": [47.815380473, -3.77580285801]}, "geometry": {"type": "Point", "coordinates": [-3.77580285801, 47.815380473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1409c367279787d2cf68a7183d59cd621b74dd06", "fields": {"nom_de_la_commune": "PENMARCH", "libell_d_acheminement": "PENMARCH", "code_postal": "29760", "coordonnees_gps": [47.8121356044, -4.34149591824], "code_commune_insee": "29158"}, "geometry": {"type": "Point", "coordinates": [-4.34149591824, 47.8121356044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7c32e386072a7ddd5d2be851fa7c0b094d585d", "fields": {"nom_de_la_commune": "PLABENNEC", "libell_d_acheminement": "PLABENNEC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29160"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d44934495781c3e5348ff02297f79d4c6ff7620", "fields": {"nom_de_la_commune": "PLEYBEN", "libell_d_acheminement": "PLEYBEN", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29162"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ebddef1f9826345764dc3ee503a8c54a03ed760", "fields": {"nom_de_la_commune": "PLOEVEN", "libell_d_acheminement": "PLOEVEN", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29166"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d5a4a886bb6f9b46778e6c639f9784153a1af3", "fields": {"nom_de_la_commune": "PLOMELIN", "libell_d_acheminement": "PLOMELIN", "code_postal": "29700", "coordonnees_gps": [47.9557228551, -4.17033368764], "code_commune_insee": "29170"}, "geometry": {"type": "Point", "coordinates": [-4.17033368764, 47.9557228551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de45cfb44e5be295b8f6e8444e60f31b7392e793", "fields": {"nom_de_la_commune": "PLOMODIERN", "libell_d_acheminement": "PLOMODIERN", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29172"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40a74123c7d6808f153a46cf60c622fe146f38ec", "fields": {"nom_de_la_commune": "PLONEVEZ PORZAY", "libell_d_acheminement": "PLONEVEZ PORZAY", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29176"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f6c3402147bee6557bc4cb756802be4ab17125", "fields": {"nom_de_la_commune": "PLOUEGAT MOYSAN", "libell_d_acheminement": "PLOUEGAT MOYSAN", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29183"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52f76aeaf8c0d85348434879dbe89721b7fdc44", "fields": {"nom_de_la_commune": "PLOUGAR", "libell_d_acheminement": "PLOUGAR", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29187"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a96cf9df17c5b4d321e5dcf978ad0312cdb45b49", "fields": {"nom_de_la_commune": "PLOUGASNOU", "libell_d_acheminement": "PLOUGASNOU", "code_postal": "29630", "coordonnees_gps": [48.6746083543, -3.7940474751], "code_commune_insee": "29188"}, "geometry": {"type": "Point", "coordinates": [-3.7940474751, 48.6746083543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760370c93b9536240d8353581024fecbfa8c30fc", "fields": {"nom_de_la_commune": "PLOUGONVEN", "libell_d_acheminement": "PLOUGONVEN", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29191"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a095a3a04fcaa403fa6db3f5e5dbcd837b16d5d2", "fields": {"nom_de_la_commune": "PLOZEVET", "libell_d_acheminement": "PLOZEVET", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29215"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212206dca70c63ab32fe7812e069921d5e405cd4", "fields": {"nom_de_la_commune": "PONT AVEN", "libell_d_acheminement": "PONT AVEN", "code_postal": "29930", "coordonnees_gps": [47.8719049121, -3.76549245761], "code_commune_insee": "29217"}, "geometry": {"type": "Point", "coordinates": [-3.76549245761, 47.8719049121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2092d22a662a579a62ade2019199c28db9e647", "fields": {"nom_de_la_commune": "PONT CROIX", "libell_d_acheminement": "PONT CROIX", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29218"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a352c2c4ae7a38893a79f37e4904db8b60b97f", "fields": {"code_postal": "29840", "code_commune_insee": "29221", "libell_d_acheminement": "PORSPODER", "ligne_5": "LARRET", "nom_de_la_commune": "PORSPODER", "coordonnees_gps": [48.5120330691, -4.73920454797]}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf830c19c2385a079af1c6b5667b601132620b0f", "fields": {"nom_de_la_commune": "POULDERGAT", "libell_d_acheminement": "POULDERGAT", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29224"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57bc9888adc021ba97b1cb8297a122d9427f1130", "fields": {"nom_de_la_commune": "PRIMELIN", "libell_d_acheminement": "PRIMELIN", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29228"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d19cf12895e01edf06a802c8bcea071820f61e9", "fields": {"nom_de_la_commune": "QUIMPER", "libell_d_acheminement": "QUIMPER", "code_postal": "29000", "coordonnees_gps": [47.9969497735, -4.09093803063], "code_commune_insee": "29232"}, "geometry": {"type": "Point", "coordinates": [-4.09093803063, 47.9969497735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbb4f1d41a425a2ec4074fbc49222fbe63f891d", "fields": {"nom_de_la_commune": "ROSCOFF", "libell_d_acheminement": "ROSCOFF", "code_postal": "29680", "coordonnees_gps": [48.7119919943, -3.9888631331], "code_commune_insee": "29239"}, "geometry": {"type": "Point", "coordinates": [-3.9888631331, 48.7119919943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0a63b49063a786a1bc944cd0c1f653397e51fd", "fields": {"nom_de_la_commune": "ROSNOEN", "libell_d_acheminement": "ROSNOEN", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29240"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcd07c598b53c7c4fb004cfd03a4d2ecf23f6af", "fields": {"nom_de_la_commune": "ST DIVY", "libell_d_acheminement": "ST DIVY", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29245"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bbf9f6593c1b02a9ed095481693658cdaa3efc", "fields": {"nom_de_la_commune": "ST FREGANT", "libell_d_acheminement": "ST FREGANT", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29248"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9805d44080c8eeeec5208873ad65b6553f01cc", "fields": {"nom_de_la_commune": "ST GOAZEC", "libell_d_acheminement": "ST GOAZEC", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29249"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eaaff7b4411b9b85c4ef8899d42592f4f39257f", "fields": {"nom_de_la_commune": "SCAER", "libell_d_acheminement": "SCAER", "code_postal": "29390", "coordonnees_gps": [48.0434565453, -3.74078838463], "code_commune_insee": "29274"}, "geometry": {"type": "Point", "coordinates": [-3.74078838463, 48.0434565453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad988141cac40fd4a2599c849bb9da25e041c8c", "fields": {"nom_de_la_commune": "SCRIGNAC", "libell_d_acheminement": "SCRIGNAC", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29275"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2925980364e5b8b9b67ab531f6c2bf178dc73bc9", "fields": {"nom_de_la_commune": "TELGRUC SUR MER", "libell_d_acheminement": "TELGRUC SUR MER", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29280"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ba35697a121aee58fbdf3f118ff7a237ae7f81", "fields": {"nom_de_la_commune": "TREGUNC", "libell_d_acheminement": "TREGUNC", "code_postal": "29910", "coordonnees_gps": [47.8382124091, -3.84120100086], "code_commune_insee": "29293"}, "geometry": {"type": "Point", "coordinates": [-3.84120100086, 47.8382124091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfc9a156861b1da1c3ab87ea9f5d267a702828c", "fields": {"nom_de_la_commune": "LE TREHOU", "libell_d_acheminement": "LE TREHOU", "code_postal": "29450", "coordonnees_gps": [48.3997146924, -4.03661538866], "code_commune_insee": "29294"}, "geometry": {"type": "Point", "coordinates": [-4.03661538866, 48.3997146924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b564a0e9c5ee7f259ee9b66ecc20778ce4e40dc", "fields": {"nom_de_la_commune": "LE TREVOUX", "libell_d_acheminement": "LE TREVOUX", "code_postal": "29380", "coordonnees_gps": [47.931095922, -3.67533522316], "code_commune_insee": "29300"}, "geometry": {"type": "Point", "coordinates": [-3.67533522316, 47.931095922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072f4e3f6cc687c762017b7895dac36b8c978fa5", "fields": {"nom_de_la_commune": "TREZILIDE", "libell_d_acheminement": "TREZILIDE", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29301"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2e469f6adbe6f7b1e62165069cd450294e1bbc", "fields": {"nom_de_la_commune": "AIGALIERS", "libell_d_acheminement": "AIGALIERS", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30001"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed74aeb42e717dbdf9898516b9e2dc0eaccbf1dc", "fields": {"nom_de_la_commune": "AIGUEZE", "libell_d_acheminement": "AIGUEZE", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30005"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2716e978d07d8b6612c5b4560e4c3772c016cda", "fields": {"nom_de_la_commune": "LES ANGLES", "libell_d_acheminement": "LES ANGLES", "code_postal": "30133", "coordonnees_gps": [43.9466329625, 4.75207033981], "code_commune_insee": "30011"}, "geometry": {"type": "Point", "coordinates": [4.75207033981, 43.9466329625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48f52ef4eeefc7922c23fde1dd383c8f45ae402", "fields": {"nom_de_la_commune": "ARRIGAS", "libell_d_acheminement": "ARRIGAS", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30017"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57e62fe6676a0afa8ff6c22276d6bfebf428f84", "fields": {"nom_de_la_commune": "ASPERES", "libell_d_acheminement": "ASPERES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30018"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49e41d6f13dbf138b73e9cfa5b9f7855f88b5d59", "fields": {"nom_de_la_commune": "BARJAC", "libell_d_acheminement": "BARJAC", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30029"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132643d4f36bbb198715f4cd3818e4348efe9ea4", "fields": {"code_postal": "30640", "code_commune_insee": "30033", "libell_d_acheminement": "BEAUVOISIN", "ligne_5": "FRANQUEVAUX", "nom_de_la_commune": "BEAUVOISIN", "coordonnees_gps": [43.6958928961, 4.32221754971]}, "geometry": {"type": "Point", "coordinates": [4.32221754971, 43.6958928961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4430a996a4b341e066132935827353875884181a", "fields": {"code_postal": "30160", "code_commune_insee": "30037", "libell_d_acheminement": "BESSEGES", "ligne_5": "FOUSSIGNARGUES", "nom_de_la_commune": "BESSEGES", "coordonnees_gps": [44.2982766732, 4.09724420546]}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd35c0b56a77501dd3124e9810e158c1adcd8bc", "fields": {"nom_de_la_commune": "BLAUZAC", "libell_d_acheminement": "BLAUZAC", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30041"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb819781905e02ef8fae1b77b0e73e7608676034", "fields": {"nom_de_la_commune": "BROUZET LES ALES", "libell_d_acheminement": "BROUZET LES ALES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30055"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe00d038f307cdfcb1e27352c684678e92ac414", "fields": {"nom_de_la_commune": "LA BRUGUIERE", "libell_d_acheminement": "LA BRUGUIERE", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30056"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69333f3df5437dc5640665fce11631488f540942", "fields": {"nom_de_la_commune": "CANAULES ET ARGENTIERES", "libell_d_acheminement": "CANAULES ET ARGENTIERES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30065"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4890dfed21ada4f1fd9d835d2824c05d94bc91b", "fields": {"nom_de_la_commune": "CAVILLARGUES", "libell_d_acheminement": "CAVILLARGUES", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30076"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5970d5452ecea7eaae8263707816b48a7c093145", "fields": {"nom_de_la_commune": "CORNILLON", "libell_d_acheminement": "CORNILLON", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30096"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb18b13f5c1b5d450f52ddd777c05dbe7c268fb4", "fields": {"nom_de_la_commune": "DURFORT ET ST MARTIN DE SOSSENAC", "libell_d_acheminement": "DURFORT ET ST MARTIN DE SOSSENAC", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30106"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcec617bd237de84ad6177d6dca9b0d10a7acdb", "fields": {"nom_de_la_commune": "ESTEZARGUES", "libell_d_acheminement": "ESTEZARGUES", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30107"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9295406ff1744a8476a928e5adf584da9d6df82", "fields": {"nom_de_la_commune": "EUZET", "libell_d_acheminement": "EUZET", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30109"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dcea2d4f47bb36abbb03a7e36da0a5ab9edef9", "fields": {"nom_de_la_commune": "FONS SUR LUSSAN", "libell_d_acheminement": "FONS SUR LUSSAN", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30113"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e07f24b3813a9de12e5dd4e77237d279ac587d", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30114"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93abc10e8568bf02898475dc83d73dd7f490691b", "fields": {"nom_de_la_commune": "GARONS", "libell_d_acheminement": "GARONS", "code_postal": "30128", "coordonnees_gps": [43.7717827428, 4.43860430343], "code_commune_insee": "30125"}, "geometry": {"type": "Point", "coordinates": [4.43860430343, 43.7717827428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af59a68a9a2b784f59b2278ec551f300074f570c", "fields": {"nom_de_la_commune": "GENERARGUES", "libell_d_acheminement": "GENERARGUES", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30129"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3e1c36785b48b3f8ce1e4141a3dd794834336f", "fields": {"nom_de_la_commune": "GENOLHAC", "libell_d_acheminement": "GENOLHAC", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30130"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddc4d4a350714a23b4b721a9a370f7832116b7c", "fields": {"nom_de_la_commune": "LE GRAU DU ROI", "libell_d_acheminement": "LE GRAU DU ROI", "code_postal": "30240", "coordonnees_gps": [43.5075003304, 4.16612104181], "code_commune_insee": "30133"}, "geometry": {"type": "Point", "coordinates": [4.16612104181, 43.5075003304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9475ee8be6bd018af14bd6f87eb05341de8c8c2e", "fields": {"nom_de_la_commune": "ISSIRAC", "libell_d_acheminement": "ISSIRAC", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30134"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dc6e47c1ca9884661838ee894cea2ec47ce97e7", "fields": {"nom_de_la_commune": "LANUEJOLS", "libell_d_acheminement": "LANUEJOLS", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30139"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875bb3033a3ce15a61406870608a2b7d7e43b34f", "fields": {"nom_de_la_commune": "MEYRANNES", "libell_d_acheminement": "MEYRANNES", "code_postal": "30410", "coordonnees_gps": [44.2684552462, 4.15312879608], "code_commune_insee": "30167"}, "geometry": {"type": "Point", "coordinates": [4.15312879608, 44.2684552462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a6221c36d4069b7428a48032954f9c6fc491c1", "fields": {"nom_de_la_commune": "MILHAUD", "libell_d_acheminement": "MILHAUD", "code_postal": "30540", "coordonnees_gps": [43.7894384552, 4.30898822967], "code_commune_insee": "30169"}, "geometry": {"type": "Point", "coordinates": [4.30898822967, 43.7894384552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d77078e125c0621b3d18c1907b2aced9c09dc221", "fields": {"nom_de_la_commune": "MONTEILS", "libell_d_acheminement": "MONTEILS", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30177"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c7d67546775d2ab89e80cbb040ce6b76b95dd5c", "fields": {"nom_de_la_commune": "MOULEZAN", "libell_d_acheminement": "MOULEZAN", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30183"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c1e5197a618f6265abb316cb6b6501feab2939", "fields": {"nom_de_la_commune": "MOUSSAC", "libell_d_acheminement": "MOUSSAC", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30184"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ac29b872e0908c24081f2d83ed36c535190c7a", "fields": {"nom_de_la_commune": "NIMES", "libell_d_acheminement": "NIMES", "code_postal": "30000", "coordonnees_gps": [43.8446783278, 4.34763990758], "code_commune_insee": "30189"}, "geometry": {"type": "Point", "coordinates": [4.34763990758, 43.8446783278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29026a2277a26f49eba6ef233cd16f56edcb89d", "fields": {"nom_de_la_commune": "NOTRE DAME DE LA ROUVIERE", "libell_d_acheminement": "NOTRE DAME DE LA ROUVIERE", "code_postal": "30570", "coordonnees_gps": [44.0726659804, 3.64380586054], "code_commune_insee": "30190"}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9764a49893cc96714e8d48f905c34d0577ef382", "fields": {"nom_de_la_commune": "PARIGNARGUES", "libell_d_acheminement": "PARIGNARGUES", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30193"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f86f53468b355ecf508a5862a843217b1bd121ec", "fields": {"nom_de_la_commune": "PONT ST ESPRIT", "libell_d_acheminement": "PONT ST ESPRIT", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30202"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afad073cd0568e92275fcf271d832b58efe81fee", "fields": {"nom_de_la_commune": "POULX", "libell_d_acheminement": "POULX", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30206"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00505283238fb68f687b9ea8194618b4de57a81", "fields": {"nom_de_la_commune": "POUZILHAC", "libell_d_acheminement": "POUZILHAC", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30207"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e44d9efa81abd795cc9f6cd2dd55a4a3d4ec5e0", "fields": {"nom_de_la_commune": "PUECHREDON", "libell_d_acheminement": "PUECHREDON", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30208"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79bb90e16e27ebf994d8994759ee8c83e43f00c", "fields": {"nom_de_la_commune": "QUISSAC", "libell_d_acheminement": "QUISSAC", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30210"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9932fda572aa35a57f1a991a8072f0a6b22ac23d", "fields": {"nom_de_la_commune": "REDESSAN", "libell_d_acheminement": "REDESSAN", "code_postal": "30129", "coordonnees_gps": [43.8162096592, 4.49752945444], "code_commune_insee": "30211"}, "geometry": {"type": "Point", "coordinates": [4.49752945444, 43.8162096592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b880212f5095932b9fd1a70021edbb2e7309f6", "fields": {"nom_de_la_commune": "ROCHEFORT DU GARD", "libell_d_acheminement": "ROCHEFORT DU GARD", "code_postal": "30650", "coordonnees_gps": [43.9716290587, 4.68530597674], "code_commune_insee": "30217"}, "geometry": {"type": "Point", "coordinates": [4.68530597674, 43.9716290587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448d6fe31a8ea2aae05dcd6d54e3ce713255a704", "fields": {"nom_de_la_commune": "LA ROUVIERE", "libell_d_acheminement": "LA ROUVIERE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30224"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa8cfcb771e3b8975d2de5872465c269ec2ae66", "fields": {"nom_de_la_commune": "SABRAN", "libell_d_acheminement": "SABRAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30225"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "905d5ab05ee2ff26c459457d1ed2c63899826112", "fields": {"nom_de_la_commune": "ST ANDRE DE MAJENCOULES", "libell_d_acheminement": "ST ANDRE DE MAJENCOULES", "code_postal": "30570", "coordonnees_gps": [44.0726659804, 3.64380586054], "code_commune_insee": "30229"}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4c3d7b7c46f51fdc3cc53645f2b69da86400b5d", "fields": {"nom_de_la_commune": "ST CHAPTES", "libell_d_acheminement": "ST CHAPTES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30241"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1f48e8258430b57f84fa3fc5e075620f8f4b9a", "fields": {"nom_de_la_commune": "STE CROIX DE CADERLE", "libell_d_acheminement": "STE CROIX DE CADERLE", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30246"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ff3365591c5a08a6a7f32216f81a79061891f3", "fields": {"nom_de_la_commune": "AOUGNY", "libell_d_acheminement": "AOUGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51013"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a734c3306403fe587b5eb190fcbf18d13c803b6f", "fields": {"nom_de_la_commune": "ARCIS LE PONSART", "libell_d_acheminement": "ARCIS LE PONSART", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51014"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757225f1a02bf309335e90f8ff8c430ccdc37cca", "fields": {"code_postal": "51290", "code_commune_insee": "51017", "libell_d_acheminement": "ARZILLIERES NEUVILLE", "ligne_5": "NEUVILLE SOUS ARZILLIERES", "nom_de_la_commune": "ARZILLIERES NEUVILLE", "coordonnees_gps": [48.5969777002, 4.64247571558]}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae4509f9446fb80fcc52142a801813e0d0a2cb7", "fields": {"nom_de_la_commune": "AUBERIVE", "libell_d_acheminement": "AUBERIVE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51019"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f1b25a08460e8fa4da6d7603200944588e1b4a", "fields": {"nom_de_la_commune": "AUBILLY", "libell_d_acheminement": "AUBILLY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51020"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427dbaeede4125f2a7ba5df888fbc9d9f2bbc9ec", "fields": {"nom_de_la_commune": "AUVE", "libell_d_acheminement": "AUVE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51027"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad70373c3bbeca0a886cebbdb85674ef43cc6b7", "fields": {"nom_de_la_commune": "LE BAIZIL", "libell_d_acheminement": "LE BAIZIL", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51033"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ffb4433d2c94d2d3b29fed55d57470f237a8c49", "fields": {"nom_de_la_commune": "BASSUET", "libell_d_acheminement": "BASSUET", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51040"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569c78278f412fea167a4f76f56950d1d1e6c7cf", "fields": {"nom_de_la_commune": "BAYE", "libell_d_acheminement": "BAYE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51042"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0351625f94b3aea949ba463dad2cfb4059dfe4bd", "fields": {"nom_de_la_commune": "BILLY LE GRAND", "libell_d_acheminement": "BILLY LE GRAND", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51061"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e8c0656808b5a7744b4a3483ce8a2ebe84d70a", "fields": {"nom_de_la_commune": "BINARVILLE", "libell_d_acheminement": "BINARVILLE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51062"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9440ee6a9609c47ddb4f40faf973dbe57bd743d1", "fields": {"nom_de_la_commune": "BLESME", "libell_d_acheminement": "BLESME", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51068"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ce9a6e1b8a0a68edd0b3f3399213305accb40f", "fields": {"nom_de_la_commune": "BOULT SUR SUIPPE", "libell_d_acheminement": "BOULT SUR SUIPPE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51074"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d36084ac3ebf0f3d2a462b1c879facb7d9d38ce", "fields": {"nom_de_la_commune": "BOURSAULT", "libell_d_acheminement": "BOURSAULT", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51076"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96453020077b53c7b0614ce691778fcec12e5bb7", "fields": {"nom_de_la_commune": "BOUZY", "libell_d_acheminement": "BOUZY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51079"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f611e08e2a856497ecccbfa4e4dc83025feac99", "fields": {"nom_de_la_commune": "BREBAN", "libell_d_acheminement": "BREBAN", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51084"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24eec7e25ecbacdd8b34b36f1cb8854aba799ea", "fields": {"nom_de_la_commune": "BRUGNY VAUDANCOURT", "libell_d_acheminement": "BRUGNY VAUDANCOURT", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51093"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8a71d3985c04d08c045997fa0eac81ce3e0c49", "fields": {"nom_de_la_commune": "LE BUISSON", "libell_d_acheminement": "LE BUISSON", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51095"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba9b922180fa5c9e26a9f1019a941e1211b2dde", "fields": {"nom_de_la_commune": "CHALONS SUR VESLE", "libell_d_acheminement": "CHALONS SUR VESLE", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51109"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cc7a2988df833e70a7155d5d6557e6bb2ead23", "fields": {"nom_de_la_commune": "CHAMPFLEURY", "libell_d_acheminement": "CHAMPFLEURY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51115"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f1832da221c6407cb35bbc0e823c127a94735c", "fields": {"nom_de_la_commune": "CHENAY", "libell_d_acheminement": "CHENAY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51145"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083d65d59fc2be34f8f9359729443e8d572eb03c", "fields": {"nom_de_la_commune": "CHIGNY LES ROSES", "libell_d_acheminement": "CHIGNY LES ROSES", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51152"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639f86485df76909956695fe35265cfae5d96420", "fields": {"nom_de_la_commune": "CHOUILLY", "libell_d_acheminement": "CHOUILLY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51153"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca8cc0393e4e96c11c988a732f07b40a958edf7", "fields": {"code_postal": "51130", "code_commune_insee": "51158", "libell_d_acheminement": "VAL DES MARAIS", "ligne_5": "AULNIZEUX", "nom_de_la_commune": "VAL DES MARAIS", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85f98e650d89e35a47ff59c76b69c19536c92c2", "fields": {"code_postal": "51130", "code_commune_insee": "51158", "libell_d_acheminement": "VAL DES MARAIS", "ligne_5": "MORAINS", "nom_de_la_commune": "VAL DES MARAIS", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e12afe92576a876724c698b825e42ae5eccb44a", "fields": {"nom_de_la_commune": "CONTAULT", "libell_d_acheminement": "CONTAULT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51166"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d03d633291cb26b6ebc222a88eb59f38da2c0c", "fields": {"nom_de_la_commune": "CORBEIL", "libell_d_acheminement": "CORBEIL", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51169"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb80e0709397bab15197c920523a22ba39c5e21c", "fields": {"nom_de_la_commune": "COURCELLES SAPICOURT", "libell_d_acheminement": "COURCELLES SAPICOURT", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51181"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ed1dff438ff644f5e15ce83a5049d20361eda1", "fields": {"nom_de_la_commune": "COURJEONNET", "libell_d_acheminement": "COURJEONNET", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51186"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd26c70e7f48942900aeee96c880638ae5b90619", "fields": {"nom_de_la_commune": "DAMERY", "libell_d_acheminement": "DAMERY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51204"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091e09d291d001e4d803e407a8598fd7f1ae7f29", "fields": {"nom_de_la_commune": "DOMMARTIN SOUS HANS", "libell_d_acheminement": "DOMMARTIN SOUS HANS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51213"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cec10c5c6be8144fe80875c09d2b34f932e89e7", "fields": {"nom_de_la_commune": "DORMANS", "libell_d_acheminement": "DORMANS", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51217"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cccf20c1d7bbaf2ae5fa6ec10bdf8b3255d098", "fields": {"nom_de_la_commune": "ECRIENNES", "libell_d_acheminement": "ECRIENNES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51224"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e063961e541316d6c60a731707339d9c17823e9", "fields": {"nom_de_la_commune": "ELISE DAUCOURT", "libell_d_acheminement": "ELISE DAUCOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51228"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9f6710c4ab9dd30e3d59ea490e08f5c076e0c9", "fields": {"nom_de_la_commune": "LES ESSARTS LE VICOMTE", "libell_d_acheminement": "LES ESSARTS LE VICOMTE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51236"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6539a0e0ff2ccea309a0204626001ab031b289", "fields": {"nom_de_la_commune": "FLAVIGNY", "libell_d_acheminement": "FLAVIGNY", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51251"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2467957ff5a7160950afe66c80d972952f85ccd", "fields": {"nom_de_la_commune": "FRIGNICOURT", "libell_d_acheminement": "FRIGNICOURT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51262"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6691d9c383693f616566d17ed4325509c2c1e0f5", "fields": {"nom_de_la_commune": "GAYE", "libell_d_acheminement": "GAYE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51265"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663fae6268ac4f2be0e8d1bfdde98e6cf0012738", "fields": {"nom_de_la_commune": "HANS", "libell_d_acheminement": "HANS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51283"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f13f46b8161882730a142881f1e735c405969b6", "fields": {"nom_de_la_commune": "HAUSSIGNEMONT", "libell_d_acheminement": "HAUSSIGNEMONT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51284"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1a76140779856ea3e06bcb933fe982931b222b", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51286"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175b31d46dfa9365631fdaaf8b542e2a83ad9c03", "fields": {"nom_de_la_commune": "HEILTZ L EVEQUE", "libell_d_acheminement": "HEILTZ L EVEQUE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51290"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728407fe8dae75e8d63e5bc009f6ba21b6e304b4", "fields": {"nom_de_la_commune": "HUIRON", "libell_d_acheminement": "HUIRON", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51295"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838d4ea70d0a2e087a6cd2644cb6024c88b40795", "fields": {"nom_de_la_commune": "IGNY COMBLIZY", "libell_d_acheminement": "IGNY COMBLIZY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51298"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f72e646660b0958b4a7f025093c0d5ef15dc3c", "fields": {"nom_de_la_commune": "ISLE SUR MARNE", "libell_d_acheminement": "ISLE SUR MARNE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51300"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b77e877baa71a9690ecd1c5a6ccabb634a577e5", "fields": {"nom_de_la_commune": "LES ISTRES ET BURY", "libell_d_acheminement": "LES ISTRES ET BURY", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51302"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4bc3b6c143fca6f9e18ad456d0aca19ce1c63d", "fields": {"nom_de_la_commune": "JUSSECOURT MINECOURT", "libell_d_acheminement": "JUSSECOURT MINECOURT", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51311"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde34c7438bea65a71e6e3a1e7b5b3387117b925", "fields": {"nom_de_la_commune": "MAGNEUX", "libell_d_acheminement": "MAGNEUX", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51337"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c119aabe870766bff9a3bca6b0abc3b2426f174", "fields": {"nom_de_la_commune": "MARFAUX", "libell_d_acheminement": "MARFAUX", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51348"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75778250491f8fce934dd3af49a5e46bb3f67c45", "fields": {"nom_de_la_commune": "MATIGNICOURT GONCOURT", "libell_d_acheminement": "MATIGNICOURT GONCOURT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51356"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25e43a57b7d37b5c6019a190a357b85d87a163e", "fields": {"nom_de_la_commune": "LE MEIX ST EPOING", "libell_d_acheminement": "LE MEIX ST EPOING", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51360"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd3115820ce0625e900cb1c36000f9531033972", "fields": {"nom_de_la_commune": "MERFY", "libell_d_acheminement": "MERFY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51362"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbca269ecefb22012f980a30f0686bf5380eb598", "fields": {"nom_de_la_commune": "MOIREMONT", "libell_d_acheminement": "MOIREMONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51370"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2c202ce40a1fe103f1acc40b087154c732d124", "fields": {"nom_de_la_commune": "MONTHELON", "libell_d_acheminement": "MONTHELON", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51378"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab08e5acb1d879a07007b1062b5ed9f1dafaa21", "fields": {"nom_de_la_commune": "MOURMELON LE PETIT", "libell_d_acheminement": "MOURMELON LE PETIT", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51389"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a5da092f811c9ee55315819a9f61d62abf2852", "fields": {"nom_de_la_commune": "NANTEUIL LA FORET", "libell_d_acheminement": "NANTEUIL LA FORET", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51393"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d90957896a27373283b90774f4036856c862ba01", "fields": {"nom_de_la_commune": "NESLE LA REPOSTE", "libell_d_acheminement": "NESLE LA REPOSTE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51395"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c8a2e0e8fb874686b797c5f41ef7382664d9ba", "fields": {"nom_de_la_commune": "NOGENT L ABBESSE", "libell_d_acheminement": "NOGENT L ABBESSE", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51403"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb8ff94d075402dc6ff264d6a2be9090dc08833", "fields": {"nom_de_la_commune": "OEUILLY", "libell_d_acheminement": "OEUILLY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51410"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1a2281609ea9889b751b78a1c9e797b72088c2", "fields": {"nom_de_la_commune": "OGER", "libell_d_acheminement": "OGER", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51411"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c437529c937276413ccd7107c9cc600499b60c40", "fields": {"nom_de_la_commune": "OYES", "libell_d_acheminement": "OYES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51421"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5923b0a7537981ac06b5571eff405a3421e5ec98", "fields": {"nom_de_la_commune": "PASSAVANT EN ARGONNE", "libell_d_acheminement": "PASSAVANT EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51424"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9d749f130501a437f5ca2a91dc30f07940de66", "fields": {"nom_de_la_commune": "POCANCY", "libell_d_acheminement": "POCANCY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51435"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543e001c69d08f8e43db1977e3ef259ee2dfff78", "fields": {"nom_de_la_commune": "POIX", "libell_d_acheminement": "POIX", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51438"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aef98000d9c8739e08553f913ef31c477ffa4ac", "fields": {"nom_de_la_commune": "PONTHION", "libell_d_acheminement": "PONTHION", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51441"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e50b82e26e1d17e854915f8f3897c28d41513ab", "fields": {"nom_de_la_commune": "PROSNES", "libell_d_acheminement": "PROSNES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51447"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fd1e4ec2f82957594671d138075b768faedaa9", "fields": {"nom_de_la_commune": "PRUNAY", "libell_d_acheminement": "PRUNAY", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51449"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bccbb5a7d72c40c51e9bb9a1b35219003c99689e", "fields": {"nom_de_la_commune": "REIMS", "libell_d_acheminement": "REIMS", "code_postal": "51100", "coordonnees_gps": [49.2518578026, 4.03958522088], "code_commune_insee": "51454"}, "geometry": {"type": "Point", "coordinates": [4.03958522088, 49.2518578026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6105304a5ef047df2570f9d8c5cd1b3abdc40c06", "fields": {"nom_de_la_commune": "REMICOURT", "libell_d_acheminement": "REMICOURT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51456"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f692a8d855af4faf4c2f48b845302ca27affcb22", "fields": {"nom_de_la_commune": "RILLY LA MONTAGNE", "libell_d_acheminement": "RILLY LA MONTAGNE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51461"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67d9b9fb1663a34ab06ccb38418e27ed1d46314", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51464"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560972fe76c92d75cbe6eba4602d1a2c293e0b5a", "fields": {"nom_de_la_commune": "ST GIBRIEN", "libell_d_acheminement": "ST GIBRIEN", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51483"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebad402feb3d41f247087da6894c51caf2500fd4", "fields": {"nom_de_la_commune": "ST JEAN SUR MOIVRE", "libell_d_acheminement": "ST JEAN SUR MOIVRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51490"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646926e75623af73bc18fa57746bbdcbfe489147", "fields": {"nom_de_la_commune": "ST MEMMIE", "libell_d_acheminement": "ST MEMMIE", "code_postal": "51470", "coordonnees_gps": [48.9418441799, 4.42855134186], "code_commune_insee": "51506"}, "geometry": {"type": "Point", "coordinates": [4.42855134186, 48.9418441799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c7c096e8e50adee53cc947fe8a99d7b275d15f", "fields": {"nom_de_la_commune": "ST OUEN DOMPROT", "libell_d_acheminement": "ST OUEN DOMPROT", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51508"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c985905162c2ddd78ba60821aee487d53dce6c1", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51509"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50bc5c85807810eefe6441497a682141d2a335bf", "fields": {"nom_de_la_commune": "ST UTIN", "libell_d_acheminement": "ST UTIN", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51520"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e939d024608dcf4424d2fd2f8c4bb9a138307554", "fields": {"nom_de_la_commune": "SAPIGNICOURT", "libell_d_acheminement": "SAPIGNICOURT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "51522"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec0e6bd98112b3a4920eb3ae3f45a6b86f81486", "fields": {"nom_de_la_commune": "SAUDOY", "libell_d_acheminement": "SAUDOY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51526"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48fdada020bdd2ffbb08c13bc9e3c11b842c90c", "fields": {"nom_de_la_commune": "SOIZY AUX BOIS", "libell_d_acheminement": "SOIZY AUX BOIS", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51542"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aec1991767e794675e4bbd954c6fa7989b6486e", "fields": {"nom_de_la_commune": "SOMME VESLE", "libell_d_acheminement": "SOMME VESLE", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51548"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4670fe09f5d57911feb65eb59229e311b57803d0", "fields": {"nom_de_la_commune": "SOMME YEVRE", "libell_d_acheminement": "SOMME YEVRE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51549"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04ec011492c243215561dc5cee893829d0a946f", "fields": {"nom_de_la_commune": "SOUAIN PERTHES LES HURLUS", "libell_d_acheminement": "SOUAIN PERTHES LES HURLUS", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51553"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34c66e74fff37e7836bf039ceb8c5f04ac65c54", "fields": {"nom_de_la_commune": "SUIZY LE FRANC", "libell_d_acheminement": "SUIZY LE FRANC", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51560"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbba99820cd1166fa0f7da08a415e519c63bcd1", "fields": {"nom_de_la_commune": "THIBIE", "libell_d_acheminement": "THIBIE", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51566"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f936246abd89214def3534a006745f94f6872546", "fields": {"nom_de_la_commune": "VAL DE VESLE", "libell_d_acheminement": "VAL DE VESLE", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51571"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfc6f58dd6efdeaf9e34e380201044992fe8dd8", "fields": {"nom_de_la_commune": "TINQUEUX", "libell_d_acheminement": "TINQUEUX", "code_postal": "51430", "coordonnees_gps": [49.2303011179, 3.98992981852], "code_commune_insee": "51573"}, "geometry": {"type": "Point", "coordinates": [3.98992981852, 49.2303011179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71449e5d0b6561e083900e2a9825509e285df7ae", "fields": {"nom_de_la_commune": "TROIS PUITS", "libell_d_acheminement": "TROIS PUITS", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51584"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4ef79cfa836647d9640b8d77d29e281697200c7", "fields": {"nom_de_la_commune": "UNCHAIR", "libell_d_acheminement": "UNCHAIR", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51586"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c8154311b5a95030bbfee48d72882699e4a55a8", "fields": {"nom_de_la_commune": "VAVRAY LE PETIT", "libell_d_acheminement": "VAVRAY LE PETIT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51602"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d264ef854fece308b30a19a936c1ce5150d88967", "fields": {"nom_de_la_commune": "VERT TOULON", "libell_d_acheminement": "VERT TOULON", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51611"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092388c3a21a266e386dd9114440f1e93a388b92", "fields": {"nom_de_la_commune": "LE VEZIER", "libell_d_acheminement": "LE VEZIER", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51618"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88744051a9ec01feb7a14ac6d81f0b8d5526ea51", "fields": {"nom_de_la_commune": "LE VIEIL DAMPIERRE", "libell_d_acheminement": "LE VIEIL DAMPIERRE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51619"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04ecd38dedf5c190ebb375039b3de63a46ce7ccb", "fields": {"nom_de_la_commune": "VILLE EN TARDENOIS", "libell_d_acheminement": "VILLE EN TARDENOIS", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51624"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba5e2bbbe28b74379f7a705fd4cec41bcae6fe2", "fields": {"nom_de_la_commune": "VILLENEUVE LA LIONNE", "libell_d_acheminement": "VILLENEUVE LA LIONNE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51625"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7962e3212339d1f9d612a217f441970b62025c4e", "fields": {"nom_de_la_commune": "VILLENEUVE RENNEVILLE CHEVIGNY", "libell_d_acheminement": "VILLENEUVE RENNEVILLE CHEVIGNY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51627"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e0909d2c29c6f8a49022cae5943897804a83c0", "fields": {"nom_de_la_commune": "VILLERS AUX NOEUDS", "libell_d_acheminement": "VILLERS AUX NOEUDS", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51631"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f787347b5575edc7ec62804eef4f3549e2fa46fa", "fields": {"nom_de_la_commune": "VILLE SUR TOURBE", "libell_d_acheminement": "VILLE SUR TOURBE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51640"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509217ebb3e05cdd5253ec47a29a74714bf4fcc0", "fields": {"nom_de_la_commune": "VINAY", "libell_d_acheminement": "VINAY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51643"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c818f81162f8aa138fd8d41cd873598726b1f5a", "fields": {"nom_de_la_commune": "VINDEY", "libell_d_acheminement": "VINDEY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51645"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d35c08ac99bd4e4dd8dc1eda55e8e7b860665c", "fields": {"nom_de_la_commune": "RAON L ETAPE", "libell_d_acheminement": "RAON L ETAPE", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88372"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7d86636cd6fafa94ae17b5df0b13a3a46823a1e", "fields": {"nom_de_la_commune": "REMIREMONT", "libell_d_acheminement": "REMIREMONT", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88383"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906b50aa29663bb957691fe5c0741564e342f285", "fields": {"nom_de_la_commune": "RENAUVOID", "libell_d_acheminement": "RENAUVOID", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88388"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b07d47e3ec428d5e23dea81059a8c51d71c06f2", "fields": {"nom_de_la_commune": "ROCOURT", "libell_d_acheminement": "ROCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88392"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657b8796c0123e4466dbbc5ad62a6b2d16c0c1b5", "fields": {"nom_de_la_commune": "ROZEROTTE", "libell_d_acheminement": "ROZEROTTE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88403"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6a3885211e36441b89fc37ac14d5ac279ef6f9", "fields": {"nom_de_la_commune": "RUGNEY", "libell_d_acheminement": "RUGNEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88406"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ae918b47745479b2f9a3a390a4b6db41fc32b1", "fields": {"nom_de_la_commune": "RUPT SUR MOSELLE", "libell_d_acheminement": "RUPT SUR MOSELLE", "code_postal": "88360", "coordonnees_gps": [47.9275982656, 6.67734911799], "code_commune_insee": "88408"}, "geometry": {"type": "Point", "coordinates": [6.67734911799, 47.9275982656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f163d01060373d03971d0542942030ef886a6d38", "fields": {"nom_de_la_commune": "ST BASLEMONT", "libell_d_acheminement": "ST BASLEMONT", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88411"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d7be39d012fd2a8f43d225a58076a2a73badbf", "fields": {"nom_de_la_commune": "ST GENEST", "libell_d_acheminement": "ST GENEST", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88416"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48998462d3dc30cc3b13fbeb483333a800e6d013", "fields": {"nom_de_la_commune": "ST GORGON", "libell_d_acheminement": "ST GORGON", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88417"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f03b7207f9d26e5741355eab005d9404511d5d8", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88418"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236e4900f054cd851e435fa569b22bcd194dd273", "fields": {"nom_de_la_commune": "ST JEAN D ORMONT", "libell_d_acheminement": "ST JEAN D ORMONT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88419"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a234e2a5c2d662209b2b3395f9fadf36d15daab1", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88423"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf9c9acb11fdc81d3be9a771ab624bc5c6f9020", "fields": {"nom_de_la_commune": "ST MAURICE SUR MOSELLE", "libell_d_acheminement": "ST MAURICE SUR MOSELLE", "code_postal": "88560", "coordonnees_gps": [47.8464941122, 6.85473877602], "code_commune_insee": "88426"}, "geometry": {"type": "Point", "coordinates": [6.85473877602, 47.8464941122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "184dc171ac032b8cd5a60d593e3638ceb9dcf41b", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88431"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07001947add6e1621883b4938d23a8111c8afe4", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "88480", "coordonnees_gps": [48.3578241534, 6.83459479111], "code_commune_insee": "88435"}, "geometry": {"type": "Point", "coordinates": [6.83459479111, 48.3578241534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a86733bae4cff8900fc1b3d219015df14b9d6d", "fields": {"nom_de_la_commune": "SARTES", "libell_d_acheminement": "SARTES", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88443"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910f86df6be58d4cb71d713ecebf8cadc31c2e28", "fields": {"nom_de_la_commune": "SAULCY SUR MEURTHE", "libell_d_acheminement": "SAULCY SUR MEURTHE", "code_postal": "88580", "coordonnees_gps": [48.2420514631, 6.9497997825], "code_commune_insee": "88445"}, "geometry": {"type": "Point", "coordinates": [6.9497997825, 48.2420514631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81b154209a918fa9cdb6d5090863e2f66c71796", "fields": {"nom_de_la_commune": "SAULXURES SUR MOSELOTTE", "libell_d_acheminement": "SAULXURES SUR MOSELOTTE", "code_postal": "88290", "coordonnees_gps": [47.9540952189, 6.76680969694], "code_commune_insee": "88447"}, "geometry": {"type": "Point", "coordinates": [6.76680969694, 47.9540952189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7661b627c2154547a245b58226fac9c157dcc2", "fields": {"nom_de_la_commune": "SAUVILLE", "libell_d_acheminement": "SAUVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88448"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e092f1ad8395a026728d2f82fb8188fd1154724", "fields": {"nom_de_la_commune": "SEROCOURT", "libell_d_acheminement": "SEROCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88456"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1601f51ff988c86e5fd0286959d25d7f2bc1614b", "fields": {"nom_de_la_commune": "SIONNE", "libell_d_acheminement": "SIONNE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88457"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f1abf3d847866ac901611db13862317421c0b5", "fields": {"nom_de_la_commune": "LE SYNDICAT", "libell_d_acheminement": "LE SYNDICAT", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88462"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd153e131bb2a471c66b83d0d61f7aabcddcb172", "fields": {"code_postal": "88120", "code_commune_insee": "88462", "libell_d_acheminement": "LE SYNDICAT", "ligne_5": "JULIENRUPT", "nom_de_la_commune": "LE SYNDICAT", "coordonnees_gps": [48.0216912949, 6.74452235991]}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fd023cc5537ea6c150fdf318fcc216009023764", "fields": {"nom_de_la_commune": "LE THILLOT", "libell_d_acheminement": "LE THILLOT", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88468"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c3713946f8c9aa65ef0d3729a98c5e7386fe13", "fields": {"code_postal": "88530", "code_commune_insee": "88470", "libell_d_acheminement": "LE THOLY", "ligne_5": "BOUVACOTE", "nom_de_la_commune": "LE THOLY", "coordonnees_gps": [48.0852406406, 6.73632940481]}, "geometry": {"type": "Point", "coordinates": [6.73632940481, 48.0852406406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29536324842fcc477bebd0dc3f5cf3f536b6141", "fields": {"nom_de_la_commune": "LES THONS", "libell_d_acheminement": "LES THONS", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88471"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88b393d5b4ab35f8d348f4ded8ede610952674d", "fields": {"nom_de_la_commune": "VAGNEY", "libell_d_acheminement": "VAGNEY", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88486"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fa37a0cb5d9e18b39e7d30fd59f2201f454f51", "fields": {"nom_de_la_commune": "VALLEROY AUX SAULES", "libell_d_acheminement": "VALLEROY AUX SAULES", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88489"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed142a8c58561290b192cbc724b07c12b89f0ef2", "fields": {"nom_de_la_commune": "VAUDONCOURT", "libell_d_acheminement": "VAUDONCOURT", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88496"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfa30cb412cb212c8ead3c40f7807927c4dff69", "fields": {"nom_de_la_commune": "VENTRON", "libell_d_acheminement": "VENTRON", "code_postal": "88310", "coordonnees_gps": [47.9567015163, 6.87250847131], "code_commune_insee": "88500"}, "geometry": {"type": "Point", "coordinates": [6.87250847131, 47.9567015163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c387b12ac488fb3facef87c4a5379e73e76cb8c", "fields": {"nom_de_la_commune": "LE VERMONT", "libell_d_acheminement": "LE VERMONT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88501"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44a0d909ed8135b18bf1d1108e84698254cf0a7", "fields": {"nom_de_la_commune": "VICHEREY", "libell_d_acheminement": "VICHEREY", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88504"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119b9a7d3ceef50e80aee3d3f1cd742ee15f8728", "fields": {"nom_de_la_commune": "VIEUX MOULIN", "libell_d_acheminement": "VIEUX MOULIN", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88506"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105d31b6542d27a549d0a5d20f265fce2ffed4e1", "fields": {"nom_de_la_commune": "LA VOIVRE", "libell_d_acheminement": "LA VOIVRE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88519"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee95087f7bbf92bdbeffd7ade5ccc8722c454f9", "fields": {"nom_de_la_commune": "ACCOLAY", "libell_d_acheminement": "ACCOLAY", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89001"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5a2cdd557eb14c121ea3c2163aad1f3e16333c", "fields": {"nom_de_la_commune": "ANDRYES", "libell_d_acheminement": "ANDRYES", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89007"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835166d96f7884a935090f5b5d7164017ebb7393", "fields": {"nom_de_la_commune": "AUXERRE", "libell_d_acheminement": "AUXERRE", "code_postal": "89000", "coordonnees_gps": [47.8006402501, 3.56347649804], "code_commune_insee": "89024"}, "geometry": {"type": "Point", "coordinates": [3.56347649804, 47.8006402501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1842919dbca93bfc8f255e1f5ce31d0030043c", "fields": {"code_postal": "89290", "code_commune_insee": "89024", "libell_d_acheminement": "AUXERRE", "ligne_5": "VAUX", "nom_de_la_commune": "AUXERRE", "coordonnees_gps": [47.7651600621, 3.61733473781]}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0c094b98320ebe3d83cfa98ff50781040ce01b", "fields": {"nom_de_la_commune": "AVALLON", "libell_d_acheminement": "AVALLON", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89025"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "585bdf19d53b630b6f7778daa9105f40f1ef7032", "fields": {"nom_de_la_commune": "BELLECHAUME", "libell_d_acheminement": "BELLECHAUME", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89035"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f34856ff622320cdc1f236c050eff3095691e6", "fields": {"nom_de_la_commune": "BEON", "libell_d_acheminement": "BEON", "code_postal": "89410", "coordonnees_gps": [47.9724194151, 3.31445831227], "code_commune_insee": "89037"}, "geometry": {"type": "Point", "coordinates": [3.31445831227, 47.9724194151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb36ad6d2081efb39eb2502c511cb6d21cf351cb", "fields": {"nom_de_la_commune": "BERU", "libell_d_acheminement": "BERU", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89039"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f50f16c64d15007bb5e2cefe10277f3c0987132", "fields": {"nom_de_la_commune": "BESSY SUR CURE", "libell_d_acheminement": "BESSY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89040"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16744a73f083e56b187d7fea99b0b5516c2e454b", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89051"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b70cdfedc2a7608297fe841b7444858fb9e0b49", "fields": {"nom_de_la_commune": "CENSY", "libell_d_acheminement": "CENSY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89064"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1a9beac4b4c6c702c733303b616d15898cb381", "fields": {"nom_de_la_commune": "CERILLY", "libell_d_acheminement": "CERILLY", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89065"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5461adbed916d9fac309d807f371fa83e1c27a4", "fields": {"nom_de_la_commune": "CHABLIS", "libell_d_acheminement": "CHABLIS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89068"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "467f790374d51a416d557bb69d586eae61281a57", "fields": {"nom_de_la_commune": "CHAMOUX", "libell_d_acheminement": "CHAMOUX", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89071"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8278f695aeaf35bbd0cd083c526c0b0396191388", "fields": {"nom_de_la_commune": "CHAMPIGNY", "libell_d_acheminement": "CHAMPIGNY", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89074"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3726f20194bb680fc02f293d42054ef0f0d405b", "fields": {"nom_de_la_commune": "CHAMVRES", "libell_d_acheminement": "CHAMVRES", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89079"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736e9b6be3ef633836736f4875f58f388f68e83e", "fields": {"nom_de_la_commune": "CHARMOY", "libell_d_acheminement": "CHARMOY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89085"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0925f79b004941c7eef28dfcaa558d10cd6c1017", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "FONTENOUILLES", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a67f0cb2a7f87b4277e09fa407f9c3559d9e452", "fields": {"code_postal": "89350", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "GRANDCHAMP", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.7773444304, 3.09490527015]}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581093a347a382b3e7c2ef6caacc4bf79ead1d55", "fields": {"nom_de_la_commune": "CHASSIGNELLES", "libell_d_acheminement": "CHASSIGNELLES", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89087"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a3327da062ba3110188483402a3067bfd1242f", "fields": {"nom_de_la_commune": "CHASSY", "libell_d_acheminement": "CHASSY", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89088"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8cbdca045d5c0d120c784814fc8a9443e50b205", "fields": {"nom_de_la_commune": "CHEMILLY SUR SEREIN", "libell_d_acheminement": "CHEMILLY SUR SEREIN", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89095"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d3b53d1816e7b828a161fed6ef325720c1f45b", "fields": {"nom_de_la_commune": "CHICHEE", "libell_d_acheminement": "CHICHEE", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89104"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61092466ac55cacbc23833abb3cae606638b0f6", "fields": {"nom_de_la_commune": "CORNANT", "libell_d_acheminement": "CORNANT", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89116"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02dc0bee2defd0ae68d7b1bc8e3a523961964461", "fields": {"nom_de_la_commune": "COULANGES LA VINEUSE", "libell_d_acheminement": "COULANGES LA VINEUSE", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89118"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb6f195ce0894816e5921166f134c17e43ca205", "fields": {"nom_de_la_commune": "CRAIN", "libell_d_acheminement": "CRAIN", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89129"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80073a066f27b9dcebf428976361d80eb90a8fad", "fields": {"nom_de_la_commune": "CRY", "libell_d_acheminement": "CRY", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89132"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c6d0dcf7350c2d1abad57075d9697cf266cd1d6", "fields": {"nom_de_la_commune": "DYE", "libell_d_acheminement": "DYE", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89149"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5975ad1162bc5810cd711c63f7bd520f2941e7", "fields": {"nom_de_la_commune": "ETAULE", "libell_d_acheminement": "ETAULE", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89159"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb66e3e71cb8a2af85649530744cfbd6b821bc18", "fields": {"nom_de_la_commune": "FLACY", "libell_d_acheminement": "FLACY", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89165"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b1e73295f496512928db34e16d2a2588378a09", "fields": {"nom_de_la_commune": "FLEYS", "libell_d_acheminement": "FLEYS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89168"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62045fbe84fd61d388c449723f0d6da63cd95e67", "fields": {"nom_de_la_commune": "FOISSY LES VEZELAY", "libell_d_acheminement": "FOISSY LES VEZELAY", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89170"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4e7602a90d574588bd9788279fe9f0e24ca4e68", "fields": {"nom_de_la_commune": "FOUCHERES", "libell_d_acheminement": "FOUCHERES", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89180"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ee8f3054fd23c35d02c5e93da6bbeab73bea01", "fields": {"nom_de_la_commune": "FOURONNES", "libell_d_acheminement": "FOURONNES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89182"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196b2732280dd4050b2d861cad69347e979c4b8c", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89183"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed937a974dde22d5f8289028d96d9f9b6712dbc", "fields": {"nom_de_la_commune": "GURGY", "libell_d_acheminement": "GURGY", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89198"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c363e5c2d31956ac4ce5039c9d781c38001b113", "fields": {"nom_de_la_commune": "GY L EVEQUE", "libell_d_acheminement": "GY L EVEQUE", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89199"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d98560a6ec4c385e3b596fd62e81ebce1edec30", "fields": {"nom_de_la_commune": "IRANCY", "libell_d_acheminement": "IRANCY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89202"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4486fee0917b13c027a3ac0b5702cece998ad5", "fields": {"nom_de_la_commune": "JOUANCY", "libell_d_acheminement": "JOUANCY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89207"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e1a9be58f9c3107550cd7bcc8e813c9f50383bb", "fields": {"nom_de_la_commune": "JUNAY", "libell_d_acheminement": "JUNAY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89211"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610b1c705520a9c863bbe938d527d67172c02d77", "fields": {"nom_de_la_commune": "LAVAU", "libell_d_acheminement": "LAVAU", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89220"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcbc784964624c6fe3dbe3e248f5372e21df685", "fields": {"nom_de_la_commune": "LEVIS", "libell_d_acheminement": "LEVIS", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89222"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c350c3f1d4f5a2aee3c6b52ad811be7c854244", "fields": {"nom_de_la_commune": "LIGNORELLES", "libell_d_acheminement": "LIGNORELLES", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89226"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53163670dce1d5e87ca176a78dde85d44bf30c40", "fields": {"nom_de_la_commune": "LINDRY", "libell_d_acheminement": "LINDRY", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89228"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f4414a4780e63a2b91bd9063bf3a4cce6428e3", "fields": {"nom_de_la_commune": "LOOZE", "libell_d_acheminement": "LOOZE", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89230"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069a4b7cdc71140a112491525b18d9e2d14b270f", "fields": {"nom_de_la_commune": "MALAY LE PETIT", "libell_d_acheminement": "MALAY LE PETIT", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89240"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbbd64c6cbf9127fcaa5d5371e46c2ad9d7bc11", "fields": {"nom_de_la_commune": "MASSANGIS", "libell_d_acheminement": "MASSANGIS", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89246"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b4817ab953d5cf56d42ed754fdb68667047776", "fields": {"nom_de_la_commune": "MELISEY", "libell_d_acheminement": "MELISEY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89247"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e322f8cf429d0f47144c95536cf00cb0a9ede425", "fields": {"nom_de_la_commune": "MERE", "libell_d_acheminement": "MERE", "code_postal": "89144", "coordonnees_gps": [47.9141574217, 3.77517476311], "code_commune_insee": "89250"}, "geometry": {"type": "Point", "coordinates": [3.77517476311, 47.9141574217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72dded16d23f1abb9e3ac26a23347a77139285ae", "fields": {"nom_de_la_commune": "MEZILLES", "libell_d_acheminement": "MEZILLES", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89254"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b2ac59e53f0b78028758605134fba0af740176", "fields": {"nom_de_la_commune": "MICHERY", "libell_d_acheminement": "MICHERY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89255"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e995c5781949ff76186698f4441282117e96e4", "fields": {"nom_de_la_commune": "MIGE", "libell_d_acheminement": "MIGE", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89256"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0cb57dab311a438b39f1aa38487f81d109d7d30", "fields": {"nom_de_la_commune": "MOLAY", "libell_d_acheminement": "MOLAY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89259"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d62ecfaa52662600e863bbe0072878c0f464ee", "fields": {"nom_de_la_commune": "MOLOSMES", "libell_d_acheminement": "MOLOSMES", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89262"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a181f53c317bd36985176dd6fe43ce7a201d35b6", "fields": {"nom_de_la_commune": "MONETEAU", "libell_d_acheminement": "MONETEAU", "code_postal": "89470", "coordonnees_gps": [47.8490995163, 3.58774369009], "code_commune_insee": "89263"}, "geometry": {"type": "Point", "coordinates": [3.58774369009, 47.8490995163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f6f48065b13196a74b2e308d1bb1bd5b69ec53", "fields": {"code_postal": "89470", "code_commune_insee": "89263", "libell_d_acheminement": "MONETEAU", "ligne_5": "SOUGERES SUR SINOTTE", "nom_de_la_commune": "MONETEAU", "coordonnees_gps": [47.8490995163, 3.58774369009]}, "geometry": {"type": "Point", "coordinates": [3.58774369009, 47.8490995163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150bbeddfe453b64babfc729b894af6e41e06297", "fields": {"nom_de_la_commune": "MOULINS EN TONNERROIS", "libell_d_acheminement": "MOULINS EN TONNERROIS", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89271"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11223c677fbee3e1a24e3fe83bb240f96c95168", "fields": {"nom_de_la_commune": "MOULINS SUR OUANNE", "libell_d_acheminement": "MOULINS SUR OUANNE", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89272"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478ed7acddec816bb078c0ae83aca0b3055e19d1", "fields": {"nom_de_la_commune": "NITRY", "libell_d_acheminement": "NITRY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89277"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff095cb966e6e85a5ed1ac7db321db7ffd399aa", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89279"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebd8c77cd1d18b8b0e3108f522fe1456dffcfb4", "fields": {"nom_de_la_commune": "PASILLY", "libell_d_acheminement": "PASILLY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89290"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348908839e45f670fc4dcdef975fc91b6b9eba7e", "fields": {"nom_de_la_commune": "PERCEY", "libell_d_acheminement": "PERCEY", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89292"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ffd0274ebedf1bab65c7dd13e53d61d2cd6dea", "fields": {"nom_de_la_commune": "PERRIGNY", "libell_d_acheminement": "PERRIGNY", "code_postal": "89000", "coordonnees_gps": [47.8006402501, 3.56347649804], "code_commune_insee": "89295"}, "geometry": {"type": "Point", "coordinates": [3.56347649804, 47.8006402501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cca99e727e6c300166ecfe199a2d1a802b29591", "fields": {"nom_de_la_commune": "PLESSIS ST JEAN", "libell_d_acheminement": "PLESSIS ST JEAN", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89302"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1a349701844c259df168705edb347f47fc1bc6", "fields": {"nom_de_la_commune": "POILLY SUR SEREIN", "libell_d_acheminement": "POILLY SUR SEREIN", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89303"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029281f69c2cd784140af3fbd314e6eb8fe8362b", "fields": {"nom_de_la_commune": "AFFRACOURT", "libell_d_acheminement": "AFFRACOURT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54005"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e29e771fa3a0d1e3e6222c8f27ad51c4d194b9", "fields": {"nom_de_la_commune": "AINGERAY", "libell_d_acheminement": "AINGERAY", "code_postal": "54460", "coordonnees_gps": [48.7483628916, 6.04028548825], "code_commune_insee": "54007"}, "geometry": {"type": "Point", "coordinates": [6.04028548825, 48.7483628916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ceeb41f6cf7d3e3f1f4ddc316f77caab0a5444", "fields": {"nom_de_la_commune": "ALLAMONT", "libell_d_acheminement": "ALLAMONT", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54009"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d29ed0038bb70b1a71304ddcbdb57c4066140d", "fields": {"nom_de_la_commune": "ANCERVILLER", "libell_d_acheminement": "ANCERVILLER", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54014"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94aa3b09755aefea15eeab4c02361ca41a485a24", "fields": {"nom_de_la_commune": "ARNAVILLE", "libell_d_acheminement": "ARNAVILLE", "code_postal": "54530", "coordonnees_gps": [48.9844597069, 5.99102568671], "code_commune_insee": "54022"}, "geometry": {"type": "Point", "coordinates": [5.99102568671, 48.9844597069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d17cd2295aadf839233211d5b97f7a2231d5727", "fields": {"nom_de_la_commune": "ATTON", "libell_d_acheminement": "ATTON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54027"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0821843425b73f6ed861f42e5da8cfdd5eec8bf4", "fields": {"nom_de_la_commune": "AUTREPIERRE", "libell_d_acheminement": "AUTREPIERRE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54030"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ad84b4debdb1d4dc2ae9076618619f9c7266e7", "fields": {"nom_de_la_commune": "AVRICOURT", "libell_d_acheminement": "AVRICOURT", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54035"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76b5f8c1786338254349c27ae67de48cb26e9ba", "fields": {"nom_de_la_commune": "BACCARAT", "libell_d_acheminement": "BACCARAT", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54039"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9578a8b37d5051e5aee1c941c1a52f550fd63d27", "fields": {"nom_de_la_commune": "BAINVILLE SUR MADON", "libell_d_acheminement": "BAINVILLE SUR MADON", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54043"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36915415033b180f09341549148d559565676825", "fields": {"nom_de_la_commune": "BARISEY AU PLAIN", "libell_d_acheminement": "BARISEY AU PLAIN", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54046"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44152aef9ddf48c448801e59673e934dce973c13", "fields": {"nom_de_la_commune": "BATILLY", "libell_d_acheminement": "BATILLY", "code_postal": "54980", "coordonnees_gps": [49.1764673803, 5.96982138413], "code_commune_insee": "54051"}, "geometry": {"type": "Point", "coordinates": [5.96982138413, 49.1764673803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555b950091c20e797b7fa319b7fa8865e10788b9", "fields": {"nom_de_la_commune": "BECHAMPS", "libell_d_acheminement": "BECHAMPS", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54058"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12acd5a16019a0e94e6b481fa26ee2a802e9412", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "LIXIERES", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662443727a5ab80d67b70537e308d7ee377fbdb9", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "SERRIERES", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08479e83935c5bbddb4269141798944a15b24f00", "fields": {"nom_de_la_commune": "BEUVILLERS", "libell_d_acheminement": "BEUVILLERS", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54069"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2c63084a6566b690911948dded832c43c40d14", "fields": {"nom_de_la_commune": "BEZANGE LA GRANDE", "libell_d_acheminement": "BEZANGE LA GRANDE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54071"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cec856c6485fcce2c537e8b4237bb511669d7bd8", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54082"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f66dafb271b365f70df919ed9e86ecd7db9461f", "fields": {"nom_de_la_commune": "BONVILLER", "libell_d_acheminement": "BONVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54083"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d1edcf2eca8a38a52b6398c53a5d51713eb813", "fields": {"nom_de_la_commune": "MONT BONVILLERS", "libell_d_acheminement": "MONT BONVILLERS", "code_postal": "54111", "coordonnees_gps": [49.3263998152, 5.84293563303], "code_commune_insee": "54084"}, "geometry": {"type": "Point", "coordinates": [5.84293563303, 49.3263998152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b26f96d1ba371724948a0db38012b7e080de76", "fields": {"nom_de_la_commune": "BOUVRON", "libell_d_acheminement": "BOUVRON", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54088"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab63bfead6762b69f7ee46fbb72beb17cc5fbfe", "fields": {"code_postal": "54770", "code_commune_insee": "54089", "libell_d_acheminement": "BOUXIERES AUX CHENES", "ligne_5": "MOULINS", "nom_de_la_commune": "BOUXIERES AUX CHENES", "coordonnees_gps": [48.7569187312, 6.27788013157]}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63efe8ba478051f669c0c6eb67cad47035be832d", "fields": {"nom_de_la_commune": "BOUXIERES AUX DAMES", "libell_d_acheminement": "BOUXIERES AUX DAMES", "code_postal": "54136", "coordonnees_gps": [48.7581559072, 6.16412630754], "code_commune_insee": "54090"}, "geometry": {"type": "Point", "coordinates": [6.16412630754, 48.7581559072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b47d261e796b489fae7ac617eecd02c903bcf65", "fields": {"nom_de_la_commune": "BUISSONCOURT", "libell_d_acheminement": "BUISSONCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54104"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a9b023e356daf2dfcba26938c184c1dfa57d03", "fields": {"nom_de_la_commune": "CERVILLE", "libell_d_acheminement": "CERVILLE", "code_postal": "54420", "coordonnees_gps": [48.6910890899, 6.28501495776], "code_commune_insee": "54110"}, "geometry": {"type": "Point", "coordinates": [6.28501495776, 48.6910890899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d711bd9def18ba2909faffa157035fda466273", "fields": {"nom_de_la_commune": "CHAMPEY SUR MOSELLE", "libell_d_acheminement": "CHAMPEY SUR MOSELLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54114"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567a6a92b7222a68be92fb113203b5807b0905bb", "fields": {"nom_de_la_commune": "CHAMPIGNEULLES", "libell_d_acheminement": "CHAMPIGNEULLES", "code_postal": "54250", "coordonnees_gps": [48.7208958614, 6.122323287], "code_commune_insee": "54115"}, "geometry": {"type": "Point", "coordinates": [6.122323287, 48.7208958614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e178115c189bb415e3e1a8c86f48b28db55ccb38", "fields": {"nom_de_la_commune": "CHARENCY VEZIN", "libell_d_acheminement": "CHARENCY VEZIN", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54118"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dc7e8139130bf11f5fb1273d7121bac2041be16", "fields": {"nom_de_la_commune": "CHAREY", "libell_d_acheminement": "CHAREY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54119"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55568e7f19f3686d9a3f41019aea72705985e3ae", "fields": {"nom_de_la_commune": "CHAUDENEY SUR MOSELLE", "libell_d_acheminement": "CHAUDENEY SUR MOSELLE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54122"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94617a0f4c5d4cda3f6a31256a219c58e1a7ea6a", "fields": {"nom_de_la_commune": "CHENEVIERES", "libell_d_acheminement": "CHENEVIERES", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54125"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9ab6f91bc2c312ccc5654a89ee2458c6dc6e52", "fields": {"nom_de_la_commune": "CHENICOURT", "libell_d_acheminement": "CHENICOURT", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54126"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f074906ef8e82dfab92d1c33c98c9c8516171e", "fields": {"nom_de_la_commune": "CHOLOY MENILLOT", "libell_d_acheminement": "CHOLOY MENILLOT", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54128"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706deba9c9cf57c4d5666d83916228f05c076dc6", "fields": {"nom_de_la_commune": "CLAYEURES", "libell_d_acheminement": "CLAYEURES", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54130"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d312a371fb50c8abe081456e7c697e6fd72d935", "fields": {"nom_de_la_commune": "COINCOURT", "libell_d_acheminement": "COINCOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54133"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8640b195fefe58003978c8a13094e5c85010202", "fields": {"code_postal": "54260", "code_commune_insee": "54134", "libell_d_acheminement": "COLMEY", "ligne_5": "FLABEUVILLE", "nom_de_la_commune": "COLMEY", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9dfc3d6fa970f0931867a76890c3e676be1548", "fields": {"nom_de_la_commune": "CONFLANS EN JARNISY", "libell_d_acheminement": "CONFLANS EN JARNISY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54136"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b7021c76630e28388c996adef43f679702d6986", "fields": {"nom_de_la_commune": "CONS LA GRANDVILLE", "libell_d_acheminement": "CONS LA GRANDVILLE", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54137"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca284719d30281bad764e9274ba8eee73d6eca37", "fields": {"nom_de_la_commune": "COSNES ET ROMAIN", "libell_d_acheminement": "COSNES ET ROMAIN", "code_postal": "54400", "coordonnees_gps": [49.5244232599, 5.7294177983], "code_commune_insee": "54138"}, "geometry": {"type": "Point", "coordinates": [5.7294177983, 49.5244232599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2184d438f65ffe31f393ca7ad0f711bb5aba88f", "fields": {"nom_de_la_commune": "CRANTENOY", "libell_d_acheminement": "CRANTENOY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54142"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30abd6188b899c53b5a441b341744b90bb63b038", "fields": {"nom_de_la_commune": "CREVECHAMPS", "libell_d_acheminement": "CREVECHAMPS", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54144"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c799fa9cc9e8364a2967dd4655314e7cada5a5d6", "fields": {"nom_de_la_commune": "CREZILLES", "libell_d_acheminement": "CREZILLES", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54146"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5014989b24eb292d43f9723b4794dc71abfa334", "fields": {"nom_de_la_commune": "DENEUVRE", "libell_d_acheminement": "DENEUVRE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54154"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b33058929a858f4903d8595d8689dba4581719", "fields": {"nom_de_la_commune": "DONCOURT LES LONGUYON", "libell_d_acheminement": "DONCOURT LES LONGUYON", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54172"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd8fb8be0989ef649ef86dac6ec65856531c146", "fields": {"nom_de_la_commune": "EINVILLE AU JARD", "libell_d_acheminement": "EINVILLE AU JARD", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54176"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2954cd1accb9b7319cea0683bc5f691a69124be8", "fields": {"nom_de_la_commune": "EPIEZ SUR CHIERS", "libell_d_acheminement": "EPIEZ SUR CHIERS", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54178"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c9f0bd4b71743a2b74472f20eefc0516007511", "fields": {"nom_de_la_commune": "ERROUVILLE", "libell_d_acheminement": "ERROUVILLE", "code_postal": "54680", "coordonnees_gps": [49.4266992744, 5.91035100074], "code_commune_insee": "54181"}, "geometry": {"type": "Point", "coordinates": [5.91035100074, 49.4266992744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c6168cf18cbb645aae1b40ec5073ddd01553d4", "fields": {"nom_de_la_commune": "EUVEZIN", "libell_d_acheminement": "EUVEZIN", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54187"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991a80d63b2f402563233d4b6ee459900a2775ae", "fields": {"nom_de_la_commune": "FECOCOURT", "libell_d_acheminement": "FECOCOURT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54190"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8042dc2a5da11ee14092131f377468121ad9531", "fields": {"nom_de_la_commune": "FENNEVILLER", "libell_d_acheminement": "FENNEVILLER", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54191"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f2bd5f0039db52eeffe06cd0a4dbd9e55592a4", "fields": {"nom_de_la_commune": "FLAINVAL", "libell_d_acheminement": "FLAINVAL", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54195"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177981e28d420e251ef651ad163c0b0a6b38d134", "fields": {"nom_de_la_commune": "FRAIMBOIS", "libell_d_acheminement": "FRAIMBOIS", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54206"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f929c89a42433be75d66092ad440db9104c8ae53", "fields": {"nom_de_la_commune": "FRANCONVILLE", "libell_d_acheminement": "FRANCONVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54209"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a761d9ba1bf4119d45e25b6435ca36ea88285018", "fields": {"nom_de_la_commune": "FREMENIL", "libell_d_acheminement": "FREMENIL", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54210"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56794117851ebfc3c360b3b2b90c9c27397e8410", "fields": {"nom_de_la_commune": "FRESNOIS LA MONTAGNE", "libell_d_acheminement": "FRESNOIS LA MONTAGNE", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54212"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd68424809b98263bad6e08daba362c14242398", "fields": {"nom_de_la_commune": "FROLOIS", "libell_d_acheminement": "FROLOIS", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54214"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd00bd62b1c7b474e2fa49a2cc09a9792aba2138", "fields": {"nom_de_la_commune": "GRISCOURT", "libell_d_acheminement": "GRISCOURT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54239"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0482066e823153eedd0f7ad943b8b76a7586478", "fields": {"nom_de_la_commune": "HAIGNEVILLE", "libell_d_acheminement": "HAIGNEVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54245"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8043c4b88f24b2eea623ca76573261d1eb5eb7", "fields": {"nom_de_la_commune": "HANNONVILLE SUZEMONT", "libell_d_acheminement": "HANNONVILLE SUZEMONT", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54249"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038e757848385acb428063c0e65ed2d394d8ae94", "fields": {"nom_de_la_commune": "HARAUCOURT", "libell_d_acheminement": "HARAUCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54250"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9429e3560400d6fc409bcb05ae56957d191e1435", "fields": {"code_postal": "54860", "code_commune_insee": "54254", "libell_d_acheminement": "HAUCOURT MOULAINE", "ligne_5": "ST CHARLES", "nom_de_la_commune": "HAUCOURT MOULAINE", "coordonnees_gps": [49.4962809644, 5.80724274639]}, "geometry": {"type": "Point", "coordinates": [5.80724274639, 49.4962809644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8a1e645e25ba78a3b5584622a6509bfb83cf7dd", "fields": {"nom_de_la_commune": "HAUDONVILLE", "libell_d_acheminement": "HAUDONVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54255"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb3bd025ca4bac82eaf32ecc63a0e946f6e348e", "fields": {"nom_de_la_commune": "JARVILLE LA MALGRANGE", "libell_d_acheminement": "JARVILLE LA MALGRANGE", "code_postal": "54140", "coordonnees_gps": [48.6669142212, 6.20534540639], "code_commune_insee": "54274"}, "geometry": {"type": "Point", "coordinates": [6.20534540639, 48.6669142212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b0465b801d6cc8d678df33700e0bc6123b6ecb", "fields": {"nom_de_la_commune": "JAULNY", "libell_d_acheminement": "JAULNY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54275"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490063674a9c9dce20d8f5768826dc651a5d15e0", "fields": {"nom_de_la_commune": "JEANDELAINCOURT", "libell_d_acheminement": "JEANDELAINCOURT", "code_postal": "54114", "coordonnees_gps": [48.846903091, 6.24363375744], "code_commune_insee": "54276"}, "geometry": {"type": "Point", "coordinates": [6.24363375744, 48.846903091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add0b3f7d4504833aef12035c0f906a610e15e2c", "fields": {"nom_de_la_commune": "JOUAVILLE", "libell_d_acheminement": "JOUAVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54283"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3c51cb35fc8f4aac9f38a0304c0a2943aa03a5", "fields": {"nom_de_la_commune": "LANDECOURT", "libell_d_acheminement": "LANDECOURT", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54293"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10bbc0c5f41debe578cafcb03383c827339e03b", "fields": {"nom_de_la_commune": "LANDREMONT", "libell_d_acheminement": "LANDREMONT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54294"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b93e76f930ee6b61a06600b3f6351e22fca931", "fields": {"nom_de_la_commune": "LANEUVEVILLE DERRIERE FOUG", "libell_d_acheminement": "LANEUVEVILLE DERRIERE FOUG", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54298"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9f0480770551bec62233bc7dd013de4ba9f3aa", "fields": {"nom_de_la_commune": "LANEUVEVILLE DEVANT BAYON", "libell_d_acheminement": "LANEUVEVILLE DEVANT BAYON", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54299"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f490dd5d2fa9092a42d57abe1823a01c505a5a5d", "fields": {"nom_de_la_commune": "LAY ST CHRISTOPHE", "libell_d_acheminement": "LAY ST CHRISTOPHE", "code_postal": "54690", "coordonnees_gps": [48.7521802489, 6.20651635247], "code_commune_insee": "54305"}, "geometry": {"type": "Point", "coordinates": [6.20651635247, 48.7521802489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d84fdba1d4f21025cd2fe8088d68decee1215c", "fields": {"nom_de_la_commune": "LEMAINVILLE", "libell_d_acheminement": "LEMAINVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54309"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca2a130ad8563f968870da0041954c729347293", "fields": {"nom_de_la_commune": "LUBEY", "libell_d_acheminement": "LUBEY", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54326"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26331845db0f0328ff483cc9ec023ba4d5d4c9f0", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54336"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827fcb8c2402aa3764ec168a01a8529306ac231c", "fields": {"nom_de_la_commune": "MALZEVILLE", "libell_d_acheminement": "MALZEVILLE", "code_postal": "54220", "coordonnees_gps": [48.7225241745, 6.18950275131], "code_commune_insee": "54339"}, "geometry": {"type": "Point", "coordinates": [6.18950275131, 48.7225241745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1e6e2bf396eaa72ed4e2c6f060f1ddabfec0f3", "fields": {"nom_de_la_commune": "MANONCOURT EN WOEVRE", "libell_d_acheminement": "MANONCOURT EN WOEVRE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54346"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca07aef8ad5bd5dc779d4439649a87b50227add", "fields": {"nom_de_la_commune": "MARBACHE", "libell_d_acheminement": "MARBACHE", "code_postal": "54820", "coordonnees_gps": [48.7898557088, 6.09022066301], "code_commune_insee": "54351"}, "geometry": {"type": "Point", "coordinates": [6.09022066301, 48.7898557088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f3f1d2a62c93aabd01b2781f55b6a3729dc972", "fields": {"nom_de_la_commune": "MAZERULLES", "libell_d_acheminement": "MAZERULLES", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54358"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854e9dcb39d10e3fc8629eea62a1e75a93d325ed", "fields": {"code_postal": "54560", "code_commune_insee": "54363", "libell_d_acheminement": "MERCY LE HAUT", "ligne_5": "BOUDREZY", "nom_de_la_commune": "MERCY LE HAUT", "coordonnees_gps": [49.3750223548, 5.87500468042]}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66231a47febfa52e522ce80b147d7bde648dba78", "fields": {"nom_de_la_commune": "MOINEVILLE", "libell_d_acheminement": "MOINEVILLE", "code_postal": "54580", "coordonnees_gps": [49.1903187118, 5.97291024326], "code_commune_insee": "54371"}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1af2cb71ff6db4321d5cc24e699083dae85334", "fields": {"nom_de_la_commune": "MONTREUX", "libell_d_acheminement": "MONTREUX", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54381"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505c1eaf35a56dc5ad3451965976996b4e360bbb", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "54350", "coordonnees_gps": [49.5466243356, 5.77826351741], "code_commune_insee": "54382"}, "geometry": {"type": "Point", "coordinates": [5.77826351741, 49.5466243356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a464292bd3c7ae45678980a45c6145440686730", "fields": {"nom_de_la_commune": "MOUTROT", "libell_d_acheminement": "MOUTROT", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54392"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe59ee113c5a69d4b56d4d9543621167d8a15688", "fields": {"nom_de_la_commune": "NONHIGNY", "libell_d_acheminement": "NONHIGNY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54401"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d529e8aef153d1d00c3211f29fa2863326b9b7", "fields": {"nom_de_la_commune": "NOVIANT AUX PRES", "libell_d_acheminement": "NOVIANT AUX PRES", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54404"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faaae0a62e1e3e7eed15bc02fd10c329e9e04a37", "fields": {"nom_de_la_commune": "OGNEVILLE", "libell_d_acheminement": "OGNEVILLE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54407"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c342ee0c506156450b197e084f8f3e194236026", "fields": {"nom_de_la_commune": "OTHE", "libell_d_acheminement": "OTHE", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54412"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b69bdf3ab3aab0724f8e0ccc6cb6ca530c8cf3c", "fields": {"nom_de_la_commune": "PAGNY SUR MOSELLE", "libell_d_acheminement": "PAGNY SUR MOSELLE", "code_postal": "54530", "coordonnees_gps": [48.9844597069, 5.99102568671], "code_commune_insee": "54415"}, "geometry": {"type": "Point", "coordinates": [5.99102568671, 48.9844597069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4defd27e2bcab03f5506d147e6969867827bfa2c", "fields": {"nom_de_la_commune": "PARROY", "libell_d_acheminement": "PARROY", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54418"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87eeffc0a229384f6dd02f908dcd417584eddf1d", "fields": {"nom_de_la_commune": "PARUX", "libell_d_acheminement": "PARUX", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54419"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a22c1991a2580c150c1d3722ea446931b3ae9f", "fields": {"nom_de_la_commune": "PIENNES", "libell_d_acheminement": "PIENNES", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54425"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a830aea42ac1b3b009d63059659e51216391b0", "fields": {"nom_de_la_commune": "PRENY", "libell_d_acheminement": "PRENY", "code_postal": "54530", "coordonnees_gps": [48.9844597069, 5.99102568671], "code_commune_insee": "54435"}, "geometry": {"type": "Point", "coordinates": [5.99102568671, 48.9844597069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19667de92151b5626b531bd2275444bc2636c119", "fields": {"nom_de_la_commune": "RECHICOURT LA PETITE", "libell_d_acheminement": "RECHICOURT LA PETITE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54446"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c2bdc8068f3f1129595446613c7be7bd3f3969", "fields": {"nom_de_la_commune": "REHON", "libell_d_acheminement": "REHON", "code_postal": "54430", "coordonnees_gps": [49.4993467832, 5.75753479184], "code_commune_insee": "54451"}, "geometry": {"type": "Point", "coordinates": [5.75753479184, 49.4993467832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86625947f04926736139ca793ca37de245743111", "fields": {"nom_de_la_commune": "REILLON", "libell_d_acheminement": "REILLON", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54452"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbd4bf7d3937db8a2e0cd809efa76607c80696f", "fields": {"nom_de_la_commune": "REMENOVILLE", "libell_d_acheminement": "REMENOVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54455"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df492f6a5d0bcb4607bd3485e207ab4994357ca7", "fields": {"nom_de_la_commune": "ROYAUMEIX", "libell_d_acheminement": "ROYAUMEIX", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54466"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fbbdd0d8c062bb89469c470ce25ff85beacc1a", "fields": {"nom_de_la_commune": "ST BOINGT", "libell_d_acheminement": "ST BOINGT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54471"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca509c4d828c16fe69fcbcaa53edf96d77a17ed6", "fields": {"nom_de_la_commune": "ST JEAN LES LONGUYON", "libell_d_acheminement": "ST JEAN LES LONGUYON", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54476"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bd77686feec79d60040675f747d380852ba29f", "fields": {"code_postal": "54260", "code_commune_insee": "54476", "libell_d_acheminement": "ST JEAN LES LONGUYON", "ligne_5": "HAM LES ST JEAN", "nom_de_la_commune": "ST JEAN LES LONGUYON", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59df75600d8213273d8a3112123dcd9692e5a41c", "fields": {"nom_de_la_commune": "COULOMBY", "libell_d_acheminement": "COULOMBY", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62245"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80565166610b72f2a70041833027382c08157572", "fields": {"nom_de_la_commune": "CREQUY", "libell_d_acheminement": "CREQUY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62257"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48caff23b520906144e70642256b14efb114d374", "fields": {"nom_de_la_commune": "DENIER", "libell_d_acheminement": "DENIER", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62266"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a19ffbbd25ed4ecf78f11d25c055c33556714f4", "fields": {"nom_de_la_commune": "DIEVAL", "libell_d_acheminement": "DIEVAL", "code_postal": "62460", "coordonnees_gps": [50.4531419324, 2.47496250173], "code_commune_insee": "62269"}, "geometry": {"type": "Point", "coordinates": [2.47496250173, 50.4531419324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0a14d0514cf163ddca7dd9d65f18d8e3c2e730", "fields": {"nom_de_la_commune": "DOURIEZ", "libell_d_acheminement": "DOURIEZ", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62275"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c223bac4cbafa4b7e59452ec34e5cceb1d7fb45", "fields": {"nom_de_la_commune": "DOUVRIN", "libell_d_acheminement": "DOUVRIN", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62276"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ff2e70c2c699124169b0c3060d9b3a5303e9be", "fields": {"nom_de_la_commune": "ECHINGHEN", "libell_d_acheminement": "ECHINGHEN", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62281"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1e693845f4950e704ef25a533dc02f8c4acd6f", "fields": {"nom_de_la_commune": "ENGUINEGATTE", "libell_d_acheminement": "ENGUINEGATTE", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62294"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e065e5f238c455e7e03a527ae2386814e68f56f", "fields": {"nom_de_la_commune": "EQUIRRE", "libell_d_acheminement": "EQUIRRE", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62301"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c842769e4fedfef28c1251d47fcce62f0fd665ef", "fields": {"nom_de_la_commune": "ERIN", "libell_d_acheminement": "ERIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62303"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc53842ee7d8725c065001085d52be7088d161b3", "fields": {"nom_de_la_commune": "ESTREE", "libell_d_acheminement": "ESTREE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62312"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720d767caa04362925fe6c85f48da66dea452524", "fields": {"nom_de_la_commune": "ESTREELLES", "libell_d_acheminement": "ESTREELLES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62315"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb65e0e1c80dc80c5617fc03da642ebdb9c9108", "fields": {"nom_de_la_commune": "FAMPOUX", "libell_d_acheminement": "FAMPOUX", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62323"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b6d6ef52d642c8efb1076b6f01285ed47d825e", "fields": {"nom_de_la_commune": "FONTAINE LES BOULANS", "libell_d_acheminement": "FONTAINE LES BOULANS", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62342"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7ef214a5429d6f720da5ce92c47360af6bee0f", "fields": {"nom_de_la_commune": "FONTAINE LES CROISILLES", "libell_d_acheminement": "FONTAINE LES CROISILLES", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62343"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2e1c56e0259b7476d04f43d44466aac9e9a01a", "fields": {"nom_de_la_commune": "FONTAINE L ETALON", "libell_d_acheminement": "FONTAINE L ETALON", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62345"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260a561d7cde4cf577559678d119d44d68d0b218", "fields": {"nom_de_la_commune": "FOUQUEREUIL", "libell_d_acheminement": "FOUQUEREUIL", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62349"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993b55f29883e867082c5987f25c9697dd00b407", "fields": {"nom_de_la_commune": "FRESNES LES MONTAUBAN", "libell_d_acheminement": "FRESNES LES MONTAUBAN", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62355"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "306a26b24dc72e53c46232b3e1c4f20416470782", "fields": {"nom_de_la_commune": "FRESSIN", "libell_d_acheminement": "FRESSIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62359"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c123a8c11a5c6577ec5d4f7f872df1047ce065f8", "fields": {"nom_de_la_commune": "FREVILLERS", "libell_d_acheminement": "FREVILLERS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62362"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c00dac7d75fcc6807db4bb48c28f06f89cf8323", "fields": {"nom_de_la_commune": "GAUCHIN LEGAL", "libell_d_acheminement": "GAUCHIN LEGAL", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62366"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4142e8b4b59a6db2eb1ff7ebcd410707272224", "fields": {"nom_de_la_commune": "GOMIECOURT", "libell_d_acheminement": "GOMIECOURT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62374"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d992cae43715debc3dd0274aa6e0ed4e20848e3e", "fields": {"nom_de_la_commune": "GOSNAY", "libell_d_acheminement": "GOSNAY", "code_postal": "62199", "coordonnees_gps": [50.5082867831, 2.58728737007], "code_commune_insee": "62377"}, "geometry": {"type": "Point", "coordinates": [2.58728737007, 50.5082867831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9c44313edbc75b410cc9e207a34c60c6cc086d", "fields": {"nom_de_la_commune": "GOUY SERVINS", "libell_d_acheminement": "GOUY SERVINS", "code_postal": "62530", "coordonnees_gps": [50.4280976053, 2.64237906213], "code_commune_insee": "62380"}, "geometry": {"type": "Point", "coordinates": [2.64237906213, 50.4280976053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce2b348ca19a3c1643cfcca1776216a96fc7d8d", "fields": {"nom_de_la_commune": "GREVILLERS", "libell_d_acheminement": "GREVILLERS", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62387"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab9ea396d362c670f36cd9032d467c2e9952e605", "fields": {"nom_de_la_commune": "GRIGNY", "libell_d_acheminement": "GRIGNY", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62388"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59aaf5ddad3bdba5431389938ffc307a0c8d366e", "fields": {"nom_de_la_commune": "GRINCOURT LES PAS", "libell_d_acheminement": "GRINCOURT LES PAS", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62389"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd44b66ad1b816b153129d23e85004ba51188e5", "fields": {"nom_de_la_commune": "GUEMAPPE", "libell_d_acheminement": "GUEMAPPE", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62392"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6e62d491c1e096cc76819bcfb0128c4bce7c27", "fields": {"nom_de_la_commune": "GUIGNY", "libell_d_acheminement": "GUIGNY", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62395"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59fe98554cd02b434dcef604eb9262f356fce53", "fields": {"nom_de_la_commune": "GUINECOURT", "libell_d_acheminement": "GUINECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62396"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245d0c09b32f0cc06cb47b941687502b4afe0d43", "fields": {"nom_de_la_commune": "HAILLICOURT", "libell_d_acheminement": "HAILLICOURT", "code_postal": "62940", "coordonnees_gps": [50.4753757752, 2.57841530584], "code_commune_insee": "62400"}, "geometry": {"type": "Point", "coordinates": [2.57841530584, 50.4753757752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23dbac12d6b520fa3eefebcc3db770b294309a19", "fields": {"nom_de_la_commune": "HAPLINCOURT", "libell_d_acheminement": "HAPLINCOURT", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62410"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586de23849ba141059267dc42a4940f76ca091b0", "fields": {"nom_de_la_commune": "HEBUTERNE", "libell_d_acheminement": "HEBUTERNE", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62422"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7856db113f2fe5a025199b34fab2259762706fd", "fields": {"nom_de_la_commune": "HERMIES", "libell_d_acheminement": "HERMIES", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62440"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35a67fd032baf8e7edd5f89770803f1a4fe672f", "fields": {"nom_de_la_commune": "HERNICOURT", "libell_d_acheminement": "HERNICOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62442"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dcf564cb6e4d0bc342109a6017f273db8068e8a", "fields": {"nom_de_la_commune": "HERSIN COUPIGNY", "libell_d_acheminement": "HERSIN COUPIGNY", "code_postal": "62530", "coordonnees_gps": [50.4280976053, 2.64237906213], "code_commune_insee": "62443"}, "geometry": {"type": "Point", "coordinates": [2.64237906213, 50.4280976053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "530a1864d1e4c7d06e6001a2f01ed01ccf590f5e", "fields": {"nom_de_la_commune": "HESDIGNEUL LES BOULOGNE", "libell_d_acheminement": "HESDIGNEUL LES BOULOGNE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62446"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822df5c9ef348260672299948faa4751a262ee7d", "fields": {"nom_de_la_commune": "HESMOND", "libell_d_acheminement": "HESMOND", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62449"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b665627eb3d7c6a466dfeff6b11b0d7243d66b3", "fields": {"nom_de_la_commune": "HOCQUINGHEN", "libell_d_acheminement": "HOCQUINGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62455"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c19e8f60278f446a7291adcc1bb7746c88e2a8", "fields": {"nom_de_la_commune": "HOUDAIN", "libell_d_acheminement": "HOUDAIN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62457"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31cfddbc53590e4485b823d3048cb1495a5d406", "fields": {"nom_de_la_commune": "HUCLIER", "libell_d_acheminement": "HUCLIER", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62462"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e595d0f32b9471515a5bd30ab40a171a0ccaa9", "fields": {"nom_de_la_commune": "HUCQUELIERS", "libell_d_acheminement": "HUCQUELIERS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62463"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4954f01dc621b12014491bd75bb49aebe9d69c9", "fields": {"nom_de_la_commune": "HUMBERT", "libell_d_acheminement": "HUMBERT", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62466"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c430bc34a3814a54f65107c90ea4ddd89268e1e", "fields": {"nom_de_la_commune": "INCHY EN ARTOIS", "libell_d_acheminement": "INCHY EN ARTOIS", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62469"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e0b6727b3c7784559c457b2a32bd15d3c8056f", "fields": {"nom_de_la_commune": "ISBERGUES", "libell_d_acheminement": "ISBERGUES", "code_postal": "62330", "coordonnees_gps": [50.61399538, 2.46439960248], "code_commune_insee": "62473"}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a7242fe25479e61ce03b5f18cd24786ae18a10", "fields": {"nom_de_la_commune": "IZEL LES HAMEAU", "libell_d_acheminement": "IZEL LES HAMEAU", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62477"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1ca2d18ec5ee6b2616c23bbad538680d870ef0", "fields": {"nom_de_la_commune": "LABROYE", "libell_d_acheminement": "LABROYE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62481"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23bb41665c266ace7a03163b9ead870288a14176", "fields": {"nom_de_la_commune": "LAVENTIE", "libell_d_acheminement": "LAVENTIE", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62491"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd778d14b496cc25186c00c566283e1dfaab8bb3", "fields": {"nom_de_la_commune": "LENS", "libell_d_acheminement": "LENS", "code_postal": "62300", "coordonnees_gps": [50.435564897, 2.82028472263], "code_commune_insee": "62498"}, "geometry": {"type": "Point", "coordinates": [2.82028472263, 50.435564897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5556dbca7710eff933f490baff5772729ca1258", "fields": {"nom_de_la_commune": "LEULINGHEM", "libell_d_acheminement": "LEULINGHEM", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62504"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3034d6dcdb17b13e1e41bf1b0e7e25279a525aba", "fields": {"nom_de_la_commune": "LICQUES", "libell_d_acheminement": "LICQUES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62506"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63acebaf964d844fd955aff485e82af35cf4232", "fields": {"nom_de_la_commune": "LIENCOURT", "libell_d_acheminement": "LIENCOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62507"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fd9c9c681543f259b264df43a0956ff7211b9d", "fields": {"nom_de_la_commune": "LIERES", "libell_d_acheminement": "LIERES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62508"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2bfff05395a9350ece5b5ff39b287c11f25d782", "fields": {"nom_de_la_commune": "LIGNY SUR CANCHE", "libell_d_acheminement": "LIGNY SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62513"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c14f1fe71d78b07c6ce400b5962fef60b1250f", "fields": {"nom_de_la_commune": "LIGNY THILLOY", "libell_d_acheminement": "LIGNY THILLOY", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62515"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab175e0bd315ca547a2933b74bc0ce3b7208ba0", "fields": {"nom_de_la_commune": "LOISON SOUS LENS", "libell_d_acheminement": "LOISON SOUS LENS", "code_postal": "62218", "coordonnees_gps": [50.4434633909, 2.85889088604], "code_commune_insee": "62523"}, "geometry": {"type": "Point", "coordinates": [2.85889088604, 50.4434633909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c1ec5cb3d84103eee2d3287be5812895f0e83b", "fields": {"nom_de_la_commune": "LONGVILLIERS", "libell_d_acheminement": "LONGVILLIERS", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62527"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a1dd008b8d163f620a528e138487cac044b67c", "fields": {"nom_de_la_commune": "LUMBRES", "libell_d_acheminement": "LUMBRES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62534"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103d5edaa1a397e3a8fac4cb5978e5e7567fa602", "fields": {"nom_de_la_commune": "MAISNIL", "libell_d_acheminement": "MAISNIL", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62539"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72093e6915d39e6cd710d538132dfe3d6cf6263", "fields": {"nom_de_la_commune": "MARCONNELLE", "libell_d_acheminement": "MARCONNELLE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62550"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40919a2484ddb4409850378c01f7f5609713c7f1", "fields": {"nom_de_la_commune": "MARQUAY", "libell_d_acheminement": "MARQUAY", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62558"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e036dc56d440183a67c4f2aef25883bd9c5339", "fields": {"nom_de_la_commune": "MARQUION", "libell_d_acheminement": "MARQUION", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62559"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce384d8a2d87b46bf6473eee0b548eb400c79a63", "fields": {"nom_de_la_commune": "MARQUISE", "libell_d_acheminement": "MARQUISE", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62560"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb62a90dae34515f17226d8813a6e839a304a7d1", "fields": {"nom_de_la_commune": "MAZINGHEM", "libell_d_acheminement": "MAZINGHEM", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62564"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd2e44d7f87af94a7aa9a2a86f73366ece662d3", "fields": {"nom_de_la_commune": "MENTQUE NORTBECOURT", "libell_d_acheminement": "MENTQUE NORTBECOURT", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62567"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083d5e9241bf10eb39306cd74d66a1288086cfc9", "fields": {"nom_de_la_commune": "MERLIMONT", "libell_d_acheminement": "MERLIMONT", "code_postal": "62155", "coordonnees_gps": [50.4527348288, 1.60774682903], "code_commune_insee": "62571"}, "geometry": {"type": "Point", "coordinates": [1.60774682903, 50.4527348288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2422d66e5fcbdbc69cc386fdc9c4195dce503f43", "fields": {"nom_de_la_commune": "MINGOVAL", "libell_d_acheminement": "MINGOVAL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62574"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb9506aa8a934de329b7c1456ed4f3465a0a42b", "fields": {"nom_de_la_commune": "MONCHEAUX LES FREVENT", "libell_d_acheminement": "MONCHEAUX LES FREVENT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62576"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166ff90d0dd4f798ec53fc0590fd8a86d3dcdcc9", "fields": {"nom_de_la_commune": "MONTIGNY EN GOHELLE", "libell_d_acheminement": "MONTIGNY EN GOHELLE", "code_postal": "62640", "coordonnees_gps": [50.4279708349, 2.92977249287], "code_commune_insee": "62587"}, "geometry": {"type": "Point", "coordinates": [2.92977249287, 50.4279708349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28c9ab290e4d6e24bfe76d3243ba6681c5f85df7", "fields": {"nom_de_la_commune": "MOULLE", "libell_d_acheminement": "MOULLE", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62595"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc796d81eff63cbef513a4fd584ebc6cafbf480", "fields": {"nom_de_la_commune": "NEUVILLE AU CORNET", "libell_d_acheminement": "NEUVILLE AU CORNET", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62607"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd40c021817efc3d0eac52b6f35d2390647651a7", "fields": {"nom_de_la_commune": "NEUVILLE BOURJONVAL", "libell_d_acheminement": "NEUVILLE BOURJONVAL", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62608"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fed89eab24275c961856ed97dbd913998c68ce9", "fields": {"nom_de_la_commune": "NOYELLES LES HUMIERES", "libell_d_acheminement": "NOYELLES LES HUMIERES", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62625"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5e643465c62e054e1598be34fd79b52c22230f", "fields": {"nom_de_la_commune": "NOYELLES SOUS LENS", "libell_d_acheminement": "NOYELLES SOUS LENS", "code_postal": "62221", "coordonnees_gps": [50.4286604241, 2.8758171937], "code_commune_insee": "62628"}, "geometry": {"type": "Point", "coordinates": [2.8758171937, 50.4286604241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aefd6efcac5b3c80ce2707343548ef4f09f4cc2d", "fields": {"nom_de_la_commune": "NOYELLE VION", "libell_d_acheminement": "NOYELLE VION", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62630"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c81be16e390aab14891a58c0ac42bb8bb16d41f", "fields": {"nom_de_la_commune": "OFFEKERQUE", "libell_d_acheminement": "OFFEKERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62634"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe1a0b511479c638b0438f1e88c85cce031d4c12", "fields": {"nom_de_la_commune": "OISY LE VERGER", "libell_d_acheminement": "OISY LE VERGER", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62638"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9289b2dedff06d11670bc6dc4e8a7ba146a430d", "fields": {"nom_de_la_commune": "OPPY", "libell_d_acheminement": "OPPY", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62639"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07e61fd26213d57910c38ce28f4f02e68a1ba73", "fields": {"nom_de_la_commune": "OSTREVILLE", "libell_d_acheminement": "OSTREVILLE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62641"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cd14a40c3ec5de6fd841ee1be02552c708ec44", "fields": {"nom_de_la_commune": "OYE PLAGE", "libell_d_acheminement": "OYE PLAGE", "code_postal": "62215", "coordonnees_gps": [50.9814914166, 2.03942162279], "code_commune_insee": "62645"}, "geometry": {"type": "Point", "coordinates": [2.03942162279, 50.9814914166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac286d6d0696549bd4f17b00ee521075edd16c3d", "fields": {"nom_de_la_commune": "LE PARCQ", "libell_d_acheminement": "LE PARCQ", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62647"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5418b2dff7888c5a06bec09c10440f378ca155bf", "fields": {"nom_de_la_commune": "PERNES LES BOULOGNE", "libell_d_acheminement": "PERNES LES BOULOGNE", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62653"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3592bb38aee78ad785755912c9934255b5a55a4", "fields": {"nom_de_la_commune": "BOUIN PLUMOISON", "libell_d_acheminement": "BOUIN PLUMOISON", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62661"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b9767c775234ece3e9d353f73398a2f97454e5", "fields": {"nom_de_la_commune": "POMMIER", "libell_d_acheminement": "POMMIER", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62664"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82940eab7a603dc6a48de529cbc0e81784dbf20f", "fields": {"nom_de_la_commune": "PREURES", "libell_d_acheminement": "PREURES", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62670"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be76fb71f611c218a3a678ceb51904855a3bc04e", "fields": {"nom_de_la_commune": "QUELMES", "libell_d_acheminement": "QUELMES", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62674"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b45ae67e7446fbd3738de1d9ba6d7180c772fe4", "fields": {"nom_de_la_commune": "QUESTRECQUES", "libell_d_acheminement": "QUESTRECQUES", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62679"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9dfa2c8bb3a650b2bd1468274a999127467bb4", "fields": {"nom_de_la_commune": "QUILEN", "libell_d_acheminement": "QUILEN", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62682"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc089c22ceb4128468b4380b468f9d15c957816", "fields": {"code_postal": "62390", "code_commune_insee": "62683", "libell_d_acheminement": "QUOEUX HAUT MAINIL", "ligne_5": "HAUT MAINIL", "nom_de_la_commune": "QUOEUX HAUT MAINIL", "coordonnees_gps": [50.2560013525, 2.12580845781]}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610131d1e763925fbd099da7c618a8183a9ae78f", "fields": {"nom_de_la_commune": "RANSART", "libell_d_acheminement": "RANSART", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62689"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63569adcbbcf280aab430ab2e36e7c72ce8896a4", "fields": {"code_postal": "62129", "code_commune_insee": "62691", "libell_d_acheminement": "ST AUGUSTIN", "ligne_5": "CLARQUES", "nom_de_la_commune": "ST AUGUSTIN", "coordonnees_gps": [50.6463145648, 2.25326814344]}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e4f158689a57ad83d40d52ec8e3a08b6b56436", "fields": {"code_postal": "62150", "code_commune_insee": "62693", "libell_d_acheminement": "REBREUVE RANCHICOURT", "ligne_5": "RANCHICOURT", "nom_de_la_commune": "REBREUVE RANCHICOURT", "coordonnees_gps": [50.4256106344, 2.54741516512]}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf18fe11bcacc67cfff8be7c611006d6149e22f", "fields": {"nom_de_la_commune": "RIVIERE", "libell_d_acheminement": "RIVIERE", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62712"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ddff8cea81e79c6ba6bcf45992e64c3a806700e", "fields": {"nom_de_la_commune": "ROMBLY", "libell_d_acheminement": "ROMBLY", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62720"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99324308bb738ffae80b037b637b0c2ea3fbffe5", "fields": {"nom_de_la_commune": "ROQUETOIRE", "libell_d_acheminement": "ROQUETOIRE", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62721"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627ec3f8ac6b6fa7372152cac4a1868e04a712c8", "fields": {"nom_de_la_commune": "ROYON", "libell_d_acheminement": "ROYON", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62725"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd5503c4fb2d0b44f2cf65572ec65f8265633b7", "fields": {"nom_de_la_commune": "SAILLY AU BOIS", "libell_d_acheminement": "SAILLY AU BOIS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62733"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9eaaa1b5b84da64decbd775aa4b52db50af1cb", "fields": {"nom_de_la_commune": "SAINS EN GOHELLE", "libell_d_acheminement": "SAINS EN GOHELLE", "code_postal": "62114", "coordonnees_gps": [50.450880407, 2.68380342094], "code_commune_insee": "62737"}, "geometry": {"type": "Point", "coordinates": [2.68380342094, 50.450880407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa93141808318f9c4b31ca66f6f12abd5e378cf", "fields": {"nom_de_la_commune": "SAINS LES FRESSIN", "libell_d_acheminement": "SAINS LES FRESSIN", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62738"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6bc4d14d35679763dea2c820c68c9f13a7ba6a", "fields": {"nom_de_la_commune": "SAINS LES PERNES", "libell_d_acheminement": "SAINS LES PERNES", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62740"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17109576ccb6c82cc2c3b605069d764474f11a9", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30247"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd161db04187010797408ad23fa6f05900dc726", "fields": {"nom_de_la_commune": "ST DEZERY", "libell_d_acheminement": "ST DEZERY", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30248"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b89c82bd87cdc543317543691322b7ef5da6c94", "fields": {"nom_de_la_commune": "ST HILAIRE D OZILHAN", "libell_d_acheminement": "ST HILAIRE D OZILHAN", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30260"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dec2318bcd1368e1656edb7be18878f0f96c7ba", "fields": {"nom_de_la_commune": "ST LAURENT DE CARNOLS", "libell_d_acheminement": "ST LAURENT DE CARNOLS", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30277"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df89b176c2a8517c8165498b6127f708c137b38", "fields": {"nom_de_la_commune": "ST LAURENT LE MINIER", "libell_d_acheminement": "ST LAURENT LE MINIER", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30280"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95367b9203da4b0b820ca9a1b115e817584601f0", "fields": {"nom_de_la_commune": "ST MARCEL DE CAREIRET", "libell_d_acheminement": "ST MARCEL DE CAREIRET", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30282"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b71d7a3cd123ba2f6a0e64f1d7855f1c4dae10", "fields": {"nom_de_la_commune": "ST NAZAIRE DES GARDIES", "libell_d_acheminement": "ST NAZAIRE DES GARDIES", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30289"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6a4794180c6ed21d6f0d1f7045ba4d15accbe6", "fields": {"nom_de_la_commune": "ST SIFFRET", "libell_d_acheminement": "ST SIFFRET", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30299"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a68184b10c2494736df900a1d440989994c66d", "fields": {"nom_de_la_commune": "SALAZAC", "libell_d_acheminement": "SALAZAC", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30304"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f42c6be5d9b842b51ade327cfea172af33997e4", "fields": {"nom_de_la_commune": "SANILHAC SAGRIES", "libell_d_acheminement": "SANILHAC SAGRIES", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30308"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e120070f64782ce1a85340d41a91faab2c6445c", "fields": {"nom_de_la_commune": "SAUZET", "libell_d_acheminement": "SAUZET", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30313"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f291bad65ac683c7baf292ed4aa749467bcba3", "fields": {"nom_de_la_commune": "SAZE", "libell_d_acheminement": "SAZE", "code_postal": "30650", "coordonnees_gps": [43.9716290587, 4.68530597674], "code_commune_insee": "30315"}, "geometry": {"type": "Point", "coordinates": [4.68530597674, 43.9716290587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c8d4e57eb9c87076a80afb4598ef7821fc3201", "fields": {"nom_de_la_commune": "THOIRAS", "libell_d_acheminement": "THOIRAS", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30329"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe644cb1ea06129159dbe8a9d033c6197f79a2f", "fields": {"nom_de_la_commune": "UZES", "libell_d_acheminement": "UZES", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30334"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1324f7da09d0df0325519380894fa01a93c60e86", "fields": {"nom_de_la_commune": "VALLABREGUES", "libell_d_acheminement": "VALLABREGUES", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30336"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0acb7b135a771ef6f0587f79c83e67779aefe06", "fields": {"nom_de_la_commune": "VALLERARGUES", "libell_d_acheminement": "VALLERARGUES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30338"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0fb29273f2268e9b281ff90b8278f5167bdff6", "fields": {"nom_de_la_commune": "VALLIGUIERES", "libell_d_acheminement": "VALLIGUIERES", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30340"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c726e3b03facb2274c0c905bd51ed2e72d28c0f", "fields": {"code_postal": "30600", "code_commune_insee": "30341", "libell_d_acheminement": "VAUVERT", "ligne_5": "SYLVEREAL", "nom_de_la_commune": "VAUVERT", "coordonnees_gps": [43.6360200976, 4.3019597877]}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abc6cdffd0b094cd40d78f7f30dcdd0c103edd8", "fields": {"nom_de_la_commune": "VERFEUIL", "libell_d_acheminement": "VERFEUIL", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30343"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c6ccec9c736900423b9b3795bb076d362bddf3", "fields": {"nom_de_la_commune": "RODILHAN", "libell_d_acheminement": "RODILHAN", "code_postal": "30230", "coordonnees_gps": [43.8071223757, 4.43456661825], "code_commune_insee": "30356"}, "geometry": {"type": "Point", "coordinates": [4.43456661825, 43.8071223757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30bbab1a6ed7ef780b97680933e5107f4ee1befc", "fields": {"nom_de_la_commune": "ARGUENOS", "libell_d_acheminement": "ARGUENOS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31014"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f268ca6975afed7eb0bfe5fadee39a9cdb5fb5c", "fields": {"nom_de_la_commune": "ARTIGUE", "libell_d_acheminement": "ARTIGUE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31019"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3149568d529fdac14e582363d73c437df8f38a", "fields": {"nom_de_la_commune": "ASPET", "libell_d_acheminement": "ASPET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31020"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14259c60dc2b5ef7be8028d739742e9360890208", "fields": {"nom_de_la_commune": "AURIBAIL", "libell_d_acheminement": "AURIBAIL", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31027"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1269d55626340afa2fd42b97754abf79af739c4f", "fields": {"nom_de_la_commune": "AVIGNONET LAURAGAIS", "libell_d_acheminement": "AVIGNONET LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31037"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04e092bf22cc486d74fa590089d414dca4ae8e8", "fields": {"nom_de_la_commune": "BALESTA", "libell_d_acheminement": "BALESTA", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31043"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e31c5bb0e13b53bba131024ece55f77d246a10d", "fields": {"nom_de_la_commune": "BAZUS", "libell_d_acheminement": "BAZUS", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31049"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0984a288fd12107ac3c34f1ee0b1608a1dc672d5", "fields": {"nom_de_la_commune": "BELESTA EN LAURAGAIS", "libell_d_acheminement": "BELESTA EN LAURAGAIS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31060"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6471565809898269cc8a6f38825b8d5a0e2e572", "fields": {"nom_de_la_commune": "BENQUE DESSOUS ET DESSUS", "libell_d_acheminement": "BENQUE DESSOUS ET DESSUS", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31064"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc42702bbd95a31df06f330c23d8cc39a04c9136", "fields": {"nom_de_la_commune": "BEZINS GARRAUX", "libell_d_acheminement": "BEZINS GARRAUX", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31067"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fa4d6cbebcda8aa15c29aeda34c4747a6c1ab9", "fields": {"nom_de_la_commune": "BLAJAN", "libell_d_acheminement": "BLAJAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31070"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b344a7c907df0fc733e31681b60195f712a26346", "fields": {"nom_de_la_commune": "BOISSEDE", "libell_d_acheminement": "BOISSEDE", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31072"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b953e3c2713b221e179e123dca09290a6d8c6d", "fields": {"nom_de_la_commune": "BOULOGNE SUR GESSE", "libell_d_acheminement": "BOULOGNE SUR GESSE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31080"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cfda079c7e8074a0e4f04ffed943fadaeb84e9", "fields": {"code_postal": "31160", "code_commune_insee": "31085", "libell_d_acheminement": "BOUTX", "ligne_5": "COULEDOUX", "nom_de_la_commune": "BOUTX", "coordonnees_gps": [42.9888223575, 0.812886566983]}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfedf54a82ce5966dca7c84ea100e4687413121e", "fields": {"nom_de_la_commune": "CADOURS", "libell_d_acheminement": "CADOURS", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31098"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360d7d1796b76a4b0429965c74b2adaa89f1b009", "fields": {"nom_de_la_commune": "CARAGOUDES", "libell_d_acheminement": "CARAGOUDES", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31105"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914a953dc6c426ea33dcef8f122f0571af5c756e", "fields": {"nom_de_la_commune": "CASSAGNABERE TOURNAS", "libell_d_acheminement": "CASSAGNABERE TOURNAS", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31109"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba9011c48ccec545f30da4a5a66f9280b64d79a", "fields": {"nom_de_la_commune": "CASSAGNE", "libell_d_acheminement": "CASSAGNE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31110"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b9ece0d2fa0f9301a923b2b9afb131a2169739", "fields": {"nom_de_la_commune": "CASTANET TOLOSAN", "libell_d_acheminement": "CASTANET TOLOSAN", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31113"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631bfbed71642afa73eb470e3bf5fd967a7e18e9", "fields": {"nom_de_la_commune": "CASTELNAU PICAMPEAU", "libell_d_acheminement": "CASTELNAU PICAMPEAU", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31119"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b66170cd37f827a703c78d4dfe342312a54fbf5", "fields": {"nom_de_la_commune": "CATHERVIELLE", "libell_d_acheminement": "CATHERVIELLE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31125"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43bf75a60e3eac36cef8921a85b1e4b2ae9d95e", "fields": {"nom_de_la_commune": "CAZAUNOUS", "libell_d_acheminement": "CAZAUNOUS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31131"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feadf7f97b8518115a9471f8aa8e5afbbb344728", "fields": {"nom_de_la_commune": "CAZEAUX DE LARBOUST", "libell_d_acheminement": "CAZEAUX DE LARBOUST", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31133"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5264928386e4afba914a317267c02dc8be03b6", "fields": {"nom_de_la_commune": "CAZENEUVE MONTAUT", "libell_d_acheminement": "CAZENEUVE MONTAUT", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31134"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f9296e91b7d60480d39cf6e0906f768534d434", "fields": {"code_postal": "31440", "code_commune_insee": "31144", "libell_d_acheminement": "CIERP GAUD", "ligne_5": "GAUD", "nom_de_la_commune": "CIERP GAUD", "coordonnees_gps": [42.895421056, 0.722774837437]}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da2358b32e7ce2e10991ea5ce3324ee659df15e", "fields": {"nom_de_la_commune": "CIRES", "libell_d_acheminement": "CIRES", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31146"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08395565bf4047f868f8dd8aaca4067db93869e5", "fields": {"nom_de_la_commune": "COUEILLES", "libell_d_acheminement": "COUEILLES", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31152"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc176621d91d506737273fff8e2cb9b5a21d0836", "fields": {"nom_de_la_commune": "COURET", "libell_d_acheminement": "COURET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31155"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b71a64e7f4231aecb03d5e93d456fd76fbe6a6", "fields": {"nom_de_la_commune": "CUGURON", "libell_d_acheminement": "CUGURON", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31158"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e326f83046840f7ef5699ed86a93e4e4600a6a", "fields": {"nom_de_la_commune": "ESPARRON", "libell_d_acheminement": "ESPARRON", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31172"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e37d4daa1107da6fc86bfdac6ea44ad6390f5ad0", "fields": {"nom_de_la_commune": "LE FAGET", "libell_d_acheminement": "LE FAGET", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31179"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2445516bba4f1b812601d552ca19af89d32bbe", "fields": {"nom_de_la_commune": "FOLCARDE", "libell_d_acheminement": "FOLCARDE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31185"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1633c240f501fe7893c17c37556cab61d11bcaa6", "fields": {"nom_de_la_commune": "FONSORBES", "libell_d_acheminement": "FONSORBES", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31187"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3483f3eddbadaf63fc73a89f1550cb277fcbf592", "fields": {"nom_de_la_commune": "FOURQUEVAUX", "libell_d_acheminement": "FOURQUEVAUX", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31192"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "011d432f9cf99dbd9d7456c9704ba41a0c98978f", "fields": {"nom_de_la_commune": "FRONTIGNAN DE COMMINGES", "libell_d_acheminement": "FRONTIGNAN DE COMMINGES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31200"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57613d8d259e0e20e80d56872bc8b53d10cd063a", "fields": {"nom_de_la_commune": "GANTIES", "libell_d_acheminement": "GANTIES", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31208"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb47f22a95e0f5cda1adc40e3b0d2c913879afc", "fields": {"nom_de_la_commune": "GEMIL", "libell_d_acheminement": "GEMIL", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31216"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c68366f2e90563673684d6dce5e05400d4dd157", "fields": {"nom_de_la_commune": "GENOS", "libell_d_acheminement": "GENOS", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31217"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a214a1350bbc7982f0e61a6c41d33c2f0904a67", "fields": {"nom_de_la_commune": "GOUAUX DE LARBOUST", "libell_d_acheminement": "GOUAUX DE LARBOUST", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31221"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f97ecdc06c994c95a3461ee3b3379f613212a0", "fields": {"nom_de_la_commune": "GRATENS", "libell_d_acheminement": "GRATENS", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31229"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65394bd93877dee57c913b542a4da5ca37f77797", "fields": {"nom_de_la_commune": "JURVIELLE", "libell_d_acheminement": "JURVIELLE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31242"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2d4d2d8e9e1f839139b6d1dbb6ad6aea8f73e6", "fields": {"nom_de_la_commune": "LABASTIDETTE", "libell_d_acheminement": "LABASTIDETTE", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31253"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41348eebcd48571aee491c0d7c01a59eddc5b52", "fields": {"nom_de_la_commune": "LABEGE", "libell_d_acheminement": "LABEGE", "code_postal": "31670", "coordonnees_gps": [43.5391711847, 1.52136663289], "code_commune_insee": "31254"}, "geometry": {"type": "Point", "coordinates": [1.52136663289, 43.5391711847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43c6fa0e8ffaea90842b378ffe931b096a488db9", "fields": {"nom_de_la_commune": "LACROIX FALGARDE", "libell_d_acheminement": "LACROIX FALGARDE", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31259"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c26e6ffffecbb3a5933980c4e01fe9545605fe", "fields": {"nom_de_la_commune": "LAMASQUERE", "libell_d_acheminement": "LAMASQUERE", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31269"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57e10fab0ce664ef6985471b9a757971b6828ad", "fields": {"nom_de_la_commune": "LATRAPE", "libell_d_acheminement": "LATRAPE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31280"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39c3d3bda25d2ea5357aef98659b13ecc794a62", "fields": {"nom_de_la_commune": "LAVALETTE", "libell_d_acheminement": "LAVALETTE", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31285"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ad9cf40ed2fbdb7494963238ceeba1e36309a2", "fields": {"nom_de_la_commune": "LAVELANET DE COMMINGES", "libell_d_acheminement": "LAVELANET DE COMMINGES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31286"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47956cdfe2fae2a808bc01dc92fadee66074144e", "fields": {"nom_de_la_commune": "LAVERNOSE LACASSE", "libell_d_acheminement": "LAVERNOSE LACASSE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31287"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f48f00f13947777d8f1bff749e4198410d283ec2", "fields": {"nom_de_la_commune": "LECUSSAN", "libell_d_acheminement": "LECUSSAN", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31289"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f826f8a531f0128b590b1630b3760f55c421899", "fields": {"nom_de_la_commune": "LESCUNS", "libell_d_acheminement": "LESCUNS", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31292"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492259abb463ea9bc6fd7d6e6d2d91ebb934aa89", "fields": {"nom_de_la_commune": "LHERM", "libell_d_acheminement": "LHERM", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31299"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10335b7217d1d604795cda0437c2d7291169d285", "fields": {"nom_de_la_commune": "LONGAGES", "libell_d_acheminement": "LONGAGES", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31303"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639c4941ad4636c39c8250080b980034e1c12eea", "fields": {"nom_de_la_commune": "LOURDE", "libell_d_acheminement": "LOURDE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31306"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2bb78e8647447c82607a2596abfcbca3520479a", "fields": {"nom_de_la_commune": "LUNAX", "libell_d_acheminement": "LUNAX", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31307"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507519565a0c6b48988b475e78ef03b3bebe79af", "fields": {"nom_de_la_commune": "LUSCAN", "libell_d_acheminement": "LUSCAN", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31308"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da69f800add334316fad260110765fb5f533ae25", "fields": {"nom_de_la_commune": "LA MAGDELAINE SUR TARN", "libell_d_acheminement": "LA MAGDELAINE SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31311"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ed9ba78b131a11f7de883f318cdb53447cf7cb", "fields": {"nom_de_la_commune": "MAILHOLAS", "libell_d_acheminement": "MAILHOLAS", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31312"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3ca0aac469b9b8a7b9f9459bb39065610a5a05", "fields": {"nom_de_la_commune": "MARIGNAC", "libell_d_acheminement": "MARIGNAC", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31316"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7e86e16f6ab288c7dbd5c05c574e1b8430fbb1", "fields": {"nom_de_la_commune": "MARTRES DE RIVIERE", "libell_d_acheminement": "MARTRES DE RIVIERE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31323"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a10467015c249d608cbf6c58b010e560c39dbd", "fields": {"nom_de_la_commune": "MAURAN", "libell_d_acheminement": "MAURAN", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31327"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7c0ac69bca0f53abab71e64aaef87feb21d908", "fields": {"nom_de_la_commune": "MAUREVILLE", "libell_d_acheminement": "MAUREVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31331"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b5555cb9b2414ed3eb76017a4398db96174a05", "fields": {"nom_de_la_commune": "MAUVAISIN", "libell_d_acheminement": "MAUVAISIN", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31332"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06df6ed2d8763d0c606cd5dfef03268a9264e2f", "fields": {"nom_de_la_commune": "MAYREGNE", "libell_d_acheminement": "MAYREGNE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31335"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d57176acdcc1b4ced230c8e22937308094b9c2", "fields": {"nom_de_la_commune": "MAZERES SUR SALAT", "libell_d_acheminement": "MAZERES SUR SALAT", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31336"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65663d41e6019058505a21572781b4314e31b23", "fields": {"nom_de_la_commune": "MERVILLE", "libell_d_acheminement": "MERVILLE", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31341"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc0918605d0526c6d45b119f772a34e3929912d", "fields": {"nom_de_la_commune": "MILHAS", "libell_d_acheminement": "MILHAS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31342"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd743a73aa64544db0faaab912b61a59992622f", "fields": {"nom_de_la_commune": "MIRAMONT DE COMMINGES", "libell_d_acheminement": "MIRAMONT DE COMMINGES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31344"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c637f8ac1e31343c5a1055696239fe6fec9167c1", "fields": {"nom_de_la_commune": "MONDILHAN", "libell_d_acheminement": "MONDILHAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31350"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5f20fc9dd4a6b18866abbaa6558c1648d43b3f", "fields": {"nom_de_la_commune": "MONDOUZIL", "libell_d_acheminement": "MONDOUZIL", "code_postal": "31850", "coordonnees_gps": [43.6433615869, 1.54999438189], "code_commune_insee": "31352"}, "geometry": {"type": "Point", "coordinates": [1.54999438189, 43.6433615869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6d0018274bac6c253914a1e9dd77f55c9b886b", "fields": {"nom_de_la_commune": "MONES", "libell_d_acheminement": "MONES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31353"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375df3488dbd85853d6c5d014de7e2a5ef69a4d3", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31361"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27663bcfac9c8e7d27638840be09a242fc2fc7a3", "fields": {"nom_de_la_commune": "MONT DE GALIE", "libell_d_acheminement": "MONT DE GALIE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31369"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cea444b32b7c52e9baa2b8aee850b1c9bc46ec", "fields": {"nom_de_la_commune": "MONTREJEAU", "libell_d_acheminement": "MONTREJEAU", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31390"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03171cc4e38622dad26b8630d59d924f7d160d75", "fields": {"nom_de_la_commune": "MONTSAUNES", "libell_d_acheminement": "MONTSAUNES", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31391"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951d988070da56c1f2d35d307ed7691f6aad9517", "fields": {"nom_de_la_commune": "NOE", "libell_d_acheminement": "NOE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31399"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad0b9f696ccb5b4a79a74d083b85b18c7af394ad", "fields": {"nom_de_la_commune": "ORE", "libell_d_acheminement": "ORE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31405"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738565bde862f77340a7cc81584ee7e9808f368b", "fields": {"nom_de_la_commune": "PALAMINY", "libell_d_acheminement": "PALAMINY", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31406"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d26d32a8e4c1a379a0c5c6f10b5af0525e281e5", "fields": {"nom_de_la_commune": "PAULHAC", "libell_d_acheminement": "PAULHAC", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31407"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03d54a2fd27ae3be74e7ee2b2c6588d9b6eb760", "fields": {"nom_de_la_commune": "PECHBONNIEU", "libell_d_acheminement": "PECHBONNIEU", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31410"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd031e09e1125fb5be0fa595ac108432a59aca73", "fields": {"nom_de_la_commune": "VOUILLERS", "libell_d_acheminement": "VOUILLERS", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51654"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9fac3c8688d13fdda330165b16b98f10d3b940", "fields": {"nom_de_la_commune": "AMBONVILLE", "libell_d_acheminement": "AMBONVILLE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52007"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e27bcc55ce52c87b5dc54d64ecc8e6aa1e7c778", "fields": {"nom_de_la_commune": "ANDELOT BLANCHEVILLE", "libell_d_acheminement": "ANDELOT BLANCHEVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52008"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7c14fae42a77f30594990fac0375c3c895b7d3", "fields": {"nom_de_la_commune": "ANNEVILLE LA PRAIRIE", "libell_d_acheminement": "ANNEVILLE LA PRAIRIE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52011"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5668eed796679850bec57c368e1d25eb9a401a63", "fields": {"nom_de_la_commune": "ARBOT", "libell_d_acheminement": "ARBOT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52016"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23268cb0f945eeaf0830b39adfdb9a2dd27fa9fd", "fields": {"nom_de_la_commune": "AUBERIVE", "libell_d_acheminement": "AUBERIVE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52023"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251f44e9feeea72704fee57c0f4ebb518d5111f5", "fields": {"nom_de_la_commune": "AUTIGNY LE PETIT", "libell_d_acheminement": "AUTIGNY LE PETIT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52030"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ebcafa56a7cb9f69916e567616e0ce3dfead40", "fields": {"nom_de_la_commune": "BAISSEY", "libell_d_acheminement": "BAISSEY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52035"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edfa25eff001869b3faacbfd57a7fc545732301c", "fields": {"nom_de_la_commune": "BAY SUR AUBE", "libell_d_acheminement": "BAY SUR AUBE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52040"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f3286e1d3487ddaddc18c4d4eb0a1dd547e03b", "fields": {"nom_de_la_commune": "BETTANCOURT LA FERREE", "libell_d_acheminement": "BETTANCOURT LA FERREE", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52045"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1484e96cc9881360800ad738045d7f4d58a305c8", "fields": {"nom_de_la_commune": "BIESLES", "libell_d_acheminement": "BIESLES", "code_postal": "52340", "coordonnees_gps": [48.1142571752, 5.32025976914], "code_commune_insee": "52050"}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344d1dd1f6758b6fc621d7914bdb16479bf9eaaa", "fields": {"nom_de_la_commune": "BIZE", "libell_d_acheminement": "BIZE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52051"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f16252fa18b50b2ffdb0e40174dab1e561fd82", "fields": {"nom_de_la_commune": "BRACHAY", "libell_d_acheminement": "BRACHAY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52066"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2d40543a8cfcb9f8a8fb4053565e481b925962", "fields": {"nom_de_la_commune": "BRAINVILLE SUR MEUSE", "libell_d_acheminement": "BRAINVILLE SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52067"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105f9b347b64481aaf579f01d7d1b4fcb141b6e6", "fields": {"nom_de_la_commune": "BRENNES", "libell_d_acheminement": "BRENNES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52070"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc0a9e18f99edd76603764407a504fbff0403bec", "fields": {"code_postal": "52240", "code_commune_insee": "52074", "libell_d_acheminement": "BREUVANNES EN BASSIGNY", "ligne_5": "MEUVY", "nom_de_la_commune": "BREUVANNES EN BASSIGNY", "coordonnees_gps": [48.0703177579, 5.52769658592]}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ba6742326359864b0ec1e66ecb00b9ef1972273", "fields": {"code_postal": "52500", "code_commune_insee": "52083", "libell_d_acheminement": "CHAMPSEVRAINE", "ligne_5": "CORGIRNON", "nom_de_la_commune": "CHAMPSEVRAINE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a123605e66652acfe5bd9f10db4305b8138e61", "fields": {"code_postal": "52220", "code_commune_insee": "52088", "libell_d_acheminement": "CEFFONDS", "ligne_5": "SAUVAGE MAGNY", "nom_de_la_commune": "CEFFONDS", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb32f53ebd04bbf3b255eada3a6e55df2895ac8e", "fields": {"nom_de_la_commune": "CHALANCEY", "libell_d_acheminement": "CHALANCEY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52092"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332297fd4f42772f4b79769363e979c77021dc05", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "CHALMESSIN", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c085a58d9ee2b968dc3a5c89a5dc3aae8bc1c4fc", "fields": {"nom_de_la_commune": "CHAMPIGNY SOUS VARENNES", "libell_d_acheminement": "CHAMPIGNY SOUS VARENNES", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52103"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15f759af5f1d778ff11f1082d8679d48b942610f", "fields": {"nom_de_la_commune": "CHANGEY", "libell_d_acheminement": "CHANGEY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52105"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0de2bdfbac2809b68e2bebd6f63ea68d2d405fb", "fields": {"code_postal": "52120", "code_commune_insee": "52114", "libell_d_acheminement": "CHATEAUVILLAIN", "ligne_5": "ESSEY LES PONTS", "nom_de_la_commune": "CHATEAUVILLAIN", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79eb274da622fd54461b0fc30601e9a53721390e", "fields": {"code_postal": "52300", "code_commune_insee": "52118", "libell_d_acheminement": "CHATONRUPT SOMMERMONT", "ligne_5": "SOMMERMONT", "nom_de_la_commune": "CHATONRUPT SOMMERMONT", "coordonnees_gps": [48.4374713855, 5.14251151909]}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5fd1f0c9469d585ea6c75b0987effea11d4bb0f", "fields": {"code_postal": "52170", "code_commune_insee": "52123", "libell_d_acheminement": "CHEVILLON", "ligne_5": "BREUIL SUR MARNE", "nom_de_la_commune": "CHEVILLON", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d02c412f26b0b8b6ae96c6575dcfe2d1d1d106d", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "ARGENTOLLES", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c0b35bd731035d9061ac61f7b617b3a581a1593", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "BIERNES", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f37e492648c232a2b7aed101fd611c89e2e8ca3", "fields": {"nom_de_la_commune": "COUR L EVEQUE", "libell_d_acheminement": "COUR L EVEQUE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52151"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ea5130ade6f645a5d93f23cf2d50ee62fda222", "fields": {"nom_de_la_commune": "CULMONT", "libell_d_acheminement": "CULMONT", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52155"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d926149ee8df3ec3fbd63fb3c68769dae49c530", "fields": {"nom_de_la_commune": "CURMONT", "libell_d_acheminement": "CURMONT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52157"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9d81992dec770c95cc14b5e2b37775d650068a", "fields": {"nom_de_la_commune": "DAILLANCOURT", "libell_d_acheminement": "DAILLANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52160"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe11e5d3d313a5e0d39ecb35ff3446013b983cf9", "fields": {"nom_de_la_commune": "DAMMARTIN SUR MEUSE", "libell_d_acheminement": "DAMMARTIN SUR MEUSE", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52162"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c50411695e8f999daf058ccdebbd34ae37f024", "fields": {"nom_de_la_commune": "DANCEVOIR", "libell_d_acheminement": "DANCEVOIR", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52165"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639d56ac973d38b716db3b907532f5f514ade12a", "fields": {"nom_de_la_commune": "DONJEUX", "libell_d_acheminement": "DONJEUX", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52175"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311003c6b278dc80109983ed072a5791fb668b1e", "fields": {"code_postal": "52110", "code_commune_insee": "52178", "libell_d_acheminement": "DOULEVANT LE CHATEAU", "ligne_5": "VILLIERS AUX CHENES", "nom_de_la_commune": "DOULEVANT LE CHATEAU", "coordonnees_gps": [48.3635578917, 4.93134168199]}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0160f9a757c5a9844bfa69a232cfbbed4c3b4bb", "fields": {"nom_de_la_commune": "ECOT LA COMBE", "libell_d_acheminement": "ECOT LA COMBE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52183"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8cf9fd930d564a56976e346c762ab04b036edc", "fields": {"code_postal": "52230", "code_commune_insee": "52187", "libell_d_acheminement": "EPIZON", "ligne_5": "BETTONCOURT LE HAUT", "nom_de_la_commune": "EPIZON", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1359c4acf8e2c77d95889e83cd1fc395837dd92b", "fields": {"nom_de_la_commune": "FRONVILLE", "libell_d_acheminement": "FRONVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52212"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4fe31d1f3c8416ba1f271815d802161826ddb6", "fields": {"nom_de_la_commune": "GERMAINVILLIERS", "libell_d_acheminement": "GERMAINVILLIERS", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52217"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7afc4f4b572ab636f9a87fcfe99a0e16312bcb8", "fields": {"nom_de_la_commune": "GILLAUME", "libell_d_acheminement": "GILLAUME", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52222"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b329d81aea5d1709a1204355a7e5d6fcfca4791", "fields": {"nom_de_la_commune": "GRAFFIGNY CHEMIN", "libell_d_acheminement": "GRAFFIGNY CHEMIN", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52227"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32c3f6d89ece181d4f7a114f38e61008ada33a0", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52228"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39445e1f3de0b3da1a0d6c7f847d683cde1a5fa2", "fields": {"nom_de_la_commune": "HEUILLEY LE GRAND", "libell_d_acheminement": "HEUILLEY LE GRAND", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52240"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d56d4298d64f49760c9ac30bb1fa6ced990d14a", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "HORTES", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a4b351bda32b27d829c8919d237159f8ec9954", "fields": {"code_postal": "52200", "code_commune_insee": "52246", "libell_d_acheminement": "HUMES JORQUENAY", "ligne_5": "JORQUENAY", "nom_de_la_commune": "HUMES JORQUENAY", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bbf4143ae0eb41df3d7a913cb7558fcb6d3dd8", "fields": {"nom_de_la_commune": "LAFAUCHE", "libell_d_acheminement": "LAFAUCHE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52256"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d30f3afde53915d3af07b5083dd700f191d5f1", "fields": {"nom_de_la_commune": "BAYARD SUR MARNE", "libell_d_acheminement": "BAYARD SUR MARNE", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52265"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76132fe48e49c745df1ba4b1449eef5e00938bce", "fields": {"nom_de_la_commune": "LANEUVILLE AU PONT", "libell_d_acheminement": "LANEUVILLE AU PONT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52267"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe82c04444afb01da7474535b962cfd1e0084aa", "fields": {"nom_de_la_commune": "LANTY SUR AUBE", "libell_d_acheminement": "LANTY SUR AUBE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52272"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f45f4abea4ce570d0809551d8a5a144f1a46a09", "fields": {"nom_de_la_commune": "LAVERNOY", "libell_d_acheminement": "LAVERNOY", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52275"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab6dbe382b8e8fc77f29982d63baf93c46a173c4", "fields": {"nom_de_la_commune": "LEFFONDS", "libell_d_acheminement": "LEFFONDS", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52282"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117d69beab9d2da73f95cab6a146f963c4c0d8b4", "fields": {"nom_de_la_commune": "LONGCHAMP", "libell_d_acheminement": "LONGCHAMP", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52291"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891b725e43195bc22b7fc2fc1145a4de067b0a6d", "fields": {"nom_de_la_commune": "MAISONCELLES", "libell_d_acheminement": "MAISONCELLES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52301"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81912e220f75e5f3698eb73bef55b5afb737fa4", "fields": {"nom_de_la_commune": "MANDRES LA COTE", "libell_d_acheminement": "MANDRES LA COTE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52305"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650c1e408f69993b05ffdfbd3688aa1c560e0e08", "fields": {"nom_de_la_commune": "MARANVILLE", "libell_d_acheminement": "MARANVILLE", "code_postal": "52370", "coordonnees_gps": [48.1346812321, 4.86216753048], "code_commune_insee": "52308"}, "geometry": {"type": "Point", "coordinates": [4.86216753048, 48.1346812321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bedceb08afed08798a1c4750261be2bbd0360c", "fields": {"nom_de_la_commune": "MARBEVILLE", "libell_d_acheminement": "MARBEVILLE", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52310"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32501ca6143fd3bb3cfa8755ac515b4c41917ff6", "fields": {"nom_de_la_commune": "MARCILLY EN BASSIGNY", "libell_d_acheminement": "MARCILLY EN BASSIGNY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52311"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f3a7829a2705ad055e58d2a5aca0b2c5184fe7", "fields": {"nom_de_la_commune": "MARNAY SUR MARNE", "libell_d_acheminement": "MARNAY SUR MARNE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52315"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bdb3a348e8585bebe151376c892a83ef1633457", "fields": {"nom_de_la_commune": "MATHONS", "libell_d_acheminement": "MATHONS", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52316"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abebff74db3e3f7a017b90c9d6562c16aad52d20", "fields": {"nom_de_la_commune": "MILLIERES", "libell_d_acheminement": "MILLIERES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52325"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba13799cf31a80a1bfc3bde0438d3bfce515942c", "fields": {"nom_de_la_commune": "MONTHERIES", "libell_d_acheminement": "MONTHERIES", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52330"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cf910ba5d5887bf17120b653fc61836e2b9dc8", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "MAULAIN", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb86af16ba2f5b538a27361ab063f21e2bc4644", "fields": {"nom_de_la_commune": "MONTREUIL SUR THONNANCE", "libell_d_acheminement": "MONTREUIL SUR THONNANCE", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52337"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ddcd59e5bf7a6074d7a2675028ae0f1580f9bc", "fields": {"nom_de_la_commune": "NEUILLY L EVEQUE", "libell_d_acheminement": "NEUILLY L EVEQUE", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52348"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101251067bba56e19222e47bf4c4fd558c6e5ba6", "fields": {"nom_de_la_commune": "NIJON", "libell_d_acheminement": "NIJON", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52351"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0467d74480b52de839529548950ae6d6fd7afd", "fields": {"nom_de_la_commune": "NINVILLE", "libell_d_acheminement": "NINVILLE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52352"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a7cc196f1d369e70a46daba03cabd33a3506ae", "fields": {"nom_de_la_commune": "OCCEY", "libell_d_acheminement": "OCCEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52360"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf89072a9e67dc5c045f7b541e393b4b4a7fa20f", "fields": {"nom_de_la_commune": "ORBIGNY AU VAL", "libell_d_acheminement": "ORBIGNY AU VAL", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52363"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc4cc0774f4a04a03dfe08f1fde1aaadcf96fc8", "fields": {"nom_de_la_commune": "OSNE LE VAL", "libell_d_acheminement": "OSNE LE VAL", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52370"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3393aeb7dfe36eb73971adef2128a17f69f99d57", "fields": {"nom_de_la_commune": "LE PAILLY", "libell_d_acheminement": "LE PAILLY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52374"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa29d52aafc18a278cc285aba7fbd1accb85d3af", "fields": {"code_postal": "52500", "code_commune_insee": "52388", "libell_d_acheminement": "PIERREMONT SUR AMANCE", "ligne_5": "MONTESSON", "nom_de_la_commune": "PIERREMONT SUR AMANCE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35d1c33172a93dae2c4bc4a89c677dc3052c8b1", "fields": {"code_postal": "52500", "code_commune_insee": "52388", "libell_d_acheminement": "PIERREMONT SUR AMANCE", "ligne_5": "PIERREFAITES", "nom_de_la_commune": "PIERREMONT SUR AMANCE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca574a0b49487b0aeee88ca0853d4769ce6586e7", "fields": {"nom_de_la_commune": "PLESNOY", "libell_d_acheminement": "PLESNOY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52392"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fced512622b92318f9a1fa813b1eb173eb3e922", "fields": {"nom_de_la_commune": "POISEUL", "libell_d_acheminement": "POISEUL", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52397"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b90a50ef008888a07d5884cbdff1276af70522", "fields": {"nom_de_la_commune": "POULANGY", "libell_d_acheminement": "POULANGY", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52401"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e094e5c6dc3ed1718bd34e87c4abf5fa40b1716f", "fields": {"nom_de_la_commune": "RACHECOURT SUR MARNE", "libell_d_acheminement": "RACHECOURT SUR MARNE", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52414"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848084efc0e55ece0e4010cf26fd337ee7e0148d", "fields": {"nom_de_la_commune": "RANGECOURT", "libell_d_acheminement": "RANGECOURT", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52416"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5316b4148b350bafdbf092c45433c2308bcd2641", "fields": {"code_postal": "52330", "code_commune_insee": "52426", "libell_d_acheminement": "RIZAUCOURT BUCHEY", "ligne_5": "BUCHEY", "nom_de_la_commune": "RIZAUCOURT BUCHEY", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ad5b84b53227336814275a483f214122b8cc76", "fields": {"nom_de_la_commune": "ROLAMPONT", "libell_d_acheminement": "ROLAMPONT", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52432"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528188a4b07855a3828b0a125231936b86f02fd7", "fields": {"code_postal": "52260", "code_commune_insee": "52432", "libell_d_acheminement": "ROLAMPONT", "ligne_5": "TRONCHOY", "nom_de_la_commune": "ROLAMPONT", "coordonnees_gps": [47.9429449859, 5.2580157459]}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f3f2c08f4e887909cedfb796e6df28e6fea674", "fields": {"nom_de_la_commune": "ST DIZIER", "libell_d_acheminement": "ST DIZIER", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52448"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5462afd6de6bd0c9aa7c614e15b0f2064c35d686", "fields": {"code_postal": "52210", "code_commune_insee": "52450", "libell_d_acheminement": "ST LOUP SUR AUJON", "ligne_5": "COURCELLES SUR AUJON", "nom_de_la_commune": "ST LOUP SUR AUJON", "coordonnees_gps": [47.9325249173, 5.04140809229]}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a50e8dcce27a11c53b44b97917c94f672f6ab5", "fields": {"code_postal": "52210", "code_commune_insee": "52450", "libell_d_acheminement": "ST LOUP SUR AUJON", "ligne_5": "ERISEUL", "nom_de_la_commune": "ST LOUP SUR AUJON", "coordonnees_gps": [47.9325249173, 5.04140809229]}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc44edcb8b58759953b7e1bf82911eed0619a43b", "fields": {"nom_de_la_commune": "ST URBAIN MACONCOURT", "libell_d_acheminement": "ST URBAIN MACONCOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52456"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf100cb14450e7a6ea40197d8d5ec88f9f099d9", "fields": {"nom_de_la_commune": "SERQUEUX", "libell_d_acheminement": "SERQUEUX", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52470"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32f092c4b9e08c62e5885528ed125e689d1a079e", "fields": {"nom_de_la_commune": "SILVAROUVRES", "libell_d_acheminement": "SILVAROUVRES", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52474"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c533cc7006dea9e644b2da97664b0143a4ad5c3", "fields": {"nom_de_la_commune": "SOMMEVOIRE", "libell_d_acheminement": "SOMMEVOIRE", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52479"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dfc85027bc7f25b130aeb8b7832d599fe64aa86", "fields": {"nom_de_la_commune": "SONCOURT SUR MARNE", "libell_d_acheminement": "SONCOURT SUR MARNE", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52480"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0b2407f24532bbccf864521e535dab4d149b42", "fields": {"nom_de_la_commune": "THONNANCE LES JOINVILLE", "libell_d_acheminement": "THONNANCE LES JOINVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52490"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc2b7802240240cd7381b264c3406cb18893f1c", "fields": {"code_postal": "52230", "code_commune_insee": "52491", "libell_d_acheminement": "THONNANCE LES MOULINS", "ligne_5": "BROUTHIERES", "nom_de_la_commune": "THONNANCE LES MOULINS", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5331c427d7ebc1781b8298e7cade21dff208e74f", "fields": {"nom_de_la_commune": "VARENNES SUR AMANCE", "libell_d_acheminement": "VARENNES SUR AMANCE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52504"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c2ed5a565a71420e6dbb471865f10ab03acdab", "fields": {"nom_de_la_commune": "VAUX SUR BLAISE", "libell_d_acheminement": "VAUX SUR BLAISE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52510"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fd4bc8cf8c3013bee8e795f2e1226541109dff", "fields": {"nom_de_la_commune": "VERBIESLES", "libell_d_acheminement": "VERBIESLES", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52514"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6583686d891f4f4f482dee6d826b8686fadc02cd", "fields": {"nom_de_la_commune": "VERSEILLES LE HAUT", "libell_d_acheminement": "VERSEILLES LE HAUT", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52516"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214861b58e5f4a35719f28b833c0132a922e39ae", "fields": {"nom_de_la_commune": "VESAIGNES SUR MARNE", "libell_d_acheminement": "VESAIGNES SUR MARNE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52518"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8129a603b5526b65ec91d096d9283838170f5e10", "fields": {"nom_de_la_commune": "VIEVILLE", "libell_d_acheminement": "VIEVILLE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52522"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9380516b37a56f7835ea1fa06d5e5ccb2471fda", "fields": {"code_postal": "52600", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "HEUILLEY COTTON", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18fab5b5afff652c9940992df94228a580d9f3c4", "fields": {"nom_de_la_commune": "VILLIERS LES APREY", "libell_d_acheminement": "VILLIERS LES APREY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52536"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1566613a959528c8663b6c3544544d91cd57de7", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53019"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea17eda667f73025bfee4df1ff87ad516438decc", "fields": {"nom_de_la_commune": "LA BAZOGE MONTPINCON", "libell_d_acheminement": "LA BAZOGE MONTPINCON", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53021"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd22668641184913857aec700a8ceff2bd53eb87", "fields": {"nom_de_la_commune": "LA POSTOLLE", "libell_d_acheminement": "LA POSTOLLE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89310"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd30196d08f708be0637eb00bbfb471e9e6ef8a5", "fields": {"nom_de_la_commune": "POURRAIN", "libell_d_acheminement": "POURRAIN", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89311"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86e1d6c00ac79cc50338704bc7edabde5d70755", "fields": {"code_postal": "89110", "code_commune_insee": "89334", "libell_d_acheminement": "LE VAL D OCRE", "ligne_5": "ST AUBIN CHATEAU NEUF", "nom_de_la_commune": "LE VAL D OCRE", "coordonnees_gps": [47.8527025116, 3.31027533122]}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b9625e42d00fcfeeef596c9365602589528086b", "fields": {"code_postal": "89110", "code_commune_insee": "89334", "libell_d_acheminement": "LE VAL D OCRE", "ligne_5": "ST MARTIN SUR OCRE", "nom_de_la_commune": "LE VAL D OCRE", "coordonnees_gps": [47.8527025116, 3.31027533122]}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfd85ade7a59b572c946915363a8256b734b73d", "fields": {"nom_de_la_commune": "ST AUBIN SUR YONNE", "libell_d_acheminement": "ST AUBIN SUR YONNE", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89335"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4eed62d0897fa17cc143a18c8424cd5ea13d342", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89339"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326ca0c01e97c0ecaf3cda3e5bbf3652a2bd8796", "fields": {"code_postal": "89600", "code_commune_insee": "89345", "libell_d_acheminement": "ST FLORENTIN", "ligne_5": "AVROLLES", "nom_de_la_commune": "ST FLORENTIN", "coordonnees_gps": [47.9775250716, 3.71821754522]}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1bda0216e5ac9bb988a137aa03c0e75395cfff0", "fields": {"nom_de_la_commune": "ST GEORGES SUR BAULCHE", "libell_d_acheminement": "ST GEORGES SUR BAULCHE", "code_postal": "89000", "coordonnees_gps": [47.8006402501, 3.56347649804], "code_commune_insee": "89346"}, "geometry": {"type": "Point", "coordinates": [3.56347649804, 47.8006402501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019152126731bc05a88db089339c92a967b7e4a0", "fields": {"nom_de_la_commune": "ST MARTIN D ORDON", "libell_d_acheminement": "ST MARTIN D ORDON", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89353"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d37f41a0eb67336d46454749309261f2eef5a3", "fields": {"nom_de_la_commune": "ST PRIVE", "libell_d_acheminement": "ST PRIVE", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89365"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30634f886958d10f914de9bf1f2379f7a2c267db", "fields": {"nom_de_la_commune": "ST VALERIEN", "libell_d_acheminement": "ST VALERIEN", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89370"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb3cf0b15bc4324e6f8ed9650e4d24ebcaa1708", "fields": {"nom_de_la_commune": "SCEAUX", "libell_d_acheminement": "SCEAUX", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89381"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8aaea0c27c696899d056d5086908467c57510fc", "fields": {"nom_de_la_commune": "SEPEAUX ST ROMAIN", "libell_d_acheminement": "SEPEAUX ST ROMAIN", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89388"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbeba8aeb77ee04be946d3015550217e7631ceb", "fields": {"nom_de_la_commune": "SERRIGNY", "libell_d_acheminement": "SERRIGNY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89393"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f1f595060ce420d4ecf9fbfbf1f34a389cdc7b6", "fields": {"nom_de_la_commune": "SERY", "libell_d_acheminement": "SERY", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89394"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d9f4f4e65bff382c42108174fcdbcabced5fd2", "fields": {"nom_de_la_commune": "THAROISEAU", "libell_d_acheminement": "THAROISEAU", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89409"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a87a8cfbca18fbb64f70280511c8b4320feaca", "fields": {"code_postal": "89320", "code_commune_insee": "89411", "libell_d_acheminement": "LES VALLEES DE LA VANNE", "ligne_5": "THEIL SUR VANNE", "nom_de_la_commune": "LES VALLEES DE LA VANNE", "coordonnees_gps": [48.1363744746, 3.52794249897]}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffbeec51b3e054ba6c6903cdd70b78c6049745f", "fields": {"nom_de_la_commune": "THIZY", "libell_d_acheminement": "THIZY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89412"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e2ab41c7c8a932ad2efed67146da273ba1e28e", "fields": {"nom_de_la_commune": "THOREY", "libell_d_acheminement": "THOREY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89413"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e48ab4e1c64c8a6ce1c80c2e38daf7c5480a798", "fields": {"nom_de_la_commune": "VAULT DE LUGNY", "libell_d_acheminement": "VAULT DE LUGNY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89433"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5d73dc6861f3da1a9e241f684f7616e30eee25", "fields": {"nom_de_la_commune": "VAUMORT", "libell_d_acheminement": "VAUMORT", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89434"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad50e9615e86b19c3b6abdbd58fa3ada512fc6c", "fields": {"nom_de_la_commune": "VERLIN", "libell_d_acheminement": "VERLIN", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89440"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a30e127f52a8f619f1d81771cdbd1e27ce7be5", "fields": {"nom_de_la_commune": "VILLENAVOTTE", "libell_d_acheminement": "VILLENAVOTTE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89458"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa62e0b21f60aed7b386cbc834e5ba8b8575b9e", "fields": {"nom_de_la_commune": "VILLENEUVE ST SALVES", "libell_d_acheminement": "VILLENEUVE ST SALVES", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89463"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600339c1a3d4de97c0a5def2d79405cd52f968dd", "fields": {"nom_de_la_commune": "PERCENEIGE", "libell_d_acheminement": "PERCENEIGE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89469"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0828885e79ce038c2667d4a246449ff35456f0", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "COURCEAUX", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32c42a34792c719e1de9b1f7a4f50f94a95bfa4", "fields": {"nom_de_la_commune": "VILLIERS LES HAUTS", "libell_d_acheminement": "VILLIERS LES HAUTS", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89470"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137bba1179f57a0c15796e4fa88282f32123f1bc", "fields": {"code_postal": "89130", "code_commune_insee": "89472", "libell_d_acheminement": "VILLIERS ST BENOIT", "ligne_5": "LA VILLOTTE", "nom_de_la_commune": "VILLIERS ST BENOIT", "coordonnees_gps": [47.7204896398, 3.24989314971]}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7767e3ee8da2b46685b0f2edc19aa3e1bb19cad4", "fields": {"nom_de_la_commune": "ANDELNANS", "libell_d_acheminement": "ANDELNANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90001"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e689fc54b13682bcde3d5b4c79ee3393678ce522", "fields": {"nom_de_la_commune": "AUXELLES BAS", "libell_d_acheminement": "AUXELLES BAS", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90005"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed94afdf0709df11fe370ccc26d3ba45e467a17e", "fields": {"nom_de_la_commune": "BEAUCOURT", "libell_d_acheminement": "BEAUCOURT", "code_postal": "90500", "coordonnees_gps": [47.4797366638, 6.92587332829], "code_commune_insee": "90009"}, "geometry": {"type": "Point", "coordinates": [6.92587332829, 47.4797366638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a090d49249a9b420c3fffde457dd0469017c11c7", "fields": {"nom_de_la_commune": "BELFORT", "libell_d_acheminement": "BELFORT", "code_postal": "90000", "coordonnees_gps": [47.6462035629, 6.84586873125], "code_commune_insee": "90010"}, "geometry": {"type": "Point", "coordinates": [6.84586873125, 47.6462035629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632b817206b4088c9b8221eaccbd483045e04457", "fields": {"nom_de_la_commune": "BOURG SOUS CHATELET", "libell_d_acheminement": "BOURG SOUS CHATELET", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90016"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccf2cc91d2d866e7a724faa20580b2bb443eb01", "fields": {"nom_de_la_commune": "BOUROGNE", "libell_d_acheminement": "BOUROGNE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90017"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889174d4a8dddd51cbe01812b3eb401cf4d5bacf", "fields": {"nom_de_la_commune": "BRETAGNE", "libell_d_acheminement": "BRETAGNE", "code_postal": "90130", "coordonnees_gps": [47.605567769, 6.99078617872], "code_commune_insee": "90019"}, "geometry": {"type": "Point", "coordinates": [6.99078617872, 47.605567769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4357b31db6c7e3669b0fc7126ee864dd7f48fd26", "fields": {"nom_de_la_commune": "CHAVANNES LES GRANDS", "libell_d_acheminement": "CHAVANNES LES GRANDS", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90025"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c02df25dc8096f2c61990fa75a7ced5c0f3c60b", "fields": {"nom_de_la_commune": "DORANS", "libell_d_acheminement": "DORANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90035"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008f04dbebaaa5cb56ceacde850e50842708c6df", "fields": {"nom_de_la_commune": "EGUENIGUE", "libell_d_acheminement": "EGUENIGUE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90036"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9069b75df48fbe0696322cd21ba18e77880d4dc0", "fields": {"nom_de_la_commune": "ETUEFFONT", "libell_d_acheminement": "ETUEFFONT", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90041"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73972d2cbc31c1a5492212452acf7d3d890b2d63", "fields": {"nom_de_la_commune": "FONTAINE", "libell_d_acheminement": "FONTAINE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90047"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e0de018c1c86bb1cd22e7cfa41532db460fa06", "fields": {"nom_de_la_commune": "FOUSSEMAGNE", "libell_d_acheminement": "FOUSSEMAGNE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90049"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6405000bc1a5c52ca20ac8a526d4d1e382e2cf94", "fields": {"nom_de_la_commune": "GRANDVILLARS", "libell_d_acheminement": "GRANDVILLARS", "code_postal": "90600", "coordonnees_gps": [47.5384307783, 6.97020602923], "code_commune_insee": "90053"}, "geometry": {"type": "Point", "coordinates": [6.97020602923, 47.5384307783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbfafabe262aa6a52fa29987bba80f5bb434a059", "fields": {"nom_de_la_commune": "GROSMAGNY", "libell_d_acheminement": "GROSMAGNY", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90054"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216123920a4937284d9d32f5b625716d7f7b9914", "fields": {"nom_de_la_commune": "LACOLLONGE", "libell_d_acheminement": "LACOLLONGE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90059"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46eba2a0e04dc081abd09a7879836a8e48d54885", "fields": {"nom_de_la_commune": "LEPUIX NEUF", "libell_d_acheminement": "LEPUIX NEUF", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90064"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2070d0e188754e0c6086fec0ebf1d2032948314", "fields": {"nom_de_la_commune": "MONTBOUTON", "libell_d_acheminement": "MONTBOUTON", "code_postal": "90500", "coordonnees_gps": [47.4797366638, 6.92587332829], "code_commune_insee": "90070"}, "geometry": {"type": "Point", "coordinates": [6.92587332829, 47.4797366638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5b55d52b8e9e6132c4a12a27a3013f577601eb", "fields": {"nom_de_la_commune": "PEROUSE", "libell_d_acheminement": "PEROUSE", "code_postal": "90160", "coordonnees_gps": [47.6449615689, 6.92104396254], "code_commune_insee": "90076"}, "geometry": {"type": "Point", "coordinates": [6.92104396254, 47.6449615689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b369edffc3ce1fb13b0c76979a7fc0fd9dcc3f", "fields": {"nom_de_la_commune": "RECHESY", "libell_d_acheminement": "RECHESY", "code_postal": "90370", "coordonnees_gps": [47.5160443969, 7.11643957358], "code_commune_insee": "90081"}, "geometry": {"type": "Point", "coordinates": [7.11643957358, 47.5160443969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7256a25ed61a3ff748bd33ae671a8b19b85f3b7", "fields": {"nom_de_la_commune": "AUTRECHENE", "libell_d_acheminement": "AUTRECHENE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90082"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46248d0a921e2c8ed2d5228a71a9a9026db7510f", "fields": {"nom_de_la_commune": "RECOUVRANCE", "libell_d_acheminement": "RECOUVRANCE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90083"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebaed8d916d9f292262ee65b49865744daea261", "fields": {"nom_de_la_commune": "THIANCOURT", "libell_d_acheminement": "THIANCOURT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90096"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41210f337bb8ac4bff12352c6e31eb3145d60bf7", "fields": {"nom_de_la_commune": "TREVENANS", "libell_d_acheminement": "TREVENANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90097"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94065cc97b238896d265679c37dc2e72e74fca4c", "fields": {"nom_de_la_commune": "VAUTHIERMONT", "libell_d_acheminement": "VAUTHIERMONT", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90100"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8294fa3dd0a3dcdf6cde77aa90ddd9a0bec6fedd", "fields": {"nom_de_la_commune": "VETRIGNE", "libell_d_acheminement": "VETRIGNE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90103"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77193b860eeac7b23e9d415fd745064d259a753e", "fields": {"nom_de_la_commune": "VILLARS LE SEC", "libell_d_acheminement": "VILLARS LE SEC", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90105"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ad7818df9b35d3df9ccf7e5e1d47d896218ba5", "fields": {"code_postal": "91670", "code_commune_insee": "91016", "libell_d_acheminement": "ANGERVILLE", "ligne_5": "DOMMERVILLE", "nom_de_la_commune": "ANGERVILLE", "coordonnees_gps": [48.3099539715, 2.00495721135]}, "geometry": {"type": "Point", "coordinates": [2.00495721135, 48.3099539715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf182b4e2de2553b4c5960712ace2ecb64d099de", "fields": {"nom_de_la_commune": "ATHIS MONS", "libell_d_acheminement": "ATHIS MONS", "code_postal": "91200", "coordonnees_gps": [48.7091026954, 2.3868160936], "code_commune_insee": "91027"}, "geometry": {"type": "Point", "coordinates": [2.3868160936, 48.7091026954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1b00053d4558000930cba04d0f4d8a33dfd871", "fields": {"nom_de_la_commune": "AUTHON LA PLAINE", "libell_d_acheminement": "AUTHON LA PLAINE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91035"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a63f477dbb08d3425bc47ee3d31448221e6bb9", "fields": {"nom_de_la_commune": "AUVERS ST GEORGES", "libell_d_acheminement": "AUVERS ST GEORGES", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91038"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b760466806dd8239448319ef8a17e45aec97500", "fields": {"nom_de_la_commune": "BALLAINVILLIERS", "libell_d_acheminement": "BALLAINVILLIERS", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91044"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e372b50ef51acf4b674e9bbb567df6244d9dde", "fields": {"nom_de_la_commune": "BOISSY LE SEC", "libell_d_acheminement": "BOISSY LE SEC", "code_postal": "91870", "coordonnees_gps": [48.4851550025, 2.0920257825], "code_commune_insee": "91081"}, "geometry": {"type": "Point", "coordinates": [2.0920257825, 48.4851550025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bd6f29282ff89a20bd9fc66b0c2355c4b678dd0", "fields": {"nom_de_la_commune": "BOURAY SUR JUINE", "libell_d_acheminement": "BOURAY SUR JUINE", "code_postal": "91850", "coordonnees_gps": [48.5126253695, 2.29601584294], "code_commune_insee": "91095"}, "geometry": {"type": "Point", "coordinates": [2.29601584294, 48.5126253695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb970b1fcb564bad1aab1f45260f7ff6c1dd796", "fields": {"nom_de_la_commune": "BREUILLET", "libell_d_acheminement": "BREUILLET", "code_postal": "91650", "coordonnees_gps": [48.5636207397, 2.17184394889], "code_commune_insee": "91105"}, "geometry": {"type": "Point", "coordinates": [2.17184394889, 48.5636207397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29568fd8a061e4f06d3894a146661b925eb1ed7", "fields": {"nom_de_la_commune": "BREUX JOUY", "libell_d_acheminement": "BREUX JOUY", "code_postal": "91650", "coordonnees_gps": [48.5636207397, 2.17184394889], "code_commune_insee": "91106"}, "geometry": {"type": "Point", "coordinates": [2.17184394889, 48.5636207397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d85fa488d574f88061a053137bc0cfb955cfbf", "fields": {"nom_de_la_commune": "BRIIS SOUS FORGES", "libell_d_acheminement": "BRIIS SOUS FORGES", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91111"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d487a62b27897488332358120e1004abe4d7be", "fields": {"nom_de_la_commune": "BRUNOY", "libell_d_acheminement": "BRUNOY", "code_postal": "91800", "coordonnees_gps": [48.6944519423, 2.51253975836], "code_commune_insee": "91114"}, "geometry": {"type": "Point", "coordinates": [2.51253975836, 48.6944519423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d05b7025e5f510354cb1c2b94ef84f8952f37c2", "fields": {"nom_de_la_commune": "BUNO BONNEVAUX", "libell_d_acheminement": "BUNO BONNEVAUX", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91121"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab25833a7622f6fc99854bbb428c04c3adbf2c3", "fields": {"nom_de_la_commune": "CERNY", "libell_d_acheminement": "CERNY", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91129"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b6854aab74a51e52a0a88c585003a0922d87204", "fields": {"nom_de_la_commune": "CHAMPCUEIL", "libell_d_acheminement": "CHAMPCUEIL", "code_postal": "91750", "coordonnees_gps": [48.5147670198, 2.45459432239], "code_commune_insee": "91135"}, "geometry": {"type": "Point", "coordinates": [2.45459432239, 48.5147670198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c8b70dcc4c5f8c6e7bb23d489ec3b550b9aad8", "fields": {"nom_de_la_commune": "CHAMPLAN", "libell_d_acheminement": "CHAMPLAN", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91136"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7b8535c76cfc557f54098493062d10f92ce776", "fields": {"nom_de_la_commune": "COURANCES", "libell_d_acheminement": "COURANCES", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91180"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9b6785042bbe5d20980ef4ef3be1f62b501f14", "fields": {"nom_de_la_commune": "DOURDAN", "libell_d_acheminement": "DOURDAN", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91200"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61b4cfedb0347737d246fcaa5944f4b16392d84", "fields": {"nom_de_la_commune": "EPINAY SUR ORGE", "libell_d_acheminement": "EPINAY SUR ORGE", "code_postal": "91360", "coordonnees_gps": [48.6691027635, 2.32253482428], "code_commune_insee": "91216"}, "geometry": {"type": "Point", "coordinates": [2.32253482428, 48.6691027635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce52cc437646f3208cd554783382e55aabca22b0", "fields": {"nom_de_la_commune": "ETAMPES", "libell_d_acheminement": "ETAMPES", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91223"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a7179b1492e1ceca0a38075198d6b77c47e47c", "fields": {"nom_de_la_commune": "FLEURY MEROGIS", "libell_d_acheminement": "FLEURY MEROGIS", "code_postal": "91700", "coordonnees_gps": [48.6398858055, 2.34146847544], "code_commune_insee": "91235"}, "geometry": {"type": "Point", "coordinates": [2.34146847544, 48.6398858055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06475aee085fe356bad494a1a29b1d61bf740ca2", "fields": {"nom_de_la_commune": "FONTENAY LES BRIIS", "libell_d_acheminement": "FONTENAY LES BRIIS", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91243"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63c8656a3f68a530a15c66f1129b825b00ddd01", "fields": {"nom_de_la_commune": "LA FORET LE ROI", "libell_d_acheminement": "LA FORET LE ROI", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91247"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645b0c337b1c00ac4c58cd15cd55341959bb9d5b", "fields": {"nom_de_la_commune": "FORGES LES BAINS", "libell_d_acheminement": "FORGES LES BAINS", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91249"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae26b76500967079c7e340105b824677b40de98", "fields": {"code_postal": "91430", "code_commune_insee": "91312", "libell_d_acheminement": "IGNY", "ligne_5": "GOMMONVILLIERS", "nom_de_la_commune": "IGNY", "coordonnees_gps": [48.7339593054, 2.21260184658]}, "geometry": {"type": "Point", "coordinates": [2.21260184658, 48.7339593054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b766b79944b845dd23fcd6f7266d2e5c97f8d0", "fields": {"nom_de_la_commune": "JANVILLE SUR JUINE", "libell_d_acheminement": "JANVILLE SUR JUINE", "code_postal": "91510", "coordonnees_gps": [48.5117436099, 2.26036943723], "code_commune_insee": "91318"}, "geometry": {"type": "Point", "coordinates": [2.26036943723, 48.5117436099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36f4941aee90bc4043bbdab4e6515f27748acb9", "fields": {"nom_de_la_commune": "LINAS", "libell_d_acheminement": "LINAS", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91339"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1932d990411c77d5bd331f5a65c2206fa70bf057", "fields": {"nom_de_la_commune": "MAISSE", "libell_d_acheminement": "MAISSE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91359"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a263d3deb3304cf4944b86b3f32091a0683cd1", "fields": {"nom_de_la_commune": "MAROLLES EN BEAUCE", "libell_d_acheminement": "MAROLLES EN BEAUCE", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91374"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2332792b2a014e7205521074d700ed9391fe6fca", "fields": {"nom_de_la_commune": "MILLY LA FORET", "libell_d_acheminement": "MILLY LA FORET", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91405"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dfaddfa686f5c890612672b3b6acb501fa730d", "fields": {"nom_de_la_commune": "LA NORVILLE", "libell_d_acheminement": "LA NORVILLE", "code_postal": "91290", "coordonnees_gps": [48.5844568763, 2.25774325874], "code_commune_insee": "91457"}, "geometry": {"type": "Point", "coordinates": [2.25774325874, 48.5844568763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f600d343baec1c79df3f1f40e5ad7cab518bd7c0", "fields": {"nom_de_la_commune": "NOZAY", "libell_d_acheminement": "NOZAY", "code_postal": "91620", "coordonnees_gps": [48.6612886154, 2.24603935989], "code_commune_insee": "91458"}, "geometry": {"type": "Point", "coordinates": [2.24603935989, 48.6612886154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe6de1246cc38bd7f3044e67c0b94fa30e9452c", "fields": {"nom_de_la_commune": "PALAISEAU", "libell_d_acheminement": "PALAISEAU", "code_postal": "91120", "coordonnees_gps": [48.714670201, 2.22882062662], "code_commune_insee": "91477"}, "geometry": {"type": "Point", "coordinates": [2.22882062662, 48.714670201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060432e01fb89a0085a9ca31df85b69be395b70c", "fields": {"nom_de_la_commune": "LE PLESSIS PATE", "libell_d_acheminement": "LE PLESSIS PATE", "code_postal": "91220", "coordonnees_gps": [48.6039242304, 2.3152152775], "code_commune_insee": "91494"}, "geometry": {"type": "Point", "coordinates": [2.3152152775, 48.6039242304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d604868e3edc72ba7d0e1300bf324e859a5445", "fields": {"nom_de_la_commune": "PUSSAY", "libell_d_acheminement": "PUSSAY", "code_postal": "91740", "coordonnees_gps": [48.3700823354, 2.00542911555], "code_commune_insee": "91511"}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674e67eef7e0b9c69c2a2c42e55d8034d723deb3", "fields": {"nom_de_la_commune": "ROINVILLIERS", "libell_d_acheminement": "ROINVILLIERS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91526"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "564f773e7053fde9b3b2c0c422bf90a4fafd6a41", "fields": {"nom_de_la_commune": "SACLAS", "libell_d_acheminement": "SACLAS", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91533"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b86f5d8d7d9644ab5ed93d35b3d4ca0ee623dbd", "fields": {"nom_de_la_commune": "SACLAY", "libell_d_acheminement": "SACLAY", "code_postal": "91400", "coordonnees_gps": [48.7079533558, 2.15419618195], "code_commune_insee": "91534"}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1b76b0b10277c5a4a9453a01e58e33c5d5a543", "fields": {"code_postal": "91400", "code_commune_insee": "91534", "libell_d_acheminement": "SACLAY", "ligne_5": "LE VAL D ALBIAN", "nom_de_la_commune": "SACLAY", "coordonnees_gps": [48.7079533558, 2.15419618195]}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03781fd11e21e27ec5cab0f3b0b1c2052fb45602", "fields": {"nom_de_la_commune": "ST CYR SOUS DOURDAN", "libell_d_acheminement": "ST CYR SOUS DOURDAN", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91546"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f60b489a547c552c44e426a29f153536cb8a4c", "fields": {"nom_de_la_commune": "ST ESCOBILLE", "libell_d_acheminement": "ST ESCOBILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91547"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7cd8655b93caf7fbe5040bedc11cb486c48e20b", "fields": {"nom_de_la_commune": "STE GENEVIEVE DES BOIS", "libell_d_acheminement": "STE GENEVIEVE DES BOIS", "code_postal": "91700", "coordonnees_gps": [48.6398858055, 2.34146847544], "code_commune_insee": "91549"}, "geometry": {"type": "Point", "coordinates": [2.34146847544, 48.6398858055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef3f7cac9f6feebc75aa519420f33dd7ba8c11e", "fields": {"nom_de_la_commune": "ST GERMAIN LES CORBEIL", "libell_d_acheminement": "ST GERMAIN LES CORBEIL", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91553"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f141acce9256dcb24031e396764d52d68b8ba1d", "fields": {"code_postal": "91940", "code_commune_insee": "91560", "libell_d_acheminement": "ST JEAN DE BEAUREGARD", "ligne_5": "VILLEZIERS", "nom_de_la_commune": "ST JEAN DE BEAUREGARD", "coordonnees_gps": [48.6746009432, 2.16779886217]}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58d80af0369dc774739b69d1590d8a276551ec0", "fields": {"nom_de_la_commune": "ST SULPICE DE FAVIERES", "libell_d_acheminement": "ST SULPICE DE FAVIERES", "code_postal": "91910", "coordonnees_gps": [48.5358095636, 2.18105811506], "code_commune_insee": "91578"}, "geometry": {"type": "Point", "coordinates": [2.18105811506, 48.5358095636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aad4f9b12e1625abd677c50e590b09e0cd123ac", "fields": {"nom_de_la_commune": "ST VRAIN", "libell_d_acheminement": "ST VRAIN", "code_postal": "91770", "coordonnees_gps": [48.5370542716, 2.32337001511], "code_commune_insee": "91579"}, "geometry": {"type": "Point", "coordinates": [2.32337001511, 48.5370542716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08dcb58034d1c5ee0cec2eb0fdc4bc53aa9261b9", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54479"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a242329ec16de47490cd63b9731fafe4bee6f4", "fields": {"nom_de_la_commune": "ST MAURICE AUX FORGES", "libell_d_acheminement": "ST MAURICE AUX FORGES", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54481"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3fc5fea0f3ec7cde1f534a07cb2be80bcb56580", "fields": {"nom_de_la_commune": "ST MAX", "libell_d_acheminement": "ST MAX", "code_postal": "54130", "coordonnees_gps": [48.7101644321, 6.209548924], "code_commune_insee": "54482"}, "geometry": {"type": "Point", "coordinates": [6.209548924, 48.7101644321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573bc24b7a727dda9c4052c0f7c1d417e67ef94c", "fields": {"nom_de_la_commune": "ST PANCRE", "libell_d_acheminement": "ST PANCRE", "code_postal": "54730", "coordonnees_gps": [49.5332181757, 5.65682394495], "code_commune_insee": "54485"}, "geometry": {"type": "Point", "coordinates": [5.65682394495, 49.5332181757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be4bab99050b1d22c9e0ee63ca0313bba9f621a", "fields": {"nom_de_la_commune": "ST SUPPLET", "libell_d_acheminement": "ST SUPPLET", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54489"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174d85b262671220ece31f7ebd7eb6b0bb3da96a", "fields": {"nom_de_la_commune": "SEXEY AUX FORGES", "libell_d_acheminement": "SEXEY AUX FORGES", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54505"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73a1a7857b6211a76ceac8bb3def2ac4d2bfd2f", "fields": {"code_postal": "67170", "code_commune_insee": "67359", "libell_d_acheminement": "OHLUNGEN", "ligne_5": "KEFFENDORF", "nom_de_la_commune": "OHLUNGEN", "coordonnees_gps": [48.7372742925, 7.70176270666]}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da31573b66acfa245d7a8cf78a04c7566a7447a", "fields": {"code_postal": "67350", "code_commune_insee": "67372", "libell_d_acheminement": "VAL DE MODER", "ligne_5": "UBERACH", "nom_de_la_commune": "VAL DE MODER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aeb5dec856ab081712a508f0988cafa12c49e02", "fields": {"nom_de_la_commune": "PLAINE", "libell_d_acheminement": "PLAINE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67377"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb357e7a30b07cbe6d42fb3e1b2bfeca15de34b9", "fields": {"code_postal": "67420", "code_commune_insee": "67377", "libell_d_acheminement": "PLAINE", "ligne_5": "CHAMPENAY", "nom_de_la_commune": "PLAINE", "coordonnees_gps": [48.3874894068, 7.1481297444]}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814d45d4867aa321a8f88b7b5730adf565645f94", "fields": {"nom_de_la_commune": "RAUWILLER", "libell_d_acheminement": "RAUWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67386"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e1cd40b959bf3c93742530ce98f6561e2457cc", "fields": {"code_postal": "67110", "code_commune_insee": "67388", "libell_d_acheminement": "REICHSHOFFEN", "ligne_5": "NEHWILLER", "nom_de_la_commune": "REICHSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4232c5185b9eee1290aa7b65ffcc6608279c7f54", "fields": {"nom_de_la_commune": "REIPERTSWILLER", "libell_d_acheminement": "REIPERTSWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67392"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934496858a604f2bb7fc6bcd12d884f93614f3ee", "fields": {"nom_de_la_commune": "RIEDSELTZ", "libell_d_acheminement": "RIEDSELTZ", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67400"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbfa30ac60697a6d67391bd700af2fde37555c94", "fields": {"nom_de_la_commune": "ROHR", "libell_d_acheminement": "ROHR", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67406"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64734bc15579cdb94b0a85ff315e0244793bddd", "fields": {"nom_de_la_commune": "ROMANSWILLER", "libell_d_acheminement": "ROMANSWILLER", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67408"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a5c0223478122b4c78ebc6b539825df5fba7073", "fields": {"nom_de_la_commune": "ROSENWILLER", "libell_d_acheminement": "ROSENWILLER", "code_postal": "67560", "coordonnees_gps": [48.4928593453, 7.41301977896], "code_commune_insee": "67410"}, "geometry": {"type": "Point", "coordinates": [7.41301977896, 48.4928593453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b68f095a5b5ad805b94b46478588629bbf5bafb", "fields": {"nom_de_la_commune": "ROTHAU", "libell_d_acheminement": "ROTHAU", "code_postal": "67570", "coordonnees_gps": [48.4582864667, 7.17805256783], "code_commune_insee": "67414"}, "geometry": {"type": "Point", "coordinates": [7.17805256783, 48.4582864667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267973690f5c4d4c09db4650173fd540ce56372a", "fields": {"nom_de_la_commune": "SAALES", "libell_d_acheminement": "SAALES", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67421"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4238a557a22a15bb451db782d5ba97e05f2e042", "fields": {"nom_de_la_commune": "ST NABOR", "libell_d_acheminement": "ST NABOR", "code_postal": "67530", "coordonnees_gps": [48.4532281253, 7.37169792676], "code_commune_insee": "67428"}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94192a01833c41e841daa03f40fe718fb085f145", "fields": {"nom_de_la_commune": "ST PIERRE BOIS", "libell_d_acheminement": "ST PIERRE BOIS", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67430"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6038b752c92b01d8e55d5b9b5044ef355953298d", "fields": {"nom_de_la_commune": "SALMBACH", "libell_d_acheminement": "SALMBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67432"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b42f4cc0051a982b84188e19ecd49f40d2ed1a4", "fields": {"nom_de_la_commune": "SARRE UNION", "libell_d_acheminement": "SARRE UNION", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67434"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c291871294c0a7b51a05f9922906a7d53317a674", "fields": {"nom_de_la_commune": "SCHILTIGHEIM", "libell_d_acheminement": "SCHILTIGHEIM", "code_postal": "67300", "coordonnees_gps": [48.6118186538, 7.74524523422], "code_commune_insee": "67447"}, "geometry": {"type": "Point", "coordinates": [7.74524523422, 48.6118186538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1191204dc9f16dda0a39e12a496fe49f8d3862", "fields": {"nom_de_la_commune": "SCHIRMECK", "libell_d_acheminement": "SCHIRMECK", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67448"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823cdbb6282b5242c07860c288cbff6e518e6123", "fields": {"nom_de_la_commune": "SCHIRRHOFFEN", "libell_d_acheminement": "SCHIRRHOFFEN", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67450"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f52c1ded49f0ffab6a0fa48b9d3d05b04317dd2", "fields": {"nom_de_la_commune": "SELTZ", "libell_d_acheminement": "SELTZ", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67463"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6e1b3be4ea61e7dd525043be5385a59648f183", "fields": {"nom_de_la_commune": "STOTZHEIM", "libell_d_acheminement": "STOTZHEIM", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67481"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a41260b864b295d3ea94311438334d46f50360b", "fields": {"nom_de_la_commune": "STRASBOURG", "libell_d_acheminement": "STRASBOURG", "code_postal": "67100", "coordonnees_gps": [48.5716222333, 7.76768232804], "code_commune_insee": "67482"}, "geometry": {"type": "Point", "coordinates": [7.76768232804, 48.5716222333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c142641ab95640e389ce28bc8ced7cc257a9f59a", "fields": {"nom_de_la_commune": "STUTZHEIM OFFENHEIM", "libell_d_acheminement": "STUTZHEIM OFFENHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67485"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3894cd8f460a19235c08514f2e4fe0bc77b735", "fields": {"nom_de_la_commune": "SURBOURG", "libell_d_acheminement": "SURBOURG", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67487"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a503c3f20ba830ab73923940e4644f778f4aca", "fields": {"code_postal": "67440", "code_commune_insee": "67489", "libell_d_acheminement": "THAL MARMOUTIER", "ligne_5": "SCHWEBWILLER", "nom_de_la_commune": "THAL MARMOUTIER", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f16d2c58c9efbd8045183037fa17b6f0b3e69c0", "fields": {"nom_de_la_commune": "TRIMBACH", "libell_d_acheminement": "TRIMBACH", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67494"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a285ae0be657a2c244cde2dda629d956c030b2", "fields": {"code_postal": "67370", "code_commune_insee": "67495", "libell_d_acheminement": "TRUCHTERSHEIM", "ligne_5": "PFETTISHEIM", "nom_de_la_commune": "TRUCHTERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eff5ad0094cfbdf321a1ea55945693c84b1d273", "fields": {"code_postal": "67350", "code_commune_insee": "67497", "libell_d_acheminement": "UHLWILLER", "ligne_5": "NIEDERALTDORF", "nom_de_la_commune": "UHLWILLER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347f504f9717dd4f14b5091325e1dba021330ece", "fields": {"nom_de_la_commune": "URBEIS", "libell_d_acheminement": "URBEIS", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67499"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8880b7a9f29e09e40600013151be24dc5b41a173", "fields": {"nom_de_la_commune": "VOELLERDINGEN", "libell_d_acheminement": "VOELLERDINGEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67508"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48bef63a81f29659057dafc54915d0dc876596c1", "fields": {"nom_de_la_commune": "WALDHAMBACH", "libell_d_acheminement": "WALDHAMBACH", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67514"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a553d0af7be8f3e94a82a572a703a2061d7bf2c5", "fields": {"nom_de_la_commune": "WEINBOURG", "libell_d_acheminement": "WEINBOURG", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67521"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afdbdd9e6e684b6e6faacd166793a5883443a019", "fields": {"nom_de_la_commune": "WEITERSWILLER", "libell_d_acheminement": "WEITERSWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67524"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa80cbd5cf1780691df83b962bbae17312f198e4", "fields": {"nom_de_la_commune": "WEYER", "libell_d_acheminement": "WEYER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67528"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d158ad471adc6dfcf7f02051c52ae3b27119281", "fields": {"code_postal": "67370", "code_commune_insee": "67532", "libell_d_acheminement": "WILLGOTTHEIM", "ligne_5": "WOELLENHEIM", "nom_de_la_commune": "WILLGOTTHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35552721a5748473e38afdfe063e8bef950d6d75", "fields": {"nom_de_la_commune": "WIMMENAU", "libell_d_acheminement": "WIMMENAU", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67535"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8b421e8c48154e7533ec6659a25e17e1b46311", "fields": {"nom_de_la_commune": "WINGEN SUR MODER", "libell_d_acheminement": "WINGEN SUR MODER", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67538"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad5bf16b803a8cacc1b1047087afbbca60b44d6", "fields": {"nom_de_la_commune": "WINTERSHOUSE", "libell_d_acheminement": "WINTERSHOUSE", "code_postal": "67590", "coordonnees_gps": [48.811939028, 7.71713029127], "code_commune_insee": "67540"}, "geometry": {"type": "Point", "coordinates": [7.71713029127, 48.811939028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5fe8ad1046ac9178c29cd0f671562cf33757dd", "fields": {"nom_de_la_commune": "WINTZENBACH", "libell_d_acheminement": "WINTZENBACH", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67541"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543cbbb02355afe9be69aeff785e0187227f5f05", "fields": {"code_postal": "67130", "code_commune_insee": "67543", "libell_d_acheminement": "WISCHES", "ligne_5": "HERSBACH", "nom_de_la_commune": "WISCHES", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99533cd6cec617437566b413f660aa2a16fcbff", "fields": {"code_postal": "67160", "code_commune_insee": "67544", "libell_d_acheminement": "WISSEMBOURG", "ligne_5": "WEILER", "nom_de_la_commune": "WISSEMBOURG", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712120500e4df8925322f4c7bdd3da99c00eaca4", "fields": {"nom_de_la_commune": "WITTISHEIM", "libell_d_acheminement": "WITTISHEIM", "code_postal": "67820", "coordonnees_gps": [48.2626688042, 7.59114242143], "code_commune_insee": "67547"}, "geometry": {"type": "Point", "coordinates": [7.59114242143, 48.2626688042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d76522ade10b35647721c3cf3359327d694fccf", "fields": {"nom_de_la_commune": "ZOEBERSDORF", "libell_d_acheminement": "ZOEBERSDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67560"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b058b32d7bb60079f057fa543fe8c813025ed8c", "fields": {"nom_de_la_commune": "ALTENACH", "libell_d_acheminement": "ALTENACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68002"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba36c7acb5bda03204cbeab87a73238f93565455", "fields": {"code_postal": "68410", "code_commune_insee": "68005", "libell_d_acheminement": "AMMERSCHWIHR", "ligne_5": "LES TROIS EPIS", "nom_de_la_commune": "AMMERSCHWIHR", "coordonnees_gps": [48.1196029764, 7.259781289]}, "geometry": {"type": "Point", "coordinates": [7.259781289, 48.1196029764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f55037c88f481facb907deb627ca315056b664", "fields": {"nom_de_la_commune": "AMMERSCHWIHR", "libell_d_acheminement": "AMMERSCHWIHR", "code_postal": "68770", "coordonnees_gps": [48.1196029764, 7.259781289], "code_commune_insee": "68005"}, "geometry": {"type": "Point", "coordinates": [7.259781289, 48.1196029764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5b75a4e695d8c4f726b4a2dec3b90ee97d649f5", "fields": {"nom_de_la_commune": "ANDOLSHEIM", "libell_d_acheminement": "ANDOLSHEIM", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68007"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bcb351d0a10bd49c535ee46a79fb542c82d1bf8", "fields": {"nom_de_la_commune": "APPENWIHR", "libell_d_acheminement": "APPENWIHR", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68008"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbc2802ce03744944adfae0540c64e88ac4ecc5", "fields": {"nom_de_la_commune": "ARTZENHEIM", "libell_d_acheminement": "ARTZENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68009"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7945bea10aebfb44e194c97391cd8f4071b0a3bc", "fields": {"nom_de_la_commune": "ASPACH", "libell_d_acheminement": "ASPACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68010"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62704ae431dec422512bb7c7ca70fa6be928e4a4", "fields": {"nom_de_la_commune": "ATTENSCHWILLER", "libell_d_acheminement": "ATTENSCHWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68013"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3ddf69c5f92edb99f227ac695b25ef66e1fcaa", "fields": {"nom_de_la_commune": "BALDERSHEIM", "libell_d_acheminement": "BALDERSHEIM", "code_postal": "68390", "coordonnees_gps": [47.7997453022, 7.41007777982], "code_commune_insee": "68015"}, "geometry": {"type": "Point", "coordinates": [7.41007777982, 47.7997453022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ade27ed880a1929cb5cf1682f2afc7d3b7e67e", "fields": {"nom_de_la_commune": "BALTZENHEIM", "libell_d_acheminement": "BALTZENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68019"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486f52339312ea162f0a746864166af11a184800", "fields": {"nom_de_la_commune": "BENNWIHR", "libell_d_acheminement": "BENNWIHR MITTELWIHR", "code_postal": "68630", "coordonnees_gps": [48.1423548591, 7.33228036662], "code_commune_insee": "68026"}, "geometry": {"type": "Point", "coordinates": [7.33228036662, 48.1423548591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48dc39296580e23db5cb8466b2250297cffe3623", "fields": {"nom_de_la_commune": "BERGHOLTZ", "libell_d_acheminement": "BERGHOLTZ", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68029"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f42dee7dc52303621cb9778b97ce572815d6c9", "fields": {"nom_de_la_commune": "BERNWILLER", "libell_d_acheminement": "BERNWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68031"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63a1c7a2f629a41804641c80f29d43e46f0b073", "fields": {"nom_de_la_commune": "BIEDERTHAL", "libell_d_acheminement": "BIEDERTHAL", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68035"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6c0608ecf1b4c2e7945fba6d423adf2dad5fad", "fields": {"nom_de_la_commune": "BREITENBACH HAUT RHIN", "libell_d_acheminement": "BREITENBACH", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68051"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc838cf6b73f28c0fb2093432b73d9c87526486", "fields": {"nom_de_la_commune": "CHAVANNES SUR L ETANG", "libell_d_acheminement": "CHAVANNES SUR L ETANG", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68065"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c80f64cdc6120af8fe1d45da00b2d9bd059d06", "fields": {"nom_de_la_commune": "COURTAVON", "libell_d_acheminement": "COURTAVON", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68067"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699faf85af086d65bf74cfc1fc8a2c4fdec7a552", "fields": {"nom_de_la_commune": "DESSENHEIM", "libell_d_acheminement": "DESSENHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68069"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e29212135d36ff09ca106e7bf470bd231bec5c0", "fields": {"nom_de_la_commune": "DURMENACH", "libell_d_acheminement": "DURMENACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68075"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785ab7e2d7b9ca7426edcc16424382eeb57a30a3", "fields": {"nom_de_la_commune": "ELBACH", "libell_d_acheminement": "ELBACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68079"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf64f4189152e82562c007cb38fd43d3506df6d", "fields": {"nom_de_la_commune": "ESCHENTZWILLER", "libell_d_acheminement": "ESCHENTZWILLER", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68084"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87df4105084fb6668d94e6c96d4c8a2a1172c950", "fields": {"nom_de_la_commune": "FORTSCHWIHR", "libell_d_acheminement": "FORTSCHWIHR", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68095"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ff15a761e8774b9ba7f322067a1d73773d7f18", "fields": {"nom_de_la_commune": "GEISHOUSE", "libell_d_acheminement": "GEISHOUSE", "code_postal": "68690", "coordonnees_gps": [47.8604403288, 7.04290512633], "code_commune_insee": "68102"}, "geometry": {"type": "Point", "coordinates": [7.04290512633, 47.8604403288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d724cc96cc60c9768ee85bafd697d562497978d", "fields": {"nom_de_la_commune": "GEISWASSER", "libell_d_acheminement": "GEISWASSER", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68104"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150f16fbe0926c5f221fcdbdf53505bcc2dd6f0e", "fields": {"nom_de_la_commune": "GOMMERSDORF", "libell_d_acheminement": "GOMMERSDORF", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68107"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3df7bff21608b9cb2da4cd0db603e48a7d2067a", "fields": {"nom_de_la_commune": "HOCHSTATT", "libell_d_acheminement": "HOCHSTATT", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68141"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85dacfeacdf9cc3374710500189e65449d025635", "fields": {"nom_de_la_commune": "HUNDSBACH", "libell_d_acheminement": "HUNDSBACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68148"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f54b758da24a6d579d2f5dfdf080f15533066f9", "fields": {"nom_de_la_commune": "JUNGHOLTZ", "libell_d_acheminement": "JUNGHOLTZ", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68159"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4078ef0519022482a72ad5f28a3a61a6ffc6d504", "fields": {"code_postal": "68240", "code_commune_insee": "68162", "libell_d_acheminement": "KAYSERSBERG VIGNOBLE", "ligne_5": "SIGOLSHEIM", "nom_de_la_commune": "KAYSERSBERG VIGNOBLE", "coordonnees_gps": [48.1678355817, 7.21603176483]}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b33c535018ee8e96e0702575225d7e92c6aef5", "fields": {"nom_de_la_commune": "KIFFIS", "libell_d_acheminement": "KIFFIS", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68165"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0099ed3f5a698958cd8ba87e94af86251d5d609d", "fields": {"nom_de_la_commune": "KNOERINGUE", "libell_d_acheminement": "KNOERINGUE", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68168"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a28cc4d59e50fe202355760d3f573ba9bdb3385d", "fields": {"nom_de_la_commune": "LABAROCHE", "libell_d_acheminement": "LABAROCHE", "code_postal": "68910", "coordonnees_gps": [48.1097845379, 7.19577629538], "code_commune_insee": "68173"}, "geometry": {"type": "Point", "coordinates": [7.19577629538, 48.1097845379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68f40e611737d8b0024d30cc24821b7e3485b4c0", "fields": {"code_postal": "68610", "code_commune_insee": "68177", "libell_d_acheminement": "LAUTENBACH", "ligne_5": "MARKSTEIN", "nom_de_la_commune": "LAUTENBACH", "coordonnees_gps": [47.9413913563, 7.11100776725]}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "467b03c4e5d148d06ec93532f71211ece6d15d18", "fields": {"nom_de_la_commune": "LEIMBACH", "libell_d_acheminement": "LEIMBACH", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68180"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26754713f7b5283aad7e4bad8a60a93595ed0ec0", "fields": {"nom_de_la_commune": "LIEBENSWILLER", "libell_d_acheminement": "LIEBENSWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68183"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded9d1b2abca830457b0bfdb8eace9090c407063", "fields": {"nom_de_la_commune": "LIEPVRE", "libell_d_acheminement": "LIEPVRE", "code_postal": "68660", "coordonnees_gps": [48.2830260075, 7.25621728255], "code_commune_insee": "68185"}, "geometry": {"type": "Point", "coordinates": [7.25621728255, 48.2830260075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3761d5ed854b0787a1d68bfbf3b621a10801dc5", "fields": {"nom_de_la_commune": "LOGELHEIM", "libell_d_acheminement": "LOGELHEIM", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68189"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661a50d2fee684eab5c58aca15e583cc018826d8", "fields": {"nom_de_la_commune": "LUTTENBACH PRES MUNSTER", "libell_d_acheminement": "LUTTENBACH", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68193"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6fe66d677382133073617c2da054941a79f85f", "fields": {"nom_de_la_commune": "MAGNY", "libell_d_acheminement": "MAGNY", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68196"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12d41fd0fc3b92e49a33989031c38730f678070", "fields": {"nom_de_la_commune": "MALMERSPACH", "libell_d_acheminement": "MALMERSPACH", "code_postal": "68550", "coordonnees_gps": [47.8832667116, 7.03896446399], "code_commune_insee": "68199"}, "geometry": {"type": "Point", "coordinates": [7.03896446399, 47.8832667116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7164ff709b68dcf574e6a957517cf79b88119b00", "fields": {"code_postal": "68290", "code_commune_insee": "68201", "libell_d_acheminement": "MASEVAUX NIEDERBRUCK", "ligne_5": "NIEDERBRUCK", "nom_de_la_commune": "MASEVAUX NIEDERBRUCK", "coordonnees_gps": [47.799453165, 6.9576762067]}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e0e377f563543a71aa562888ba3531a49b8aff", "fields": {"nom_de_la_commune": "METZERAL", "libell_d_acheminement": "METZERAL", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68204"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513b7ddee4b4a0f4c57f2b8ffcf7281649939619", "fields": {"nom_de_la_commune": "MITZACH", "libell_d_acheminement": "MITZACH", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68211"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23e0d5ba6b8ae453093981d42d5b1822ae6d7e7", "fields": {"nom_de_la_commune": "MUESPACH", "libell_d_acheminement": "MUESPACH", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68221"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302520beccee0ff72c626044f8a80e77befbb5da", "fields": {"nom_de_la_commune": "NEUWILLER", "libell_d_acheminement": "NEUWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68232"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4c78f782b263a3b3324c41a937e7187b69852a", "fields": {"nom_de_la_commune": "NIEDERHERGHEIM", "libell_d_acheminement": "NIEDERHERGHEIM", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68235"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f4b85eefa824d7e507063045f1964fdc1449c0", "fields": {"nom_de_la_commune": "NIFFER", "libell_d_acheminement": "NIFFER", "code_postal": "68680", "coordonnees_gps": [47.692052435, 7.4996914336], "code_commune_insee": "68238"}, "geometry": {"type": "Point", "coordinates": [7.4996914336, 47.692052435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beab6cd12edbed6f68635df293029e2ee644e16a", "fields": {"code_postal": "68960", "code_commune_insee": "68240", "libell_d_acheminement": "ILLTAL", "ligne_5": "HENFLINGEN", "nom_de_la_commune": "ILLTAL", "coordonnees_gps": [47.5717118449, 7.32148674865]}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e226bc6020bbe68f8de627ba725b8fcaad2463f", "fields": {"nom_de_la_commune": "OBERHERGHEIM", "libell_d_acheminement": "OBERHERGHEIM", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68242"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c4e9f8b842fb0e675840e7d043450dd4b11f1c", "fields": {"nom_de_la_commune": "OBERMORSCHWIHR", "libell_d_acheminement": "OBERMORSCHWIHR", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68244"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6274fe39b2ac260ea58476bf6b920da364c92a6", "fields": {"nom_de_la_commune": "ST ETIENNE AU MONT", "libell_d_acheminement": "PONT DE BRIQUES ST ETIENNE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62746"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0237c97d17a2aec86053551346c61ef91b9fe41f", "fields": {"code_postal": "62360", "code_commune_insee": "62746", "libell_d_acheminement": "PONT DE BRIQUES ST ETIENNE", "ligne_5": "PONT DE BRIQUES", "nom_de_la_commune": "ST ETIENNE AU MONT", "coordonnees_gps": [50.6825479214, 1.6682942512]}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89a72b646a80e30bafa38a7524c8abd773442ed1", "fields": {"nom_de_la_commune": "ST FLORIS", "libell_d_acheminement": "ST FLORIS", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62747"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9368579b576f89ad950cef9875d79634567f5a3e", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62755"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a265de27d07627c93c0502b08b5235179ce30f7", "fields": {"nom_de_la_commune": "STE MARIE KERQUE", "libell_d_acheminement": "STE MARIE KERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62756"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494f62e49bae845877ec830af95e3ba24d80552b", "fields": {"nom_de_la_commune": "ST VENANT", "libell_d_acheminement": "ST VENANT", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62770"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b8f05b27dc8c330db272c3720e47a1065093a2", "fields": {"nom_de_la_commune": "SARTON", "libell_d_acheminement": "SARTON", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62779"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3229879746b31a61e00e98f6aee67f67f7a02b", "fields": {"nom_de_la_commune": "SENINGHEM", "libell_d_acheminement": "SENINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62788"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcefcb8f28ce4919f2cb1a769dd9442083894a4c", "fields": {"nom_de_la_commune": "SIRACOURT", "libell_d_acheminement": "SIRACOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62797"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa5a401744a909dfbbc08686c11c06d32f88c05", "fields": {"nom_de_la_commune": "SOMBRIN", "libell_d_acheminement": "SOMBRIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62798"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981498a7a6ee1253f922b3cbb4a6fc1bbec8dfd0", "fields": {"nom_de_la_commune": "LE SOUICH", "libell_d_acheminement": "LE SOUICH", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62802"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f6728e9472e0cfed3e7deb20cb3429729e72e02", "fields": {"nom_de_la_commune": "SURQUES", "libell_d_acheminement": "SURQUES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62803"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155fe2acf13e0885abd5fd1ed2b53c1f274ab550", "fields": {"nom_de_la_commune": "TARDINGHEN", "libell_d_acheminement": "TARDINGHEN", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62806"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361b4121bc9fce217f91ae22ab9f30746c3f3c55", "fields": {"nom_de_la_commune": "TERNAS", "libell_d_acheminement": "TERNAS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62809"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e271e85081f2a736aabf22dab218a058fca9e4dc", "fields": {"nom_de_la_commune": "THIEVRES", "libell_d_acheminement": "THIEVRES", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62814"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999b943d5a7653e06bbeecd81c65887dc358ae8f", "fields": {"nom_de_la_commune": "TOLLENT", "libell_d_acheminement": "TOLLENT", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62822"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32afa22d0866c36fe9da12c31ec430f4c8736637", "fields": {"nom_de_la_commune": "VACQUERIE LE BOUCQ", "libell_d_acheminement": "VACQUERIE LE BOUCQ", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62833"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49ec6433577560656fb52d01a951737f0cf7fe21", "fields": {"nom_de_la_commune": "VENDIN LES BETHUNE", "libell_d_acheminement": "VENDIN LES BETHUNE", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62841"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef2a5282501cd7bcc40771290ae6306f36a96ca", "fields": {"nom_de_la_commune": "VERCHIN", "libell_d_acheminement": "VERCHIN", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62843"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad6f4487f4b52ef4e75b415d55ee4e9d3dc57b0", "fields": {"nom_de_la_commune": "VERQUIN", "libell_d_acheminement": "VERQUIN", "code_postal": "62131", "coordonnees_gps": [50.4979995318, 2.63240823084], "code_commune_insee": "62848"}, "geometry": {"type": "Point", "coordinates": [2.63240823084, 50.4979995318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2630b8c17277a83617b83339873f1cb3508422e", "fields": {"nom_de_la_commune": "VILLERS L HOPITAL", "libell_d_acheminement": "VILLERS L HOPITAL", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62859"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57cd82b48f07222b90325f22d8d864fd2706547", "fields": {"nom_de_la_commune": "WAMIN", "libell_d_acheminement": "WAMIN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62872"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62d0f57b272f735c3ecde072f514ca85f17b63fb", "fields": {"nom_de_la_commune": "WARDRECQUES", "libell_d_acheminement": "WARDRECQUES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62875"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3b628f326384393f15e12f4a9b9efc7b54deca", "fields": {"nom_de_la_commune": "WARLINCOURT LES PAS", "libell_d_acheminement": "WARLINCOURT LES PAS", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62877"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18e002aafd9cd74bbe76e4cf0a7c1aed9b66f1d", "fields": {"nom_de_la_commune": "WARLUZEL", "libell_d_acheminement": "WARLUZEL", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62879"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdb1b71d3f01db6ebde06ddf90cd167009e5c9a", "fields": {"nom_de_la_commune": "WESTREHEM", "libell_d_acheminement": "WESTREHEM", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62885"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aecd95a6815479bc28c71ffae228ab5f1b7049d", "fields": {"nom_de_la_commune": "WICQUINGHEM", "libell_d_acheminement": "WICQUINGHEM", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62886"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67dd303cb33baaae2fcd4edec1eadcc0e2059b3", "fields": {"nom_de_la_commune": "WIRWIGNES", "libell_d_acheminement": "WIRWIGNES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62896"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6e462d1a2dde74e3ed8c9417afca5252b16746", "fields": {"nom_de_la_commune": "WISMES", "libell_d_acheminement": "WISMES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62897"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4648cf035e9296907aa13a2de91bb0c8d3f0ef9", "fields": {"nom_de_la_commune": "WISSANT", "libell_d_acheminement": "WISSANT", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62899"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbcc6f0f131c1860978aaea6cb1ee4d7bf48d57c", "fields": {"code_postal": "62890", "code_commune_insee": "62904", "libell_d_acheminement": "ZOUAFQUES", "ligne_5": "LA RECOUSSE", "nom_de_la_commune": "ZOUAFQUES", "coordonnees_gps": [50.7978193475, 2.05396583461]}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1ffc11194ef060c25143100fe08b821a43a44b", "fields": {"nom_de_la_commune": "APCHAT", "libell_d_acheminement": "APCHAT", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63007"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9310ab760f67bf1a2f0967f306b64f74e1a3cd8", "fields": {"nom_de_la_commune": "AULNAT", "libell_d_acheminement": "AULNAT", "code_postal": "63510", "coordonnees_gps": [45.804716466, 3.18423558419], "code_commune_insee": "63019"}, "geometry": {"type": "Point", "coordinates": [3.18423558419, 45.804716466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9976ed10b776a1843e20b879ed20a2127e1b5ea", "fields": {"nom_de_la_commune": "BAGNOLS", "libell_d_acheminement": "BAGNOLS", "code_postal": "63810", "coordonnees_gps": [45.4876676748, 2.61850330437], "code_commune_insee": "63028"}, "geometry": {"type": "Point", "coordinates": [2.61850330437, 45.4876676748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7427b7f3f99203a1db6e63c57e8da9ad34fb43a", "fields": {"nom_de_la_commune": "BEAUMONT LES RANDAN", "libell_d_acheminement": "BEAUMONT LES RANDAN", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63033"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7389c11bb71d59652b41480716708f980bbf53d0", "fields": {"nom_de_la_commune": "BIOLLET", "libell_d_acheminement": "BIOLLET", "code_postal": "63640", "coordonnees_gps": [45.9806226406, 2.69554487333], "code_commune_insee": "63041"}, "geometry": {"type": "Point", "coordinates": [2.69554487333, 45.9806226406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fcd49f920f1ae7d488701dbd5ccf916acdef55e", "fields": {"nom_de_la_commune": "BORT L ETANG", "libell_d_acheminement": "BORT L ETANG", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63045"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b31c0d2d9adadfd3a6b6418c5604af0d43778bf", "fields": {"nom_de_la_commune": "BRIFFONS", "libell_d_acheminement": "BRIFFONS", "code_postal": "63820", "coordonnees_gps": [45.6766706035, 2.68432018586], "code_commune_insee": "63053"}, "geometry": {"type": "Point", "coordinates": [2.68432018586, 45.6766706035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1359e5f97a3bcc07d6a96eff4f3de510cefd5cf0", "fields": {"nom_de_la_commune": "BUSSEOL", "libell_d_acheminement": "BUSSEOL", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63059"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c145a29d9e5f6087085a0fa8a9419439e9befd92", "fields": {"nom_de_la_commune": "BUXIERES SOUS MONTAIGUT", "libell_d_acheminement": "BUXIERES SOUS MONTAIGUT", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63062"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fef27ce1109882d0ee924f317cd6dafae0b1711", "fields": {"nom_de_la_commune": "LA CELLETTE", "libell_d_acheminement": "LA CELLETTE", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63067"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658e4c2224f64547fdb98aa548cf24c91521aa94", "fields": {"nom_de_la_commune": "LE CENDRE", "libell_d_acheminement": "LE CENDRE", "code_postal": "63670", "coordonnees_gps": [45.7124444692, 3.15893935126], "code_commune_insee": "63069"}, "geometry": {"type": "Point", "coordinates": [3.15893935126, 45.7124444692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6e87d950806491c543e701258079c726582c56", "fields": {"code_postal": "63122", "code_commune_insee": "63070", "libell_d_acheminement": "CEYRAT", "ligne_5": "BOISSEJOUR", "nom_de_la_commune": "CEYRAT", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf6410e1874bc826c0df857bf1b4a56b5b6a635", "fields": {"nom_de_la_commune": "CHAMBON SUR LAC", "libell_d_acheminement": "CHAMBON SUR LAC", "code_postal": "63790", "coordonnees_gps": [45.562829077, 2.89483440684], "code_commune_insee": "63077"}, "geometry": {"type": "Point", "coordinates": [2.89483440684, 45.562829077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b65d2c8e69be544bd00b0ec1a665b21ba340fce", "fields": {"nom_de_la_commune": "CHAMPEIX", "libell_d_acheminement": "CHAMPEIX", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63080"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f739a8dc2fcbfe9db90fcb0a4cacaf05ea3efb5", "fields": {"nom_de_la_commune": "CHANAT LA MOUTEYRE", "libell_d_acheminement": "CHANAT LA MOUTEYRE", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63083"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88d5906e2459e19fd8e645361f152d5a17c8611", "fields": {"nom_de_la_commune": "CHAPDES BEAUFORT", "libell_d_acheminement": "CHAPDES BEAUFORT", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63085"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1716d6f3a68601281ccceea2ad1d57a29af094", "fields": {"nom_de_la_commune": "LA CHAPELLE MARCOUSSE", "libell_d_acheminement": "LA CHAPELLE MARCOUSSE", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63087"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e799231b28491e3b26396677f72f1c99fbb751", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63089"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01bebc38ee19699fa38c7f40095aceb332714c2a", "fields": {"nom_de_la_commune": "CHAPTUZAT", "libell_d_acheminement": "CHAPTUZAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63090"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e84832e1140a4b3a5630b9b1f97c2f703afc0b", "fields": {"nom_de_la_commune": "CHARENSAT", "libell_d_acheminement": "CHARENSAT", "code_postal": "63640", "coordonnees_gps": [45.9806226406, 2.69554487333], "code_commune_insee": "63094"}, "geometry": {"type": "Point", "coordinates": [2.69554487333, 45.9806226406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d9acd0e9419a27ef21da6ce781b6a053a24c11", "fields": {"nom_de_la_commune": "CHARNAT", "libell_d_acheminement": "CHARNAT", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63095"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01137a84aa297c047f9fd43b305ac775f9cc1be", "fields": {"nom_de_la_commune": "CHAS", "libell_d_acheminement": "CHAS", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63096"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab86823457fa4bcb3f2ac5dfca065711dd68392", "fields": {"nom_de_la_commune": "CHASSAGNE", "libell_d_acheminement": "CHASSAGNE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63097"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc38473ac50d97180ff0b6a63b69f835a04dce7", "fields": {"nom_de_la_commune": "CHATEL GUYON", "libell_d_acheminement": "CHATEL GUYON", "code_postal": "63140", "coordonnees_gps": [45.9205002665, 3.06256995694], "code_commune_insee": "63103"}, "geometry": {"type": "Point", "coordinates": [3.06256995694, 45.9205002665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba9feefcd043ea705d142330fcafea574ff97bf", "fields": {"code_postal": "63140", "code_commune_insee": "63103", "libell_d_acheminement": "CHATEL GUYON", "ligne_5": "ST HIPPOLYTE", "nom_de_la_commune": "CHATEL GUYON", "coordonnees_gps": [45.9205002665, 3.06256995694]}, "geometry": {"type": "Point", "coordinates": [3.06256995694, 45.9205002665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d81aa564da94b0b21d4fcfefb1723b88580226", "fields": {"nom_de_la_commune": "LA CHAULME", "libell_d_acheminement": "LA CHAULME", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63104"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1b38818ba4c3af64223ce3432c6cf3be164e949", "fields": {"nom_de_la_commune": "CHIDRAC", "libell_d_acheminement": "CHIDRAC", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63109"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007bfc88879891696ca85a84a6f0826aaea6a426", "fields": {"nom_de_la_commune": "CLEMENSAT", "libell_d_acheminement": "CLEMENSAT", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63111"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645f7f8ec8e5d68dac1be2b40074554491905baf", "fields": {"nom_de_la_commune": "CLERMONT FERRAND", "libell_d_acheminement": "CLERMONT FERRAND", "code_postal": "63100", "coordonnees_gps": [45.7859081171, 3.1155334528], "code_commune_insee": "63113"}, "geometry": {"type": "Point", "coordinates": [3.1155334528, 45.7859081171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f54a9ba06b96f1a02df8c4392ce7ee6d49f2d7", "fields": {"nom_de_la_commune": "COURNOLS", "libell_d_acheminement": "COURNOLS", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63123"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d991cbc13ec632e3dfc893716df431e51ad38de9", "fields": {"nom_de_la_commune": "COURNON D AUVERGNE", "libell_d_acheminement": "COURNON D AUVERGNE", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63124"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11c0788651270b25d362dab8429fd42ead061b3", "fields": {"nom_de_la_commune": "LE CREST", "libell_d_acheminement": "LE CREST", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63126"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd99f5298e4a1c7bbd3e9c02711432f8b932b79f", "fields": {"nom_de_la_commune": "CROS", "libell_d_acheminement": "CROS", "code_postal": "63810", "coordonnees_gps": [45.4876676748, 2.61850330437], "code_commune_insee": "63129"}, "geometry": {"type": "Point", "coordinates": [2.61850330437, 45.4876676748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f2ee0b654651f5b1edaefd119fe2ce672ca130", "fields": {"nom_de_la_commune": "LA CROUZILLE", "libell_d_acheminement": "LA CROUZILLE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63130"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be1648d124e0a3899ba5de0c450c97546105c7b", "fields": {"nom_de_la_commune": "CULHAT", "libell_d_acheminement": "CULHAT", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63131"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee2c38eb0bff5573a4665b87a981483f468c6fe", "fields": {"nom_de_la_commune": "DORANGES", "libell_d_acheminement": "DORANGES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63137"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5b0e66570ed78a9e7d7b7dfab788eb24579b03", "fields": {"nom_de_la_commune": "EGLISENEUVE D ENTRAIGUES", "libell_d_acheminement": "EGLISENEUVE D ENTRAIGUES", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63144"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66dbbd09082c6792bcf1abe6418abc2683f110ec", "fields": {"nom_de_la_commune": "ENNEZAT", "libell_d_acheminement": "ENNEZAT", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63148"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add77859efe655d957523d4b8243b4466a19bebc", "fields": {"nom_de_la_commune": "ESPINASSE", "libell_d_acheminement": "ESPINASSE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63152"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a34823eeddef3e1d193de1963af943bef728954", "fields": {"nom_de_la_commune": "ESPIRAT", "libell_d_acheminement": "ESPIRAT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63154"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee445740299a0b3ee247b0b57c7d7813d59c655", "fields": {"nom_de_la_commune": "ESTANDEUIL", "libell_d_acheminement": "ESTANDEUIL", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63155"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbd8fc0f52e8f4f64516f3e2771c6d765d9e11c", "fields": {"nom_de_la_commune": "GIAT", "libell_d_acheminement": "GIAT", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63165"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5487bebc19e570f4bcaf8e05e094fb67434695e", "fields": {"nom_de_la_commune": "GIMEAUX", "libell_d_acheminement": "GIMEAUX", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63167"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0142874e1a9bf67113cacb94f5395ef308fe68", "fields": {"nom_de_la_commune": "LAMONTGIE", "libell_d_acheminement": "LAMONTGIE", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63185"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8ba8928c937408494f12d02ba02e2f19b369df", "fields": {"nom_de_la_commune": "LANDOGNE", "libell_d_acheminement": "LANDOGNE", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63186"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815b81c3cd569ea0942b0d1d93a41dd20fb37646", "fields": {"nom_de_la_commune": "LEMPTY", "libell_d_acheminement": "LEMPTY", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63194"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834da8015875f5ac388058ca56d8964aaf641387", "fields": {"nom_de_la_commune": "LISSEUIL", "libell_d_acheminement": "LISSEUIL", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63197"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1119ada415752303ec3cdd8c4dc96dae57a7f6ee", "fields": {"nom_de_la_commune": "LUSSAT", "libell_d_acheminement": "LUSSAT", "code_postal": "63360", "coordonnees_gps": [45.840831165, 3.18231829254], "code_commune_insee": "63200"}, "geometry": {"type": "Point", "coordinates": [3.18231829254, 45.840831165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1567f934aefe25afda7053ab9328dfd48fc2b13d", "fields": {"nom_de_la_commune": "MADRIAT", "libell_d_acheminement": "MADRIAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63202"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a38eef81ad10d81241ecf6b807173b3f1c5fae", "fields": {"nom_de_la_commune": "MARINGUES", "libell_d_acheminement": "MARINGUES", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63210"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dceb1f924e329cac7a127ca50a1111bb4525eb1", "fields": {"nom_de_la_commune": "MAZOIRES", "libell_d_acheminement": "MAZOIRES", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63220"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1fc83d82e5aac6a22186dd313a0d67e45e582fd", "fields": {"nom_de_la_commune": "MEZEL", "libell_d_acheminement": "MEZEL", "code_postal": "63115", "coordonnees_gps": [45.7491591602, 3.23995056994], "code_commune_insee": "63226"}, "geometry": {"type": "Point", "coordinates": [3.23995056994, 45.7491591602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a40b28679aaec783207eaf0eebb86ecc60810b3", "fields": {"nom_de_la_commune": "MIREMONT", "libell_d_acheminement": "MIREMONT", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63228"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4947c46260206b6e5a53c3280dc401cfb9d56f21", "fields": {"nom_de_la_commune": "MONT DORE", "libell_d_acheminement": "LE MONT DORE", "code_postal": "63240", "coordonnees_gps": [45.5755818256, 2.80980084479], "code_commune_insee": "63236"}, "geometry": {"type": "Point", "coordinates": [2.80980084479, 45.5755818256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece114038dc2d279dc81b4820c88c35bb9214140", "fields": {"nom_de_la_commune": "MONTFERMY", "libell_d_acheminement": "MONTFERMY", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63238"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "630bcc5ce38de44c5edfe53c65fc00ac5703a2ce", "fields": {"nom_de_la_commune": "MONTPENSIER", "libell_d_acheminement": "MONTPENSIER", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63240"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2968edbff27c57899320acca9507ca4cf45059df", "fields": {"nom_de_la_commune": "MURAT LE QUAIRE", "libell_d_acheminement": "MURAT LE QUAIRE", "code_postal": "63150", "coordonnees_gps": [45.5912385571, 2.7549139086], "code_commune_insee": "63246"}, "geometry": {"type": "Point", "coordinates": [2.7549139086, 45.5912385571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce15f742a0110cb2bb1f60c445b0178b366b4e4", "fields": {"nom_de_la_commune": "NOALHAT", "libell_d_acheminement": "NOALHAT", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63253"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d60b043752336a0d95200ed56a0016a4f00afa4f", "fields": {"nom_de_la_commune": "NOHANENT", "libell_d_acheminement": "NOHANENT", "code_postal": "63830", "coordonnees_gps": [45.8036028369, 3.05439430506], "code_commune_insee": "63254"}, "geometry": {"type": "Point", "coordinates": [3.05439430506, 45.8036028369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b575a02b8cf1d45610fb4dc2662cb63064e623", "fields": {"code_postal": "63340", "code_commune_insee": "63255", "libell_d_acheminement": "NONETTE ORSONNETTE", "ligne_5": "ORSONNETTE", "nom_de_la_commune": "NONETTE ORSONNETTE", "coordonnees_gps": [45.450400978, 3.19686495404]}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3870142bc180eb09692751930515509680c0ff3d", "fields": {"nom_de_la_commune": "OLBY", "libell_d_acheminement": "OLBY", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63257"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2879f4afd38a32e894612a6040124d58ba5188", "fields": {"nom_de_la_commune": "OLMET", "libell_d_acheminement": "OLMET", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63260"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba859d85e670f2296a05db2df0a547a022701610", "fields": {"nom_de_la_commune": "ORBEIL", "libell_d_acheminement": "ORBEIL", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63261"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3c88dab5fac7bd83c7c6dcdf08bd023e94d427", "fields": {"nom_de_la_commune": "PARENTIGNAT", "libell_d_acheminement": "PARENTIGNAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63270"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d15248c9e54f5a94a7c2a15ab7f6c21723d8cd", "fields": {"nom_de_la_commune": "PERIGNAT LES SARLIEVE", "libell_d_acheminement": "PERIGNAT LES SARLIEVE", "code_postal": "63170", "coordonnees_gps": [45.7453592394, 3.13138248185], "code_commune_insee": "63272"}, "geometry": {"type": "Point", "coordinates": [3.13138248185, 45.7453592394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d1e50224198e3059e545572f373db1bd71b75cf", "fields": {"nom_de_la_commune": "PONTAUMUR", "libell_d_acheminement": "PONTAUMUR", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63283"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e8ca4fe6fcd5364481dad4309fb4b2dfd78d1a", "fields": {"nom_de_la_commune": "PONTGIBAUD", "libell_d_acheminement": "PONTGIBAUD", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63285"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b1e672d8121c1fd68f8ef8c2dccb22ad9d17c1", "fields": {"nom_de_la_commune": "PUY GUILLAUME", "libell_d_acheminement": "PUY GUILLAUME", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63291"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e97426122b14086ecaf30068211ca45da371cbf", "fields": {"nom_de_la_commune": "QUEUILLE", "libell_d_acheminement": "QUEUILLE", "code_postal": "63780", "coordonnees_gps": [45.9494669995, 2.85840011362], "code_commune_insee": "63294"}, "geometry": {"type": "Point", "coordinates": [2.85840011362, 45.9494669995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ff9f1485fe443b3283d26978ec1b935cab9442", "fields": {"nom_de_la_commune": "PEYSSIES", "libell_d_acheminement": "PEYSSIES", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31416"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d0484b0b7e2fa57231688fa93a6c7c759739d7", "fields": {"nom_de_la_commune": "PINSAGUEL", "libell_d_acheminement": "PINSAGUEL", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31420"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcaf8534eb4a19624e39b3dc54f1e21870d5357d", "fields": {"nom_de_la_commune": "PLAGNOLE", "libell_d_acheminement": "PLAGNOLE", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31423"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fbb3dd211d6330efb0b5e5106f3b1a70ea2504", "fields": {"nom_de_la_commune": "POMPERTUZAT", "libell_d_acheminement": "POMPERTUZAT", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31429"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9011302230f945ec05ea1540a6fd863a68a292", "fields": {"nom_de_la_commune": "PORTET D ASPET", "libell_d_acheminement": "PORTET D ASPET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31431"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c18cce0bc87c47c4bf1b78b4ba59f3deb29ed3", "fields": {"nom_de_la_commune": "POUBEAU", "libell_d_acheminement": "POUBEAU", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31434"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240821e83d6b7b2163fd19ed9aee6350e0aaf45a", "fields": {"nom_de_la_commune": "PRADERE LES BOURGUETS", "libell_d_acheminement": "PRADERE LES BOURGUETS", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31438"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab47881635a2ca361225c17075b1a21d7f844276", "fields": {"nom_de_la_commune": "REBIGUE", "libell_d_acheminement": "REBIGUE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31448"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aada38f637f0de0155cce3464ba0bf39fe909f3", "fields": {"nom_de_la_commune": "RENNEVILLE", "libell_d_acheminement": "RENNEVILLE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31450"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9eec6b0716e1defd466f1e5551a38363a2354c", "fields": {"nom_de_la_commune": "SABONNERES", "libell_d_acheminement": "SABONNERES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31464"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80ce23c5b35568e2dcc6f26481a974380f61690", "fields": {"nom_de_la_commune": "STE FOY DE PEYROLIERES", "libell_d_acheminement": "STE FOY DE PEYROLIERES", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31481"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78fcbdde0508ac0599a8ca24653899c1e332507", "fields": {"nom_de_la_commune": "ST JULIA", "libell_d_acheminement": "ST JULIA", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31491"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2baeb439cbe92fc64d004bcb3d9d18fab1436a88", "fields": {"nom_de_la_commune": "ST LARY BOUJEAN", "libell_d_acheminement": "ST LARY BOUJEAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31493"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95fec1a5752f107b899dbd6519a2ec491319e30", "fields": {"nom_de_la_commune": "ST ORENS DE GAMEVILLE", "libell_d_acheminement": "ST ORENS DE GAMEVILLE", "code_postal": "31650", "coordonnees_gps": [43.5547223319, 1.54753565987], "code_commune_insee": "31506"}, "geometry": {"type": "Point", "coordinates": [1.54753565987, 43.5547223319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c848078eb32a4281f3109ea39313100cc686d7d", "fields": {"nom_de_la_commune": "ST PAUL D OUEIL", "libell_d_acheminement": "ST PAUL D OUEIL", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31508"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44067103482681c0a5d67710676192fbb87e64e", "fields": {"nom_de_la_commune": "ST ROME", "libell_d_acheminement": "ST ROME", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31514"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f36482c6b98a29d5303417a6a334c18eb1b61ea", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31519"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d47cf83d0340ff6bf2536db9edcc08d1d0afcc5", "fields": {"nom_de_la_commune": "SALERM", "libell_d_acheminement": "SALERM", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31522"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d889d46763f136693a98c8c288a9d63a46cbe218", "fields": {"nom_de_la_commune": "SALIES DU SALAT", "libell_d_acheminement": "SALIES DU SALAT", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31523"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736603a0afc73ee2b90dea65914cf5a916d93af4", "fields": {"nom_de_la_commune": "SAUBENS", "libell_d_acheminement": "SAUBENS", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31533"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4d4b53c881ed2b42c29f1e66a010690bd2e694", "fields": {"nom_de_la_commune": "SAVARTHES", "libell_d_acheminement": "SAVARTHES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31537"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e06dc41cd916f8f3a47faefda1427dc33ed56b", "fields": {"nom_de_la_commune": "SEPX", "libell_d_acheminement": "SEPX", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31545"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e148c0abae87eb8cd323b2fdeaaecc0a7f2e7b14", "fields": {"nom_de_la_commune": "SEYRE", "libell_d_acheminement": "SEYRE", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31546"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad73bf9f99b1c5ff23938c904ec6cc30bab671b", "fields": {"nom_de_la_commune": "SIGNAC", "libell_d_acheminement": "SIGNAC", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31548"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b638c3371a62e1274b472dac6c80311f57d6eb8", "fields": {"nom_de_la_commune": "SODE", "libell_d_acheminement": "SODE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31549"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "730a9a7310b042292eda363aacbedaafd29dac74", "fields": {"nom_de_la_commune": "TERREBASSE", "libell_d_acheminement": "TERREBASSE", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31552"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2990e28ee995ec15119dab1bab6ff2ec4f3824d", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31553"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8022a1a29ba8934b80c09d266c79b8cbcb26ba3", "fields": {"nom_de_la_commune": "VALLESVILLES", "libell_d_acheminement": "VALLESVILLES", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31567"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc084c0cccce5cb53d19c119a405997cdca5f1f9", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31568"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bccc0c24da28e51e0dd8e795d8c27d96def991ee", "fields": {"nom_de_la_commune": "VERNET", "libell_d_acheminement": "VERNET", "code_postal": "31810", "coordonnees_gps": [43.4392556161, 1.44590848032], "code_commune_insee": "31574"}, "geometry": {"type": "Point", "coordinates": [1.44590848032, 43.4392556161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c221a0023814594acbc85cc3babd858c702b4a80", "fields": {"nom_de_la_commune": "VIGNAUX", "libell_d_acheminement": "VIGNAUX", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31577"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9d10e74a0a86db7742b92640164e14e9fcd912", "fields": {"nom_de_la_commune": "VIGOULET AUZIL", "libell_d_acheminement": "VIGOULET AUZIL", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31578"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a0cdbf4d6341b4dd78f40659d3784e2e79b572", "fields": {"nom_de_la_commune": "VILLENOUVELLE", "libell_d_acheminement": "VILLENOUVELLE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31589"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119b6a1a1c9ead751e81ccd7671b4c47a5ee7da6", "fields": {"nom_de_la_commune": "ANSAN", "libell_d_acheminement": "ANSAN", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32002"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7fda9b8143fad82d876d9186bfeb185dceb436", "fields": {"nom_de_la_commune": "ARDIZAS", "libell_d_acheminement": "ARDIZAS", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32007"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9139fb5698bd24f5524186dde5e63dc5496a0de8", "fields": {"nom_de_la_commune": "ARMENTIEUX", "libell_d_acheminement": "ARMENTIEUX", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32008"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0effa0e99ba4c76edf34da916da1890e42fb800a", "fields": {"nom_de_la_commune": "ARMOUS ET CAU", "libell_d_acheminement": "ARMOUS ET CAU", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32009"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a350adbe54b184e80be9a6a7a3c1be097679fbb", "fields": {"nom_de_la_commune": "AUCH", "libell_d_acheminement": "AUCH", "code_postal": "32000", "coordonnees_gps": [43.6532557362, 0.574938612747], "code_commune_insee": "32013"}, "geometry": {"type": "Point", "coordinates": [0.574938612747, 43.6532557362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6772bb7b988389c042b1a3604208078789e19dfc", "fields": {"nom_de_la_commune": "AUGNAX", "libell_d_acheminement": "AUGNAX", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32014"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ac20c6ddb4512b538ce71e55cf4f3b861b3995", "fields": {"nom_de_la_commune": "AVERON BERGELLE", "libell_d_acheminement": "AVERON BERGELLE", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32022"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99a3c45277faf873a378b7a38a8a1ad96834fff", "fields": {"nom_de_la_commune": "AYGUETINTE", "libell_d_acheminement": "AYGUETINTE", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32024"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98fae4df40574cfc865b75fc7422323dfb60f512", "fields": {"nom_de_la_commune": "BAJONNETTE", "libell_d_acheminement": "BAJONNETTE", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32026"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46e384ef12ed7bc277f25e43e5d4792d787ac2e", "fields": {"nom_de_la_commune": "BASCOUS", "libell_d_acheminement": "BASCOUS", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32031"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcec3e7b982171a60becb4cb6ee3571732e9929a", "fields": {"nom_de_la_commune": "BAZIAN", "libell_d_acheminement": "BAZIAN", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32033"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cf6cb9961f08af238d0d00a61b032388b4d675", "fields": {"nom_de_la_commune": "BEAUMARCHES", "libell_d_acheminement": "BEAUMARCHES", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32036"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bedc8fe8df21d01f480bbc564421b8da57c3f43c", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32043"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab4c9cd1193c68ec90e3290a2a321a40aacc822a", "fields": {"nom_de_la_commune": "BERNEDE", "libell_d_acheminement": "BERNEDE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32046"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d782cde802fbf7564d69595f3f5822e3628705bf", "fields": {"nom_de_la_commune": "BETPLAN", "libell_d_acheminement": "BETPLAN", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32050"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc77d6d26098774cf30eb14c742a090ede91b80c", "fields": {"nom_de_la_commune": "BEZOLLES", "libell_d_acheminement": "BEZOLLES", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32052"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e2ace3412d213b047ea9fd8a3c53cada466889", "fields": {"nom_de_la_commune": "BEZUES BAJON", "libell_d_acheminement": "BEZUES BAJON", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32053"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcd0780239b0e50576e6567c64c0eb8c172325a", "fields": {"nom_de_la_commune": "BLOUSSON SERIAN", "libell_d_acheminement": "BLOUSSON SERIAN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32058"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd0fe713c4b1287371158c4d655418c3587b68e9", "fields": {"nom_de_la_commune": "BOULAUR", "libell_d_acheminement": "BOULAUR", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32061"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f3364cc8e336e817cd629231b6d27baf5eb7a4", "fields": {"nom_de_la_commune": "LE BROUILH MONBERT", "libell_d_acheminement": "LE BROUILH MONBERT", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32065"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe846b0b4d5f2b1331e4329b7cd1b3c5df041dd6", "fields": {"nom_de_la_commune": "BRUGNENS", "libell_d_acheminement": "BRUGNENS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32066"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f6c75927f94da8ed427b0e87c99034fedf3412", "fields": {"nom_de_la_commune": "CANNET", "libell_d_acheminement": "CANNET", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32074"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275433c793c6b964ddec0e50f4c289cfcd9e7e20", "fields": {"nom_de_la_commune": "CASSAIGNE", "libell_d_acheminement": "CASSAIGNE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32075"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b16d29c4034ab821547af2df601811efbe0276", "fields": {"nom_de_la_commune": "CASTELNAU D ARBIEU", "libell_d_acheminement": "CASTELNAU D ARBIEU", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32078"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4c865de76a510563445f59029082282556b834", "fields": {"code_postal": "32250", "code_commune_insee": "32079", "libell_d_acheminement": "CASTELNAU D AUZAN LABARRERE", "ligne_5": "LABARRERE", "nom_de_la_commune": "CASTELNAU D AUZAN LABARRERE", "coordonnees_gps": [43.956623436, 0.171871761576]}, "geometry": {"type": "Point", "coordinates": [0.171871761576, 43.956623436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ccb8cac64b8cc6a61053cb01e925446ea1c94f2", "fields": {"nom_de_la_commune": "CASTELNAU SUR L AUVIGNON", "libell_d_acheminement": "CASTELNAU SUR L AUVIGNON", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32080"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee8401354ee3ecdc4af7519f71342e0aca32e04", "fields": {"nom_de_la_commune": "CASTET ARROUY", "libell_d_acheminement": "CASTET ARROUY", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32085"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d396ac6aa6254c7d9fc1a2623856247e24f084c9", "fields": {"nom_de_la_commune": "CASTILLON DEBATS", "libell_d_acheminement": "CASTILLON DEBATS", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32088"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca56e7e2ef5601b2756317039be299d79702cda7", "fields": {"nom_de_la_commune": "CATONVIELLE", "libell_d_acheminement": "CATONVIELLE", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32092"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ed9469921ff4a42715fbc6737df242bfd061a1", "fields": {"nom_de_la_commune": "CAUSSENS", "libell_d_acheminement": "CAUSSENS", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32095"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2484228500fbbe1b553df2077cfc97d02b74a5bb", "fields": {"nom_de_la_commune": "CAZAUX D ANGLES", "libell_d_acheminement": "CAZAUX D ANGLES", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32097"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a953ccde96d7ed74e76c8c1d4d5b3444faeaa8f", "fields": {"nom_de_la_commune": "CAZAUX SAVES", "libell_d_acheminement": "CAZAUX SAVES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32098"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fb1e3ea702ade719112d59b2767fafbe6b12e6", "fields": {"nom_de_la_commune": "CEZAN", "libell_d_acheminement": "CEZAN", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32102"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7093ae3f950f292f89f9acbe8414a499973e0411", "fields": {"nom_de_la_commune": "CORNEILLAN", "libell_d_acheminement": "CORNEILLAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32108"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19eda877d811709e76c7edd2f2623ddd0d45a9fe", "fields": {"nom_de_la_commune": "CRAVENCERES", "libell_d_acheminement": "CRAVENCERES", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32113"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623cf84c69d5ddd2f1aed1110f5370bccbb4fc40", "fields": {"nom_de_la_commune": "DEMU", "libell_d_acheminement": "DEMU", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32115"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c21c2f81507dd907a7ddefc7accdfbd3c76f21", "fields": {"nom_de_la_commune": "ENDOUFIELLE", "libell_d_acheminement": "ENDOUFIELLE", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32121"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a340bc10311cb5ffa3ee898bfb6c22404c6d72b6", "fields": {"nom_de_la_commune": "ESTANG", "libell_d_acheminement": "ESTANG", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32127"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3709b13f5b59dca19af1a63f3f1d2a1ceca72c", "fields": {"nom_de_la_commune": "FLEURANCE", "libell_d_acheminement": "FLEURANCE", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32132"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0947a3d04a43505c6b18a817b78acad9b31732f8", "fields": {"nom_de_la_commune": "GALIAX", "libell_d_acheminement": "GALIAX", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32136"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461f1a9b991880ea1df3223a775d2822a4b2715e", "fields": {"nom_de_la_commune": "IZOTGES", "libell_d_acheminement": "IZOTGES", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32161"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c048babfbcb9da276df42a50059f16eff83e2571", "fields": {"nom_de_la_commune": "JEGUN", "libell_d_acheminement": "JEGUN", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32162"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728393478d0e2705a80f3c9c03609ef05fe7e349", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE FIMARCON", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32176"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a329891868c32134720296e9c3f38ab1d04ef32", "fields": {"nom_de_la_commune": "LAHITTE", "libell_d_acheminement": "LAHITTE", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32183"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13645c65dfeb69e7f89b3c300b608120ce74ea7", "fields": {"nom_de_la_commune": "YQUELON", "libell_d_acheminement": "YQUELON", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50647"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0525f67c9031801f22d480634e13d6357c78e38", "fields": {"nom_de_la_commune": "AMBRIERES", "libell_d_acheminement": "AMBRIERES", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51008"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a78e2b86913af6204f5fe5761af765ec96157c0", "fields": {"nom_de_la_commune": "ANTHENAY", "libell_d_acheminement": "ANTHENAY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51012"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d3317af77f36e201979075693cdbcc7344179f", "fields": {"nom_de_la_commune": "ATHIS", "libell_d_acheminement": "ATHIS", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51018"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc272d252de1c737bd81d8d385642613375af11", "fields": {"nom_de_la_commune": "AULNAY L AITRE", "libell_d_acheminement": "AULNAY L AITRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51022"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebea3f56d0c0bba2bbe072cd4ffb487a09c868f", "fields": {"nom_de_la_commune": "AUMENANCOURT", "libell_d_acheminement": "AUMENANCOURT", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51025"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565d20025c1c4c7780f932f6d27d12a7e4675c78", "fields": {"nom_de_la_commune": "AVIZE", "libell_d_acheminement": "AVIZE", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51029"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b1b7944d119c31d7187cf2056fcbd984320575", "fields": {"nom_de_la_commune": "AY CHAMPAGNE", "libell_d_acheminement": "AY CHAMPAGNE", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51030"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef38ae3a5998e8b2e4fa9ea4f643b1bd93a5c37d", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51035"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bffdeb4cee1e9f656ba606095a204c4ad1ac4aff", "fields": {"nom_de_la_commune": "BARBONNE FAYEL", "libell_d_acheminement": "BARBONNE FAYEL", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51036"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b8ce54e7b24bc59c305fdf040971bf0aa0cf96", "fields": {"nom_de_la_commune": "BETHENIVILLE", "libell_d_acheminement": "BETHENIVILLE", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51054"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90ddf655c0c13bff35222a8d2e5d14eaf4a75d9", "fields": {"nom_de_la_commune": "BLAISE SOUS ARZILLIERES", "libell_d_acheminement": "BLAISE SOUS ARZILLIERES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51066"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7deb0112e2439fbda61a382af76a22b8f6aea329", "fields": {"nom_de_la_commune": "BLIGNY", "libell_d_acheminement": "BLIGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51069"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc04cc058ff5bd63dae7bb2ba75539574b738d9", "fields": {"nom_de_la_commune": "BOURGOGNE", "libell_d_acheminement": "BOURGOGNE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51075"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afed39c15259abbdaab096b1e40b00293d9d7eda", "fields": {"nom_de_la_commune": "BOUY", "libell_d_acheminement": "BOUY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51078"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a841a9a38dea9e4af78d4d0cd41b306bfdad4480", "fields": {"nom_de_la_commune": "BRANDONVILLERS", "libell_d_acheminement": "BRANDONVILLERS", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51080"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466193024ab294ab24fd7a13246b2297c5c8baa5", "fields": {"nom_de_la_commune": "BRAUX STE COHIERE", "libell_d_acheminement": "BRAUX STE COHIERE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51082"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298e511d1db8324faf85631d96cc81e8d3306fd3", "fields": {"nom_de_la_commune": "BREUIL", "libell_d_acheminement": "BREUIL", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51086"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a49b3843a3ac7746eb8067070c87a8c5defd300", "fields": {"nom_de_la_commune": "BROYES", "libell_d_acheminement": "BROYES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51092"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df950fc444673af62e3a36da9f44647385fb8332", "fields": {"nom_de_la_commune": "LA CAURE", "libell_d_acheminement": "LA CAURE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51100"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4035b592964c59719a533d3cd274b7141ba3386c", "fields": {"nom_de_la_commune": "CERNAY LES REIMS", "libell_d_acheminement": "CERNAY LES REIMS", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51105"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4b93f3a1c555438b30479d3bf049b8782b273d", "fields": {"nom_de_la_commune": "CHAINTRIX BIERGES", "libell_d_acheminement": "CHAINTRIX BIERGES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51107"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b10f19969b669c06d8f6b1cec94b5da1a9b0dc", "fields": {"nom_de_la_commune": "CHALTRAIT", "libell_d_acheminement": "CHALTRAIT", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51110"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6b0227a24e491fd9629a9d9c8904828ce98a0d", "fields": {"nom_de_la_commune": "BAZOUGERS", "libell_d_acheminement": "BAZOUGERS", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53025"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc13ce8779128b53607b5643c9c6acc5b4da900", "fields": {"nom_de_la_commune": "BEAUMONT PIED DE BOEUF", "libell_d_acheminement": "BEAUMONT PIED DE BOEUF", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53027"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de096ce183c4184810ee839efbfc742fcc31bca8", "fields": {"nom_de_la_commune": "BELGEARD", "libell_d_acheminement": "BELGEARD", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53028"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7f8e4b2732029b9ca2c581c709f79cd53b6d56", "fields": {"nom_de_la_commune": "BREE", "libell_d_acheminement": "BREE", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53043"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2fe1bb995de10fd59569c6dc44e1b5e6b97709", "fields": {"nom_de_la_commune": "LA BRULATTE", "libell_d_acheminement": "LA BRULATTE", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53045"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279205b88d1898ddadfdec77979fc3dde415e836", "fields": {"nom_de_la_commune": "LE BURET", "libell_d_acheminement": "LE BURET", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53046"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257d994ae9b7c6ed85ef6e1fd647edeb3ea2044e", "fields": {"nom_de_la_commune": "CHAILLAND", "libell_d_acheminement": "CHAILLAND", "code_postal": "53420", "coordonnees_gps": [48.2329805228, -0.867786035333], "code_commune_insee": "53048"}, "geometry": {"type": "Point", "coordinates": [-0.867786035333, 48.2329805228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc312cd62fa88bd57f0f94a4b67ba8a9d72fb085", "fields": {"nom_de_la_commune": "CHANTRIGNE", "libell_d_acheminement": "CHANTRIGNE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53055"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a861b72d9f8e2aca5573770997eec82cb20c13", "fields": {"nom_de_la_commune": "LA CHAPELLE ANTHENAISE", "libell_d_acheminement": "LA CHAPELLE ANTHENAISE", "code_postal": "53950", "coordonnees_gps": [48.1285774332, -0.685956019561], "code_commune_insee": "53056"}, "geometry": {"type": "Point", "coordinates": [-0.685956019561, 48.1285774332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce26fea138d68e097eabfc96c31ef6f01ce15b0", "fields": {"nom_de_la_commune": "LA CHAPELLE AU RIBOUL", "libell_d_acheminement": "LA CHAPELLE AU RIBOUL", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53057"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0042f0391d4c45bf1053f2bf7adb4e5e6e022994", "fields": {"nom_de_la_commune": "CHATRES LA FORET", "libell_d_acheminement": "CHATRES LA FORET", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53065"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2ad52a84b72f646ece0a0c438da1abaa86c000", "fields": {"nom_de_la_commune": "COSSE EN CHAMPAGNE", "libell_d_acheminement": "COSSE EN CHAMPAGNE", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53076"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d42be399e43f303c90df48618cd9b26a8ba6d60d", "fields": {"nom_de_la_commune": "COURBEVEILLE", "libell_d_acheminement": "COURBEVEILLE", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53082"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b78e7cd2b8b8b2bc0ec09d64a6c87672a3288f", "fields": {"nom_de_la_commune": "CRAON", "libell_d_acheminement": "CRAON", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53084"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e295606a10abc86a5d8f8204a3d256a39daa720d", "fields": {"nom_de_la_commune": "CUILLE", "libell_d_acheminement": "CUILLE", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53088"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8fc7a55182abb95b03d5858ce880633909f72a", "fields": {"nom_de_la_commune": "DESERTINES", "libell_d_acheminement": "DESERTINES", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53091"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6a58759cb7a67a09ae735195324ddfa96418ce", "fields": {"nom_de_la_commune": "EVRON", "libell_d_acheminement": "EVRON", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53097"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0504c53acd93349b245954daf6e2941362a7a4b", "fields": {"nom_de_la_commune": "GASTINES", "libell_d_acheminement": "GASTINES", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53102"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b46d96229d7b8812f99bbadfd31d87d5454953", "fields": {"nom_de_la_commune": "GRAZAY", "libell_d_acheminement": "GRAZAY", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53109"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "013d5ed2c5a5cbc011841c1493a71163292c0811", "fields": {"nom_de_la_commune": "LE HORPS", "libell_d_acheminement": "LE HORPS", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53116"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ccff75c4ee721b8fbd54c19d601719a7bd0e24", "fields": {"nom_de_la_commune": "LANDIVY", "libell_d_acheminement": "LANDIVY", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53125"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbec53bae3ee23111f551bc91855d60738b1a05", "fields": {"nom_de_la_commune": "LASSAY LES CHATEAUX", "libell_d_acheminement": "LASSAY LES CHATEAUX", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53127"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94bf273c3df28aa5ccacb590ca59c1574ab3a0f", "fields": {"code_postal": "53110", "code_commune_insee": "53127", "libell_d_acheminement": "LASSAY LES CHATEAUX", "ligne_5": "NIORT LA FONTAINE", "nom_de_la_commune": "LASSAY LES CHATEAUX", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1808d8151c2ae09a31986b38911fac46e6d326", "fields": {"nom_de_la_commune": "LAUBRIERES", "libell_d_acheminement": "LAUBRIERES", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53128"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da567f312d1a805755954fb883edd5838bec3b0", "fields": {"nom_de_la_commune": "LAVAL", "libell_d_acheminement": "LAVAL", "code_postal": "53000", "coordonnees_gps": [48.061207848, -0.766068526202], "code_commune_insee": "53130"}, "geometry": {"type": "Point", "coordinates": [-0.766068526202, 48.061207848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce4ab52ef1613e39ac318540f2908855e392495", "fields": {"nom_de_la_commune": "LIGNIERES ORGERES", "libell_d_acheminement": "LIGNIERES ORGERES", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53133"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49a3abf27264918b6cfed73ca60a9c6e5587b1e", "fields": {"nom_de_la_commune": "LOUPFOUGERES", "libell_d_acheminement": "LOUPFOUGERES", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53139"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a22946a43ba87f48571353629465dae089188e", "fields": {"nom_de_la_commune": "MAISONCELLES DU MAINE", "libell_d_acheminement": "MAISONCELLES DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53143"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d535068ed273123db1e344f4c4cfad979eb3c9bd", "fields": {"nom_de_la_commune": "MARCILLE LA VILLE", "libell_d_acheminement": "MARCILLE LA VILLE", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53144"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17feeb5f05b6c67a19453b3368dc84b760040235", "fields": {"nom_de_la_commune": "MAYENNE", "libell_d_acheminement": "MAYENNE", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53147"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ae800d08fdb38fadc0fbfe1aa1ebc92e5a7191", "fields": {"nom_de_la_commune": "MENIL", "libell_d_acheminement": "MENIL", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53150"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "916317c3d1c622140a89fb0370e6783f64dbd3bf", "fields": {"nom_de_la_commune": "MERAL", "libell_d_acheminement": "MERAL", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53151"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d019c38f12bc3aa070e76ba600b962f6fe6028cf", "fields": {"nom_de_la_commune": "MONTIGNE LE BRILLANT", "libell_d_acheminement": "MONTIGNE LE BRILLANT", "code_postal": "53970", "coordonnees_gps": [48.0004120893, -0.787519584296], "code_commune_insee": "53157"}, "geometry": {"type": "Point", "coordinates": [-0.787519584296, 48.0004120893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56799ae336dc054a8a00feddd185704e0fcf4307", "fields": {"nom_de_la_commune": "MONTJEAN", "libell_d_acheminement": "MONTJEAN", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53158"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162fa6a8505966f0ec1c81e4f2a063a8912b7ec6", "fields": {"nom_de_la_commune": "MONTREUIL POULAY", "libell_d_acheminement": "MONTREUIL POULAY", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53160"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ab38dfa5f520ae0255db80b65a1302b2e55262", "fields": {"code_postal": "53640", "code_commune_insee": "53160", "libell_d_acheminement": "MONTREUIL POULAY", "ligne_5": "POULAY", "nom_de_la_commune": "MONTREUIL POULAY", "coordonnees_gps": [48.3702796098, -0.466991822845]}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e2cf0bcacd1d9f0c5c0c7e5d9adb2dffd5f6868", "fields": {"nom_de_la_commune": "NEAU", "libell_d_acheminement": "NEAU", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53163"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "758508b98f5c5f2799d4fd1acb2324dd7329cd5a", "fields": {"nom_de_la_commune": "NUILLE SUR VICOIN", "libell_d_acheminement": "NUILLE SUR VICOIN", "code_postal": "53970", "coordonnees_gps": [48.0004120893, -0.787519584296], "code_commune_insee": "53168"}, "geometry": {"type": "Point", "coordinates": [-0.787519584296, 48.0004120893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ae8a066918920a70f068e173fc287330542aa5", "fields": {"nom_de_la_commune": "OISSEAU", "libell_d_acheminement": "OISSEAU", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53170"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07bcccd324d55714053aecd4b67db71072f02e95", "fields": {"nom_de_la_commune": "LA PALLU", "libell_d_acheminement": "LA PALLU", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53173"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db85045c4a5dbceed6d7af3432d4b98b8afb3d60", "fields": {"code_postal": "53140", "code_commune_insee": "53185", "libell_d_acheminement": "PRE EN PAIL ST SAMSON", "ligne_5": "ST SAMSON", "nom_de_la_commune": "PRE EN PAIL ST SAMSON", "coordonnees_gps": [48.4797003216, -0.222461490352]}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7506fb2342cce41c7a40b807b1a1af76b793b7b5", "fields": {"nom_de_la_commune": "RENNES EN GRENOUILLES", "libell_d_acheminement": "RENNES EN GRENOUILLES", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53189"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c15e42b14896e513283570d4ee447b3f03a5f1f4", "fields": {"nom_de_la_commune": "ST AUBIN DU DESERT", "libell_d_acheminement": "ST AUBIN DU DESERT", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53198"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0328f928ad9c418b9ad0392ce9784b8a37cc18ce", "fields": {"nom_de_la_commune": "ST BAUDELLE", "libell_d_acheminement": "ST BAUDELLE", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53200"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cd621c76febd76c3c7534e8d87b5b57f5fd9bc", "fields": {"nom_de_la_commune": "ST DENIS DE GASTINES", "libell_d_acheminement": "ST DENIS DE GASTINES", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53211"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d4b49733d081244db9d06f99978a3053be627f", "fields": {"nom_de_la_commune": "ST DENIS DU MAINE", "libell_d_acheminement": "ST DENIS DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53212"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9c6b8121dcd25f624087bfb3128046113237f7", "fields": {"nom_de_la_commune": "ST ERBLON", "libell_d_acheminement": "ST ERBLON", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53214"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdd5c3dca63bc4dd379052be0b57508cdb9341b", "fields": {"nom_de_la_commune": "ST GERMAIN LE FOUILLOUX", "libell_d_acheminement": "ST GERMAIN LE FOUILLOUX", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53224"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d3287b0ade29ec92eb70c3d7aae103f13c6e51", "fields": {"nom_de_la_commune": "ST HILAIRE DU MAINE", "libell_d_acheminement": "ST HILAIRE DU MAINE", "code_postal": "53380", "coordonnees_gps": [48.2253517545, -1.00061376372], "code_commune_insee": "53226"}, "geometry": {"type": "Point", "coordinates": [-1.00061376372, 48.2253517545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69aca9715d780d4ede779b3c36f9b2dd26c984a", "fields": {"nom_de_la_commune": "ST JEAN SUR ERVE", "libell_d_acheminement": "ST JEAN SUR ERVE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53228"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36376f880b8690ba3a0c7cdeba486ef40fe3f7f6", "fields": {"nom_de_la_commune": "STE MARIE DU BOIS", "libell_d_acheminement": "STE MARIE DU BOIS", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53235"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78065b248be99b7e1af917b056d6f51536355eb", "fields": {"nom_de_la_commune": "ST MARS DU DESERT", "libell_d_acheminement": "ST MARS DU DESERT", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53236"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf7a8f51bc161968ca8e56bb548fccc683d41de0", "fields": {"nom_de_la_commune": "ST MARTIN DU LIMET", "libell_d_acheminement": "ST MARTIN DU LIMET", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53240"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49ed270d9b6bd2bea5f345f42f1f309048fe2091", "fields": {"nom_de_la_commune": "ST PIERRE DES NIDS", "libell_d_acheminement": "ST PIERRE DES NIDS", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53246"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90428d84aa35acc3dcd71a479d0a7b1ea8d129a0", "fields": {"nom_de_la_commune": "ST SATURNIN DU LIMET", "libell_d_acheminement": "ST SATURNIN DU LIMET", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53253"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf1a32ddfff17230a07df86dc18ed3c59b65387", "fields": {"nom_de_la_commune": "LA SELLE CRAONNAISE", "libell_d_acheminement": "LA SELLE CRAONNAISE", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53258"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a26f2e56d064cff27490efb6d66fa312eeb21a", "fields": {"nom_de_la_commune": "SOUCE", "libell_d_acheminement": "SOUCE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53261"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5862c9bb5dd91666e18682df35ab7f694ef4d2c", "fields": {"nom_de_la_commune": "SOULGE SUR OUETTE", "libell_d_acheminement": "SOULGE SUR OUETTE", "code_postal": "53210", "coordonnees_gps": [48.0752567481, -0.609038039774], "code_commune_insee": "53262"}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8416077732499b5212f8128465fa70618891bfa", "fields": {"code_postal": "53210", "code_commune_insee": "53262", "libell_d_acheminement": "SOULGE SUR OUETTE", "ligne_5": "NUILLE SUR OUETTE", "nom_de_la_commune": "SOULGE SUR OUETTE", "coordonnees_gps": [48.0752567481, -0.609038039774]}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f2d92e171e0ce8f9696935b8aaa5dafe9641c2", "fields": {"nom_de_la_commune": "TRANS", "libell_d_acheminement": "TRANS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53266"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9978149d41ea752abe2ad9a8b148c8f81e0e165c", "fields": {"nom_de_la_commune": "VILLAINES LA JUHEL", "libell_d_acheminement": "VILLAINES LA JUHEL", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53271"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5977759c4246c7c63ccef3ad5e3309156c59f94c", "fields": {"nom_de_la_commune": "VOUTRE", "libell_d_acheminement": "VOUTRE", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53276"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b920eae2bf3fe70e3d4127778477ff1bc684bd24", "fields": {"nom_de_la_commune": "ABONCOURT", "libell_d_acheminement": "ABONCOURT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54003"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41520572e26905929cadf3fb242650e9c75337d7", "fields": {"nom_de_la_commune": "ALLAIN", "libell_d_acheminement": "ALLAIN", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54008"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462ed65a3587967c041f19dd706937e6784850b0", "fields": {"nom_de_la_commune": "ARRACOURT", "libell_d_acheminement": "ARRACOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54023"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0b8a45e4610cd3d9ceb21064110ff38cbf4771", "fields": {"nom_de_la_commune": "ARRAYE ET HAN", "libell_d_acheminement": "ARRAYE ET HAN", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54024"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c1f5c87643253124d834fac1f83f6ed56d179a", "fields": {"nom_de_la_commune": "AUBOUE", "libell_d_acheminement": "AUBOUE", "code_postal": "54580", "coordonnees_gps": [49.1903187118, 5.97291024326], "code_commune_insee": "54028"}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec4fc85fadf366099545053f0c042fa0be150fe", "fields": {"nom_de_la_commune": "AUTREY", "libell_d_acheminement": "AUTREY", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54032"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3080326d84642f9319af76d08957ac0e0d1103ef", "fields": {"nom_de_la_commune": "AVILLERS", "libell_d_acheminement": "AVILLERS", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54033"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82743be13c1be5556f21302af62b8e9c0a870e20", "fields": {"nom_de_la_commune": "BADONVILLER", "libell_d_acheminement": "BADONVILLER", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54040"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94148b37c455a0d15d5056888f64baa7022a90b", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54041"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d960df7064509061363088f67b578e311c135d", "fields": {"nom_de_la_commune": "BARBAS", "libell_d_acheminement": "BARBAS", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54044"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705d001d1b1297c68445805c7599599256908ba3", "fields": {"nom_de_la_commune": "LES BAROCHES", "libell_d_acheminement": "LES BAROCHES", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54048"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c1c9c5310802f9b31d6c38f4df35808b1754d8", "fields": {"nom_de_la_commune": "BAYONVILLE SUR MAD", "libell_d_acheminement": "BAYONVILLE SUR MAD", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54055"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dca2365cd3a890c132a6da18216627da1dd60a1", "fields": {"nom_de_la_commune": "BELLEVILLE", "libell_d_acheminement": "BELLEVILLE", "code_postal": "54940", "coordonnees_gps": [48.8142398061, 6.08946411374], "code_commune_insee": "54060"}, "geometry": {"type": "Point", "coordinates": [6.08946411374, 48.8142398061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c685760c404c22b3cd7c43750fce512e2f8df119", "fields": {"nom_de_la_commune": "BENAMENIL", "libell_d_acheminement": "BENAMENIL", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54061"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0640c4880c4e552702516b984c3d3d3c58bbff", "fields": {"nom_de_la_commune": "BERTRAMBOIS", "libell_d_acheminement": "BERTRAMBOIS", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54064"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066093b9a2bcbececb225dc4846a3a61246db9cd", "fields": {"nom_de_la_commune": "BERTRICHAMPS", "libell_d_acheminement": "BERTRICHAMPS", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54065"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b95e5b62d173062f3e0e4059f4ed98abc34e97", "fields": {"nom_de_la_commune": "BEY SUR SEILLE", "libell_d_acheminement": "BEY SUR SEILLE", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54070"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98dd981273ba9b54b644456028089f29fc5b990c", "fields": {"nom_de_la_commune": "BIENVILLE LA PETITE", "libell_d_acheminement": "BIENVILLE LA PETITE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54074"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34a2ba266778a13d4f20c85b1dc1f90f03c64a1", "fields": {"nom_de_la_commune": "BLAMONT", "libell_d_acheminement": "BLAMONT", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54077"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957d625bab73f3608d1fb1afde571eee97d71e05", "fields": {"nom_de_la_commune": "BLEMEREY", "libell_d_acheminement": "BLEMEREY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54078"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0dab6f383b491199dc2bed52c18cf75b8f177c", "fields": {"nom_de_la_commune": "BOUILLONVILLE", "libell_d_acheminement": "BOUILLONVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54087"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f50efd011550b654cc3abfec33061231a7a0495", "fields": {"nom_de_la_commune": "BRATTE", "libell_d_acheminement": "BRATTE", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54095"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad81f9046ccecd46d5a83b4b76d4172656207ea", "fields": {"nom_de_la_commune": "BREMENIL", "libell_d_acheminement": "BREMENIL", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54097"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c26972c258f6762c7f29530d7482271f5f2af4", "fields": {"nom_de_la_commune": "BREMONCOURT", "libell_d_acheminement": "BREMONCOURT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54098"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cc549703d69988a0b76ee707ebc17dff1cb558", "fields": {"nom_de_la_commune": "BRIEY", "libell_d_acheminement": "BRIEY", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54099"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e873baa1ff0658480a02981918f999b4d5ecdff", "fields": {"nom_de_la_commune": "BRIN SUR SEILLE", "libell_d_acheminement": "BRIN SUR SEILLE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54100"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece8487307a026963707b7fa2ad9745a78dceec2", "fields": {"nom_de_la_commune": "BROUVILLE", "libell_d_acheminement": "BROUVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54101"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e4b39505af8292d3f39c752bc1988a332c2a04", "fields": {"nom_de_la_commune": "BURES", "libell_d_acheminement": "BURES", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54106"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad21814e63db1e4d83d9c5a720e61270024ae55", "fields": {"nom_de_la_commune": "BURIVILLE", "libell_d_acheminement": "BURIVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54107"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f899cfa6cffa6d78f741bcd4d1ef15b41acbf0", "fields": {"nom_de_la_commune": "CEINTREY", "libell_d_acheminement": "CEINTREY", "code_postal": "54134", "coordonnees_gps": [48.5293245976, 6.1775765715], "code_commune_insee": "54109"}, "geometry": {"type": "Point", "coordinates": [6.1775765715, 48.5293245976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbdc18b9703b136eaf32790f2d41de4a7dc1312", "fields": {"nom_de_la_commune": "CHANTEHEUX", "libell_d_acheminement": "CHANTEHEUX", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54116"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bbb401d82723066c64f047720bb46dd653495c", "fields": {"nom_de_la_commune": "CHARMES LA COTE", "libell_d_acheminement": "CHARMES LA COTE", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54120"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6ddb39689fbb25f4f86c0ebbb0e37fad950f90", "fields": {"nom_de_la_commune": "CIREY SUR VEZOUZE", "libell_d_acheminement": "CIREY SUR VEZOUZE", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54129"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85cedd0673ff4653a49cd5c07b1d22efb915bc5", "fields": {"nom_de_la_commune": "COLOMBEY LES BELLES", "libell_d_acheminement": "COLOMBEY LES BELLES", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54135"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7536d054a11030e27424f93ef97de6216a8ec7aa", "fields": {"nom_de_la_commune": "COYVILLER", "libell_d_acheminement": "COYVILLER", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54141"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffa9a34c4f3d6f665cc3c7ad01d90237e7025ae", "fields": {"nom_de_la_commune": "CREPEY", "libell_d_acheminement": "CREPEY", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54143"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebcfa955bac4e40197248f8e10e5673d98950be0", "fields": {"nom_de_la_commune": "CRION", "libell_d_acheminement": "CRION", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54147"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c6decfaa079723ef869b9120f8407d0752fa025", "fields": {"nom_de_la_commune": "CUTRY", "libell_d_acheminement": "CUTRY", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54151"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d59a8bdc6064493fd4d7a22fd55e6a6ea4b0ca4", "fields": {"nom_de_la_commune": "SAULX LES CHARTREUX", "libell_d_acheminement": "SAULX LES CHARTREUX", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91587"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78cb8651756653ab4000e816e3eaddd869c07b6", "fields": {"nom_de_la_commune": "SAVIGNY SUR ORGE", "libell_d_acheminement": "SAVIGNY SUR ORGE", "code_postal": "91600", "coordonnees_gps": [48.6839573506, 2.34917991911], "code_commune_insee": "91589"}, "geometry": {"type": "Point", "coordinates": [2.34917991911, 48.6839573506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470cd3decbc983425aef4d90cb0d77fe0a3a1cfd", "fields": {"nom_de_la_commune": "VALPUISEAUX", "libell_d_acheminement": "VALPUISEAUX", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91629"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b688efdc62be1b90db72019bdfcb8ced48f243", "fields": {"nom_de_la_commune": "VAUGRIGNEUSE", "libell_d_acheminement": "VAUGRIGNEUSE", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91634"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9834f70e1f50472df5b27062bccfe3459d4a990", "fields": {"nom_de_la_commune": "VAUHALLAN", "libell_d_acheminement": "VAUHALLAN", "code_postal": "91430", "coordonnees_gps": [48.7339593054, 2.21260184658], "code_commune_insee": "91635"}, "geometry": {"type": "Point", "coordinates": [2.21260184658, 48.7339593054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d0c5f8c95343985ce91ea231c5bb0a7e664992f", "fields": {"nom_de_la_commune": "BOIS COLOMBES", "libell_d_acheminement": "BOIS COLOMBES", "code_postal": "92270", "coordonnees_gps": [48.9156526901, 2.26727430129], "code_commune_insee": "92009"}, "geometry": {"type": "Point", "coordinates": [2.26727430129, 48.9156526901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f70f99d1128f7d53507b33de7328be8ac60cade", "fields": {"nom_de_la_commune": "CHATENAY MALABRY", "libell_d_acheminement": "CHATENAY MALABRY", "code_postal": "92290", "coordonnees_gps": [48.7683241133, 2.26382535631], "code_commune_insee": "92019"}, "geometry": {"type": "Point", "coordinates": [2.26382535631, 48.7683241133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f2aa406d445a5e28af41f999b7f2330164fbea", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "92320", "coordonnees_gps": [48.8030902828, 2.2864012174], "code_commune_insee": "92020"}, "geometry": {"type": "Point", "coordinates": [2.2864012174, 48.8030902828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66555e8a14bc91112f4317a5cce64d4d6d47fe71", "fields": {"code_postal": "92140", "code_commune_insee": "92023", "libell_d_acheminement": "CLAMART", "ligne_5": "LE PETIT CLAMART", "nom_de_la_commune": "CLAMART", "coordonnees_gps": [48.7967176819, 2.25385173895]}, "geometry": {"type": "Point", "coordinates": [2.25385173895, 48.7967176819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00ae222bb8c7ed72134a3d7ed41ca593eeefcb7", "fields": {"nom_de_la_commune": "COURBEVOIE", "libell_d_acheminement": "COURBEVOIE", "code_postal": "92400", "coordonnees_gps": [48.8983884255, 2.25522376319], "code_commune_insee": "92026"}, "geometry": {"type": "Point", "coordinates": [2.25522376319, 48.8983884255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259cca308c09eccee4d4ddd0245805bd68b8407d", "fields": {"nom_de_la_commune": "FONTENAY AUX ROSES", "libell_d_acheminement": "FONTENAY AUX ROSES", "code_postal": "92260", "coordonnees_gps": [48.7896302863, 2.28707483751], "code_commune_insee": "92032"}, "geometry": {"type": "Point", "coordinates": [2.28707483751, 48.7896302863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4dfc29aaef169cee10ca53022b45a7e944a7035", "fields": {"nom_de_la_commune": "LEVALLOIS PERRET", "libell_d_acheminement": "LEVALLOIS PERRET", "code_postal": "92300", "coordonnees_gps": [48.8951336953, 2.28682447096], "code_commune_insee": "92044"}, "geometry": {"type": "Point", "coordinates": [2.28682447096, 48.8951336953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a4b9da6f83a9a5d8d0a3cb332742f245f2a75f", "fields": {"nom_de_la_commune": "PANTIN", "libell_d_acheminement": "PANTIN", "code_postal": "93500", "coordonnees_gps": [48.8984397601, 2.40883983631], "code_commune_insee": "93055"}, "geometry": {"type": "Point", "coordinates": [2.40883983631, 48.8984397601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d952110bbbe727c322949cde676c71da9db21b9", "fields": {"nom_de_la_commune": "LES PAVILLONS SOUS BOIS", "libell_d_acheminement": "LES PAVILLONS SOUS BOIS", "code_postal": "93320", "coordonnees_gps": [48.9077599592, 2.50325789732], "code_commune_insee": "93057"}, "geometry": {"type": "Point", "coordinates": [2.50325789732, 48.9077599592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba84aac25f5b15db3c4a58ad034e6fb56480b28", "fields": {"nom_de_la_commune": "LE PRE ST GERVAIS", "libell_d_acheminement": "LE PRE ST GERVAIS", "code_postal": "93310", "coordonnees_gps": [48.8849181509, 2.40614464546], "code_commune_insee": "93061"}, "geometry": {"type": "Point", "coordinates": [2.40614464546, 48.8849181509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c38ca26a125654780737b1e664565c242776190", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "93200", "coordonnees_gps": [48.9296140653, 2.35920270384], "code_commune_insee": "93066"}, "geometry": {"type": "Point", "coordinates": [2.35920270384, 48.9296140653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7d5fc0ecbc70cc28a97ddad699362e6db582d6", "fields": {"nom_de_la_commune": "VILLEPINTE", "libell_d_acheminement": "VILLEPINTE", "code_postal": "93420", "coordonnees_gps": [48.9594041186, 2.53661738011], "code_commune_insee": "93078"}, "geometry": {"type": "Point", "coordinates": [2.53661738011, 48.9594041186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5811aa1661b48a563cc3f27e843a546d4925b1bc", "fields": {"nom_de_la_commune": "VILLETANEUSE", "libell_d_acheminement": "VILLETANEUSE", "code_postal": "93430", "coordonnees_gps": [48.9567205255, 2.34508496615], "code_commune_insee": "93079"}, "geometry": {"type": "Point", "coordinates": [2.34508496615, 48.9567205255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2c9ee18deb1c7dc1ed463925a1cf57ff8a3eb4", "fields": {"nom_de_la_commune": "BONNEUIL SUR MARNE", "libell_d_acheminement": "BONNEUIL SUR MARNE", "code_postal": "94380", "coordonnees_gps": [48.7736342302, 2.48825429698], "code_commune_insee": "94011"}, "geometry": {"type": "Point", "coordinates": [2.48825429698, 48.7736342302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1fd21444c30c57e88193fa7b72a1c35f24c360", "fields": {"nom_de_la_commune": "CHENNEVIERES SUR MARNE", "libell_d_acheminement": "CHENNEVIERES SUR MARNE", "code_postal": "94430", "coordonnees_gps": [48.7980000026, 2.54187225559], "code_commune_insee": "94019"}, "geometry": {"type": "Point", "coordinates": [2.54187225559, 48.7980000026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8088c202626b17e3c02396773db3cf298ccf4e", "fields": {"nom_de_la_commune": "CHEVILLY LARUE", "libell_d_acheminement": "CHEVILLY LARUE", "code_postal": "94550", "coordonnees_gps": [48.7667771551, 2.35266828544], "code_commune_insee": "94021"}, "geometry": {"type": "Point", "coordinates": [2.35266828544, 48.7667771551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1a27ea99b81623bc43339ef7482b77bf2b54a4", "fields": {"nom_de_la_commune": "FONTENAY SOUS BOIS", "libell_d_acheminement": "FONTENAY SOUS BOIS", "code_postal": "94120", "coordonnees_gps": [48.8510089992, 2.47454061171], "code_commune_insee": "94033"}, "geometry": {"type": "Point", "coordinates": [2.47454061171, 48.8510089992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7959736bd363ce9e37f1a9263528d88329a6c992", "fields": {"nom_de_la_commune": "MAROLLES EN BRIE", "libell_d_acheminement": "MAROLLES EN BRIE", "code_postal": "94440", "coordonnees_gps": [48.7320439942, 2.55920831223], "code_commune_insee": "94048"}, "geometry": {"type": "Point", "coordinates": [2.55920831223, 48.7320439942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc13716ad0fe7c1bad969f889aeeea89d6f3b514", "fields": {"nom_de_la_commune": "ORLY", "libell_d_acheminement": "ORLY", "code_postal": "94310", "coordonnees_gps": [48.7428085691, 2.39544879484], "code_commune_insee": "94054"}, "geometry": {"type": "Point", "coordinates": [2.39544879484, 48.7428085691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e2e89bbb174f8571fa54ae8a1995afe8647aaf", "fields": {"nom_de_la_commune": "SANTENY", "libell_d_acheminement": "SANTENY", "code_postal": "94440", "coordonnees_gps": [48.7320439942, 2.55920831223], "code_commune_insee": "94070"}, "geometry": {"type": "Point", "coordinates": [2.55920831223, 48.7320439942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adcf5b1947f25e9a5373b3cae7c7020c55c5fc39", "fields": {"nom_de_la_commune": "SUCY EN BRIE", "libell_d_acheminement": "SUCY EN BRIE", "code_postal": "94370", "coordonnees_gps": [48.7657010886, 2.53346938213], "code_commune_insee": "94071"}, "geometry": {"type": "Point", "coordinates": [2.53346938213, 48.7657010886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ffd726ce0bdc948e8fae621748d36b2c876a5a", "fields": {"code_postal": "94460", "code_commune_insee": "94074", "libell_d_acheminement": "VALENTON", "ligne_5": "VAL POMPADOUR", "nom_de_la_commune": "VALENTON", "coordonnees_gps": [48.7530822759, 2.46124565223]}, "geometry": {"type": "Point", "coordinates": [2.46124565223, 48.7530822759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe1824187d430f555265b91008d8c19fee058c74", "fields": {"nom_de_la_commune": "VILLENEUVE LE ROI", "libell_d_acheminement": "VILLENEUVE LE ROI", "code_postal": "94290", "coordonnees_gps": [48.7321875577, 2.41059838063], "code_commune_insee": "94077"}, "geometry": {"type": "Point", "coordinates": [2.41059838063, 48.7321875577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255dac8020c3fbc6911eec54a68e750787dfeeb7", "fields": {"nom_de_la_commune": "VINCENNES", "libell_d_acheminement": "VINCENNES", "code_postal": "94300", "coordonnees_gps": [48.8472921582, 2.43775823084], "code_commune_insee": "94080"}, "geometry": {"type": "Point", "coordinates": [2.43775823084, 48.8472921582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c252d1f0099fc96476806d9d46071a6a6af1ad", "fields": {"nom_de_la_commune": "VITRY SUR SEINE", "libell_d_acheminement": "VITRY SUR SEINE", "code_postal": "94400", "coordonnees_gps": [48.7885568869, 2.39425728394], "code_commune_insee": "94081"}, "geometry": {"type": "Point", "coordinates": [2.39425728394, 48.7885568869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6373137428bbca60db501292670f35441c781a01", "fields": {"code_postal": "95420", "code_commune_insee": "95011", "libell_d_acheminement": "AMBLEVILLE", "ligne_5": "LE VAUMION", "nom_de_la_commune": "AMBLEVILLE", "coordonnees_gps": [49.1378230096, 1.7800854585]}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db26f0871deb7c1692b6311af8bb906f0d204631", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95055"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2b64a5e0395c64f96995baae9fffa8a32799962", "fields": {"nom_de_la_commune": "BUHY", "libell_d_acheminement": "BUHY", "code_postal": "95770", "coordonnees_gps": [49.1959926831, 1.69814198153], "code_commune_insee": "95119"}, "geometry": {"type": "Point", "coordinates": [1.69814198153, 49.1959926831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316b3083c9ce1204a632b8e84afde0593e1d342d", "fields": {"nom_de_la_commune": "CERGY", "libell_d_acheminement": "CERGY", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95127"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9aa276ba3e0d1866ef3fee99e237de1c4451b7", "fields": {"nom_de_la_commune": "LA CHAPELLE EN VEXIN", "libell_d_acheminement": "LA CHAPELLE EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95139"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f2902d8a35d06cf55ad5b5330e19567b819bbb", "fields": {"nom_de_la_commune": "CHARS", "libell_d_acheminement": "CHARS", "code_postal": "95750", "coordonnees_gps": [49.1561369779, 1.91918704594], "code_commune_insee": "95142"}, "geometry": {"type": "Point", "coordinates": [1.91918704594, 49.1561369779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba67fc9577734b160b1128400d7cdd54f74a704", "fields": {"nom_de_la_commune": "CHENNEVIERES LES LOUVRES", "libell_d_acheminement": "CHENNEVIERES LES LOUVRES", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95154"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2f13792983e24e472a3d8716aff346ccdd002e", "fields": {"nom_de_la_commune": "ECOUEN", "libell_d_acheminement": "ECOUEN", "code_postal": "95440", "coordonnees_gps": [49.0257365877, 2.38491446746], "code_commune_insee": "95205"}, "geometry": {"type": "Point", "coordinates": [2.38491446746, 49.0257365877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7001ebaf31415c441c2e79928dba3324f025976e", "fields": {"nom_de_la_commune": "ERMONT", "libell_d_acheminement": "ERMONT", "code_postal": "95120", "coordonnees_gps": [48.9883041761, 2.25629551186], "code_commune_insee": "95219"}, "geometry": {"type": "Point", "coordinates": [2.25629551186, 48.9883041761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4906947a7681c52848d89c31c683fd5958fadb21", "fields": {"nom_de_la_commune": "FOSSES", "libell_d_acheminement": "FOSSES", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95250"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e958137885748556399af8bcbd8fb4c49f2599", "fields": {"nom_de_la_commune": "FREPILLON", "libell_d_acheminement": "FREPILLON", "code_postal": "95740", "coordonnees_gps": [49.0503556269, 2.20602188929], "code_commune_insee": "95256"}, "geometry": {"type": "Point", "coordinates": [2.20602188929, 49.0503556269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02aba0b8a989a7ac64e296e68b961f352bd68bd", "fields": {"nom_de_la_commune": "GENAINVILLE", "libell_d_acheminement": "GENAINVILLE", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95270"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efa3f23fdf6fb881c7735405e7a6ddd9bfa3cb2", "fields": {"nom_de_la_commune": "GENICOURT", "libell_d_acheminement": "GENICOURT", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95271"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697309cec84cd6d9f835b32ff835bb8567c06a03", "fields": {"nom_de_la_commune": "GROSLAY", "libell_d_acheminement": "GROSLAY", "code_postal": "95410", "coordonnees_gps": [48.9851592656, 2.35040435023], "code_commune_insee": "95288"}, "geometry": {"type": "Point", "coordinates": [2.35040435023, 48.9851592656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3454e1da52d75897c75d3951e6c1c4ae9bd72f72", "fields": {"nom_de_la_commune": "HAUTE ISLE", "libell_d_acheminement": "HAUTE ISLE", "code_postal": "95780", "coordonnees_gps": [49.0867183905, 1.64440422629], "code_commune_insee": "95301"}, "geometry": {"type": "Point", "coordinates": [1.64440422629, 49.0867183905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6016c40bf13e7a98fe68448400f9a78c37666f", "fields": {"code_postal": "95220", "code_commune_insee": "95306", "libell_d_acheminement": "HERBLAY", "ligne_5": "LA PATTE D OIE", "nom_de_la_commune": "HERBLAY", "coordonnees_gps": [49.0082603783, 2.15434312371]}, "geometry": {"type": "Point", "coordinates": [2.15434312371, 49.0082603783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c505601310649ff94f8087df39fef42243df2e", "fields": {"nom_de_la_commune": "L ISLE ADAM", "libell_d_acheminement": "L ISLE ADAM", "code_postal": "95290", "coordonnees_gps": [49.1073866175, 2.23418827484], "code_commune_insee": "95313"}, "geometry": {"type": "Point", "coordinates": [2.23418827484, 49.1073866175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69755c10aa24f738fd77b703147119c08a871da0", "fields": {"nom_de_la_commune": "JOUY LE MOUTIER", "libell_d_acheminement": "JOUY LE MOUTIER", "code_postal": "95280", "coordonnees_gps": [49.0112311928, 2.03342738029], "code_commune_insee": "95323"}, "geometry": {"type": "Point", "coordinates": [2.03342738029, 49.0112311928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e961496e94432225b7738110eaa4e6d0af16acf", "fields": {"nom_de_la_commune": "LONGUESSE", "libell_d_acheminement": "LONGUESSE", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95348"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a329eca971419b37e8ae9fe571e1a0573cc4d66a", "fields": {"nom_de_la_commune": "LOUVRES", "libell_d_acheminement": "LOUVRES", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95351"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fd5c7d1aaf5ee9c3c94e99bc25b5db22c55ab8", "fields": {"nom_de_la_commune": "MAUDETOUR EN VEXIN", "libell_d_acheminement": "MAUDETOUR EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95379"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7971e74f80ecee84a4b5b1b123fb99a67fd92c91", "fields": {"nom_de_la_commune": "MERY SUR OISE", "libell_d_acheminement": "MERY SUR OISE", "code_postal": "95540", "coordonnees_gps": [49.0543404407, 2.17434065342], "code_commune_insee": "95394"}, "geometry": {"type": "Point", "coordinates": [2.17434065342, 49.0543404407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca9383bc066fc92477a49996b4f6cdeed373a1a", "fields": {"nom_de_la_commune": "PONTOISE", "libell_d_acheminement": "PONTOISE", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95500"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88356632120da31594bfe3c910e22c417e467a7f", "fields": {"nom_de_la_commune": "PRESLES", "libell_d_acheminement": "PRESLES", "code_postal": "95590", "coordonnees_gps": [49.1078677101, 2.28470413018], "code_commune_insee": "95504"}, "geometry": {"type": "Point", "coordinates": [2.28470413018, 49.1078677101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad55f46d21487196f371dcfe1fd3a9652731937", "fields": {"nom_de_la_commune": "RONQUEROLLES", "libell_d_acheminement": "RONQUEROLLES", "code_postal": "95340", "coordonnees_gps": [49.1610028463, 2.26428490236], "code_commune_insee": "95529"}, "geometry": {"type": "Point", "coordinates": [2.26428490236, 49.1610028463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9113e949f691757c26220f01fa7d9ec4891b2be", "fields": {"nom_de_la_commune": "ST LEU LA FORET", "libell_d_acheminement": "ST LEU LA FORET", "code_postal": "95320", "coordonnees_gps": [49.0185563436, 2.24663214737], "code_commune_insee": "95563"}, "geometry": {"type": "Point", "coordinates": [2.24663214737, 49.0185563436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b17b4db788ce818816224bd8d42f0ceb524c8c1", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "95390", "coordonnees_gps": [49.0210602804, 2.2702548944], "code_commune_insee": "95574"}, "geometry": {"type": "Point", "coordinates": [2.2702548944, 49.0210602804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704f1788064fe50aa6f7bef4a6fd1ac651283e69", "fields": {"nom_de_la_commune": "SANNOIS", "libell_d_acheminement": "SANNOIS", "code_postal": "95110", "coordonnees_gps": [48.9719496259, 2.25343831149], "code_commune_insee": "95582"}, "geometry": {"type": "Point", "coordinates": [2.25343831149, 48.9719496259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b372087b0333aa37e76699b80d16d989d2541af6", "fields": {"nom_de_la_commune": "SANTEUIL", "libell_d_acheminement": "SANTEUIL", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95584"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8821b97f2d6fac61d0105e9bea7116968a9aa713", "fields": {"nom_de_la_commune": "VAUDHERLAND", "libell_d_acheminement": "VAUDHERLAND", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95633"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf447c0212187c7feb583cabf5fe400da958b40e", "fields": {"nom_de_la_commune": "VEMARS", "libell_d_acheminement": "VEMARS", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95641"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66653b650afb87dfa1a8986322ecc808f967ac6", "fields": {"nom_de_la_commune": "WY DIT JOLI VILLAGE", "libell_d_acheminement": "WY DIT JOLI VILLAGE", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95690"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3797ca15b39c88e26f6803c47318e07e23cf0caa", "fields": {"nom_de_la_commune": "GRAND BOURG", "libell_d_acheminement": "GRAND BOURG", "code_postal": "97112", "coordonnees_gps": [15.9059074056, -61.2940501948], "code_commune_insee": "97112"}, "geometry": {"type": "Point", "coordinates": [-61.2940501948, 15.9059074056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "041046361e9fb1cf1bb556a936fbf29d6da7fd79", "fields": {"nom_de_la_commune": "LAMENTIN", "libell_d_acheminement": "LAMENTIN", "code_postal": "97129", "coordonnees_gps": [16.2409664705, -61.6688216708], "code_commune_insee": "97115"}, "geometry": {"type": "Point", "coordinates": [-61.6688216708, 16.2409664705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12315de450a168ca3fb85012bc51aac17e151fb", "fields": {"nom_de_la_commune": "PETIT BOURG", "libell_d_acheminement": "PETIT BOURG", "code_postal": "97170", "coordonnees_gps": [16.1714632305, -61.6577301591], "code_commune_insee": "97118"}, "geometry": {"type": "Point", "coordinates": [-61.6577301591, 16.1714632305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2c5a47cffeed32573e8749fe5ab22425c19848", "fields": {"nom_de_la_commune": "ST FRANCOIS", "libell_d_acheminement": "ST FRANCOIS", "code_postal": "97118", "coordonnees_gps": [16.2729556298, -61.2814571844], "code_commune_insee": "97125"}, "geometry": {"type": "Point", "coordinates": [-61.2814571844, 16.2729556298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a906564f6203c0d7bfef9e4ab0a85524f403b5", "fields": {"nom_de_la_commune": "TROIS RIVIERES", "libell_d_acheminement": "TROIS RIVIERES", "code_postal": "97114", "coordonnees_gps": [15.9909841341, -61.6478530536], "code_commune_insee": "97132"}, "geometry": {"type": "Point", "coordinates": [-61.6478530536, 15.9909841341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab8c439cff2c90992a8e344d631274dc7c17b7e", "fields": {"nom_de_la_commune": "BASSE POINTE", "libell_d_acheminement": "BASSE POINTE", "code_postal": "97218", "coordonnees_gps": [14.8474849535, -61.1459690766], "code_commune_insee": "97203"}, "geometry": {"type": "Point", "coordinates": [-61.1459690766, 14.8474849535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e06e068ca0aab949920dfd7fdf19fdd4e5508a2a", "fields": {"nom_de_la_commune": "LE DIAMANT", "libell_d_acheminement": "LE DIAMANT", "code_postal": "97223", "coordonnees_gps": [14.4888484016, -61.0202991489], "code_commune_insee": "97206"}, "geometry": {"type": "Point", "coordinates": [-61.0202991489, 14.4888484016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b19eac78184d5082a92e6f82288353050bc504", "fields": {"nom_de_la_commune": "FONDS ST DENIS", "libell_d_acheminement": "FONDS ST DENIS", "code_postal": "97250", "coordonnees_gps": [14.777738804, -61.1678676514], "code_commune_insee": "97208"}, "geometry": {"type": "Point", "coordinates": [-61.1678676514, 14.777738804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a909ce4c1441ca1ab9dd8d929746b2f1eaae4e", "fields": {"nom_de_la_commune": "LE MORNE ROUGE", "libell_d_acheminement": "LE MORNE ROUGE", "code_postal": "97260", "coordonnees_gps": [14.7690224618, -61.1203956225], "code_commune_insee": "97218"}, "geometry": {"type": "Point", "coordinates": [-61.1203956225, 14.7690224618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a503b0f8759cbf3b6ebfcd8dd43ebd90c391dfb1", "fields": {"nom_de_la_commune": "LE ROBERT", "libell_d_acheminement": "LE ROBERT", "code_postal": "97231", "coordonnees_gps": [14.6748993025, -60.9426153066], "code_commune_insee": "97222"}, "geometry": {"type": "Point", "coordinates": [-60.9426153066, 14.6748993025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df45af571db365cda4fe5453a0e555868cd0fd8", "fields": {"nom_de_la_commune": "ST ESPRIT", "libell_d_acheminement": "ST ESPRIT", "code_postal": "97270", "coordonnees_gps": [14.5589038688, -60.9214749212], "code_commune_insee": "97223"}, "geometry": {"type": "Point", "coordinates": [-60.9214749212, 14.5589038688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36996432bd5d39a3bc6b7939ad66484606a29c2", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "97250", "coordonnees_gps": [14.777738804, -61.1678676514], "code_commune_insee": "97225"}, "geometry": {"type": "Point", "coordinates": [-61.1678676514, 14.777738804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c357ecb5d09c87a58a5a178c9ef24285156459b", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "97230", "coordonnees_gps": [14.7693102054, -61.0177300072], "code_commune_insee": "97228"}, "geometry": {"type": "Point", "coordinates": [-61.0177300072, 14.7693102054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54e5c0ddde3bbc0d738ffe009539aa1fb68ca4f", "fields": {"nom_de_la_commune": "SCHOELCHER", "libell_d_acheminement": "SCHOELCHER", "code_postal": "97233", "coordonnees_gps": [14.6461548775, -61.1003483307], "code_commune_insee": "97229"}, "geometry": {"type": "Point", "coordinates": [-61.1003483307, 14.6461548775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9c466f8b81f2f5a56b6e226ad26509d280dddf", "fields": {"nom_de_la_commune": "LES TROIS ILETS", "libell_d_acheminement": "LES TROIS ILETS", "code_postal": "97229", "coordonnees_gps": [14.5268411285, -61.0368740286], "code_commune_insee": "97231"}, "geometry": {"type": "Point", "coordinates": [-61.0368740286, 14.5268411285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a887fb557c0a5c3102444224d9d6debebd61232b", "fields": {"nom_de_la_commune": "MACOURIA", "libell_d_acheminement": "MACOURIA TONATE", "code_postal": "97355", "coordonnees_gps": [4.98223447686, -52.5086780821], "code_commune_insee": "97305"}, "geometry": {"type": "Point", "coordinates": [-52.5086780821, 4.98223447686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50dd0d885c036de2bf51b77cfe295a5405be48e0", "fields": {"nom_de_la_commune": "MATOURY", "libell_d_acheminement": "MATOURY", "code_postal": "97351", "coordonnees_gps": [4.83155863035, -52.3435695608], "code_commune_insee": "97307"}, "geometry": {"type": "Point", "coordinates": [-52.3435695608, 4.83155863035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "897447a4c9c6943d8b4c8c87708e595eb0d4d778", "fields": {"nom_de_la_commune": "ST LAURENT DU MARONI", "libell_d_acheminement": "ST LAURENT DU MARONI", "code_postal": "97320", "coordonnees_gps": [4.9462197668, -53.9779735451], "code_commune_insee": "97311"}, "geometry": {"type": "Point", "coordinates": [-53.9779735451, 4.9462197668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51ce7dfd26c44d684218f2b7144df5592c4f6f27", "fields": {"nom_de_la_commune": "MONTSINERY TONNEGRANDE", "libell_d_acheminement": "MONTSINERY TONNEGRANDE", "code_postal": "97356", "coordonnees_gps": [4.80953678108, -52.5096708871], "code_commune_insee": "97313"}, "geometry": {"type": "Point", "coordinates": [-52.5096708871, 4.80953678108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8d495d0e796b8d8e14e45e4eed1e1c2e78cdba", "fields": {"nom_de_la_commune": "OUANARY", "libell_d_acheminement": "OUANARY", "code_postal": "97380", "coordonnees_gps": [4.19033633228, -51.8102044212], "code_commune_insee": "97314"}, "geometry": {"type": "Point", "coordinates": [-51.8102044212, 4.19033633228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f2b361ee01ab1008059089bac9c03eacc6f81ea", "fields": {"nom_de_la_commune": "ENTRE DEUX", "libell_d_acheminement": "ENTRE DEUX", "code_postal": "97414", "coordonnees_gps": [-21.2039549859, 55.4926624049], "code_commune_insee": "97403"}, "geometry": {"type": "Point", "coordinates": [55.4926624049, -21.2039549859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba5a1626bb41f6fb8a1889ff47c0f4b949a2912", "fields": {"nom_de_la_commune": "LA PLAINE DES PALMISTES", "libell_d_acheminement": "LA PLAINE DES PALMISTES", "code_postal": "97431", "coordonnees_gps": [-21.1519471024, 55.6441769419], "code_commune_insee": "97406"}, "geometry": {"type": "Point", "coordinates": [55.6441769419, -21.1519471024]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee06df97035d17ca3d30416bf8994621cb85dec", "fields": {"code_postal": "97419", "code_commune_insee": "97408", "libell_d_acheminement": "LA POSSESSION", "ligne_5": "STE THERESE", "nom_de_la_commune": "LA POSSESSION", "coordonnees_gps": [-20.99459115, 55.3979867416]}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c048d85498512536bfaf198c52290b7d9b390d1d", "fields": {"code_postal": "97470", "code_commune_insee": "97410", "libell_d_acheminement": "ST BENOIT", "ligne_5": "BEAUFONDS", "nom_de_la_commune": "ST BENOIT", "coordonnees_gps": [-21.0919418821, 55.6492890915]}, "geometry": {"type": "Point", "coordinates": [55.6492890915, -21.0919418821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1bc52660c5ed158b3415236b58c923fcb58402", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "BELLE PIERRE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e1c0fdd85583e84f3c9ab64ce2eba74bd370fc", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "LE BRULE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8c2df0f92e063a1d3f84bf3ecc2ca73759b15b", "fields": {"code_postal": "97416", "code_commune_insee": "97413", "libell_d_acheminement": "ST LEU", "ligne_5": "LA CHALOUPE", "nom_de_la_commune": "ST LEU", "coordonnees_gps": [-21.1657814773, 55.3335929857]}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde8841186a8fc83ca18375798cd373f232d302e", "fields": {"nom_de_la_commune": "ST LEU", "libell_d_acheminement": "ST LEU", "code_postal": "97436", "coordonnees_gps": [-21.1657814773, 55.3335929857], "code_commune_insee": "97413"}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bac72ee3ecd32df0f663dbcef032997b27b932", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "97450", "coordonnees_gps": [-21.2337866407, 55.4216954351], "code_commune_insee": "97414"}, "geometry": {"type": "Point", "coordinates": [55.4216954351, -21.2337866407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e653ae9285fb6b2c0e92d83fbcfa4c976d24ab7", "fields": {"code_postal": "97411", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "BOIS DE NEFLES ST PAUL", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f672ff50e8fbffea5757ffe7bb436d2f8a276119", "fields": {"code_postal": "97435", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "TAN ROUGE", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2157f2fa737e642517a549331213b17597778e2e", "fields": {"code_postal": "97460", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "BELLEMENE", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd4151a53d398a1f088e27afeea4680edd03e3e8", "fields": {"code_postal": "97460", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "PLATEAU CAILLOUX", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20db38c3ebdfc1779e1a8eccee940ab6e460676", "fields": {"code_postal": "97438", "code_commune_insee": "97418", "libell_d_acheminement": "STE MARIE", "ligne_5": "LA GRANDE MONTEE", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [-20.9470117135, 55.5304413195]}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bad9c78edd8a7875c78cfcd3fb5bb9d2d042e70", "fields": {"code_postal": "97438", "code_commune_insee": "97418", "libell_d_acheminement": "STE MARIE", "ligne_5": "RIVIERE DES PLUIES", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [-20.9470117135, 55.5304413195]}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4bef6a650408659317f94f9f3cc43958f0d0be", "fields": {"nom_de_la_commune": "STE ROSE", "libell_d_acheminement": "STE ROSE", "code_postal": "97439", "coordonnees_gps": [-21.1923490823, 55.7545391105], "code_commune_insee": "97419"}, "geometry": {"type": "Point", "coordinates": [55.7545391105, -21.1923490823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb1ee86e24c6637abdc97e20d637fcc581a06293", "fields": {"nom_de_la_commune": "STE SUZANNE", "libell_d_acheminement": "STE SUZANNE", "code_postal": "97441", "coordonnees_gps": [-20.9453936025, 55.5929823966], "code_commune_insee": "97420"}, "geometry": {"type": "Point", "coordinates": [55.5929823966, -20.9453936025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ced30f28c5f14774ac7a828b1ce7fe0f87233f6", "fields": {"nom_de_la_commune": "MIQUELON LANGLADE", "libell_d_acheminement": "ST PIERRE ET MIQUELON", "code_postal": "97500", "ligne_5": "LANGLADE", "code_commune_insee": "97501"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03b750ed15fe2e9da4bf43157341e0f5ba6a464", "fields": {"nom_de_la_commune": "OBERMORSCHWILLER", "libell_d_acheminement": "OBERMORSCHWILLER", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68245"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357c2fd8b1c4e641ab12ee50718a1472d5c32875", "fields": {"nom_de_la_commune": "OBERSAASHEIM", "libell_d_acheminement": "OBERSAASHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68246"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3f54a069cbfeea2800546f6f284d5180c8ac9a", "fields": {"nom_de_la_commune": "ODEREN", "libell_d_acheminement": "ODEREN", "code_postal": "68830", "coordonnees_gps": [47.9280210497, 6.9935822488], "code_commune_insee": "68247"}, "geometry": {"type": "Point", "coordinates": [6.9935822488, 47.9280210497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d23c29d491aed136e61954ee61c3b34e551c1a", "fields": {"nom_de_la_commune": "OTTMARSHEIM", "libell_d_acheminement": "OTTMARSHEIM", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68253"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b810792ae9391a995fe38c8bfb333e47894b58", "fields": {"nom_de_la_commune": "REGUISHEIM", "libell_d_acheminement": "REGUISHEIM", "code_postal": "68890", "coordonnees_gps": [47.9000897431, 7.37306716667], "code_commune_insee": "68266"}, "geometry": {"type": "Point", "coordinates": [7.37306716667, 47.9000897431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0daa29865598bccca9fe3dd78a27c7a902ff7029", "fields": {"nom_de_la_commune": "RICHWILLER", "libell_d_acheminement": "RICHWILLER", "code_postal": "68120", "coordonnees_gps": [47.7768307965, 7.2881348904], "code_commune_insee": "68270"}, "geometry": {"type": "Point", "coordinates": [7.2881348904, 47.7768307965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528b14ad7fd02c3a800855fae83c2d553d822fba", "fields": {"nom_de_la_commune": "RIEDISHEIM", "libell_d_acheminement": "RIEDISHEIM", "code_postal": "68400", "coordonnees_gps": [47.7397475615, 7.36559547622], "code_commune_insee": "68271"}, "geometry": {"type": "Point", "coordinates": [7.36559547622, 47.7397475615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73be9dddd4e9ebbc466d81486e9b1b2455c41aa", "fields": {"nom_de_la_commune": "RIMBACH PRES GUEBWILLER", "libell_d_acheminement": "RIMBACH PRES GUEBWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68274"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958ff0810606e82223e9057eb1683e05b81dbb66", "fields": {"nom_de_la_commune": "RIQUEWIHR", "libell_d_acheminement": "RIQUEWIHR", "code_postal": "68340", "coordonnees_gps": [48.1777476023, 7.28848905346], "code_commune_insee": "68277"}, "geometry": {"type": "Point", "coordinates": [7.28848905346, 48.1777476023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531d4dd5fb6f0f593c8f4322620c669becd6af20", "fields": {"nom_de_la_commune": "ROGGENHOUSE", "libell_d_acheminement": "ROGGENHOUSE", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68281"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab38c1c48b5b3f1362bbcf62c83deac1b395ece", "fields": {"nom_de_la_commune": "RUSTENHART", "libell_d_acheminement": "RUSTENHART", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68290"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765bc4dae9fed514e59c3dfd958c9c6b39a5d2ee", "fields": {"code_postal": "68300", "code_commune_insee": "68297", "libell_d_acheminement": "ST LOUIS", "ligne_5": "ST LOUIS LA CHAUSSEE", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [47.6023175125, 7.54024522111]}, "geometry": {"type": "Point", "coordinates": [7.54024522111, 47.6023175125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df42521c754fc9194ed308727ecdab79c5bca1e3", "fields": {"nom_de_la_commune": "SAUSHEIM", "libell_d_acheminement": "SAUSHEIM", "code_postal": "68390", "coordonnees_gps": [47.7997453022, 7.41007777982], "code_commune_insee": "68300"}, "geometry": {"type": "Point", "coordinates": [7.41007777982, 47.7997453022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fc3fd2105277b4bd18633acfcb9b1f5f757f6f", "fields": {"nom_de_la_commune": "SCHWEIGHOUSE THANN", "libell_d_acheminement": "SCHWEIGHOUSE THANN", "code_postal": "68520", "coordonnees_gps": [47.7328574448, 7.15152670714], "code_commune_insee": "68302"}, "geometry": {"type": "Point", "coordinates": [7.15152670714, 47.7328574448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9bb87d8313549d8cdc5052bf7659cfe79bc1c2", "fields": {"nom_de_la_commune": "SENTHEIM", "libell_d_acheminement": "SENTHEIM", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68304"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9296494cfa96be88353ac0091994c8801d25fbf1", "fields": {"nom_de_la_commune": "SEWEN", "libell_d_acheminement": "SEWEN", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68307"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3054f4da1e1ba1e74cb734f8320f7478d0e55828", "fields": {"nom_de_la_commune": "SOULTZEREN", "libell_d_acheminement": "SOULTZEREN", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68317"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3665d12b6c3233716a98c9607dd63d3431987834", "fields": {"nom_de_la_commune": "STEINBRUNN LE HAUT", "libell_d_acheminement": "STEINBRUNN LE HAUT", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68324"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5383b86cb1d44be06116706f643879fce0883292", "fields": {"nom_de_la_commune": "TRAUBACH LE BAS", "libell_d_acheminement": "TRAUBACH LE BAS", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68336"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8648600fa3e51e7377a3eea9f41845e56ed4d6", "fields": {"nom_de_la_commune": "TRAUBACH LE HAUT", "libell_d_acheminement": "TRAUBACH LE HAUT", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68337"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc01dea0ef1c668785a38cb709574f734b1d71fd", "fields": {"nom_de_la_commune": "URBES", "libell_d_acheminement": "URBES", "code_postal": "68121", "coordonnees_gps": [47.8799375308, 6.92692522405], "code_commune_insee": "68344"}, "geometry": {"type": "Point", "coordinates": [6.92692522405, 47.8799375308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feddab4d900c1084cd85d0fae1d6e13f7278a7f9", "fields": {"nom_de_la_commune": "VIEUX THANN", "libell_d_acheminement": "VIEUX THANN", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68348"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f4ce2caa35dbb36986a407fc1cd47d5284a980a", "fields": {"nom_de_la_commune": "WENTZWILLER", "libell_d_acheminement": "WENTZWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68362"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5170a6df7c3a259ab9e0fa3dde15436fd0c5c6c", "fields": {"nom_de_la_commune": "WINKEL", "libell_d_acheminement": "WINKEL", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68373"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96e10aa3cafa15575b4d8e80e6eef21764c7efe9", "fields": {"nom_de_la_commune": "WITTELSHEIM", "libell_d_acheminement": "WITTELSHEIM", "code_postal": "68310", "coordonnees_gps": [47.7985535201, 7.23964411959], "code_commune_insee": "68375"}, "geometry": {"type": "Point", "coordinates": [7.23964411959, 47.7985535201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a77da3dfaf71fe8c8ebbf0bdd88e36aa1fd1e6c", "fields": {"nom_de_la_commune": "WITTERSDORF", "libell_d_acheminement": "WITTERSDORF", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68377"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b460f84267644d2fc9d84071f5474982ed8bcf", "fields": {"nom_de_la_commune": "WOLFERSDORF", "libell_d_acheminement": "WOLFERSDORF", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68378"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb46592a7a376c50bc918ed02bd45e28a004d926", "fields": {"nom_de_la_commune": "WOLFGANTZEN", "libell_d_acheminement": "WOLFGANTZEN", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68379"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9f810aef7deeb41b4150022d28c3fde702a40f", "fields": {"nom_de_la_commune": "ZELLENBERG", "libell_d_acheminement": "ZELLENBERG", "code_postal": "68340", "coordonnees_gps": [48.1777476023, 7.28848905346], "code_commune_insee": "68383"}, "geometry": {"type": "Point", "coordinates": [7.28848905346, 48.1777476023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a7b3064686bcb4ed2d036e47c329f09b1ac811", "fields": {"nom_de_la_commune": "ALBIGNY SUR SAONE", "libell_d_acheminement": "ALBIGNY SUR SAONE", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69003"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d2dff380f56e4990de97329cd61fdd3c64349ec", "fields": {"nom_de_la_commune": "AMBERIEUX", "libell_d_acheminement": "AMBERIEUX D AZERGUES", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69005"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bd17a0aa5076f1509c462e4e1eddf4dc7980231", "fields": {"nom_de_la_commune": "AVEIZE", "libell_d_acheminement": "AVEIZE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69014"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0e9004d43dcb92299eb62ea2bd2287038beb3f", "fields": {"nom_de_la_commune": "AVENAS", "libell_d_acheminement": "AVENAS", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69015"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94a32f6ff72e10f2497d8f79f924688cc7c906a2", "fields": {"nom_de_la_commune": "AZOLETTE", "libell_d_acheminement": "AZOLETTE", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69016"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe90137a86bac32d34e32bfa14f8363b1b1d46dc", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LA BREVENNE", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a662d1001c04bc7fec809bdb20ce98e8bd79aafa", "fields": {"nom_de_la_commune": "CHAMBOST LONGESSAIGNE", "libell_d_acheminement": "CHAMBOST LONGESSAIGNE", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69038"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc598f3c460c63f6bd058fb6d9bb008ebf12ab2", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR COISE", "libell_d_acheminement": "LA CHAPELLE SUR COISE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69042"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f04d4959638f9761acfc9f2c85476ec4de6e93a", "fields": {"nom_de_la_commune": "CIVRIEUX D AZERGUES", "libell_d_acheminement": "CIVRIEUX D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69059"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d5d749af4626ab8c9d366637ea978953d10144", "fields": {"nom_de_la_commune": "COGNY", "libell_d_acheminement": "COGNY", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69061"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50a832a5bcda0172f8a5187e143e22cc36e3673", "fields": {"nom_de_la_commune": "DUERNE", "libell_d_acheminement": "DUERNE", "code_postal": "69850", "coordonnees_gps": [45.6632329556, 4.55020035776], "code_commune_insee": "69078"}, "geometry": {"type": "Point", "coordinates": [4.55020035776, 45.6632329556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3123075511f17206155e92b0863ff95f6122a5f0", "fields": {"nom_de_la_commune": "FONTAINES SUR SAONE", "libell_d_acheminement": "FONTAINES SUR SAONE", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69088"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336ee8530a1c1dfcf5ac4690856856a81bcc2221", "fields": {"nom_de_la_commune": "FRONTENAS", "libell_d_acheminement": "FRONTENAS", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69090"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49996241763185e50478fb0665742c2976639c85", "fields": {"nom_de_la_commune": "GIVORS", "libell_d_acheminement": "GIVORS", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69091"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7304866bd96263a0a10620794e3df13ff136424f", "fields": {"code_postal": "69700", "code_commune_insee": "69091", "libell_d_acheminement": "GIVORS", "ligne_5": "ST MARTIN DE CORNAS", "nom_de_la_commune": "GIVORS", "coordonnees_gps": [45.5741550977, 4.73818709302]}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2988081a4a07b4666a6ee3ad201967a8a9227c78", "fields": {"nom_de_la_commune": "LES HAIES", "libell_d_acheminement": "LES HAIES", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69097"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce581fe3ec562219bf298622450be606d9dc3fd", "fields": {"nom_de_la_commune": "JOUX", "libell_d_acheminement": "JOUX", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69102"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06718c71713cd49ae2ee9987862472b47ebe4ee5", "fields": {"nom_de_la_commune": "LEGNY", "libell_d_acheminement": "LEGNY", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69111"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15bebcced97af8d81fc5427c1d09ae46aa9288b", "fields": {"nom_de_la_commune": "MOIRE", "libell_d_acheminement": "MOIRE", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69134"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e9f2f55d327ff181ce4d03298faa11a2831fb8", "fields": {"nom_de_la_commune": "MONSOLS", "libell_d_acheminement": "MONSOLS", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69135"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b139ac91a4fec10769322741462c81d984479dd3", "fields": {"nom_de_la_commune": "MONTMELAS ST SORLIN", "libell_d_acheminement": "MONTMELAS ST SORLIN", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69137"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad769674506db9df846da9c6c56b7bf7eb2e708", "fields": {"nom_de_la_commune": "MORANCE", "libell_d_acheminement": "MORANCE", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69140"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa841753dce19d6d1d7735bf7c225a6a3709c36", "fields": {"nom_de_la_commune": "OULLINS", "libell_d_acheminement": "OULLINS", "code_postal": "69600", "coordonnees_gps": [45.7156524382, 4.80267589495], "code_commune_insee": "69149"}, "geometry": {"type": "Point", "coordinates": [4.80267589495, 45.7156524382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f25a388f6600c5a51d112daf80d6406a9c6d6f6", "fields": {"nom_de_la_commune": "RIVERIE", "libell_d_acheminement": "RIVERIE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69166"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677019f18357e37fa857d185715b9afc0b1a73ed", "fields": {"code_postal": "69640", "code_commune_insee": "69167", "libell_d_acheminement": "RIVOLET", "ligne_5": "LA FOUILLOUSE", "nom_de_la_commune": "RIVOLET", "coordonnees_gps": [45.9971718546, 4.6146387877]}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfe67aff09e613619b8b1e69e63d83af142ef61", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69175"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe403332cdf718ba0fa83420e41ab69904b6bb7", "fields": {"nom_de_la_commune": "SOUCIEU EN JARREST", "libell_d_acheminement": "SOUCIEU EN JARREST", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69176"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "227a4865fece10dab4824c53d5d0c1474b1fced8", "fields": {"nom_de_la_commune": "SOUZY", "libell_d_acheminement": "SOUZY", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69178"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b59218ee0e840a13c098e6ff0e59c1b6b9c227", "fields": {"nom_de_la_commune": "ST APPOLINAIRE", "libell_d_acheminement": "ST APPOLINAIRE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69181"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94375b03437e254649f2fd33cf0718d483661993", "fields": {"nom_de_la_commune": "ST BONNET DES BRUYERES", "libell_d_acheminement": "ST BONNET DES BRUYERES", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69182"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1b049180e63b5cac01a811cd1d560e1e90402e", "fields": {"nom_de_la_commune": "ST ETIENNE DES OULLIERES", "libell_d_acheminement": "ST ETIENNE DES OULLIERES", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69197"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0353625571358d19c203a7a78ab5167743fbfeb7", "fields": {"nom_de_la_commune": "ST JEAN LA BUSSIERE", "libell_d_acheminement": "ST JEAN LA BUSSIERE", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69214"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815cdee93edcd9154afdb416815cd920f9b4269e", "fields": {"nom_de_la_commune": "ST LAGER", "libell_d_acheminement": "ST LAGER", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69218"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3b9a3cf08255040341b76ef51e529bace04ea8", "fields": {"nom_de_la_commune": "ST LAURENT D AGNY", "libell_d_acheminement": "ST LAURENT D AGNY", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69219"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b95f807cc62225f82d61e99ac73c18e4bc41d3", "fields": {"nom_de_la_commune": "ST ROMAIN EN GIER", "libell_d_acheminement": "ST ROMAIN EN GIER", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69236"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e973d5c08f3feaf9ac94857346d6f092e86bd92", "fields": {"nom_de_la_commune": "TERNAND", "libell_d_acheminement": "TERNAND", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69245"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7adedb79ed650dd01aefd4a95372f7fadf89ea3", "fields": {"nom_de_la_commune": "THEIZE", "libell_d_acheminement": "THEIZE", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69246"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311d6efc78479120e9999a8316e455d96dfadddd", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "MARNAND", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a3477706300b13400d28f3d47227aaa45cf86f", "fields": {"nom_de_la_commune": "VAUGNERAY", "libell_d_acheminement": "VAUGNERAY", "code_postal": "69670", "coordonnees_gps": [45.7297593676, 4.64249561363], "code_commune_insee": "69255"}, "geometry": {"type": "Point", "coordinates": [4.64249561363, 45.7297593676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a229edfebde517eb36e1c7d1348750919895cd9a", "fields": {"nom_de_la_commune": "VERNAY", "libell_d_acheminement": "VERNAY", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69261"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2e1703ba968c3e186c6259525ae74071dff204", "fields": {"nom_de_la_commune": "VILLECHENEVE", "libell_d_acheminement": "VILLECHENEVE", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69263"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb282af92ea5af446d73babdca64c556936cf20", "fields": {"nom_de_la_commune": "COMMUNAY", "libell_d_acheminement": "COMMUNAY", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69272"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ccd7d1f4172451c3442e8ab058ef26f978adfd", "fields": {"nom_de_la_commune": "FEYZIN", "libell_d_acheminement": "FEYZIN", "code_postal": "69320", "coordonnees_gps": [45.6733069707, 4.85791542174], "code_commune_insee": "69276"}, "geometry": {"type": "Point", "coordinates": [4.85791542174, 45.6733069707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5872548e979296e6acc3c76c77045c4296454f", "fields": {"nom_de_la_commune": "GENAS", "libell_d_acheminement": "GENAS", "code_postal": "69740", "coordonnees_gps": [45.7300186003, 5.01578595253], "code_commune_insee": "69277"}, "geometry": {"type": "Point", "coordinates": [5.01578595253, 45.7300186003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484690072c826b2fd4d15a30964f814a3ed81e48", "fields": {"nom_de_la_commune": "MARENNES", "libell_d_acheminement": "MARENNES", "code_postal": "69970", "coordonnees_gps": [45.626140728, 4.93340438392], "code_commune_insee": "69281"}, "geometry": {"type": "Point", "coordinates": [4.93340438392, 45.626140728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e909692feb5520c90ffabb7bb9bb1bf4e281a760", "fields": {"nom_de_la_commune": "ST LAURENT DE MURE", "libell_d_acheminement": "ST LAURENT DE MURE", "code_postal": "69720", "coordonnees_gps": [45.6898441312, 5.04322574847], "code_commune_insee": "69288"}, "geometry": {"type": "Point", "coordinates": [5.04322574847, 45.6898441312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c728d78b61833f9f3ae911d7ed319445a6d4c5a4", "fields": {"nom_de_la_commune": "ST PIERRE DE CHANDIEU", "libell_d_acheminement": "ST PIERRE DE CHANDIEU", "code_postal": "69780", "coordonnees_gps": [45.6517385833, 4.9906607201], "code_commune_insee": "69289"}, "geometry": {"type": "Point", "coordinates": [4.9906607201, 45.6517385833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275233d26df4890e50b98ef318f29575cdfbcdfa", "fields": {"nom_de_la_commune": "ST PRIEST", "libell_d_acheminement": "ST PRIEST", "code_postal": "69800", "coordonnees_gps": [45.7017022335, 4.94898769222], "code_commune_insee": "69290"}, "geometry": {"type": "Point", "coordinates": [4.94898769222, 45.7017022335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2691f332de6bc4e793279cf29a4b56839cd53f57", "fields": {"nom_de_la_commune": "ST SYMPHORIEN D OZON", "libell_d_acheminement": "ST SYMPHORIEN D OZON", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69291"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f9dfa2c1c627bb48c7bbf87dcd52ce6da2127a", "fields": {"nom_de_la_commune": "TERNAY", "libell_d_acheminement": "TERNAY", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69297"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfc8f8791c7a10842d3591620bdad1768ce84a82", "fields": {"code_postal": "69124", "code_commune_insee": "69299", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "ligne_5": "SAUGNIEU", "nom_de_la_commune": "COLOMBIER SAUGNIEU", "coordonnees_gps": [45.7180247923, 5.10320927277]}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcce5af5f152a882a0ea387bab8a620b91a5d6f", "fields": {"nom_de_la_commune": "LYON 01", "libell_d_acheminement": "LYON", "code_postal": "69001", "coordonnees_gps": [45.7698747385, 4.82857516905], "code_commune_insee": "69381"}, "geometry": {"type": "Point", "coordinates": [4.82857516905, 45.7698747385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c511c061319d99313ad02981b3c6ee11b2a035", "fields": {"nom_de_la_commune": "LYON 02", "libell_d_acheminement": "LYON", "code_postal": "69002", "coordonnees_gps": [45.7483660735, 4.825926093], "code_commune_insee": "69382"}, "geometry": {"type": "Point", "coordinates": [4.825926093, 45.7483660735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af420098a02efd76110fb5ba65ee2e5082fcc9d", "fields": {"nom_de_la_commune": "LYON 04", "libell_d_acheminement": "LYON", "code_postal": "69004", "coordonnees_gps": [45.7789266388, 4.8239526432], "code_commune_insee": "69384"}, "geometry": {"type": "Point", "coordinates": [4.8239526432, 45.7789266388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ca6408ca115e3f2e6e7f37ec2f332eb8adb968", "fields": {"nom_de_la_commune": "LYON 08", "libell_d_acheminement": "LYON", "code_postal": "69008", "coordonnees_gps": [45.7340095868, 4.869109412], "code_commune_insee": "69388"}, "geometry": {"type": "Point", "coordinates": [4.869109412, 45.7340095868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3effbdb83a579fa929e522b8c658a5ca83d2ca8a", "fields": {"nom_de_la_commune": "ACHEY", "libell_d_acheminement": "ACHEY", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70003"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c77c9c5e49e7df4fb291d56047b84b44158485", "fields": {"nom_de_la_commune": "AILLEVILLERS ET LYAUMONT", "libell_d_acheminement": "AILLEVILLERS ET LYAUMONT", "code_postal": "70320", "coordonnees_gps": [47.9247841994, 6.33509809591], "code_commune_insee": "70006"}, "geometry": {"type": "Point", "coordinates": [6.33509809591, 47.9247841994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fa598756300a17fda2018255edb4e4c527c046", "fields": {"nom_de_la_commune": "AINVELLE", "libell_d_acheminement": "AINVELLE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70008"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc11fb0c6112b2a1c1fb83fb81eea746182eff0b", "fields": {"nom_de_la_commune": "AMAGE", "libell_d_acheminement": "AMAGE", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70011"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f366e637fd6bcaabbe70da5974cf419be08ca5", "fields": {"nom_de_la_commune": "AMBLANS ET VELOTTE", "libell_d_acheminement": "AMBLANS ET VELOTTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70014"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f54418b7f896c204273e5b69c7b756da6c04f2", "fields": {"nom_de_la_commune": "ANCHENONCOURT ET CHAZEL", "libell_d_acheminement": "ANCHENONCOURT ET CHAZEL", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70017"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984b7a4ab155ef60b203665f11ac49e135696cb2", "fields": {"nom_de_la_commune": "AUTREY LES GRAY", "libell_d_acheminement": "AUTREY LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70041"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fcdd03e7ac1b67166d01b52dcda2b126faf221a", "fields": {"nom_de_la_commune": "AUVET ET LA CHAPELOTTE", "libell_d_acheminement": "AUVET ET LA CHAPELOTTE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70043"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b540a6da5905dce9c8e66d20ed19fe2d930c6ad6", "fields": {"nom_de_la_commune": "BAIGNES", "libell_d_acheminement": "BAIGNES", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70047"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55774b4912900baf3a5ee0e724131321709676f", "fields": {"nom_de_la_commune": "LES BATIES", "libell_d_acheminement": "LES BATIES", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70053"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a51d993f2bf2b4863017ff6a3f6c1da01d24e2", "fields": {"nom_de_la_commune": "BAULAY", "libell_d_acheminement": "BAULAY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70056"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd9660292f24a95185c371b77f4bc3698b8ddaf", "fields": {"nom_de_la_commune": "BAY", "libell_d_acheminement": "BAY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70057"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced4193ac6c341683742714e94230717c5f12c0a", "fields": {"nom_de_la_commune": "BEAUJEU ET QUITTEUR", "libell_d_acheminement": "BEAUJEU ET QUITTEUR", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70058"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40a885136dd302ed814ca029ca9727774dc6f7c", "fields": {"nom_de_la_commune": "BEAUMOTTE LES PIN", "libell_d_acheminement": "BEAUMOTTE LES PIN", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70060"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8059571eab7a2b8783eff9990baad7402c454942", "fields": {"nom_de_la_commune": "BESNANS", "libell_d_acheminement": "BESNANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70065"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3205d7f3c186d33de5c66145709ac44eb7e2ddab", "fields": {"nom_de_la_commune": "BETAUCOURT", "libell_d_acheminement": "BETAUCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70066"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae13e9c410152f32708a00ae4c47aa8ff9621b09", "fields": {"nom_de_la_commune": "LA RENAUDIE", "libell_d_acheminement": "LA RENAUDIE", "code_postal": "63930", "coordonnees_gps": [45.7386166201, 3.6587951745], "code_commune_insee": "63298"}, "geometry": {"type": "Point", "coordinates": [3.6587951745, 45.7386166201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987994b5364fb3ea2a4c2db0548bd083d15e8295", "fields": {"nom_de_la_commune": "LA ROCHE BLANCHE", "libell_d_acheminement": "LA ROCHE BLANCHE", "code_postal": "63670", "coordonnees_gps": [45.7124444692, 3.15893935126], "code_commune_insee": "63302"}, "geometry": {"type": "Point", "coordinates": [3.15893935126, 45.7124444692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88f1844719dd7e6e041672250a5d34485f76f90", "fields": {"nom_de_la_commune": "ROCHE CHARLES LA MAYRAND", "libell_d_acheminement": "ROCHE CHARLES LA MAYRAND", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63303"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf8f0004eecf4ab267c638b119b364eae4e727c", "fields": {"nom_de_la_commune": "ST AGOULIN", "libell_d_acheminement": "ST AGOULIN", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63311"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ce10946db57e98b3e8eda33edf71e8d091d190", "fields": {"nom_de_la_commune": "ST CIRGUES SUR COUZE", "libell_d_acheminement": "ST CIRGUES SUR COUZE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63330"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67551edac1f52ea0b6f5902a07d6af5eeb782143", "fields": {"nom_de_la_commune": "ST CLEMENT DE VALORGUE", "libell_d_acheminement": "ST CLEMENT DE VALORGUE", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63331"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6573296b985efc4faf60f541f18811705db39c51", "fields": {"nom_de_la_commune": "ST CLEMENT DE REGNAT", "libell_d_acheminement": "ST CLEMENT DE REGNAT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63332"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7603a8bcb119b10b7336a437719873b48e4f0a2", "fields": {"nom_de_la_commune": "ST DIER D AUVERGNE", "libell_d_acheminement": "ST DIER D AUVERGNE", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63334"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7af5f9c2d8f0e0b21a2bc7ad1b827c94ef131a93", "fields": {"nom_de_la_commune": "ST ELOY LES MINES", "libell_d_acheminement": "ST ELOY LES MINES", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63338"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "874eb9d5123a2d4fe81b46857c322eb9d190a1d3", "fields": {"nom_de_la_commune": "ST FLOUR", "libell_d_acheminement": "ST FLOUR", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63343"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d08292bff92fe81ca6af72c19ec695176731b08b", "fields": {"nom_de_la_commune": "ST GENES CHAMPESPE", "libell_d_acheminement": "ST GENES CHAMPESPE", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63346"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572845721d58fa1017f1d05dda843c5ca69d6707", "fields": {"nom_de_la_commune": "ST GENES DU RETZ", "libell_d_acheminement": "ST GENES DU RETZ", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63347"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703bc6231c76d914763eb13f812c027aff00c17b", "fields": {"nom_de_la_commune": "ST GEORGES DE MONS", "libell_d_acheminement": "ST GEORGES DE MONS", "code_postal": "63780", "coordonnees_gps": [45.9494669995, 2.85840011362], "code_commune_insee": "63349"}, "geometry": {"type": "Point", "coordinates": [2.85840011362, 45.9494669995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a5d9ff2b5447f94c28a52b44eed32913f9f82c", "fields": {"nom_de_la_commune": "ST HERENT", "libell_d_acheminement": "ST HERENT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63357"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef636eb751665150ba3edfe4c886fd5d1b7bfa2", "fields": {"nom_de_la_commune": "ST JEAN D HEURS", "libell_d_acheminement": "ST JEAN D HEURS", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63364"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f32ff583df02e14aef1e4874e96208f6f7b2082", "fields": {"nom_de_la_commune": "ST JEAN DES OLLIERES", "libell_d_acheminement": "ST JEAN DES OLLIERES", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63365"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24fe74659ebae1064b13dba79ded9de7477b1f8", "fields": {"nom_de_la_commune": "ST JEAN ST GERVAIS", "libell_d_acheminement": "ST JEAN ST GERVAIS", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63367"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcba889ff51eb0161df66de5f4ea4791b7e948d4", "fields": {"nom_de_la_commune": "ST JULIEN LA GENESTE", "libell_d_acheminement": "ST JULIEN LA GENESTE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63369"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ed40bc5350d3bdf6c84e10fe47867386225af0", "fields": {"nom_de_la_commune": "ST MAURICE PRES PIONSAT", "libell_d_acheminement": "ST MAURICE PRES PIONSAT", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63377"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037b23487ea399fbb1f64ab8f86af0f56e5ebb91", "fields": {"nom_de_la_commune": "ST MYON", "libell_d_acheminement": "ST MYON", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63379"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "084f045047a8d936e498bf3d5d63b3300a1fe1c7", "fields": {"nom_de_la_commune": "ST NECTAIRE", "libell_d_acheminement": "ST NECTAIRE", "code_postal": "63710", "coordonnees_gps": [45.6024911149, 2.9728034479], "code_commune_insee": "63380"}, "geometry": {"type": "Point", "coordinates": [2.9728034479, 45.6024911149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8f1c8c979b1a5aa8e02cb2135861245dc50129", "fields": {"nom_de_la_commune": "ST REMY DE CHARGNAT", "libell_d_acheminement": "ST REMY DE CHARGNAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63392"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56c84f6908956e66037101ed9afdb3b7b5015f1", "fields": {"nom_de_la_commune": "ST REMY SUR DUROLLE", "libell_d_acheminement": "ST REMY SUR DUROLLE", "code_postal": "63550", "coordonnees_gps": [45.9228930521, 3.6102507473], "code_commune_insee": "63393"}, "geometry": {"type": "Point", "coordinates": [3.6102507473, 45.9228930521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d7207a17ed2732051ce2f08db0020a590f71a1", "fields": {"nom_de_la_commune": "ST SANDOUX", "libell_d_acheminement": "ST SANDOUX", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63395"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ddbddcd1cf0ad53732008dce867c712a091649", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63396"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb9534c238440da3333dc1bc4595a15b91b0841", "fields": {"nom_de_la_commune": "SARDON", "libell_d_acheminement": "SARDON", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63406"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc479f789cd609b9c5e134f6b3397d414c56f334", "fields": {"nom_de_la_commune": "SAURIER", "libell_d_acheminement": "SAURIER", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63409"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2910e219a8f6b076850005e72df952c0a1f2f512", "fields": {"nom_de_la_commune": "SAUXILLANGES", "libell_d_acheminement": "SAUXILLANGES", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63415"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558687ece746fee45c98d3974fbc44bb4ca4c9a6", "fields": {"nom_de_la_commune": "SAVENNES", "libell_d_acheminement": "SAVENNES", "code_postal": "63750", "coordonnees_gps": [45.6027201086, 2.52290102161], "code_commune_insee": "63416"}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b0bc06f0337c4d7652b93d87319e9873b04ac5", "fields": {"nom_de_la_commune": "SINGLES", "libell_d_acheminement": "SINGLES", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63421"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cec7489d48b37ce115b166bd212717e7d12996", "fields": {"nom_de_la_commune": "SUGERES", "libell_d_acheminement": "SUGERES", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63423"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55de9931fcfecfef887de7433b276d1e3bfe516d", "fields": {"nom_de_la_commune": "SURAT", "libell_d_acheminement": "SURAT", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63424"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68d9c1a39ff83ff7707721ac3fdaa4669a1ae29", "fields": {"nom_de_la_commune": "TALLENDE", "libell_d_acheminement": "TALLENDE", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63425"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17942b15a29e532717cee81e85b6362c65acc801", "fields": {"nom_de_la_commune": "TORTEBESSE", "libell_d_acheminement": "TORTEBESSE", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63433"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8daea338c886209fa65cde98c210ba14779a979", "fields": {"nom_de_la_commune": "TOURS SUR MEYMONT", "libell_d_acheminement": "TOURS SUR MEYMONT", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63434"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf08b6ec4bea1cf91da08f597267aa86b533199", "fields": {"nom_de_la_commune": "TOURZEL RONZIERES", "libell_d_acheminement": "TOURZEL RONZIERES", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63435"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e4bf6ca2a179c3f326bd18998612d9961241a8", "fields": {"nom_de_la_commune": "TREZIOUX", "libell_d_acheminement": "TREZIOUX", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63438"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f3d761e09712512bf7d438c3366e1f3d0b4ce9", "fields": {"nom_de_la_commune": "VENSAT", "libell_d_acheminement": "VENSAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63446"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db4f28b663380487233713c4d23adb500c6bee8", "fields": {"nom_de_la_commune": "VICHEL", "libell_d_acheminement": "VICHEL", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63456"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7f2a8e2e496da2bfba2ef7cf005a97e0a20cd8", "fields": {"nom_de_la_commune": "VIC LE COMTE", "libell_d_acheminement": "VIC LE COMTE", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63457"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e6a0c0c8886f1944fd60afd4780cc3d0340508", "fields": {"code_postal": "63700", "code_commune_insee": "63471", "libell_d_acheminement": "YOUX", "ligne_5": "MONTJOIE", "nom_de_la_commune": "YOUX", "coordonnees_gps": [46.1865575466, 2.8334076893]}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df89e0018fc84ec7a70724069a453a819b7ffc58", "fields": {"nom_de_la_commune": "YRONDE ET BURON", "libell_d_acheminement": "YRONDE ET BURON", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63472"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe73730b9905a627190ed805997bd2a659187b3d", "fields": {"nom_de_la_commune": "ABIDOS", "libell_d_acheminement": "ABIDOS", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64003"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c637415aa23a1ec634519548803e8c091043cdb", "fields": {"nom_de_la_commune": "AGNOS", "libell_d_acheminement": "AGNOS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64007"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a90ddcb82c0c85f890506987910739442e4532", "fields": {"nom_de_la_commune": "AHETZE", "libell_d_acheminement": "AHETZE", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64009"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b115566c4a5e99d0a3d6b43affc090086979418a", "fields": {"nom_de_la_commune": "AINHICE MONGELOS", "libell_d_acheminement": "AINHICE MONGELOS", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64013"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceca7d569a8397b7519e0511695514e135ac4cee", "fields": {"nom_de_la_commune": "ALOS SIBAS ABENSE", "libell_d_acheminement": "ALOS SIBAS ABENSE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64017"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b0961208fb2d8f29045f1f6516f1d8ac4ad268", "fields": {"nom_de_la_commune": "ANCE", "libell_d_acheminement": "ANCE", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64020"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc9de92494d6f1d57f7f1030703c890a6a86cbb", "fields": {"nom_de_la_commune": "ANDREIN", "libell_d_acheminement": "ANDREIN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64022"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831327c4b96c8e2b292c5630e22b961d547cbecc", "fields": {"nom_de_la_commune": "ARCANGUES", "libell_d_acheminement": "ARCANGUES", "code_postal": "64200", "coordonnees_gps": [43.44355076, -1.52562527873], "code_commune_insee": "64038"}, "geometry": {"type": "Point", "coordinates": [-1.52562527873, 43.44355076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005a97a6317334b60d332afe6a346fbcb30c27d1", "fields": {"nom_de_la_commune": "ARGAGNON", "libell_d_acheminement": "ARGAGNON", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64042"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7699a6f1532230f249cc86e2bdca0112b9efe402", "fields": {"nom_de_la_commune": "ARRAUTE CHARRITTE", "libell_d_acheminement": "ARRAUTE CHARRITTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64051"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750536dd369f4520996eb9881a427df32cfae27b", "fields": {"nom_de_la_commune": "ARRIEN", "libell_d_acheminement": "ARRIEN", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64053"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b904d9b48ff162ea01c4241235c79a6dd10d59b7", "fields": {"nom_de_la_commune": "ARTHEZ DE BEARN", "libell_d_acheminement": "ARTHEZ DE BEARN", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64057"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17b9493644cf2a5987a86b59497d81a1dfad9c18", "fields": {"nom_de_la_commune": "ARTHEZ D ASSON", "libell_d_acheminement": "ARTHEZ D ASSON", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64058"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab3bd37b89a983e557e7964bef3e4b1eef2261c3", "fields": {"nom_de_la_commune": "ARTIGUELOUTAN", "libell_d_acheminement": "ARTIGUELOUTAN", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64059"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0db7d26c03897baa7e793d64c2a40bc1e93c66", "fields": {"nom_de_la_commune": "ARUDY", "libell_d_acheminement": "ARUDY", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64062"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80233f75fd78c0f5bde9650a0247ef6a29415c55", "fields": {"nom_de_la_commune": "ASASP ARROS", "libell_d_acheminement": "ASASP ARROS", "code_postal": "64660", "coordonnees_gps": [43.1157198025, -0.622971094801], "code_commune_insee": "64064"}, "geometry": {"type": "Point", "coordinates": [-0.622971094801, 43.1157198025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b690fb74ae7603e1c82e0dba92747c21d2f19eb", "fields": {"code_postal": "64660", "code_commune_insee": "64064", "libell_d_acheminement": "ASASP ARROS", "ligne_5": "ARROS D OLORON", "nom_de_la_commune": "ASASP ARROS", "coordonnees_gps": [43.1157198025, -0.622971094801]}, "geometry": {"type": "Point", "coordinates": [-0.622971094801, 43.1157198025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ef4e79e0328d7d3ac6ee364471e972c8dee419", "fields": {"nom_de_la_commune": "ASSAT", "libell_d_acheminement": "ASSAT", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64067"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9025d7a85b218491a512d21ad167cda3a456d2e", "fields": {"nom_de_la_commune": "ATHOS ASPIS", "libell_d_acheminement": "ATHOS ASPIS", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64071"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e730bd0612c810170bf82197c77a4edc7dab21", "fields": {"nom_de_la_commune": "AUDAUX", "libell_d_acheminement": "AUDAUX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64075"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc78cedcd79dad0253355ea79deedcafb6e847c", "fields": {"nom_de_la_commune": "AUTERRIVE", "libell_d_acheminement": "AUTERRIVE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64082"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac5b34dd496f93c9cc998f3e5e576157359c18b", "fields": {"nom_de_la_commune": "AYHERRE", "libell_d_acheminement": "AYHERRE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64086"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2494f8f171ab8bae9e7c14bcd22c25627b8db798", "fields": {"nom_de_la_commune": "BALEIX", "libell_d_acheminement": "BALEIX", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64089"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d168f14f320343300ebf8ab73a1b74ebfa112a77", "fields": {"nom_de_la_commune": "BALIRACQ MAUMUSSON", "libell_d_acheminement": "BALIRACQ MAUMUSSON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64090"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28aee838d34855588cb9ded79e33634e0d46aa36", "fields": {"nom_de_la_commune": "BALIROS", "libell_d_acheminement": "BALIROS", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64091"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e69c3f40fbe68b973eade8b802320d5a318aa5a", "fields": {"nom_de_la_commune": "BANCA", "libell_d_acheminement": "BANCA", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64092"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bdb4f710bb54e4faa4dfe5424fb0bfd2dede738", "fields": {"nom_de_la_commune": "BASTANES", "libell_d_acheminement": "BASTANES", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64099"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448fb66351d6cf59a806b2618fb5a3d0de57a761", "fields": {"nom_de_la_commune": "BASSUSSARRY", "libell_d_acheminement": "BASSUSSARRY", "code_postal": "64200", "coordonnees_gps": [43.44355076, -1.52562527873], "code_commune_insee": "64100"}, "geometry": {"type": "Point", "coordinates": [-1.52562527873, 43.44355076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d703422ea5ebafda22392ac5ef350327352587", "fields": {"nom_de_la_commune": "BEDOUS", "libell_d_acheminement": "BEDOUS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64104"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a21d2be93184bccf255e4158df563e113065b3d", "fields": {"nom_de_la_commune": "BEHORLEGUY", "libell_d_acheminement": "BEHORLEGUY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64107"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267b911d0465c0b6b94a349e58bc1590745d7b3a", "fields": {"nom_de_la_commune": "BEOST", "libell_d_acheminement": "BEOST", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64110"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a848f9010d0c2371f5ce03a26935bbf3188d4e4", "fields": {"nom_de_la_commune": "BESINGRAND", "libell_d_acheminement": "BESINGRAND", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64117"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfde2a0cc7817574c2dea9132f36d622b7f036d", "fields": {"nom_de_la_commune": "BETRACQ", "libell_d_acheminement": "BETRACQ", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64118"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2d564b3e0628358932e046f2353844b27832fe", "fields": {"nom_de_la_commune": "BEYRIE SUR JOYEUSE", "libell_d_acheminement": "BEYRIE SUR JOYEUSE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64120"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68f75c8ea91bf0c6df4fbc6e4ec03c60a978de09", "fields": {"nom_de_la_commune": "BEYRIE EN BEARN", "libell_d_acheminement": "BEYRIE EN BEARN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64121"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c85e3bac4b0f5b6ee29b0cecd7130da0abc4c2", "fields": {"nom_de_la_commune": "BIRIATOU", "libell_d_acheminement": "BIRIATOU", "code_postal": "64700", "coordonnees_gps": [43.3477852312, -1.71224103787], "code_commune_insee": "64130"}, "geometry": {"type": "Point", "coordinates": [-1.71224103787, 43.3477852312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0fad661ece4acfd647b02e1fa78994af1698fb", "fields": {"nom_de_la_commune": "BONLOC", "libell_d_acheminement": "BONLOC", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64134"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d6a9b9ab07659e00950e806cae6f8283c92f83", "fields": {"nom_de_la_commune": "BONNUT", "libell_d_acheminement": "BONNUT", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64135"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3243c9b6d65d6367440c5fa162a0a8ad84139173", "fields": {"nom_de_la_commune": "BORCE", "libell_d_acheminement": "BORCE", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64136"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a9cd80bbafb341373c2151523fb7b933695c7c", "fields": {"nom_de_la_commune": "BOUILLON", "libell_d_acheminement": "BOUILLON", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64143"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1acf67a051e478e8833e1309f49eaf5f70d69ff", "fields": {"nom_de_la_commune": "BURGARONNE", "libell_d_acheminement": "BURGARONNE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64151"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521ed7302e2c6564e61656a0eb6a3fdb214ed360", "fields": {"nom_de_la_commune": "CADILLON", "libell_d_acheminement": "CADILLON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64159"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ef5478648f8a5d623db89b38efdf6bc98530e3", "fields": {"nom_de_la_commune": "CARDESSE", "libell_d_acheminement": "CARDESSE", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64165"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860eaa69587ce3824e5e2653a8b86af42d519825", "fields": {"nom_de_la_commune": "CASTEIDE CAMI", "libell_d_acheminement": "CASTEIDE CAMI", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64171"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330f65d4f35da6cfe056309ce3ea61b3b43719a2", "fields": {"nom_de_la_commune": "CASTERA LOUBIX", "libell_d_acheminement": "CASTERA LOUBIX", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64174"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5377a7bf9280d3e8c5dd424687957119d08d7785", "fields": {"nom_de_la_commune": "CASTETPUGON", "libell_d_acheminement": "CASTETPUGON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64180"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a522ba85863609d39bee7ac0e14ca17aec076e72", "fields": {"nom_de_la_commune": "CAUBIOS LOOS", "libell_d_acheminement": "CAUBIOS LOOS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64183"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab2ee3950f3eea6346569a9cb6dabc901f61001", "fields": {"nom_de_la_commune": "CROUSEILLES", "libell_d_acheminement": "CROUSEILLES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64196"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf86d0acaa34d70c6a15c090816c5e57757c51c", "fields": {"nom_de_la_commune": "DOGNEN", "libell_d_acheminement": "DOGNEN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64201"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903c32298b01c05d19a561770032257b868330b8", "fields": {"nom_de_la_commune": "DOUMY", "libell_d_acheminement": "DOUMY", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64203"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "346a0fb691d164f68f1bd77a3a24ad89e8c07915", "fields": {"nom_de_la_commune": "ESPOEY", "libell_d_acheminement": "ESPOEY", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64216"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b321def52cfbbd8a6373cd54f5731557eeaddb4", "fields": {"nom_de_la_commune": "FEAS", "libell_d_acheminement": "FEAS", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64225"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f3e5e5e741fc77aedb0e6932c2308d46a475d24", "fields": {"nom_de_la_commune": "GABASTON", "libell_d_acheminement": "GABASTON", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64227"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf43a45630ac8a6c48ed4974f355b2db5eddd08", "fields": {"nom_de_la_commune": "GABAT", "libell_d_acheminement": "GABAT", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64228"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1bff882cc82a6b5b49f5426f1cff525c685939", "fields": {"nom_de_la_commune": "GARINDEIN", "libell_d_acheminement": "GARINDEIN", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64231"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0985513e541f33e98b4e697744a800f41c65886", "fields": {"nom_de_la_commune": "GELOS", "libell_d_acheminement": "GELOS", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64237"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37354524c0006fe40015750af09e7b415758a6c", "fields": {"nom_de_la_commune": "GERDEREST", "libell_d_acheminement": "GERDEREST", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64239"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7406f66aa2b8ecb9c96bac532f87644f76a2cf2e", "fields": {"nom_de_la_commune": "GERONCE", "libell_d_acheminement": "GERONCE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64241"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c235ca686e8a02b8224bec78f20f1487777d28", "fields": {"nom_de_la_commune": "CHAMPAUBERT", "libell_d_acheminement": "CHAMPAUBERT", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51113"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675bb380918507a59149f91180eec846b814c3ea", "fields": {"nom_de_la_commune": "CHAMPVOISY", "libell_d_acheminement": "CHAMPVOISY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51121"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af62e80958c44ecde83c94769420086d7ce414e9", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS ORBAIS", "libell_d_acheminement": "LA CHAPELLE SOUS ORBAIS", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51128"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9203e28f231112f5e70ddbb0e73a3ffbc6aa15", "fields": {"nom_de_la_commune": "CHATELRAOULD ST LOUVENT", "libell_d_acheminement": "CHATELRAOULD ST LOUVENT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51134"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933d679bea1b3efb800baa4b1ec42cd83d3921ee", "fields": {"nom_de_la_commune": "CHATRICES", "libell_d_acheminement": "CHATRICES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51138"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd768388e10df3d5dff86c8bd389269c17a45e8", "fields": {"nom_de_la_commune": "CHAUMUZY", "libell_d_acheminement": "CHAUMUZY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51140"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175b3dcf2f0c4c9175e71f879033b9b19681a9ef", "fields": {"nom_de_la_commune": "LA CHEPPE", "libell_d_acheminement": "LA CHEPPE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51147"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3a789b7f7f4d4f65a67f1563e0815bc6acc2e4", "fields": {"nom_de_la_commune": "CHEPY", "libell_d_acheminement": "CHEPY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51149"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88baec117cf15c0d405eebeeb9b63be7a9f5c020", "fields": {"nom_de_la_commune": "CLAMANGES", "libell_d_acheminement": "CLAMANGES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51154"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43bce19bd484a89edf9d23bf086fc989f0e9f39", "fields": {"nom_de_la_commune": "CLESLES", "libell_d_acheminement": "CLESLES", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51155"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f665cde1361b06e0c9b2595d338e25c808ffdd9", "fields": {"nom_de_la_commune": "CLOYES SUR MARNE", "libell_d_acheminement": "CLOYES SUR MARNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51156"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203c990bfa2d6bc8e64accca7d08f2d3675d5005", "fields": {"nom_de_la_commune": "CONFLANS SUR SEINE", "libell_d_acheminement": "CONFLANS SUR SEINE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51162"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e446512fc1774b7165923d125c55182acd72c8", "fields": {"nom_de_la_commune": "CONNANTRE", "libell_d_acheminement": "CONNANTRE", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51165"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2143ba1f665217322435b51322d1b6e42f8016fc", "fields": {"nom_de_la_commune": "COOLE", "libell_d_acheminement": "COOLE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51167"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d4b2b191c0ac774cccdc7aafd6217d56649b82", "fields": {"nom_de_la_commune": "CORFELIX", "libell_d_acheminement": "CORFELIX", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51170"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7256ab3c25c1f87ecd0bd4c0ebb617303c6bffe", "fields": {"nom_de_la_commune": "CORRIBERT", "libell_d_acheminement": "CORRIBERT", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51174"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36dce8f49350e175fd8e09a9aef3d6ee309abf5", "fields": {"nom_de_la_commune": "CORROBERT", "libell_d_acheminement": "CORROBERT", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51175"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9b01b9194af42149a94488ffcacf14a87e21ec", "fields": {"nom_de_la_commune": "CORROY", "libell_d_acheminement": "CORROY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51176"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3c4c59d76d78eb315ee9faac2aed12e2a6e9df", "fields": {"nom_de_la_commune": "COULOMMES LA MONTAGNE", "libell_d_acheminement": "COULOMMES LA MONTAGNE", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51177"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8343be81f35a36120498ebacd5614b5ec2584a1", "fields": {"nom_de_la_commune": "COURCEMAIN", "libell_d_acheminement": "COURCEMAIN", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51182"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d8bcbd1f8ca08194a43d810b030cd32761dd99", "fields": {"nom_de_la_commune": "COURTAGNON", "libell_d_acheminement": "COURTAGNON", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51190"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78068e81148b0b305208b9cd2f608b9709c26604", "fields": {"nom_de_la_commune": "LA CROIX EN CHAMPAGNE", "libell_d_acheminement": "LA CROIX EN CHAMPAGNE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51197"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5462e7fb2404ea3f7eeb2a74de8059e702f649", "fields": {"nom_de_la_commune": "CUIS", "libell_d_acheminement": "CUIS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51200"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8892b1d80c2df6d3c845b53e4950173789719fe4", "fields": {"nom_de_la_commune": "DAMPIERRE SUR MOIVRE", "libell_d_acheminement": "DAMPIERRE SUR MOIVRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51208"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93eb125fcb6a99dd35e4e6efba4a0a7b8a12982", "fields": {"nom_de_la_commune": "DOMMARTIN LETTREE", "libell_d_acheminement": "DOMMARTIN LETTREE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51212"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e94039aaec516b5ce2c8f65d6f901722d017c4f", "fields": {"nom_de_la_commune": "DONTRIEN", "libell_d_acheminement": "DONTRIEN", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51216"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daee612ac100eccdf2157f24561f7e849bc5f418", "fields": {"nom_de_la_commune": "EPERNAY", "libell_d_acheminement": "EPERNAY", "code_postal": "51200", "coordonnees_gps": [49.0369295263, 3.93142899495], "code_commune_insee": "51230"}, "geometry": {"type": "Point", "coordinates": [3.93142899495, 49.0369295263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0708ec87e248653991978eaff75bd5fe11364177", "fields": {"nom_de_la_commune": "L EPINE", "libell_d_acheminement": "L EPINE", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51231"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af732c4d2f63ea85f3fc71258af1e8ba40354dd", "fields": {"nom_de_la_commune": "ESTERNAY", "libell_d_acheminement": "ESTERNAY", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51237"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93695d23d5f613e9c06f18f2ceeec905615a13e1", "fields": {"nom_de_la_commune": "ETOGES", "libell_d_acheminement": "ETOGES", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51238"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b29a2906140b0740821107415a4d2b89f0f9d5", "fields": {"nom_de_la_commune": "FEREBRIANGES", "libell_d_acheminement": "FEREBRIANGES", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51247"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981dc5173f82c8cd184d7595deae568533a3a7db", "fields": {"nom_de_la_commune": "FERE CHAMPENOISE", "libell_d_acheminement": "FERE CHAMPENOISE", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51248"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b3f48cb3c7ae2bc4de3e5cb462edf51defbc0a", "fields": {"code_postal": "51230", "code_commune_insee": "51248", "libell_d_acheminement": "FERE CHAMPENOISE", "ligne_5": "NORMEE", "nom_de_la_commune": "FERE CHAMPENOISE", "coordonnees_gps": [48.7311539666, 3.95932221935]}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d185342f19443f60d4e696672d96ebe468c410", "fields": {"nom_de_la_commune": "FISMES", "libell_d_acheminement": "FISMES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51250"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c5401c2418f211dc93d14b345b890e9d39c8ca", "fields": {"nom_de_la_commune": "FLEURY LA RIVIERE", "libell_d_acheminement": "FLEURY LA RIVIERE", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51252"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962310debcac7cc53bb1ff91c6d9c710ec7ab1a4", "fields": {"nom_de_la_commune": "FONTAINE SUR AY", "libell_d_acheminement": "FONTAINE SUR AY", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51256"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948bd5c654bf292dd0f4beead0d7b54138aa68cd", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51259"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51dcae8814d14307455ff498b184ffced830c8a", "fields": {"nom_de_la_commune": "GIFFAUMONT CHAMPAUBERT", "libell_d_acheminement": "GIFFAUMONT CHAMPAUBERT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51269"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36c1fa5350e663ed56d90075f6f81aa70e0eb59", "fields": {"nom_de_la_commune": "GIGNY BUSSY", "libell_d_acheminement": "GIGNY BUSSY", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51270"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7263d6f10743dd564257fd7bd64e528d7faab1", "fields": {"nom_de_la_commune": "GIONGES", "libell_d_acheminement": "GIONGES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51271"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501792bde9317966455a9807438e23cf643b2861", "fields": {"nom_de_la_commune": "GIVRY EN ARGONNE", "libell_d_acheminement": "GIVRY EN ARGONNE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51272"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d47e536a4fbd5e4dbf08fb9c3a747ef9e0bf5fd", "fields": {"nom_de_la_commune": "STE MARIE DU LAC NUISEMENT", "libell_d_acheminement": "STE MARIE DU LAC NUISEMENT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51277"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b6558f6ef94ff4068c0437cd2ecc413d9fa13ca", "fields": {"nom_de_la_commune": "HAUTVILLERS", "libell_d_acheminement": "HAUTVILLERS", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51287"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a554786bb5cd051f8419db3aebb3ca3faf8457", "fields": {"nom_de_la_commune": "HEUTREGIVILLE", "libell_d_acheminement": "HEUTREGIVILLE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51293"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9747e4d1007bb2e08ff14c7abd606a6df434de74", "fields": {"nom_de_la_commune": "HOURGES", "libell_d_acheminement": "HOURGES", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51294"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab276a80559cfe6d7f78a438af65a040ceea923", "fields": {"nom_de_la_commune": "HUMBAUVILLE", "libell_d_acheminement": "HUMBAUVILLE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51296"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482ea165ed23ff1f5eedf8f5beaad88805a6b318", "fields": {"nom_de_la_commune": "ISLES SUR SUIPPE", "libell_d_acheminement": "ISLES SUR SUIPPE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51299"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba507ceb0f121ac6f41bc0cf05087dd2ef224f75", "fields": {"nom_de_la_commune": "ISSE", "libell_d_acheminement": "ISSE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51301"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08c90b1d1419032d5c4ef08ee68b968a693369c", "fields": {"nom_de_la_commune": "JONCHERY SUR VESLE", "libell_d_acheminement": "JONCHERY SUR VESLE", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51308"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb46111b68144bec6c038ed8699eb494327c53fd", "fields": {"nom_de_la_commune": "JOUY LES REIMS", "libell_d_acheminement": "JOUY LES REIMS", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51310"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c640a140463ac3076e95cf0a9a86c72f4d8b7f4", "fields": {"nom_de_la_commune": "LAGERY", "libell_d_acheminement": "LAGERY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51314"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f46e843d99471a4e3a7e6b728f43d75d58bc71", "fields": {"nom_de_la_commune": "LAVAL SUR TOURBE", "libell_d_acheminement": "LAVAL SUR TOURBE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51317"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920782279dc2530add55ec74943f9315aa0cb77e", "fields": {"nom_de_la_commune": "LINTHELLES", "libell_d_acheminement": "LINTHELLES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51323"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e10783a64e35db87f53c748cadf559d758502f8", "fields": {"nom_de_la_commune": "LISSE EN CHAMPAGNE", "libell_d_acheminement": "LISSE EN CHAMPAGNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51325"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a3b05da45928e36750954911872886372cf469", "fields": {"nom_de_la_commune": "LIVRY LOUVERCY", "libell_d_acheminement": "LIVRY LOUVERCY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51326"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b9c3b128c980352314c061cf9e1959c9c50d23", "fields": {"nom_de_la_commune": "LOIVRE", "libell_d_acheminement": "LOIVRE", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51329"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a767ae9f651fcbfab819a07c428cdbc5b95a40f", "fields": {"nom_de_la_commune": "MAFFRECOURT", "libell_d_acheminement": "MAFFRECOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51336"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f872d1a9960809e23780a48e2765d3425351a22", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51352"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0ecf9a134a37c813274a20c61c8abb494ecfa9", "fields": {"nom_de_la_commune": "MARSANGIS", "libell_d_acheminement": "MARSANGIS", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51353"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e2423e651562a6419798a4a014160b9b9ee4e2", "fields": {"nom_de_la_commune": "LE MEIX TIERCELIN", "libell_d_acheminement": "LE MEIX TIERCELIN", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51361"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c422277304cbedfca813c3871e58ada0a2b6b00", "fields": {"nom_de_la_commune": "MERLAUT", "libell_d_acheminement": "MERLAUT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51363"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d7d8c92298077f7edb8e280ec3c4192dc21736", "fields": {"nom_de_la_commune": "MINAUCOURT LE MESNIL LES HURLUS", "libell_d_acheminement": "MINAUCOURT LE MESNIL LES HURLUS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51368"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ca60bde9788a3b295873627198f1bf30bd520b", "fields": {"nom_de_la_commune": "MOIVRE", "libell_d_acheminement": "MOIVRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51371"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370162ceb9c94ed4b64180491910945dc2267e2f", "fields": {"nom_de_la_commune": "MONCETZ L ABBAYE", "libell_d_acheminement": "MONCETZ L ABBAYE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51373"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ac166f2cf1099efe3e74f3519306b4eb7628fc", "fields": {"nom_de_la_commune": "MONTBRE", "libell_d_acheminement": "MONTBRE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51375"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebf32ef57d3d481565df69ebfbea3f830556656", "fields": {"nom_de_la_commune": "MONTEPREUX", "libell_d_acheminement": "MONTEPREUX", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51377"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9760efb2d27d989b33fd3492a0b9f722255b4a70", "fields": {"code_postal": "51210", "code_commune_insee": "51380", "libell_d_acheminement": "MONTMIRAIL", "ligne_5": "MACLAUNAY", "nom_de_la_commune": "MONTMIRAIL", "coordonnees_gps": [48.8662532943, 3.59451333889]}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9483207ee40e66624c8a2cc7fe6998fd95f801be", "fields": {"nom_de_la_commune": "MONTMORT LUCY", "libell_d_acheminement": "MONTMORT LUCY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51381"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c85b3804f78705c68958eef1200e51c28fab1d", "fields": {"nom_de_la_commune": "MORANGIS", "libell_d_acheminement": "MORANGIS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51384"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8399ea3ef105916cdf488a1f8f3609b66a5661", "fields": {"nom_de_la_commune": "MUTIGNY", "libell_d_acheminement": "MUTIGNY", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51392"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a26b6d092585ed375294a25673b9041f2e0ef318", "fields": {"nom_de_la_commune": "NESLE LE REPONS", "libell_d_acheminement": "NESLE LE REPONS", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51396"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0fb3769666b3526d6ca63607a17d804cf1da111", "fields": {"nom_de_la_commune": "LA NOUE", "libell_d_acheminement": "LA NOUE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51407"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4e7a22d16ba35c6a4e9ba261315d9847907447", "fields": {"nom_de_la_commune": "OGNES", "libell_d_acheminement": "OGNES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51412"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60897fccf3ef60b3778a553ca4ac82bb39fc751e", "fields": {"nom_de_la_commune": "OLIZY", "libell_d_acheminement": "OLIZY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51414"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24e3642f4118004594bd4b765df569b8ce4a70e", "fields": {"nom_de_la_commune": "ORCONTE", "libell_d_acheminement": "ORCONTE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51417"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca88036676d1db58053d2cb2399cc046df03979", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51418"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee66a63e59a30ac0efab4d94f452b029ed4d7f86", "fields": {"nom_de_la_commune": "PARGNY SUR SAULX", "libell_d_acheminement": "PARGNY SUR SAULX", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51423"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3f1fea96e90600865ae86916d78f1648e52ddf", "fields": {"nom_de_la_commune": "PEAS", "libell_d_acheminement": "PEAS", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51426"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72a5e65bc0f44fe1a78b25d40de2613b855b4ad", "fields": {"nom_de_la_commune": "PIERRY", "libell_d_acheminement": "PIERRY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51431"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0b6167fcdbaf07e6953451694fd87d02ed086a", "fields": {"nom_de_la_commune": "POTANGIS", "libell_d_acheminement": "POTANGIS", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51443"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d045158ca20d0488cd95c42f46cc1804cd1bb1ef", "fields": {"nom_de_la_commune": "POURCY", "libell_d_acheminement": "POURCY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51445"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1af9e7747ca3ed4c5ba4b77ea1d2c4d91cf717", "fields": {"nom_de_la_commune": "PUISIEULX", "libell_d_acheminement": "PUISIEULX", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51450"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded2bbbb48969f7655d3b4b55119c891bc4e0c6b", "fields": {"nom_de_la_commune": "QUEUDES", "libell_d_acheminement": "QUEUDES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51451"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e58953d2a903e7d063c38f4dc538e2e9dfe6d00", "fields": {"nom_de_la_commune": "RECY", "libell_d_acheminement": "RECY", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51453"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9772a7bbdcc09c59e65b7bdd0876c2bf39bca19", "fields": {"nom_de_la_commune": "REUIL", "libell_d_acheminement": "REUIL", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51457"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c22d0b7ad1d2d5a6933caee07fa56e7d43b391", "fields": {"nom_de_la_commune": "REVEILLON", "libell_d_acheminement": "REVEILLON", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51459"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f975c19a64f1721e0991962ac3f4cdd1b8071b1", "fields": {"nom_de_la_commune": "ROSNAY", "libell_d_acheminement": "ROSNAY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51468"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3394f362ed0545b9a7eb8ce4ce632cab70db68a2", "fields": {"nom_de_la_commune": "ST BON", "libell_d_acheminement": "ST BON", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51473"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31b43f90472d4c3aca88d2052cda7afe7afbb7d0", "fields": {"nom_de_la_commune": "ST ETIENNE AU TEMPLE", "libell_d_acheminement": "ST ETIENNE AU TEMPLE", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51476"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84e361553e574d0c72affc3ef234ea3fe5bb828c", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51484"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818a5c3064bbf9fe75582f0ca9480968da84055f", "fields": {"nom_de_la_commune": "ST IMOGES", "libell_d_acheminement": "ST IMOGES", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51488"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b1042d3192544adc5df9b2b7c4183aa521c478", "fields": {"nom_de_la_commune": "ST MARD SUR LE MONT", "libell_d_acheminement": "ST MARD SUR LE MONT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51500"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e442f0bcab2c330226f3757f0b4d4820b1bf8ac", "fields": {"nom_de_la_commune": "STE MARIE A PY", "libell_d_acheminement": "STE MARIE A PY", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51501"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c71ea1c97251bc963a09ded80a65b7966bb8f2", "fields": {"nom_de_la_commune": "ST REMY EN BOUZEMONT ST GENEST ISSON", "libell_d_acheminement": "ST REMY EN BOUZEMONT ST GENEST", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51513"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc37217521521b3bced08fbd0ffe14cde20c7ca7", "fields": {"nom_de_la_commune": "SARRY", "libell_d_acheminement": "SARRY", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51525"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d2c94bdb552091019f9589ce9580d95a2f1d5d", "fields": {"nom_de_la_commune": "SAVIGNY SUR ARDRES", "libell_d_acheminement": "SAVIGNY SUR ARDRES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51527"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ce3e5bcd704ab187f9716a119f908d1d05f558", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51529"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef6ba8fd16684a000fba17ff3412ef2755c9b56", "fields": {"nom_de_la_commune": "SERMIERS", "libell_d_acheminement": "SERMIERS", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51532"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f05f823bd593f23af4acc193782b7a9764d682", "fields": {"nom_de_la_commune": "SERZY ET PRIN", "libell_d_acheminement": "SERZY ET PRIN", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51534"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633a53de88ca258cb6c998d8a85b21ae2ee2879a", "fields": {"nom_de_la_commune": "SOMPUIS", "libell_d_acheminement": "SOMPUIS", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51550"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6c12dd809d85164437643d9e7141bd97eb3cf6", "fields": {"nom_de_la_commune": "DAMPVITOUX", "libell_d_acheminement": "DAMPVITOUX", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54153"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c64a39d400b57714a0c1b2c5cdaeb2b4664996", "fields": {"nom_de_la_commune": "DEUXVILLE", "libell_d_acheminement": "DEUXVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54155"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bc9323ba034f9109c75dc23b9c47e4070e1aee", "fields": {"nom_de_la_commune": "DIEULOUARD", "libell_d_acheminement": "DIEULOUARD", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54157"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b1f1dc54ddfd54d604727f6f466decc83c8164", "fields": {"nom_de_la_commune": "DOMGERMAIN", "libell_d_acheminement": "DOMGERMAIN", "code_postal": "54119", "coordonnees_gps": [48.6416908501, 5.82316792671], "code_commune_insee": "54162"}, "geometry": {"type": "Point", "coordinates": [5.82316792671, 48.6416908501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04afb7793d1fc09e58243e4ee4d60bd4a3dd2a89", "fields": {"nom_de_la_commune": "DOMMARIE EULMONT", "libell_d_acheminement": "DOMMARIE EULMONT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54164"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e012a53330d34e0fb156620991325c39451fec9f", "fields": {"code_postal": "54200", "code_commune_insee": "54174", "libell_d_acheminement": "ECROUVES", "ligne_5": "GRAND MENIL", "nom_de_la_commune": "ECROUVES", "coordonnees_gps": [48.7137861444, 5.87312333064]}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5efea3b818ac58a99166611dbeff19c3c8b145", "fields": {"nom_de_la_commune": "EMBERMENIL", "libell_d_acheminement": "EMBERMENIL", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54177"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241113a8c7aa2e3112b3fa1bdca06504d79422e4", "fields": {"nom_de_la_commune": "EULMONT", "libell_d_acheminement": "EULMONT", "code_postal": "54690", "coordonnees_gps": [48.7521802489, 6.20651635247], "code_commune_insee": "54186"}, "geometry": {"type": "Point", "coordinates": [6.20651635247, 48.7521802489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f309fb2836e9e58b5174dc88662dde6cb370ad0", "fields": {"nom_de_la_commune": "FONTENOY LA JOUTE", "libell_d_acheminement": "FONTENOY LA JOUTE", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54201"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda16464caf6e066bebfaa7cd66159c2346cabae", "fields": {"nom_de_la_commune": "FORCELLES ST GORGON", "libell_d_acheminement": "FORCELLES ST GORGON", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54203"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01c400825904ba0b2d610c8c3a8c3f020d82e14", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54208"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33847ba6326b0ba2d1614ce4a978a608efbe5dbb", "fields": {"nom_de_la_commune": "GELACOURT", "libell_d_acheminement": "GELACOURT", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54217"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196c1593bb6ee1a42ae71764e82fe34b5270dd88", "fields": {"nom_de_la_commune": "GEMONVILLE", "libell_d_acheminement": "GEMONVILLE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54220"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776f4e460e1140ccffae2c05b2917724bfb8541a", "fields": {"nom_de_la_commune": "GERBEVILLER", "libell_d_acheminement": "GERBEVILLER", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54222"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000f372891e2c799857ff06b39fe3d4a947ea516", "fields": {"nom_de_la_commune": "GERMINY", "libell_d_acheminement": "GERMINY", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54223"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5e33dbc40d903c6c0e5f0695fa9fd00498cf39", "fields": {"nom_de_la_commune": "GERMONVILLE", "libell_d_acheminement": "GERMONVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54224"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e417d36f07b27d3962915d27cd0a6c1a9b01ef7e", "fields": {"nom_de_la_commune": "GOGNEY", "libell_d_acheminement": "GOGNEY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54230"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02d8131292cbe69738cc8088952b3d53750f6d9", "fields": {"nom_de_la_commune": "GONDRECOURT AIX", "libell_d_acheminement": "GONDRECOURT AIX", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54231"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174d45b75bfc44d5d4df644da62d7bc587c280b8", "fields": {"nom_de_la_commune": "GRAND FAILLY", "libell_d_acheminement": "GRAND FAILLY", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54236"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46fd7a9a63501ce5c68e26f117b2934bfe69ea55", "fields": {"code_postal": "54260", "code_commune_insee": "54236", "libell_d_acheminement": "GRAND FAILLY", "ligne_5": "PETIT XIVRY", "nom_de_la_commune": "GRAND FAILLY", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85dee6303df71f311504d0b566bff21ac2b0ab7", "fields": {"nom_de_la_commune": "GROSROUVRES", "libell_d_acheminement": "GROSROUVRES", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54240"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb9381e701667af199d68e3ef434f150329c8b56", "fields": {"nom_de_la_commune": "HAMMEVILLE", "libell_d_acheminement": "HAMMEVILLE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54247"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4019cc5ca35aa74001ecc62a524e2ed2e967d43", "fields": {"nom_de_la_commune": "HERIMENIL", "libell_d_acheminement": "HERIMENIL", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54260"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef65f9a50543571f8c4655f2643ff51d0ff68268", "fields": {"nom_de_la_commune": "HOMECOURT", "libell_d_acheminement": "HOMECOURT", "code_postal": "54310", "coordonnees_gps": [49.2227384925, 5.99260044922], "code_commune_insee": "54263"}, "geometry": {"type": "Point", "coordinates": [5.99260044922, 49.2227384925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d58fead99a4a3c3a37cbb7ba1833dfc59108c32", "fields": {"nom_de_la_commune": "IGNEY", "libell_d_acheminement": "IGNEY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54271"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aaa642c38674c196ef8bc9805b5621b868b9b70", "fields": {"nom_de_la_commune": "JEVONCOURT", "libell_d_acheminement": "JEVONCOURT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54278"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b92c965682669ff93c3bf2ebee1dfc54ed0fc88", "fields": {"nom_de_la_commune": "LAIX", "libell_d_acheminement": "LAIX", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54290"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac3ea2425a13584fcfca7132376fcc8fc2be379", "fields": {"nom_de_la_commune": "LAMATH", "libell_d_acheminement": "LAMATH", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54292"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc161bd3e26a61ab301f4e3912c03220559c57c", "fields": {"code_postal": "54410", "code_commune_insee": "54300", "libell_d_acheminement": "LANEUVEVILLE DEVANT NANCY", "ligne_5": "LA MADELEINE", "nom_de_la_commune": "LANEUVEVILLE DEVANT NANCY", "coordonnees_gps": [48.6455435814, 6.24186804631]}, "geometry": {"type": "Point", "coordinates": [6.24186804631, 48.6455435814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83316061c10db4ebe0fbde520367800a22755887", "fields": {"code_postal": "54150", "code_commune_insee": "54302", "libell_d_acheminement": "LANTEFONTAINE", "ligne_5": "IMMONVILLE", "nom_de_la_commune": "LANTEFONTAINE", "coordonnees_gps": [49.264324437, 5.89404491023]}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b768f098e4266fa40afd46e55cc4e340e57c2d", "fields": {"nom_de_la_commune": "LEBEUVILLE", "libell_d_acheminement": "LEBEUVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54307"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e26517fe71e2038367dbec81fb963cf9c9d9e5", "fields": {"nom_de_la_commune": "LENONCOURT", "libell_d_acheminement": "LENONCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54311"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59880b7677b010e01e7e682380328170175c751", "fields": {"nom_de_la_commune": "LETRICOURT", "libell_d_acheminement": "LETRICOURT", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54313"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb46f2461aef94343964cc9a70993cee993ef28", "fields": {"nom_de_la_commune": "LEYR", "libell_d_acheminement": "LEYR", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54315"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410841e3ffad27dba766cb8a3ab21e391adbede6", "fields": {"nom_de_la_commune": "LIRONVILLE", "libell_d_acheminement": "LIRONVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54317"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c6e109294a68387f70c8f386154bfddfbd9a14", "fields": {"nom_de_la_commune": "LOISY", "libell_d_acheminement": "LOISY", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54320"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900ae51e780f70f9c650f3377a58697e10b5231b", "fields": {"nom_de_la_commune": "LONGUYON", "libell_d_acheminement": "LONGUYON", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54322"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c73f098fed6f02e3518cb5fb90abf92456eeb7", "fields": {"nom_de_la_commune": "LUDRES", "libell_d_acheminement": "LUDRES", "code_postal": "54710", "coordonnees_gps": [48.6251795468, 6.18855131653], "code_commune_insee": "54328"}, "geometry": {"type": "Point", "coordinates": [6.18855131653, 48.6251795468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c9dae8a4d8aaeede7844d9bead795ad2f14c58", "fields": {"nom_de_la_commune": "MAIRY MAINVILLE", "libell_d_acheminement": "MAIRY MAINVILLE", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54334"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca9043b3b947e3e9f9989909cfc468276bf7a02c", "fields": {"code_postal": "54150", "code_commune_insee": "54334", "libell_d_acheminement": "MAIRY MAINVILLE", "ligne_5": "MAINVILLE", "nom_de_la_commune": "MAIRY MAINVILLE", "coordonnees_gps": [49.264324437, 5.89404491023]}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1edef19e38d9c3d186e2138f277e9c3fbf97e023", "fields": {"nom_de_la_commune": "MAMEY", "libell_d_acheminement": "MAMEY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54340"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e320166e9715216f3499f54cd2d6d63bd52206aa", "fields": {"nom_de_la_commune": "MANCE", "libell_d_acheminement": "MANCE", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54341"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c63188b01f6ed2974f92ca95b82fd779eac533", "fields": {"nom_de_la_commune": "MANGONVILLE", "libell_d_acheminement": "MANGONVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54344"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4def0f0f699e217e2747913c5aeb0820d01eb61", "fields": {"nom_de_la_commune": "MANONCOURT EN VERMOIS", "libell_d_acheminement": "MANONCOURT EN VERMOIS", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54345"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de33916d269885d6ee0bcca58bfa397632014d9d", "fields": {"nom_de_la_commune": "MANONVILLE", "libell_d_acheminement": "MANONVILLE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54348"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f54987ffd59b7828829ebe3caf0596ce9c519ad1", "fields": {"nom_de_la_commune": "MANONVILLER", "libell_d_acheminement": "MANONVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54349"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d68fed52ac33dc45f350eeed41910af4d231ee", "fields": {"nom_de_la_commune": "MARS LA TOUR", "libell_d_acheminement": "MARS LA TOUR", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54353"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f03c84a80e92f4507b372a19b7813a064ac5937", "fields": {"nom_de_la_commune": "MATTEXEY", "libell_d_acheminement": "MATTEXEY", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54356"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573229e7614237f8ed148b5fb8d8a10b646f5162", "fields": {"nom_de_la_commune": "MONT L ETROIT", "libell_d_acheminement": "MONT L ETROIT", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54379"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6475a2c33518a7b660294913518ce346c5e72cc7", "fields": {"nom_de_la_commune": "MORIVILLER", "libell_d_acheminement": "MORIVILLER", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54386"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34717b7bb4acb1920942791062854dcd5ada6f85", "fields": {"nom_de_la_commune": "MOUACOURT", "libell_d_acheminement": "MOUACOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54388"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2e902268fcfbf28c8287b6d578af0a2f4dfd55", "fields": {"nom_de_la_commune": "OCHEY", "libell_d_acheminement": "OCHEY", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54405"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888385d3620096ad3f2e026acd4b0ed91228688e", "fields": {"nom_de_la_commune": "OMELMONT", "libell_d_acheminement": "OMELMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54409"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce733d8511ad1dfc5056cda03f83bdbd5778acf", "fields": {"nom_de_la_commune": "ONVILLE", "libell_d_acheminement": "ONVILLE", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54410"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f42a5bf09cb67b756b9a584b7c0af30b0d44c1", "fields": {"nom_de_la_commune": "PANNES", "libell_d_acheminement": "PANNES", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54416"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd5c335ca7f837d19dc244577d873fc4f73c1f1", "fields": {"nom_de_la_commune": "PAREY ST CESAIRE", "libell_d_acheminement": "PAREY ST CESAIRE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54417"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54bfd8f127b7c4d567a7eb4f7c70b80ff952ec04", "fields": {"nom_de_la_commune": "PETTONVILLE", "libell_d_acheminement": "PETTONVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54422"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ab4c8b2d327568736b41884ad2ccf23dc731bd", "fields": {"nom_de_la_commune": "PEXONNE", "libell_d_acheminement": "PEXONNE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54423"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648f1df5145b56f8ffb4fc68e92ac002e3d0320d", "fields": {"nom_de_la_commune": "PHLIN", "libell_d_acheminement": "PHLIN", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54424"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b465eccfd0b96b45e6d8b670e4aec5968a8b4f2", "fields": {"nom_de_la_commune": "PIERRE PERCEE", "libell_d_acheminement": "PIERRE PERCEE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54427"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3142eb322a66ddb46d054d256398581befd47f1", "fields": {"nom_de_la_commune": "PIERREPONT", "libell_d_acheminement": "PIERREPONT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54428"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfecc04d31f31a177bb1e7a66bc4aa239060ffc", "fields": {"nom_de_la_commune": "PIERREVILLE", "libell_d_acheminement": "PIERREVILLE", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54429"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139a81264cc147bcd9c8a4c0e396be2b0b9876ff", "fields": {"nom_de_la_commune": "ROGEVILLE", "libell_d_acheminement": "ROGEVILLE", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54460"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9994a3c8e0c1ac51c173a03939a45d9bba39f56c", "fields": {"nom_de_la_commune": "ST AIL", "libell_d_acheminement": "ST AIL", "code_postal": "54580", "coordonnees_gps": [49.1903187118, 5.97291024326], "code_commune_insee": "54469"}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bd449161bd28dc757d035da6c733bc1147433c5", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "54950", "coordonnees_gps": [48.5425960628, 6.61591716683], "code_commune_insee": "54472"}, "geometry": {"type": "Point", "coordinates": [6.61591716683, 48.5425960628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b3ae3727aa6f7f6061418e7dc4ab437d401448", "fields": {"nom_de_la_commune": "ST NICOLAS DE PORT", "libell_d_acheminement": "ST NICOLAS DE PORT", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54483"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7648776801a17735a0b7b587543ebf2d7b7e77", "fields": {"nom_de_la_commune": "SANZEY", "libell_d_acheminement": "SANZEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54492"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502a7a3a06500ca5842bf558a8c1b4fbc3743e04", "fields": {"nom_de_la_commune": "SAULNES", "libell_d_acheminement": "SAULNES", "code_postal": "54650", "coordonnees_gps": [49.5295320118, 5.8266810409], "code_commune_insee": "54493"}, "geometry": {"type": "Point", "coordinates": [5.8266810409, 49.5295320118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab0957308ca08243c3a558d528d08c09a918c54", "fields": {"nom_de_la_commune": "SERANVILLE", "libell_d_acheminement": "SERANVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54501"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8b592064a225c1e8c51305caf60b58c7aee84c", "fields": {"nom_de_la_commune": "SERRES", "libell_d_acheminement": "SERRES", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54502"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ea3a318710098ee19bdc30594d2facf34efc64", "fields": {"nom_de_la_commune": "SEXEY LES BOIS", "libell_d_acheminement": "SEXEY LES BOIS", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54506"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76148b6d34a75ba33fc308a71406124cff28ee95", "fields": {"nom_de_la_commune": "SOMMERVILLER", "libell_d_acheminement": "SOMMERVILLER", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54509"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3a3e2c1d827e71ccf0d722333b9d169e2a067a", "fields": {"nom_de_la_commune": "COURCELLES DE TOURAINE", "libell_d_acheminement": "COURCELLES DE TOURAINE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37086"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7208c746d0c661bb5d1137f3bfd34f27107c6da1", "fields": {"nom_de_la_commune": "LA CROIX EN TOURAINE", "libell_d_acheminement": "LA CROIX EN TOURAINE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37091"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7977964ac37e74dee7ecff2eae747130daf5ca3", "fields": {"nom_de_la_commune": "CUSSAY", "libell_d_acheminement": "CUSSAY", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37094"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae50bf1e87f5889e9d05d1b8fe0f437bece0d37", "fields": {"nom_de_la_commune": "FONDETTES", "libell_d_acheminement": "FONDETTES", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37109"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd72f87297e592d930e7f463eb9d546beb68c51a", "fields": {"nom_de_la_commune": "HOMMES", "libell_d_acheminement": "HOMMES", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37117"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a0c6674eae2f4bf2eb4e644b3b32381f33202e", "fields": {"nom_de_la_commune": "JAULNAY", "libell_d_acheminement": "JAULNAY", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37121"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862764219bca2f9ed4ae12b9bb1e52bf6330f615", "fields": {"nom_de_la_commune": "JOUE LES TOURS", "libell_d_acheminement": "JOUE LES TOURS", "code_postal": "37300", "coordonnees_gps": [47.3328059161, 0.654077388292], "code_commune_insee": "37122"}, "geometry": {"type": "Point", "coordinates": [0.654077388292, 47.3328059161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2061c9eb41479198592e24ec2b9b1efe74215362", "fields": {"nom_de_la_commune": "LEMERE", "libell_d_acheminement": "LEMERE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37125"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3b643efedf2162ea37086a6f94a406b5fe75b61", "fields": {"nom_de_la_commune": "LERNE", "libell_d_acheminement": "LERNE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37126"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6b23e4e27bf11efefa927eb815dfa707ac61d6", "fields": {"nom_de_la_commune": "LE LOUROUX", "libell_d_acheminement": "LE LOUROUX", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37136"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8397c91b3b13ed911d112244909210eb0d7ebb", "fields": {"nom_de_la_commune": "LUSSAULT SUR LOIRE", "libell_d_acheminement": "LUSSAULT SUR LOIRE", "code_postal": "37400", "coordonnees_gps": [47.3913535441, 0.985132271005], "code_commune_insee": "37138"}, "geometry": {"type": "Point", "coordinates": [0.985132271005, 47.3913535441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce825cc17c822ffe0ec930d05148be0bc2eb449c", "fields": {"nom_de_la_commune": "MAILLE", "libell_d_acheminement": "MAILLE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37142"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55356befca241d204afba57b7b4eabe1e2cee012", "fields": {"nom_de_la_commune": "MANTHELAN", "libell_d_acheminement": "MANTHELAN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37143"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01a084396dfec23498167e8140e7b3d3765054a", "fields": {"nom_de_la_commune": "MARCE SUR ESVES", "libell_d_acheminement": "MARCE SUR ESVES", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37145"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b444ff31501ef8293b5a9545c57000551ebc84a2", "fields": {"nom_de_la_commune": "MONTLOUIS SUR LOIRE", "libell_d_acheminement": "MONTLOUIS SUR LOIRE", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37156"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b2e5c990f683cd0071e8c0c36cd43fd003e7657", "fields": {"nom_de_la_commune": "MONTRESOR", "libell_d_acheminement": "MONTRESOR", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37157"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a238f9f79eb3ff74a4fcff09bba34a1e48819d", "fields": {"nom_de_la_commune": "MORAND", "libell_d_acheminement": "MORAND", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37160"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24cd326b01681c7be18bf83221099f3f3afc755", "fields": {"nom_de_la_commune": "NEUILLE LE LIERRE", "libell_d_acheminement": "NEUILLE LE LIERRE", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37166"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afb983cfa2917adb54305d9be58a27de999141e", "fields": {"nom_de_la_commune": "NEUVILLE SUR BRENNE", "libell_d_acheminement": "NEUVILLE SUR BRENNE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37169"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da637c5c38787e429c6888614d35e2e41916814", "fields": {"nom_de_la_commune": "ORBIGNY", "libell_d_acheminement": "ORBIGNY", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37177"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ae62ad820d05a16e27a39e35697d8676d2e4df", "fields": {"nom_de_la_commune": "PARCAY SUR VIENNE", "libell_d_acheminement": "PARCAY SUR VIENNE", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37180"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ff706c1506f74ff71f0e24ca95bf50ef9c090e", "fields": {"nom_de_la_commune": "POUZAY", "libell_d_acheminement": "POUZAY", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37188"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d7b1a8b516c8283cfaa11177d71fadd8ede0c2", "fields": {"nom_de_la_commune": "RESTIGNE", "libell_d_acheminement": "RESTIGNE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37193"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb52e2c289fff017b2447e021b752fdf4ab66f2", "fields": {"nom_de_la_commune": "REUGNY", "libell_d_acheminement": "REUGNY", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37194"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14d784f97f627dc5a3c1c795e7f2320c54d02a8", "fields": {"nom_de_la_commune": "ROUZIERS DE TOURAINE", "libell_d_acheminement": "ROUZIERS DE TOURAINE", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37204"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337adf5ffb41ff35e425807e026e36afbf2eb0f4", "fields": {"nom_de_la_commune": "ST AUBIN LE DEPEINT", "libell_d_acheminement": "ST AUBIN LE DEPEINT", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37207"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2217cb2379b497b4c38259f54fd69707351f6c36", "fields": {"nom_de_la_commune": "ST ETIENNE DE CHIGNY", "libell_d_acheminement": "ST ETIENNE DE CHIGNY", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37217"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c54d077d868c19c07802e875d3c84d1055201cb", "fields": {"nom_de_la_commune": "ST FLOVIER", "libell_d_acheminement": "ST FLOVIER", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37218"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e341f7457f498f1f13819650c572690a7fb064a", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE ET MIQUELON", "code_postal": "97500", "ligne_5": "ST PIERRE", "code_commune_insee": "97502"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd9efdcc5f9c1179f300cfc2bd09f5842463f88", "fields": {"nom_de_la_commune": "BANDRELE", "libell_d_acheminement": "BANDRELE", "code_postal": "97660", "coordonnees_gps": [-12.8901616081, 45.1766863463], "code_commune_insee": "97603"}, "geometry": {"type": "Point", "coordinates": [45.1766863463, -12.8901616081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741495ed717af02188fd81003fc893166b03cdaf", "fields": {"nom_de_la_commune": "MAMOUDZOU", "libell_d_acheminement": "MAMOUDZOU", "code_postal": "97600", "coordonnees_gps": [-12.7725574763, 45.1908759365], "code_commune_insee": "97611"}, "geometry": {"type": "Point", "coordinates": [45.1908759365, -12.7725574763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933beaa87d4211a41fc2a216181e9f045c598e7a", "fields": {"nom_de_la_commune": "M TSANGAMOUJI", "libell_d_acheminement": "M TSANGAMOUJI", "code_postal": "97650", "coordonnees_gps": [-12.758982005, 45.144203404], "code_commune_insee": "97613"}, "geometry": {"type": "Point", "coordinates": [45.144203404, -12.758982005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fbcb0b1b662345305263b1a463ad308fe4b880", "fields": {"nom_de_la_commune": "SIGAVE", "libell_d_acheminement": "SIGAVE", "code_postal": "98620", "code_commune_insee": "98612"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7988f13a90a7a2fdd51e154a32d4e903d336f54b", "fields": {"nom_de_la_commune": "UVEA", "libell_d_acheminement": "UVEA", "code_postal": "98600", "code_commune_insee": "98613"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93bd35380941de8319ad00afdb668dce9806230b", "fields": {"nom_de_la_commune": "ANAA", "libell_d_acheminement": "TUUHORA", "code_postal": "98760", "ligne_5": "ANAA", "code_commune_insee": "98711"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ffca65c67e3c7b48ced47cfe21e2658200f18f", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "VAITAPE", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b81d765bc8a2b687b8d2d030e2dba7af572b5b6", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "OFARE", "code_postal": "98790", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd67c3206771da94613ea1fc45f6c67d63020a6e", "fields": {"nom_de_la_commune": "FANGATAU", "libell_d_acheminement": "TARIONE", "code_postal": "98766", "ligne_5": "FANGATAU", "code_commune_insee": "98717"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f7eb5a19b3a286baab24c0e070dcf5cec23207", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "KAMAKA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c06d64b748928eb55b705ac7ac7b78c5ea83f4b", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "RIKITEA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d58732915226342ba8f3c7ec9f9f2475277e9d", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TARAVAI", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3181174937a60d2da21099ae03930f9052c67b1b", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TENARUNGA", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7d7ecb6d7f713097a8c6c88f3f64f1198d4e2a", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "NENGONENGO", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28315c2ca39f8a834fd63754a6377b086d16baa0", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "PARAOA", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d952dcdaf8a6f00c10112d98f4fe1384b66f1127", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "HITIAA", "code_postal": "98705", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53963b10ba61e1e7e581a7d47dfb53bcae3f8e89", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "MOHOTANI", "code_postal": "98796", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdc08eb5219bb7dadd91e09ff15595f067c5abb4", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "TEFARERII", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f30136d36992d7accf6698ca4edf9f30734b22d", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "FARE", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a90c2fb8061f4984633ded4023228fb3df8005e", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "MARUTEA NORD", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379548670a2820776066fc49ccbfc654d4ee84f2", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "TEPOTO SUD", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32642099cc2127d2d730848b5556d3c5c0046678", "fields": {"nom_de_la_commune": "MANIHI", "libell_d_acheminement": "TENOKUPARA", "code_postal": "98770", "ligne_5": "MANIHI", "code_commune_insee": "98727"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136092208b1691ed88eeb807363f3787690d3426", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "MAUPITI", "code_postal": "98732", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6025953759af030e0420416ec172d93a1c98c2da", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "MOTU ONE", "code_postal": "98732", "ligne_5": "MAUPITI", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b420628c1da5d4a20c3e610f2d6ce8f99034f6", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "HAUMI", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c124c242e47e80c5021593c3ebe921004840428", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PAOPAO", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386b3fc2fc8a12cdd1fe06381c72011ebb7ae27d", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TIAHURA", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f38fc00008a0acb93d8df2d5b3f1cdd973d29a", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "VARARI", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f25bde4408bde2420b8b7abe3ce5792ac70d134", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "TAIPIVAI", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beba5c4ce569bc913cf9cb7fcb389b4cf07e4ea8", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "ANATONU", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b29b1563c911e7d09b7c3a156b02629e6429e45", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "AVATORU", "code_postal": "98775", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04b10f9319fc706b31537c88b82b72ade476447b", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "TIPUTA", "code_postal": "98776", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5ee7457ec6f6d9ae7b9cd9ca5ca69c4680ffff", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "TUHERAHERA", "code_postal": "98778", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c95655b5e4bb13da6e9153d753b65b61be1fab2", "fields": {"nom_de_la_commune": "REAO", "libell_d_acheminement": "MARAUTAGAROA", "code_postal": "98780", "ligne_5": "REAO", "code_commune_insee": "98742"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a35e53d3cba3e9ced9611d2a8b6509e8df4cd0", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "RIMATARA", "code_postal": "98752", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0755d28bc143e016ff051047ff2b275fc1684aa1", "fields": {"nom_de_la_commune": "RURUTU", "libell_d_acheminement": "MOERAI", "code_postal": "98753", "ligne_5": "RURUTU", "code_commune_insee": "98744"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f541867988dc2a38ff5e37a456300821d74ba7", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "IRIPAU", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75b7a7f865d88006ac40e700a007cae664435cd", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "MOTOPU", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82163c703a241c58d45951e327779f8905fb3f00", "fields": {"nom_de_la_commune": "TAKAROA", "libell_d_acheminement": "TEAVAROA", "code_postal": "98781", "ligne_5": "TAKAROA", "code_commune_insee": "98749"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19783fba979e6bb7a15fa958a0fa89523a8b03cb", "fields": {"nom_de_la_commune": "TAKAROA", "libell_d_acheminement": "FAKATOPATERE", "code_postal": "98782", "ligne_5": "TAKAROA", "code_commune_insee": "98749"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc708ad1ccd46c7f977b414d3468f2c0ec0d97e", "fields": {"nom_de_la_commune": "TUBUAI", "libell_d_acheminement": "MATAURA", "code_postal": "98754", "ligne_5": "TUBUAI", "code_commune_insee": "98753"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecf5fca54365bd5ff10781eb4223497f178579f3", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKATAO", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78898b28262ee998030960b41179cf0799d56e4", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98839", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ed2e6b4d67bdc6ba61a254f30105d40c7214e5", "fields": {"nom_de_la_commune": "KAALA GOMEN", "libell_d_acheminement": "KAALA GOMEN", "code_postal": "98817", "code_commune_insee": "98810"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2b23a9f2b3cd7a01b87a67c237a44857b0ceb7", "fields": {"nom_de_la_commune": "LIFOU", "libell_d_acheminement": "WE", "code_postal": "98820", "ligne_5": "LIFOU", "code_commune_insee": "98814"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b399a5e3063aea61ba3cf9d76747d7d5d83454", "fields": {"nom_de_la_commune": "LIFOU", "libell_d_acheminement": "CHEPENEHE", "code_postal": "98884", "ligne_5": "LIFOU", "code_commune_insee": "98814"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2b76815351ccb0d5b6d126eb23f0aaf42bb200", "fields": {"nom_de_la_commune": "MARE", "libell_d_acheminement": "TADINE", "code_postal": "98828", "ligne_5": "MARE", "code_commune_insee": "98815"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33b7e309998647ea6477384ac7d7c9689a010797", "fields": {"nom_de_la_commune": "MARE", "libell_d_acheminement": "LA ROCHE", "code_postal": "98878", "ligne_5": "MARE", "code_commune_insee": "98815"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e4f55536c3c1b6c619f1063ba2f43368087a5c", "fields": {"nom_de_la_commune": "MOINDOU", "libell_d_acheminement": "MOINDOU", "code_postal": "98819", "code_commune_insee": "98816"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ba37b554bf153fd9cc029dfb7432fe787d0646", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "MONT DORE", "code_postal": "98809", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2ea1170830e96630cf1364946b3d15db40f422", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "PONT DES FRANCAIS", "code_postal": "98874", "ligne_5": "LE MONT DORE", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e96e6c712a76b69848b0d1f0af7f57d67362f0", "fields": {"nom_de_la_commune": "PAITA", "libell_d_acheminement": "PAITA", "code_postal": "98890", "code_commune_insee": "98821"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8cf8a9ec019f962ca0c76d70e45d279064e5f0", "fields": {"nom_de_la_commune": "PONERIHOUEN", "libell_d_acheminement": "PONERIHOUEN", "code_postal": "98823", "code_commune_insee": "98823"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97719f28a9dc42fd448347b2fb6dc01ad4003e16", "fields": {"nom_de_la_commune": "POUEMBOUT", "libell_d_acheminement": "POUEMBOUT", "code_postal": "98825", "code_commune_insee": "98825"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2181ddb78ccb29ff4ec13742f95d62240874e1", "fields": {"nom_de_la_commune": "VOH", "libell_d_acheminement": "OUACO", "code_postal": "98883", "ligne_5": "VOH", "code_commune_insee": "98831"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9141819c52af48c869a256b55866d336ac732ba2", "fields": {"nom_de_la_commune": "MONACO", "libell_d_acheminement": "MONACO", "code_postal": "98000", "code_commune_insee": "99138"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76a09e08a302a941f3bef2c8605b0fd97b4003a", "fields": {"nom_de_la_commune": "AJACCIO", "libell_d_acheminement": "AJACCIO", "code_postal": "20090", "coordonnees_gps": [41.9348656233, 8.70148853139], "code_commune_insee": "2A004"}, "geometry": {"type": "Point", "coordinates": [8.70148853139, 41.9348656233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1e15f4ba6f99a4998577b09d2aba6ac03343bc", "fields": {"nom_de_la_commune": "ALATA", "libell_d_acheminement": "ALATA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A006"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c856121461cea561cc0e3d834e73b7910a5684", "fields": {"nom_de_la_commune": "APPIETTO", "libell_d_acheminement": "APPIETTO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A017"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f68e76c456e184d29230dfdd841592139ee2b2", "fields": {"nom_de_la_commune": "ARRO", "libell_d_acheminement": "ARRO", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A022"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58fc85c2f886bc27a64cccad91d192d488a313e7", "fields": {"nom_de_la_commune": "CALCATOGGIO", "libell_d_acheminement": "CALCATOGGIO", "code_postal": "20111", "coordonnees_gps": [42.0444832828, 8.74672877779], "code_commune_insee": "2A048"}, "geometry": {"type": "Point", "coordinates": [8.74672877779, 42.0444832828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ae1757fd33ffd74f7273cf67963c1a2b174ed4", "fields": {"nom_de_la_commune": "CANNELLE", "libell_d_acheminement": "CANNELLE", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A060"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc6c3a067bbf6deea9830fe9e7dee42cdf4e169", "fields": {"nom_de_la_commune": "CARBINI", "libell_d_acheminement": "CARBINI", "code_postal": "20170", "coordonnees_gps": [41.663555071, 9.15818579459], "code_commune_insee": "2A061"}, "geometry": {"type": "Point", "coordinates": [9.15818579459, 41.663555071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf5a1ff2d617a34254f874064abe9226c58131d", "fields": {"nom_de_la_commune": "CASAGLIONE", "libell_d_acheminement": "CASAGLIONE", "code_postal": "20111", "coordonnees_gps": [42.0444832828, 8.74672877779], "code_commune_insee": "2A070"}, "geometry": {"type": "Point", "coordinates": [8.74672877779, 42.0444832828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a57d08fef9d0d3e3b3e738a67026f22e8dc1a4b", "fields": {"nom_de_la_commune": "CAURO", "libell_d_acheminement": "CAURO", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A085"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20bedc7367bc102f8f814ab4db6c390fbc237001", "fields": {"nom_de_la_commune": "CIAMANNACCE", "libell_d_acheminement": "CIAMANNACCE", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A089"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065970417ffcd9b24dd069d4acef95cc72f64b74", "fields": {"code_postal": "20166", "code_commune_insee": "2A091", "libell_d_acheminement": "COGNOCOLI MONTICCHI", "ligne_5": "MARATO", "nom_de_la_commune": "COGNOCOLI MONTICCHI", "coordonnees_gps": [41.8437560104, 8.85889610104]}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ca28384deed8f4eeb925b6b9ea787ff83ea3a9", "fields": {"nom_de_la_commune": "EVISA", "libell_d_acheminement": "EVISA", "code_postal": "20126", "coordonnees_gps": [42.2751546292, 8.82859750608], "code_commune_insee": "2A108"}, "geometry": {"type": "Point", "coordinates": [8.82859750608, 42.2751546292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943d85af5a84890c81ce44d59e185bb448f8d677", "fields": {"nom_de_la_commune": "FIGARI", "libell_d_acheminement": "FIGARI", "code_postal": "20114", "coordonnees_gps": [41.5160057519, 9.12021159495], "code_commune_insee": "2A114"}, "geometry": {"type": "Point", "coordinates": [9.12021159495, 41.5160057519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb4454a4ad6f07f100d1bd3bca7e97b5723279f", "fields": {"nom_de_la_commune": "FORCIOLO", "libell_d_acheminement": "FORCIOLO", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A117"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae26ce6fb4a7fcdc3b85f70bb7918c01e647de3", "fields": {"nom_de_la_commune": "GRANACE", "libell_d_acheminement": "GRANACE", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A128"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0574b368345a7c19e0ac0b02894e042cf95c95c", "fields": {"nom_de_la_commune": "LEVIE", "libell_d_acheminement": "LEVIE", "code_postal": "20170", "coordonnees_gps": [41.663555071, 9.15818579459], "code_commune_insee": "2A142"}, "geometry": {"type": "Point", "coordinates": [9.15818579459, 41.663555071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717f631f9b6dec785d3c5c0dddefcbd34028a744", "fields": {"nom_de_la_commune": "MURZO", "libell_d_acheminement": "MURZO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A174"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9353fc22b48ee4362c3b72bebcb88cbf2ff6e195", "fields": {"nom_de_la_commune": "ORTO", "libell_d_acheminement": "ORTO", "code_postal": "20125", "coordonnees_gps": [42.1964321132, 8.92767106471], "code_commune_insee": "2A196"}, "geometry": {"type": "Point", "coordinates": [8.92767106471, 42.1964321132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bef3ede2008080893a2ee20555d3f11bcd9c564", "fields": {"nom_de_la_commune": "PALNECA", "libell_d_acheminement": "PALNECA", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A200"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c15531b4a402f113676cf40e93d7d7003d41eee", "fields": {"nom_de_la_commune": "PETRETO BICCHISANO", "libell_d_acheminement": "PETRETO BICCHISANO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A211"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3e22092bf14869494f2f5c928f91439f2e8acd", "fields": {"nom_de_la_commune": "POGGIOLO", "libell_d_acheminement": "POGGIOLO", "code_postal": "20125", "coordonnees_gps": [42.1964321132, 8.92767106471], "code_commune_insee": "2A240"}, "geometry": {"type": "Point", "coordinates": [8.92767106471, 42.1964321132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b226cc2ecffa84feb956118094eca84d5173a3ae", "fields": {"nom_de_la_commune": "PROPRIANO", "libell_d_acheminement": "PROPRIANO", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A249"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0e1ebf3161316535e4f2cafe4316a55ec45c04", "fields": {"nom_de_la_commune": "QUASQUARA", "libell_d_acheminement": "QUASQUARA", "code_postal": "20142", "coordonnees_gps": [41.9026734548, 9.00649807358], "code_commune_insee": "2A253"}, "geometry": {"type": "Point", "coordinates": [9.00649807358, 41.9026734548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4952314141d91f58874003384c10dae9e7c329b8", "fields": {"nom_de_la_commune": "RENNO", "libell_d_acheminement": "RENNO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A258"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee41ea8b179bd696e66f04875e9112fbe7b562e5", "fields": {"nom_de_la_commune": "ROSAZIA", "libell_d_acheminement": "ROSAZIA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A262"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c94d064df13f792523f83e44fa5becc028a1ad5", "fields": {"nom_de_la_commune": "SALICE", "libell_d_acheminement": "SALICE", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A266"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ffaa7007eb142e25694966a96972ac44a92ffd", "fields": {"nom_de_la_commune": "SARI D ORCINO", "libell_d_acheminement": "SARI D ORCINO", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A270"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7aa81d4c99208dd47ea4c39b214d33ccdf66dc", "fields": {"nom_de_la_commune": "SANT ANDREA D ORCINO", "libell_d_acheminement": "SANT ANDREA D ORCINO", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A295"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6425165d8cbeccef27c4903fbc424849f8147ea", "fields": {"nom_de_la_commune": "TAVACO", "libell_d_acheminement": "TAVACO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A323"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98fca4fbf7e1946e2eb173d4fe9459decf3caeb", "fields": {"nom_de_la_commune": "TOLLA", "libell_d_acheminement": "TOLLA", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A326"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958b7f1fb0a255c32ae611a683ea8c4644112f44", "fields": {"nom_de_la_commune": "VICO", "libell_d_acheminement": "VICO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A348"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5384d1858a1cc4b238deeb4b61b95b98bcd285f", "fields": {"code_postal": "20224", "code_commune_insee": "2B007", "libell_d_acheminement": "ALBERTACCE", "ligne_5": "VERGIO", "nom_de_la_commune": "ALBERTACCE", "coordonnees_gps": [42.3286262979, 8.98251417824]}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b23c8daae4ac9999d381bdb5db557bf47b5e12f", "fields": {"nom_de_la_commune": "BORGO", "libell_d_acheminement": "BORGO", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B042"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195fa6e5de4e9b74525b9959de7ed6685feb2e05", "fields": {"nom_de_la_commune": "BUSTANICO", "libell_d_acheminement": "BUSTANICO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B045"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebbc4b882e9bd03a2d3ee98ca248698d0ba1c926", "fields": {"nom_de_la_commune": "CALACUCCIA", "libell_d_acheminement": "CALACUCCIA", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B047"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e7c636885335a96e610bdf2ed447f9b8613267", "fields": {"nom_de_la_commune": "CALVI", "libell_d_acheminement": "CALVI", "code_postal": "20260", "coordonnees_gps": [42.4957918886, 8.79984001369], "code_commune_insee": "2B050"}, "geometry": {"type": "Point", "coordinates": [8.79984001369, 42.4957918886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3267061941654c1b1bbda41cb29840a83bfa37", "fields": {"nom_de_la_commune": "CAMPILE", "libell_d_acheminement": "CAMPILE", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B054"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2d20c3c045673e96882f6c44791b13d9b9a59d", "fields": {"nom_de_la_commune": "CARCHETO BRUSTICO", "libell_d_acheminement": "CARCHETO BRUSTICO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B063"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8f5c25dc3265dce7e778cfd7c35ffb4b986d90", "fields": {"nom_de_la_commune": "CASTELLARE DI CASINCA", "libell_d_acheminement": "CASTELLARE DI CASINCA", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B077"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f87c420ad9092c9aba48ef3cca6dbf47b336226", "fields": {"nom_de_la_commune": "CASTIGLIONE", "libell_d_acheminement": "CASTIGLIONE", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B081"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5cb0ceebb2ec19e2f410b124a9c39739a45203", "fields": {"nom_de_la_commune": "CASTIRLA", "libell_d_acheminement": "CASTIRLA", "code_postal": "20236", "coordonnees_gps": [42.3752519871, 9.15942302041], "code_commune_insee": "2B083"}, "geometry": {"type": "Point", "coordinates": [9.15942302041, 42.3752519871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bac531f02056a8c9d52d74f36bceed20d6fa6ab", "fields": {"nom_de_la_commune": "CATERI", "libell_d_acheminement": "CATERI", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B084"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b62daedb37ba757bd5cddbf1991771a1fb3fc62", "fields": {"nom_de_la_commune": "CENTURI", "libell_d_acheminement": "CENTURI", "code_postal": "20238", "coordonnees_gps": [42.948308645, 9.37005973], "code_commune_insee": "2B086"}, "geometry": {"type": "Point", "coordinates": [9.37005973, 42.948308645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f221c8447b214d4a2949013ec8fab9b22c772aae", "fields": {"nom_de_la_commune": "BEULOTTE ST LAURENT", "libell_d_acheminement": "BEULOTTE ST LAURENT", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70071"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c1b1377a6151fa97e1467b6d6ac60f7aa851db", "fields": {"nom_de_la_commune": "BOREY", "libell_d_acheminement": "BOREY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70077"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d72cd6232d583819005c2129c052ce7c1af37a4", "fields": {"nom_de_la_commune": "BOUGEY", "libell_d_acheminement": "BOUGEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70078"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fb353e81d0a80e5ecd2538fff3d35015a5d8d5", "fields": {"nom_de_la_commune": "BOUHANS ET FEURG", "libell_d_acheminement": "BOUHANS ET FEURG", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70080"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f4ee933013984fc34bc39a2b778266afc25366", "fields": {"nom_de_la_commune": "BOUHANS LES LURE", "libell_d_acheminement": "BOUHANS LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70081"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778930f79781e28463bbc121a0f55136e37afa09", "fields": {"nom_de_la_commune": "BOULOT", "libell_d_acheminement": "BOULOT", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70084"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75be4afacdd074abb4e9081ffc4b67543c54db7d", "fields": {"nom_de_la_commune": "BOURBEVELLE", "libell_d_acheminement": "BOURBEVELLE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70086"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9e901905006b22189b33dee105e131fa6ca4d5", "fields": {"nom_de_la_commune": "BREVILLIERS", "libell_d_acheminement": "BREVILLIERS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70096"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb41ff826e13b228ba192a448a2d5d0f0551d3f9", "fields": {"nom_de_la_commune": "BRIAUCOURT", "libell_d_acheminement": "BRIAUCOURT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70097"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b7c481a6b0b597f4a9fb66a5f2647f60d94aeb3", "fields": {"nom_de_la_commune": "BROTTE LES RAY", "libell_d_acheminement": "BROTTE LES RAY", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70099"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397096325913a1d529ff4cda1825565d43913f56", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70107"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca0da9f94c3bc796f1c5bc3e9bb0f01891f04dee", "fields": {"nom_de_la_commune": "CALMOUTIER", "libell_d_acheminement": "CALMOUTIER", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70111"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b3d261179dec5ed018673bece53f0e3be5cedd", "fields": {"nom_de_la_commune": "CEMBOING", "libell_d_acheminement": "CEMBOING", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70112"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4dec01adc9f2457e6544acb437c4faf3b91503a", "fields": {"nom_de_la_commune": "CHAMBORNAY LES PIN", "libell_d_acheminement": "CHAMBORNAY LES PIN", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70119"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d484389461894d91f25d62209ea2b31658ba303", "fields": {"nom_de_la_commune": "CHAMPEY", "libell_d_acheminement": "CHAMPEY", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70121"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949cf95765a857e70c35f3354f034fd8036650dd", "fields": {"nom_de_la_commune": "CHANTES", "libell_d_acheminement": "CHANTES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70127"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10033f21fdcc090bd6835f81dc9873aa103d9be5", "fields": {"nom_de_la_commune": "CHARIEZ", "libell_d_acheminement": "CHARIEZ", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70134"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1423366c1fb952c6854b75fa8917c4549b5356a1", "fields": {"nom_de_la_commune": "CHASSEY LES MONTBOZON", "libell_d_acheminement": "CHASSEY LES MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70137"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263e9cf8bf0a29eda00cbb7b893120ca03696ff2", "fields": {"nom_de_la_commune": "CHEMILLY", "libell_d_acheminement": "CHEMILLY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70148"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b158aaa19e48a059063ca3cc97e9f00295bf18a3", "fields": {"nom_de_la_commune": "CIREY", "libell_d_acheminement": "CIREY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70154"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f430180a971c85fd8dc836cb4d15f4dc033730", "fields": {"nom_de_la_commune": "CITERS", "libell_d_acheminement": "CITERS", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70155"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c01d8de0736cef45a14fd303016a15fb3250c20", "fields": {"nom_de_la_commune": "CITEY", "libell_d_acheminement": "CITEY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70156"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7345196bcfdc07021aea3b5ada4baab4c781a73b", "fields": {"nom_de_la_commune": "COGNIERES", "libell_d_acheminement": "COGNIERES", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70159"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54891f1166192358a66aad8271619707859cb60", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70163"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e4a89c55eef49d95a89b4261727c7fa7151aaf", "fields": {"nom_de_la_commune": "COLOMBOTTE", "libell_d_acheminement": "COLOMBOTTE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70164"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40da3d054f7a165a762273d7a5e1de6235dff55", "fields": {"nom_de_la_commune": "CONFLANS SUR LANTERNE", "libell_d_acheminement": "CONFLANS SUR LANTERNE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70168"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4013f351393d88c009bfea9d745ec7f7194d69", "fields": {"nom_de_la_commune": "CONFRACOURT", "libell_d_acheminement": "CONFRACOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70169"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5ee3cf860cf6e54426becd566efb1eb3849da0", "fields": {"nom_de_la_commune": "CORRE", "libell_d_acheminement": "CORRE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70177"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8690eace656cafb181b127b0f161e6e289f04493", "fields": {"nom_de_la_commune": "CRESANCEY", "libell_d_acheminement": "CRESANCEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70185"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4828bc6e84afd0c16dd67ced5cdadaa39dfaebc8", "fields": {"nom_de_la_commune": "CROMARY", "libell_d_acheminement": "CROMARY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70189"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4574372d0760ec5a8b0a2b6bb2cbb4ca2ff55349", "fields": {"nom_de_la_commune": "CUBRY LES FAVERNEY", "libell_d_acheminement": "CUBRY LES FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70190"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cba7529edbec272cd8141bde80d7b5776380b27", "fields": {"nom_de_la_commune": "LA DEMIE", "libell_d_acheminement": "LA DEMIE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70203"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62984d73077f238fa323f72d5b03e2dafbc89431", "fields": {"nom_de_la_commune": "ECHENANS SOUS MONT VAUDOIS", "libell_d_acheminement": "ECHENANS SOUS MONT VAUDOIS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70206"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208ed403db84edd0f45bd62ad762b68b002cf24e", "fields": {"nom_de_la_commune": "ECROMAGNY", "libell_d_acheminement": "ECROMAGNY", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70210"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7553a8a05d4722a05426e86a69737048a693e4", "fields": {"nom_de_la_commune": "ECUELLE", "libell_d_acheminement": "ECUELLE", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70211"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1a59f00d1d027f653dc0f4d44ae2ffa01d9bb0", "fields": {"nom_de_la_commune": "EHUNS", "libell_d_acheminement": "EHUNS", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70213"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dc1fb8cc86dac92d467b4898b561379efa57af", "fields": {"nom_de_la_commune": "ERREVET", "libell_d_acheminement": "ERREVET", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70215"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a81ae3e920b9d652aa84d0e7e8fd56913521d0", "fields": {"nom_de_la_commune": "ESSERTENNE ET CECEY", "libell_d_acheminement": "ESSERTENNE ET CECEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70220"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f560f300b4465b6200a442da94399c20455297", "fields": {"nom_de_la_commune": "ETUZ", "libell_d_acheminement": "ETUZ", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70224"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4414896d427f51376bee2a8ab8a46b8584d0a3c", "fields": {"nom_de_la_commune": "FAHY LES AUTREY", "libell_d_acheminement": "FAHY LES AUTREY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70225"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e56772cd12ab3982df1392f78ed2ffbf7286e99", "fields": {"nom_de_la_commune": "FLEUREY LES LAVONCOURT", "libell_d_acheminement": "FLEUREY LES LAVONCOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70237"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb782fa6e17945245e11f61a7e9713cf5d20750b", "fields": {"code_postal": "70600", "code_commune_insee": "70247", "libell_d_acheminement": "FOUVENT ST ANDOCHE", "ligne_5": "ST ANDOCHE", "nom_de_la_commune": "FOUVENT ST ANDOCHE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9033790dd73ee8d1330119ecb835dbc54c01b749", "fields": {"nom_de_la_commune": "FROTEY LES LURE", "libell_d_acheminement": "FROTEY LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70260"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5351d03b3b45ba960a3a528a92698350f99a899", "fields": {"nom_de_la_commune": "FROTEY LES VESOUL", "libell_d_acheminement": "FROTEY LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70261"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b2457ba157bbbcc9059c365deee87452eb5076", "fields": {"nom_de_la_commune": "GRANDECOURT", "libell_d_acheminement": "GRANDECOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70274"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e78b229729a121a39c5a387c97c5b5b42bd1c81", "fields": {"code_postal": "70440", "code_commune_insee": "70283", "libell_d_acheminement": "HAUT DU THEM CHATEAU LAMBERT", "ligne_5": "CHATEAU LAMBERT", "nom_de_la_commune": "HAUT DU THEM CHATEAU LAMBERT", "coordonnees_gps": [47.8263854039, 6.71661809603]}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cc134181c0f6fdea2ff8eaab435697c1f62561", "fields": {"nom_de_la_commune": "HERICOURT", "libell_d_acheminement": "HERICOURT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70285"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f59cf0226a3fc8b4079e06548b1eb20ef21fb4a", "fields": {"nom_de_la_commune": "JONVELLE", "libell_d_acheminement": "JONVELLE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70291"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac854f44f3c70065ffc6b4a37a1e8a0ab66568d1", "fields": {"nom_de_la_commune": "LARIANS ET MUNANS", "libell_d_acheminement": "LARIANS ET MUNANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70296"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8988ba9e05cacf1093f6b6d3f42c5f77c82b2de8", "fields": {"nom_de_la_commune": "LARRET", "libell_d_acheminement": "LARRET", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70297"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c6b8901f54890cd7d52eaa8cde308da2aa6c258", "fields": {"nom_de_la_commune": "LAVIGNEY", "libell_d_acheminement": "LAVIGNEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70298"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a0263f033059cbc3fa560669ce7ea629e6f381", "fields": {"nom_de_la_commune": "LAVONCOURT", "libell_d_acheminement": "LAVONCOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70299"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4eff24e415a4624982e866f0d9d5024ebbf07e", "fields": {"nom_de_la_commune": "LIEUCOURT", "libell_d_acheminement": "LIEUCOURT", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70302"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e970f99c8a1222eb570463c8444b2853c9dfe2a", "fields": {"nom_de_la_commune": "LIEVANS", "libell_d_acheminement": "LIEVANS", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70303"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1586da336f447314a6d04bb76dd5c7c9b9ada685", "fields": {"nom_de_la_commune": "LONGEVELLE", "libell_d_acheminement": "LONGEVELLE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70307"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd8705db317cfbd9c6357be1d0c70524f179b12", "fields": {"nom_de_la_commune": "LURE", "libell_d_acheminement": "LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70310"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78202bc40ee2eae71085c70e7d41cae8648b13a2", "fields": {"nom_de_la_commune": "MAGNY VERNOIS", "libell_d_acheminement": "MAGNY VERNOIS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70321"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b2cc5d9de479e491ab5106c6a950891801ec04", "fields": {"nom_de_la_commune": "MAILLEY ET CHAZELOT", "libell_d_acheminement": "MAILLEY ET CHAZELOT", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70324"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934499f8d9a78d7ff95c0c37b1fd2abe64157d6f", "fields": {"nom_de_la_commune": "LA MALACHERE", "libell_d_acheminement": "LA MALACHERE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70326"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab575220b73348400273211dced4fcd41bc2348", "fields": {"nom_de_la_commune": "MANTOCHE", "libell_d_acheminement": "MANTOCHE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70331"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65624c1a1a2619fe9db6ccce7176170d79391a2f", "fields": {"nom_de_la_commune": "MARNAY", "libell_d_acheminement": "MARNAY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70334"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd7e9e9939bc405262e09ff9ed76e19088259be", "fields": {"nom_de_la_commune": "MEMBREY", "libell_d_acheminement": "MEMBREY", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70340"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6f678e73427fb87e7fe01b76170fb09222c450", "fields": {"nom_de_la_commune": "MIGNAVILLERS", "libell_d_acheminement": "MIGNAVILLERS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70347"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c679db2d2e35a30f47e18ecb4d4036c8f824f20b", "fields": {"nom_de_la_commune": "MONTDORE", "libell_d_acheminement": "MONTDORE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70360"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757644f9e56e7611c58f617c2df2c0129e010629", "fields": {"nom_de_la_commune": "MONTIGNY LES CHERLIEU", "libell_d_acheminement": "MONTIGNY LES CHERLIEU", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70362"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d6f2164c2fe5cc28814a14dd02ee1d2e5e8e26", "fields": {"code_postal": "70120", "code_commune_insee": "70373", "libell_d_acheminement": "LA ROCHE MOREY", "ligne_5": "ST JULIEN", "nom_de_la_commune": "LA ROCHE MOREY", "coordonnees_gps": [47.6952639398, 5.81680839597]}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f8a8390f32512b76ec1af616daf6fbe79890de9", "fields": {"nom_de_la_commune": "NEUVELLE LES CROMARY", "libell_d_acheminement": "NEUVELLE LES CROMARY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70383"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0483ec1560971f1a09cac9c1569a6f195b780b", "fields": {"nom_de_la_commune": "NOIDANS LE FERROUX", "libell_d_acheminement": "NOIDANS LE FERROUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70387"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030d6a186012316626649db72b2a1aa27661d45b", "fields": {"nom_de_la_commune": "NOIRON", "libell_d_acheminement": "NOIRON", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70389"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef9953537cc34e56b9134eee8e0ca38a8aa31e7", "fields": {"nom_de_la_commune": "OIGNEY", "libell_d_acheminement": "OIGNEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70392"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414e3cace06180b0201170b14d57c258d982a02d", "fields": {"nom_de_la_commune": "ORMENANS", "libell_d_acheminement": "ORMENANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70397"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bb4c5eabf4028cfb6d8f592f0b2b9f5e44277f", "fields": {"nom_de_la_commune": "OUGE", "libell_d_acheminement": "OUGE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70400"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40a0d4dbdf61fb511c26098fbc9d69661570e05", "fields": {"nom_de_la_commune": "PONTCEY", "libell_d_acheminement": "PONTCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70417"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5edb5e7a7957c256056f253a7add9d2e84b8d90", "fields": {"nom_de_la_commune": "PONT SUR L OGNON", "libell_d_acheminement": "PONT SUR L OGNON", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70420"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "134bd0bc31268d25799e0197c2d8dcdd58e47901", "fields": {"nom_de_la_commune": "PORT SUR SAONE", "libell_d_acheminement": "PORT SUR SAONE", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70421"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296916f5ec90651a4c360b42b2d8c03e22363b80", "fields": {"nom_de_la_commune": "LA QUARTE", "libell_d_acheminement": "LA QUARTE", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70430"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6304d43755b47cd87f6837a32b16a8887dbde5bb", "fields": {"nom_de_la_commune": "QUINCEY", "libell_d_acheminement": "QUINCEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70433"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f314f16a0393fb6b83aa6bcb8fa44dba3565751", "fields": {"nom_de_la_commune": "RAZE", "libell_d_acheminement": "RAZE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70439"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43902a4464b851219abbabddc71157988696f069", "fields": {"nom_de_la_commune": "RIGNY", "libell_d_acheminement": "RIGNY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70446"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafe2a65afd0a4fa746af0826409477605e81461", "fields": {"nom_de_la_commune": "ROCHE LINOTTE ET SORANS CORDIERS", "libell_d_acheminement": "ROCHE LINOTTE ET SORANS CORDIERS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70449"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed2b4e5011f2336b0adf9d1ad5754b796f59fbe3", "fields": {"nom_de_la_commune": "RONCHAMP", "libell_d_acheminement": "RONCHAMP", "code_postal": "70250", "coordonnees_gps": [47.7163093328, 6.63449293574], "code_commune_insee": "70451"}, "geometry": {"type": "Point", "coordinates": [6.63449293574, 47.7163093328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293aadfe66c43b6cb13ebe687a36db1e9539ed71", "fields": {"nom_de_la_commune": "ST LOUP SUR SEMOUSE", "libell_d_acheminement": "ST LOUP SUR SEMOUSE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70467"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96c22b9d132fdb1ef71f0e2983cc9ddaecd07a6", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70468"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9a4aed135a68ffcb8834a60d13a61a75234858", "fields": {"nom_de_la_commune": "STE MARIE EN CHAUX", "libell_d_acheminement": "STE MARIE EN CHAUX", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70470"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07025e3db98e82efe5a75f8185d7a0883405f334", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70473"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5588c9268bf906fa4c75b8a2ff27e4fe296714b", "fields": {"nom_de_la_commune": "SORNAY", "libell_d_acheminement": "SORNAY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70494"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a816e8fe492959b120a7362d36de48258aa13fea", "fields": {"nom_de_la_commune": "TAVEY", "libell_d_acheminement": "TAVEY", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70497"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5603687ad5634a314327520caf9609b58c5544d7", "fields": {"nom_de_la_commune": "VAITE", "libell_d_acheminement": "VAITE", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70511"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cb8e63817a0753d94b59b9eca8cec76f94b695", "fields": {"nom_de_la_commune": "VANNE", "libell_d_acheminement": "VANNE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70520"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a48c5e081ec259cff621502bbe4ee62423cebd", "fields": {"nom_de_la_commune": "VAROGNE", "libell_d_acheminement": "VAROGNE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70522"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fc6d2b97a6abf24c2e07a80c9054675a7d67b2", "fields": {"nom_de_la_commune": "VAUVILLERS", "libell_d_acheminement": "VAUVILLERS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70526"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d73273024af9fc7110e62bb442afd98949d4bf", "fields": {"nom_de_la_commune": "VAUX LE MONCELOT", "libell_d_acheminement": "VAUX LE MONCELOT", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70527"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e55586f0df35565387eaf0e436441b081b664a", "fields": {"nom_de_la_commune": "VELLEGUINDRY ET LEVRECEY", "libell_d_acheminement": "VELLEGUINDRY ET LEVRECEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70535"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b9ec0cffa2021d6a4132b33b71e0a7174b52a1", "fields": {"nom_de_la_commune": "LA VERGENNE", "libell_d_acheminement": "LA VERGENNE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70544"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a6ab8c3539e3f9209d01d7400d775349dba7bb", "fields": {"nom_de_la_commune": "LA VILLEDIEU EN FONTENETTE", "libell_d_acheminement": "LA VILLEDIEU EN FONTENETTE", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70555"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63345a7765f137d6e6aaedfb455f6657d2ff602", "fields": {"nom_de_la_commune": "VILLERSEXEL", "libell_d_acheminement": "VILLERSEXEL", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70561"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e21798279a0236fb4aef6bb6eb3cd6a84eb207", "fields": {"nom_de_la_commune": "VILLERS VAUDEY", "libell_d_acheminement": "VILLERS VAUDEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70568"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef22eed2193144b9cdb6ee20850706382075d7a6", "fields": {"nom_de_la_commune": "VITREY SUR MANCE", "libell_d_acheminement": "VITREY SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70572"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c9563ffac9f3fca8553a4dadce6c98016e8664", "fields": {"nom_de_la_commune": "VORAY SUR L OGNON", "libell_d_acheminement": "VORAY SUR L OGNON", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70575"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94a617f5f93f06a9cfe9d1771c103d96fb578ed", "fields": {"nom_de_la_commune": "VOUGECOURT", "libell_d_acheminement": "VOUGECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70576"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3faa470efb533f20ff69458276ce8deec24376c6", "fields": {"nom_de_la_commune": "GURS", "libell_d_acheminement": "GURS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64253"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a51f99066143cfc8999cc85bc0cb7123ecc8b704", "fields": {"nom_de_la_commune": "HAGETAUBIN", "libell_d_acheminement": "HAGETAUBIN", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64254"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cc8763e969e4528563361212ec5a7259876a44", "fields": {"nom_de_la_commune": "HIGUERES SOUYE", "libell_d_acheminement": "HIGUERES SOUYE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64262"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116539204e141d0287d9a44aa41411c82ef8b0fe", "fields": {"nom_de_la_commune": "L HOPITAL ST BLAISE", "libell_d_acheminement": "L HOPITAL ST BLAISE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64264"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17205f9be02dbe9b8dfd29b52f212e2691da7bf5", "fields": {"nom_de_la_commune": "HOURS", "libell_d_acheminement": "HOURS", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64266"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf25ffdd09e1a56262e5721bd6647bc6a53a0167", "fields": {"nom_de_la_commune": "ILHARRE", "libell_d_acheminement": "ILHARRE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64272"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83215d4883dc36bba02678160ca961a866a350d", "fields": {"nom_de_la_commune": "IROULEGUY", "libell_d_acheminement": "IROULEGUY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64274"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0069952dc7f0b969f14afbd25bc72c834b3047", "fields": {"nom_de_la_commune": "JURANCON", "libell_d_acheminement": "JURANCON", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64284"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ca362d99ec18cc182aed1eff9b14abc70fc251", "fields": {"nom_de_la_commune": "LABASTIDE CEZERACQ", "libell_d_acheminement": "LABASTIDE CEZERACQ", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64288"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2194e5f394d62c9f23e4378aeb1e71e71af1634", "fields": {"nom_de_la_commune": "LAGOR", "libell_d_acheminement": "LAGOR", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64301"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55aa1672c2174d86b1dd5267f4ea21976808cae", "fields": {"nom_de_la_commune": "LALONQUETTE", "libell_d_acheminement": "LALONQUETTE", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64308"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec574f5504e5d4f5121ef54bd7b5289fea9b1e5b", "fields": {"nom_de_la_commune": "LANNECAUBE", "libell_d_acheminement": "LANNECAUBE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64311"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d9f6a6df787441571e977489e209516841c292", "fields": {"code_postal": "64440", "code_commune_insee": "64320", "libell_d_acheminement": "LARUNS", "ligne_5": "EAUX CHAUDES", "nom_de_la_commune": "LARUNS", "coordonnees_gps": [42.9183295476, -0.395850195838]}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed318da5e9c643c5e2d2bfd18a55a224d9a42f27", "fields": {"nom_de_la_commune": "LASSEUBETAT", "libell_d_acheminement": "LASSEUBETAT", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64325"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8338bc48ddb78c1b8e11a193d86c3895fd308259", "fields": {"nom_de_la_commune": "LEMBEYE", "libell_d_acheminement": "LEMBEYE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64331"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62bec7d19fa08ad0c17f68382ebc1e4361157d4b", "fields": {"nom_de_la_commune": "LEREN", "libell_d_acheminement": "LEREN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64334"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0fbeba7035e5f58531408b289dfaa53a882ed9", "fields": {"nom_de_la_commune": "LUC ARMAU", "libell_d_acheminement": "LUC ARMAU", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64356"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8eeea7af603e62231d6cc4e2a4ea04007b6902c", "fields": {"nom_de_la_commune": "LUXE SUMBERRAUTE", "libell_d_acheminement": "LUXE SUMBERRAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64362"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d798d54b73b9a5748c1790763b36b219698c17", "fields": {"nom_de_la_commune": "MASPARRAUTE", "libell_d_acheminement": "MASPARRAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64368"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7af561b04804379d115d5f5ace56f04732a3cb8", "fields": {"nom_de_la_commune": "MASPIE LALONQUERE JUILLACQ", "libell_d_acheminement": "MASPIE LALONQUERE JUILLACQ", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64369"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d3de05a0c26bec7dff03d43e43969d82da4089", "fields": {"nom_de_la_commune": "MAULEON LICHARRE", "libell_d_acheminement": "MAULEON SOULE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64371"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bbed62c400ab3553db70c8733ca2f98f54fd144", "fields": {"nom_de_la_commune": "MAZERES LEZONS", "libell_d_acheminement": "MAZERES LEZONS", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64373"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b0f510518cf491648dea22c1f58d8d4fe9e3f3", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64374"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6936f4db4d52c5c6aa6bd87c18fe3e54c6c93fee", "fields": {"nom_de_la_commune": "MIALOS", "libell_d_acheminement": "MIALOS", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64383"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3c1f3398bf78872cbb307ca62243a840160bd0", "fields": {"nom_de_la_commune": "MOMY", "libell_d_acheminement": "MOMY", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64388"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6794d25dc14e1a6f7583be4a2eb731b4cbfacc56", "fields": {"nom_de_la_commune": "MONASSUT AUDIRACQ", "libell_d_acheminement": "MONASSUT AUDIRACQ", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64389"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98b4080bc3c1db0be6abf27d3bd4fcad2e5f81a", "fields": {"code_postal": "64300", "code_commune_insee": "64396", "libell_d_acheminement": "MONT", "ligne_5": "ARANCE", "nom_de_la_commune": "MONT", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83b33a9bcddd1e0bfe5765c9a6ccc0ef6e82d61", "fields": {"nom_de_la_commune": "MONTORY", "libell_d_acheminement": "MONTORY", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64404"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2e69fef95b9b52921f7dfb9520a76f28403e3b", "fields": {"nom_de_la_commune": "MOURENX", "libell_d_acheminement": "MOURENX", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64410"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49a6159ca843fb3488bd924fa1d087fbf52442a", "fields": {"nom_de_la_commune": "MUSCULDY", "libell_d_acheminement": "MUSCULDY", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64411"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3906c7b72c5b2522975cf9d042ce7d12de5a21", "fields": {"nom_de_la_commune": "NAVAILLES ANGOS", "libell_d_acheminement": "NAVAILLES ANGOS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64415"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08dac37ff4caab7c9d2a3d8d36ee8d1c7b382c26", "fields": {"nom_de_la_commune": "OGEU LES BAINS", "libell_d_acheminement": "OGEU LES BAINS", "code_postal": "64680", "coordonnees_gps": [43.154142648, -0.506746806096], "code_commune_insee": "64421"}, "geometry": {"type": "Point", "coordinates": [-0.506746806096, 43.154142648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1ec98ecc443ca6acc7a9aec1f8c0b63ee1a965a", "fields": {"nom_de_la_commune": "ORAAS", "libell_d_acheminement": "ORAAS", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64423"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5225a6f1ceb752f96e8f101b573e24db7f484f4a", "fields": {"nom_de_la_commune": "ORDIARP", "libell_d_acheminement": "ORDIARP", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64424"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1348b37d2934446a19db1c0e34fb1319e5642d8", "fields": {"nom_de_la_commune": "ORIN", "libell_d_acheminement": "ORIN", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64426"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebc6bc9d8816c74523bebf56f8fb6df184f96a4", "fields": {"nom_de_la_commune": "ORRIULE", "libell_d_acheminement": "ORRIULE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64428"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69504d57f20ca83f7105e4a4159b7bc0bf827c09", "fields": {"code_postal": "64300", "code_commune_insee": "64430", "libell_d_acheminement": "ORTHEZ", "ligne_5": "STE SUZANNE", "nom_de_la_commune": "ORTHEZ", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53981edc5bf6725ce5baf280a3b04d29b3f5ba0a", "fields": {"nom_de_la_commune": "PIETS PLASENCE MOUSTROU", "libell_d_acheminement": "PIETS PLASENCE MOUSTROU", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64447"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b7c5aba8bbb27e134476b3d21538597b3ff665", "fields": {"nom_de_la_commune": "PONTIACQ VIELLEPINTE", "libell_d_acheminement": "PONTIACQ VIELLEPINTE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64454"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59851385716be0a09b043902c218ecb73f67558d", "fields": {"nom_de_la_commune": "REBENACQ", "libell_d_acheminement": "REBENACQ", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64463"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf027be1303e6ceba436d6920aa2feca6866b829", "fields": {"nom_de_la_commune": "RIVEHAUTE", "libell_d_acheminement": "RIVEHAUTE", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64466"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0702209ebbb47ac6999147a2f164c41895037b", "fields": {"nom_de_la_commune": "RONTIGNON", "libell_d_acheminement": "RONTIGNON", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64467"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e78f84f1b06fac8d3ae5554b575caefccb2738e2", "fields": {"nom_de_la_commune": "ST BOES", "libell_d_acheminement": "ST BOES", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64471"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f83a5eea31a7d1f0fab0d28025488de90b89049e", "fields": {"nom_de_la_commune": "STE COLOME", "libell_d_acheminement": "STE COLOME", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64473"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2d2e32f456e49b8654d471da712ee059726482", "fields": {"nom_de_la_commune": "ST JAMMES", "libell_d_acheminement": "ST JAMMES", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64482"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef1e76ce14e920020681af9881389806ce420b3", "fields": {"nom_de_la_commune": "ST JEAN POUDGE", "libell_d_acheminement": "ST JEAN POUDGE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64486"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35068db23a30c1ba69924b09b29d5057766721b2", "fields": {"nom_de_la_commune": "ST MARTIN D ARBEROUE", "libell_d_acheminement": "ST MARTIN D ARBEROUE", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64489"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e025c08ae07db09e4e62ef93b150b0f6b41d84c", "fields": {"nom_de_la_commune": "ST PIERRE D IRUBE", "libell_d_acheminement": "ST PIERRE D IRUBE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64496"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012dc77283677d6aba25db26a01f2143d0962d47", "fields": {"nom_de_la_commune": "SARRANCE", "libell_d_acheminement": "SARRANCE", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64506"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12eb0fc89af0a35aec0699acc7767bd1c2f5a616", "fields": {"nom_de_la_commune": "SAULT DE NAVAILLES", "libell_d_acheminement": "SAULT DE NAVAILLES", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64510"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff716a22aea6c83b7ec6711d70135771b06bacd", "fields": {"nom_de_la_commune": "SENDETS", "libell_d_acheminement": "SENDETS", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64518"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9550610612d15f8264f866420133601063f7a0", "fields": {"nom_de_la_commune": "SERRES STE MARIE", "libell_d_acheminement": "SERRES STE MARIE", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64521"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2457c422b5cf93d567db6a49f92490d0a2cd5173", "fields": {"nom_de_la_commune": "SEVIGNACQ MEYRACQ", "libell_d_acheminement": "SEVIGNACQ MEYRACQ", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64522"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "222f9117d3964a803634eaf12f9508961e18f0f0", "fields": {"nom_de_la_commune": "SIMACOURBE", "libell_d_acheminement": "SIMACOURBE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64524"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02bda7b650b32b53d878a32b053f4799edabca9", "fields": {"nom_de_la_commune": "SOUMOULOU", "libell_d_acheminement": "SOUMOULOU", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64526"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17b6c8356112d9b6f08716498af9e176e198e388", "fields": {"nom_de_la_commune": "SOURAIDE", "libell_d_acheminement": "SOURAIDE", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64527"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7414a55bc16b05965fae40efc04370d62f72a50", "fields": {"nom_de_la_commune": "TROIS VILLES", "libell_d_acheminement": "TROIS VILLES", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64537"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d36664a7d735d85f2bf3f92852dc52f6a87f4e0b", "fields": {"nom_de_la_commune": "UREPEL", "libell_d_acheminement": "UREPEL", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64543"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b001964596a791e56be26d5b8958cbbb6dae373f", "fields": {"nom_de_la_commune": "URRUGNE", "libell_d_acheminement": "URRUGNE", "code_postal": "64122", "coordonnees_gps": [43.3494929486, -1.69734552192], "code_commune_insee": "64545"}, "geometry": {"type": "Point", "coordinates": [-1.69734552192, 43.3494929486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ba49a4d807962a73cbce42ca11e1c5f42c55dd", "fields": {"nom_de_la_commune": "URT", "libell_d_acheminement": "URT", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64546"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2109c4636fb73499e51c870eb64d3870c4fb6f79", "fields": {"nom_de_la_commune": "UZAN", "libell_d_acheminement": "UZAN", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64548"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a240fb5c35e6e2adc42495cba48ec79bdd6e2d", "fields": {"nom_de_la_commune": "VIELLENAVE DE NAVARRENX", "libell_d_acheminement": "VIELLENAVE DE NAVARRENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64555"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a46b4399cfd0bde8c0092db8a94436458c0b4fb", "fields": {"nom_de_la_commune": "VIODOS ABENSE DE BAS", "libell_d_acheminement": "VIODOS ABENSE DE BAS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64559"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e37e153a67861a0feacf6d8c2ffca4f6389917", "fields": {"nom_de_la_commune": "ANGOS", "libell_d_acheminement": "ANGOS", "code_postal": "65690", "coordonnees_gps": [43.1995880438, 0.138139149082], "code_commune_insee": "65010"}, "geometry": {"type": "Point", "coordinates": [0.138139149082, 43.1995880438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c592c3e06e80cffbd4030aaf5000dadf2a2e17e6", "fields": {"nom_de_la_commune": "ANTICHAN", "libell_d_acheminement": "ANTICHAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65014"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb655eb84c3268b5e402347646df514c8a437a7f", "fields": {"nom_de_la_commune": "ANTIN", "libell_d_acheminement": "ANTIN", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65015"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bfb9ad1092e4e35709e26651ed39934b83bc0a4", "fields": {"nom_de_la_commune": "ARGELES GAZOST", "libell_d_acheminement": "ARGELES GAZOST", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65025"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80401dc4d08ea0d2fd5cf725f5570c7902c7bd98", "fields": {"code_postal": "65400", "code_commune_insee": "65032", "libell_d_acheminement": "ARRENS MARSOUS", "ligne_5": "MARSOUS", "nom_de_la_commune": "ARRENS MARSOUS", "coordonnees_gps": [42.9460232752, -0.163635149644]}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced37782644250bd5cae65a07eeefa37883d366e", "fields": {"nom_de_la_commune": "ARTAGNAN", "libell_d_acheminement": "ARTAGNAN", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65035"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b1f134c309c356b539f563f342f60e62d6fef1", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65038"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22baeebe348ed10d59aeafaf2448135374188ef8", "fields": {"nom_de_la_commune": "ASPIN AURE", "libell_d_acheminement": "ASPIN AURE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65039"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53135575880c89dcc9c0543e1a91da0ebc0b783c", "fields": {"nom_de_la_commune": "ASTE", "libell_d_acheminement": "ASTE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65042"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3d67b805da5014153c9465e242faa448391c98", "fields": {"nom_de_la_commune": "ASTUGUE", "libell_d_acheminement": "ASTUGUE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65043"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351557ba485e29b57a1d4f611623cb5e67d47e27", "fields": {"nom_de_la_commune": "AULON", "libell_d_acheminement": "AULON", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65046"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64bff0078d0e08884f67b28c339b6581c41b28e", "fields": {"nom_de_la_commune": "AVAJAN", "libell_d_acheminement": "AVAJAN", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65050"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319051b8542d9c36b9d23349d06b358fe0414a15", "fields": {"nom_de_la_commune": "AVENTIGNAN", "libell_d_acheminement": "AVENTIGNAN", "code_postal": "65660", "coordonnees_gps": [43.0619103765, 0.524094993812], "code_commune_insee": "65051"}, "geometry": {"type": "Point", "coordinates": [0.524094993812, 43.0619103765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ce18f68a571975ef96c3376776b20be80ccf24", "fields": {"code_postal": "65200", "code_commune_insee": "65059", "libell_d_acheminement": "BAGNERES DE BIGORRE", "ligne_5": "LA MONGIE", "nom_de_la_commune": "BAGNERES DE BIGORRE", "coordonnees_gps": [43.0346588013, 0.142823788541]}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9f5adfa2fec61fceb3d96fd28793761da76b4d", "fields": {"nom_de_la_commune": "BARBAZAN DESSUS", "libell_d_acheminement": "BARBAZAN DESSUS", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65063"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c655555396f894b061801b4900546aa8715ed6", "fields": {"nom_de_la_commune": "BEAUCENS", "libell_d_acheminement": "BEAUCENS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65077"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91d46877eee8ea718273649db8978fe21cdaadd", "fields": {"nom_de_la_commune": "BERTREN", "libell_d_acheminement": "BERTREN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65087"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0204c4c24f30572b6aaff4a6786f6e8b7e2196f0", "fields": {"nom_de_la_commune": "BETPOUY", "libell_d_acheminement": "BETPOUY", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65090"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d280f7ee793375cac7c028962bf7aba421f3b31", "fields": {"nom_de_la_commune": "BETTES", "libell_d_acheminement": "BETTES", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65091"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b786170dba78c342d725e415751915a1f8400302", "fields": {"nom_de_la_commune": "BORDERES LOURON", "libell_d_acheminement": "BORDERES LOURON", "code_postal": "65590", "coordonnees_gps": [42.8710607597, 0.412551570718], "code_commune_insee": "65099"}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5547dd5ef12259346399659e4388cb82b1597336", "fields": {"nom_de_la_commune": "BORDES", "libell_d_acheminement": "BORDES", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65101"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049ff703ae1857ceb2fa4696f7cec175a71eff0f", "fields": {"nom_de_la_commune": "BRAMEVAQUE", "libell_d_acheminement": "BRAMEVAQUE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65109"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032450e1deda475db567b6f62eae10c1ee85cd1a", "fields": {"nom_de_la_commune": "BURG", "libell_d_acheminement": "BURG", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65113"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6526a3fdbabac86ddd4ecf25c275fe7491b6de", "fields": {"nom_de_la_commune": "CADEAC", "libell_d_acheminement": "CADEAC", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65116"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc47e7720ab79bfe9f182ebad7ba067d4b9476b9", "fields": {"nom_de_la_commune": "CAIXON", "libell_d_acheminement": "CAIXON", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65119"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4131e054a89a5d21ea8962e55991847c5495d82a", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "LA SEOUBE", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa7635a268d23cf9b09e8058c461c8b87f91a1c", "fields": {"nom_de_la_commune": "CAMPARAN", "libell_d_acheminement": "CAMPARAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65124"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12a4b7febe17b769e5b8c79521734145625cc5b", "fields": {"nom_de_la_commune": "CAMPISTROUS", "libell_d_acheminement": "CAMPISTROUS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65125"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e1590d497b3b00377a61d7ce06b196c6f950b9", "fields": {"nom_de_la_commune": "CASTELNAU MAGNOAC", "libell_d_acheminement": "CASTELNAU MAGNOAC", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65129"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68718db9a9e677c5c2db5f63f537ae0042851ac", "fields": {"nom_de_la_commune": "CASTERA LOU", "libell_d_acheminement": "CASTERA LOU", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65133"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "979a7d4822e150b8bcccff3b193b76d399592699", "fields": {"nom_de_la_commune": "CASTILLON", "libell_d_acheminement": "CASTILLON", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65135"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c454287d1e6f66de479e148971eba4bf03ce7bd8", "fields": {"code_postal": "65240", "code_commune_insee": "65141", "libell_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", "ligne_5": "CAZAUX FRECHET", "nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be1772cd562d8f54cfb5cb94b1c9f3ec8ce7d45", "fields": {"nom_de_la_commune": "CHEUST", "libell_d_acheminement": "CHEUST", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65144"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b91dbfd01fe3b65f292b439af929ed3743fc1ca", "fields": {"nom_de_la_commune": "CLARAC", "libell_d_acheminement": "CLARAC", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65149"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd28183cd7f38f3955bb5e7f4e880a8fff5a026", "fields": {"nom_de_la_commune": "ESQUIEZE SERE", "libell_d_acheminement": "ESQUIEZE SERE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65168"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4187d0f64e14c10425253f20d195718ce2df5cc1", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "65560", "coordonnees_gps": [42.9975341833, -0.255768295954], "code_commune_insee": "65176"}, "geometry": {"type": "Point", "coordinates": [-0.255768295954, 42.9975341833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c964df7dced2d0a1c4e37cb732d2663774185129", "fields": {"nom_de_la_commune": "FONTRAILLES", "libell_d_acheminement": "FONTRAILLES", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65177"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb720f8b0d51e3224759ae46d65c81adae093fb", "fields": {"nom_de_la_commune": "TALUS ST PRIX", "libell_d_acheminement": "TALUS ST PRIX", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51563"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6d17969307a5349d1f2b66c557c8072be35480", "fields": {"nom_de_la_commune": "TILLOY ET BELLAY", "libell_d_acheminement": "TILLOY ET BELLAY", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51572"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c2ba513db4bac3099608c21823138d5516b9c9", "fields": {"nom_de_la_commune": "TREFOLS", "libell_d_acheminement": "TREFOLS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51579"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3c837f0b13ee905d9e464692eb2d446504acea2", "fields": {"nom_de_la_commune": "TROIS FONTAINES L ABBAYE", "libell_d_acheminement": "TROIS FONTAINES L ABBAYE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51583"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d477d596faf006f25ec06f608ec5c73c5100122", "fields": {"nom_de_la_commune": "VADENAY", "libell_d_acheminement": "VADENAY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51587"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84373cb0df012b39faf792529350cd764ea212e", "fields": {"nom_de_la_commune": "VANDIERES", "libell_d_acheminement": "VANDIERES", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51592"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8074bd2fa26dbafc779b4723fb3f0d8cb1ddbaaf", "fields": {"nom_de_la_commune": "VASSIMONT ET CHAPELAINE", "libell_d_acheminement": "VASSIMONT ET CHAPELAINE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51594"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957065388b84920ffa3db1c77d21302a4964511f", "fields": {"nom_de_la_commune": "VAUCLERC", "libell_d_acheminement": "VAUCLERC", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51598"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0095e795297771f7891787a15fdff03bd60656", "fields": {"nom_de_la_commune": "VENTEUIL", "libell_d_acheminement": "VENTEUIL", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51605"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d001fdc7120095baee95f8277ceddfe73cd99f", "fields": {"nom_de_la_commune": "VERTUS", "libell_d_acheminement": "VERTUS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51612"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b7540f9fc4d7ab0abdccb58c813e7c1d7325b0", "fields": {"nom_de_la_commune": "LA VEUVE", "libell_d_acheminement": "LA VEUVE", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51617"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3305ab0e5e1e3d03f30bf1699af601a7663108", "fields": {"nom_de_la_commune": "VIENNE LA VILLE", "libell_d_acheminement": "VIENNE LA VILLE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51620"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78e7dc592f408795ce0178dbdb33f205a22e715", "fields": {"nom_de_la_commune": "VILLE DOMMANGE", "libell_d_acheminement": "VILLE DOMMANGE", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51622"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06605e4e49a1e151b7b1ceb903e419fab6ce3216", "fields": {"nom_de_la_commune": "VILLERS AUX BOIS", "libell_d_acheminement": "VILLERS AUX BOIS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51630"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b36584aff34e2b6190189e61816f40add54a58", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51635"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988a398bd473f88c80adfb709101587860042a7c", "fields": {"nom_de_la_commune": "VILLERS SOUS CHATILLON", "libell_d_acheminement": "VILLERS SOUS CHATILLON", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51637"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6272d1275033d403b911a9acdf406460c562803", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51644"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e789293cc67cfd9e0bc60f98fb3ce5a2d9e296ab", "fields": {"nom_de_la_commune": "VOUARCES", "libell_d_acheminement": "VOUARCES", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51652"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6401287be995f26c4946813998193fc6c6b1a3", "fields": {"nom_de_la_commune": "VRAUX", "libell_d_acheminement": "VRAUX", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51656"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93766d08dffd77f8bd3a72c59ece471feb0f3bd2", "fields": {"nom_de_la_commune": "VRIGNY", "libell_d_acheminement": "VRIGNY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51657"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9302c843af37ddd43acedfafcd9a6fe35667bce7", "fields": {"nom_de_la_commune": "WARMERIVILLE", "libell_d_acheminement": "WARMERIVILLE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51660"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f0daa98b8f5bbd5b728f2a2d8d3bab56d945b8", "fields": {"nom_de_la_commune": "WITRY LES REIMS", "libell_d_acheminement": "WITRY LES REIMS", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51662"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcd7138864b8e0979f55bb5685c3dec5f364391", "fields": {"nom_de_la_commune": "AGEVILLE", "libell_d_acheminement": "AGEVILLE", "code_postal": "52340", "coordonnees_gps": [48.1142571752, 5.32025976914], "code_commune_insee": "52001"}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c982ffbbe099b8782ae0745252686be9b3ac8d5", "fields": {"nom_de_la_commune": "AIZANVILLE", "libell_d_acheminement": "AIZANVILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52005"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31cb9c35c2abac64de570844ed1636134a9080e6", "fields": {"nom_de_la_commune": "ANDILLY EN BASSIGNY", "libell_d_acheminement": "ANDILLY EN BASSIGNY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52009"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc58bccb9037399cc61d68c8b2a14a8d362444bf", "fields": {"nom_de_la_commune": "APREY", "libell_d_acheminement": "APREY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52014"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d882b7a5463af345a110510888b2d6a5890aeff8", "fields": {"nom_de_la_commune": "AUBEPIERRE SUR AUBE", "libell_d_acheminement": "AUBEPIERRE SUR AUBE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52022"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23354741fcf90f3b9e34cc37a11969b5ea4f7602", "fields": {"nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52031"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a3e569fc4f673bb3c322e6429dd44c5d46af57", "fields": {"code_postal": "52330", "code_commune_insee": "52031", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "ligne_5": "ST MARTIN SUR LA RENNE", "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d24b4e64ca76b5af681bc9631f22deec27d263a", "fields": {"nom_de_la_commune": "BAILLY AUX FORGES", "libell_d_acheminement": "BAILLY AUX FORGES", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52034"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb848861e5220bd60af2522df0f95489c70c31f", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52037"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf112c65aec511c852b0e489642ede937d4b4303", "fields": {"nom_de_la_commune": "BASSONCOURT", "libell_d_acheminement": "BASSONCOURT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52038"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04aa35654f02a4b431b369fc424fa25a6c8d350d", "fields": {"nom_de_la_commune": "BLECOURT", "libell_d_acheminement": "BLECOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52055"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0962d80c8181876f6e87eea2c9f54e57b47f04ab", "fields": {"nom_de_la_commune": "BOLOGNE", "libell_d_acheminement": "BOLOGNE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52058"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d38a20d0cd946aabfe14084490ecea52c2f7cc", "fields": {"code_postal": "52400", "code_commune_insee": "52060", "libell_d_acheminement": "BOURBONNE LES BAINS", "ligne_5": "GENRUPT", "nom_de_la_commune": "BOURBONNE LES BAINS", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f6e0eea51e542e7d9a3d79d8fc8467ee257339b", "fields": {"nom_de_la_commune": "BOUZANCOURT", "libell_d_acheminement": "BOUZANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52065"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f516353dd5d22a1e07e8e997f0146fa4954bede", "fields": {"code_postal": "52240", "code_commune_insee": "52074", "libell_d_acheminement": "BREUVANNES EN BASSIGNY", "ligne_5": "COLOMBEY LES CHOISEUL", "nom_de_la_commune": "BREUVANNES EN BASSIGNY", "coordonnees_gps": [48.0703177579, 5.52769658592]}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47884c89cc94da618c598770275fe31f11747901", "fields": {"nom_de_la_commune": "BRICON", "libell_d_acheminement": "BRICON", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52076"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984bb8a6ea87004574af72680b345ccc9d59a886", "fields": {"nom_de_la_commune": "BROUSSEVAL", "libell_d_acheminement": "BROUSSEVAL", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52079"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378c928f2829c2bc08126a9c7d091bdaecbaa9f8", "fields": {"nom_de_la_commune": "BUSSON", "libell_d_acheminement": "BUSSON", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52084"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b96d330db8b35d5b90354f6b14eb4d6b07574b5", "fields": {"nom_de_la_commune": "BUXIERES LES VILLIERS", "libell_d_acheminement": "BUXIERES LES VILLIERS", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52087"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b66105a574029f026e6fd64db7709eabd2b3e8", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "VILLEMERVRY", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1f2dbaa97bdf3482d7b0df28174e48828d071e", "fields": {"nom_de_la_commune": "CHAMPIGNY LES LANGRES", "libell_d_acheminement": "CHAMPIGNY LES LANGRES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52102"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333c87243714280162a3e5fa000590d22c380043", "fields": {"nom_de_la_commune": "CHARMES LA GRANDE", "libell_d_acheminement": "CHARMES LA GRANDE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52110"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "668f20d4a0d22d325db540d43b3513337f435ac4", "fields": {"code_postal": "52120", "code_commune_insee": "52114", "libell_d_acheminement": "CHATEAUVILLAIN", "ligne_5": "CREANCEY", "nom_de_la_commune": "CHATEAUVILLAIN", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49d1a4cdc17b75de25d002108860dda39953d7c", "fields": {"nom_de_la_commune": "CHAUFFOURT", "libell_d_acheminement": "CHAUFFOURT", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52120"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8736baa49b97f149c8708d121d4aa0149117e6e7", "fields": {"code_postal": "52000", "code_commune_insee": "52125", "libell_d_acheminement": "CHAMARANDES CHOIGNES", "ligne_5": "CHOIGNES", "nom_de_la_commune": "CHAMARANDES CHOIGNES", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a7c95e79693741810edad5544e93dc53983ff9", "fields": {"nom_de_la_commune": "CHOILLEY DARDENAY", "libell_d_acheminement": "CHOILLEY DARDENAY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52126"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60ffc21aff58b100fdb188abdfd3db9cf6f7571", "fields": {"nom_de_la_commune": "CHOISEUL", "libell_d_acheminement": "CHOISEUL", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52127"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316bfc882d5b9bb8914616fcd1bbbe6a5cdcedc5", "fields": {"nom_de_la_commune": "CLINCHAMP", "libell_d_acheminement": "CLINCHAMP", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52133"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f520cbdd1d1a359705032964cc634ea1b10bbf", "fields": {"nom_de_la_commune": "COIFFY LE BAS", "libell_d_acheminement": "COIFFY LE BAS", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52135"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82c6937324cc437f1b98cd17e97325929f059f7", "fields": {"nom_de_la_commune": "CUREL", "libell_d_acheminement": "CUREL", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52156"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5c315bd1df77d74897a4fdd1d3e01b9b00b95b", "fields": {"code_postal": "52190", "code_commune_insee": "52158", "libell_d_acheminement": "CUSEY", "ligne_5": "PERCEY SOUS MONTORMENTIER", "nom_de_la_commune": "CUSEY", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62ded5af766fe1612cf88660ab76f8b684ca228", "fields": {"nom_de_la_commune": "DAILLECOURT", "libell_d_acheminement": "DAILLECOURT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52161"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6b3b6645eb0ae7317c36ef57fa43d994f08222", "fields": {"nom_de_la_commune": "DINTEVILLE", "libell_d_acheminement": "DINTEVILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52168"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270a631be56e7ffdf827c31976cc2cd6ff571068", "fields": {"nom_de_la_commune": "DOMMARTIN LE FRANC", "libell_d_acheminement": "DOMMARTIN LE FRANC", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52171"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1c4b6111489052a5a2b21583316009b5f8e4d2", "fields": {"nom_de_la_commune": "DONCOURT SUR MEUSE", "libell_d_acheminement": "DONCOURT SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52174"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa66a4e1f832116f3ef7f996cb39d98e5478f756", "fields": {"nom_de_la_commune": "DOULEVANT LE PETIT", "libell_d_acheminement": "DOULEVANT LE PETIT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52179"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5ae90584bc45fb7027ff3a0cb5d4911551502e", "fields": {"code_postal": "52290", "code_commune_insee": "52182", "libell_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", "ligne_5": "BRAUCOURT", "nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", "coordonnees_gps": [48.5761520145, 4.85527369999]}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f488c4b7aa443f6724c52ae258199a543c4adfa1", "fields": {"nom_de_la_commune": "EPIZON", "libell_d_acheminement": "EPIZON", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52187"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f726f6d09f26fdedb6158ed0ae2ade22445e017f", "fields": {"code_postal": "52190", "code_commune_insee": "52189", "libell_d_acheminement": "LE VAL D ESNOMS", "ligne_5": "CHATOILLENOT", "nom_de_la_commune": "LE VAL D ESNOMS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002a02beb3ef92b6f40dec5b887a7bb2d82d2779", "fields": {"code_postal": "52190", "code_commune_insee": "52189", "libell_d_acheminement": "LE VAL D ESNOMS", "ligne_5": "ESNOMS AU VAL", "nom_de_la_commune": "LE VAL D ESNOMS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9599c0e71243ed2a3042c5272df1a5988c1e59e", "fields": {"nom_de_la_commune": "EURVILLE BIENVILLE", "libell_d_acheminement": "EURVILLE BIENVILLE", "code_postal": "52410", "coordonnees_gps": [48.5892998637, 5.03091312346], "code_commune_insee": "52194"}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd26d17b6a51cc86c8666ba48289e42c18eb6b9", "fields": {"code_postal": "52500", "code_commune_insee": "52197", "libell_d_acheminement": "FAYL BILLOT", "ligne_5": "BRONCOURT", "nom_de_la_commune": "FAYL BILLOT", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71acf7400c3d3ddb01eb8f290e026733c875b75", "fields": {"nom_de_la_commune": "FRAMPAS", "libell_d_acheminement": "FRAMPAS", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52206"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65a4af56dc25f0672cf5ef6fbdfb2ab79be3d43", "fields": {"nom_de_la_commune": "FRECOURT", "libell_d_acheminement": "FRECOURT", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52207"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efdea7aeed39c3bde84286f0f53c50cc3b1c2cd", "fields": {"nom_de_la_commune": "GENEVRIERES", "libell_d_acheminement": "GENEVRIERES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52213"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6bb1a6192807766ca7ecd533ea1e14ac4b4507", "fields": {"nom_de_la_commune": "LA GENEVROYE", "libell_d_acheminement": "LA GENEVROYE", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52214"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd47c663348b4d108a95e1b7609409dd5860992", "fields": {"nom_de_la_commune": "GILLANCOURT", "libell_d_acheminement": "GILLANCOURT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52221"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6470184acb8d3f737dd5f7f2c695162df82b003", "fields": {"nom_de_la_commune": "GRENANT", "libell_d_acheminement": "GRENANT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52229"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274351f280f61d06404c7af07bd2e52541c4ca4f", "fields": {"nom_de_la_commune": "GUINDRECOURT AUX ORMES", "libell_d_acheminement": "GUINDRECOURT AUX ORMES", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52231"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b128628677bf32d5de40c151c5803c2fd21892a6", "fields": {"nom_de_la_commune": "HALLIGNICOURT", "libell_d_acheminement": "HALLIGNICOURT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52235"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d84d06b0a587836a7f97f2f03742df0ccaa5a38", "fields": {"nom_de_la_commune": "LAMANCINE", "libell_d_acheminement": "LAMANCINE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52260"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a54df758dc33755212bb3969b9b483f3846f07", "fields": {"code_postal": "52170", "code_commune_insee": "52265", "libell_d_acheminement": "BAYARD SUR MARNE", "ligne_5": "GOURZON", "nom_de_la_commune": "BAYARD SUR MARNE", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4906fa0d76664e6cbc55590366b34e2ff439468b", "fields": {"nom_de_la_commune": "LANEUVILLE A REMY", "libell_d_acheminement": "LANEUVILLE A REMY", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52266"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a53c60f18f1c2871b70700c493ce53be71d6c89d", "fields": {"nom_de_la_commune": "LATRECEY ORMOY SUR AUBE", "libell_d_acheminement": "LATRECEY ORMOY SUR AUBE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52274"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4bbbec5a8af137be1a872e3936bcfd82773a1c3", "fields": {"nom_de_la_commune": "LAVILLENEUVE AU ROI", "libell_d_acheminement": "LAVILLENEUVE AU ROI", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52278"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bccdc625c7d7f61eae83051910a5dc268c0b036", "fields": {"nom_de_la_commune": "LEUCHEY", "libell_d_acheminement": "LEUCHEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52285"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef439eeb0c50b19514200876c112dd3e7860c123", "fields": {"nom_de_la_commune": "LES LOGES", "libell_d_acheminement": "LES LOGES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52290"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851d273ca4b58d6d55a5c6d0c5c679d74867aea6", "fields": {"nom_de_la_commune": "LONGEAU PERCEY", "libell_d_acheminement": "LONGEAU PERCEY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52292"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14f0086890b64ae22ec157db99804a709804a508", "fields": {"code_postal": "52250", "code_commune_insee": "52292", "libell_d_acheminement": "LONGEAU PERCEY", "ligne_5": "LONGEAU", "nom_de_la_commune": "LONGEAU PERCEY", "coordonnees_gps": [47.7675447812, 5.24768674453]}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96827029a138a84701a8e0ede7c20dcc25f81be8", "fields": {"code_postal": "52250", "code_commune_insee": "52292", "libell_d_acheminement": "LONGEAU PERCEY", "ligne_5": "PERCEY LE PAUTEL", "nom_de_la_commune": "LONGEAU PERCEY", "coordonnees_gps": [47.7675447812, 5.24768674453]}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f6878d7796ba1c5774d39e11fef57e5f86fef0", "fields": {"nom_de_la_commune": "LOUVIERES", "libell_d_acheminement": "LOUVIERES", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52295"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac5e1bec2e0b07d0d0eb5d1bba4d99d51bf0907", "fields": {"nom_de_la_commune": "LUZY SUR MARNE", "libell_d_acheminement": "LUZY SUR MARNE", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52297"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea9fdd8b19a9c689de59abeba9f3da89996c429", "fields": {"nom_de_la_commune": "MAIZIERES SUR AMANCE", "libell_d_acheminement": "MAIZIERES SUR AMANCE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52303"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d9b1923833e9d0a4c7ed67fd75afca56c574f5", "fields": {"nom_de_la_commune": "MERREY", "libell_d_acheminement": "MERREY", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52320"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc380a571e4ea8910ae5ccc6a86d11725003a43", "fields": {"nom_de_la_commune": "MERTRUD", "libell_d_acheminement": "MERTRUD", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52321"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b825e602f5f24f2dd0266897ab67c079ea66d1e1", "fields": {"nom_de_la_commune": "MEURES", "libell_d_acheminement": "MEURES", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52322"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb89bf3fc9f4db0faa320f632a3133700503f5ff", "fields": {"nom_de_la_commune": "MIRBEL", "libell_d_acheminement": "MIRBEL", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52326"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b123bc8641955f84662b773df8b6fade4f95419", "fields": {"nom_de_la_commune": "VAL DE MEUSE", "libell_d_acheminement": "VAL DE MEUSE", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52332"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7bfbb7f5c13bfec5520c8d7b748ee93261e5795", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "EPINANT", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6808c2b2e23c2aa8db24bcbebdc4e6809c5639", "fields": {"nom_de_la_commune": "MORANCOURT", "libell_d_acheminement": "MORANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52341"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31485e8aaddf5b389c049bffcac81d8e8f7f8e7", "fields": {"nom_de_la_commune": "MUSSEY SUR MARNE", "libell_d_acheminement": "MUSSEY SUR MARNE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52346"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522e6843f7b4f78c8c0d1d7c1e96afd4cde3ae64", "fields": {"nom_de_la_commune": "NOGENT", "libell_d_acheminement": "NOGENT", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52353"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cc13ee61379b1892d143893c9e512ea7eb9d4d", "fields": {"code_postal": "52800", "code_commune_insee": "52353", "libell_d_acheminement": "NOGENT", "ligne_5": "DONNEMARIE", "nom_de_la_commune": "NOGENT", "coordonnees_gps": [48.0321546961, 5.30922833367]}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc48bce18851aded4f9314451a4cf1e447f5555", "fields": {"nom_de_la_commune": "NONCOURT SUR LE RONGEANT", "libell_d_acheminement": "NONCOURT SUR LE RONGEANT", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52357"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6cd0eefedcea8892f24c2cedf62f85efeb2f850", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52358"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25455deec1eebb6508b2bf390798b4ec0431828", "fields": {"nom_de_la_commune": "PREZ SOUS LAFAUCHE", "libell_d_acheminement": "PREZ SOUS LAFAUCHE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52407"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b03ccd0732bb27f0d615d574f73b28bab4fe833", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "DROYES", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fe1f4dc9b1ab883b7ea29213a2a8c2da4123048", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "PUELLEMONTIER", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9d16da22152ec7e6a624afb821a3fef796b098", "fields": {"nom_de_la_commune": "ST GERMAIN SUR VIENNE", "libell_d_acheminement": "ST GERMAIN SUR VIENNE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37220"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2909a6b436728bd758785264e8627d7f821448", "fields": {"nom_de_la_commune": "STE MAURE DE TOURAINE", "libell_d_acheminement": "STE MAURE DE TOURAINE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37226"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f05029306b7345b44d26718837636434802708", "fields": {"nom_de_la_commune": "ST REGLE", "libell_d_acheminement": "ST REGLE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37236"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636f7e409ce95679e41b0559032547b2b65983a2", "fields": {"nom_de_la_commune": "SORIGNY", "libell_d_acheminement": "SORIGNY", "code_postal": "37250", "coordonnees_gps": [47.2559000067, 0.703996574131], "code_commune_insee": "37250"}, "geometry": {"type": "Point", "coordinates": [0.703996574131, 47.2559000067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb691dbe9245db6dced3f552dc00a518641aa3f", "fields": {"nom_de_la_commune": "TAUXIGNY", "libell_d_acheminement": "TAUXIGNY", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37254"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd7ae839ef5d25b552ae92567a11d290deb7c69", "fields": {"nom_de_la_commune": "TAVANT", "libell_d_acheminement": "TAVANT", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37255"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e120cb67984eb5633ca7df93f765ea79ecf857", "fields": {"nom_de_la_commune": "THILOUZE", "libell_d_acheminement": "THILOUZE", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37257"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969772b36bb1f0da7249e109421a916f72e8dd32", "fields": {"nom_de_la_commune": "TOURNON ST PIERRE", "libell_d_acheminement": "TOURNON ST PIERRE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37259"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245b9e3828c7dbf43bab31bb9b36d540954ac52b", "fields": {"nom_de_la_commune": "TOURS", "libell_d_acheminement": "TOURS", "code_postal": "37000", "coordonnees_gps": [47.3979724257, 0.696297496341], "code_commune_insee": "37261"}, "geometry": {"type": "Point", "coordinates": [0.696297496341, 47.3979724257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541fea6c9b5e2b13459cf8506e3ed4f0de694bb2", "fields": {"nom_de_la_commune": "VILLEPERDUE", "libell_d_acheminement": "VILLEPERDUE", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37278"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649f5ba9eb908d9c1ccb42e810941c066122bae5", "fields": {"nom_de_la_commune": "VILLIERS AU BOUIN", "libell_d_acheminement": "VILLIERS AU BOUIN", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37279"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048f586f97f856eff8d0a77cbcacb9043487cb10", "fields": {"nom_de_la_commune": "VOU", "libell_d_acheminement": "VOU", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37280"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6db7ca183b08ac432d9eb38a499967592a5a38", "fields": {"nom_de_la_commune": "ALLEMOND", "libell_d_acheminement": "ALLEMOND", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38005"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514a36d47d469cc1671d9bb1c6a2c4cd88dc22d7", "fields": {"nom_de_la_commune": "ANJOU", "libell_d_acheminement": "ANJOU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38009"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce255a4eca12097e75a12c3b1a556e49efc58133", "fields": {"nom_de_la_commune": "ANNOISIN CHATELANS", "libell_d_acheminement": "ANNOISIN CHATELANS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38010"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a825b6235fc0be2fbd9ff2ea18f3819fe117f2", "fields": {"nom_de_la_commune": "ARTAS", "libell_d_acheminement": "ARTAS", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38015"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4059cd827661f7ada9959acc819fb220bdd2bd8", "fields": {"nom_de_la_commune": "BARRAUX", "libell_d_acheminement": "BARRAUX", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38027"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aec4f98bc89914c989f1653a1035e7bb0445edb", "fields": {"nom_de_la_commune": "BIOL", "libell_d_acheminement": "BIOL", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38044"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c47a7028d59d8bc7bd00a5fa42e4fa859851209", "fields": {"nom_de_la_commune": "BIZONNES", "libell_d_acheminement": "BIZONNES", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38046"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f82d5141c9ad2fbe5f11d674dc51247ad4aead1", "fields": {"nom_de_la_commune": "BONNEFAMILLE", "libell_d_acheminement": "BONNEFAMILLE", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38048"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb738a1e10062c4b1c92f22b6f40f0393e9d6f7", "fields": {"nom_de_la_commune": "LE BOURG D OISANS", "libell_d_acheminement": "LE BOURG D OISANS", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38052"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93610e5ff429829ec9e392c6ef64901f5a46cfbb", "fields": {"nom_de_la_commune": "BRANGUES", "libell_d_acheminement": "BRANGUES", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38055"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf950f670549c36d0f4b176ee1b022a37aeaf69", "fields": {"nom_de_la_commune": "CHALON", "libell_d_acheminement": "CHALON", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38066"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf81c700f936b7943360a5c78f561d84f569c1c", "fields": {"nom_de_la_commune": "CHAMAGNIEU", "libell_d_acheminement": "CHAMAGNIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38067"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425c6f4125420e18fa8648c10287de592109bb67", "fields": {"nom_de_la_commune": "CHAMPAGNIER", "libell_d_acheminement": "CHAMPAGNIER", "code_postal": "38800", "coordonnees_gps": [45.1176440456, 5.71273169882], "code_commune_insee": "38068"}, "geometry": {"type": "Point", "coordinates": [5.71273169882, 45.1176440456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30002a68da81a685c9ec57b4699fcbf4037f57ee", "fields": {"nom_de_la_commune": "CHARETTE", "libell_d_acheminement": "CHARETTE", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38083"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7ad784436ed05e446d4f5314f5c74a1a7eb4f9", "fields": {"nom_de_la_commune": "CHARVIEU CHAVAGNEUX", "libell_d_acheminement": "CHARVIEU CHAVAGNEUX", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38085"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "268bfb5b3818d96eec1290808fcc427bd62c8f93", "fields": {"code_postal": "38230", "code_commune_insee": "38085", "libell_d_acheminement": "CHARVIEU CHAVAGNEUX", "ligne_5": "CHAVAGNEUX", "nom_de_la_commune": "CHARVIEU CHAVAGNEUX", "coordonnees_gps": [45.7461483574, 5.17160988161]}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95707ce193b452bc323a9c0097c4e351a2fec0e8", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "38980", "coordonnees_gps": [45.3053476338, 5.21305858038], "code_commune_insee": "38093"}, "geometry": {"type": "Point", "coordinates": [5.21305858038, 45.3053476338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca1435eca844857747ce768d64a18c7aa549d4aa", "fields": {"nom_de_la_commune": "CHATONNAY", "libell_d_acheminement": "CHATONNAY", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38094"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122a924840e0e70b63e07d2ee502491c1bee7a42", "fields": {"nom_de_la_commune": "CHICHILIANNE", "libell_d_acheminement": "CHICHILIANNE", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38103"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598241f47b5ee91c0ddbb0657b8667501082c9c8", "fields": {"nom_de_la_commune": "CHIMILIN", "libell_d_acheminement": "CHIMILIN", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38104"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afd1e1ac009a6449dda387baf5589ecedd0434d", "fields": {"nom_de_la_commune": "CHONAS L AMBALLAN", "libell_d_acheminement": "CHONAS L AMBALLAN", "code_postal": "38121", "coordonnees_gps": [45.4752927217, 4.83249057524], "code_commune_insee": "38107"}, "geometry": {"type": "Point", "coordinates": [4.83249057524, 45.4752927217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de128f39ccca5ec0dac45b87b7470eedb8187ad0", "fields": {"nom_de_la_commune": "CHUZELLES", "libell_d_acheminement": "CHUZELLES", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38110"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afb965a262dbb3b2466a3670a9d3372a1bfc5d4", "fields": {"nom_de_la_commune": "CLONAS SUR VAREZE", "libell_d_acheminement": "CLONAS SUR VAREZE", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38114"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55df2dcdf4741adc984773ce859f825abef6ad3b", "fields": {"nom_de_la_commune": "COUR ET BUIS", "libell_d_acheminement": "COUR ET BUIS", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38134"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4fac8bb184efd2052c6f58cfc1bddc5502260a2", "fields": {"code_postal": "38510", "code_commune_insee": "38139", "libell_d_acheminement": "CREYS MEPIEU", "ligne_5": "MEPIEU", "nom_de_la_commune": "CREYS MEPIEU", "coordonnees_gps": [45.7026691916, 5.45358290741]}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240628670b89f7cdd72ff52d1a6ab8a90ea2c919", "fields": {"nom_de_la_commune": "CROLLES", "libell_d_acheminement": "CROLLES", "code_postal": "38920", "coordonnees_gps": [45.2821420826, 5.88908300611], "code_commune_insee": "38140"}, "geometry": {"type": "Point", "coordinates": [5.88908300611, 45.2821420826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f2b523aba714abc11508c8d60753793b747909", "fields": {"nom_de_la_commune": "ECLOSE BADINIERES", "libell_d_acheminement": "ECLOSE BADINIERES", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38152"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba48ace2163e80cc4828f5227ecb4a49d0c2c422", "fields": {"code_postal": "38300", "code_commune_insee": "38152", "libell_d_acheminement": "ECLOSE BADINIERES", "ligne_5": "BADINIERES", "nom_de_la_commune": "ECLOSE BADINIERES", "coordonnees_gps": [45.5640393391, 5.29545357844]}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6f37463f61cd9b3678a55aa80d36e93aa3a4af", "fields": {"nom_de_la_commune": "LA FORTERESSE", "libell_d_acheminement": "LA FORTERESSE", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38171"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41df918ff34cbfe6882287c83ad3d4d710436e67", "fields": {"nom_de_la_commune": "LE FRENEY D OISANS", "libell_d_acheminement": "LE FRENEY D OISANS", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38173"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d054bf954dca7f3f34a1e3c65992ee040674d7a", "fields": {"code_postal": "38290", "code_commune_insee": "38176", "libell_d_acheminement": "FRONTONAS", "ligne_5": "GONAS", "nom_de_la_commune": "FRONTONAS", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952598503f3ba9dac888368bee78a716030a6770", "fields": {"nom_de_la_commune": "GIERES", "libell_d_acheminement": "GIERES", "code_postal": "38610", "coordonnees_gps": [45.1794754259, 5.79803477823], "code_commune_insee": "38179"}, "geometry": {"type": "Point", "coordinates": [5.79803477823, 45.1794754259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35e29d04d09626bd9d1a169002fd4e36e17fd63", "fields": {"nom_de_la_commune": "GONCELIN", "libell_d_acheminement": "GONCELIN", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38181"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11ac513985be812f3833bc4cf0cc1224927c69c0", "fields": {"nom_de_la_commune": "GRANIEU", "libell_d_acheminement": "GRANIEU", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38183"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c85235c0a593ee89113a599c6bd8104bc36c34", "fields": {"nom_de_la_commune": "GRENAY", "libell_d_acheminement": "GRENAY", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38184"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f27d866a8cefe1db5b969df940ea819fb0bdfebf", "fields": {"nom_de_la_commune": "HEYRIEUX", "libell_d_acheminement": "HEYRIEUX", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38189"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22689f1b98077ece701af071601d30d95dc52e9", "fields": {"nom_de_la_commune": "L ISLE D ABEAU", "libell_d_acheminement": "L ISLE D ABEAU", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38193"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc0baadfe5f8e2a7b149f975dd5d5969396eaef9", "fields": {"nom_de_la_commune": "LAFFREY", "libell_d_acheminement": "LAFFREY", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38203"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a381f7db0786b8a2213e7991cc2c9e5ee08fd5", "fields": {"nom_de_la_commune": "LALLEY", "libell_d_acheminement": "LALLEY", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38204"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b3d836cac857a5a10e01bd11017a0944ed272f", "fields": {"nom_de_la_commune": "LAVARS", "libell_d_acheminement": "LAVARS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38208"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b05cd623d549ef0c4a119c392871a85c56a2a9", "fields": {"nom_de_la_commune": "LIVET ET GAVET", "libell_d_acheminement": "LIVET ET GAVET", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38212"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3750b7ce58ca8a9bf5def52d59c1b8beec25caf6", "fields": {"code_postal": "38220", "code_commune_insee": "38212", "libell_d_acheminement": "LIVET ET GAVET", "ligne_5": "RIOUPEROUX", "nom_de_la_commune": "LIVET ET GAVET", "coordonnees_gps": [45.0661676194, 5.84675560183]}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee23792e2e228343e14fe473d5078103da8759d", "fields": {"nom_de_la_commune": "LUMBIN", "libell_d_acheminement": "LUMBIN", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38214"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8febf6a3df6e2bebb34c45018754f39725373d80", "fields": {"nom_de_la_commune": "MERLAS", "libell_d_acheminement": "MERLAS", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38228"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5273a4c4ec8b9aafa0d2447c08fc543bc155aa", "fields": {"nom_de_la_commune": "MEYSSIEZ", "libell_d_acheminement": "MEYSSIEZ", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38232"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c4510ac99d4657b2e3c733e7c6b69b2317bda5", "fields": {"nom_de_la_commune": "MIZOEN", "libell_d_acheminement": "MIZOEN", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38237"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2444d1574d0b5c6b95b6085f82492267848366", "fields": {"nom_de_la_commune": "MOIDIEU DETOURBE", "libell_d_acheminement": "MOIDIEU DETOURBE", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38238"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39b58170c0d3fc4b468e364197f2fd669ac882c", "fields": {"nom_de_la_commune": "MOIRANS", "libell_d_acheminement": "MOIRANS", "code_postal": "38430", "coordonnees_gps": [45.3230969594, 5.56811777038], "code_commune_insee": "38239"}, "geometry": {"type": "Point", "coordinates": [5.56811777038, 45.3230969594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3187322eaf94487d6f60c6e9eb7169914864fac", "fields": {"nom_de_la_commune": "MONTBONNOT ST MARTIN", "libell_d_acheminement": "MONTBONNOT ST MARTIN", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38249"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3faf13185c5e5b3086d62f02d875b205e5f6be9c", "fields": {"nom_de_la_commune": "MONT DE LANS", "libell_d_acheminement": "MONT DE LANS", "code_postal": "38860", "coordonnees_gps": [44.994660373, 6.12322203081], "code_commune_insee": "38253"}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7925d45f740560c94af922360d3ef0b29f44bd13", "fields": {"nom_de_la_commune": "MONTEYNARD", "libell_d_acheminement": "MONTEYNARD", "code_postal": "38770", "coordonnees_gps": [44.9592629252, 5.7197167385], "code_commune_insee": "38254"}, "geometry": {"type": "Point", "coordinates": [5.7197167385, 44.9592629252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c998d5a541fc35d3486b89328a8e6c8ce752b281", "fields": {"nom_de_la_commune": "MORAS", "libell_d_acheminement": "MORAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38260"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa0fa37619569e7c6c845759f3d26f7b8fa9b7a", "fields": {"nom_de_la_commune": "MORETTE", "libell_d_acheminement": "MORETTE", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38263"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207a6f61080c742910c34343efb52364b905fde5", "fields": {"nom_de_la_commune": "LA MURETTE", "libell_d_acheminement": "LA MURETTE", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38270"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1b8ce587e73bc938988454a9fd359e49eb02f3", "fields": {"nom_de_la_commune": "MURIANETTE", "libell_d_acheminement": "MURIANETTE", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38271"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58286edf389ee328ef39f1ecbb5ce9275061abb5", "fields": {"nom_de_la_commune": "NIVOLAS VERMELLE", "libell_d_acheminement": "NIVOLAS VERMELLE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38276"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3914335bef97d712cf9782b509f409a440f87f", "fields": {"nom_de_la_commune": "NOTRE DAME DE VAULX", "libell_d_acheminement": "NOTRE DAME DE VAULX", "code_postal": "38144", "coordonnees_gps": [44.9913624463, 5.74144194434], "code_commune_insee": "38280"}, "geometry": {"type": "Point", "coordinates": [5.74144194434, 44.9913624463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cf0df2af5bbbc306d9e611ad3ae017885c1b4f", "fields": {"nom_de_la_commune": "ORNON", "libell_d_acheminement": "ORNON", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38285"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcd6b4f52af6bc2f644b79c577ee2c708a5d7a7", "fields": {"nom_de_la_commune": "PAJAY", "libell_d_acheminement": "PAJAY", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38291"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855139289fb955a1007d63ee5f04666eb730f279", "fields": {"nom_de_la_commune": "PALADRU", "libell_d_acheminement": "PALADRU", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38292"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "998456f0ce29b1c264630326a1063a7141931485", "fields": {"nom_de_la_commune": "PELLAFOL", "libell_d_acheminement": "PELLAFOL", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38299"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1e66879a852618c02484811ac6181a1aa820a1", "fields": {"nom_de_la_commune": "PERCY", "libell_d_acheminement": "LE PERCY", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38301"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6c8353b892b221585e8762ff14cfc674be7e08", "fields": {"nom_de_la_commune": "LA PIERRE", "libell_d_acheminement": "LA PIERRE", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38303"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402617a5797254e63ea1f534978493b87f0dcb0e", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38305"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4feb6ae251a4d374c69474277bb67bc58a7c132", "fields": {"nom_de_la_commune": "PINSOT", "libell_d_acheminement": "PINSOT", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38306"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6837bd7f68b2dffb47dca1914f4ba82b1513b57", "fields": {"nom_de_la_commune": "POLIENAS", "libell_d_acheminement": "POLIENAS", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38310"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a8dfa7f395da6b9acacf4e34b2dbeece3ec372", "fields": {"nom_de_la_commune": "PONSONNAS", "libell_d_acheminement": "PONSONNAS", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38313"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178d5353e190b0dcaca208caa6859575439609e1", "fields": {"nom_de_la_commune": "PRIMARETTE", "libell_d_acheminement": "PRIMARETTE", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38324"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d93620d42e1f7ccb5aeeb0d6e8d32fd891aaaac", "fields": {"nom_de_la_commune": "QUET EN BEAUMONT", "libell_d_acheminement": "QUET EN BEAUMONT", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38329"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ba2c643e04dec20c3fa498885e391a8fa7c536", "fields": {"nom_de_la_commune": "LES ROCHES DE CONDRIEU", "libell_d_acheminement": "LES ROCHES DE CONDRIEU", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38340"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7612b885106e4e304f283ce1e189873e43eb677b", "fields": {"nom_de_la_commune": "ROUSSILLON", "libell_d_acheminement": "ROUSSILLON", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38344"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82dd27f78fbaa06afabe65304468a1d1532f15b", "fields": {"nom_de_la_commune": "ST ANDEOL", "libell_d_acheminement": "ST ANDEOL", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38355"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1388f616f653f15faa6e2cfedff847ab48a6c9be", "fields": {"nom_de_la_commune": "ST AREY", "libell_d_acheminement": "ST AREY", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38361"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13676cc315402f7c6999e29dc96e65b495c35ebd", "fields": {"nom_de_la_commune": "ST BAUDILLE DE LA TOUR", "libell_d_acheminement": "ST BAUDILLE DE LA TOUR", "code_postal": "38118", "coordonnees_gps": [45.7906226846, 5.32480499353], "code_commune_insee": "38365"}, "geometry": {"type": "Point", "coordinates": [5.32480499353, 45.7906226846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d56596209bc90715431e41d26e090f90ea290dc", "fields": {"nom_de_la_commune": "ST CLAIR SUR GALAURE", "libell_d_acheminement": "ST CLAIR SUR GALAURE", "code_postal": "38940", "coordonnees_gps": [45.2530241738, 5.22613793096], "code_commune_insee": "38379"}, "geometry": {"type": "Point", "coordinates": [5.22613793096, 45.2530241738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87396a142aad9e6f954179ce4ace244a702a388a", "fields": {"nom_de_la_commune": "ST ETIENNE DE CROSSEY", "libell_d_acheminement": "ST ETIENNE DE CROSSEY", "code_postal": "38960", "coordonnees_gps": [45.3922025887, 5.6488231816], "code_commune_insee": "38383"}, "geometry": {"type": "Point", "coordinates": [5.6488231816, 45.3922025887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e674059e273d27240169be9dc7da7bb6ab1d92", "fields": {"nom_de_la_commune": "ST GEORGES DE COMMIERS", "libell_d_acheminement": "ST GEORGES DE COMMIERS", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38388"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a99d772ce3dac7238598f93600de175170f9d1f2", "fields": {"nom_de_la_commune": "ST JEAN D AVELANNE", "libell_d_acheminement": "ST JEAN D AVELANNE", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38398"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "349b655ba9eb22eb4423afa6ac21333d7ea8529a", "fields": {"nom_de_la_commune": "ST JEAN D HERANS", "libell_d_acheminement": "ST JEAN D HERANS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38403"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1ee3ab4ef453badbd439abae25b54e3e3ebe0a", "fields": {"nom_de_la_commune": "ST JULIEN DE L HERMS", "libell_d_acheminement": "ST JULIEN DE L HERMS", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38406"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "450cf52691f4d8f646ca85151636ce27c80401e9", "fields": {"nom_de_la_commune": "ST LAURENT EN BEAUMONT", "libell_d_acheminement": "ST LAURENT EN BEAUMONT", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38413"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019e9a0efdc10a469592b41689697e9a3a5585b1", "fields": {"nom_de_la_commune": "STE LUCE", "libell_d_acheminement": "STE LUCE", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38414"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59e8de74d244c0661871ce362a15675a28a860d", "fields": {"nom_de_la_commune": "ST MARTIN DE CLELLES", "libell_d_acheminement": "ST MARTIN DE CLELLES", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38419"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1fed057b75fac21aedcb9d28b83472782a179f", "fields": {"nom_de_la_commune": "ST MAURICE L EXIL", "libell_d_acheminement": "ST MAURICE L EXIL", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38425"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40a285276c3d19e78fec92bd0cf190223c48c616", "fields": {"nom_de_la_commune": "ST MICHEL EN BEAUMONT", "libell_d_acheminement": "ST MICHEL EN BEAUMONT", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38428"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac3980c151abad6bd9df5a384fafedb46aa6157", "fields": {"nom_de_la_commune": "ST MICHEL LES PORTES", "libell_d_acheminement": "ST MICHEL LES PORTES", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38429"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da4ad27399b8ded16653b9dd9e5566b426e4da6", "fields": {"nom_de_la_commune": "ST MURY MONTEYMOND", "libell_d_acheminement": "ST MURY MONTEYMOND", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38430"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a02fd8315fccb17d052318491ff1932363bfaac", "fields": {"nom_de_la_commune": "ST NAZAIRE LES EYMES", "libell_d_acheminement": "ST NAZAIRE LES EYMES", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38431"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c74c0314fa7b282aec9dc2e74147743c4591238", "fields": {"nom_de_la_commune": "CHIATRA", "libell_d_acheminement": "CHIATRA DI VERDE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B088"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5947331a21f474a3d7b47c8740af636583daac", "fields": {"nom_de_la_commune": "ERBAJOLO", "libell_d_acheminement": "ERBAJOLO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B105"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806015e97b9d62cec8c6d472e28e099587d92c40", "fields": {"nom_de_la_commune": "FOCICCHIA", "libell_d_acheminement": "FOCICCHIA", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B116"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f43aac8f52ebb2d420375566dc02cc602ce192", "fields": {"code_postal": "20240", "code_commune_insee": "2B123", "libell_d_acheminement": "GHISONACCIA", "ligne_5": "ST ANTOINE", "nom_de_la_commune": "GHISONACCIA", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5b4e4e81500a7855b354296c0896d2e788624f", "fields": {"nom_de_la_commune": "ISOLACCIO DI FIUMORBO", "libell_d_acheminement": "ISOLACCIO DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B135"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cb3f11977bfb7aac3554876429fd23ae69fef1", "fields": {"nom_de_la_commune": "LANO", "libell_d_acheminement": "LANO", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B137"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93bb0860e6b03466a1fdac6e01d3188a0e3b41a4", "fields": {"nom_de_la_commune": "MATRA", "libell_d_acheminement": "MATRA", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B155"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b336b7f47a9deaafe9df3cb051bc355c16cf437", "fields": {"nom_de_la_commune": "MAZZOLA", "libell_d_acheminement": "MAZZOLA", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B157"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9666a06731b8e92a8939f65cc191a828c6a73f9c", "fields": {"nom_de_la_commune": "MOITA", "libell_d_acheminement": "MOITA", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B161"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9e500994dafa4e9b6f35d8b3fcad4de27603f9", "fields": {"nom_de_la_commune": "NESSA", "libell_d_acheminement": "NESSA", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B175"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1827549c2aea7e1723ef4eaaadf073111b1b6a5b", "fields": {"nom_de_la_commune": "OLMI CAPPELLA", "libell_d_acheminement": "OLMI CAPPELLA", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B190"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1428fdd6f0acbc0b8e4af2dc80212b59c95baa9", "fields": {"nom_de_la_commune": "PALASCA", "libell_d_acheminement": "PALASCA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B199"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7df8b8af98db54f4f22a128586d2a08e0391b7f", "fields": {"nom_de_la_commune": "PATRIMONIO", "libell_d_acheminement": "PATRIMONIO", "code_postal": "20253", "coordonnees_gps": [42.7087957082, 9.36671940301], "code_commune_insee": "2B205"}, "geometry": {"type": "Point", "coordinates": [9.36671940301, 42.7087957082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b527e6e1be7d55f855de09d4fa6dc4fd8a6351", "fields": {"nom_de_la_commune": "PERO CASEVECCHIE", "libell_d_acheminement": "PERO CASEVECCHIE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B210"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20eb8806cc2734988c6eab92949f11412932038", "fields": {"nom_de_la_commune": "PIEDICORTE DI GAGGIO", "libell_d_acheminement": "PIEDICORTE DI GAGGIO", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B218"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd2cc688f9f9e72b5caf23d63b5b8e20cb174a9", "fields": {"nom_de_la_commune": "PIEDICROCE", "libell_d_acheminement": "PIEDICROCE", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B219"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5281e756712f932433c99b2de36eca1cb8e321be", "fields": {"nom_de_la_commune": "PIE D OREZZA", "libell_d_acheminement": "PIE D OREZZA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B222"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85bf3dd10ad8267289413816a0733883aba181f", "fields": {"nom_de_la_commune": "PINO", "libell_d_acheminement": "PINO", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B233"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58038c86fa4d8dc45adad3f9ce9c61a448c65204", "fields": {"nom_de_la_commune": "POGGIO D OLETTA", "libell_d_acheminement": "POGGIO D OLETTA", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B239"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c0a902da5f543ae017d03ed93599a0c7e80a18", "fields": {"nom_de_la_commune": "POLVEROSO", "libell_d_acheminement": "POLVEROSO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B243"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "367793f987a33186f1c1d40416af20c67795ef38", "fields": {"nom_de_la_commune": "PRATO DI GIOVELLINA", "libell_d_acheminement": "PRATO DI GIOVELLINA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B248"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cc37a1591db025406f1635656a521d4d9a2b44", "fields": {"nom_de_la_commune": "ROGLIANO", "libell_d_acheminement": "ROGLIANO", "code_postal": "20247", "coordonnees_gps": [42.9723585308, 9.42606924882], "code_commune_insee": "2B261"}, "geometry": {"type": "Point", "coordinates": [9.42606924882, 42.9723585308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5883e0cff6dcfe72d56de859804eb5620522de4c", "fields": {"nom_de_la_commune": "SCOLCA", "libell_d_acheminement": "SCOLCA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B274"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5ba2aec32a8be700e534b4cfbb0e77ab2be8438", "fields": {"nom_de_la_commune": "SILVARECCIO", "libell_d_acheminement": "SILVARECCIO", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B280"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71f1b2e19c0c3efb57776fbff7770c78d8135e5", "fields": {"nom_de_la_commune": "SORBO OCAGNANO", "libell_d_acheminement": "SORBO OCAGNANO", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B286"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9538f264e27239099ff2b1ea574bf1c567b6dab5", "fields": {"nom_de_la_commune": "SANT ANDREA DI BOZIO", "libell_d_acheminement": "SANT ANDREA DI BOZIO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B292"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c69ed05caf0929d0a81e25f828e7864213c5e5", "fields": {"nom_de_la_commune": "SAN GIOVANNI DI MORIANI", "libell_d_acheminement": "SAN GIOVANNI DI MORIANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B302"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8568cf3029d3a6c0a9e47591173e62482100b938", "fields": {"code_postal": "20200", "code_commune_insee": "2B309", "libell_d_acheminement": "SANTA MARIA DI LOTA", "ligne_5": "MIOMO", "nom_de_la_commune": "SANTA MARIA DI LOTA", "coordonnees_gps": [42.7169845542, 9.42659304409]}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250bf4ea104f8c05f8030906094b2c5ecd7c91e6", "fields": {"nom_de_la_commune": "SAN NICOLAO", "libell_d_acheminement": "SAN NICOLAO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B313"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6fa563df3ff0693d682caabdf4e080c1871134", "fields": {"code_postal": "20230", "code_commune_insee": "2B313", "libell_d_acheminement": "SAN NICOLAO", "ligne_5": "MORIANI", "nom_de_la_commune": "SAN NICOLAO", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d774e125e5bb3693c136c6bb6e0f3c1a481e5b7e", "fields": {"code_postal": "20230", "code_commune_insee": "2B313", "libell_d_acheminement": "SAN NICOLAO", "ligne_5": "MORIANI PLAGE", "nom_de_la_commune": "SAN NICOLAO", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288b41f613263ef68a211be1359da96de3595ce6", "fields": {"nom_de_la_commune": "SANTO PIETRO DI VENACO", "libell_d_acheminement": "SANTO PIETRO DI VENACO", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B315"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e958449bef87bd5ec0491491f1a388f42a08403", "fields": {"nom_de_la_commune": "SANTA REPARATA DI BALAGNA", "libell_d_acheminement": "SANTA REPARATA DI BALAGNA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B316"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac84d8d0894dbcd6e0049ae35ee16799cf0ff2fc", "fields": {"nom_de_la_commune": "TARRANO", "libell_d_acheminement": "TARRANO", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B321"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613a441204b9f383bc2a95675c0f45fe844ec4bb", "fields": {"nom_de_la_commune": "VELONE ORNETO", "libell_d_acheminement": "VELONE ORNETO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B340"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c40218098b3c92bc3eaf2658fa2b7324f830445", "fields": {"nom_de_la_commune": "VENTISERI", "libell_d_acheminement": "VENTISERI", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B342"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15491c6bbbd3f2329ed11b37e888f69e860f25f8", "fields": {"code_postal": "20219", "code_commune_insee": "2B354", "libell_d_acheminement": "VIVARIO", "ligne_5": "TATTONE", "nom_de_la_commune": "VIVARIO", "coordonnees_gps": [42.1546750022, 9.13106391385]}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "897acc783c2f84ede6b9fae1ad8de244bb31498f", "fields": {"nom_de_la_commune": "ZILIA", "libell_d_acheminement": "ZILIA", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B361"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1791477e3979c8c433c53eaf35bfda2757034461", "fields": {"nom_de_la_commune": "ZUANI", "libell_d_acheminement": "ZUANI", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B364"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa1266e3479652909cefc20a42ce3476d9c9bb4", "fields": {"nom_de_la_commune": "LA VEZE", "libell_d_acheminement": "LA VEZE", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25611"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dc3fd41a8d038f73f3ad25fd48ecb83c711ddc", "fields": {"nom_de_la_commune": "VIEILLEY", "libell_d_acheminement": "VIEILLEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25612"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5055e0b964d09b3487ae2d49cef1feccb6113b", "fields": {"nom_de_la_commune": "VILLARS LES BLAMONT", "libell_d_acheminement": "VILLARS LES BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25615"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551231a082f8dd32ec9f8a1e7ad914b05c0d73f8", "fields": {"nom_de_la_commune": "LES VILLEDIEU", "libell_d_acheminement": "LES VILLEDIEU", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25619"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d8ee5202e5a64afcd164c35b09ac068589022c", "fields": {"nom_de_la_commune": "VILLERS BUZON", "libell_d_acheminement": "VILLERS BUZON", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25622"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94b0675ba766f9c30250f77c2714c1de88b3b8e", "fields": {"nom_de_la_commune": "VILLERS GRELOT", "libell_d_acheminement": "VILLERS GRELOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25624"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f063c69b00281c0deb304c8044412ca6fde55d", "fields": {"nom_de_la_commune": "VILLERS ST MARTIN", "libell_d_acheminement": "VILLERS ST MARTIN", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25626"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06049de83fe5fa61806d83579bc045d88d546e79", "fields": {"nom_de_la_commune": "VOIRES", "libell_d_acheminement": "VOIRES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25630"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186751e45700872dc7452869346f7b2328f65e4f", "fields": {"nom_de_la_commune": "VOUJEAUCOURT", "libell_d_acheminement": "VOUJEAUCOURT", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25632"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89116d49ba6f03538f9631309fe1135ca4b0def1", "fields": {"nom_de_la_commune": "AMBONIL", "libell_d_acheminement": "AMBONIL", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26007"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50085e9686dfb5c42dccfa98705d47bd4fc2838b", "fields": {"nom_de_la_commune": "ANCONE", "libell_d_acheminement": "ANCONE", "code_postal": "26200", "coordonnees_gps": [44.5548199965, 4.74796911041], "code_commune_insee": "26008"}, "geometry": {"type": "Point", "coordinates": [4.74796911041, 44.5548199965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db036b2a018e26622c5f3adb36123084477b8b86", "fields": {"nom_de_la_commune": "AUBENASSON", "libell_d_acheminement": "AUBENASSON", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26015"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f48780d432a3ff79d7ff67f22c4e4dd8814e19", "fields": {"nom_de_la_commune": "AUREL", "libell_d_acheminement": "AUREL", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26019"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75210ee7780729ea0e1d4444f444f254ee63f19", "fields": {"nom_de_la_commune": "LA REPARA AURIPLES", "libell_d_acheminement": "LA REPARA AURIPLES", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26020"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b031ef692e8b579cfff8de25524d1cbff04180e9", "fields": {"nom_de_la_commune": "BARBIERES", "libell_d_acheminement": "BARBIERES", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26023"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4d8f77439acd23e5a7b6356455d3a9431aa40d", "fields": {"nom_de_la_commune": "LA BATIE DES FONDS", "libell_d_acheminement": "LA BATIE DES FONDS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26030"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dcb6f2d6d7ba539712dc8f329702927ec3137ce", "fields": {"nom_de_la_commune": "BEAUMONT LES VALENCE", "libell_d_acheminement": "BEAUMONT LES VALENCE", "code_postal": "26760", "coordonnees_gps": [44.8676636246, 4.93984005309], "code_commune_insee": "26037"}, "geometry": {"type": "Point", "coordinates": [4.93984005309, 44.8676636246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5de3022a480c1f830c510020e24fe7a73347eae", "fields": {"nom_de_la_commune": "BEAUVOISIN", "libell_d_acheminement": "BEAUVOISIN", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26043"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd963f08175020b2af088e8139657888fa3e949", "fields": {"nom_de_la_commune": "BONLIEU SUR ROUBION", "libell_d_acheminement": "BONLIEU SUR ROUBION", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26052"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acfb339f7b435c1c1e68a298b1ccc0be645175a", "fields": {"nom_de_la_commune": "BUIS LES BARONNIES", "libell_d_acheminement": "BUIS LES BARONNIES", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26063"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6950a8c890be7822d645c04f960da6c850ade2cb", "fields": {"nom_de_la_commune": "CHABEUIL", "libell_d_acheminement": "CHABEUIL", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26064"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a26cb76f240e7dc3121a886ba9aa58e3ee0671", "fields": {"code_postal": "26190", "code_commune_insee": "26066", "libell_d_acheminement": "LE CHAFFAL", "ligne_5": "LA VACHERIE", "nom_de_la_commune": "LE CHAFFAL", "coordonnees_gps": [44.9669941445, 5.28273235477]}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5679c1ae624079da43f79854807833ce9173d370", "fields": {"nom_de_la_commune": "CHAMARET", "libell_d_acheminement": "CHAMARET", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26070"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ef4000b4909df60077e2c30e2fd4b4f4a93d8d", "fields": {"nom_de_la_commune": "CHANTEMERLE LES BLES", "libell_d_acheminement": "CHANTEMERLE LES BLES", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26072"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01021367fecb83fa0dda8c727a04fc6239811a6", "fields": {"nom_de_la_commune": "CHANTEMERLE LES GRIGNAN", "libell_d_acheminement": "CHANTEMERLE LES GRIGNAN", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26073"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dfe6ef479334f04f46111d3501bdbc862c3387", "fields": {"nom_de_la_commune": "LA CHAPELLE EN VERCORS", "libell_d_acheminement": "LA CHAPELLE EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26074"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf5e723f4e0876e086a735c9930dfc29747292d", "fields": {"nom_de_la_commune": "CHARENS", "libell_d_acheminement": "CHARENS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26076"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d24e9189cfff743bda9b50d3e631514baa73660", "fields": {"nom_de_la_commune": "CHATEAUDOUBLE", "libell_d_acheminement": "CHATEAUDOUBLE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26081"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef3e8663b19dfb494dbccd6be717d6aa6b49604", "fields": {"nom_de_la_commune": "CHAVANNES", "libell_d_acheminement": "CHAVANNES", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26092"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d12e48360328401ef4db5e3d89708f80d79e21", "fields": {"nom_de_la_commune": "CLANSAYES", "libell_d_acheminement": "CLANSAYES", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26093"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dce5201399b9cffde5fa9dd286c6ff72b4b1b98", "fields": {"nom_de_la_commune": "CLERIEUX", "libell_d_acheminement": "CLERIEUX", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26096"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03af342bfb88a6a608a1c018bc0481eedf4c9085", "fields": {"nom_de_la_commune": "CLIOUSCLAT", "libell_d_acheminement": "CLIOUSCLAT", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26097"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b292790f947a540cd8049064eef38966aceadbd2", "fields": {"nom_de_la_commune": "COBONNE", "libell_d_acheminement": "COBONNE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26098"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ac8211173ee38c9bafb8eb7b09da94ed9bbc53", "fields": {"nom_de_la_commune": "COMBOVIN", "libell_d_acheminement": "COMBOVIN", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26100"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d63b38ba8c2947f6ec9a83689a008d315d49c26", "fields": {"nom_de_la_commune": "CRUPIES", "libell_d_acheminement": "CRUPIES", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26111"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535f3319f335db1333598bfb6b37673e1a7e50c4", "fields": {"nom_de_la_commune": "ESPELUCHE", "libell_d_acheminement": "ESPELUCHE", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26121"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4446d2ea3770fdea8cb72f2a87efa5bd80ea1983", "fields": {"nom_de_la_commune": "ESPENEL", "libell_d_acheminement": "ESPENEL", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26122"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d500ed0ef8c0c5e09eb5558d33506a82e4b5d60", "fields": {"nom_de_la_commune": "ESTABLET", "libell_d_acheminement": "ESTABLET", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26123"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6b5811fb664fc8b68c84bce3dc4c794dbddcfd", "fields": {"nom_de_la_commune": "EYGALIERS", "libell_d_acheminement": "EYGALIERS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26127"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59371f260648bb69f4008be2272ae57682c1f06b", "fields": {"code_postal": "26730", "code_commune_insee": "26129", "libell_d_acheminement": "EYMEUX", "ligne_5": "L ECANCIERE", "nom_de_la_commune": "EYMEUX", "coordonnees_gps": [45.0482944782, 5.20163673449]}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b26fa6c1ded46e19837c60708bbb1d6d2be3702b", "fields": {"nom_de_la_commune": "EYZAHUT", "libell_d_acheminement": "EYZAHUT", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26131"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0505239443a40a648fcc55fd9ed6601238d75794", "fields": {"nom_de_la_commune": "VAL MARAVEL", "libell_d_acheminement": "VAL MARAVEL", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26136"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ffe3020fd649ad3260db0f507d08e3a08bd740", "fields": {"nom_de_la_commune": "GEYSSANS", "libell_d_acheminement": "GEYSSANS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26140"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d7cffee732dae7a62cf7b449c45d295ad7182d", "fields": {"nom_de_la_commune": "JONCHERES", "libell_d_acheminement": "JONCHERES", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26152"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59daea7ad8f8d87ee2bc1b8eb3640b87193fb8d", "fields": {"nom_de_la_commune": "LABOREL", "libell_d_acheminement": "LABOREL", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26153"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8dcc8e27284c795b58dd2aa633e09c14233a060", "fields": {"nom_de_la_commune": "LENS LESTANG", "libell_d_acheminement": "LENS LESTANG", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26162"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe07d0aefe61cea0424ff5be64f48873c9ade0dc", "fields": {"nom_de_la_commune": "LUC EN DIOIS", "libell_d_acheminement": "LUC EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26167"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8341a6584d84524b31a1214a9c0d141e006f2c", "fields": {"nom_de_la_commune": "MALATAVERNE", "libell_d_acheminement": "MALATAVERNE", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26169"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a539a239b2c045ca769a5f08b370e4290c0171ab", "fields": {"code_postal": "26600", "code_commune_insee": "26179", "libell_d_acheminement": "MERCUROL VEAUNES", "ligne_5": "VEAUNES", "nom_de_la_commune": "MERCUROL VEAUNES", "coordonnees_gps": [45.0726066557, 4.88253360628]}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "912dc293daf1818d1f1a8b04bf3f2cde5b3df536", "fields": {"nom_de_la_commune": "MOLLANS SUR OUVEZE", "libell_d_acheminement": "MOLLANS SUR OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26188"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c3349cfdf81bada785efcde7d22a043e161f20", "fields": {"nom_de_la_commune": "MONTAUBAN SUR L OUVEZE", "libell_d_acheminement": "MONTAUBAN SUR L OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26189"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8157ed0ede2e48c8eb4f69830fca1a740e38a8f", "fields": {"nom_de_la_commune": "MONTBOUCHER SUR JABRON", "libell_d_acheminement": "MONTBOUCHER SUR JABRON", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26191"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d36a1738280c5d7748eb7dc976cf9b72392cf38", "fields": {"code_postal": "26120", "code_commune_insee": "26197", "libell_d_acheminement": "MONTELIER", "ligne_5": "FAUCONNIERES", "nom_de_la_commune": "MONTELIER", "coordonnees_gps": [44.8732903807, 5.03514249262]}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5572720a9bd06c58cbfbce5a3f9644654d44152a", "fields": {"nom_de_la_commune": "MONTJOYER", "libell_d_acheminement": "MONTJOYER", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26203"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a9295b5f766d637f0f17d00bf95c4d5ec67ba7", "fields": {"nom_de_la_commune": "MONTREAL LES SOURCES", "libell_d_acheminement": "MONTREAL LES SOURCES", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26209"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "653a105f3e698f38c3c7256fb0ee88a3f0986550", "fields": {"nom_de_la_commune": "OMBLEZE", "libell_d_acheminement": "OMBLEZE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26221"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffac4426633cc99554bdbc6d2a440d9d8bfac5d5", "fields": {"nom_de_la_commune": "LE POET SIGILLAT", "libell_d_acheminement": "LE POET SIGILLAT", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26244"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d489251c174aeb3da6a269056bf51717f9feab6", "fields": {"nom_de_la_commune": "PORTES EN VALDAINE", "libell_d_acheminement": "PORTES EN VALDAINE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26251"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4019a3786f2d021156cb3466c88ec33b8df6b5", "fields": {"nom_de_la_commune": "RECOUBEAU JANSAC", "libell_d_acheminement": "RECOUBEAU JANSAC", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26262"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1f415f7e8d516823aca71f006f2d4c6891edc1", "fields": {"nom_de_la_commune": "REILHANETTE", "libell_d_acheminement": "REILHANETTE", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26263"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16677dd053eaac7ad3edf93de8a0ff4e3970693", "fields": {"nom_de_la_commune": "ROCHEBAUDIN", "libell_d_acheminement": "ROCHEBAUDIN", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26268"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462384ba5e989078b5e625127548e9bc38f03f41", "fields": {"nom_de_la_commune": "ANZY LE DUC", "libell_d_acheminement": "ANZY LE DUC", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71011"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb53025f3eb9f0ecedde495837efdc1ddbf8d95", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71021"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07bd622c5955727989643ea80e6b8860247fa5f7", "fields": {"nom_de_la_commune": "BEAUREPAIRE EN BRESSE", "libell_d_acheminement": "BEAUREPAIRE EN BRESSE", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71027"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5972a374885cdcf1bfda645fc963f3214ae8a27f", "fields": {"nom_de_la_commune": "BEAUVERNOIS", "libell_d_acheminement": "BEAUVERNOIS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71028"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f295b7a5f61afbe84f88d1ce0278240d40c6ee3e", "fields": {"nom_de_la_commune": "BISSEY SOUS CRUCHAUD", "libell_d_acheminement": "BISSEY SOUS CRUCHAUD", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71034"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f1fedf70e98a27d68a270a2d77ce4c64141151", "fields": {"nom_de_la_commune": "BLANZY", "libell_d_acheminement": "BLANZY", "code_postal": "71450", "coordonnees_gps": [46.7042190085, 4.39304672537], "code_commune_insee": "71040"}, "geometry": {"type": "Point", "coordinates": [4.39304672537, 46.7042190085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f526504b2ae26d701be96951a5052f5de433cea0", "fields": {"nom_de_la_commune": "BONNAY", "libell_d_acheminement": "BONNAY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71042"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4945acdadb59d7a986f13307414b8d711e7c7ce8", "fields": {"nom_de_la_commune": "BOURBON LANCY", "libell_d_acheminement": "BOURBON LANCY", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71047"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9b3fadf2c721a49c3e9aebe5095702bf0579fd", "fields": {"nom_de_la_commune": "BOUZERON", "libell_d_acheminement": "BOUZERON", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71051"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a9c9ed928380b1a4f91ab679b900038bdb444cd", "fields": {"nom_de_la_commune": "BOYER", "libell_d_acheminement": "BOYER", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71052"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c326fb72b695991d99138698a7e0627675b708", "fields": {"nom_de_la_commune": "BRAGNY SUR SAONE", "libell_d_acheminement": "BRAGNY SUR SAONE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71054"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838ed49c0c5063cad37068dcc1c89d6138511dd4", "fields": {"nom_de_la_commune": "BRIANT", "libell_d_acheminement": "BRIANT", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71060"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c49963d5badc4cc33b77ba611ccacfa0fc77f7", "fields": {"nom_de_la_commune": "BURZY", "libell_d_acheminement": "BURZY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71068"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a9ddac8143617f33c75b1e9cb2385bf6c0ecee", "fields": {"nom_de_la_commune": "BUXY", "libell_d_acheminement": "BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71070"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a7335b5a9809c78cfe47ab29ec0157e363bfcc", "fields": {"nom_de_la_commune": "CHANES", "libell_d_acheminement": "CHANES", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71084"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e036d32b9e64e7f8315dfade63cb0ccf1641efb0", "fields": {"code_postal": "71570", "code_commune_insee": "71090", "libell_d_acheminement": "LA CHAPELLE DE GUINCHAY", "ligne_5": "PONTANEVAUX", "nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", "coordonnees_gps": [46.2281804382, 4.74594921623]}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7f75073d053f2a499a43cb8bea8bc8bfb99704", "fields": {"nom_de_la_commune": "LA CHAPELLE NAUDE", "libell_d_acheminement": "LA CHAPELLE NAUDE", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71092"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8136606f83e9723a4cd85454feef76dab2b4933c", "fields": {"nom_de_la_commune": "CHARNAY LES CHALON", "libell_d_acheminement": "CHARNAY LES CHALON", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71104"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e34582aaabc0990c39a9b14b396d1fa481fdc3", "fields": {"nom_de_la_commune": "CHARNAY LES MACON", "libell_d_acheminement": "CHARNAY LES MACON", "code_postal": "71850", "coordonnees_gps": [46.3041485683, 4.78697709545], "code_commune_insee": "71105"}, "geometry": {"type": "Point", "coordinates": [4.78697709545, 46.3041485683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca2342b428c4a40296c28fefc23e520e7a68796", "fields": {"nom_de_la_commune": "CHASSELAS", "libell_d_acheminement": "CHASSELAS", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71108"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a872b694535f12ec3c086e3c9edad66a73a43cf", "fields": {"nom_de_la_commune": "CHAUDENAY", "libell_d_acheminement": "CHAUDENAY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71119"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c031c70fb13c307230071546e2eb0927a3c6ef", "fields": {"nom_de_la_commune": "CHENOVES", "libell_d_acheminement": "CHENOVES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71124"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4590489ded4d869c55935d535817997dba6cadb", "fields": {"nom_de_la_commune": "CHIDDES", "libell_d_acheminement": "CHIDDES", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71128"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459718bef92fdbfcc40b74d094fae833da6b3143", "fields": {"nom_de_la_commune": "CLESSY", "libell_d_acheminement": "CLESSY", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71136"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e843f709fadbbd523d888b6c7e61a379451bbc3b", "fields": {"nom_de_la_commune": "LA COMELLE", "libell_d_acheminement": "LA COMELLE", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71142"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf5813695b6eaa06588ecd09df07095f96684d4", "fields": {"nom_de_la_commune": "EPERVANS", "libell_d_acheminement": "EPERVANS", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71189"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90524dd5ec908f93ae2709b628db2cb6ecf242c8", "fields": {"nom_de_la_commune": "EPINAC", "libell_d_acheminement": "EPINAC", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71190"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a99a199957833cdad4c9d88e46822d868506601", "fields": {"code_postal": "71240", "code_commune_insee": "71193", "libell_d_acheminement": "ETRIGNY", "ligne_5": "CHAMPLIEU", "nom_de_la_commune": "ETRIGNY", "coordonnees_gps": [46.6465695916, 4.84963105442]}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb59436ab56848d502669e4f68d7c0d26434348", "fields": {"nom_de_la_commune": "LE FAY", "libell_d_acheminement": "LE FAY", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71196"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff2849bc563a125e927e3825c1b131bc41a92e4", "fields": {"nom_de_la_commune": "FRAGNES LA LOYERE", "libell_d_acheminement": "FRAGNES LA LOYERE", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71204"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2da16875e09754dca623621bbd8dd041a9318b", "fields": {"nom_de_la_commune": "LA FRETTE", "libell_d_acheminement": "LA FRETTE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71206"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0460c3b09865e4f56bc1fad884b727996f6c517", "fields": {"nom_de_la_commune": "FRONTENAUD", "libell_d_acheminement": "FRONTENAUD", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71209"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baca489a541706da0a997236e445eb8ac9eaeea7", "fields": {"nom_de_la_commune": "LES GUERREAUX", "libell_d_acheminement": "LES GUERREAUX", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71229"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46a2a88dcc940f95aa86f5e8ab8cc895c261e3fd", "fields": {"nom_de_la_commune": "LA GUICHE", "libell_d_acheminement": "LA GUICHE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71231"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c90fcf8fe80defe2078d60ddb88888b5a68198c", "fields": {"nom_de_la_commune": "HURIGNY", "libell_d_acheminement": "HURIGNY", "code_postal": "71870", "coordonnees_gps": [46.3631972842, 4.80026769579], "code_commune_insee": "71235"}, "geometry": {"type": "Point", "coordinates": [4.80026769579, 46.3631972842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78e54659ed47081664da9a46b2d08bf01d16fa4", "fields": {"nom_de_la_commune": "IGE", "libell_d_acheminement": "IGE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71236"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90832126f4044be8399d983a7f307aba01b6477b", "fields": {"nom_de_la_commune": "JOUVENCON", "libell_d_acheminement": "JOUVENCON", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71244"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeff3d054181e9805b9fe03496ce6b956287570b", "fields": {"nom_de_la_commune": "JUGY", "libell_d_acheminement": "JUGY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71245"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f695469e7a893bc6ed6d4b7fb58eee35662e3f7c", "fields": {"nom_de_la_commune": "JUIF", "libell_d_acheminement": "JUIF", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71246"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efdc5ce2f2b19d9ab958763fa5f60c4701ecd4b8", "fields": {"nom_de_la_commune": "LAIZY", "libell_d_acheminement": "LAIZY", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71251"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e515ce91c33db56f2443d504d16343c83548a9", "fields": {"nom_de_la_commune": "LALHEUE", "libell_d_acheminement": "LALHEUE", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71252"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62e8eaeb9bf24b982a0c76eabee37e51560ac13", "fields": {"nom_de_la_commune": "LESSARD LE NATIONAL", "libell_d_acheminement": "LESSARD LE NATIONAL", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71257"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249d1243d3fe30206debf37cfaababf1c9998559", "fields": {"nom_de_la_commune": "LOUHANS", "libell_d_acheminement": "LOUHANS", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71263"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bff7566c89c9d1c41223010b7c123a32f393479", "fields": {"nom_de_la_commune": "LUGNY", "libell_d_acheminement": "LUGNY", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71267"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa47be81b3796aa0435675ae398ba0d684630eb", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "ST JEAN LE PRICHE", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3e903093aadc676941460eef840b5738c873d1", "fields": {"nom_de_la_commune": "MARMAGNE", "libell_d_acheminement": "MARMAGNE", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71282"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "950288021f39664269124491f4777f96e9a044e5", "fields": {"nom_de_la_commune": "MARTAILLY LES BRANCION", "libell_d_acheminement": "MARTAILLY LES BRANCION", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71284"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3782a31e0c5dcb93d97b36c7cc68143366da51d0", "fields": {"nom_de_la_commune": "MATOUR", "libell_d_acheminement": "MATOUR", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71289"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1411d0f8e7481f0c2b0d91d7ca85202454be202", "fields": {"nom_de_la_commune": "MAZILLE", "libell_d_acheminement": "MAZILLE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71290"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562446fee7816b2b50cfc128ba4b37d42590f665", "fields": {"nom_de_la_commune": "MELAY", "libell_d_acheminement": "MELAY", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71291"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3a916e58f4286f7d9a637df26af98feb4ff0d5", "fields": {"code_postal": "71640", "code_commune_insee": "71292", "libell_d_acheminement": "MELLECEY", "ligne_5": "GERMOLLES", "nom_de_la_commune": "MELLECEY", "coordonnees_gps": [46.7976011118, 4.72754976033]}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82ce5213e899557f1c5151f7f9f4b2f507351ed", "fields": {"nom_de_la_commune": "MERVANS", "libell_d_acheminement": "MERVANS", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71295"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b9ffdc4158a573e313c28c00fc8bde7939ee45", "fields": {"nom_de_la_commune": "MESSEY SUR GROSNE", "libell_d_acheminement": "MESSEY SUR GROSNE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71296"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149dae181b667d74e76d66c8137c2b1babe229c2", "fields": {"nom_de_la_commune": "MESVRES", "libell_d_acheminement": "MESVRES", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71297"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aef766f6cedfe8ea6dbd67d67f2b6864351dc8", "fields": {"nom_de_la_commune": "MONT", "libell_d_acheminement": "MONT", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71301"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860d0b74719e5fa6d8fba77d643e09f5c6954bbe", "fields": {"nom_de_la_commune": "MONTCEAUX L ETOILE", "libell_d_acheminement": "MONTCEAUX L ETOILE", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71307"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da02c79d6b20da135d6c70406f21320a3481ecb", "fields": {"nom_de_la_commune": "MONTPONT EN BRESSE", "libell_d_acheminement": "MONTPONT EN BRESSE", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71318"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bf00a20b0155a33a58804b510d68f13559ade9", "fields": {"nom_de_la_commune": "NAVILLY", "libell_d_acheminement": "NAVILLY", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71329"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747812fde33ea6b53ec073c9b77275177e1c5916", "fields": {"nom_de_la_commune": "PERREUIL", "libell_d_acheminement": "PERREUIL", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71347"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc5a7d1ad0b237d64ada2271f6bcae90bc987a0", "fields": {"nom_de_la_commune": "PIERRECLOS", "libell_d_acheminement": "PIERRECLOS", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71350"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9b1a0fa1b8ae1169cef57d9fafd89f6d0aff44", "fields": {"nom_de_la_commune": "PIERRE DE BRESSE", "libell_d_acheminement": "PIERRE DE BRESSE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71351"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69959453e76736060fe865539d99444fea29adb1", "fields": {"nom_de_la_commune": "POUILLOUX", "libell_d_acheminement": "POUILLOUX", "code_postal": "71230", "coordonnees_gps": [46.6235547336, 4.3737497458], "code_commune_insee": "71356"}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ec1fe428dafcabc12873fd953a1edae2a12090", "fields": {"nom_de_la_commune": "PRESSY SOUS DONDIN", "libell_d_acheminement": "PRESSY SOUS DONDIN", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71358"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0bb7c5501e1430f93a3c90960f79db3f9e7f30", "fields": {"nom_de_la_commune": "PRUZILLY", "libell_d_acheminement": "PRUZILLY", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71362"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b58146f9821ef32fba15641e5a1702fda0c44b", "fields": {"nom_de_la_commune": "RATTE", "libell_d_acheminement": "RATTE", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71367"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc714083e05b2b99444725bf333e93d4662efb12", "fields": {"nom_de_la_commune": "RIGNY SUR ARROUX", "libell_d_acheminement": "RIGNY SUR ARROUX", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71370"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08714b26d8fa849900462d17aa643aa0c7a89316", "fields": {"nom_de_la_commune": "ST ANDRE EN BRESSE", "libell_d_acheminement": "ST ANDRE EN BRESSE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71386"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfd9fc7146aef08d6c2576766de63eef4460100", "fields": {"nom_de_la_commune": "ST AUBIN SUR LOIRE", "libell_d_acheminement": "ST AUBIN SUR LOIRE", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71389"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec3e8657d3c7bdd12a323b8404161d61f596609", "fields": {"nom_de_la_commune": "ST BONNET DE CRAY", "libell_d_acheminement": "ST BONNET DE CRAY", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71393"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "215b6a4fa0db4287df589fa698f9443a53607a0f", "fields": {"nom_de_la_commune": "ST BONNET DE VIEILLE VIGNE", "libell_d_acheminement": "ST BONNET DE VIEILLE VIGNE", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71395"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d0518f2e0c2015f0c2cf0caf4f29c2c4b84441", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71402"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5c3c26339a74b57c4b6d9a619db78449512399", "fields": {"nom_de_la_commune": "ST ETIENNE EN BRESSE", "libell_d_acheminement": "ST ETIENNE EN BRESSE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71410"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba786b7fc9690287bdf45eadd23982c53fb6b1e", "fields": {"nom_de_la_commune": "ST EUSEBE", "libell_d_acheminement": "ST EUSEBE", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71412"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ec3c9ecaefc84686e21ca810ed059a6242818f", "fields": {"nom_de_la_commune": "ST GENGOUX LE NATIONAL", "libell_d_acheminement": "ST GENGOUX LE NATIONAL", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71417"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dceaacbdc09a60f07c2981cf380446c03f94ab7", "fields": {"nom_de_la_commune": "ST JULIEN DE JONZY", "libell_d_acheminement": "ST JULIEN DE JONZY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71434"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37efdc08055113e5a325419bcaba71889ffb298", "fields": {"nom_de_la_commune": "BOURNOS", "libell_d_acheminement": "BOURNOS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64146"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c340e259dfd441b34956b1a1de803a6bb6fb57b0", "fields": {"code_postal": "64800", "code_commune_insee": "64148", "libell_d_acheminement": "BRUGES CAPBIS MIFAGET", "ligne_5": "CAPBIS", "nom_de_la_commune": "BRUGES CAPBIS MIFAGET", "coordonnees_gps": [43.1416716993, -0.242876303099]}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e22438b78ff5e554c614fb047bf280d4abe033", "fields": {"nom_de_la_commune": "BUGNEIN", "libell_d_acheminement": "BUGNEIN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64149"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cbee508fa6ee5cabc63961be2e4fd428980267", "fields": {"nom_de_la_commune": "BUROS", "libell_d_acheminement": "BUROS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64152"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9cfdd18dacd4371bbd40e5106ba687a1007ab0", "fields": {"nom_de_la_commune": "CARRERE", "libell_d_acheminement": "CARRERE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64167"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a881684b24a6f71d7b08c5e6cfe57a1fe86d2285", "fields": {"nom_de_la_commune": "CASTETIS", "libell_d_acheminement": "CASTETIS", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64177"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba20aec25dbe98413c842544a1b5bac45da4673a", "fields": {"nom_de_la_commune": "CIBOURE", "libell_d_acheminement": "CIBOURE", "code_postal": "64500", "coordonnees_gps": [43.389108568, -1.63881898251], "code_commune_insee": "64189"}, "geometry": {"type": "Point", "coordinates": [-1.63881898251, 43.389108568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6de33ecd812eb90d9e52875030be2f39361e161", "fields": {"nom_de_la_commune": "CLARACQ", "libell_d_acheminement": "CLARACQ", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64190"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94faf85fba0d94cd956e2ae55e8f164930fc8263", "fields": {"nom_de_la_commune": "COARRAZE", "libell_d_acheminement": "COARRAZE", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64191"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55bc2c7e661ee7ba429425d851dab5404e213201", "fields": {"nom_de_la_commune": "CORBERE ABERES", "libell_d_acheminement": "CORBERE ABERES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64193"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2efa67d968dab6d3b80395e4bb0be76376de89", "fields": {"nom_de_la_commune": "ESCOU", "libell_d_acheminement": "ESCOU", "code_postal": "64870", "coordonnees_gps": [43.1859088919, -0.54370425822], "code_commune_insee": "64207"}, "geometry": {"type": "Point", "coordinates": [-0.54370425822, 43.1859088919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080d48d3f1d2748c004f791838f0f5755967dac1", "fields": {"nom_de_la_commune": "ESCOUBES", "libell_d_acheminement": "ESCOUBES", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64208"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437ec03e036e53500e9fd2fd6e94807b5a9b5c00", "fields": {"nom_de_la_commune": "ESCURES", "libell_d_acheminement": "ESCURES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64210"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f958d8e92637db321f42c74af0e3ed1309d572d", "fields": {"nom_de_la_commune": "ESPES UNDUREIN", "libell_d_acheminement": "ESPES UNDUREIN", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64214"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5466765fea0de67db17c7dbf12948e48b1b242", "fields": {"nom_de_la_commune": "FICHOUS RIUMAYOU", "libell_d_acheminement": "FICHOUS RIUMAYOU", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64226"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad3c2f34a97a51f60185d83be0e2c7e75bda60e", "fields": {"nom_de_la_commune": "GAN", "libell_d_acheminement": "GAN", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64230"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1ffa29ebaddd40780fb9ff68307d32bd7e52d7a", "fields": {"nom_de_la_commune": "GER", "libell_d_acheminement": "GER", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64238"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbd4c3cfb79929faee38166d4addc189e9f4e34", "fields": {"nom_de_la_commune": "GERE BELESTEN", "libell_d_acheminement": "GERE BELESTEN", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64240"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deea398d99b30704c822fd03c95cf65552f635d4", "fields": {"nom_de_la_commune": "GOES", "libell_d_acheminement": "GOES", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64245"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980c5e52019c8725f249a83e42da7c8256a4fc43", "fields": {"nom_de_la_commune": "GUETHARY", "libell_d_acheminement": "GUETHARY", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64249"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be84f65a2924a1b28f7cf030644c0239220246d", "fields": {"nom_de_la_commune": "GUICHE", "libell_d_acheminement": "GUICHE", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64250"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcda20cfebb503e4ab6bb2c0b8f5c844bdc5ceeb", "fields": {"nom_de_la_commune": "HALSOU", "libell_d_acheminement": "HALSOU", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64255"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a00d2c909fc391fa411efa35f01933df5d6ba5", "fields": {"nom_de_la_commune": "HENDAYE", "libell_d_acheminement": "HENDAYE", "code_postal": "64700", "coordonnees_gps": [43.3477852312, -1.71224103787], "code_commune_insee": "64260"}, "geometry": {"type": "Point", "coordinates": [-1.71224103787, 43.3477852312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0d5796cb6946dd13d04da40e8dcb0c2669d4b1", "fields": {"nom_de_la_commune": "HERRERE", "libell_d_acheminement": "HERRERE", "code_postal": "64680", "coordonnees_gps": [43.154142648, -0.506746806096], "code_commune_insee": "64261"}, "geometry": {"type": "Point", "coordinates": [-0.506746806096, 43.154142648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "090565d0e0103a4b3ab5bd7df4411fd4809242e2", "fields": {"nom_de_la_commune": "IBARROLLE", "libell_d_acheminement": "IBARROLLE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64267"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2cb796f2487b9dfb2795b2f0c5f63601e00573", "fields": {"nom_de_la_commune": "FRECHENDETS", "libell_d_acheminement": "FRECHENDETS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65179"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc022800cc4bcee3a4b7bdfc7d1f0094bb5b17d3", "fields": {"nom_de_la_commune": "GARDERES", "libell_d_acheminement": "GARDERES", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65185"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25274f5702e03f0597b866ddb028ec7a9ee16be", "fields": {"nom_de_la_commune": "GAUDENT", "libell_d_acheminement": "GAUDENT", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65186"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59742b1a258c6b5a4c2effdec19f27386c0f8a8", "fields": {"nom_de_la_commune": "GEMBRIE", "libell_d_acheminement": "GEMBRIE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65193"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c053c1c0695a1900a01e873c37819544bec894", "fields": {"nom_de_la_commune": "GEZ EZ ANGLES", "libell_d_acheminement": "GEZ EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65203"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f79b5307894eaeeb5429a0907f2a90d31303326", "fields": {"nom_de_la_commune": "GONEZ", "libell_d_acheminement": "GONEZ", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65204"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c251f9d0aea904a7152b14cbf4bb89c09f54af9", "fields": {"nom_de_la_commune": "GOUAUX", "libell_d_acheminement": "GOUAUX", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65205"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec2373b8b038c4a1f5ac6cfe555b6472536e304", "fields": {"nom_de_la_commune": "GREZIAN", "libell_d_acheminement": "GREZIAN", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65209"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a8401f1504e17e5b9c2995abdc13f0b1f66057", "fields": {"nom_de_la_commune": "GUCHEN", "libell_d_acheminement": "GUCHEN", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65212"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78c3db78ee3feb358b6ae01bb17d2ae83a4a4e9", "fields": {"nom_de_la_commune": "HAUBAN", "libell_d_acheminement": "HAUBAN", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65216"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0354c5e01b6b7e5b57d1ae8c0b0d319d9ffef4e", "fields": {"nom_de_la_commune": "HAUTAGET", "libell_d_acheminement": "HAUTAGET", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65217"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bf256040e8e5b9b9679cfe0c25594ece90345f4", "fields": {"nom_de_la_commune": "HERES", "libell_d_acheminement": "HERES", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65219"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fef2a2c4742102f1afbd5919b07483cea378cbab", "fields": {"nom_de_la_commune": "ILHET", "libell_d_acheminement": "ILHET", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65228"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748e9969878d42e4ccde9be95c85e49bfa01e9ac", "fields": {"nom_de_la_commune": "LABASSERE", "libell_d_acheminement": "LABASSERE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65238"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "387290dd457123c70565984e7651825ac86ead21", "fields": {"nom_de_la_commune": "LANCON", "libell_d_acheminement": "LANCON", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65255"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b156a5dbea1714c68411881d130fcde117865b", "fields": {"nom_de_la_commune": "LANNE", "libell_d_acheminement": "LANNE", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65257"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d193f9571bae5177b68c1c65f6426986b76aed3f", "fields": {"nom_de_la_commune": "LANNEMEZAN", "libell_d_acheminement": "LANNEMEZAN", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65258"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e1e09b75d81cfa233b9bdb960726b1575df2cf", "fields": {"nom_de_la_commune": "LARREULE", "libell_d_acheminement": "LARREULE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65262"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f404e6139c7297b21c98f57108fccb63f51679d", "fields": {"nom_de_la_commune": "LOUBAJAC", "libell_d_acheminement": "LOUBAJAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65280"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d009bf5618adfde2061a225a473ce66ac8a06010", "fields": {"nom_de_la_commune": "LOUDENVIELLE", "libell_d_acheminement": "LOUDENVIELLE", "code_postal": "65510", "coordonnees_gps": [42.7301559382, 0.432385797938], "code_commune_insee": "65282"}, "geometry": {"type": "Point", "coordinates": [0.432385797938, 42.7301559382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903906b6b522b8d1c0713514490a6b79188939a1", "fields": {"nom_de_la_commune": "LOUIT", "libell_d_acheminement": "LOUIT", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65285"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ff6853a71e14e2f0dbfcb1120ced3c8d1f8214", "fields": {"nom_de_la_commune": "LOURDES", "libell_d_acheminement": "LOURDES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65286"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ac372d52b066a990e8e51e2c5662fc52650698", "fields": {"nom_de_la_commune": "LOURES BAROUSSE", "libell_d_acheminement": "LOURES BAROUSSE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65287"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd25d4a5529cde591f930bdbb1c3832bd139687", "fields": {"nom_de_la_commune": "LUZ ST SAUVEUR", "libell_d_acheminement": "LUZ ST SAUVEUR", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65295"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae8aebb159057b79bd1b117d28799b7aa9e5af8", "fields": {"nom_de_la_commune": "MINGOT", "libell_d_acheminement": "MINGOT", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65311"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db498027a63120b48154897d376ffe20a309aa06", "fields": {"nom_de_la_commune": "MONFAUCON", "libell_d_acheminement": "MONFAUCON", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65314"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5edcb4d5909338981f1d808922c9bbe916c89d1d", "fields": {"nom_de_la_commune": "MONLONG", "libell_d_acheminement": "MONLONG", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65316"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed76350d1d17c2aa2a646707f8b93b52744909e", "fields": {"nom_de_la_commune": "MONT", "libell_d_acheminement": "MONT", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65317"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2645f31eeffc1b9489874a39f2b4082fe15bedd0", "fields": {"nom_de_la_commune": "MONTSERIE", "libell_d_acheminement": "MONTSERIE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65323"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed43d764edc80dbb6bdbe5cb806f9eba709af76c", "fields": {"nom_de_la_commune": "NISTOS", "libell_d_acheminement": "NISTOS", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65329"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da4c3a15074f666e68c6edbb419bd9537a64bb1", "fields": {"nom_de_la_commune": "ORGAN", "libell_d_acheminement": "ORGAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65336"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a438ce11e874f1e93d093a7af0bd55c23a96dd0d", "fields": {"nom_de_la_commune": "OROIX", "libell_d_acheminement": "OROIX", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65341"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971da219123f7c878477acdf10e78e8c44055e6d", "fields": {"nom_de_la_commune": "OSSEN", "libell_d_acheminement": "OSSEN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65343"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218e61bcebf03ba33e672553161624744fed3a71", "fields": {"nom_de_la_commune": "OSSUN EZ ANGLES", "libell_d_acheminement": "OSSUN EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65345"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb843c2c861e2d39c0aa91e3795b96da69c816f1", "fields": {"nom_de_la_commune": "OUEILLOUX", "libell_d_acheminement": "OUEILLOUX", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65346"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6300adb6d037be00183ed55c287820b91579ea61", "fields": {"nom_de_la_commune": "OURSBELILLE", "libell_d_acheminement": "OURSBELILLE", "code_postal": "65490", "coordonnees_gps": [43.286290231, 0.0353926793618], "code_commune_insee": "65350"}, "geometry": {"type": "Point", "coordinates": [0.0353926793618, 43.286290231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9270efd2fa02cf654750d8e15086be7019b5df5f", "fields": {"nom_de_la_commune": "PERE", "libell_d_acheminement": "PERE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65356"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f505261f77cd7a9d42409ba84ce15607f0371156", "fields": {"nom_de_la_commune": "PEYRET ST ANDRE", "libell_d_acheminement": "PEYRET ST ANDRE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65358"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a18f0382a755eeaad552f2b4f79e82ce9cdeac8", "fields": {"nom_de_la_commune": "PINAS", "libell_d_acheminement": "PINAS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65363"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea911c1e3a164423037d3b97a2b46d31cae7242f", "fields": {"nom_de_la_commune": "POUYASTRUC", "libell_d_acheminement": "POUYASTRUC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65369"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6cc8577ef577c6e49efea0ea413653eb7ce11f", "fields": {"nom_de_la_commune": "PUYDARRIEUX", "libell_d_acheminement": "PUYDARRIEUX", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65374"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d154513cc9f322acff4955b511297571ed9a21b", "fields": {"nom_de_la_commune": "RABASTENS DE BIGORRE", "libell_d_acheminement": "RABASTENS DE BIGORRE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65375"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7bb738963d2217e1a292816fa7c0f4f222b661f", "fields": {"nom_de_la_commune": "ST LAURENT DE NESTE", "libell_d_acheminement": "ST LAURENT DE NESTE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65389"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48a6029fb787aa658bc5458af477bac51716c6b", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65392"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8d52f743e42589c9dde4d66d02ca7278a02371", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65396"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d386cd3ce80aa5c480578de4ac7ee9598a5aa1c4", "fields": {"nom_de_la_commune": "SAMURAN", "libell_d_acheminement": "SAMURAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65402"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c09cc9dcea9576d01bf5abd792725a5011caf13", "fields": {"nom_de_la_commune": "SARRIAC BIGORRE", "libell_d_acheminement": "SARRIAC BIGORRE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65409"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd07ca27892644a4b4a6fad87034c898d86e955c", "fields": {"nom_de_la_commune": "SAZOS", "libell_d_acheminement": "SAZOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65413"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "367cd37a16a075fab7c09b07f59e03de3c5c056d", "fields": {"nom_de_la_commune": "SIRADAN", "libell_d_acheminement": "SIRADAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65427"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a01e6a2460e9cbfa7d63632ff8a828abce7c129", "fields": {"nom_de_la_commune": "SIREIX", "libell_d_acheminement": "SIREIX", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65428"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7130ae319cc16c45e2b4a518b06b05fd48c74691", "fields": {"nom_de_la_commune": "SOMBRUN", "libell_d_acheminement": "SOMBRUN", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65429"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3798f3e8d7ff6be9b711a0a7d759e241bd81ec", "fields": {"nom_de_la_commune": "SOUBLECAUSE", "libell_d_acheminement": "SOUBLECAUSE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65432"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8159e5b974ac5afbd088f8abb3fd42e24b89a63b", "fields": {"nom_de_la_commune": "TALAZAC", "libell_d_acheminement": "TALAZAC", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65438"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519e685903fd84fb94fc66e7f367acc20019b201", "fields": {"nom_de_la_commune": "TARBES", "libell_d_acheminement": "TARBES", "code_postal": "65000", "coordonnees_gps": [43.2347029707, 0.0655253081546], "code_commune_insee": "65440"}, "geometry": {"type": "Point", "coordinates": [0.0655253081546, 43.2347029707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150780ba4359e972978fc2fa7c527d773682fa10", "fields": {"nom_de_la_commune": "TIBIRAN JAUNAC", "libell_d_acheminement": "TIBIRAN JAUNAC", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65444"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910c681341808171e8b6351c364e1ece5937ec2e", "fields": {"nom_de_la_commune": "TOURNOUS DARRE", "libell_d_acheminement": "TOURNOUS DARRE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65448"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9965f927a8a96505480c11324a66252b2f8a1e62", "fields": {"nom_de_la_commune": "TROULEY LABARTHE", "libell_d_acheminement": "TROULEY LABARTHE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65454"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1799969140be5e1ba55b30514a53ab38aaf81c5b", "fields": {"nom_de_la_commune": "UGNOUAS", "libell_d_acheminement": "UGNOUAS", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65457"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f251039d6ccb39a156dd634af9555e40dab52d70", "fields": {"nom_de_la_commune": "VIELLA", "libell_d_acheminement": "VIELLA", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65463"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087436cba764110822a4f08dfc752a34112119b4", "fields": {"nom_de_la_commune": "VIZOS", "libell_d_acheminement": "VIZOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65480"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52ec24a26c85446dce41e7222a22887a357407e", "fields": {"nom_de_la_commune": "BAGES", "libell_d_acheminement": "BAGES", "code_postal": "66670", "coordonnees_gps": [42.6078330352, 2.88931135373], "code_commune_insee": "66011"}, "geometry": {"type": "Point", "coordinates": [2.88931135373, 42.6078330352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66c092a2879dc333f9688fdcfeda76b44107764", "fields": {"nom_de_la_commune": "LA BASTIDE", "libell_d_acheminement": "LA BASTIDE", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66018"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413b5aebf55978502f02dc243909d1de533bcaae", "fields": {"nom_de_la_commune": "BELESTA", "libell_d_acheminement": "BELESTA", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66019"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a96919bb47111b8c49bc9178d4680b272b04e1", "fields": {"nom_de_la_commune": "BOMPAS", "libell_d_acheminement": "BOMPAS", "code_postal": "66430", "coordonnees_gps": [42.7284007923, 2.94233076648], "code_commune_insee": "66021"}, "geometry": {"type": "Point", "coordinates": [2.94233076648, 42.7284007923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9d541e62130e1e7a2c725e571d97fb34a1fec1", "fields": {"nom_de_la_commune": "LE BOULOU", "libell_d_acheminement": "LE BOULOU", "code_postal": "66160", "coordonnees_gps": [42.5266396924, 2.83155537764], "code_commune_insee": "66024"}, "geometry": {"type": "Point", "coordinates": [2.83155537764, 42.5266396924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708c415804ea3213499e3a6a479b9b4f695a8d31", "fields": {"nom_de_la_commune": "BOURG MADAME", "libell_d_acheminement": "BOURG MADAME", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66025"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "638f7848115357a699ae973a58a8554a34d9add4", "fields": {"nom_de_la_commune": "CARAMANY", "libell_d_acheminement": "CARAMANY", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66039"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7191297b0a74d4f097732d94dbf5e51b9b5951d", "fields": {"nom_de_la_commune": "COLLIOURE", "libell_d_acheminement": "COLLIOURE", "code_postal": "66190", "coordonnees_gps": [42.5131451113, 3.0728014531], "code_commune_insee": "66053"}, "geometry": {"type": "Point", "coordinates": [3.0728014531, 42.5131451113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b500c2c94ac5668207383f2308dacb2d1609599", "fields": {"nom_de_la_commune": "CORBERE LES CABANES", "libell_d_acheminement": "CORBERE LES CABANES", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66056"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117a80d39434f6219d7409089d318e7daa44818c", "fields": {"nom_de_la_commune": "EYNE", "libell_d_acheminement": "EYNE", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66075"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b7f8c577babc471c64aec7a79c992d25bf23920", "fields": {"nom_de_la_commune": "FELLUNS", "libell_d_acheminement": "FELLUNS", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66076"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a3a56a5f94b6253d81d332a51134a89228c9dc", "fields": {"nom_de_la_commune": "FONTRABIOUSE", "libell_d_acheminement": "FONTRABIOUSE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66081"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe737cec4dda333128a433b5e9fb49904698adf1", "fields": {"nom_de_la_commune": "LA LLAGONNE", "libell_d_acheminement": "LA LLAGONNE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66098"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53eda4adf21f9678c32b33cb56f827a84f74ff64", "fields": {"nom_de_la_commune": "MONTESQUIEU DES ALBERES", "libell_d_acheminement": "MONTESQUIEU DES ALBERES", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66115"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2ba80d210408d5c9cb1ec0ca0e09b7abf9e62c", "fields": {"nom_de_la_commune": "OMS", "libell_d_acheminement": "OMS", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66126"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826eac0ecb0174829cc32cd13d611a2b0b852e1d", "fields": {"nom_de_la_commune": "OPOUL PERILLOS", "libell_d_acheminement": "OPOUL PERILLOS", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66127"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f143995ec00ab6f9ae3d7329309959bd749668f5", "fields": {"nom_de_la_commune": "OSSEJA", "libell_d_acheminement": "OSSEJA", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66130"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f54084557e1f88e5296fe6f397915cca2f4e928", "fields": {"nom_de_la_commune": "PALAU DE CERDAGNE", "libell_d_acheminement": "PALAU DE CERDAGNE", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66132"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde0c2be3f9d7975f62610042168636e7ebc63fc", "fields": {"nom_de_la_commune": "PASSA", "libell_d_acheminement": "PASSA", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66134"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7113f19bd48bdd012d9f765931f7ad6d28825ddc", "fields": {"nom_de_la_commune": "PEYRESTORTES", "libell_d_acheminement": "PEYRESTORTES", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66138"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3055d19262a66badb83c7ab7b975de404c221eb1", "fields": {"nom_de_la_commune": "PLANES", "libell_d_acheminement": "PLANES", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66142"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1820d4501a5c971b5f8a5199fe127668811a2050", "fields": {"nom_de_la_commune": "PLANEZES", "libell_d_acheminement": "PLANEZES", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66143"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f49141411c2ea06ee1a603943557ec39a37e39", "fields": {"nom_de_la_commune": "PORTE PUYMORENS", "libell_d_acheminement": "PORTE PUYMORENS", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66147"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdcf723ee194b9b9b43cee7a0f19479f0e49e05", "fields": {"nom_de_la_commune": "PORT VENDRES", "libell_d_acheminement": "PORT VENDRES", "code_postal": "66660", "coordonnees_gps": [42.502711951, 3.10451027968], "code_commune_insee": "66148"}, "geometry": {"type": "Point", "coordinates": [3.10451027968, 42.502711951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a23e37b34d3c5d6cf2191909c801f75087cb71", "fields": {"nom_de_la_commune": "PRUGNANES", "libell_d_acheminement": "PRUGNANES", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66152"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6143583f4619a9996c7918e6c7ea0e2f25bfc2", "fields": {"nom_de_la_commune": "PRUNET ET BELPUIG", "libell_d_acheminement": "PRUNET ET BELPUIG", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66153"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bc1aa077534cbbd6b061d700918e22e06388d3", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "66690", "coordonnees_gps": [42.522189398, 2.97653046487], "code_commune_insee": "66168"}, "geometry": {"type": "Point", "coordinates": [2.97653046487, 42.522189398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c0aa89b2f61b2c8ed18cffdb11ab21c655faa1", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "66510", "coordonnees_gps": [42.8073026659, 2.97357958894], "code_commune_insee": "66176"}, "geometry": {"type": "Point", "coordinates": [2.97357958894, 42.8073026659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4453990057d398bc134154578ddb99d3fb2f74f4", "fields": {"nom_de_la_commune": "ST JEAN LASSEILLE", "libell_d_acheminement": "ST JEAN LASSEILLE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66177"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee02a7e6dca7c5c609d35d5e05d0ef222dd39c33", "fields": {"nom_de_la_commune": "ST LAURENT DE LA SALANQUE", "libell_d_acheminement": "ST LAURENT DE LA SALANQUE", "code_postal": "66250", "coordonnees_gps": [42.7935439901, 3.00175427886], "code_commune_insee": "66180"}, "geometry": {"type": "Point", "coordinates": [3.00175427886, 42.7935439901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c929dfbdc15540b189967fc99ac735f9a5db8738", "fields": {"nom_de_la_commune": "SANSA", "libell_d_acheminement": "SANSA", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66191"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d73c03d5e714cab657f14a70e1d9312bc522adb", "fields": {"nom_de_la_commune": "SOURNIA", "libell_d_acheminement": "SOURNIA", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66198"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d2d59e7f6d4102d688eb6387389dc9c33fc8db9", "fields": {"nom_de_la_commune": "TARGASSONNE", "libell_d_acheminement": "TARGASSONNE", "code_postal": "66120", "coordonnees_gps": [42.5100577993, 2.01893656435], "code_commune_insee": "66202"}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75491e2e2f532c014e66c0e3835401a7c6b0ed84", "fields": {"nom_de_la_commune": "TERRATS", "libell_d_acheminement": "TERRATS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66207"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8551518f34c75969912972338579d80ccf49f7a0", "fields": {"nom_de_la_commune": "THEZA", "libell_d_acheminement": "THEZA", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66208"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "debdc05d6ffb0ed3c3234d2a640bcf10902ffe74", "fields": {"nom_de_la_commune": "THUIR", "libell_d_acheminement": "THUIR", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66210"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e823e40583e5a53825521164756907c6eb83f59", "fields": {"nom_de_la_commune": "TRILLA", "libell_d_acheminement": "TRILLA", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66216"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf344b0ac349d9f9e8524a5399bd057957c066dd", "fields": {"nom_de_la_commune": "TROUILLAS", "libell_d_acheminement": "TROUILLAS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66217"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185b4fc5e46e9b0dd3b5f0b7a0bce69bfb8bbfca", "fields": {"nom_de_la_commune": "VALCEBOLLERE", "libell_d_acheminement": "VALCEBOLLERE", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66220"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865dc3caf78af6efa025b2bbf136e7567dcad87d", "fields": {"nom_de_la_commune": "VILLEMOLAQUE", "libell_d_acheminement": "VILLEMOLAQUE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66226"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a642e4084abfabde804ba018bb5b6b05462c1d", "fields": {"nom_de_la_commune": "RENNEPONT", "libell_d_acheminement": "RENNEPONT", "code_postal": "52370", "coordonnees_gps": [48.1346812321, 4.86216753048], "code_commune_insee": "52419"}, "geometry": {"type": "Point", "coordinates": [4.86216753048, 48.1346812321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d74d07defc8b847eafb255a17e4b7202510a75c", "fields": {"nom_de_la_commune": "RIAUCOURT", "libell_d_acheminement": "RIAUCOURT", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52421"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3740e5cca3478488b14f4ebad368192c32cbeca6", "fields": {"nom_de_la_commune": "RIMAUCOURT", "libell_d_acheminement": "RIMAUCOURT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52423"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5a1ad3661241bf4fdabe49e570253780025ff9", "fields": {"nom_de_la_commune": "RIVIERE LES FOSSES", "libell_d_acheminement": "RIVIERE LES FOSSES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52425"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8c233afeeedbadd16c324cba3d1984bf8a7dff", "fields": {"nom_de_la_commune": "ROCHETAILLEE", "libell_d_acheminement": "ROCHETAILLEE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52431"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45da7f64c5f50886628f41ca4734dbb52108c9e1", "fields": {"code_postal": "52260", "code_commune_insee": "52432", "libell_d_acheminement": "ROLAMPONT", "ligne_5": "LANNES", "nom_de_la_commune": "ROLAMPONT", "coordonnees_gps": [47.9429449859, 5.2580157459]}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910a1e301d2e06784ea5fc91ea10f951c12cbd52", "fields": {"nom_de_la_commune": "ROUECOURT", "libell_d_acheminement": "ROUECOURT", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52436"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d143940e8406bc1043a0e177a7e22165bca652ff", "fields": {"nom_de_la_commune": "ROUVRES SUR AUBE", "libell_d_acheminement": "ROUVRES SUR AUBE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52439"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70e22572576cc56621ef8214cdf2e23db1960d8", "fields": {"nom_de_la_commune": "ST BLIN", "libell_d_acheminement": "ST BLIN", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52444"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26bf5794d4394d0bee19d53cd527c21fd5d96841", "fields": {"code_postal": "52300", "code_commune_insee": "52456", "libell_d_acheminement": "ST URBAIN MACONCOURT", "ligne_5": "MACONCOURT", "nom_de_la_commune": "ST URBAIN MACONCOURT", "coordonnees_gps": [48.4374713855, 5.14251151909]}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ee6fc1fb2c552ddb1445cfbbc2ede4babe94ff", "fields": {"nom_de_la_commune": "ST VALLIER SUR MARNE", "libell_d_acheminement": "ST VALLIER SUR MARNE", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52457"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6578fa0910867efbdd2a6937598d44a1cf3379eb", "fields": {"nom_de_la_commune": "SARCEY", "libell_d_acheminement": "SARCEY", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52459"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9ba4e97ffa82db7aa3d29ca84f4d654a86a365", "fields": {"nom_de_la_commune": "SAUDRON", "libell_d_acheminement": "SAUDRON", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52463"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e735ea0332e9aaf017a543b8e157087a57d32722", "fields": {"nom_de_la_commune": "SEMILLY", "libell_d_acheminement": "SEMILLY", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52468"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a945688a1f4d7e99e62e88842707e696f1b9d9", "fields": {"nom_de_la_commune": "SOYERS", "libell_d_acheminement": "SOYERS", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52483"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9a06513a2c895bd4deeb8ea10c0ff60b03cbdc", "fields": {"nom_de_la_commune": "THIVET", "libell_d_acheminement": "THIVET", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52488"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de7875aa0c43b40146832589099c7c109fc88b2", "fields": {"code_postal": "52230", "code_commune_insee": "52491", "libell_d_acheminement": "THONNANCE LES MOULINS", "ligne_5": "SOULAINCOURT", "nom_de_la_commune": "THONNANCE LES MOULINS", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c0ed76092d4729ce76a868742653f1bfb31858", "fields": {"nom_de_la_commune": "TREIX", "libell_d_acheminement": "TREIX", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52494"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dab4a8c655ea9b22ef39c96e593d49cdad771f5", "fields": {"nom_de_la_commune": "VERSEILLES LE BAS", "libell_d_acheminement": "VERSEILLES LE BAS", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52515"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4dbf5f25409c529c9b66dabc110f9b9dec1220", "fields": {"nom_de_la_commune": "VILLARS EN AZOIS", "libell_d_acheminement": "VILLARS EN AZOIS", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52525"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14e5789ed2cf11fec627df14058f883d275514a", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52535"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef267f6d81bf51f65f2f5536cefec012ac09f7a8", "fields": {"nom_de_la_commune": "VIVEY", "libell_d_acheminement": "VIVEY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52542"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d8092242f4a693a14bee9430f9d3dec4625df8", "fields": {"nom_de_la_commune": "VOILLECOMTE", "libell_d_acheminement": "VOILLECOMTE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52543"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4014f0c8bf30a895c0f5f2e932dfc9374a1d58", "fields": {"nom_de_la_commune": "VOISEY", "libell_d_acheminement": "VOISEY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52544"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8732024f8eb8036411759740f1dcc9335ef5f9b", "fields": {"code_postal": "52400", "code_commune_insee": "52544", "libell_d_acheminement": "VOISEY", "ligne_5": "VAUX LA DOUCE", "nom_de_la_commune": "VOISEY", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725412fbed7dfbc55eb55baba7ed9d3e6b6e47d9", "fields": {"nom_de_la_commune": "AMBRIERES LES VALLEES", "libell_d_acheminement": "AMBRIERES LES VALLEES", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53003"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1327f2d5fe871498ced780663a9c76becaf81aca", "fields": {"nom_de_la_commune": "ANDOUILLE", "libell_d_acheminement": "ANDOUILLE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53005"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64346c1d1b3cd56a0e9d7b4c74fd91e952192ee", "fields": {"nom_de_la_commune": "ARON", "libell_d_acheminement": "ARON", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53008"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7486a08f80962c2dd96911a14e1e4d444922307a", "fields": {"nom_de_la_commune": "AZE", "libell_d_acheminement": "AZE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53014"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1456c6958fdc3bcd24fc83484e483239488d666", "fields": {"nom_de_la_commune": "LA BACONNIERE", "libell_d_acheminement": "LA BACONNIERE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53015"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ac20424b9c3e41fc56cc1f380ed7006410804f", "fields": {"nom_de_la_commune": "BLANDOUET", "libell_d_acheminement": "BLANDOUET", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53032"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61116e2be751cbae477e04115932e08f227deb1d", "fields": {"nom_de_la_commune": "CHALONS DU MAINE", "libell_d_acheminement": "CHALONS DU MAINE", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53049"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28b4e8c6243cf50b1c92428d45db70cf2726ee8", "fields": {"nom_de_la_commune": "CHAMPGENETEUX", "libell_d_acheminement": "CHAMPGENETEUX", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53053"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49d0fdb89d544de770737e0b640fadc3cc8326a", "fields": {"nom_de_la_commune": "CHEMERE LE ROI", "libell_d_acheminement": "CHEMERE LE ROI", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53067"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de39271ad08965d0e31759c42cbff19b93731da8", "fields": {"nom_de_la_commune": "COSMES", "libell_d_acheminement": "COSMES", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53075"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219a3f8580d3fc052576d354e97d3cb15b644d28", "fields": {"nom_de_la_commune": "COUDRAY", "libell_d_acheminement": "COUDRAY", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53078"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af911cff0165c002e7d0b19a7a19043bdb8d90dc", "fields": {"nom_de_la_commune": "COUESMES VAUCE", "libell_d_acheminement": "COUESMES VAUCE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53079"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471554a63df28fd1f251adc0f685cfe028ede984", "fields": {"code_postal": "53300", "code_commune_insee": "53079", "libell_d_acheminement": "COUESMES VAUCE", "ligne_5": "VAUCE", "nom_de_la_commune": "COUESMES VAUCE", "coordonnees_gps": [48.4002685671, -0.643929114886]}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a09f378d3f01e850240a790a768d0b620ecda00", "fields": {"nom_de_la_commune": "DAON", "libell_d_acheminement": "DAON", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53089"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9d84503ba5976d3107bba6969e960b9d293a10", "fields": {"nom_de_la_commune": "DENAZE", "libell_d_acheminement": "DENAZE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53090"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31250edcef2932eed245072fb65927df3229285b", "fields": {"code_postal": "53940", "code_commune_insee": "53103", "libell_d_acheminement": "LE GENEST ST ISLE", "ligne_5": "ST ISLE", "nom_de_la_commune": "LE GENEST ST ISLE", "coordonnees_gps": [48.0612320187, -0.86717945825]}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc18d1d1a9713d54852ade3789c5494c06e9b01e", "fields": {"nom_de_la_commune": "GENNES SUR GLAIZE", "libell_d_acheminement": "GENNES SUR GLAIZE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53104"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e11975ec1288a721eb50562494d3b0154ac732", "fields": {"nom_de_la_commune": "HOUSSAY", "libell_d_acheminement": "HOUSSAY", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53117"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241763d87a6586508c83c084a3d0c908a3039b86", "fields": {"code_postal": "53110", "code_commune_insee": "53118", "libell_d_acheminement": "LE HOUSSEAU BRETIGNOLLES", "ligne_5": "BRETIGNOLLES LE MOULIN", "nom_de_la_commune": "LE HOUSSEAU BRETIGNOLLES", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecdcd11881e1e725cc5d49f056f6b92a46732e16", "fields": {"nom_de_la_commune": "JAVRON LES CHAPELLES", "libell_d_acheminement": "JAVRON LES CHAPELLES", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53121"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba1050086d33b44d7a75bb032dbe356418bb09c", "fields": {"nom_de_la_commune": "JUVIGNE", "libell_d_acheminement": "JUVIGNE", "code_postal": "53380", "coordonnees_gps": [48.2253517545, -1.00061376372], "code_commune_insee": "53123"}, "geometry": {"type": "Point", "coordinates": [-1.00061376372, 48.2253517545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9efbdf6b133382176c305d6d18749c6ce283813", "fields": {"code_postal": "53110", "code_commune_insee": "53127", "libell_d_acheminement": "LASSAY LES CHATEAUX", "ligne_5": "MELLERAY LA VALLEE", "nom_de_la_commune": "LASSAY LES CHATEAUX", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee294fb29f89efc55ce0d59c40ca88e3878d6f49", "fields": {"nom_de_la_commune": "LIVET", "libell_d_acheminement": "LIVET", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53134"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62fd72e6d76bd6a8dfac38b2cf0cce75e957b16", "fields": {"nom_de_la_commune": "LIVRE LA TOUCHE", "libell_d_acheminement": "LIVRE LA TOUCHE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53135"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0905edb510592b2ba24ee217072bd7e727449104", "fields": {"nom_de_la_commune": "LOIRON RUILLE", "libell_d_acheminement": "LOIRON RUILLE", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53137"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5afc04014f0998e04b6ecbdbc965a0cd91ea848", "fields": {"nom_de_la_commune": "MADRE", "libell_d_acheminement": "MADRE", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53142"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6512108566c886a8d077bf48166a5b722208f5e", "fields": {"nom_de_la_commune": "MEE", "libell_d_acheminement": "MEE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53148"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4a09ff29e1eca8595947c6b94c22d989f97c65", "fields": {"nom_de_la_commune": "MESLAY DU MAINE", "libell_d_acheminement": "MESLAY DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53152"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ccf727996af7fc4260cda3157dc3fed6844137", "fields": {"nom_de_la_commune": "MONTSURS", "libell_d_acheminement": "MONTSURS", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53161"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a123099fefff50bfda3b79f1e85860c5b306b48", "fields": {"nom_de_la_commune": "OLIVET", "libell_d_acheminement": "OLIVET", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53169"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed1b221cd426b911056a6a3de38e6a6e85d3574", "fields": {"nom_de_la_commune": "PONTMAIN", "libell_d_acheminement": "PONTMAIN", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53181"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7cf97bb0d566c58783d1427b8c97ae3c5af396", "fields": {"nom_de_la_commune": "PRE EN PAIL ST SAMSON", "libell_d_acheminement": "PRE EN PAIL ST SAMSON", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53185"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "403caa679c165ffc30bb7d47ae32ba727e17e918", "fields": {"nom_de_la_commune": "RENAZE", "libell_d_acheminement": "RENAZE", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53188"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f5c27518ef7d512998c9806d979e2558c259cf", "fields": {"nom_de_la_commune": "LE RIBAY", "libell_d_acheminement": "LE RIBAY", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53190"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737d90f70d12cf167fbbb4906114423ca1cd9de0", "fields": {"nom_de_la_commune": "RUILLE FROID FONDS", "libell_d_acheminement": "RUILLE FROID FONDS", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53193"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1682c7df3e167487662ae8597058ada3fc6f4028", "fields": {"nom_de_la_commune": "SACE", "libell_d_acheminement": "SACE", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53195"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6a09728aaeaf5f86d33de15850da80e1f4d05f", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53203"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0517c4e7fb90b5e33ec6b346a6bd0f3e5fc1de", "fields": {"nom_de_la_commune": "ST CENERE", "libell_d_acheminement": "ST CENERE", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53205"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2369a1d2ed248c32292421761bfd60f2c51b5a00", "fields": {"nom_de_la_commune": "ST CHARLES LA FORET", "libell_d_acheminement": "ST CHARLES LA FORET", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53206"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9e2660b270bfcf5759426ada4b37b73ac53bc7", "fields": {"nom_de_la_commune": "ST DENIS D ANJOU", "libell_d_acheminement": "ST DENIS D ANJOU", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53210"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caebf41ca3584c54ecda126926b4542bb8eccc2c", "fields": {"nom_de_la_commune": "ST FRAIMBAULT DE PRIERES", "libell_d_acheminement": "ST FRAIMBAULT DE PRIERES", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53216"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ef824aad513daf0dddc999583990ea96a479b3", "fields": {"nom_de_la_commune": "STE GEMMES LE ROBERT", "libell_d_acheminement": "STE GEMMES LE ROBERT", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53218"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3914760a90c9a2d1e4d012a4ddb4304e55b71195", "fields": {"code_postal": "53100", "code_commune_insee": "53219", "libell_d_acheminement": "ST GEORGES BUTTAVENT", "ligne_5": "FONTAINE DANIEL", "nom_de_la_commune": "ST GEORGES BUTTAVENT", "coordonnees_gps": [48.3036155584, -0.694747095996]}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcdd7159c03b6e5cb7974098288de12c96dc7e7a", "fields": {"nom_de_la_commune": "ST GEORGES LE FLECHARD", "libell_d_acheminement": "ST GEORGES LE FLECHARD", "code_postal": "53480", "coordonnees_gps": [48.0582603543, -0.470360797173], "code_commune_insee": "53220"}, "geometry": {"type": "Point", "coordinates": [-0.470360797173, 48.0582603543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74b99213965be2e99fe44926debae505d404137", "fields": {"nom_de_la_commune": "ST MICHEL DE FEINS", "libell_d_acheminement": "ST MICHEL DE FEINS", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53241"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b64ec24ce37839cbc0c702a2a163d0d45e77144", "fields": {"nom_de_la_commune": "ST PIERRE SUR ORTHE", "libell_d_acheminement": "ST PIERRE SUR ORTHE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53249"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99ffeb540d48f68c9268de7ab7143dfce585040", "fields": {"nom_de_la_commune": "ST QUENTIN LES ANGES", "libell_d_acheminement": "ST QUENTIN LES ANGES", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53251"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e98d44d93ee7d9c34c966c0aa3854af72cef887f", "fields": {"nom_de_la_commune": "STE SUZANNE ET CHAMMES", "libell_d_acheminement": "STE SUZANNE ET CHAMMES", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53255"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290a7ca030437a416a14732d0d96ca14f82ec3a2", "fields": {"nom_de_la_commune": "SAULGES", "libell_d_acheminement": "SAULGES", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53257"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b4cb3c80bc8cb58aa1393899e348b495aa33da", "fields": {"nom_de_la_commune": "THUBOEUF", "libell_d_acheminement": "THUBOEUF", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53263"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1c059aeafed25b509a4fd310b7960934fe0edc", "fields": {"nom_de_la_commune": "AGINCOURT", "libell_d_acheminement": "AGINCOURT", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54006"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea09dc736e3708b4b964ab42b14b33e337e2a39c", "fields": {"nom_de_la_commune": "ANDERNY", "libell_d_acheminement": "ANDERNY", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54015"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492c7a0618fbe859c7459b7ec55714ca356dbf5f", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54016"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5e10d9a5b1cad8dc9e359e91d0ee470c3a0814", "fields": {"nom_de_la_commune": "ATHIENVILLE", "libell_d_acheminement": "ATHIENVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54026"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7afe23b9ebb980d8bfe148ef4c3170d1a695ef3", "fields": {"nom_de_la_commune": "AUTREVILLE SUR MOSELLE", "libell_d_acheminement": "AUTREVILLE SUR MOSELLE", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54031"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd7db06cc1f7695b5dfda3ff401ab0f3fbfcdb9", "fields": {"nom_de_la_commune": "AZERAILLES", "libell_d_acheminement": "AZERAILLES", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54038"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c610afd8eb0a8cd3e7fefd3b0233b9550d0661", "fields": {"nom_de_la_commune": "BASLIEUX", "libell_d_acheminement": "BASLIEUX", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54049"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8761d08d5397a983bea93a6c17df39112b8b2e8c", "fields": {"nom_de_la_commune": "BAUZEMONT", "libell_d_acheminement": "BAUZEMONT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54053"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14671a33110ea381ca4b4ff242665ff5e598bc13", "fields": {"nom_de_la_commune": "BAZAILLES", "libell_d_acheminement": "BAZAILLES", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54056"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2845baab08e94e1e7a3bce07bf75eb462b376b", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "MOREY", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b94600757284541ffe6d102ba7331dfeede38d", "fields": {"nom_de_la_commune": "BEUVEZIN", "libell_d_acheminement": "BEUVEZIN", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54068"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f576ff95828c1542e699eae436ee8bc693512ec3", "fields": {"nom_de_la_commune": "BEZAUMONT", "libell_d_acheminement": "BEZAUMONT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54072"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8d9c5820feb89d36e7c1289a5404d62a1edc66", "fields": {"nom_de_la_commune": "BICQUELEY", "libell_d_acheminement": "BICQUELEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54073"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d94199216b2049930db0b34310134216ee1291", "fields": {"nom_de_la_commune": "BIONVILLE", "libell_d_acheminement": "BIONVILLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54075"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6b9f73217f9425c1deab7f0ad639c652340b5a", "fields": {"nom_de_la_commune": "BOUCQ", "libell_d_acheminement": "BOUCQ", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54086"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5667d4017398bdc8c98d16e3303634d8bd60fb30", "fields": {"nom_de_la_commune": "BOUXIERES SOUS FROIDMONT", "libell_d_acheminement": "BOUXIERES SOUS FROIDMONT", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54091"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6a306325f61c4f6be8defc9dc8a84ec464d2b8", "fields": {"nom_de_la_commune": "BRALLEVILLE", "libell_d_acheminement": "BRALLEVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54094"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b98b162bbf153a80aab2ad986b09efbbf4ab558", "fields": {"nom_de_la_commune": "BURTHECOURT AUX CHENES", "libell_d_acheminement": "BURTHECOURT AUX CHENES", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54108"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eea039dec096ac276cb66c8b30f8e0bca4ea32d", "fields": {"nom_de_la_commune": "CHAMBLEY BUSSIERES", "libell_d_acheminement": "CHAMBLEY BUSSIERES", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54112"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "950cc5cdbce9b5c14b123c86f5289dcf4c7c816a", "fields": {"nom_de_la_commune": "CHENIERES", "libell_d_acheminement": "CHENIERES", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54127"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca48fd0804d6ac2917793632c3c485e68173ffd0", "fields": {"nom_de_la_commune": "COLMEY", "libell_d_acheminement": "COLMEY", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54134"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfda59bea8c309a16f3d4974b55c1537baa5d52", "fields": {"nom_de_la_commune": "CROISMARE", "libell_d_acheminement": "CROISMARE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54148"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28db11034676fc7c7e06032d7eb450fcf9bffa4a", "fields": {"nom_de_la_commune": "DOLCOURT", "libell_d_acheminement": "DOLCOURT", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54158"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3743231de041f5ce8763cb83c17979fea4a48e66", "fields": {"nom_de_la_commune": "DOMJEVIN", "libell_d_acheminement": "DOMJEVIN", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54163"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ced68430f84fabfa9135530f0e5fd314289653", "fields": {"nom_de_la_commune": "DOMMARTEMONT", "libell_d_acheminement": "DOMMARTEMONT", "code_postal": "54130", "coordonnees_gps": [48.7101644321, 6.209548924], "code_commune_insee": "54165"}, "geometry": {"type": "Point", "coordinates": [6.209548924, 48.7101644321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ede06eb0627d54e4839d89d2bca2a1fa09c51d", "fields": {"nom_de_la_commune": "ST ONDRAS", "libell_d_acheminement": "ST ONDRAS", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38434"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd131bf1adc0a616a55c477384ab876d13b796fc", "fields": {"nom_de_la_commune": "ST PAUL DE VARCES", "libell_d_acheminement": "ST PAUL DE VARCES", "code_postal": "38760", "coordonnees_gps": [45.0790840767, 5.65520915705], "code_commune_insee": "38436"}, "geometry": {"type": "Point", "coordinates": [5.65520915705, 45.0790840767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77f44fc2c2153825039412d829b9c33f87ce396", "fields": {"nom_de_la_commune": "ST PAUL LES MONESTIER", "libell_d_acheminement": "ST PAUL LES MONESTIER", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38438"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f50b035ab494a6858236d564c7e4ddb8898497", "fields": {"code_postal": "38830", "code_commune_insee": "38439", "libell_d_acheminement": "CRETS EN BELLEDONNE", "ligne_5": "ST PIERRE D ALLEVARD", "nom_de_la_commune": "CRETS EN BELLEDONNE", "coordonnees_gps": [45.3570790479, 6.0451117626]}, "geometry": {"type": "Point", "coordinates": [6.0451117626, 45.3570790479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f10cb36fff4c9a7c7bc364bbea90d02af63cbdb", "fields": {"nom_de_la_commune": "ST PIERRE D ENTREMONT", "libell_d_acheminement": "ST PIERRE D ENTREMONT", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38446"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9677f417feb3ac91d3f35377b0e5563e21499b4", "fields": {"nom_de_la_commune": "ST PRIM", "libell_d_acheminement": "ST PRIM", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38448"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cafd8f2b144d5204d02c4a61732609326c48097", "fields": {"nom_de_la_commune": "ST QUENTIN SUR ISERE", "libell_d_acheminement": "ST QUENTIN SUR ISERE", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38450"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a4933de37e689fca35dee31f040e9b44f40fd6", "fields": {"nom_de_la_commune": "ST SULPICE DES RIVOIRES", "libell_d_acheminement": "ST SULPICE DES RIVOIRES", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38460"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee8583279e952d6edf01daba29037a94e67fa02", "fields": {"nom_de_la_commune": "ST VINCENT DE MERCUZE", "libell_d_acheminement": "ST VINCENT DE MERCUZE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38466"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9ce98b1841a0659de5c39e30662890fa69ee1b7", "fields": {"nom_de_la_commune": "SECHILIENNE", "libell_d_acheminement": "SECHILIENNE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38478"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b306a64fa1e0a9ec393ed76978e6ca2824fdbf6e", "fields": {"nom_de_la_commune": "SEMONS", "libell_d_acheminement": "SEMONS", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38479"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72271e7145b6171cd8057f86e7be8eef14d1beff", "fields": {"nom_de_la_commune": "SINARD", "libell_d_acheminement": "SINARD", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38492"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "758208e9d70d8cbf807bf84ed8ccf8e3a17ecdc1", "fields": {"nom_de_la_commune": "TIGNIEU JAMEYZIEU", "libell_d_acheminement": "TIGNIEU JAMEYZIEU", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38507"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7d635b462b58b99564b82175b9181780cdf0cb", "fields": {"nom_de_la_commune": "TREPT", "libell_d_acheminement": "TREPT", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38515"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a05ddd6f282fbe502c99e811a419bc12c1dd97a", "fields": {"code_postal": "38210", "code_commune_insee": "38517", "libell_d_acheminement": "TULLINS", "ligne_5": "FURES", "nom_de_la_commune": "TULLINS", "coordonnees_gps": [45.270292441, 5.50879408313]}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af063bae9c3f0c797c55a26453999d57325e8f6", "fields": {"nom_de_la_commune": "VALJOUFFREY", "libell_d_acheminement": "VALJOUFFREY", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38522"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a33300542f00f2ff542113ac9729322eda8128", "fields": {"nom_de_la_commune": "VAUJANY", "libell_d_acheminement": "VAUJANY", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38527"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3b623ec90c3816b10140130827fec9ca7e8dcc", "fields": {"nom_de_la_commune": "VAULNAVEYS LE BAS", "libell_d_acheminement": "VAULNAVEYS LE BAS", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38528"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06147faff34d0361d90359e81befe19786e90b74", "fields": {"nom_de_la_commune": "VAULNAVEYS LE HAUT", "libell_d_acheminement": "VAULNAVEYS LE HAUT", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38529"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6711c36b2c6ac61a0abccff43726f2715b537996", "fields": {"nom_de_la_commune": "VELANNE", "libell_d_acheminement": "VELANNE", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38531"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ae9eb86b0cbeef58a9594e0bae95fb64b0eb93f", "fields": {"nom_de_la_commune": "VENERIEU", "libell_d_acheminement": "VENERIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38532"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410e782b6b0e6923090f50a879a14a8c7d91e367", "fields": {"code_postal": "38860", "code_commune_insee": "38534", "libell_d_acheminement": "VENOSC", "ligne_5": "LES DEUX ALPES", "nom_de_la_commune": "VENOSC", "coordonnees_gps": [44.994660373, 6.12322203081]}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8907287e23085ef983bdbe012c5d0658ea787d0", "fields": {"nom_de_la_commune": "VILLARD ST CHRISTOPHE", "libell_d_acheminement": "VILLARD ST CHRISTOPHE", "code_postal": "38119", "coordonnees_gps": [44.9763278291, 5.79332397715], "code_commune_insee": "38552"}, "geometry": {"type": "Point", "coordinates": [5.79332397715, 44.9763278291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd8fe78cd2f486ee0ad09b829793471c712754c", "fields": {"nom_de_la_commune": "VILLETTE DE VIENNE", "libell_d_acheminement": "VILLETTE DE VIENNE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38558"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25865f0f4875aae6287e6120379454db00e9e3e4", "fields": {"nom_de_la_commune": "VOUREY", "libell_d_acheminement": "VOUREY", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38566"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aeb57db888a5478c3a2e05411dd9537bca32a04", "fields": {"nom_de_la_commune": "ANNOIRE", "libell_d_acheminement": "ANNOIRE", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39011"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd0d86ca59ac7f9116efb980b453c080853a7c5", "fields": {"nom_de_la_commune": "ARBOIS", "libell_d_acheminement": "ARBOIS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39013"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd7155c9210b9af16fd42d16c6fd7951307bd1b", "fields": {"code_postal": "39270", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "ARTHENAS", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54def8a4a2adf5cfc2851208832f8f756cfc78a6", "fields": {"nom_de_la_commune": "AUXANGE", "libell_d_acheminement": "AUXANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39031"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ce88d921b4b25fb63d27e4e2b003fda8b4bc4a", "fields": {"nom_de_la_commune": "BARESIA SUR L AIN", "libell_d_acheminement": "BARESIA SUR L AIN", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39038"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0be39ab25937b58745ac5c9c02d149ca01d921c", "fields": {"nom_de_la_commune": "BAVERANS", "libell_d_acheminement": "BAVERANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39042"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfac9c60b01bc485cf0a9a2e5689cda20d81a1c7", "fields": {"nom_de_la_commune": "BOISSIA", "libell_d_acheminement": "BOISSIA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39061"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcf6f13e9b3f6250677487be8d99b103b1e3193", "fields": {"nom_de_la_commune": "BONLIEU", "libell_d_acheminement": "BONLIEU", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39063"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadbfadebf536e9973178f35478e0aa9b9d73e53", "fields": {"nom_de_la_commune": "BONNEFONTAINE", "libell_d_acheminement": "BONNEFONTAINE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39065"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab058fc21e8fa046e343c596f7ae6250a8a7d0e1", "fields": {"nom_de_la_commune": "BORNAY", "libell_d_acheminement": "BORNAY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39066"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec0d67eb1b1a90e5d33c99bfa832fe2c3f0a0b3", "fields": {"nom_de_la_commune": "LES BOUCHOUX", "libell_d_acheminement": "LES BOUCHOUX", "code_postal": "39370", "coordonnees_gps": [46.2916662197, 5.82108544834], "code_commune_insee": "39068"}, "geometry": {"type": "Point", "coordinates": [5.82108544834, 46.2916662197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9ec937ecaed400e6e3091ba9cba09111e2d75a1", "fields": {"nom_de_la_commune": "BRERY", "libell_d_acheminement": "BRERY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39075"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d36f557bcad37fe4bf5c07edad954353fd2862", "fields": {"nom_de_la_commune": "CERNIEBAUD", "libell_d_acheminement": "CERNIEBAUD", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39085"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414b4b3d15e97e692af3632662a86f428d35ad50", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR FURIEUSE", "libell_d_acheminement": "LA CHAPELLE SUR FURIEUSE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39103"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45646f5c9d5dd6e5b30ed1af144ab72f6cff5750", "fields": {"nom_de_la_commune": "CHARCIER", "libell_d_acheminement": "CHARCIER", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39107"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fa34aefad242191369542b68e41d31e404c069", "fields": {"nom_de_la_commune": "LA CHASSAGNE", "libell_d_acheminement": "LA CHASSAGNE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39112"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509e80e1f735914c1c70c7b1440af29d003bd874", "fields": {"nom_de_la_commune": "LA CHATELAINE", "libell_d_acheminement": "LA CHATELAINE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39116"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74a8732422ef1c368282ffa1b5b3d9a0b97e1cf", "fields": {"nom_de_la_commune": "CHATEL DE JOUX", "libell_d_acheminement": "CHATEL DE JOUX", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39118"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889f5c86e1f311a87d58c750e1be6163f62b1f75", "fields": {"nom_de_la_commune": "CHAUMERGY", "libell_d_acheminement": "CHAUMERGY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39124"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe438d7a1340e05924d4b0ac888d5038d2366fb", "fields": {"nom_de_la_commune": "CHAUSSENANS", "libell_d_acheminement": "CHAUSSENANS", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39127"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5102296d7a5c5eebb54f7a50c8f84f07c530a82", "fields": {"nom_de_la_commune": "CHEMILLA", "libell_d_acheminement": "CHEMILLA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39137"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d80dd1e426213a983bcd954a93209fc2d6511572", "fields": {"nom_de_la_commune": "CHEVREAUX", "libell_d_acheminement": "CHEVREAUX", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39142"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32041f4f3fd1d502a0ff96170b628dc16359116", "fields": {"nom_de_la_commune": "CHILLY SUR SALINS", "libell_d_acheminement": "CHILLY SUR SALINS", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39147"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efb8b4b71ea5cfb3848f2115832539c50c6a1e2", "fields": {"nom_de_la_commune": "CIZE", "libell_d_acheminement": "CIZE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39153"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad9f7a3eaf73e577da9d1d0e03c416448fe71bc", "fields": {"nom_de_la_commune": "CLAIRVAUX LES LACS", "libell_d_acheminement": "CLAIRVAUX LES LACS", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39154"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5c184a21b6f4b57dea48a3891ff61806e552d9", "fields": {"nom_de_la_commune": "COGNA", "libell_d_acheminement": "COGNA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39156"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1450adf54b328de071d9da09c8c3146ecd4f39b", "fields": {"nom_de_la_commune": "COMMENAILLES", "libell_d_acheminement": "COMMENAILLES", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39160"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76c5f518c3c0f3099a9ae6b717a7ce5033d540a", "fields": {"nom_de_la_commune": "CONLIEGE", "libell_d_acheminement": "CONLIEGE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39164"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd3c1028f9fec76b15916d869513f631ef15d93", "fields": {"nom_de_la_commune": "CONTE", "libell_d_acheminement": "CONTE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39165"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7b9334df130d6af3dade21f0279c9a010573e5", "fields": {"nom_de_la_commune": "CRESSIA", "libell_d_acheminement": "CRESSIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39180"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1180fc60dba7990d178777330d7e22508b4e6a5e", "fields": {"nom_de_la_commune": "CRISSEY", "libell_d_acheminement": "CRISSEY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39182"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f844bf8868629c6903c5011f4c2c3285daa53c", "fields": {"nom_de_la_commune": "CUTTURA", "libell_d_acheminement": "CUTTURA", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39186"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82d0eb23cb92f20f37b7e4abc6ef53ec96c4030c", "fields": {"nom_de_la_commune": "CUVIER", "libell_d_acheminement": "CUVIER", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39187"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b085213ad4da32d16359bee30e224a39428048", "fields": {"code_postal": "39290", "code_commune_insee": "39188", "libell_d_acheminement": "DAMMARTIN MARPAIN", "ligne_5": "MARPAIN", "nom_de_la_commune": "DAMMARTIN MARPAIN", "coordonnees_gps": [47.2159380749, 5.52780674218]}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385318d22e4ee3f61402db0fddf3adc358095939", "fields": {"nom_de_la_commune": "LES DEUX FAYS", "libell_d_acheminement": "LES DEUX FAYS", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39196"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2c929c9d22f0b4b07bccf0fe38843bee1f3c2f", "fields": {"nom_de_la_commune": "DOLE", "libell_d_acheminement": "DOLE", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39198"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16caea7d4606ce19f4b35a89bf8b043c43ed5f3", "fields": {"nom_de_la_commune": "DOMBLANS", "libell_d_acheminement": "DOMBLANS", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39199"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c907f984c2a98c59aad2ad1a9288080e85094ca8", "fields": {"nom_de_la_commune": "DOYE", "libell_d_acheminement": "DOYE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39203"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1e67f0ac17cee4b1214cfadbb5c6ec0d5fe7c8", "fields": {"nom_de_la_commune": "DRAMELAY", "libell_d_acheminement": "DRAMELAY", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39204"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a712bc899a63f821973791f51574695fe5d3db", "fields": {"nom_de_la_commune": "ECRILLE", "libell_d_acheminement": "ECRILLE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39207"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6089aaf00d608243b5abeee23ae4158ad082d99", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "SENAUD", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e20b3b8f83381b1bec308a68df4bfe8b06c1028", "fields": {"nom_de_la_commune": "L ETOILE", "libell_d_acheminement": "L ETOILE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39217"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8766cc794e5fc6d65cb331c29532b03f7911278f", "fields": {"nom_de_la_commune": "LA FERTE", "libell_d_acheminement": "LA FERTE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39223"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64da445e05d2c970725afe2742c4dfbc5f9dffb1", "fields": {"nom_de_la_commune": "FOUCHERANS", "libell_d_acheminement": "FOUCHERANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39233"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f5d7732cc8f10e999a56df509404db3f3fe53c", "fields": {"nom_de_la_commune": "GENDREY", "libell_d_acheminement": "GENDREY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39246"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e930351fec5b41672a689e4b685ff1131e17a75", "fields": {"nom_de_la_commune": "GERAISE", "libell_d_acheminement": "GERAISE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39248"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575c9db7b5542e582d48f54c759b121605d2f609", "fields": {"nom_de_la_commune": "GERUGE", "libell_d_acheminement": "GERUGE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39250"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fece50853d790340f2bbf1f2f239ac00ae37176", "fields": {"nom_de_la_commune": "GIGNY", "libell_d_acheminement": "GIGNY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39253"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a56b4d0206957cc945c4eca41f81d2207f9801ec", "fields": {"nom_de_la_commune": "GRANGE DE VAIVRE", "libell_d_acheminement": "GRANGE DE VAIVRE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39259"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e77815655e95ef672c8937e1005b882ce2bfba2", "fields": {"nom_de_la_commune": "LES HAYS", "libell_d_acheminement": "LES HAYS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39266"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61c6b053f69326bee247d1137a930deedaa7e7f", "fields": {"nom_de_la_commune": "LAC DES ROUGES TRUITES", "libell_d_acheminement": "LAC DES ROUGES TRUITES", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39271"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925232092b38f8aa69e47cbb2c5cc4374744c393", "fields": {"nom_de_la_commune": "LARGILLAY MARSONNAY", "libell_d_acheminement": "LARGILLAY MARSONNAY", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39278"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7bc9ab654f64e9e72dd3fd2780085c53f39a791", "fields": {"nom_de_la_commune": "LA LATETTE", "libell_d_acheminement": "LA LATETTE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39282"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2af93e84023a31842d1f5111508f88959c4a1a", "fields": {"nom_de_la_commune": "LAVIGNY", "libell_d_acheminement": "LAVIGNY", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39288"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f76ca179aa8f18b1aeed5f641ed42aa10fe8d59", "fields": {"code_postal": "39260", "code_commune_insee": "39289", "libell_d_acheminement": "LECT", "ligne_5": "VOUGLANS", "nom_de_la_commune": "LECT", "coordonnees_gps": [46.4403663302, 5.71909726645]}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0341950ea3e3ad5e31624b534cffb2e6140f8e1", "fields": {"nom_de_la_commune": "LONGCOCHON", "libell_d_acheminement": "LONGCOCHON", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39298"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4d5ce091ec277d6a39e52affefe5558c28f4f1", "fields": {"nom_de_la_commune": "LOULLE", "libell_d_acheminement": "LOULLE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39301"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e996a285b80e41307ec74fb647aa8b0ae2ab97", "fields": {"nom_de_la_commune": "MAISOD", "libell_d_acheminement": "MAISOD", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39307"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4760c20f72ade3ed4118b280249a014a89edd9d3", "fields": {"nom_de_la_commune": "MANTRY", "libell_d_acheminement": "MANTRY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39310"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0555db37c60fb8f36eea9efdd1b300eea4493c74", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39313"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc31093aa944a8411b84557bd200c593ef055be", "fields": {"nom_de_la_commune": "MARNEZIA", "libell_d_acheminement": "MARNEZIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39314"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ee74213d35e6371c529af669d3a8e50f143f5b", "fields": {"nom_de_la_commune": "MATHENAY", "libell_d_acheminement": "MATHENAY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39319"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98381eddfd82706fc8227a4ee1bbbcdfb7878789", "fields": {"nom_de_la_commune": "MENETRU LE VIGNOBLE", "libell_d_acheminement": "MENETRU LE VIGNOBLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39321"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e632fef75899d5489286d563da634c4322d81600", "fields": {"nom_de_la_commune": "MEUSSIA", "libell_d_acheminement": "MEUSSIA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39328"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da289a8abecdd5c9d601e47687ccff139f090d71", "fields": {"nom_de_la_commune": "MIGNOVILLARD", "libell_d_acheminement": "MIGNOVILLARD", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39331"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f948c7f9e82e812068f6982d0b17d5df37cc6c24", "fields": {"code_postal": "39250", "code_commune_insee": "39331", "libell_d_acheminement": "MIGNOVILLARD", "ligne_5": "ESSAVILLY", "nom_de_la_commune": "MIGNOVILLARD", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2c3eebd7a4790a3ca91914942a10d1f43006e4", "fields": {"nom_de_la_commune": "MONAY", "libell_d_acheminement": "MONAY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39342"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0729e0fe706dc52f6b223f0f4d6e7a15547866", "fields": {"nom_de_la_commune": "MONTBARREY", "libell_d_acheminement": "MONTBARREY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39350"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8772644a0d41103b7fc4c43bc5734cc0125a70", "fields": {"nom_de_la_commune": "MONTIGNY SUR L AIN", "libell_d_acheminement": "MONTIGNY SUR L AIN", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39356"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d907225a139145a4fa368eac5caf52388454e94d", "fields": {"nom_de_la_commune": "MONTMIREY LA VILLE", "libell_d_acheminement": "MONTMIREY LA VILLE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39360"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359c9a5444e812bca660762649985a9172949ffd", "fields": {"nom_de_la_commune": "MONTMIREY LE CHATEAU", "libell_d_acheminement": "MONTMIREY LE CHATEAU", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39361"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0397dd6b471cc2278a47379e0b4583615f344fa", "fields": {"code_postal": "39400", "code_commune_insee": "39368", "libell_d_acheminement": "HAUTS DE BIENNE", "ligne_5": "MOREZ", "nom_de_la_commune": "HAUTS DE BIENNE", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a25b96d64c177dd1b176eff0a7ac94f79fc03e54", "fields": {"code_postal": "39160", "code_commune_insee": "39378", "libell_d_acheminement": "LES TROIS CHATEAUX", "ligne_5": "NANC LES ST AMOUR", "nom_de_la_commune": "LES TROIS CHATEAUX", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0298f7021da261ddf43cbbe94ea5cb460a5d4cd", "fields": {"nom_de_la_commune": "NANCUISE", "libell_d_acheminement": "NANCUISE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39380"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a1685522d76f8aaceb2e830c63fae073933b490", "fields": {"code_postal": "39120", "code_commune_insee": "39385", "libell_d_acheminement": "NEUBLANS ABERGEMENT", "ligne_5": "ABERGEMENT ST JEAN", "nom_de_la_commune": "NEUBLANS ABERGEMENT", "coordonnees_gps": [46.9509063875, 5.4122957378]}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4258a1cc6932734a4f117a9127a8da2ae546da", "fields": {"nom_de_la_commune": "ROCHECHINARD", "libell_d_acheminement": "ROCHECHINARD", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26270"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72821c57728f089046a9a79e4cfdf5cbe0c83a8f", "fields": {"nom_de_la_commune": "LA ROCHE DE GLUN", "libell_d_acheminement": "LA ROCHE DE GLUN", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26271"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b1ba4596b0ec150c71f23179432a54998fc7d72", "fields": {"nom_de_la_commune": "ROCHEGUDE", "libell_d_acheminement": "ROCHEGUDE", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26275"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f6c5ad8bc5f014817fcd8ae69caf050e16758f", "fields": {"nom_de_la_commune": "ROUSSIEUX", "libell_d_acheminement": "ROUSSIEUX", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26286"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cfee0513a446db973ae184a67a89dc756113ac", "fields": {"nom_de_la_commune": "ST CHRISTOPHE ET LE LARIS", "libell_d_acheminement": "ST CHRISTOPHE ET LE LARIS", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26298"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e435b12402d72325cc7f4a3dabb73fdc31619bc", "fields": {"nom_de_la_commune": "ST DIZIER EN DIOIS", "libell_d_acheminement": "ST DIZIER EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26300"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a562066905fdece085a6b12e456402cd71f308c0", "fields": {"nom_de_la_commune": "ST DONAT SUR L HERBASSE", "libell_d_acheminement": "ST DONAT SUR L HERBASSE", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26301"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e3865d7530ce5fbab8acb22ac5e8cbc269058a", "fields": {"nom_de_la_commune": "STE EULALIE EN ROYANS", "libell_d_acheminement": "STE EULALIE EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26302"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4016ef47acee21b6f877cb33a97d1d38ce92f5ed", "fields": {"nom_de_la_commune": "ST FERREOL TRENTE PAS", "libell_d_acheminement": "ST FERREOL TRENTE PAS", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26304"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd947b061cbe72669acc3a2ba5d700b12924fed2", "fields": {"nom_de_la_commune": "ST GERVAIS SUR ROUBION", "libell_d_acheminement": "ST GERVAIS SUR ROUBION", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26305"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814c82865f88c91594cad7b3125bae87a8a7a5a9", "fields": {"nom_de_la_commune": "STE JALLE", "libell_d_acheminement": "STE JALLE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26306"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "450e15e9196ac4ca88b06172cc0fef7699599fb5", "fields": {"nom_de_la_commune": "ST LAURENT EN ROYANS", "libell_d_acheminement": "ST LAURENT EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26311"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39b44ecf96d0b51c24af10138ce337cb0d132956", "fields": {"nom_de_la_commune": "ST MARTIN D AOUT", "libell_d_acheminement": "ST MARTIN D AOUT", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26314"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92eefddd4df9a7ae213239a5dee655368aa9ca0", "fields": {"nom_de_la_commune": "ST MICHEL SUR SAVASSE", "libell_d_acheminement": "ST MICHEL SUR SAVASSE", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26319"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e949ca2a0a58eb4c55bf1287274155fb6fb403b6", "fields": {"nom_de_la_commune": "ST NAZAIRE LE DESERT", "libell_d_acheminement": "ST NAZAIRE LE DESERT", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26321"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b01e809a4f672373a76ea67a63389f9528fb4cd", "fields": {"nom_de_la_commune": "ST RESTITUT", "libell_d_acheminement": "ST RESTITUT", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26326"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060885565f2c1eaacb3dd9abbe48c2b84defb464", "fields": {"nom_de_la_commune": "ST UZE", "libell_d_acheminement": "ST UZE", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26332"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b552e99175625380655885982028a93fb4266f18", "fields": {"nom_de_la_commune": "SAOU", "libell_d_acheminement": "SAOU", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26336"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a970774aa8937c766553f1a1f6c7264fcb52012", "fields": {"nom_de_la_commune": "SAUZET", "libell_d_acheminement": "SAUZET", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26338"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3cc43b200e12bada45374667ccc9447a8665e4", "fields": {"nom_de_la_commune": "TEYSSIERES", "libell_d_acheminement": "TEYSSIERES", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26350"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59aaa6bf582a7f0b058a2d8af9b8d6c096f78326", "fields": {"nom_de_la_commune": "TRESCHENU CREYERS", "libell_d_acheminement": "TRESCHENU CREYERS", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26354"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470d2dc202f96ed920cbc6f5355802c2af93e43d", "fields": {"nom_de_la_commune": "VALDROME", "libell_d_acheminement": "VALDROME", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26361"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95fe8eb63c44717f0c0a080ad0e8328417c526f", "fields": {"nom_de_la_commune": "VALOUSE", "libell_d_acheminement": "VALOUSE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26363"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e19c3ce0c6fffa9f940ec51d1a8256c181c0cd8", "fields": {"nom_de_la_commune": "VERCLAUSE", "libell_d_acheminement": "VERCLAUSE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26369"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b358c21d1fe249d621f5eead8a03b4cf48bd5139", "fields": {"nom_de_la_commune": "GRANGES LES BEAUMONT", "libell_d_acheminement": "GRANGES LES BEAUMONT", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26379"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fe96292733ff36bb90d6ee7682185515d2324e", "fields": {"nom_de_la_commune": "ACON", "libell_d_acheminement": "ACON", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27002"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061e223e8638962ecd342b1bda7fb4a6a950ac2f", "fields": {"nom_de_la_commune": "AILLY", "libell_d_acheminement": "AILLY", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27005"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc627ff61ba7452ae7de7e9df9fc610a88e45b91", "fields": {"nom_de_la_commune": "AMECOURT", "libell_d_acheminement": "AMECOURT", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27010"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e671ce975a60f7995c04459bb5ed7b5fbb039eac", "fields": {"nom_de_la_commune": "AMFREVILLE SUR ITON", "libell_d_acheminement": "AMFREVILLE SUR ITON", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27014"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb21e6b7e72a26a93de3881ed62e4cb5c11b525", "fields": {"nom_de_la_commune": "LES ANDELYS", "libell_d_acheminement": "LES ANDELYS", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27016"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cb654081f8b2499735344eb782be3ace96feba", "fields": {"code_postal": "27600", "code_commune_insee": "27022", "libell_d_acheminement": "LE VAL D HAZEY", "ligne_5": "STE BARBE SUR GAILLON", "nom_de_la_commune": "LE VAL D HAZEY", "coordonnees_gps": [49.1557980805, 1.30618945985]}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2a3a7171af6dad0bfde7c4e911f2ed9664486d", "fields": {"code_postal": "27240", "code_commune_insee": "27032", "libell_d_acheminement": "CHAMBOIS", "ligne_5": "AVRILLY", "nom_de_la_commune": "CHAMBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a6e1976e1f14365a61f44399b7dc4a138b6505", "fields": {"nom_de_la_commune": "BACQUEVILLE", "libell_d_acheminement": "BACQUEVILLE", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27034"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "874a6e7c365efd2c398fc9e7cc8f888d7b9ae69c", "fields": {"nom_de_la_commune": "BAILLEUL LA VALLEE", "libell_d_acheminement": "BAILLEUL LA VALLEE", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27035"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c8a1d3b6ca2f0e847eb416d1ecad827e351191", "fields": {"nom_de_la_commune": "LES BAUX DE BRETEUIL", "libell_d_acheminement": "LES BAUX DE BRETEUIL", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27043"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8b9378ca38e15e2199fdce8f1f0c334878f0e9", "fields": {"nom_de_la_commune": "BAZINCOURT SUR EPTE", "libell_d_acheminement": "BAZINCOURT SUR EPTE", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27045"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cd6f99b2149ac8c1e7fd56aae42302494dd2bc", "fields": {"nom_de_la_commune": "BEAUBRAY", "libell_d_acheminement": "BEAUBRAY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27047"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9e651fafd1b476809aa16afe433b646b3389d8", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "GISAY LA COUDRE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a93afba59f977403297c64020bbd925515896216", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "THEVRAY", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430165091841cf71706efb0d91d78b22c9dc3b6a", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "THEVRAY", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63eb77281d5f6a0660e406e0729e6505ef1eaad", "fields": {"nom_de_la_commune": "BERNOUVILLE", "libell_d_acheminement": "BERNOUVILLE", "code_postal": "27660", "coordonnees_gps": [49.299213116, 1.68011773724], "code_commune_insee": "27059"}, "geometry": {"type": "Point", "coordinates": [1.68011773724, 49.299213116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b90e66f0f65b434b26032e8eb7f6f07281ce9b", "fields": {"nom_de_la_commune": "BERTHOUVILLE", "libell_d_acheminement": "BERTHOUVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27061"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ca5b40f4abc6d0cd8ca2553f0c6feb70915937", "fields": {"nom_de_la_commune": "BERVILLE SUR MER", "libell_d_acheminement": "BERVILLE SUR MER", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27064"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca04d34f5eb1283577b7ce02ab9cc3a3bfb21740", "fields": {"nom_de_la_commune": "BOIS ANZERAY", "libell_d_acheminement": "BOIS ANZERAY", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27068"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ea0c62a92d0b0020948502e4f7edf81e93f3c2", "fields": {"nom_de_la_commune": "BOISEMONT", "libell_d_acheminement": "BOISEMONT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27070"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142efcacf3340fa9599f3197f1e11743a46b6e9f", "fields": {"nom_de_la_commune": "BOIS LE ROI", "libell_d_acheminement": "BOIS LE ROI", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27073"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffabb4fb97b5049e107358e74908a8a4b21d337", "fields": {"nom_de_la_commune": "BOISSET LES PREVANCHES", "libell_d_acheminement": "BOISSET LES PREVANCHES", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27076"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d18a4e953c25e03c2ca4358a7a1dda5d8a470db", "fields": {"nom_de_la_commune": "BOISSEY LE CHATEL", "libell_d_acheminement": "BOISSEY LE CHATEL", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27077"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fccf17f3dd1516e68530c9bbc107c44ab017da", "fields": {"nom_de_la_commune": "LA BONNEVILLE SUR ITON", "libell_d_acheminement": "LA BONNEVILLE SUR ITON", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27082"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18fd7338af40d64dda685f202d47a0e3fa3494a0", "fields": {"code_postal": "27310", "code_commune_insee": "27085", "libell_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", "ligne_5": "FLANCOURT CATELON", "nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", "coordonnees_gps": [49.3596105697, 0.832082294949]}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6a5644c9042c72b33a814aba3e2ced24d8e204", "fields": {"nom_de_la_commune": "BOSC RENOULT EN ROUMOIS", "libell_d_acheminement": "BOSC RENOULT EN ROUMOIS", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27089"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ad9848120dc18d52a5c78e088fd2f7217291d9", "fields": {"nom_de_la_commune": "BOSNORMAND", "libell_d_acheminement": "BOSNORMAND", "code_postal": "27670", "coordonnees_gps": [49.2917091598, 0.924488601867], "code_commune_insee": "27093"}, "geometry": {"type": "Point", "coordinates": [0.924488601867, 49.2917091598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddba539834abd813060b709697e50db83846fe8c", "fields": {"nom_de_la_commune": "BOULLEVILLE", "libell_d_acheminement": "BOULLEVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27100"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62d9afeb3b8e2ec5d6a7d80584b621e09107676", "fields": {"nom_de_la_commune": "BOURG ACHARD", "libell_d_acheminement": "BOURG ACHARD", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27103"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1ad4bf67103ca4fa4dc95e73c0718f222e25d7", "fields": {"code_postal": "27230", "code_commune_insee": "27106", "libell_d_acheminement": "BOURNAINVILLE FAVEROLLES", "ligne_5": "BOURNAINVILLE", "nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", "coordonnees_gps": [49.1267066474, 0.462557937493]}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6edf37b229ba02780277ea9cfcf2b6c7fc2f28", "fields": {"code_postal": "27230", "code_commune_insee": "27106", "libell_d_acheminement": "BOURNAINVILLE FAVEROLLES", "ligne_5": "FAVEROLLES LES MARES", "nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", "coordonnees_gps": [49.1267066474, 0.462557937493]}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0fd26a542b5b2de99123180eceeea1f00d2713", "fields": {"code_postal": "27160", "code_commune_insee": "27112", "libell_d_acheminement": "BRETEUIL", "ligne_5": "CINTRAY", "nom_de_la_commune": "BRETEUIL", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e262377d097610341d9b52f3bebb554a32b01a9", "fields": {"nom_de_la_commune": "BREUILPONT", "libell_d_acheminement": "BREUILPONT", "code_postal": "27640", "coordonnees_gps": [48.9602482824, 1.4448225375], "code_commune_insee": "27114"}, "geometry": {"type": "Point", "coordinates": [1.4448225375, 48.9602482824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84d2097cf159590e7fb3ad598549ec5bfd3cff1", "fields": {"nom_de_la_commune": "CAPELLE LES GRANDS", "libell_d_acheminement": "CAPELLE LES GRANDS", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27130"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1eca988f253e17a92ea88f592c5f260e4d24a1", "fields": {"nom_de_la_commune": "CAUGE", "libell_d_acheminement": "CAUGE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27132"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6435ad107bd3882a74804d38e3b0ffa304082cdb", "fields": {"code_postal": "27270", "code_commune_insee": "27138", "libell_d_acheminement": "CHAMBLAC", "ligne_5": "BOSC MOREL", "nom_de_la_commune": "CHAMBLAC", "coordonnees_gps": [49.0109875811, 0.530997676834]}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d0938e08c64d8f952ed76f02622c2ca14063a0", "fields": {"nom_de_la_commune": "CHAMBORD", "libell_d_acheminement": "CHAMBORD", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27139"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d503f41345d269ab47198e83a5ab51a8dfc76c7", "fields": {"nom_de_la_commune": "LA CHAPELLE GAUTHIER", "libell_d_acheminement": "LA CHAPELLE GAUTHIER", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27148"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99390463da2a4a0bda30147e98235b4d5c825a67", "fields": {"nom_de_la_commune": "CHATEAU SUR EPTE", "libell_d_acheminement": "CHATEAU SUR EPTE", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27152"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9d25ff925dbc8bad9de550d096358499fb5628", "fields": {"nom_de_la_commune": "CHAUVINCOURT PROVEMONT", "libell_d_acheminement": "CHAUVINCOURT PROVEMONT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27153"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c0a002cb05612fed8ac9f39d349c2319a8c39b", "fields": {"nom_de_la_commune": "CHERONVILLIERS", "libell_d_acheminement": "CHERONVILLIERS", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27156"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a46adb7dcda1527eaf6eb1ad9b80fac2d964fd", "fields": {"code_postal": "27160", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "ST DENIS DU BEHELAN", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa7889484c11233a41788a5fccec136fb2a102b", "fields": {"code_postal": "27240", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "CHANTELOUP", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f588350f04ccd1246e28920e9f6d1b4944327b96", "fields": {"nom_de_la_commune": "CIERREY", "libell_d_acheminement": "CIERREY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27158"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0a18d244da46487bb3762fc3997629a3ed66ad", "fields": {"nom_de_la_commune": "LE CORMIER", "libell_d_acheminement": "LE CORMIER", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27171"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744075133d929e1fc9a95091c844841a66300597", "fields": {"nom_de_la_commune": "CORNEVILLE LA FOUQUETIERE", "libell_d_acheminement": "CORNEVILLE LA FOUQUETIERE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27173"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322c4b33728325d15f0bb005e3e0ec7c499b0b3d", "fields": {"nom_de_la_commune": "COUDRAY", "libell_d_acheminement": "COUDRAY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27176"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52dd1a8a601bea77280b3ed7a2f521315ebe4ae7", "fields": {"nom_de_la_commune": "CRESTOT", "libell_d_acheminement": "CRESTOT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27185"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdd4fe0f4407a378ca81fd7422b8eb83071e8c4", "fields": {"nom_de_la_commune": "CRIQUEBEUF SUR SEINE", "libell_d_acheminement": "CRIQUEBEUF SUR SEINE", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27188"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acee77b998bd873f3be393b40d1706d07e607c4", "fields": {"nom_de_la_commune": "LA CROISILLE", "libell_d_acheminement": "LA CROISILLE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27189"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f108dd9afeb934e18d70dd6f7328b5b76edc85e7", "fields": {"code_postal": "27490", "code_commune_insee": "27191", "libell_d_acheminement": "CLEF VALLEE D EURE", "ligne_5": "ECARDENVILLE SUR EURE", "nom_de_la_commune": "CLEF VALLEE D EURE", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c828710bf85d32bd05bbbdbcd7184055e61300a", "fields": {"nom_de_la_commune": "DOUAINS", "libell_d_acheminement": "DOUAINS", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27203"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03b307785cef33e317484c70bcef75282f52467", "fields": {"nom_de_la_commune": "DOUDEAUVILLE EN VEXIN", "libell_d_acheminement": "DOUDEAUVILLE EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27204"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ac6a251c96c491f6e6ba8c2eb9388efba0eb8a", "fields": {"nom_de_la_commune": "DOUVILLE SUR ANDELLE", "libell_d_acheminement": "DOUVILLE SUR ANDELLE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27205"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd348cf78ed868a6a73494f46383c9e061b7ec52", "fields": {"code_postal": "27320", "code_commune_insee": "27206", "libell_d_acheminement": "DROISY", "ligne_5": "PANLATTE", "nom_de_la_commune": "DROISY", "coordonnees_gps": [48.803702003, 1.19395665858]}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b72103586ae338563fd702ae3164f39b909f6ae", "fields": {"nom_de_la_commune": "ECARDENVILLE LA CAMPAGNE", "libell_d_acheminement": "ECARDENVILLE LA CAMPAGNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27210"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5951e7c85c847fee07e24a5cce4d98184306b93e", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "TOURNY", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf6d36bea0d75f5e66c7982b32a50b1685cbf0f", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "BERTHENONVILLE", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87b160f6366b24846674e1dc3d10cee1f93a445", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "DAMPSMESNIL", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db86fa7d02ef49d3a7ce679ff221ce482253a36", "fields": {"nom_de_la_commune": "ECOUIS", "libell_d_acheminement": "ECOUIS", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27214"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "589f479f87acc651d3b708027a8b2563f088974f", "fields": {"nom_de_la_commune": "ECQUETOT", "libell_d_acheminement": "ECQUETOT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27215"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6b317173be63b4efb609be5f876c6efeafeac8", "fields": {"nom_de_la_commune": "EMANVILLE", "libell_d_acheminement": "EMANVILLE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27217"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac502e2d55ae74383b673dbcb545985701b3d9dc", "fields": {"nom_de_la_commune": "EPIEDS", "libell_d_acheminement": "EPIEDS", "code_postal": "27730", "coordonnees_gps": [48.932997523, 1.41949136051], "code_commune_insee": "27220"}, "geometry": {"type": "Point", "coordinates": [1.41949136051, 48.932997523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ef3755d0bd81b5e252325ea245c0606dc109e3", "fields": {"nom_de_la_commune": "EPREVILLE EN LIEUVIN", "libell_d_acheminement": "EPREVILLE EN LIEUVIN", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27222"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9edd1feda26e22f5354fde01eac07b1cdeed5a", "fields": {"nom_de_la_commune": "ETREPAGNY", "libell_d_acheminement": "ETREPAGNY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27226"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1472413a856da2394cb37d00ab0dbbc51d56ee5b", "fields": {"nom_de_la_commune": "EVREUX", "libell_d_acheminement": "EVREUX", "code_postal": "27000", "coordonnees_gps": [49.0199173611, 1.14145974873], "code_commune_insee": "27229"}, "geometry": {"type": "Point", "coordinates": [1.14145974873, 49.0199173611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1ab172dffc3243e2b46821ac6eada875013f26", "fields": {"nom_de_la_commune": "FAUVILLE", "libell_d_acheminement": "FAUVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27234"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46b7cda9e5bbb9ec9435144450c4c4ed293bbbd", "fields": {"nom_de_la_commune": "FERRIERES ST HILAIRE", "libell_d_acheminement": "FERRIERES ST HILAIRE", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27239"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8004aafd0ff1e17b44a9a469dd6324931915fd6", "fields": {"nom_de_la_commune": "FEUGUEROLLES", "libell_d_acheminement": "FEUGUEROLLES", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27241"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e08c69863dc9935cc4bfa0f29a915dc48554dbf", "fields": {"nom_de_la_commune": "FIQUEFLEUR EQUAINVILLE", "libell_d_acheminement": "FIQUEFLEUR EQUAINVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27243"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57db93c08cd35c3f960b030e6f4d05e879c46658", "fields": {"nom_de_la_commune": "FLEURY LA FORET", "libell_d_acheminement": "FLEURY LA FORET", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27245"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0735edd9aaf377351043c1ab7b410db6498064f4", "fields": {"nom_de_la_commune": "FLIPOU", "libell_d_acheminement": "FLIPOU", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27247"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07952903258dd0bbc7cf927bd20deff3ac65997b", "fields": {"nom_de_la_commune": "FONTAINE LA LOUVET", "libell_d_acheminement": "FONTAINE LA LOUVET", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27252"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be28f477eb10db642df5c5dd1a6432d28b0b06b5", "fields": {"nom_de_la_commune": "FOUCRAINVILLE", "libell_d_acheminement": "FOUCRAINVILLE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27259"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f482d120747f7acaeb5c316eda0dde97914ce7c6", "fields": {"nom_de_la_commune": "FOURMETOT", "libell_d_acheminement": "FOURMETOT", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27263"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bf2f8f92455771716aa6f9cda5fc473fee4054", "fields": {"nom_de_la_commune": "IGON", "libell_d_acheminement": "IGON", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64270"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153a4aa9cf139f86011e059a8f1e2f25f7b99b7a", "fields": {"nom_de_la_commune": "ISSOR", "libell_d_acheminement": "ISSOR", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64276"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5427b6d4a5692f3f5b3992154f54172b6c03d293", "fields": {"nom_de_la_commune": "ITXASSOU", "libell_d_acheminement": "ITXASSOU", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64279"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a94d0f1d14bb0e27622d9cd0417570ff6b05e320", "fields": {"nom_de_la_commune": "LAA MONDRANS", "libell_d_acheminement": "LAA MONDRANS", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64286"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d29b289ce7f7c9b0e496fdb794684d36b91535", "fields": {"nom_de_la_commune": "LA BASTIDE CLAIRENCE", "libell_d_acheminement": "LA BASTIDE CLAIRENCE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64289"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb5cc50f4edb67fcb7638929d290dec14c96abb", "fields": {"nom_de_la_commune": "LABASTIDE MONREJEAU", "libell_d_acheminement": "LABASTIDE MONREJEAU", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64290"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab7ca2865bf1a07f519bba2e9a69050f3777981", "fields": {"nom_de_la_commune": "LAHONCE", "libell_d_acheminement": "LAHONCE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64304"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c124789d6620f4da7c35b7dbe394fba9b2bca71a", "fields": {"nom_de_la_commune": "LANTABAT", "libell_d_acheminement": "LANTABAT", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64313"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b445a0e5c7057fa6f14ffc857fe476dd8da67911", "fields": {"nom_de_la_commune": "LAROIN", "libell_d_acheminement": "LAROIN", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64315"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9276e786e9c508e897f01639ff29fd3d8fe46e1", "fields": {"nom_de_la_commune": "LARRAU", "libell_d_acheminement": "LARRAU", "code_postal": "64560", "coordonnees_gps": [43.0084914097, -0.920619929244], "code_commune_insee": "64316"}, "geometry": {"type": "Point", "coordinates": [-0.920619929244, 43.0084914097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28289ab0fb824a3f6307e3f3520be9d8534da855", "fields": {"nom_de_la_commune": "LARRIBAR SORHAPURU", "libell_d_acheminement": "LARRIBAR SORHAPURU", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64319"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84760e6296ec8972031a9be4e4d7dc4547ef8fc6", "fields": {"nom_de_la_commune": "LASCLAVERIES", "libell_d_acheminement": "LASCLAVERIES", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64321"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0bc961970aceea85902e945bdda1dd3cb867731", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64323"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d93174980944f7b3d716f47189b9f21d2250030", "fields": {"nom_de_la_commune": "LASSEUBE", "libell_d_acheminement": "LASSEUBE", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64324"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983d0fece833ca5a8afce6b907be469d95fa349b", "fields": {"nom_de_la_commune": "LEE", "libell_d_acheminement": "LEE", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64329"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51407c3d943efc7a1eda91608801befba926f503", "fields": {"nom_de_la_commune": "LEES ATHAS", "libell_d_acheminement": "LEES ATHAS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64330"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b896a72d2884dcaf0f6ab719c20168ae9e97f8", "fields": {"nom_de_la_commune": "LESPIELLE", "libell_d_acheminement": "LESPIELLE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64337"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dc6b73a107bc529e3a7a5f45c5d8568b9bdcc8", "fields": {"nom_de_la_commune": "LOUHOSSOA", "libell_d_acheminement": "LOUHOSSOA", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64350"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdbe63ec60487fb7998d9a4a37b82ead4b9cd284", "fields": {"nom_de_la_commune": "LOURENTIES", "libell_d_acheminement": "LOURENTIES", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64352"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c303796fa54ebad9a97a470fd18e2cb8497ced", "fields": {"nom_de_la_commune": "LOUVIE SOUBIRON", "libell_d_acheminement": "LOUVIE SOUBIRON", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64354"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d376264805b317ce8eb6d9945904c485b2f33c8e", "fields": {"nom_de_la_commune": "LUCARRE", "libell_d_acheminement": "LUCARRE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64357"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eef12a6f71b739565b7e90d2dd3987517c2f78a", "fields": {"nom_de_la_commune": "LUCGARIER", "libell_d_acheminement": "LUCGARIER", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64358"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259df52ba432f5b277b513690ddb768dd24bf8ff", "fields": {"nom_de_la_commune": "MEHARIN", "libell_d_acheminement": "MEHARIN", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64375"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7174bc9e54ccc62f9d866b32dc20b0bf9e6b756", "fields": {"nom_de_la_commune": "MIREPEIX", "libell_d_acheminement": "MIREPEIX", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64386"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f6675ed8f01af72f90596e573b6a54d7a9eb1c", "fields": {"nom_de_la_commune": "MOMAS", "libell_d_acheminement": "MOMAS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64387"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33016b2c241e549d0ee8563b4fbbe50de06ad47b", "fields": {"nom_de_la_commune": "MONCAUP", "libell_d_acheminement": "MONCAUP", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64390"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11eec9f70c157296cb07912d8e1abd289af7bed6", "fields": {"code_postal": "64300", "code_commune_insee": "64396", "libell_d_acheminement": "MONT", "ligne_5": "GOUZE", "nom_de_la_commune": "MONT", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cea1113090fe770809a28fefa70bac2d2aa6432", "fields": {"code_postal": "64300", "code_commune_insee": "64396", "libell_d_acheminement": "MONT", "ligne_5": "LENDRESSE", "nom_de_la_commune": "MONT", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb370afe14f79b74ae391fbb7e3fcf95f5feded", "fields": {"nom_de_la_commune": "MONTAGUT", "libell_d_acheminement": "MONTAGUT", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64397"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5631dca48801ba19a97d9a2c0dbb4fcce3e4aad0", "fields": {"nom_de_la_commune": "NABAS", "libell_d_acheminement": "NABAS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64412"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a093af6fbd6eb3293d8acc9d3608e8ff83de3d28", "fields": {"nom_de_la_commune": "NARCASTET", "libell_d_acheminement": "NARCASTET", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64413"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f41c8ad1e029224fa2739c9eaba642a514b7ebe", "fields": {"nom_de_la_commune": "NARP", "libell_d_acheminement": "NARP", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64414"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac6d76b9c12b66bc9daac7fc4022f23d9ce0aa9", "fields": {"nom_de_la_commune": "OLORON STE MARIE", "libell_d_acheminement": "OLORON STE MARIE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64422"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b7a41dd69fd2ed1e1c6c8a9cfdebd26d0a98313", "fields": {"nom_de_la_commune": "OS MARSILLON", "libell_d_acheminement": "OS MARSILLON", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64431"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884988027ad34e61b560243575b7e8d4866c39a3", "fields": {"nom_de_la_commune": "OSSES", "libell_d_acheminement": "OSSES", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64436"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d829bd857276cc17890d085b89c837989ec63b45", "fields": {"nom_de_la_commune": "OUILLON", "libell_d_acheminement": "OUILLON", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64438"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5071f985a5c2a36d43cb8f07e4dd6c98459860f", "fields": {"code_postal": "64300", "code_commune_insee": "64440", "libell_d_acheminement": "OZENX MONTESTRUCQ", "ligne_5": "MONTESTRUCQ", "nom_de_la_commune": "OZENX MONTESTRUCQ", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030894983343a4e31be2d58c17ef2035b24f4e1d", "fields": {"nom_de_la_commune": "PARBAYSE", "libell_d_acheminement": "PARBAYSE", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64442"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b265d4af3c004dd23b5e8ad1a5d7d9154b636ee3", "fields": {"nom_de_la_commune": "PARDIES", "libell_d_acheminement": "PARDIES", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64443"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdcfc6960feeab96c676d045fdb47889009713c4", "fields": {"nom_de_la_commune": "PARDIES PIETAT", "libell_d_acheminement": "PARDIES PIETAT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64444"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22893c778225cd80bf0548830e7dee51c875855c", "fields": {"nom_de_la_commune": "POEY DE LESCAR", "libell_d_acheminement": "POEY DE LESCAR", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64448"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6d435f86dead5c752eaa2908428b11c7736482", "fields": {"nom_de_la_commune": "POEY D OLORON", "libell_d_acheminement": "POEY D OLORON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64449"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e380058933778cc2f676b89877ed88f8efb79e", "fields": {"nom_de_la_commune": "POMPS", "libell_d_acheminement": "POMPS", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64450"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e71287a1e6abd6d27177a919fb271b867aeff4", "fields": {"nom_de_la_commune": "PONTACQ", "libell_d_acheminement": "PONTACQ", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64453"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe64a0bbef53c0c80ef9c1a04e5232c385a14b8c", "fields": {"nom_de_la_commune": "PORTET", "libell_d_acheminement": "PORTET", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64455"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aff0bca366fdbafa89964afd5b8d3c48b692e90", "fields": {"nom_de_la_commune": "PRECHACQ JOSBAIG", "libell_d_acheminement": "PRECHACQ JOSBAIG", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64458"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd42fe759a38966ccd990ef0c576615c93a9375", "fields": {"nom_de_la_commune": "PRECILHON", "libell_d_acheminement": "PRECILHON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64460"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd5596d358ecdd7d30d0e648bc85b6dd02c9bee", "fields": {"nom_de_la_commune": "ST JEAN LE VIEUX", "libell_d_acheminement": "ST JEAN LE VIEUX", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64484"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf9eec6e92cba1d3f853d80fd69e41406c52fa5", "fields": {"nom_de_la_commune": "ST LAURENT BRETAGNE", "libell_d_acheminement": "ST LAURENT BRETAGNE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64488"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0283cd53078fbac5344824836aad7b1948ba5b", "fields": {"code_postal": "64780", "code_commune_insee": "64490", "libell_d_acheminement": "ST MARTIN D ARROSSA", "ligne_5": "EYHARCE", "nom_de_la_commune": "ST MARTIN D ARROSSA", "coordonnees_gps": [43.2518666668, -1.28852003798]}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1a634353e4558a35b3dfa97764dc529a62f2ac", "fields": {"nom_de_la_commune": "ST PE DE LEREN", "libell_d_acheminement": "ST PE DE LEREN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64494"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c6613e240575c7de5f4ceffba8dd17de87dfba", "fields": {"nom_de_la_commune": "SARE", "libell_d_acheminement": "SARE", "code_postal": "64310", "coordonnees_gps": [43.3310114321, -1.57798494011], "code_commune_insee": "64504"}, "geometry": {"type": "Point", "coordinates": [-1.57798494011, 43.3310114321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3834b22a8b9f0760a5a25ae07d00d7d13121055e", "fields": {"nom_de_la_commune": "SAUGUIS ST ETIENNE", "libell_d_acheminement": "SAUGUIS ST ETIENNE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64509"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b5261ed4423b8527811ea062f98f34485d5f09", "fields": {"nom_de_la_commune": "SAUVELADE", "libell_d_acheminement": "SAUVELADE", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64512"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee0e55a95789bab68370ab6a92c54272f6577a6", "fields": {"nom_de_la_commune": "SEDZERE", "libell_d_acheminement": "SEDZERE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64516"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe8061b6b5dd52a78676a58c07b957303ff123d", "fields": {"nom_de_la_commune": "SERRES CASTET", "libell_d_acheminement": "SERRES CASTET", "code_postal": "64121", "coordonnees_gps": [43.3744840703, -0.360649842096], "code_commune_insee": "64519"}, "geometry": {"type": "Point", "coordinates": [-0.360649842096, 43.3744840703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52567648dc1eee28fd3819b983dc3cea06ffe9c2", "fields": {"nom_de_la_commune": "SUS", "libell_d_acheminement": "SUS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64529"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad8d498705ce56debd6728507ba98357d9685917", "fields": {"nom_de_la_commune": "TABAILLE USQUAIN", "libell_d_acheminement": "TABAILLE USQUAIN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64531"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2330596f149430a50cdc27c86a467652816c6032", "fields": {"nom_de_la_commune": "UHART CIZE", "libell_d_acheminement": "UHART CIZE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64538"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3760b26cbb6779c32326503b450a756dad721948", "fields": {"nom_de_la_commune": "UHART MIXE", "libell_d_acheminement": "UHART MIXE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64539"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9418abe759bf9c2631fa92a0cdc2f86f61b67b", "fields": {"nom_de_la_commune": "VIALER", "libell_d_acheminement": "VIALER", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64552"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97f8043082bd7d293bd4bb60063d88cc2d20e8e", "fields": {"code_postal": "65240", "code_commune_insee": "65003", "libell_d_acheminement": "ADERVIELLE POUCHERGUES", "ligne_5": "POUCHERGUES", "nom_de_la_commune": "ADERVIELLE POUCHERGUES", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f7d6ef4e3f21d4c85321ce76d52243ea125fb81", "fields": {"nom_de_la_commune": "ALLIER", "libell_d_acheminement": "ALLIER", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65005"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b4ed53d05ddab4d26b68f734ebf52b603fb8c7", "fields": {"nom_de_la_commune": "ANCIZAN", "libell_d_acheminement": "ANCIZAN", "code_postal": "65440", "coordonnees_gps": [42.8992933799, 0.284053149323], "code_commune_insee": "65006"}, "geometry": {"type": "Point", "coordinates": [0.284053149323, 42.8992933799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6461fa81ca38f7fdeb18ea408fb80f1b2269aea", "fields": {"nom_de_la_commune": "ANERES", "libell_d_acheminement": "ANERES", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65009"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a9885b0802f1958cfba2892a4e935597c01ec", "fields": {"nom_de_la_commune": "ANTIST", "libell_d_acheminement": "ANTIST", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65016"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71184fff9b717d7ebf8c795dc5f207a210ec07e", "fields": {"nom_de_la_commune": "ARCIZAC ADOUR", "libell_d_acheminement": "ARCIZAC ADOUR", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65019"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e10d381d817d97985ca426483b3316f49eb5943", "fields": {"nom_de_la_commune": "ARCIZAC EZ ANGLES", "libell_d_acheminement": "ARCIZAC EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65020"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3a48bc1ca3dbad8f1d3c185df3de75a3688dbc", "fields": {"nom_de_la_commune": "ARGELES BAGNERES", "libell_d_acheminement": "ARGELES BAGNERES", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65024"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57ea5914725c29e3ff5e2c326ce6076c5c35432", "fields": {"nom_de_la_commune": "ARRODETS", "libell_d_acheminement": "ARRODETS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65034"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23a39f3a678a60868ff463179f1164ba5ca99f0", "fields": {"nom_de_la_commune": "ARTALENS SOUIN", "libell_d_acheminement": "ARTALENS SOUIN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65036"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e12cc86de628f899d35082cfc0b5db27fa7e772", "fields": {"nom_de_la_commune": "AVEZAC PRAT LAHITTE", "libell_d_acheminement": "AVEZAC PRAT LAHITTE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65054"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93fce9ccbb51ec7cdea9a2c759041cf9cbb0d789", "fields": {"nom_de_la_commune": "AYROS ARBOUIX", "libell_d_acheminement": "AYROS ARBOUIX", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65055"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64500f7b5f9d02b0ba3e1fdf935cbae681eaa052", "fields": {"nom_de_la_commune": "BANIOS", "libell_d_acheminement": "BANIOS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65060"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46b9d61bf440420570a105027f5a2811df2d907", "fields": {"nom_de_la_commune": "BAREILLES", "libell_d_acheminement": "BAREILLES", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65064"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc55bb05626051aeab70b3623ee36bacdbc3bbb", "fields": {"nom_de_la_commune": "BAZET", "libell_d_acheminement": "BAZET", "code_postal": "65460", "coordonnees_gps": [43.2812999777, 0.0852833295183], "code_commune_insee": "65072"}, "geometry": {"type": "Point", "coordinates": [0.0852833295183, 43.2812999777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc79681d1b7f70c4f1cfb2a8ea6d2ff2cf6f349", "fields": {"nom_de_la_commune": "BAZORDAN", "libell_d_acheminement": "BAZORDAN", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65074"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca9849f2ba2df508597fd3199a35e07d0de8ad5f", "fields": {"nom_de_la_commune": "BAZUS AURE", "libell_d_acheminement": "BAZUS AURE", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65075"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a8fe7a7731fbda4f135016acf4a4c0609d3d7e", "fields": {"nom_de_la_commune": "BAZUS NESTE", "libell_d_acheminement": "BAZUS NESTE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65076"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c774d504cabd4a6dd29d85dd964b080feed667f", "fields": {"nom_de_la_commune": "BENAC", "libell_d_acheminement": "BENAC", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65080"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21c0406c222e0fb38a88524306687ddb2c33571", "fields": {"nom_de_la_commune": "BERNAC DESSUS", "libell_d_acheminement": "BERNAC DESSUS", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65084"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2dce836fd99099f49b5282bdf50a15f5d2ab645", "fields": {"nom_de_la_commune": "BONNEFONT", "libell_d_acheminement": "BONNEFONT", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65095"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d22696026ba60d9206c5fce6a55a449ade6a3973", "fields": {"nom_de_la_commune": "BONREPOS", "libell_d_acheminement": "BONREPOS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65097"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b87b63b8e8a95b4fe86172a7425185909fb11e2", "fields": {"code_postal": "65590", "code_commune_insee": "65099", "libell_d_acheminement": "BORDERES LOURON", "ligne_5": "ILHAN", "nom_de_la_commune": "BORDERES LOURON", "coordonnees_gps": [42.8710607597, 0.412551570718]}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d4d880ddab3a401b541d5cbb8a5c7375bd57e7", "fields": {"nom_de_la_commune": "BOUILH PEREUILH", "libell_d_acheminement": "BOUILH PEREUILH", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65103"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d004a6b374eeb1c3ffb5fef56d03e90939823f03", "fields": {"nom_de_la_commune": "BOURG DE BIGORRE", "libell_d_acheminement": "BOURG DE BIGORRE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65105"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e0da6b8d566e101ed9be5bde6f28660bb6efe13", "fields": {"nom_de_la_commune": "CASTELNAU RIVIERE BASSE", "libell_d_acheminement": "CASTELNAU RIVIERE BASSE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65130"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c5a9df68b1004a4ef56ba6d7c855917808a289f", "fields": {"nom_de_la_commune": "CASTERETS", "libell_d_acheminement": "CASTERETS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65134"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc0961a38ce913b21d57b299b5b892693bae6d0d", "fields": {"nom_de_la_commune": "CAUBOUS", "libell_d_acheminement": "CAUBOUS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65136"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5a5f8f62b3839b0dae5b2e7d514072a114d7a9", "fields": {"nom_de_la_commune": "CIEUTAT", "libell_d_acheminement": "CIEUTAT", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65147"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c600f043ceeecc687da4d6db06108aaf5614b420", "fields": {"nom_de_la_commune": "CRECHETS", "libell_d_acheminement": "CRECHETS", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65154"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ae4aefb00e7254424711c490ac4afbf74f79bc", "fields": {"nom_de_la_commune": "DEVEZE", "libell_d_acheminement": "DEVEZE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65155"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e5037185e491157f2f2d71179b954edb233c2f", "fields": {"nom_de_la_commune": "ESCAUNETS", "libell_d_acheminement": "ESCAUNETS", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65160"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab166f8af17cb90fd2113eadcdd028747f3b72bc", "fields": {"nom_de_la_commune": "ESCOUBES POUTS", "libell_d_acheminement": "ESCOUBES POUTS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65164"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42932aa351a5df1f58b686727bf3e118d0e9478c", "fields": {"nom_de_la_commune": "ESPIEILH", "libell_d_acheminement": "ESPIEILH", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65167"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba35a2e9cb2aa24c7ad5236d55cdee21fac7fe7e", "fields": {"nom_de_la_commune": "ESTAMPURES", "libell_d_acheminement": "ESTAMPURES", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65170"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "163f1054877bf81e21a0a7a296a62f978af79b61", "fields": {"nom_de_la_commune": "ESTARVIELLE", "libell_d_acheminement": "ESTARVIELLE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65171"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a99d2c4ff3b891a90e186d2dd308bd420e4e1eb", "fields": {"nom_de_la_commune": "ESTIRAC", "libell_d_acheminement": "ESTIRAC", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65174"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5fb36ee2f2f6496aaa5e2a0b1c3f69361916ca", "fields": {"nom_de_la_commune": "FRECHET AURE", "libell_d_acheminement": "FRECHET AURE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65180"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f5cf54b0952aff3d41010d552d498e97755a33", "fields": {"nom_de_la_commune": "FRECHOU FRECHET", "libell_d_acheminement": "FRECHOU FRECHET", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65181"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae95f00a53b6cb9f157de4c1c328cd089eecc437", "fields": {"nom_de_la_commune": "VILLENEUVE DE LA RAHO", "libell_d_acheminement": "VILLENEUVE DE LA RAHO", "code_postal": "66180", "coordonnees_gps": [42.6398795386, 2.9103777475], "code_commune_insee": "66227"}, "geometry": {"type": "Point", "coordinates": [2.9103777475, 42.6398795386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6cd60b001c8e84cca855184b80cca23840e3da", "fields": {"nom_de_la_commune": "VIRA", "libell_d_acheminement": "VIRA", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66232"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5673bb5ce065eb1e3e2ca4e24b0444030ad39b", "fields": {"nom_de_la_commune": "VIVES", "libell_d_acheminement": "VIVES", "code_postal": "66490", "coordonnees_gps": [42.5223497938, 2.78118948745], "code_commune_insee": "66233"}, "geometry": {"type": "Point", "coordinates": [2.78118948745, 42.5223497938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdba1ea486d8af7b7f72b23f1a3a0a1388137662", "fields": {"nom_de_la_commune": "ACHENHEIM", "libell_d_acheminement": "ACHENHEIM", "code_postal": "67204", "coordonnees_gps": [48.5799762459, 7.62595300588], "code_commune_insee": "67001"}, "geometry": {"type": "Point", "coordinates": [7.62595300588, 48.5799762459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb8c60f38a58d93ed611ba0beb458b65acf62c7", "fields": {"nom_de_la_commune": "ANDLAU", "libell_d_acheminement": "ANDLAU", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67010"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4512453531e1cfa5f7d87978ca78777e9a12d57", "fields": {"nom_de_la_commune": "AUENHEIM", "libell_d_acheminement": "AUENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67014"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ba67a3a6241a8baf71c994d033e6eefbe37861", "fields": {"nom_de_la_commune": "AVOLSHEIM", "libell_d_acheminement": "AVOLSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67016"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdadc0bee9e2e1703680f279def5fec2a4d3a9f0", "fields": {"nom_de_la_commune": "BALBRONN", "libell_d_acheminement": "BALBRONN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67018"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315051c09ffba871ab158343e5f9579fd05c7f9f", "fields": {"nom_de_la_commune": "BASSEMBERG", "libell_d_acheminement": "BASSEMBERG", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67022"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a763d6fcc23bd05cc7196df9f036f60bcfbb9253", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67027"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553fb9ed0b6ca1866c1a9fa4240574ef468b31ed", "fields": {"code_postal": "67370", "code_commune_insee": "67034", "libell_d_acheminement": "BERSTETT", "ligne_5": "REITWILLER", "nom_de_la_commune": "BERSTETT", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b3e29e97a1befd0f429793a0be999b05b8d41e", "fields": {"nom_de_la_commune": "BIETLENHEIM", "libell_d_acheminement": "BIETLENHEIM", "code_postal": "67720", "coordonnees_gps": [48.7056122798, 7.80812947302], "code_commune_insee": "67038"}, "geometry": {"type": "Point", "coordinates": [7.80812947302, 48.7056122798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad09894ede523568ac53e40ae99927fc735c24b8", "fields": {"nom_de_la_commune": "BILWISHEIM", "libell_d_acheminement": "BILWISHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67039"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca59f8a430e7c79f3b1b75591b60dbe3a7c8d9d", "fields": {"nom_de_la_commune": "BISCHOFFSHEIM", "libell_d_acheminement": "BISCHOFFSHEIM", "code_postal": "67870", "coordonnees_gps": [48.4894170469, 7.52737448291], "code_commune_insee": "67045"}, "geometry": {"type": "Point", "coordinates": [7.52737448291, 48.4894170469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c431c79a6dd404306a188826ccec3018e5dd02e0", "fields": {"nom_de_la_commune": "BITSCHHOFFEN", "libell_d_acheminement": "BITSCHHOFFEN", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67048"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f9eab2f2cddf6b82a7444b5aae702b932a43a8", "fields": {"nom_de_la_commune": "BLAESHEIM", "libell_d_acheminement": "BLAESHEIM", "code_postal": "67113", "coordonnees_gps": [48.5021364494, 7.60884342111], "code_commune_insee": "67049"}, "geometry": {"type": "Point", "coordinates": [7.60884342111, 48.5021364494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9273698a6d8722e277e52e9869eb3731c49e79bd", "fields": {"nom_de_la_commune": "BOOFZHEIM", "libell_d_acheminement": "BOOFZHEIM", "code_postal": "67860", "coordonnees_gps": [48.3174289749, 7.68184154693], "code_commune_insee": "67055"}, "geometry": {"type": "Point", "coordinates": [7.68184154693, 48.3174289749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72fc77307103746fc417643c9032c9f944ba7740", "fields": {"code_postal": "67420", "code_commune_insee": "67059", "libell_d_acheminement": "BOURG BRUCHE", "ligne_5": "BOURG", "nom_de_la_commune": "BOURG BRUCHE", "coordonnees_gps": [48.3874894068, 7.1481297444]}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871ce00e582a2fbc436eb6258e267dcffc125de8", "fields": {"nom_de_la_commune": "BOURGHEIM", "libell_d_acheminement": "BOURGHEIM", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67060"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b74e1df7aba04041908be9f830a43917e18c16d6", "fields": {"nom_de_la_commune": "BOUXWILLER", "libell_d_acheminement": "BOUXWILLER", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67061"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3ba934c296adeaab45c3e54f51389033f8ead3", "fields": {"code_postal": "67330", "code_commune_insee": "67061", "libell_d_acheminement": "BOUXWILLER", "ligne_5": "IMBSHEIM", "nom_de_la_commune": "BOUXWILLER", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c08c32835d1c33cca50bc55448e94e6a5b750c9", "fields": {"nom_de_la_commune": "BREITENBACH", "libell_d_acheminement": "BREITENBACH", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67063"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff37527474575bca0f6523917cb882da3805eb13", "fields": {"nom_de_la_commune": "LA BROQUE", "libell_d_acheminement": "LA BROQUE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67066"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecfef596ee1c5b00b578efc167420fcadeca99b", "fields": {"code_postal": "67130", "code_commune_insee": "67066", "libell_d_acheminement": "LA BROQUE", "ligne_5": "FRECONRUPT", "nom_de_la_commune": "LA BROQUE", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99db2207cb680cebf96d827ef494dd78662741e", "fields": {"code_postal": "67130", "code_commune_insee": "67066", "libell_d_acheminement": "LA BROQUE", "ligne_5": "WACQUENOUX", "nom_de_la_commune": "LA BROQUE", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f2ec055133ab82cb75004b4c8f3582ae244679", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "67730", "coordonnees_gps": [48.2803512075, 7.36339905958], "code_commune_insee": "67073"}, "geometry": {"type": "Point", "coordinates": [7.36339905958, 48.2803512075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af63e3abc08b39fd9e4c3b654bb2c2dc45c3fe1c", "fields": {"code_postal": "67160", "code_commune_insee": "67074", "libell_d_acheminement": "CLEEBOURG", "ligne_5": "BREMMELBACH", "nom_de_la_commune": "CLEEBOURG", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9c6579eb5946ac4a9513629318b1a8323685e9", "fields": {"nom_de_la_commune": "DAMBACH", "libell_d_acheminement": "DAMBACH", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67083"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a841305edc6111095f812a0e1fe7805d73aa4d9", "fields": {"nom_de_la_commune": "DANGOLSHEIM", "libell_d_acheminement": "DANGOLSHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67085"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6674feead9d6f12f8fc92462d49d56cfddd7aadd", "fields": {"nom_de_la_commune": "DAUBENSAND", "libell_d_acheminement": "DAUBENSAND", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67086"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19321c2f20c5b10b85b589a0bec8ccbf6f744be4", "fields": {"nom_de_la_commune": "DETTWILLER", "libell_d_acheminement": "DETTWILLER", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67089"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa2c4f94e8e6c66cd188ee7bf36c446ccedb8ad", "fields": {"nom_de_la_commune": "DIEFFENBACH AU VAL", "libell_d_acheminement": "DIEFFENBACH AU VAL", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67092"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3018d3d5fa6bbbc41e7c453bc008622648eaa26a", "fields": {"nom_de_la_commune": "DIEFFENBACH LES WOERTH", "libell_d_acheminement": "DIEFFENBACH LES WOERTH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67093"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e235ffa03696e99a4ab478bc5db9b7a6d42ae714", "fields": {"nom_de_la_commune": "DORLISHEIM", "libell_d_acheminement": "DORLISHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67101"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761ac0b74885711b5385cccf262b6fa45201e584", "fields": {"nom_de_la_commune": "DOSSENHEIM KOCHERSBERG", "libell_d_acheminement": "DOSSENHEIM KOCHERSBERG", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67102"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a96517a0aec7839f9c4732911c2de981f4ca18ec", "fields": {"nom_de_la_commune": "DOSSENHEIM SUR ZINSEL", "libell_d_acheminement": "DOSSENHEIM SUR ZINSEL", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67103"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3f5b2c8524d6aff555bc3ab17a3538a47754b5", "fields": {"nom_de_la_commune": "ELSENHEIM", "libell_d_acheminement": "ELSENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67121"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32bfccdc695b433626d10f059971d37ca1e3803f", "fields": {"nom_de_la_commune": "ENGWILLER", "libell_d_acheminement": "ENGWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67123"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adda9985aa74bb7f3817447eb858cc443f835f1", "fields": {"nom_de_la_commune": "ERGERSHEIM", "libell_d_acheminement": "ERGERSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67127"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca521ba3833a136f406ee9adea73b2886828012", "fields": {"code_postal": "67640", "code_commune_insee": "67137", "libell_d_acheminement": "FEGERSHEIM", "ligne_5": "OHNHEIM", "nom_de_la_commune": "FEGERSHEIM", "coordonnees_gps": [48.4903746121, 7.67506089743]}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734800b670e95c7ca0578866cd96efb9b4c314cc", "fields": {"nom_de_la_commune": "FLEXBOURG", "libell_d_acheminement": "FLEXBOURG", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67139"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51c6cac59d87cefcb84088c34f002b9e5bc7dcb", "fields": {"nom_de_la_commune": "GAMBSHEIM", "libell_d_acheminement": "GAMBSHEIM", "code_postal": "67760", "coordonnees_gps": [48.6925787959, 7.8842333221], "code_commune_insee": "67151"}, "geometry": {"type": "Point", "coordinates": [7.8842333221, 48.6925787959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff35e9768583d9d026ea61e2aaa4a6fd8410d1a", "fields": {"nom_de_la_commune": "GOERLINGEN", "libell_d_acheminement": "GOERLINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67159"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b1e960ecbdbd5adfb0edd3767a0d53257b86599", "fields": {"nom_de_la_commune": "GOERSDORF", "libell_d_acheminement": "GOERSDORF", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67160"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d51911e1cd8b469344541bcb7bc2fa068e2d1e8", "fields": {"nom_de_la_commune": "GRANDFONTAINE", "libell_d_acheminement": "GRANDFONTAINE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67165"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162893b892c8d6a7040ae4ece5192caa0d3b1865", "fields": {"nom_de_la_commune": "GRASSENDORF", "libell_d_acheminement": "GRASSENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67166"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74949e5d16fe63eb6cb9090fd2eb484e585a6ae8", "fields": {"code_postal": "67110", "code_commune_insee": "67176", "libell_d_acheminement": "GUNDERSHOFFEN", "ligne_5": "EBERBACH", "nom_de_la_commune": "GUNDERSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a597705abc7b13302bf4d0cf7ec55110e5ef94", "fields": {"nom_de_la_commune": "GUNSTETT", "libell_d_acheminement": "GUNSTETT", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67177"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa19e165084bca6919ca79c075fdf8fe7f315409", "fields": {"nom_de_la_commune": "HARSKIRCHEN", "libell_d_acheminement": "HARSKIRCHEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67183"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba5d87bdc39188201ce18fadd3363787681bc8e", "fields": {"nom_de_la_commune": "HATTMATT", "libell_d_acheminement": "HATTMATT", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67185"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a3d0c902b7192c17a80386a5bf7c32fb69d693", "fields": {"nom_de_la_commune": "HEIDOLSHEIM", "libell_d_acheminement": "HEIDOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67187"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74529fe855c4d4cde4458596bfa1126eb12a8377", "fields": {"nom_de_la_commune": "HEILIGENSTEIN", "libell_d_acheminement": "HEILIGENSTEIN", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67189"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7e6bf3db3b6320d9bb0fcf454a6c7281e1b2a3", "fields": {"nom_de_la_commune": "HENGWILLER", "libell_d_acheminement": "HENGWILLER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67190"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60db3d4055bafd401a5c8d4fa79ce6ca2d345de5", "fields": {"nom_de_la_commune": "HERRLISHEIM", "libell_d_acheminement": "HERRLISHEIM", "code_postal": "67850", "coordonnees_gps": [48.7239519575, 7.9191715322], "code_commune_insee": "67194"}, "geometry": {"type": "Point", "coordinates": [7.9191715322, 48.7239519575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2ff6ef384b4a9ddce7358488b98e5d3231b8ac", "fields": {"nom_de_la_commune": "HINSINGEN", "libell_d_acheminement": "HINSINGEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67199"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7772c1944e0b0b94ec4157cf50799f0762c29b82", "fields": {"nom_de_la_commune": "HIRSCHLAND", "libell_d_acheminement": "HIRSCHLAND", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67201"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5381b63ad8fc7221008da10e26bccfedad6daf", "fields": {"nom_de_la_commune": "HOCHSTETT", "libell_d_acheminement": "HOCHSTETT", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67203"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da2baaa4505dc544473483514d89062c8c90637", "fields": {"nom_de_la_commune": "HOENHEIM", "libell_d_acheminement": "HOENHEIM", "code_postal": "67800", "coordonnees_gps": [48.6226822047, 7.75647923551], "code_commune_insee": "67204"}, "geometry": {"type": "Point", "coordinates": [7.75647923551, 48.6226822047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b15f4230a829f6f37d47db4b15071505550dbc2", "fields": {"code_postal": "67250", "code_commune_insee": "67206", "libell_d_acheminement": "HOFFEN", "ligne_5": "LEITERSWILLER", "nom_de_la_commune": "HOFFEN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c010c1025ae63484bb31d4e170136825fad0e4", "fields": {"nom_de_la_commune": "HOLTZHEIM", "libell_d_acheminement": "HOLTZHEIM", "code_postal": "67810", "coordonnees_gps": [48.5566076104, 7.64464812051], "code_commune_insee": "67212"}, "geometry": {"type": "Point", "coordinates": [7.64464812051, 48.5566076104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9283ef26e131f7b0add5ba5c28ebe1c6d8b1f912", "fields": {"nom_de_la_commune": "HUTTENDORF", "libell_d_acheminement": "HUTTENDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67215"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea306cd516c81484c043466a0d7e87e71b18f71", "fields": {"nom_de_la_commune": "JETTERSWILLER", "libell_d_acheminement": "JETTERSWILLER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67229"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb13f9fd0fe1989910758b78046ce312722ea540", "fields": {"code_postal": "67250", "code_commune_insee": "67254", "libell_d_acheminement": "KUTZENHAUSEN", "ligne_5": "OBERKUTZENHAUSEN", "nom_de_la_commune": "KUTZENHAUSEN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa384e73fcfab4430da25794bee949188a8dc7b7", "fields": {"nom_de_la_commune": "LAMPERTSLOCH", "libell_d_acheminement": "LAMPERTSLOCH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67257"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3fcc65902db6e67132b2a261b06766753b279c0", "fields": {"nom_de_la_commune": "LOCHWILLER", "libell_d_acheminement": "LOCHWILLER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67272"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664ee75660a7fb78ef6fd73e69b5f43b56ff060d", "fields": {"nom_de_la_commune": "MAENNOLSHEIM", "libell_d_acheminement": "MAENNOLSHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67279"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ea081c914bfc43fc7da2d8def6f31eb1b2e509", "fields": {"nom_de_la_commune": "MATZENHEIM", "libell_d_acheminement": "MATZENHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67285"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959ef87a1ff590c1d054fcd2b72ce116c0b95ce1", "fields": {"nom_de_la_commune": "MOMMENHEIM", "libell_d_acheminement": "MOMMENHEIM", "code_postal": "67670", "coordonnees_gps": [48.7613693186, 7.64473130495], "code_commune_insee": "67301"}, "geometry": {"type": "Point", "coordinates": [7.64473130495, 48.7613693186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff56181b16a4cac10fdcea7acd3a59fbb5caaa7", "fields": {"nom_de_la_commune": "MONSWILLER", "libell_d_acheminement": "MONSWILLER", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67302"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc756ed0dbaa526b16165bcf256716f318e48929", "fields": {"nom_de_la_commune": "MUNCHHAUSEN", "libell_d_acheminement": "MUNCHHAUSEN", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67308"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24da34d893b705df322f5fda905e2e644335e4b8", "fields": {"nom_de_la_commune": "MUTZENHOUSE", "libell_d_acheminement": "MUTZENHOUSE", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67312"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cbc693d42ed0371bd26ae6a4189eabb827440a", "fields": {"nom_de_la_commune": "NORDHOUSE", "libell_d_acheminement": "NORDHOUSE", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67336"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d24f3beac9f810e052ecb212ebadc57f90ce382", "fields": {"nom_de_la_commune": "NOTHALTEN", "libell_d_acheminement": "NOTHALTEN", "code_postal": "67680", "coordonnees_gps": [48.3522236097, 7.46155942515], "code_commune_insee": "67337"}, "geometry": {"type": "Point", "coordinates": [7.46155942515, 48.3522236097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b27258c949feb0073bb6fa41d9c3508fc37453", "fields": {"code_postal": "67660", "code_commune_insee": "67339", "libell_d_acheminement": "BETSCHDORF", "ligne_5": "REIMERSWILLER", "nom_de_la_commune": "BETSCHDORF", "coordonnees_gps": [48.8932955893, 7.92442100196]}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a7056c88237f9dfbb220c43a0642415b3380e5", "fields": {"nom_de_la_commune": "OBERHOFFEN SUR MODER", "libell_d_acheminement": "OBERHOFFEN SUR MODER", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67345"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d8bd86a2c914138cdc592bdafad175620699da", "fields": {"code_postal": "67240", "code_commune_insee": "67345", "libell_d_acheminement": "OBERHOFFEN SUR MODER", "ligne_5": "CAMP D OBERHOFFEN", "nom_de_la_commune": "OBERHOFFEN SUR MODER", "coordonnees_gps": [48.7680189809, 7.86094825926]}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1486d16129167f7db0eb02ae9001294b3daa88d", "fields": {"code_postal": "67330", "code_commune_insee": "67347", "libell_d_acheminement": "OBERMODERN ZUTZENDORF", "ligne_5": "ZUTZENDORF", "nom_de_la_commune": "OBERMODERN ZUTZENDORF", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbbd65bfb7f245df299db2e89c9098c63a64796", "fields": {"code_postal": "67160", "code_commune_insee": "67351", "libell_d_acheminement": "SEEBACH", "ligne_5": "NIEDERSEEBACH", "nom_de_la_commune": "SEEBACH", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ad5a5c1fcd0f8dab848da73baabd067b0bb9b1", "fields": {"nom_de_la_commune": "OLWISHEIM", "libell_d_acheminement": "OLWISHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67361"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037febe08bcd1eb3cd759ccf2836b5dadc04ee20", "fields": {"nom_de_la_commune": "OSTHOFFEN", "libell_d_acheminement": "OSTHOFFEN", "code_postal": "67990", "coordonnees_gps": [48.5903450304, 7.56134207926], "code_commune_insee": "67363"}, "geometry": {"type": "Point", "coordinates": [7.56134207926, 48.5903450304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876ca3c5279b69259ef91720f0ddfa7efc82f099", "fields": {"nom_de_la_commune": "LA PETITE PIERRE", "libell_d_acheminement": "LA PETITE PIERRE", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67371"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8007f8592354355793aa00154f4f87452179e2ed", "fields": {"code_postal": "67350", "code_commune_insee": "67372", "libell_d_acheminement": "VAL DE MODER", "ligne_5": "LA WALCK", "nom_de_la_commune": "VAL DE MODER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f13720d9e025957d7d3cba12f349a202d5a4438", "fields": {"code_postal": "67420", "code_commune_insee": "67377", "libell_d_acheminement": "PLAINE", "ligne_5": "POUTAY", "nom_de_la_commune": "PLAINE", "coordonnees_gps": [48.3874894068, 7.1481297444]}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9d4944fa5f04d8cf996b2a8b6700a746c82333", "fields": {"nom_de_la_commune": "RHINAU", "libell_d_acheminement": "RHINAU", "code_postal": "67860", "coordonnees_gps": [48.3174289749, 7.68184154693], "code_commune_insee": "67397"}, "geometry": {"type": "Point", "coordinates": [7.68184154693, 48.3174289749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1668911fd685a25d6de46a5274f6a5f2427057c7", "fields": {"nom_de_la_commune": "RIMSDORF", "libell_d_acheminement": "RIMSDORF", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67401"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805be09efc67f3416ff9997d068a5676862bbf86", "fields": {"nom_de_la_commune": "ROPPENHEIM", "libell_d_acheminement": "ROPPENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67409"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958eee40a8be06d76c15a0b4230b66f26e3eff5e", "fields": {"nom_de_la_commune": "ROSSFELD", "libell_d_acheminement": "ROSSFELD", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67412"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fad80ac7c129952376033e55d9d828118725a4e", "fields": {"nom_de_la_commune": "ROTHBACH", "libell_d_acheminement": "ROTHBACH", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67415"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174d40f160a78d6992b4145ef9a674380fa44d1a", "fields": {"nom_de_la_commune": "SAASENHEIM", "libell_d_acheminement": "SAASENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67422"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b5bbc254903c3e5fe89ef955fd194962281bd4", "fields": {"nom_de_la_commune": "SAULXURES", "libell_d_acheminement": "SAULXURES", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67436"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19caa50ef1aec48bde5d347eda6fe85476cc03ab", "fields": {"nom_de_la_commune": "SCHALKENDORF", "libell_d_acheminement": "SCHALKENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67441"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3017c368832b686d35e4ead244b705b7cff99b6a", "fields": {"code_postal": "67130", "code_commune_insee": "67448", "libell_d_acheminement": "SCHIRMECK", "ligne_5": "WACKENBACH", "nom_de_la_commune": "SCHIRMECK", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172cecffd1b989ee63a20749df1f544384e3ce38", "fields": {"code_postal": "67370", "code_commune_insee": "67452", "libell_d_acheminement": "SCHNERSHEIM", "ligne_5": "AVENHEIM", "nom_de_la_commune": "SCHNERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899b0a244e29aeab073678160025a2a7c492ebb9", "fields": {"code_postal": "67370", "code_commune_insee": "67452", "libell_d_acheminement": "SCHNERSHEIM", "ligne_5": "KLEINFRANKENHEIM", "nom_de_la_commune": "SCHNERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0231ac719207485498326eccd4e24d8e994a04d0", "fields": {"nom_de_la_commune": "SCHOENENBOURG", "libell_d_acheminement": "SCHOENENBOURG", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67455"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1665b76f5be3cf6f44d93c474fe385f8b65d6cc", "fields": {"nom_de_la_commune": "SCHOPPERTEN", "libell_d_acheminement": "SCHOPPERTEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67456"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d007e21f96577634729bd70e6c4f56a14a3196", "fields": {"nom_de_la_commune": "SCHWINDRATZHEIM", "libell_d_acheminement": "SCHWINDRATZHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67460"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5852a11df1d1f21d8d4dbb2fbb300cd05960bf17", "fields": {"nom_de_la_commune": "SCHWOBSHEIM", "libell_d_acheminement": "SCHWOBSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67461"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aaff22ee33eb2d736944cde79967a58b732482b", "fields": {"nom_de_la_commune": "SERMERSHEIM", "libell_d_acheminement": "SERMERSHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67464"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66875e55aa9f1137805f20b420496bc73ed9ddea", "fields": {"nom_de_la_commune": "SIEWILLER", "libell_d_acheminement": "SIEWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67467"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d077f3a37b0765a91051dd3f5862317675537c0", "fields": {"nom_de_la_commune": "DOMMARTIN LES TOUL", "libell_d_acheminement": "DOMMARTIN LES TOUL", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54167"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1022b18434ff30b7978e86f624aa630f88f8bf59", "fields": {"nom_de_la_commune": "DOMMARTIN SOUS AMANCE", "libell_d_acheminement": "DOMMARTIN SOUS AMANCE", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54168"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2b5e495ac184434679265b7962252bb109cfb7", "fields": {"nom_de_la_commune": "DOMPRIX", "libell_d_acheminement": "DOMPRIX", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54169"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5379467c5c30c42491cfe5f07217aeb94570f9e5", "fields": {"nom_de_la_commune": "DOMPTAIL EN L AIR", "libell_d_acheminement": "DOMPTAIL EN L AIR", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54170"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae162607628f2b9957b1277f31308e39cc41617b", "fields": {"nom_de_la_commune": "DONCOURT LES CONFLANS", "libell_d_acheminement": "DONCOURT LES CONFLANS", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54171"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f19562dad34de8a001587c8c50ebdf48314a56", "fields": {"nom_de_la_commune": "ECROUVES", "libell_d_acheminement": "ECROUVES", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54174"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cee790e5adff4cf55113fdad24585cd151f2cc0", "fields": {"nom_de_la_commune": "EINVAUX", "libell_d_acheminement": "EINVAUX", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54175"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a862395618d44ae296c0709034146dd30189dc4c", "fields": {"nom_de_la_commune": "ERBEVILLER SUR AMEZULE", "libell_d_acheminement": "ERBEVILLER SUR AMEZULE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54180"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d377347d947c0bbfd0aed46d9388c03f6d1cc3", "fields": {"nom_de_la_commune": "ESSEY LES NANCY", "libell_d_acheminement": "ESSEY LES NANCY", "code_postal": "54270", "coordonnees_gps": [48.7079752445, 6.232804092], "code_commune_insee": "54184"}, "geometry": {"type": "Point", "coordinates": [6.232804092, 48.7079752445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84975edfb8ab69472bb646d8ba03999196c566d3", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54189"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076b264d50b2481524caa7d797391a0691c7afd0", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54192"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c2500c08a9152270e5de8d558ed847ed6497db", "fields": {"nom_de_la_commune": "FEY EN HAYE", "libell_d_acheminement": "FEY EN HAYE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54193"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43d2a481b898721043b477dbe86bcbf5d5c873c", "fields": {"nom_de_la_commune": "FLIREY", "libell_d_acheminement": "FLIREY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54200"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1bbeba185072ad4e19f59d19a045d3e8cac63b2", "fields": {"nom_de_la_commune": "FORCELLES SOUS GUGNEY", "libell_d_acheminement": "FORCELLES SOUS GUGNEY", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54204"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78a77341331a9cb7776ffa18821ad2f55241474", "fields": {"nom_de_la_commune": "FREMONVILLE", "libell_d_acheminement": "FREMONVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54211"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc1136be86e1522ca469ce75364c5342b2dcfed", "fields": {"nom_de_la_commune": "GERBECOURT ET HAPLEMONT", "libell_d_acheminement": "GERBECOURT ET HAPLEMONT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54221"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569fed64daed89744f4aff429760767fe71f0d2e", "fields": {"nom_de_la_commune": "GIRAUMONT", "libell_d_acheminement": "GIRAUMONT", "code_postal": "54780", "coordonnees_gps": [49.1732943616, 5.91641313825], "code_commune_insee": "54227"}, "geometry": {"type": "Point", "coordinates": [5.91641313825, 49.1732943616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2ae010aa4f4e2e27f6bb8e22766a44bbf610a92", "fields": {"nom_de_la_commune": "GLONVILLE", "libell_d_acheminement": "GLONVILLE", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54229"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0079454527d0c05ce4edb417997e1b7de3e4fa18", "fields": {"nom_de_la_commune": "GONDREVILLE", "libell_d_acheminement": "GONDREVILLE", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54232"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379a793877f5ab9786277d50a2f6bb23ccffd1e6", "fields": {"nom_de_la_commune": "GORCY", "libell_d_acheminement": "GORCY", "code_postal": "54730", "coordonnees_gps": [49.5332181757, 5.65682394495], "code_commune_insee": "54234"}, "geometry": {"type": "Point", "coordinates": [5.65682394495, 49.5332181757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375973ef0b00556c6e8d015fa794212afbf4d975", "fields": {"nom_de_la_commune": "GYE", "libell_d_acheminement": "GYE", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54242"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2474edffd2fbf9b8542da682b6208a69e75b8be", "fields": {"nom_de_la_commune": "HABLAINVILLE", "libell_d_acheminement": "HABLAINVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54243"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb07ea877142938ea1cdbfd3cb83c2b1eeaad3f6", "fields": {"nom_de_la_commune": "HAMONVILLE", "libell_d_acheminement": "HAMONVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54248"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a7be6df4465f9179ff88bdec881094f8477de6", "fields": {"nom_de_la_commune": "HARBOUEY", "libell_d_acheminement": "HARBOUEY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54251"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30aa7f980b86eec1146c1688089b9562313a660c", "fields": {"nom_de_la_commune": "HAUCOURT MOULAINE", "libell_d_acheminement": "HAUCOURT MOULAINE", "code_postal": "54860", "coordonnees_gps": [49.4962809644, 5.80724274639], "code_commune_insee": "54254"}, "geometry": {"type": "Point", "coordinates": [5.80724274639, 49.4962809644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76318faff49ac6c05956340ae72fe405e521675", "fields": {"nom_de_la_commune": "HEILLECOURT", "libell_d_acheminement": "HEILLECOURT", "code_postal": "54180", "coordonnees_gps": [48.6456781443, 6.18472060521], "code_commune_insee": "54257"}, "geometry": {"type": "Point", "coordinates": [6.18472060521, 48.6456781443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f623388a0641e9848f1b34c27fb640315fd59cb", "fields": {"nom_de_la_commune": "HOUDREVILLE", "libell_d_acheminement": "HOUDREVILLE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54266"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2df62f34aa7714b8445d205a4da545c760476a3", "fields": {"nom_de_la_commune": "HOUSSEVILLE", "libell_d_acheminement": "HOUSSEVILLE", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54268"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8456552c968d921e132cf6bc2caa71ac0545a9ea", "fields": {"nom_de_la_commune": "JAILLON", "libell_d_acheminement": "JAILLON", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54272"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add3004205958b21e076a1b71c4653e7c4f39351", "fields": {"nom_de_la_commune": "JARNY", "libell_d_acheminement": "JARNY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54273"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181b23e4eb56fa15e40168d74e0d91a6b1effe51", "fields": {"nom_de_la_commune": "JEANDELIZE", "libell_d_acheminement": "JEANDELIZE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54277"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1c9d795588258fb520c05d0a7546d708e261e9", "fields": {"nom_de_la_commune": "JEZAINVILLE", "libell_d_acheminement": "JEZAINVILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54279"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218933ec6ec3a01235a4bba2e753aa85f6506111", "fields": {"nom_de_la_commune": "JOPPECOURT", "libell_d_acheminement": "JOPPECOURT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54282"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "917cc7e53243eb039e343455e4448cda17e2d81e", "fields": {"nom_de_la_commune": "LAITRE SOUS AMANCE", "libell_d_acheminement": "LAITRE SOUS AMANCE", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54289"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072b8e586203edd4846c3c6042c8e3613135c7dc", "fields": {"nom_de_la_commune": "LANEUVEVILLE AUX BOIS", "libell_d_acheminement": "LANEUVEVILLE AUX BOIS", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54297"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f7717b470602fac67037db0b1fb6c55f38cc84", "fields": {"nom_de_la_commune": "LANEUVEVILLE DEVANT NANCY", "libell_d_acheminement": "LANEUVEVILLE DEVANT NANCY", "code_postal": "54410", "coordonnees_gps": [48.6455435814, 6.24186804631], "code_commune_insee": "54300"}, "geometry": {"type": "Point", "coordinates": [6.24186804631, 48.6455435814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e3e4608556300b4233998f47b0c9ddd2eec028", "fields": {"nom_de_la_commune": "LANTEFONTAINE", "libell_d_acheminement": "LANTEFONTAINE", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54302"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9501c70a379d53670d143475db97d94bd5ac91", "fields": {"nom_de_la_commune": "LESMENILS", "libell_d_acheminement": "LESMENILS", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54312"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790740968d6dc4efcb99851ca55c538a7e4f430a", "fields": {"code_postal": "54260", "code_commune_insee": "54322", "libell_d_acheminement": "LONGUYON", "ligne_5": "NOERS", "nom_de_la_commune": "LONGUYON", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86502e833fe3058702a422ab34ed2c8a5d86691e", "fields": {"code_postal": "54260", "code_commune_insee": "54322", "libell_d_acheminement": "LONGUYON", "ligne_5": "VILLANCY", "nom_de_la_commune": "LONGUYON", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28893b213cf03391b8cc523868cba8119f71961a", "fields": {"nom_de_la_commune": "LONGWY", "libell_d_acheminement": "LONGWY", "code_postal": "54400", "coordonnees_gps": [49.5244232599, 5.7294177983], "code_commune_insee": "54323"}, "geometry": {"type": "Point", "coordinates": [5.7294177983, 49.5244232599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc510d3dd7fa8e400a5be158d74666b682701521", "fields": {"nom_de_la_commune": "LOREY", "libell_d_acheminement": "LOREY", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54324"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b3aaa8aeb6b57c0c338bbacd53d9329fac4b65", "fields": {"nom_de_la_commune": "MAIXE", "libell_d_acheminement": "MAIXE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54335"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e0dffe4723c7b6af11f549d6bc4392fe0024aa", "fields": {"nom_de_la_commune": "MALLELOY", "libell_d_acheminement": "MALLELOY", "code_postal": "54670", "coordonnees_gps": [48.7978385403, 6.14814767129], "code_commune_insee": "54338"}, "geometry": {"type": "Point", "coordinates": [6.14814767129, 48.7978385403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dafe1f257134ffe079c5d2b2325c329a20947af", "fields": {"nom_de_la_commune": "MARAINVILLER", "libell_d_acheminement": "MARAINVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54350"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86acdb2532cb2d286f570e859af7c0ac7ad70e3", "fields": {"nom_de_la_commune": "MAXEVILLE", "libell_d_acheminement": "MAXEVILLE", "code_postal": "54320", "coordonnees_gps": [48.7099239924, 6.15129717058], "code_commune_insee": "54357"}, "geometry": {"type": "Point", "coordinates": [6.15129717058, 48.7099239924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0886e5f5ecd997a2dd702e68fd6d6b5986e3bc", "fields": {"nom_de_la_commune": "MERCY LE HAUT", "libell_d_acheminement": "MERCY LE HAUT", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54363"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7effad5439ffc94c2b4dabd0986267eb8eef067", "fields": {"nom_de_la_commune": "MEREVILLE", "libell_d_acheminement": "MEREVILLE", "code_postal": "54850", "coordonnees_gps": [48.5983844972, 6.13949808979], "code_commune_insee": "54364"}, "geometry": {"type": "Point", "coordinates": [6.13949808979, 48.5983844972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab0d4dd031edd28ddc3b5013b2868103a8b73a0", "fields": {"nom_de_la_commune": "MESSEIN", "libell_d_acheminement": "MESSEIN", "code_postal": "54850", "coordonnees_gps": [48.5983844972, 6.13949808979], "code_commune_insee": "54366"}, "geometry": {"type": "Point", "coordinates": [6.13949808979, 48.5983844972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bbf70a3206e2290c79c964860ef9aacf34db4bb", "fields": {"nom_de_la_commune": "MIGNEVILLE", "libell_d_acheminement": "MIGNEVILLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54368"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75267f4717fb99f89d4f84156caf820fd7ca42a1", "fields": {"nom_de_la_commune": "MONCEL LES LUNEVILLE", "libell_d_acheminement": "MONCEL LES LUNEVILLE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54373"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84407dc6f6581d26ff9f0c4966b9203c0fe68ff7", "fields": {"nom_de_la_commune": "MONTIGNY SUR CHIERS", "libell_d_acheminement": "MONTIGNY SUR CHIERS", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54378"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7573de5dd53d59324f2ecc615f1658917023ec64", "fields": {"nom_de_la_commune": "MOUAVILLE", "libell_d_acheminement": "MOUAVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54389"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010fcc7859025cf09671e55c1c9a8b5839782845", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS", "code_postal": "54660", "coordonnees_gps": [49.2327229416, 5.95521267683], "code_commune_insee": "54391"}, "geometry": {"type": "Point", "coordinates": [5.95521267683, 49.2327229416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6cf377ee9fc13d18d16f84139a0153c0d6dca6", "fields": {"nom_de_la_commune": "MOYEN", "libell_d_acheminement": "MOYEN", "code_postal": "54118", "coordonnees_gps": [48.4874027009, 6.58698461134], "code_commune_insee": "54393"}, "geometry": {"type": "Point", "coordinates": [6.58698461134, 48.4874027009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3582833ea23351cd69daa60f4ec68de910a548", "fields": {"nom_de_la_commune": "NEUVES MAISONS", "libell_d_acheminement": "NEUVES MAISONS", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54397"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67cea5ac19eb52313841c9a79db78f5263d53bf", "fields": {"nom_de_la_commune": "NORROY LES PONT A MOUSSON", "libell_d_acheminement": "NORROY LES PONT A MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54403"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f17332d9a7a864988329e82f72b013d12d70ec", "fields": {"nom_de_la_commune": "OLLEY", "libell_d_acheminement": "OLLEY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54408"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed44fb95363b30d9e99f4e87ee6fa44f322c59b", "fields": {"nom_de_la_commune": "PAGNEY DERRIERE BARINE", "libell_d_acheminement": "PAGNEY DERRIERE BARINE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54414"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29e1f6c0fdb1aaa341b7f9999826e064fd0ee73", "fields": {"nom_de_la_commune": "PIERRE LA TREICHE", "libell_d_acheminement": "PIERRE LA TREICHE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54426"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44df66e2b72724c3305aaa45811ebf3ba322481", "fields": {"nom_de_la_commune": "PONT A MOUSSON", "libell_d_acheminement": "PONT A MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54431"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca9ad52216eafb8e54dade2acddae4aad59d5b6", "fields": {"nom_de_la_commune": "PRAYE", "libell_d_acheminement": "PRAYE", "code_postal": "54116", "coordonnees_gps": [48.452260444, 6.12393420575], "code_commune_insee": "54434"}, "geometry": {"type": "Point", "coordinates": [6.12393420575, 48.452260444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa0cb55e859d1b6ad1eba4aadb59504ed6402b5", "fields": {"nom_de_la_commune": "PREUTIN HIGNY", "libell_d_acheminement": "PREUTIN HIGNY", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54436"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8691caf55dcb20a0c5d0bff8e89cb05644067e98", "fields": {"nom_de_la_commune": "PUXIEUX", "libell_d_acheminement": "PUXIEUX", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54441"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201f99ec99f0d6587bd43ab5792708c61279c551", "fields": {"nom_de_la_commune": "QUEVILLONCOURT", "libell_d_acheminement": "QUEVILLONCOURT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54442"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de624220a6dbf199a5580836af12f879383c71af", "fields": {"code_postal": "54430", "code_commune_insee": "54451", "libell_d_acheminement": "REHON", "ligne_5": "HEUMONT", "nom_de_la_commune": "REHON", "coordonnees_gps": [49.4993467832, 5.75753479184]}, "geometry": {"type": "Point", "coordinates": [5.75753479184, 49.4993467832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a26629cea77e591034c0790940a22a25b998bb", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54461"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09b8caf2466dc0761745fb7c797f07600cd3c59", "fields": {"nom_de_la_commune": "ROUVES", "libell_d_acheminement": "ROUVES", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54464"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73d0309cb6ce4ec75e6743af3ad91db0d313ca9", "fields": {"nom_de_la_commune": "ROVILLE DEVANT BAYON", "libell_d_acheminement": "ROVILLE DEVANT BAYON", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54465"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ec937400d359f0bf12bd4d3ced2728b85b2648", "fields": {"nom_de_la_commune": "ROZELIEURES", "libell_d_acheminement": "ROZELIEURES", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54467"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596f6c5f0be0ade1d4be20b4a374240247ee2f94", "fields": {"nom_de_la_commune": "SAFFAIS", "libell_d_acheminement": "SAFFAIS", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54468"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18de0baff3daa51b576572b0d1fa0cd2588a5f37", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54478"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c2f7d288a9a23e0929ac640476c3bb52285e0", "fields": {"nom_de_la_commune": "STE POLE", "libell_d_acheminement": "STE POLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54484"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee8ce89553070fa610ea7e54508559325ff8996", "fields": {"nom_de_la_commune": "ST REMY AUX BOIS", "libell_d_acheminement": "ST REMY AUX BOIS", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54487"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d926974a0846c873c3c320bff637208474c2a3fd", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54488"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdb6ffa9e516d5e2ec9e4ee7656ba48c77e46cb", "fields": {"nom_de_la_commune": "SANCY", "libell_d_acheminement": "SANCY", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54491"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083f5b2708d492a3a029630c0ab467ba8348b433", "fields": {"nom_de_la_commune": "SAULXEROTTE", "libell_d_acheminement": "SAULXEROTTE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54494"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63d4a8bf22af93266b76d31c7861e4c7dd6f65d", "fields": {"nom_de_la_commune": "SEICHEPREY", "libell_d_acheminement": "SEICHEPREY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54499"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14818f7cc754420746e2ca504396a5a7613b1fa3", "fields": {"nom_de_la_commune": "SIONVILLER", "libell_d_acheminement": "SIONVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54507"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1443b5c4393971cfeb578ab6f4c6e03d944615d6", "fields": {"nom_de_la_commune": "PUSSIGNY", "libell_d_acheminement": "PUSSIGNY", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37190"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba1533fb52bc943541c4d03db8d336a6c3e048d", "fields": {"nom_de_la_commune": "RIGNY USSE", "libell_d_acheminement": "RIGNY USSE", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37197"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401c257062c0b109455138bc236d7423f400c1fc", "fields": {"nom_de_la_commune": "SACHE", "libell_d_acheminement": "SACHE", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37205"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaeebf1489187f0dadd12ced9093854c2ca94e77", "fields": {"nom_de_la_commune": "ST ANTOINE DU ROCHER", "libell_d_acheminement": "ST ANTOINE DU ROCHER", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37206"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "449822472be89945cd89148b4a47c8c11b19b4ed", "fields": {"nom_de_la_commune": "ST BRANCHS", "libell_d_acheminement": "ST BRANCHS", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37211"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6f0ffe1e904c2abd0160c29f2d2e14dae2ecf0", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR LE NAIS", "libell_d_acheminement": "ST CHRISTOPHE SUR LE NAIS", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37213"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7522f1c066aae6f0a6ac6489b95896a17d0292d", "fields": {"nom_de_la_commune": "ST GENOUPH", "libell_d_acheminement": "ST GENOUPH", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37219"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8894a51e17bd813484a4376cabebf6bd213d805", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37221"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a23a1c76ac886c03f928d1ac8b1573694e6b7b9", "fields": {"nom_de_la_commune": "ST MICHEL SUR LOIRE", "libell_d_acheminement": "ST MICHEL SUR LOIRE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37227"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f119f95492f03343e4493e7cd110042482e37b", "fields": {"nom_de_la_commune": "ST OUEN LES VIGNES", "libell_d_acheminement": "ST OUEN LES VIGNES", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37230"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55306aa82f818256433522cf17057c031400069b", "fields": {"nom_de_la_commune": "ST PATERNE RACAN", "libell_d_acheminement": "ST PATERNE RACAN", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37231"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5326fd7ddeb91cf34cbf5197e3e38999574d2857", "fields": {"nom_de_la_commune": "ST PIERRE DES CORPS", "libell_d_acheminement": "ST PIERRE DES CORPS", "code_postal": "37700", "coordonnees_gps": [47.3897548545, 0.752757543739], "code_commune_insee": "37233"}, "geometry": {"type": "Point", "coordinates": [0.752757543739, 47.3897548545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55bb53697fe9d512a4dff4174a0b8dc8d2a65cab", "fields": {"nom_de_la_commune": "SEPMES", "libell_d_acheminement": "SEPMES", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37247"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f4f01178a96c72b52c890bcec381f0b66e967d", "fields": {"nom_de_la_commune": "VILLAINES LES ROCHERS", "libell_d_acheminement": "VILLAINES LES ROCHERS", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37271"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed75da9d25a4c68c9c22d4960f4ea9c748cc020", "fields": {"nom_de_la_commune": "LA VILLE AUX DAMES", "libell_d_acheminement": "LA VILLE AUX DAMES", "code_postal": "37700", "coordonnees_gps": [47.3897548545, 0.752757543739], "code_commune_insee": "37273"}, "geometry": {"type": "Point", "coordinates": [0.752757543739, 47.3897548545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd49ad609922d86efe218c1596f200cd97ead6c4", "fields": {"nom_de_la_commune": "VILLEDOMER", "libell_d_acheminement": "VILLEDOMER", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37276"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c02ea5cc74d4172243bc6aabb190cd06906cf96", "fields": {"nom_de_la_commune": "LES ADRETS", "libell_d_acheminement": "LES ADRETS", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38002"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c697274bdaec2a192c1b202f52753bf5a6323b", "fields": {"nom_de_la_commune": "AMBEL", "libell_d_acheminement": "AMBEL", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38008"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276eb7ca18869dd74f3400d65ed164bdc2bf27e3", "fields": {"nom_de_la_commune": "AOSTE", "libell_d_acheminement": "AOSTE", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38012"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bc4e9002bf8eadeb5ad877d908845e71faf5cd", "fields": {"nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", "libell_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", "code_postal": "38630", "coordonnees_gps": [45.6308900094, 5.56433388526], "code_commune_insee": "38022"}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef1473afb39a22a914cd3fa548562deffe61915", "fields": {"code_postal": "38630", "code_commune_insee": "38022", "libell_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", "ligne_5": "THUELLIN", "nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", "coordonnees_gps": [45.6308900094, 5.56433388526]}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b54a5df1a99d7242df484ec10dedf20afa17e60", "fields": {"nom_de_la_commune": "NEUVILLEY", "libell_d_acheminement": "NEUVILLEY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39386"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d2b33bf4c31ebc20aff0c2990abb469f25da24", "fields": {"nom_de_la_commune": "NEVY LES DOLE", "libell_d_acheminement": "NEVY LES DOLE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39387"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a68d08d1254cca4a626fa99d564d4120c70fd6", "fields": {"nom_de_la_commune": "NEVY SUR SEILLE", "libell_d_acheminement": "NEVY SUR SEILLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39388"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ff9e9d40627e1fd3bb555da264d111f588253b", "fields": {"nom_de_la_commune": "ONGLIERES", "libell_d_acheminement": "ONGLIERES", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39393"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "579af518bf7434bfcceac28b6b750291480cda9e", "fields": {"nom_de_la_commune": "ONOZ", "libell_d_acheminement": "ONOZ", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39394"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8fc568a048cde218576e68adba2f0bb52de359", "fields": {"nom_de_la_commune": "OUSSIERES", "libell_d_acheminement": "OUSSIERES", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39401"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edefb8a2564e923c2d5c04672c8d3b4c83376275", "fields": {"nom_de_la_commune": "LE PASQUIER", "libell_d_acheminement": "LE PASQUIER", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39406"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e0ce44b9714aaa346b08c07e3da67f3d8b6bc3", "fields": {"nom_de_la_commune": "PERRIGNY", "libell_d_acheminement": "PERRIGNY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39411"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2df5933343ddab8ae75299db4a4fe6dec9e6e28", "fields": {"nom_de_la_commune": "LES PIARDS", "libell_d_acheminement": "LES PIARDS", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39417"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62240cc3cca81f0e5f0c38d1efe087d174e96ae0", "fields": {"nom_de_la_commune": "PLAINOISEAU", "libell_d_acheminement": "PLAINOISEAU", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39422"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a62be4aff5532f5ea6ad6591a2d5f8e6fa1d7bf", "fields": {"nom_de_la_commune": "LES PLANCHES PRES ARBOIS", "libell_d_acheminement": "LES PLANCHES PRES ARBOIS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39425"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064043bfd69e4375680db66db12a42e13757eb7d", "fields": {"nom_de_la_commune": "PLEURE", "libell_d_acheminement": "PLEURE", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39429"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee9212cb95817979096920e391b99367f67578e", "fields": {"nom_de_la_commune": "PLUMONT", "libell_d_acheminement": "PLUMONT", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39430"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16afc7b807558d289af2cf41e635149a17b4029", "fields": {"nom_de_la_commune": "PREMANON", "libell_d_acheminement": "PREMANON", "code_postal": "39220", "coordonnees_gps": [46.4870347389, 6.06467102901], "code_commune_insee": "39441"}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f75e894879aa75d5e715f5670438f25b36c658", "fields": {"nom_de_la_commune": "PRESILLY", "libell_d_acheminement": "PRESILLY", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39443"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b868409196578ba477e5c9133677844c40b4640", "fields": {"nom_de_la_commune": "PRETIN", "libell_d_acheminement": "PRETIN", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39444"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a700c153c403227e643209e1b255766278a736c", "fields": {"nom_de_la_commune": "PUPILLIN", "libell_d_acheminement": "PUPILLIN", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39446"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001821ac287d61c76581b0bf7dda7554f152851d", "fields": {"nom_de_la_commune": "RAVILLOLES", "libell_d_acheminement": "RAVILLOLES", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39453"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6a914980f4c180b166517d57eafee284b46217", "fields": {"nom_de_la_commune": "LES REPOTS", "libell_d_acheminement": "LES REPOTS", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39457"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f82cee91c62f021921c6e17f2b326d20084958", "fields": {"nom_de_la_commune": "REVIGNY", "libell_d_acheminement": "REVIGNY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39458"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b33f6c2cd59b542b75f825cd301ab1429038e7c9", "fields": {"nom_de_la_commune": "LA RIXOUSE", "libell_d_acheminement": "LA RIXOUSE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39460"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba6a13a0e62bce8810319f81ae63c037d665e1f", "fields": {"nom_de_la_commune": "ROTHONAY", "libell_d_acheminement": "ROTHONAY", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39468"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75fa5c2b367c00f60d99ce3c12c829a00ae3ab26", "fields": {"code_postal": "39400", "code_commune_insee": "39470", "libell_d_acheminement": "LES ROUSSES", "ligne_5": "LES ARCETS", "nom_de_la_commune": "LES ROUSSES", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f4add5411d9bc5a52ccfb23db7e14c13cf7c12", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39480"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8539081ad5c47ce97b4c057acdf42a9c88bbf7", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39490"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba062645c4b863b30ac368806ccbadac2ea66e6c", "fields": {"code_postal": "39130", "code_commune_insee": "39493", "libell_d_acheminement": "ST MAURICE CRILLAT", "ligne_5": "CRILLAT", "nom_de_la_commune": "ST MAURICE CRILLAT", "coordonnees_gps": [46.5974008072, 5.7778821985]}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f18ec117057eac5851780d3da79a8df2868174c", "fields": {"code_postal": "39270", "code_commune_insee": "39504", "libell_d_acheminement": "SARROGNA", "ligne_5": "MONTJOUVENT", "nom_de_la_commune": "SARROGNA", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7c9de1c98e8d6c4f04724e107de14ebc8993580", "fields": {"nom_de_la_commune": "SELIGNEY", "libell_d_acheminement": "SELIGNEY", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39507"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15654c51c7f4fe3e06c33bade8369a6cfd37f6ba", "fields": {"nom_de_la_commune": "SEPTMONCEL", "libell_d_acheminement": "SEPTMONCEL", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39510"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796a43d625f7bfe49de717b53e9f2e0561815a36", "fields": {"nom_de_la_commune": "SERGENON", "libell_d_acheminement": "SERGENON", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39512"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef32ff6f36bec12a4d7ee1b9b41ee38bf08c1567", "fields": {"nom_de_la_commune": "SIROD", "libell_d_acheminement": "SIROD", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39517"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3008d76d9adb16d64a6e080f976ddf69490fa4", "fields": {"nom_de_la_commune": "VALFIN SUR VALOUSE", "libell_d_acheminement": "VALFIN SUR VALOUSE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39542"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a260d3e7ea5ef792c021ef9a38ef945e39babb", "fields": {"nom_de_la_commune": "VERGES", "libell_d_acheminement": "VERGES", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39550"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e748b6d67cda8429569d613e91f92fed6a007e24", "fields": {"nom_de_la_commune": "VERS EN MONTAGNE", "libell_d_acheminement": "VERS EN MONTAGNE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39554"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cbc89563cc7fa7365d3105f8254ee3241d0e15", "fields": {"nom_de_la_commune": "VESCLES", "libell_d_acheminement": "VESCLES", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39557"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36dec426e07d12b67494e48b509a5b6244e01987", "fields": {"nom_de_la_commune": "VILLARD ST SAUVEUR", "libell_d_acheminement": "VILLARD ST SAUVEUR", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39560"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8768dcad165ec98b664d9caae35be6bc33b8ce1", "fields": {"nom_de_la_commune": "VILLETTE LES DOLE", "libell_d_acheminement": "VILLETTE LES DOLE", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39573"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083e512290395792ebf2e07154857b720143ff3e", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39576"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfef1256830d4424eebc1694e3dc534932e4d69", "fields": {"code_postal": "39230", "code_commune_insee": "39577", "libell_d_acheminement": "VINCENT FROIDEVILLE", "ligne_5": "FROIDEVILLE", "nom_de_la_commune": "VINCENT FROIDEVILLE", "coordonnees_gps": [46.8351760526, 5.52787683557]}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fa1bfa34e3a8d1e357dac1b66fd8bc2f06cab9", "fields": {"nom_de_la_commune": "VIRY", "libell_d_acheminement": "VIRY", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39579"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0524f39f13e530b31868105f8a7cac1f841a2cfc", "fields": {"nom_de_la_commune": "ANGRESSE", "libell_d_acheminement": "ANGRESSE", "code_postal": "40150", "coordonnees_gps": [43.6643756035, -1.39445931936], "code_commune_insee": "40004"}, "geometry": {"type": "Point", "coordinates": [-1.39445931936, 43.6643756035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fb8c2092d4d6155d3628d58f7d15326c8978390", "fields": {"nom_de_la_commune": "ARBOUCAVE", "libell_d_acheminement": "ARBOUCAVE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40005"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a47a356b66c9a493a2e743d37b887b0190f42ee", "fields": {"nom_de_la_commune": "AUBAGNAN", "libell_d_acheminement": "AUBAGNAN", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40016"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e1d3d5e69d4c7ec9b205bce1e2995108b33e77", "fields": {"nom_de_la_commune": "BAHUS SOUBIRAN", "libell_d_acheminement": "BAHUS SOUBIRAN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40022"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784a1bd393304f23218710bba4478e51bc0dca81", "fields": {"nom_de_la_commune": "BASCONS", "libell_d_acheminement": "BASCONS", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40025"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e8c0d5a09ed40054cb7220c918fa97449686b9", "fields": {"nom_de_la_commune": "BASTENNES", "libell_d_acheminement": "BASTENNES", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40028"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911ed33882180d5ff54dc9433236849a784bf42f", "fields": {"nom_de_la_commune": "BERGOUEY", "libell_d_acheminement": "BERGOUEY", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40038"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0624f5924f657e69e1325e28c2e3ffafc15f649", "fields": {"nom_de_la_commune": "BIAUDOS", "libell_d_acheminement": "BIAUDOS", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40044"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1496ba742808609091062180276957a4628c00a", "fields": {"nom_de_la_commune": "BOOS", "libell_d_acheminement": "BOOS", "code_postal": "40370", "coordonnees_gps": [43.9279657957, -0.915942648289], "code_commune_insee": "40048"}, "geometry": {"type": "Point", "coordinates": [-0.915942648289, 43.9279657957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2a1e612e451ba974a9c3856fb36061d3ced8f8d", "fields": {"nom_de_la_commune": "BOSTENS", "libell_d_acheminement": "BOSTENS", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40050"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf1def0f368201c298a9fd5636043da4074793f", "fields": {"nom_de_la_commune": "BRETAGNE DE MARSAN", "libell_d_acheminement": "BRETAGNE DE MARSAN", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40055"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab6edfcceaa40e2c0c1ac263d1ad230211bfab3", "fields": {"nom_de_la_commune": "BROCAS", "libell_d_acheminement": "BROCAS", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40056"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d53fe5b225c3e7786545fda14d2a5e163789d1", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40061"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6323f2a540ebc95482057b2f7000ec384fc3ed34", "fields": {"nom_de_la_commune": "CAMPET ET LAMOLERE", "libell_d_acheminement": "CAMPET ET LAMOLERE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40062"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8600e272be2ae70a41d0de44d8d659a80f975ff", "fields": {"nom_de_la_commune": "CASTELNAU CHALOSSE", "libell_d_acheminement": "CASTELNAU CHALOSSE", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40071"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46599508e5796109d6ac5b82678e0126f09e7f59", "fields": {"nom_de_la_commune": "CASTEL SARRAZIN", "libell_d_acheminement": "CASTEL SARRAZIN", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40074"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c899f3de3cd8b1d48b9a0dc65f6207297339097c", "fields": {"nom_de_la_commune": "CAUNA", "libell_d_acheminement": "CAUNA", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40076"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a726c8922a4937cb815c87bfcc982dd5f8eb6b1", "fields": {"nom_de_la_commune": "COMMENSACQ", "libell_d_acheminement": "COMMENSACQ", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40085"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326f58f9c7f1ada710e7b869ad063af4d159e152", "fields": {"nom_de_la_commune": "DAX", "libell_d_acheminement": "DAX", "code_postal": "40100", "coordonnees_gps": [43.7008871058, -1.05932787559], "code_commune_insee": "40088"}, "geometry": {"type": "Point", "coordinates": [-1.05932787559, 43.7008871058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adec25fa463b04103babf7cd609d4bfb75a2264", "fields": {"nom_de_la_commune": "DONZACQ", "libell_d_acheminement": "DONZACQ", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40090"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1990cfad39ece65597a7f43d9cb64472653f5e6", "fields": {"nom_de_la_commune": "ESCOURCE", "libell_d_acheminement": "ESCOURCE", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40094"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27802383144d66a60fb17bc6a6591af1578b979", "fields": {"nom_de_la_commune": "FARGUES", "libell_d_acheminement": "FARGUES", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40099"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a90be8c606d326210a4cea53fa2485d1afcd0ce", "fields": {"nom_de_la_commune": "GAAS", "libell_d_acheminement": "GAAS", "code_postal": "40350", "coordonnees_gps": [43.6178542813, -0.994527077008], "code_commune_insee": "40101"}, "geometry": {"type": "Point", "coordinates": [-0.994527077008, 43.6178542813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265297c2f8926365edc7a5b4d4c9dc624508d001", "fields": {"nom_de_la_commune": "GAREIN", "libell_d_acheminement": "GAREIN", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40105"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b89c06637d8be4af283d5cd1ad6f3fa82fea6a", "fields": {"nom_de_la_commune": "GEAUNE", "libell_d_acheminement": "GEAUNE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40110"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b98206154c01ce6a66869264266638ac1c787f", "fields": {"nom_de_la_commune": "GIBRET", "libell_d_acheminement": "GIBRET", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40112"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3528389e8816bcbe34c72bc8ed25945a144d22a0", "fields": {"nom_de_la_commune": "HAGETMAU", "libell_d_acheminement": "HAGETMAU", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40119"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7eda0f08cde571b9ac6e03601039f5e0452bf7", "fields": {"nom_de_la_commune": "HASTINGUES", "libell_d_acheminement": "HASTINGUES", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40120"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accbe5ca87c1f71f5c944fd978c47d0543d1b870", "fields": {"nom_de_la_commune": "HAURIET", "libell_d_acheminement": "HAURIET", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40121"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecb67b44c66f7384b7ee37b3625c8ce1fb8f9205", "fields": {"nom_de_la_commune": "HORSARRIEU", "libell_d_acheminement": "HORSARRIEU", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40128"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36ac03690e91efa93a407db4fadd551feb66971", "fields": {"nom_de_la_commune": "LABENNE", "libell_d_acheminement": "LABENNE", "code_postal": "40530", "coordonnees_gps": [43.5951486658, -1.43007761091], "code_commune_insee": "40133"}, "geometry": {"type": "Point", "coordinates": [-1.43007761091, 43.5951486658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0ea8f52f3ef379b39740e96657a9c47cae124c", "fields": {"nom_de_la_commune": "LAGLORIEUSE", "libell_d_acheminement": "LAGLORIEUSE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40139"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad3ad84fac9340ba82ebf06fa5f131841aec41b", "fields": {"nom_de_la_commune": "LALUQUE", "libell_d_acheminement": "LALUQUE", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40142"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c7d6ac5c61767767686375362b020d676c7b6e", "fields": {"nom_de_la_commune": "LARBEY", "libell_d_acheminement": "LARBEY", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40144"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566ae86f0e01d7369c891dbc45c0f5c9c138058e", "fields": {"nom_de_la_commune": "LARRIVIERE ST SAVIN", "libell_d_acheminement": "LARRIVIERE ST SAVIN", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40145"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416df9ae1960699d411470bc43ec03ba9c806f20", "fields": {"nom_de_la_commune": "LAUREDE", "libell_d_acheminement": "LAUREDE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40147"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057a030ecd09583a0b1088795c6e64ea03432582", "fields": {"nom_de_la_commune": "LE LEUY", "libell_d_acheminement": "LE LEUY", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40153"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfc760b4c260ca0023a78b2fef5008a793b4693", "fields": {"nom_de_la_commune": "LEVIGNACQ", "libell_d_acheminement": "LEVIGNACQ", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40154"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e8b6df4ba1a35ba2f91afe7a0e43284bd495a8", "fields": {"nom_de_la_commune": "LIT ET MIXE", "libell_d_acheminement": "LIT ET MIXE", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40157"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b3c0f91e94dfd2f9ddec13240acb4d22cf70aa", "fields": {"nom_de_la_commune": "MAURRIN", "libell_d_acheminement": "MAURRIN", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40175"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c3a2bd7e044328491417dc29d5dadad6e42989", "fields": {"nom_de_la_commune": "MEES", "libell_d_acheminement": "MEES", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40179"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2973d1949cdef5418dedbf89d98d05b9ffea1c9", "fields": {"nom_de_la_commune": "MEILHAN", "libell_d_acheminement": "MEILHAN", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40180"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c60c6e63413801875c3a5f6932fccbc1804a37d", "fields": {"nom_de_la_commune": "MOMUY", "libell_d_acheminement": "MOMUY", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40188"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da02d0631f7b239d3b78bb76fded00937898cc9", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40191"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e32b15abe7cb119387544eae041f6d018ba747a", "fields": {"nom_de_la_commune": "MONTEGUT", "libell_d_acheminement": "MONTEGUT", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40193"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de91fce7dd61b3ffe43213bdc30da9b7a60960c", "fields": {"nom_de_la_commune": "MONTFORT EN CHALOSSE", "libell_d_acheminement": "MONTFORT EN CHALOSSE", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40194"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9bd5487069f041a38ab2fbae84ad1c0cebd47e", "fields": {"nom_de_la_commune": "ONARD", "libell_d_acheminement": "ONARD", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40208"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8583ec43eb506b020505a2360b806611224f9ac2", "fields": {"nom_de_la_commune": "ONDRES", "libell_d_acheminement": "ONDRES", "code_postal": "40440", "coordonnees_gps": [43.5661833619, -1.4546231219], "code_commune_insee": "40209"}, "geometry": {"type": "Point", "coordinates": [-1.4546231219, 43.5661833619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf61164667970ae172df66f94f7539c95a4dfcd", "fields": {"code_postal": "40110", "code_commune_insee": "40210", "libell_d_acheminement": "ONESSE LAHARIE", "ligne_5": "LAHARIE", "nom_de_la_commune": "ONESSE LAHARIE", "coordonnees_gps": [44.0292859591, -0.886711370847]}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0893b51c70841ceb32a8ddef51a8e06aa5fa46", "fields": {"nom_de_la_commune": "PECORADE", "libell_d_acheminement": "PECORADE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40220"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82d4c46c30dad90a841ac9f21365d7b1c843cd4c", "fields": {"nom_de_la_commune": "POYARTIN", "libell_d_acheminement": "POYARTIN", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40236"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94e13b540ceeb48e022c4fb68fe8c481fcee425", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40251"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec821cdb97d34877d4e36123bf5f3bd0663a0102", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40258"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b59a6fe0c957b304cfaf18cbb3cb00ee7f1c4c", "fields": {"nom_de_la_commune": "ST JULIEN EN BORN", "libell_d_acheminement": "ST JULIEN EN BORN", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40266"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f5e6bb82815f7655f2e7cefa4787ea99321f4b", "fields": {"nom_de_la_commune": "ST PANDELON", "libell_d_acheminement": "ST PANDELON", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40277"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11254959cc504a6afbd499a5d3f7a9beb2624db", "fields": {"nom_de_la_commune": "ST VINCENT DE TYROSSE", "libell_d_acheminement": "ST VINCENT DE TYROSSE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40284"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3d657a03541ad522dd28d834d372a372caaf89", "fields": {"nom_de_la_commune": "SAUBRIGUES", "libell_d_acheminement": "SAUBRIGUES", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40292"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc88b3ceb8fa35ee5e80cf163cd3cf2766a31ae", "fields": {"nom_de_la_commune": "SEIGNOSSE", "libell_d_acheminement": "SEIGNOSSE", "code_postal": "40510", "coordonnees_gps": [43.7023305134, -1.39790012476], "code_commune_insee": "40296"}, "geometry": {"type": "Point", "coordinates": [-1.39790012476, 43.7023305134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d8360b03d1a217a2b58826b76f666e50828115", "fields": {"nom_de_la_commune": "SOLFERINO", "libell_d_acheminement": "SOLFERINO", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40303"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681eb13510ce900a4df0737089e6cbf624405284", "fields": {"nom_de_la_commune": "SOUPROSSE", "libell_d_acheminement": "SOUPROSSE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40309"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50583dcb0a51a837c4adfa31dfb136d1b89faac", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27265"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18c42ab2a87bb49e68110741c0bf856bcfd71e1", "fields": {"nom_de_la_commune": "FRESNE CAUVERVILLE", "libell_d_acheminement": "FRESNE CAUVERVILLE", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27269"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52753fd2c1fa7683301a1a2def946424a336cc50", "fields": {"nom_de_la_commune": "FRESNE L ARCHEVEQUE", "libell_d_acheminement": "FRESNE L ARCHEVEQUE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27270"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a95eb045e22abb0740756ccc228c17770b33ce8", "fields": {"code_postal": "27220", "code_commune_insee": "27277", "libell_d_acheminement": "LA BARONNIE", "ligne_5": "GARENCIERES", "nom_de_la_commune": "LA BARONNIE", "coordonnees_gps": [48.9045809856, 1.2729790086]}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5d027de4204733b08d277d2947d0b1271461a7", "fields": {"nom_de_la_commune": "GARENNES SUR EURE", "libell_d_acheminement": "GARENNES SUR EURE", "code_postal": "27780", "coordonnees_gps": [48.9095072645, 1.43438618943], "code_commune_insee": "27278"}, "geometry": {"type": "Point", "coordinates": [1.43438618943, 48.9095072645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4641a25295c0d9424cdca3c8d00ffc9d229ebf97", "fields": {"nom_de_la_commune": "LA GOULAFRIERE", "libell_d_acheminement": "LA GOULAFRIERE", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27289"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8409b91bd7250a4625fdfa223448132569f03f", "fields": {"nom_de_la_commune": "GRAVIGNY", "libell_d_acheminement": "GRAVIGNY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27299"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa67771eedab31e35617a6b3c8a2932da22e570c", "fields": {"nom_de_la_commune": "GROSSOEUVRE", "libell_d_acheminement": "GROSSOEUVRE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27301"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e693a97c0d9b61f3a32868f5a1dba34abe7ed78", "fields": {"code_postal": "27370", "code_commune_insee": "27302", "libell_d_acheminement": "LE BOSC DU THEIL", "ligne_5": "LE GROS THEIL", "nom_de_la_commune": "LE BOSC DU THEIL", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87824d03f05ae653249049dd1eaca9d134015882", "fields": {"nom_de_la_commune": "GUISENIERS", "libell_d_acheminement": "GUISENIERS", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27307"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a934db00186681c515ac0f1e33b4ca62fe0124b1", "fields": {"nom_de_la_commune": "HAUVILLE", "libell_d_acheminement": "HAUVILLE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27316"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8398f2baa6e9ef5c7a74b9d1c6302e3359dc14e3", "fields": {"nom_de_la_commune": "LA HAYE DE CALLEVILLE", "libell_d_acheminement": "LA HAYE DE CALLEVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27318"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b445d4f78303ed440e3ca9a09f6350e980d4bc2", "fields": {"nom_de_la_commune": "LA HAYE LE COMTE", "libell_d_acheminement": "LA HAYE LE COMTE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27321"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f023193b04b7e7ef7aa1425fa1f373c724b39028", "fields": {"nom_de_la_commune": "LA HAYE MALHERBE", "libell_d_acheminement": "LA HAYE MALHERBE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27322"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "041ff28f63898955ce59c06e0b4ea19f608b4e77", "fields": {"nom_de_la_commune": "HEBECOURT", "libell_d_acheminement": "HEBECOURT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27324"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3cba58fc91b0fba4f29f13879e77e15a129a546", "fields": {"nom_de_la_commune": "HEUDICOURT", "libell_d_acheminement": "HEUDICOURT", "code_postal": "27860", "coordonnees_gps": [49.3342504503, 1.66205092492], "code_commune_insee": "27333"}, "geometry": {"type": "Point", "coordinates": [1.66205092492, 49.3342504503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d000ea8df310c1d74d1cff2f88f427b2c3ea6297", "fields": {"nom_de_la_commune": "HOULBEC COCHEREL", "libell_d_acheminement": "HOULBEC COCHEREL", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27343"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba7db3ccc6965ac10ce1df263ef24f007e1f324", "fields": {"nom_de_la_commune": "IGOVILLE", "libell_d_acheminement": "IGOVILLE", "code_postal": "27460", "coordonnees_gps": [49.3216784952, 1.17178716844], "code_commune_insee": "27348"}, "geometry": {"type": "Point", "coordinates": [1.17178716844, 49.3216784952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43e6824d5d94641b9825a71998ba8a005adb4e8", "fields": {"nom_de_la_commune": "ILLIERS L EVEQUE", "libell_d_acheminement": "ILLIERS L EVEQUE", "code_postal": "27770", "coordonnees_gps": [48.8248510871, 1.25896242019], "code_commune_insee": "27350"}, "geometry": {"type": "Point", "coordinates": [1.25896242019, 48.8248510871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6620a8cb7e57bbb6dffe6dd05fad313396de1f65", "fields": {"nom_de_la_commune": "IVRY LA BATAILLE", "libell_d_acheminement": "IVRY LA BATAILLE", "code_postal": "27540", "coordonnees_gps": [48.8858963291, 1.44635852874], "code_commune_insee": "27355"}, "geometry": {"type": "Point", "coordinates": [1.44635852874, 48.8858963291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b39ef028a6658e7c5588d2ace0d7878b6b9b2c8", "fields": {"nom_de_la_commune": "JOUY SUR EURE", "libell_d_acheminement": "JOUY SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27358"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0bb45674d46c0d52719f3ac86691b0372c98fc", "fields": {"code_postal": "27210", "code_commune_insee": "27361", "libell_d_acheminement": "LA LANDE ST LEGER", "ligne_5": "ST LEGER SUR BONNEVILLE", "nom_de_la_commune": "LA LANDE ST LEGER", "coordonnees_gps": [49.3651599552, 0.371153081403]}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f5b006ff876c31ea8db4a6eff16cfbc38658b9", "fields": {"nom_de_la_commune": "LETTEGUIVES", "libell_d_acheminement": "LETTEGUIVES", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27366"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13479fb7847e80c09805a98a63626cad1c98a0be", "fields": {"nom_de_la_commune": "LIEUREY", "libell_d_acheminement": "LIEUREY", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27367"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be181f4cae78373fc83a520262e1d783f990488", "fields": {"nom_de_la_commune": "LORLEAU", "libell_d_acheminement": "LORLEAU", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27373"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a841bf5cf4665a60752c136dff61ca913ae5df7f", "fields": {"nom_de_la_commune": "MARAIS VERNIER", "libell_d_acheminement": "MARAIS VERNIER", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27388"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f8f87a7f63d5d575d949e0c49fd14af7cf8c452", "fields": {"code_postal": "27240", "code_commune_insee": "27416", "libell_d_acheminement": "BUIS SUR DAMVILLE", "ligne_5": "CRETON", "nom_de_la_commune": "BUIS SUR DAMVILLE", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4d97c668fb06628c24a2adab78f81a4e91f11a", "fields": {"nom_de_la_commune": "MORSAN", "libell_d_acheminement": "MORSAN", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27418"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad89f55fbcf862f8ff25e021fd1cb17166c0fb57", "fields": {"nom_de_la_commune": "NAGEL SEEZ MESNIL", "libell_d_acheminement": "NAGEL SEEZ MESNIL", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27424"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02062f149ea6bcfc827b845eee70a38c3bb6548", "fields": {"nom_de_la_commune": "LA NEUVE LYRE", "libell_d_acheminement": "LA NEUVE LYRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27431"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2354b63927f5a2fa59a7bc79b5d69335026f4a06", "fields": {"nom_de_la_commune": "LA NEUVILLE DU BOSC", "libell_d_acheminement": "LA NEUVILLE DU BOSC", "code_postal": "27890", "coordonnees_gps": [49.1940187292, 0.815313589202], "code_commune_insee": "27432"}, "geometry": {"type": "Point", "coordinates": [0.815313589202, 49.1940187292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8191eff677b6bede77c43f8d85ac8bc0971f0213", "fields": {"nom_de_la_commune": "NEUVILLE SUR AUTHOU", "libell_d_acheminement": "NEUVILLE SUR AUTHOU", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27433"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3634eb748e4b03a59f7d050b876f81bf60e2b4c7", "fields": {"nom_de_la_commune": "NOGENT LE SEC", "libell_d_acheminement": "NOGENT LE SEC", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27436"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd1fd9cb65c462141759468f0159b0dd44f5171", "fields": {"nom_de_la_commune": "NOTRE DAME DU HAMEL", "libell_d_acheminement": "NOTRE DAME DU HAMEL", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27442"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b1e0591d746a0f76c784d488bcaa2ba15042e3b", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27446"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc74e9e8194ff8d677031e29bb097bd5f2191953", "fields": {"nom_de_la_commune": "PARVILLE", "libell_d_acheminement": "PARVILLE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27451"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f477ffe2f4bdb0bc8d2a47453ea54abbdcfd5d", "fields": {"nom_de_la_commune": "PERRUEL", "libell_d_acheminement": "PERRUEL", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27454"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f449e18c0a83fc0e4c0cbcfe0555d523adab98d", "fields": {"nom_de_la_commune": "PITRES", "libell_d_acheminement": "PITRES", "code_postal": "27590", "coordonnees_gps": [49.3310796095, 1.21716196064], "code_commune_insee": "27458"}, "geometry": {"type": "Point", "coordinates": [1.21716196064, 49.3310796095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cde3ce6c9ac6268eea84249560f0f3ee52045b7", "fields": {"nom_de_la_commune": "LE PLESSIS HEBERT", "libell_d_acheminement": "LE PLESSIS HEBERT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27465"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e60f6d9dbf2c4d79c8f80aec83c4b515c9fc54", "fields": {"nom_de_la_commune": "PONT DE L ARCHE", "libell_d_acheminement": "PONT DE L ARCHE", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27469"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5a593abfc64be46f8ff892dfc5f70ba60ec40ae", "fields": {"nom_de_la_commune": "PORTES", "libell_d_acheminement": "PORTES", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27472"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8c38d219b5b4063d145100518c517f133e7cf9", "fields": {"nom_de_la_commune": "POSES", "libell_d_acheminement": "POSES", "code_postal": "27740", "coordonnees_gps": [49.2998386126, 1.24045837179], "code_commune_insee": "27474"}, "geometry": {"type": "Point", "coordinates": [1.24045837179, 49.2998386126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc569551751cf4aa93afadd4a420d1e8b13de8d2", "fields": {"nom_de_la_commune": "PUCHAY", "libell_d_acheminement": "PUCHAY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27480"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c3867e4871a4e1549a3527582307b11e6dd4bf", "fields": {"nom_de_la_commune": "RADEPONT", "libell_d_acheminement": "RADEPONT", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27487"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f32aff01bee089b3b1657eb0fa2756bc287dc01", "fields": {"nom_de_la_commune": "RENNEVILLE", "libell_d_acheminement": "RENNEVILLE", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27488"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0a851888dc82da9b7c8d412d1cd3843af7ac2a", "fields": {"nom_de_la_commune": "ROMAN", "libell_d_acheminement": "ROMAN", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27491"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e015dbacf83d6e29a9ce6d372a0f678f6d92abe", "fields": {"nom_de_la_commune": "LA ROQUETTE", "libell_d_acheminement": "LA ROQUETTE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27495"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b095c8c34da91f96f7fde58de8bdd5c4a38ad802", "fields": {"nom_de_la_commune": "ST AGNAN DE CERNIERES", "libell_d_acheminement": "ST AGNAN DE CERNIERES", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27505"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa69ff8974f8fb17ac0df6f5881ab573907944d1", "fields": {"nom_de_la_commune": "ST AUBIN DE SCELLON", "libell_d_acheminement": "ST AUBIN DE SCELLON", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27512"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df1c3fa0a506af4abb114cd11277f3975d01531", "fields": {"nom_de_la_commune": "ST ETIENNE L ALLIER", "libell_d_acheminement": "ST ETIENNE L ALLIER", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27538"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3063fa47caf326e22e3562c865e3034e9bff64", "fields": {"nom_de_la_commune": "ST JEAN DU THENNEY", "libell_d_acheminement": "ST JEAN DU THENNEY", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27552"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a82ef5a698ee5c64d50036e5ca7135bc0c7444", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27554"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a942af9dc5c669f79cc14fcea65061b5358bb2", "fields": {"nom_de_la_commune": "STE MARIE DE VATIMESNIL", "libell_d_acheminement": "STE MARIE DE VATIMESNIL", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27567"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3c10072b0dfec29fa731e4585c84957b336e93", "fields": {"code_postal": "27160", "code_commune_insee": "27578", "libell_d_acheminement": "STE MARIE D ATTEZ", "ligne_5": "DAME MARIE", "nom_de_la_commune": "STE MARIE D ATTEZ", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd82e7be726e0d20c5d654a2dae24ecc4a5d1cd", "fields": {"nom_de_la_commune": "ST OUEN DES CHAMPS", "libell_d_acheminement": "ST OUEN DES CHAMPS", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27581"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c7022b80fb8f6c3221983856247b528a7d9299", "fields": {"nom_de_la_commune": "ST SAMSON DE LA ROQUE", "libell_d_acheminement": "ST SAMSON DE LA ROQUE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27601"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef55be132e5b60fb324d7be40f44216d9f4f4b0f", "fields": {"nom_de_la_commune": "ST SEBASTIEN DE MORSENT", "libell_d_acheminement": "ST SEBASTIEN DE MORSENT", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27602"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8997231a6f377b13943fc7e61f4b96850dec81b", "fields": {"nom_de_la_commune": "ST SIMEON", "libell_d_acheminement": "ST SIMEON", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27603"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96115264f5e04d2bed0c0a827ebbec48bd3eb64a", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27606"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f9880d985c9f5a9e1a8027f53ee8f65413d240", "fields": {"nom_de_la_commune": "ST VIGOR", "libell_d_acheminement": "ST VIGOR", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27611"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cf6c9d966e4e597dd94e7632a06e82a50e7bca", "fields": {"nom_de_la_commune": "SERQUIGNY", "libell_d_acheminement": "SERQUIGNY", "code_postal": "27470", "coordonnees_gps": [49.1014259839, 0.700715090149], "code_commune_insee": "27622"}, "geometry": {"type": "Point", "coordinates": [0.700715090149, 49.1014259839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc6aa5d587176d516fe51e04a57ed4ba8286b8a", "fields": {"nom_de_la_commune": "THIBOUVILLE", "libell_d_acheminement": "THIBOUVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27630"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89af255fc11e9941e230efcda94e4c66ade3638", "fields": {"nom_de_la_commune": "LE THUIT", "libell_d_acheminement": "LE THUIT", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27635"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39a435362adfd79290d82d36d81faba7d84e340", "fields": {"code_postal": "27370", "code_commune_insee": "27638", "libell_d_acheminement": "LE THUIT DE L OISON", "ligne_5": "LE THUIT ANGER", "nom_de_la_commune": "LE THUIT DE L OISON", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec9999a26a1bda0331c910665a5d2a2c65f29e4f", "fields": {"code_postal": "27370", "code_commune_insee": "27638", "libell_d_acheminement": "LE THUIT DE L OISON", "ligne_5": "LE THUIT SIMER", "nom_de_la_commune": "LE THUIT DE L OISON", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328739ba2671ab7ae04ad7f79536ea445ba199d2", "fields": {"nom_de_la_commune": "LE TILLEUL OTHON", "libell_d_acheminement": "LE TILLEUL OTHON", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27642"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10d10a938119e2fe7aa217fd06d7f485c6438c7", "fields": {"nom_de_la_commune": "TILLIERES SUR AVRE", "libell_d_acheminement": "TILLIERES SUR AVRE", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27643"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659a6b95c5c6fa6245df88f88a6b839cf22662ec", "fields": {"nom_de_la_commune": "TOUFFREVILLE", "libell_d_acheminement": "TOUFFREVILLE", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27649"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04165c8df4cc19bd9c238738685b78df54692073", "fields": {"nom_de_la_commune": "TOUTAINVILLE", "libell_d_acheminement": "TOUTAINVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27656"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40c19ea12c5d9f63733fc22c80a4a8973a3038b", "fields": {"nom_de_la_commune": "LE TRONQUAY", "libell_d_acheminement": "LE TRONQUAY", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27664"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223bd329bb640de05c52d5853fc21fe1b3d09758", "fields": {"nom_de_la_commune": "LA VACHERIE", "libell_d_acheminement": "LA VACHERIE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27666"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285cf121445f2b217e003d2af4e5db7a060a5273", "fields": {"nom_de_la_commune": "VANDRIMARE", "libell_d_acheminement": "VANDRIMARE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27670"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943a66953374154458e4f1f78318b4e739227d4b", "fields": {"nom_de_la_commune": "VENABLES", "libell_d_acheminement": "VENABLES", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27676"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e6ca547366f5708e9500c07fe45baad84c2000", "fields": {"nom_de_la_commune": "VERNEUIL SUR AVRE", "libell_d_acheminement": "VERNEUIL SUR AVRE", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27679"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760a33292ae2526fee4fd163e85b38139c104215", "fields": {"nom_de_la_commune": "VERNEUSSES", "libell_d_acheminement": "VERNEUSSES", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27680"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86fd1c0b72fd09d148d62e6b92ba0c87b3753bff", "fields": {"nom_de_la_commune": "VESLY", "libell_d_acheminement": "VESLY", "code_postal": "27870", "coordonnees_gps": [49.2421968033, 1.64200700948], "code_commune_insee": "27682"}, "geometry": {"type": "Point", "coordinates": [1.64200700948, 49.2421968033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b530173bb28c8535e300c38619ce05251fc9550", "fields": {"nom_de_la_commune": "LA VIEILLE LYRE", "libell_d_acheminement": "LA VIEILLE LYRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27685"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da008fe6818dd20302b8972fb504db1a250a418", "fields": {"code_postal": "27240", "code_commune_insee": "27693", "libell_d_acheminement": "SYLVAINS LES MOULINS", "ligne_5": "COULONGES", "nom_de_la_commune": "SYLVAINS LES MOULINS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603c52942b17e9ffe6e4037b997f442df311850b", "fields": {"nom_de_la_commune": "VOISCREVILLE", "libell_d_acheminement": "VOISCREVILLE", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27699"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8482159d9293d121bd272df50264462e838ff45c", "fields": {"nom_de_la_commune": "VRAIVILLE", "libell_d_acheminement": "VRAIVILLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27700"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cf2c497adf06a504d8b19ca99764f4dcf02843", "fields": {"nom_de_la_commune": "AMILLY", "libell_d_acheminement": "AMILLY", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28006"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a222cf7df042090ac8237483b173990742b185", "fields": {"nom_de_la_commune": "ARDELLES", "libell_d_acheminement": "ARDELLES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28008"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40456c576c052c70f965185abf55742996d5736", "fields": {"code_postal": "28700", "code_commune_insee": "28015", "libell_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", "ligne_5": "BLEURY", "nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", "coordonnees_gps": [48.4174133692, 1.78775113893]}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2026d554cc153b7b6ea3429a0897645b683922", "fields": {"code_postal": "28320", "code_commune_insee": "28023", "libell_d_acheminement": "BAILLEAU ARMENONVILLE", "ligne_5": "ARMENONVILLE LES GATINEAUX", "nom_de_la_commune": "BAILLEAU ARMENONVILLE", "coordonnees_gps": [48.5411997507, 1.69133759252]}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05b6d5a297d18f229c66d6c9d6e9a9fb2dad735", "fields": {"nom_de_la_commune": "BAUDREVILLE", "libell_d_acheminement": "BAUDREVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28026"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04a718539ab1d5a53d5e1d621fc1055c36ee578", "fields": {"nom_de_la_commune": "BAZOCHES LES HAUTES", "libell_d_acheminement": "BAZOCHES LES HAUTES", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28029"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c81343a652ba39e03cd15ea161651f9a82080a47", "fields": {"nom_de_la_commune": "BEAUMONT LES AUTELS", "libell_d_acheminement": "BEAUMONT LES AUTELS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28031"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4fa11fc57b8eba007fbc641b015e738acceb48", "fields": {"nom_de_la_commune": "BEROU LA MULOTIERE", "libell_d_acheminement": "BEROU LA MULOTIERE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28037"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0ae14cc58ba5125076c1b03d2eeef130d50c03", "fields": {"nom_de_la_commune": "BETHONVILLIERS", "libell_d_acheminement": "BETHONVILLIERS", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28038"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2b0b223ba85e293a6098abb94a7913831aa835", "fields": {"nom_de_la_commune": "BEVILLE LE COMTE", "libell_d_acheminement": "BEVILLE LE COMTE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28039"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41445113e2370541502b0e1566ee3d927fbe5c5", "fields": {"nom_de_la_commune": "BOISGASSON", "libell_d_acheminement": "BOISGASSON", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28044"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dcdc9a42fb716dfa1b4a06d6ca4606e484e7d4", "fields": {"nom_de_la_commune": "BOISVILLE LA ST PERE", "libell_d_acheminement": "BOISVILLE LA ST PERE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28047"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6304e543334a5fa7633dc6f42ae591a9bae91ca", "fields": {"nom_de_la_commune": "BOUGLAINVAL", "libell_d_acheminement": "BOUGLAINVAL", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28052"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd46edafde26e4f8dbda057e4527942d520ce50", "fields": {"nom_de_la_commune": "BRECHAMPS", "libell_d_acheminement": "BRECHAMPS", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28058"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cd62ebb0abdef3d43b01efb864ee114d178d45", "fields": {"nom_de_la_commune": "BREZOLLES", "libell_d_acheminement": "BREZOLLES", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28059"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78282a307a8471741a63e1f774dc8ee3be02904", "fields": {"nom_de_la_commune": "BROU", "libell_d_acheminement": "BROU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28061"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eacb23b612f044e392009e469848da9bafa62bf", "fields": {"nom_de_la_commune": "LA CHAPELLE FORAINVILLIERS", "libell_d_acheminement": "LA CHAPELLE FORAINVILLIERS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28076"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7814358f647e0f59665079d6078a780742905b", "fields": {"nom_de_la_commune": "CHAPELLE ROYALE", "libell_d_acheminement": "CHAPELLE ROYALE", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28079"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1aecc2999bc2597452d53602ae22470592308ec", "fields": {"nom_de_la_commune": "CHARBONNIERES", "libell_d_acheminement": "CHARBONNIERES", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28080"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e84b082b20150baa7f2ae95cbf647a7c1e237f46", "fields": {"nom_de_la_commune": "CHARPONT", "libell_d_acheminement": "CHARPONT", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28082"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5bb4f65020e691eed2fd180a47a8878ddec9f0e", "fields": {"nom_de_la_commune": "GAYAN", "libell_d_acheminement": "GAYAN", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65189"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249062ecf4f6ddb1d85f083198ae001ce0e6d081", "fields": {"nom_de_la_commune": "GENOS", "libell_d_acheminement": "GENOS", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65195"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882759398419aff5a5fd60e5ae59742a9a97c64e", "fields": {"nom_de_la_commune": "GERDE", "libell_d_acheminement": "GERDE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65198"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220a4fd28fcba9f5f65668f6867837fb56028e41", "fields": {"nom_de_la_commune": "GERMS SUR L OUSSOUET", "libell_d_acheminement": "GERMS SUR L OUSSOUET", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65200"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8dda16222dccc4ac3caeada95b1963ebdf51b3", "fields": {"nom_de_la_commune": "GEU", "libell_d_acheminement": "GEU", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65201"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16bdac179a23d03e6ca50dc6842b5b9b646382a", "fields": {"nom_de_la_commune": "HACHAN", "libell_d_acheminement": "HACHAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65214"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8171ac395f07c0d71017f4ebf3900d4993b3d164", "fields": {"code_postal": "65250", "code_commune_insee": "65218", "libell_d_acheminement": "HECHES", "ligne_5": "REBOUC", "nom_de_la_commune": "HECHES", "coordonnees_gps": [43.0306895829, 0.387562975856]}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e183c94b810681c7c23798f538c1f34ed0927f8", "fields": {"nom_de_la_commune": "JARRET", "libell_d_acheminement": "JARRET", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65233"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d1671c50212182f0532458e7d821e261418139", "fields": {"nom_de_la_commune": "JEZEAU", "libell_d_acheminement": "JEZEAU", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65234"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6200056e836ab6b13afa2b2a8074eb824b7d0a94", "fields": {"nom_de_la_commune": "JUILLAN", "libell_d_acheminement": "JUILLAN", "code_postal": "65290", "coordonnees_gps": [43.1908085674, 0.0212768080657], "code_commune_insee": "65235"}, "geometry": {"type": "Point", "coordinates": [0.0212768080657, 43.1908085674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1686d359b716b6e1f6d3dd16d611f0f67ad671", "fields": {"nom_de_la_commune": "JULOS", "libell_d_acheminement": "JULOS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65236"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039902b97fb814ccb3a2a2585ce87bd128d1a183", "fields": {"nom_de_la_commune": "JUNCALAS", "libell_d_acheminement": "JUNCALAS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65237"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aae413f1b3cb1b501e0525e389401c4831869b3", "fields": {"nom_de_la_commune": "LABORDE", "libell_d_acheminement": "LABORDE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65241"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c340c312affe59ca47c6c1a8d9e78fae03ebdd", "fields": {"nom_de_la_commune": "LAGRANGE", "libell_d_acheminement": "LAGRANGE", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65245"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1cc9326e09e69560514e69368a4868e761b4957", "fields": {"nom_de_la_commune": "ARRAYOU LAHITTE", "libell_d_acheminement": "ARRAYOU LAHITTE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65247"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693c588528fde8427c7e606a63cf4364c53ee8bc", "fields": {"nom_de_la_commune": "LAMEAC", "libell_d_acheminement": "LAMEAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65254"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086ca0c9f98b9841e450860d645825ab27dad281", "fields": {"nom_de_la_commune": "LANESPEDE", "libell_d_acheminement": "LANESPEDE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65256"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114ee576e22046e7b787208fb7a515d643f2718a", "fields": {"nom_de_la_commune": "LAU BALAGNAS", "libell_d_acheminement": "LAU BALAGNAS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65267"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3d370fc94ad2f6bd91290d82ca03091bce54fc", "fields": {"nom_de_la_commune": "LAYRISSE", "libell_d_acheminement": "LAYRISSE", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65268"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd1869e7b2c9b5ac40a3cacbdf9242b0ff0d727", "fields": {"nom_de_la_commune": "LESPOUEY", "libell_d_acheminement": "LESPOUEY", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65270"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2cc4400bb7b4ba1e349ca875d55076aed666c7c", "fields": {"nom_de_la_commune": "LHEZ", "libell_d_acheminement": "LHEZ", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65272"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087eff038be9f8e3d2da38379679038fb1aef069", "fields": {"nom_de_la_commune": "LIES", "libell_d_acheminement": "LIES", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65275"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5983166342ae3752abd1569f9144508292a9c4fc", "fields": {"nom_de_la_commune": "LOMBRES", "libell_d_acheminement": "LOMBRES", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65277"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e632e4591d14d8169313633532366d1ffc28c9c7", "fields": {"nom_de_la_commune": "LOMNE", "libell_d_acheminement": "LOMNE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65278"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5669c1d696994d4965908a72f60fd2f6e2e2109d", "fields": {"nom_de_la_commune": "LUC", "libell_d_acheminement": "LUC", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65290"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923fc3209de3e00f9c98fdb87fd233432f558fd8", "fields": {"code_postal": "65120", "code_commune_insee": "65295", "libell_d_acheminement": "LUZ ST SAUVEUR", "ligne_5": "ST SAUVEUR LES BAINS", "nom_de_la_commune": "LUZ ST SAUVEUR", "coordonnees_gps": [42.8310164277, 0.0356881047595]}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3294677ae4070b9b2e201ad2bb085d64996eac", "fields": {"nom_de_la_commune": "MADIRAN", "libell_d_acheminement": "MADIRAN", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65296"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f75ff16f8ff2f3ac618288ed242de669e3fdac8", "fields": {"nom_de_la_commune": "MAUBOURGUET", "libell_d_acheminement": "MAUBOURGUET", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65304"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091bb60fd516f41ea1bdd6ee7dffa0a3c98ffc0c", "fields": {"nom_de_la_commune": "MAZERES DE NESTE", "libell_d_acheminement": "MAZERES DE NESTE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65307"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a10de87f7dd80093c5cd1799f5a3293dfd22b8c", "fields": {"nom_de_la_commune": "MONLEON MAGNOAC", "libell_d_acheminement": "MONLEON MAGNOAC", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65315"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7543860652e8a65f0946781d8d5534b107d03b55", "fields": {"nom_de_la_commune": "MONTASTRUC", "libell_d_acheminement": "MONTASTRUC", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65318"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd7bad82a4d342520ee69c79f0d45034e6532fc", "fields": {"nom_de_la_commune": "MONTIGNAC", "libell_d_acheminement": "MONTIGNAC", "code_postal": "65690", "coordonnees_gps": [43.1995880438, 0.138139149082], "code_commune_insee": "65321"}, "geometry": {"type": "Point", "coordinates": [0.138139149082, 43.1995880438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b963679a25a9732c51f17f7580f46a34770ab1", "fields": {"nom_de_la_commune": "OLEAC DEBAT", "libell_d_acheminement": "OLEAC DEBAT", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65332"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b716862cd34977845cb96fde241d9b13fe74b9", "fields": {"nom_de_la_commune": "ORDIZAN", "libell_d_acheminement": "ORDIZAN", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65335"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b675e91cb828d8dd18c4d084b46618fa5e55c0df", "fields": {"nom_de_la_commune": "ORIEUX", "libell_d_acheminement": "ORIEUX", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65337"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43242c4eb922e9a9268ddd33eab7809d75228f41", "fields": {"nom_de_la_commune": "ORIGNAC", "libell_d_acheminement": "ORIGNAC", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65338"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfa94db9acc53feca13ca7f902ba3481050f3bb", "fields": {"nom_de_la_commune": "PEYRIGUERE", "libell_d_acheminement": "PEYRIGUERE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65359"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3972924a54ac944154d47ab73bf0846a16be8b", "fields": {"nom_de_la_commune": "PEYRUN", "libell_d_acheminement": "PEYRUN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65361"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9dd923c60d0aafad0a0aa622e1d8a3c21971fe1", "fields": {"nom_de_la_commune": "POUMAROUS", "libell_d_acheminement": "POUMAROUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65367"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a93ea54c7daad37c8f72510e7615d5f84b0bdd", "fields": {"nom_de_la_commune": "PUJO", "libell_d_acheminement": "PUJO", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65372"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d87c1b6613a5aadfc98b9ce6934b069cdb744bc", "fields": {"nom_de_la_commune": "RIS", "libell_d_acheminement": "RIS", "code_postal": "65590", "coordonnees_gps": [42.8710607597, 0.412551570718], "code_commune_insee": "65379"}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5416edc6a4e7f9496c7ad80173ffa6189f1b201", "fields": {"nom_de_la_commune": "SADOURNIN", "libell_d_acheminement": "SADOURNIN", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65383"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7afe225eee667c169d70b8da325c3b4bfd2f16d", "fields": {"nom_de_la_commune": "ST LEZER", "libell_d_acheminement": "ST LEZER", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65390"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16d4b3def863edb9bde189a9ec235539ddaacab", "fields": {"nom_de_la_commune": "ST PASTOUS", "libell_d_acheminement": "ST PASTOUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65393"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac1219d648c090a5c6d53533f49a2edc82efc6f", "fields": {"nom_de_la_commune": "SALIGOS", "libell_d_acheminement": "SALIGOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65399"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "967022c26498be2dbf5b5c4512d7eed58bc80afe", "fields": {"nom_de_la_commune": "SARLABOUS", "libell_d_acheminement": "SARLABOUS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65405"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1960f24011c8f51538bff705b3e65149e94a37db", "fields": {"nom_de_la_commune": "SARNIGUET", "libell_d_acheminement": "SARNIGUET", "code_postal": "65390", "coordonnees_gps": [43.3119188804, 0.08204368276], "code_commune_insee": "65406"}, "geometry": {"type": "Point", "coordinates": [0.08204368276, 43.3119188804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c1bc06e5aa7e84652dc59008cc10d6c8562b986", "fields": {"nom_de_la_commune": "SASSIS", "libell_d_acheminement": "SASSIS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65411"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63fb36f155d6dc994ae25f530c561e458fbd3905", "fields": {"nom_de_la_commune": "SEGALAS", "libell_d_acheminement": "SEGALAS", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65414"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214deea9776320b2d13a6dd6b8fbdb4151d144a7", "fields": {"nom_de_la_commune": "SEGUS", "libell_d_acheminement": "SEGUS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65415"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372fd9e3e0d033d69fb8825d34f63164d1ea398e", "fields": {"nom_de_la_commune": "SERE LANSO", "libell_d_acheminement": "SERE LANSO", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65421"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58c00485bf8882ff5e7434e007f2ec4ef1dfe5e", "fields": {"nom_de_la_commune": "TILHOUSE", "libell_d_acheminement": "TILHOUSE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65445"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf9c12a523c6cb36d36a626439fe0dd81cf14d87", "fields": {"nom_de_la_commune": "TUZAGUET", "libell_d_acheminement": "TUZAGUET", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65455"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bd44c2944fd6fb522dc50897fa6cad42b29acd", "fields": {"nom_de_la_commune": "UGLAS", "libell_d_acheminement": "UGLAS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65456"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b90f3d18e90a5844508a7b2bea9d42cea07f12", "fields": {"nom_de_la_commune": "UZ", "libell_d_acheminement": "UZ", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65458"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521dfd2e08d594c4106272bf6b0aae18e3a2dc13", "fields": {"nom_de_la_commune": "UZER", "libell_d_acheminement": "UZER", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65459"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1dda7e01709261891cfd6c8c3c33f9329aa6cd", "fields": {"nom_de_la_commune": "VIDOU", "libell_d_acheminement": "VIDOU", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65461"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a4d4a807d99f5582341b1dee91a02afae65f31", "fields": {"nom_de_la_commune": "VIEUZOS", "libell_d_acheminement": "VIEUZOS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65468"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13358568e0acd57103d038bcbc74cc976edccdf3", "fields": {"nom_de_la_commune": "VIGER", "libell_d_acheminement": "VIGER", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65470"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84fb7fcbc5cff2e92c2195820c466c2f6448e3d1", "fields": {"nom_de_la_commune": "VIGNEC", "libell_d_acheminement": "VIGNEC", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65471"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0deb17dfdc648fd147c230ca3b4e5bac539dc996", "fields": {"nom_de_la_commune": "VILLELONGUE", "libell_d_acheminement": "VILLELONGUE", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65473"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6d0dc11bfc4dbd10c7f1dcdef70a6bc0bde9c5", "fields": {"nom_de_la_commune": "VILLENAVE PRES MARSAC", "libell_d_acheminement": "VILLENAVE PRES MARSAC", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65477"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecf672cc12eeb283ced9b56918de39788042004", "fields": {"nom_de_la_commune": "VISCOS", "libell_d_acheminement": "VISCOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65478"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab43ead8717bac59fb751e28048a0a6e1e22e1f9", "fields": {"nom_de_la_commune": "VISKER", "libell_d_acheminement": "VISKER", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65479"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a37c6ed00a172c6635f7a90439dd1ea4f8ff662", "fields": {"nom_de_la_commune": "BAREGES", "libell_d_acheminement": "BAREGES", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65481"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1cec96272c5ea6f6ee80c02b56cadf9b7c19dc", "fields": {"nom_de_la_commune": "ANGOUSTRINE VILLENEUVE DES ESCALDES", "libell_d_acheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66005"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20dee28f0c697a5edf382d5b2d8e6918c9568dd2", "fields": {"code_postal": "66760", "code_commune_insee": "66005", "libell_d_acheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", "ligne_5": "VILLENEUVE DES ESCALDES", "nom_de_la_commune": "ANGOUSTRINE VILLENEUVE DES ESCALDES", "coordonnees_gps": [42.529853625, 1.88244729389]}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe129e7c59d1a15c172d7b77923ee58156d784b6", "fields": {"nom_de_la_commune": "ARLES SUR TECH", "libell_d_acheminement": "ARLES SUR TECH", "code_postal": "66150", "coordonnees_gps": [42.4639953782, 2.57094475406], "code_commune_insee": "66009"}, "geometry": {"type": "Point", "coordinates": [2.57094475406, 42.4639953782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece18ae2d8b4d69b5bc2b8ebce0fcd60e62e9162", "fields": {"nom_de_la_commune": "BAHO", "libell_d_acheminement": "BAHO", "code_postal": "66540", "coordonnees_gps": [42.706004136, 2.82015872285], "code_commune_insee": "66012"}, "geometry": {"type": "Point", "coordinates": [2.82015872285, 42.706004136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14470f331add35308d46371f65a3677655f3bd23", "fields": {"nom_de_la_commune": "BAIXAS", "libell_d_acheminement": "BAIXAS", "code_postal": "66390", "coordonnees_gps": [42.7456296535, 2.80571785995], "code_commune_insee": "66014"}, "geometry": {"type": "Point", "coordinates": [2.80571785995, 42.7456296535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971aa6630d21bfeac056c2e6a758a4fbaaf03df1", "fields": {"nom_de_la_commune": "BANYULS SUR MER", "libell_d_acheminement": "BANYULS SUR MER", "code_postal": "66650", "coordonnees_gps": [42.4611706779, 3.09951528001], "code_commune_insee": "66016"}, "geometry": {"type": "Point", "coordinates": [3.09951528001, 42.4611706779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce6771390d0d2072663283ac84d7588f338fdbbf", "fields": {"code_postal": "66420", "code_commune_insee": "66017", "libell_d_acheminement": "LE BARCARES", "ligne_5": "PORT BARCARES", "nom_de_la_commune": "LE BARCARES", "coordonnees_gps": [42.8127463649, 3.02827722038]}, "geometry": {"type": "Point", "coordinates": [3.02827722038, 42.8127463649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95940dc61c54b6fa6078e0de22b0161ee9526750", "fields": {"nom_de_la_commune": "BOLQUERE", "libell_d_acheminement": "BOLQUERE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66020"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23990491a25b0e3ba8f383970be122c619cd872b", "fields": {"code_postal": "66210", "code_commune_insee": "66020", "libell_d_acheminement": "BOLQUERE", "ligne_5": "SUPERBOLQUERE", "nom_de_la_commune": "BOLQUERE", "coordonnees_gps": [42.5768510498, 2.08522065901]}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1891a95a63c676c89d84fb2d191368871b71fb89", "fields": {"nom_de_la_commune": "BOULETERNERE", "libell_d_acheminement": "BOULETERNERE", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66023"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4da24da98dda206b699acffa5f2dfadd539d3f1", "fields": {"code_postal": "66760", "code_commune_insee": "66025", "libell_d_acheminement": "BOURG MADAME", "ligne_5": "CALDEGAS", "nom_de_la_commune": "BOURG MADAME", "coordonnees_gps": [42.529853625, 1.88244729389]}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b4c02b508c0a06b0be398614e7e1b577af5dd5", "fields": {"nom_de_la_commune": "LA CABANASSE", "libell_d_acheminement": "LA CABANASSE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66027"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d800fe67814d7c444636186b66a653b973ecf419", "fields": {"nom_de_la_commune": "CAIXAS", "libell_d_acheminement": "CAIXAS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66029"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2033ce33d3c69457f0a858ef54b94daef6e92556", "fields": {"nom_de_la_commune": "CAMPOME", "libell_d_acheminement": "CAMPOME", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66034"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3784e16787110f3110514af7dd0b2fcaec7b16ae", "fields": {"nom_de_la_commune": "CANAVEILLES", "libell_d_acheminement": "CANAVEILLES", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66036"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb863f3fa6e4b9396b7b75193cc8eb9177325d11", "fields": {"nom_de_la_commune": "CAUDIES DE CONFLENT", "libell_d_acheminement": "CAUDIES DE CONFLENT", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66047"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfea5749362c82cb1ec79af332313e666d2ba7c", "fields": {"nom_de_la_commune": "CODALET", "libell_d_acheminement": "CODALET", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66052"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b9ef8c552381074d9b0e59dfe530770f7b3e7d", "fields": {"nom_de_la_commune": "ELNE", "libell_d_acheminement": "ELNE", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66065"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c350f2457a6d72ef1229602c8bc74112a0d6b2", "fields": {"nom_de_la_commune": "ENVEITG", "libell_d_acheminement": "ENVEITG", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66066"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ba491481202fc1097fbc3bd168e314f4ea1469", "fields": {"nom_de_la_commune": "ESTAVAR", "libell_d_acheminement": "ESTAVAR", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66072"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f2bbed541f06a000a000b077b4658410c8bc42", "fields": {"nom_de_la_commune": "ESTOHER", "libell_d_acheminement": "ESTOHER", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66073"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6946461e73fe38e255fdf322ef03ad7634c4c0ad", "fields": {"nom_de_la_commune": "FILLOLS", "libell_d_acheminement": "FILLOLS", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66078"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05204766c60e5f3d4254bdcfdc34f4d25d65e289", "fields": {"nom_de_la_commune": "FUILLA", "libell_d_acheminement": "FUILLA", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66085"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0270bf09055c970d741d0b17023846195b17c26", "fields": {"nom_de_la_commune": "ILLE SUR TET", "libell_d_acheminement": "ILLE SUR TET", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66088"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b71d730572bea32a1826ea637a44de750502b72", "fields": {"nom_de_la_commune": "LATOUR DE CAROL", "libell_d_acheminement": "LATOUR DE CAROL", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66095"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71009c6d06084edbcd55ef7ffbe3b73f1f479bbd", "fields": {"nom_de_la_commune": "LESQUERDE", "libell_d_acheminement": "LESQUERDE", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66097"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5964eb3c7fab13ab4683a8721d5d4791616a1ee0", "fields": {"nom_de_la_commune": "LLO", "libell_d_acheminement": "LLO", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66100"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc885b3b5ecb848925a330add92c8055843c1cce", "fields": {"nom_de_la_commune": "MANTET", "libell_d_acheminement": "MANTET", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66102"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe6354d176f676e82dd2dfabeaacf1d7c198d78", "fields": {"nom_de_la_commune": "MARQUIXANES", "libell_d_acheminement": "MARQUIXANES", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66103"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c59bea25928b6e251ee2984a526de74b7b0cc4", "fields": {"nom_de_la_commune": "MAUREILLAS LAS ILLAS", "libell_d_acheminement": "MAUREILLAS LAS ILLAS", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66106"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1e88a80061d5c17dd6ee8d5f4b2cbe2296f1d4", "fields": {"code_postal": "66480", "code_commune_insee": "66106", "libell_d_acheminement": "MAUREILLAS LAS ILLAS", "ligne_5": "LAS ILLAS", "nom_de_la_commune": "MAUREILLAS LAS ILLAS", "coordonnees_gps": [42.4667287992, 2.83075140133]}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d6283202bf22a3447d683b4a99ab0fbf1ed759", "fields": {"nom_de_la_commune": "MONTESCOT", "libell_d_acheminement": "MONTESCOT", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66114"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3aece8d3fc3d147726d78c681e8db326bba9c7e", "fields": {"code_postal": "66120", "code_commune_insee": "66124", "libell_d_acheminement": "FONT ROMEU ODEILLO VIA", "ligne_5": "ODEILLO VIA", "nom_de_la_commune": "FONT ROMEU ODEILLO VIA", "coordonnees_gps": [42.5100577993, 2.01893656435]}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d6b00138739c445fa9702f5f78cc92dbe5aaf1", "fields": {"nom_de_la_commune": "OLETTE", "libell_d_acheminement": "OLETTE", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66125"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f231878d3966ec2c42866fd9d9d5e4642907dfc", "fields": {"nom_de_la_commune": "PALAU DEL VIDRE", "libell_d_acheminement": "PALAU DEL VIDRE", "code_postal": "66690", "coordonnees_gps": [42.522189398, 2.97653046487], "code_commune_insee": "66133"}, "geometry": {"type": "Point", "coordinates": [2.97653046487, 42.522189398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd89e29c6eb0f0ec06acd0511a43b7d9310bc54f", "fields": {"nom_de_la_commune": "SOULTZ LES BAINS", "libell_d_acheminement": "SOULTZ LES BAINS", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67473"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d4b37b1cc3b6c108adeb33d8e17f755e611549", "fields": {"nom_de_la_commune": "STEIGE", "libell_d_acheminement": "STEIGE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67477"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5005ddc2050a3ae19eee5b92bf32e3d9dc4bd936", "fields": {"nom_de_la_commune": "STRUTH", "libell_d_acheminement": "STRUTH", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67483"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1844d539f6c3471e2a577d2ddb212a75e1c23544", "fields": {"nom_de_la_commune": "STUNDWILLER", "libell_d_acheminement": "STUNDWILLER", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67484"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe064dbafac84ba93ba267a38cc671c4b72514c1", "fields": {"nom_de_la_commune": "SUNDHOUSE", "libell_d_acheminement": "SUNDHOUSE", "code_postal": "67920", "coordonnees_gps": [48.2548302573, 7.63036029569], "code_commune_insee": "67486"}, "geometry": {"type": "Point", "coordinates": [7.63036029569, 48.2548302573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d315cee5a52e987dc89d2b7a89a6d6b6ecef709", "fields": {"code_postal": "67440", "code_commune_insee": "67489", "libell_d_acheminement": "THAL MARMOUTIER", "ligne_5": "ST GALL", "nom_de_la_commune": "THAL MARMOUTIER", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79543df03eb97533e6f08d9c9080a875bff45ec0", "fields": {"nom_de_la_commune": "URMATT", "libell_d_acheminement": "URMATT", "code_postal": "67280", "coordonnees_gps": [48.5545295138, 7.30377202795], "code_commune_insee": "67500"}, "geometry": {"type": "Point", "coordinates": [7.30377202795, 48.5545295138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39470366869bf1d5579fe82440449308fa9b5250", "fields": {"nom_de_la_commune": "UTTENHEIM", "libell_d_acheminement": "UTTENHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67501"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cca4e273ede188bb96be8f293f0edef5a3f5021", "fields": {"nom_de_la_commune": "VALFF", "libell_d_acheminement": "VALFF", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67504"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50faefde89aea899b05eb8398a602ad62a0e9a59", "fields": {"nom_de_la_commune": "LA VANCELLE", "libell_d_acheminement": "LA VANCELLE", "code_postal": "67730", "coordonnees_gps": [48.2803512075, 7.36339905958], "code_commune_insee": "67505"}, "geometry": {"type": "Point", "coordinates": [7.36339905958, 48.2803512075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706e4092f1a422cd55c440bb824fd466f24b16b4", "fields": {"nom_de_la_commune": "WALBOURG", "libell_d_acheminement": "WALBOURG", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67511"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bc200a92e3a56527a3d7adae5b1b982de58919", "fields": {"nom_de_la_commune": "WALTENHEIM SUR ZORN", "libell_d_acheminement": "WALTENHEIM SUR ZORN", "code_postal": "67670", "coordonnees_gps": [48.7613693186, 7.64473130495], "code_commune_insee": "67516"}, "geometry": {"type": "Point", "coordinates": [7.64473130495, 48.7613693186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bb54bbb315fc11f2d8c3dbcf1881eb424cfc33", "fields": {"nom_de_la_commune": "LA WANTZENAU", "libell_d_acheminement": "LA WANTZENAU", "code_postal": "67610", "coordonnees_gps": [48.6591055879, 7.83132660472], "code_commune_insee": "67519"}, "geometry": {"type": "Point", "coordinates": [7.83132660472, 48.6591055879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cce6046c28bdb5ae2f84aef8e086e5423a9a198", "fields": {"code_postal": "67310", "code_commune_insee": "67520", "libell_d_acheminement": "WASSELONNE", "ligne_5": "BRECHLINGEN", "nom_de_la_commune": "WASSELONNE", "coordonnees_gps": [48.6178840196, 7.42141185001]}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9c2da51a6e76741c86b29f48700614c0510913", "fields": {"nom_de_la_commune": "WESTHOUSE", "libell_d_acheminement": "WESTHOUSE", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67526"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52bce64f1ae9c79a69acd6104dfdad636cd61b0f", "fields": {"nom_de_la_commune": "WESTHOUSE MARMOUTIER", "libell_d_acheminement": "WESTHOUSE MARMOUTIER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67527"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13ec11508a47f3e20f5bdbc8e2b9d62db5e7f8d", "fields": {"nom_de_la_commune": "WICKERSHEIM WILSHAUSEN", "libell_d_acheminement": "WICKERSHEIM WILSHAUSEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67530"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cda797f0fc3d28bd7d420c7b66667cd4382bc77", "fields": {"nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67539"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b4c49be97c3b455a913d1bc38fa971ab3eae3a", "fields": {"code_postal": "67170", "code_commune_insee": "67539", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "ligne_5": "HOHATZENHEIM", "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "coordonnees_gps": [48.7372742925, 7.70176270666]}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfd34da3e726f155d44329ff19b9b14e0e6619d", "fields": {"code_postal": "67270", "code_commune_insee": "67539", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "ligne_5": "GINGSHEIM", "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "coordonnees_gps": [48.7485075734, 7.5652768188]}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dbc29f08fc1dcdd3cf818bcf925f994db259a84", "fields": {"nom_de_la_commune": "WISCHES", "libell_d_acheminement": "WISCHES", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67543"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9062db21b145a4b9f94e753a2da0daeeb28377d", "fields": {"nom_de_la_commune": "WIWERSHEIM", "libell_d_acheminement": "WIWERSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67548"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca4967f63c405fa78907198ad9dab6f38bd7871", "fields": {"nom_de_la_commune": "ZITTERSHEIM", "libell_d_acheminement": "ZITTERSHEIM", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67559"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180e41642a9c57bc64517dfa32efa91a52990697", "fields": {"nom_de_la_commune": "BALGAU", "libell_d_acheminement": "BALGAU", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68016"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c8c7fafbb51bcc6121ff3fa3ad1d7ffc4a1370", "fields": {"nom_de_la_commune": "BALLERSDORF", "libell_d_acheminement": "BALLERSDORF", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68017"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59e56d71568fbba34b500c69e701664171bcd34", "fields": {"nom_de_la_commune": "BALSCHWILLER", "libell_d_acheminement": "BALSCHWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68018"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1acdec44349bd2895deb4808c1c38275b1262f", "fields": {"nom_de_la_commune": "BARTENHEIM", "libell_d_acheminement": "BARTENHEIM", "code_postal": "68870", "coordonnees_gps": [47.6331033531, 7.48190833837], "code_commune_insee": "68021"}, "geometry": {"type": "Point", "coordinates": [7.48190833837, 47.6331033531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0664c59759c16f1ab8a3e402024d074f8f0f6c", "fields": {"nom_de_la_commune": "BEBLENHEIM", "libell_d_acheminement": "BEBLENHEIM", "code_postal": "68980", "coordonnees_gps": [48.1597092029, 7.34129342284], "code_commune_insee": "68023"}, "geometry": {"type": "Point", "coordinates": [7.34129342284, 48.1597092029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205ca2b9d6eac5326b51ec879c630e060fef15ad", "fields": {"nom_de_la_commune": "BELLEMAGNY", "libell_d_acheminement": "BELLEMAGNY", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68024"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d056c176497c8f847453af7af21b694d63340c", "fields": {"nom_de_la_commune": "BERGHOLTZZELL", "libell_d_acheminement": "BERGHOLTZZELL", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68030"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9992911c5ffbc955e502622ca118292cf8080b31", "fields": {"nom_de_la_commune": "BITSCHWILLER LES THANN", "libell_d_acheminement": "BITSCHWILLER LES THANN", "code_postal": "68620", "coordonnees_gps": [47.8266830087, 7.06905643042], "code_commune_insee": "68040"}, "geometry": {"type": "Point", "coordinates": [7.06905643042, 47.8266830087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af7fcf138caf22fc63be8e7d23ba18d35e9468d", "fields": {"nom_de_la_commune": "BLODELSHEIM", "libell_d_acheminement": "BLODELSHEIM", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68041"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ad4c96b01872ae03a7cbbe4ab136069ad37f0d", "fields": {"nom_de_la_commune": "BOLLWILLER", "libell_d_acheminement": "BOLLWILLER", "code_postal": "68540", "coordonnees_gps": [47.8545137602, 7.25864777821], "code_commune_insee": "68043"}, "geometry": {"type": "Point", "coordinates": [7.25864777821, 47.8545137602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529834d50b95dbda93e4b954a3887b820fce4270", "fields": {"nom_de_la_commune": "LE BONHOMME", "libell_d_acheminement": "LE BONHOMME", "code_postal": "68650", "coordonnees_gps": [48.1617407345, 7.12836272368], "code_commune_insee": "68044"}, "geometry": {"type": "Point", "coordinates": [7.12836272368, 48.1617407345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea81759a92bd66dfc481027238c264b01ef62e88", "fields": {"nom_de_la_commune": "BRUEBACH", "libell_d_acheminement": "BRUEBACH", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68055"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996dcda6c89c818a29eb12e71c7405c19c45f3f3", "fields": {"nom_de_la_commune": "BUETHWILLER", "libell_d_acheminement": "BUETHWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68057"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee525b0dd1628fb254a5364fd7650221093f0d27", "fields": {"nom_de_la_commune": "BURNHAUPT LE HAUT", "libell_d_acheminement": "BURNHAUPT LE HAUT", "code_postal": "68520", "coordonnees_gps": [47.7328574448, 7.15152670714], "code_commune_insee": "68060"}, "geometry": {"type": "Point", "coordinates": [7.15152670714, 47.7328574448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e495deeac55bc572499dee7f53adf16c94f9f1f0", "fields": {"nom_de_la_commune": "GREZIEUX LE FROMENTAL", "libell_d_acheminement": "GREZIEUX LE FROMENTAL", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42105"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec907d4be93e1127979d7ccea364c47aff6ed1ff", "fields": {"nom_de_la_commune": "LEIGNEUX", "libell_d_acheminement": "LEIGNEUX", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42119"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd787d76ce80d08b5903122c9ad76f742c77e8bb", "fields": {"nom_de_la_commune": "LEZIGNEUX", "libell_d_acheminement": "LEZIGNEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42122"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4d875415ce8d8d0b918bb52f154c30fc2318b3", "fields": {"nom_de_la_commune": "MACLAS", "libell_d_acheminement": "MACLAS", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42129"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794e05c3aa4e6a0edc472c2db479b80b7f9de72f", "fields": {"nom_de_la_commune": "MALLEVAL", "libell_d_acheminement": "MALLEVAL", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42132"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4785073f77f9e6fdc944fac9288c7fd6ccae7dc", "fields": {"nom_de_la_commune": "MARCENOD", "libell_d_acheminement": "MARCENOD", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42133"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7baf743c37f469259be00244009042fe1842f232", "fields": {"nom_de_la_commune": "MARS", "libell_d_acheminement": "MARS", "code_postal": "42750", "coordonnees_gps": [46.1636009324, 4.23557932675], "code_commune_insee": "42141"}, "geometry": {"type": "Point", "coordinates": [4.23557932675, 46.1636009324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d2df30fffc6e0eecc8b3084eef9968e9248bd7", "fields": {"nom_de_la_commune": "NEAUX", "libell_d_acheminement": "NEAUX", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42153"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23e777af3696568a16adb0a33da48fcc2c3d272", "fields": {"nom_de_la_commune": "NERONDE", "libell_d_acheminement": "NERONDE", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42154"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40984089fd3e39a08edc435efaaea7873692725d", "fields": {"nom_de_la_commune": "NEULISE", "libell_d_acheminement": "NEULISE", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42156"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7d8e0b68d4d3b03e77c8dce71804be248fc8efd", "fields": {"nom_de_la_commune": "PANISSIERES", "libell_d_acheminement": "PANISSIERES", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42165"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c157b3fd5169adeef2554802a5fa3dd12e1755", "fields": {"nom_de_la_commune": "PERIGNEUX", "libell_d_acheminement": "PERIGNEUX", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42169"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915179e107865c565b02d2b95b1f4e1e9ba99126", "fields": {"nom_de_la_commune": "PINAY", "libell_d_acheminement": "PINAY", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42171"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce233b68cc5af370893e503d2ceab12967e2d23", "fields": {"nom_de_la_commune": "PLANFOY", "libell_d_acheminement": "PLANFOY", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42172"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3415e6525fb0ba47358accfb50aa202cf5ae9aa", "fields": {"nom_de_la_commune": "POUILLY LES FEURS", "libell_d_acheminement": "POUILLY LES FEURS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42175"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74da66033cd7f3dc8a3c00a044e337041b022d93", "fields": {"nom_de_la_commune": "POUILLY LES NONAINS", "libell_d_acheminement": "POUILLY LES NONAINS", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42176"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908609ce41f9d099587521fb24ea44c87990da20", "fields": {"nom_de_la_commune": "POUILLY SOUS CHARLIEU", "libell_d_acheminement": "POUILLY SOUS CHARLIEU", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42177"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d521530dedb67eaffeb8946b0d46def7c72237f", "fields": {"nom_de_la_commune": "RIORGES", "libell_d_acheminement": "RIORGES", "code_postal": "42153", "coordonnees_gps": [46.0434594454, 4.03449243651], "code_commune_insee": "42184"}, "geometry": {"type": "Point", "coordinates": [4.03449243651, 46.0434594454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a411edd44c596482b14e8b0ffa01532181cd689d", "fields": {"nom_de_la_commune": "ROISEY", "libell_d_acheminement": "ROISEY", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42191"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e7f7bdf11cc786fba4b07d191e91e31d708073", "fields": {"nom_de_la_commune": "SAIL LES BAINS", "libell_d_acheminement": "SAIL LES BAINS", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42194"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956a15ad6b04e7402e0507622975fc44a96ab7d6", "fields": {"nom_de_la_commune": "ST ALBAN LES EAUX", "libell_d_acheminement": "ST ALBAN LES EAUX", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42198"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba7977578605d5b927d01b41b941fa67852f0d4", "fields": {"nom_de_la_commune": "ST ANDRE LE PUY", "libell_d_acheminement": "ST ANDRE LE PUY", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42200"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69101b88746ff2774f919e4825ea8439efee8c40", "fields": {"nom_de_la_commune": "ST APPOLINARD", "libell_d_acheminement": "ST APPOLINARD", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42201"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729ffa50d0315ae7e451a8fa7a535ee9efc9d860", "fields": {"nom_de_la_commune": "ST BONNET LE COURREAU", "libell_d_acheminement": "ST BONNET LE COURREAU", "code_postal": "42940", "coordonnees_gps": [45.6531481683, 3.93398383728], "code_commune_insee": "42205"}, "geometry": {"type": "Point", "coordinates": [3.93398383728, 45.6531481683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32790f6473f6ce590ce96da41a04b5027b5d27eb", "fields": {"nom_de_la_commune": "ST GENEST LERPT", "libell_d_acheminement": "ST GENEST LERPT", "code_postal": "42530", "coordonnees_gps": [45.4552531869, 4.33153333366], "code_commune_insee": "42223"}, "geometry": {"type": "Point", "coordinates": [4.33153333366, 45.4552531869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1949ce11537c16762da4e691a718f45a30d893", "fields": {"nom_de_la_commune": "ST HAON LE VIEUX", "libell_d_acheminement": "ST HAON LE VIEUX", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42233"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d420fbd68b4ad65202a99439a20bf326ab0f44f", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42242"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181853fa58f13e21ea60d8a052228db1b26dd24a", "fields": {"nom_de_la_commune": "ST LAURENT ROCHEFORT", "libell_d_acheminement": "ST LAURENT ROCHEFORT", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42252"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5adf8f552deb5122ad340c0b587c99d1e13d27e", "fields": {"nom_de_la_commune": "ST MARCEL DE FELINES", "libell_d_acheminement": "ST MARCEL DE FELINES", "code_postal": "42122", "coordonnees_gps": [45.8611514365, 4.18707697159], "code_commune_insee": "42254"}, "geometry": {"type": "Point", "coordinates": [4.18707697159, 45.8611514365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8895648d9221c4c78499b59a92a5941236611bf", "fields": {"nom_de_la_commune": "ST MARCEL D URFE", "libell_d_acheminement": "ST MARCEL D URFE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42255"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b1bb35c5a0c4d70068bca9b877d619234704b5", "fields": {"nom_de_la_commune": "ST MAURICE EN GOURGOIS", "libell_d_acheminement": "ST MAURICE EN GOURGOIS", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42262"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41f35338b6e4435f39cc133c68e62114cc9c216", "fields": {"nom_de_la_commune": "ST PIERRE LA NOAILLE", "libell_d_acheminement": "ST PIERRE LA NOAILLE", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42273"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5872331b2f378404f4ae022e959bd41a53bdf874", "fields": {"nom_de_la_commune": "ST POLGUES", "libell_d_acheminement": "ST POLGUES", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42274"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2afaa5c7146fb87e203b523501c287bd376c2a", "fields": {"nom_de_la_commune": "ST PRIEST LA PRUGNE", "libell_d_acheminement": "ST PRIEST LA PRUGNE", "code_postal": "42830", "coordonnees_gps": [45.9518080744, 3.77484013363], "code_commune_insee": "42276"}, "geometry": {"type": "Point", "coordinates": [3.77484013363, 45.9518080744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a09426c79bb071ab1832c69e772f714313cefb8", "fields": {"nom_de_la_commune": "ST PRIEST LA VETRE", "libell_d_acheminement": "ST PRIEST LA VETRE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42278"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376bb075a292d57d2a403f07aff560cc79caa42a", "fields": {"nom_de_la_commune": "ST JUST ST RAMBERT", "libell_d_acheminement": "ST JUST ST RAMBERT", "code_postal": "42170", "coordonnees_gps": [45.4781366129, 4.24298529227], "code_commune_insee": "42279"}, "geometry": {"type": "Point", "coordinates": [4.24298529227, 45.4781366129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3125885dff4609e7b56d19e890aaa2a60270c85", "fields": {"nom_de_la_commune": "ST REGIS DU COIN", "libell_d_acheminement": "ST REGIS DU COIN", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42280"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f4145b771a0b59d94ece24daa042dbdb8c4a2c", "fields": {"nom_de_la_commune": "ST ROMAIN LA MOTTE", "libell_d_acheminement": "ST ROMAIN LA MOTTE", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42284"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469bd9bb07b64b9ca7751bc6f02b92dff3d269ed", "fields": {"nom_de_la_commune": "ST SIXTE", "libell_d_acheminement": "ST SIXTE", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42288"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab384450376db7a4d1b325cde62b920855cc4691", "fields": {"nom_de_la_commune": "ST VINCENT DE BOISSET", "libell_d_acheminement": "ST VINCENT DE BOISSET", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42294"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ef81b7b8ebd7e7310cdcfc3ee2bd8c3c07e2c6", "fields": {"nom_de_la_commune": "SEVELINGES", "libell_d_acheminement": "SEVELINGES", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42300"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc53446334d3af6679b8ab89dc28cdaeb260212", "fields": {"nom_de_la_commune": "SORBIERS", "libell_d_acheminement": "SORBIERS", "code_postal": "42290", "coordonnees_gps": [45.4992581933, 4.43794592057], "code_commune_insee": "42302"}, "geometry": {"type": "Point", "coordinates": [4.43794592057, 45.4992581933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88ca9ef739cb461ec68b698e26ca57beac6ced2", "fields": {"nom_de_la_commune": "TARENTAISE", "libell_d_acheminement": "TARENTAISE", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42306"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80adf0b00a33c1f78487584bded24ecf68b21584", "fields": {"nom_de_la_commune": "LA TOUR EN JAREZ", "libell_d_acheminement": "LA TOUR EN JAREZ", "code_postal": "42580", "coordonnees_gps": [45.4919279434, 4.38174482251], "code_commune_insee": "42311"}, "geometry": {"type": "Point", "coordinates": [4.38174482251, 45.4919279434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf2b9120cc55f40b03fb2f9edec7d060a7d0596", "fields": {"nom_de_la_commune": "UNIAS", "libell_d_acheminement": "UNIAS", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42315"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c173235c0d1843a0bb261fa5c1753c4cdb055bcd", "fields": {"nom_de_la_commune": "UNIEUX", "libell_d_acheminement": "UNIEUX", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42316"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f679142d8c2179d3676791f5528ea014197abbc7", "fields": {"nom_de_la_commune": "VALFLEURY", "libell_d_acheminement": "VALFLEURY", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42320"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59e5b841bf74ee39c76c523cd9159e7b5619118", "fields": {"nom_de_la_commune": "VEAUCHETTE", "libell_d_acheminement": "VEAUCHETTE", "code_postal": "42340", "coordonnees_gps": [45.5673382654, 4.26910796554], "code_commune_insee": "42324"}, "geometry": {"type": "Point", "coordinates": [4.26910796554, 45.5673382654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cb0e99ba132553137ed7e1524682c30cbdf3fa", "fields": {"nom_de_la_commune": "VILLEMONTAIS", "libell_d_acheminement": "VILLEMONTAIS", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42331"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a5076ce5b0773b8481dc6887c8c1880ada42a7", "fields": {"nom_de_la_commune": "VILLERS", "libell_d_acheminement": "VILLERS", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42333"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7c06475357724c0c23f9c3f793503baa77c45d", "fields": {"nom_de_la_commune": "ARSAC EN VELAY", "libell_d_acheminement": "ARSAC EN VELAY", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43010"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45a11c039a3da6cef5dd41f0a7e9f1b77571ec8", "fields": {"nom_de_la_commune": "VISSAC AUTEYRAC", "libell_d_acheminement": "VISSAC AUTEYRAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43013"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c2909555b7c2315fe0e5ee6303363042e5ce580", "fields": {"nom_de_la_commune": "AUTRAC", "libell_d_acheminement": "AUTRAC", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43014"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99cbac044ffb7316fabab9e0a0174963ad6abe", "fields": {"nom_de_la_commune": "AUVERS", "libell_d_acheminement": "AUVERS", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43015"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f47d7f269135d4fb11c2a2ee74d1c864179a061", "fields": {"nom_de_la_commune": "AUZON", "libell_d_acheminement": "AUZON", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43016"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "611df4ac242a880a93c05b42f315ef845aed983a", "fields": {"nom_de_la_commune": "BELLEVUE LA MONTAGNE", "libell_d_acheminement": "BELLEVUE LA MONTAGNE", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43026"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a592496b062a84c80d7666d22147bd4015c4142d", "fields": {"nom_de_la_commune": "BERBEZIT", "libell_d_acheminement": "BERBEZIT", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43027"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fced3a528a24b4ec26401761ad9abf633af205b", "fields": {"nom_de_la_commune": "LE BOUCHET ST NICOLAS", "libell_d_acheminement": "LE BOUCHET ST NICOLAS", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43037"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4cf9050f9f07639c5d96d50f460b2a96fd48d6", "fields": {"nom_de_la_commune": "LA CHAISE DIEU", "libell_d_acheminement": "LA CHAISE DIEU", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43048"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b9a4b10fddbc0c5cb91bdd2ed94b4b60d3a2c4", "fields": {"nom_de_la_commune": "CHAMPAGNAC LE VIEUX", "libell_d_acheminement": "CHAMPAGNAC LE VIEUX", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43052"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86480d53236dcac6ca576abc6a75a076cc57fd45", "fields": {"nom_de_la_commune": "CHANALEILLES", "libell_d_acheminement": "CHANALEILLES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43054"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1595d6236a62919d0678a0db92d83d6831820a1", "fields": {"nom_de_la_commune": "CHANTEUGES", "libell_d_acheminement": "CHANTEUGES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43056"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d8ddb06feb96d65a43646afe8e728a2283c0e7", "fields": {"nom_de_la_commune": "CHASPINHAC", "libell_d_acheminement": "CHASPINHAC", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43061"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d20c10290b14d06c4ab5354f701b52e29a71f71", "fields": {"nom_de_la_commune": "AVIGNONET", "libell_d_acheminement": "AVIGNONET", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38023"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4939d04b468fb803c91ff4e3564ab2f72b7077", "fields": {"nom_de_la_commune": "BEAUCROISSANT", "libell_d_acheminement": "BEAUCROISSANT", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38030"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3e22fdaf263abb0d4076e40ba1232775251740", "fields": {"nom_de_la_commune": "BEVENAIS", "libell_d_acheminement": "BEVENAIS", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38042"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b892d29727a236d2244773d03ff61bfbdd32b9", "fields": {"nom_de_la_commune": "BILIEU", "libell_d_acheminement": "BILIEU", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38043"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a475213ee712462383988318f6bc70906dc396f7", "fields": {"nom_de_la_commune": "CESSIEU", "libell_d_acheminement": "CESSIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38064"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860806ce44c5d26f28a7118cdc26266f1381d00f", "fields": {"nom_de_la_commune": "LE CHAMP PRES FROGES", "libell_d_acheminement": "LE CHAMP PRES FROGES", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38070"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0921ed9fbf96c02515178c65b2bceab30f6883", "fields": {"nom_de_la_commune": "LA CHAPELLE DE SURIEU", "libell_d_acheminement": "LA CHAPELLE DE SURIEU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38077"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b09705b7ef5140a77b2be2122dde97e0be8c0f", "fields": {"nom_de_la_commune": "CHARANCIEU", "libell_d_acheminement": "CHARANCIEU", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38080"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f33423d8fb83d8bd15f1f15c87b56a1db43fe90", "fields": {"nom_de_la_commune": "CHARAVINES", "libell_d_acheminement": "CHARAVINES", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38082"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d53c7a07a10552c2ee9113036f257e4b9b0ea75", "fields": {"nom_de_la_commune": "CHATEAU BERNARD", "libell_d_acheminement": "CHATEAU BERNARD", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38090"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506f59399ae2f8509993288fd4257c3582585b48", "fields": {"nom_de_la_commune": "CHATTE", "libell_d_acheminement": "CHATTE", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38095"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c608980079919322b9f0ac21b675338661dd2e6", "fields": {"nom_de_la_commune": "CHEVRIERES", "libell_d_acheminement": "CHEVRIERES", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38099"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45eff3ac3de96c4443b234253c409bf6a7a6cf2", "fields": {"nom_de_la_commune": "CHEYSSIEU", "libell_d_acheminement": "CHEYSSIEU", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38101"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1848ef5a49be965bac0e00d0e1def3c69dc9c2e3", "fields": {"nom_de_la_commune": "CHOZEAU", "libell_d_acheminement": "CHOZEAU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38109"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca85cf9271a7fd2cd3a4e862b4de58602fe2a6a", "fields": {"nom_de_la_commune": "ST MARTIN DE LA CLUZE", "libell_d_acheminement": "ST MARTIN DE LA CLUZE", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38115"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a8d03a6fdacd4489927aeef8b468469d44058f", "fields": {"nom_de_la_commune": "CORDEAC", "libell_d_acheminement": "CORDEAC", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38125"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b14697aad34b9176703a1d437c54762e288b7e6", "fields": {"nom_de_la_commune": "CORPS", "libell_d_acheminement": "CORPS", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38128"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f809d44913a7ba06efaf212e92093a58563046a", "fields": {"nom_de_la_commune": "LA COTE ST ANDRE", "libell_d_acheminement": "LA COTE ST ANDRE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38130"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae15623e8c2e9a0d7dbb8c978c445880d2fdfee5", "fields": {"nom_de_la_commune": "COURTENAY", "libell_d_acheminement": "COURTENAY", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38135"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a651d172e765408cd65f4f31bd4b7cd1e6e49f", "fields": {"nom_de_la_commune": "DIZIMIEU", "libell_d_acheminement": "DIZIMIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38146"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2636c89f7f816d803dfb596f5ba5e2f60401f9db", "fields": {"nom_de_la_commune": "DOLOMIEU", "libell_d_acheminement": "DOLOMIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38148"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37f2b5400e546345b16a7daf92c09d621397672", "fields": {"nom_de_la_commune": "ENGINS", "libell_d_acheminement": "ENGINS", "code_postal": "38360", "coordonnees_gps": [45.2140316159, 5.62374044814], "code_commune_insee": "38153"}, "geometry": {"type": "Point", "coordinates": [5.62374044814, 45.2140316159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4104597bac3b58a008a430987b1d662f8cbcaa3f", "fields": {"nom_de_la_commune": "EYBENS", "libell_d_acheminement": "EYBENS", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38158"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aed327a82eacc52d56cecdc724ff7dcb89366c12", "fields": {"nom_de_la_commune": "FARAMANS", "libell_d_acheminement": "FARAMANS", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38161"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8057c3f25a03b9264e7f165e8f2c5f2a41d23f47", "fields": {"nom_de_la_commune": "FAVERGES DE LA TOUR", "libell_d_acheminement": "FAVERGES DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38162"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4ed5d579674a15daa3b87c7dbdab6f54d471df", "fields": {"nom_de_la_commune": "LA FLACHERE", "libell_d_acheminement": "LA FLACHERE", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38166"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90da6294b1b5d48854b425ba20ee31b1a197844c", "fields": {"nom_de_la_commune": "FLACHERES", "libell_d_acheminement": "FLACHERES", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38167"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a33980a4a6087dd02a4c99ab3bb6f18fddb78f", "fields": {"nom_de_la_commune": "FOUR", "libell_d_acheminement": "FOUR", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38172"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112d3996a7f5e09a41431f9d97cbf727f6d350a3", "fields": {"nom_de_la_commune": "LA FRETTE", "libell_d_acheminement": "LA FRETTE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38174"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e5cc50b1ddd29c2780534d11b2432b4138054b", "fields": {"nom_de_la_commune": "FROGES", "libell_d_acheminement": "FROGES", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38175"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c453621f4e4c246282b933f38a5ba665396ac2", "fields": {"nom_de_la_commune": "FRONTONAS", "libell_d_acheminement": "FRONTONAS", "code_postal": "38290", "coordonnees_gps": [45.6634032734, 5.1509887973], "code_commune_insee": "38176"}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4662e0edbf8b54cbdbd70928aa132fa72f9d5b5", "fields": {"nom_de_la_commune": "GRENOBLE", "libell_d_acheminement": "GRENOBLE", "code_postal": "38100", "coordonnees_gps": [45.182155682, 5.72079920349], "code_commune_insee": "38185"}, "geometry": {"type": "Point", "coordinates": [5.72079920349, 45.182155682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0fce14efe2012a79cbd458c798d6fd2a489203c", "fields": {"code_postal": "38750", "code_commune_insee": "38191", "libell_d_acheminement": "HUEZ", "ligne_5": "L ALPE D HUEZ", "nom_de_la_commune": "HUEZ", "coordonnees_gps": [45.0970333607, 6.08483184334]}, "geometry": {"type": "Point", "coordinates": [6.08483184334, 45.0970333607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f84ed831cfcd129b26c806bde65bd8ce795d5131", "fields": {"nom_de_la_commune": "IZEAUX", "libell_d_acheminement": "IZEAUX", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38194"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d07e645759b01e614ea4b7422b1f5e77e866246", "fields": {"nom_de_la_commune": "IZERON", "libell_d_acheminement": "IZERON", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38195"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba927b87c22bea7ae275a75ec7519349526240c", "fields": {"nom_de_la_commune": "LAVAL", "libell_d_acheminement": "LAVAL", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38206"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff56e65309bc4b21398b4cff98ad12e9b6e098dc", "fields": {"nom_de_la_commune": "LIEUDIEU", "libell_d_acheminement": "LIEUDIEU", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38211"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac446728657b6d5d576174bf355ef680b5aed97", "fields": {"nom_de_la_commune": "MEYRIEU LES ETANGS", "libell_d_acheminement": "MEYRIEU LES ETANGS", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38231"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b02c2857a2cc44d155cba0af4258685eca825c", "fields": {"nom_de_la_commune": "MIRIBEL LES ECHELLES", "libell_d_acheminement": "MIRIBEL LES ECHELLES", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38236"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7febdb859be1ce2735f7c3219b8c8ab4b3414fc3", "fields": {"nom_de_la_commune": "MONTAGNE", "libell_d_acheminement": "MONTAGNE", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38245"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1d4d061b194589c409a6ad44aae0d9323aba408", "fields": {"nom_de_la_commune": "MONTAGNIEU", "libell_d_acheminement": "MONTAGNIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38246"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b977a8e5f64977b73ecb4e2bf655bb3f092aa0a", "fields": {"nom_de_la_commune": "MONTCARRA", "libell_d_acheminement": "MONTCARRA", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38250"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9264df7aca712bf225156941f79307b04fe01e", "fields": {"nom_de_la_commune": "MONTFALCON", "libell_d_acheminement": "MONTFALCON", "code_postal": "38940", "coordonnees_gps": [45.2530241738, 5.22613793096], "code_commune_insee": "38255"}, "geometry": {"type": "Point", "coordinates": [5.22613793096, 45.2530241738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a662fa8824a97ec97c4635ff2d6d5e29fabe0906", "fields": {"nom_de_la_commune": "MONTFERRAT", "libell_d_acheminement": "MONTFERRAT", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38256"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448440bdf10177b0ba82545b6430df41af6de727", "fields": {"nom_de_la_commune": "MOTTIER", "libell_d_acheminement": "LE MOTTIER", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38267"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188c858d693ee8a1ff1385a0cdcf79bd31e456a8", "fields": {"nom_de_la_commune": "LE MOUTARET", "libell_d_acheminement": "LE MOUTARET", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38268"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6dddb04ad035fdaa367f3a26a3ac7ebbd0021f8", "fields": {"nom_de_la_commune": "LA MURE", "libell_d_acheminement": "LA MURE D ISERE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38269"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49cdf596ebb7b36000877cc60412da110cec455e", "fields": {"nom_de_la_commune": "OZ", "libell_d_acheminement": "OZ", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38289"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9ccd8a6261b782260a5e3de208114d98c88578", "fields": {"nom_de_la_commune": "LE PASSAGE", "libell_d_acheminement": "LE PASSAGE", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38296"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5b8a26d347491b97387b74917599aecb466b50", "fields": {"nom_de_la_commune": "PASSINS", "libell_d_acheminement": "PASSINS", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38297"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97befc00e661a32d5841b8f6b922ad32ddc94f8d", "fields": {"nom_de_la_commune": "LE PEAGE DE ROUSSILLON", "libell_d_acheminement": "LE PEAGE DE ROUSSILLON", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38298"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9afc3d09a692f961c343423c711c260f84af505", "fields": {"nom_de_la_commune": "LE PERIER", "libell_d_acheminement": "LE PERIER", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38302"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3646200a70b6e33e05293ae061e52f2a9a3de68", "fields": {"nom_de_la_commune": "PONT DE CHERUY", "libell_d_acheminement": "PONT DE CHERUY", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38316"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33e0470430bf1a6d1bbb89b4010013eb19ca9ee", "fields": {"nom_de_la_commune": "PRESSINS", "libell_d_acheminement": "PRESSINS", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38323"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1592e16ddc5f8a1f8debedc82d37da2ad0ef1395", "fields": {"nom_de_la_commune": "QUINCIEU", "libell_d_acheminement": "QUINCIEU", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38330"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e493399d4324485b811bc8b6eb9320d23c940f6", "fields": {"nom_de_la_commune": "LA RIVIERE", "libell_d_acheminement": "LA RIVIERE", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38338"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ec541b2f50a484c9799a0990514170036b91cf", "fields": {"nom_de_la_commune": "ROVON", "libell_d_acheminement": "ROVON", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38345"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "808b7b6e68f5aca2ce610bb609966b4e1a8e3433", "fields": {"nom_de_la_commune": "ROYAS", "libell_d_acheminement": "ROYAS", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38346"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac940f1e63f721bb753d54bb4c8289e354967d5", "fields": {"nom_de_la_commune": "ST ALBIN DE VAULSERRE", "libell_d_acheminement": "ST ALBIN DE VAULSERRE", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38354"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1fe64fcfb2384cfab69c9d81037e2c8b80bd72f", "fields": {"nom_de_la_commune": "ST ANDRE EN ROYANS", "libell_d_acheminement": "ST ANDRE EN ROYANS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38356"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7169b1648cfb28795b76ed18932b7c212cabe3ca", "fields": {"nom_de_la_commune": "ST ANTOINE L ABBAYE", "libell_d_acheminement": "ST ANTOINE L ABBAYE", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38359"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c92b9109c8346440d07977c8e5967a025687d3", "fields": {"code_postal": "38160", "code_commune_insee": "38359", "libell_d_acheminement": "ST ANTOINE L ABBAYE", "ligne_5": "DIONAY", "nom_de_la_commune": "ST ANTOINE L ABBAYE", "coordonnees_gps": [45.1571232612, 5.3036381799]}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39040dd39b78b02478d521edb31c09b1778464aa", "fields": {"nom_de_la_commune": "ST AUPRE", "libell_d_acheminement": "ST AUPRE", "code_postal": "38960", "coordonnees_gps": [45.3922025887, 5.6488231816], "code_commune_insee": "38362"}, "geometry": {"type": "Point", "coordinates": [5.6488231816, 45.3922025887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afedd2a88c8cbd5578b8691f806d5cb8e534e668", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD DU TOUVET", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38367"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56b1e9db8471e9f175a61feb89cecd09139b0b7", "fields": {"nom_de_la_commune": "STE BLANDINE", "libell_d_acheminement": "STE BLANDINE", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38369"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ed7c25df5d7eaa1f9ddd815448529a86f7bec1", "fields": {"nom_de_la_commune": "ST CHEF", "libell_d_acheminement": "ST CHEF", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38374"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe70fbe8b0eb09477c5d921bb4047579c66dabe", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN OISANS", "libell_d_acheminement": "ST CHRISTOPHE EN OISANS", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38375"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3d1ab2d248449914cd97ee92458dc4fc91bde0", "fields": {"nom_de_la_commune": "ST DIDIER DE BIZONNES", "libell_d_acheminement": "ST DIDIER DE BIZONNES", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38380"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8380fbdb08347161fe593b097cfabb04d22361fe", "fields": {"nom_de_la_commune": "ST GEOIRE EN VALDAINE", "libell_d_acheminement": "ST GEOIRE EN VALDAINE", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38386"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058e9c4b51b31da8623b62658e82bca7771e8b61", "fields": {"nom_de_la_commune": "ST GEORGES D ESPERANCHE", "libell_d_acheminement": "ST GEORGES D ESPERANCHE", "code_postal": "38790", "coordonnees_gps": [45.5630185121, 5.09029489838], "code_commune_insee": "38389"}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71cb776dc0ad0c41db7c3ef736d4cfe9696f67e", "fields": {"nom_de_la_commune": "ST JUST CHALEYSSIN", "libell_d_acheminement": "ST JUST CHALEYSSIN", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38408"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c77d1ff0f39dc4d0e33215dd6162f890d09732", "fields": {"nom_de_la_commune": "ST MARCEL BEL ACCUEIL", "libell_d_acheminement": "ST MARCEL BEL ACCUEIL", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38415"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd302106cc566c8c0a4ddc58284958d0e808f74b", "fields": {"nom_de_la_commune": "STE MARIE DU MONT", "libell_d_acheminement": "STE MARIE DU MONT", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38418"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e3ee3eac94027d88c2c7290b0a6e0d4f6e6486", "fields": {"nom_de_la_commune": "ST ROMANS", "libell_d_acheminement": "ST ROMANS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38453"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe06fcd71e4e5e9face6d4431d1ee10802f361e", "fields": {"nom_de_la_commune": "ST VERAND", "libell_d_acheminement": "ST VERAND", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38463"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1026acea83591d5a992837eb430d92b9b57a12e6", "fields": {"nom_de_la_commune": "LA SALLE EN BEAUMONT", "libell_d_acheminement": "LA SALLE EN BEAUMONT", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38470"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3ae0ebb3e4668f22bc3e090cae8b1701646d13", "fields": {"nom_de_la_commune": "LE SAPPEY EN CHARTREUSE", "libell_d_acheminement": "LE SAPPEY EN CHARTREUSE", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38471"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229c6596b9df8f8234dcb9b9818f26fba7ae463a", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "BONCE", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd2f862158f931821ab3deb4f3254a4a6be1390", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "LE CHAFFARD", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a683c858e43c82294e774a0760e4e29eb74c217c", "fields": {"code_postal": "38780", "code_commune_insee": "38480", "libell_d_acheminement": "SEPTEME", "ligne_5": "LE PEAGE", "nom_de_la_commune": "SEPTEME", "coordonnees_gps": [45.5202153457, 4.98494519095]}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320c8894a46f75790d6c3d1320ed975a781d1b12", "fields": {"nom_de_la_commune": "SEYSSINET PARISET", "libell_d_acheminement": "SEYSSINET PARISET", "code_postal": "38170", "coordonnees_gps": [45.1728190384, 5.66921532748], "code_commune_insee": "38485"}, "geometry": {"type": "Point", "coordinates": [5.66921532748, 45.1728190384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24005c7a8c6c90e6e4ad0970bd873a74e6fd55ed", "fields": {"nom_de_la_commune": "SILLANS", "libell_d_acheminement": "SILLANS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38490"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdd891c543057ee5a6cfa92cc6b8f49db3b12ab", "fields": {"nom_de_la_commune": "SOLEYMIEU", "libell_d_acheminement": "SOLEYMIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38494"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b176bfea498f0130ff6f07f81d0dcfdecd11dfd", "fields": {"nom_de_la_commune": "LA SONE", "libell_d_acheminement": "LA SONE", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38495"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f824de1374d10541a359ec71f897c30daf10a0ff", "fields": {"nom_de_la_commune": "TECHE", "libell_d_acheminement": "TECHE", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38500"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0392e22752707d9e17f2bea9e714a06ca97d6ec", "fields": {"nom_de_la_commune": "TREFFORT", "libell_d_acheminement": "TREFFORT", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38513"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200f7c4abe568385495f884a249507aaff8a8702", "fields": {"nom_de_la_commune": "TREMINIS", "libell_d_acheminement": "TREMINIS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38514"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee1dbb49b62b5d327de1a35e8a0e422744e2d30", "fields": {"nom_de_la_commune": "VASSELIN", "libell_d_acheminement": "VASSELIN", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38525"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c51ba3aed04909f92144ee784593beaa8dbc285", "fields": {"nom_de_la_commune": "VAULX MILIEU", "libell_d_acheminement": "VAULX MILIEU", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38530"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8efef718727e7d978ec0f5f2d401617a7275077", "fields": {"nom_de_la_commune": "VENON", "libell_d_acheminement": "VENON", "code_postal": "38610", "coordonnees_gps": [45.1794754259, 5.79803477823], "code_commune_insee": "38533"}, "geometry": {"type": "Point", "coordinates": [5.79803477823, 45.1794754259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373901ac3ccde908ead91b4bd63830a9434fa412", "fields": {"code_postal": "38860", "code_commune_insee": "38534", "libell_d_acheminement": "VENOSC", "ligne_5": "L ALPE DE VENOSC", "nom_de_la_commune": "VENOSC", "coordonnees_gps": [44.994660373, 6.12322203081]}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4574ab433f82aa4bf8d7fbc1b16cd95a61819def", "fields": {"nom_de_la_commune": "VERNAS", "libell_d_acheminement": "VERNAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38535"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266b5fb6eaec017f1f8bb2a3d050be0e9345baaa", "fields": {"nom_de_la_commune": "VEUREY VOROIZE", "libell_d_acheminement": "VEUREY VOROIZE", "code_postal": "38113", "coordonnees_gps": [45.269486237, 5.60210187311], "code_commune_insee": "38540"}, "geometry": {"type": "Point", "coordinates": [5.60210187311, 45.269486237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf156b974218526a9bb6a22f610f3d0dc49ad2e3", "fields": {"nom_de_la_commune": "VEYSSILIEU", "libell_d_acheminement": "VEYSSILIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38542"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c7e98ac2c86ea18f4812d93c76e828a581ab9f", "fields": {"nom_de_la_commune": "VIGNIEU", "libell_d_acheminement": "VIGNIEU", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38546"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103dc61dc9804820d835d9cd8f080d3d9e3ab4d5", "fields": {"nom_de_la_commune": "VILLARD RECULAS", "libell_d_acheminement": "VILLARD RECULAS", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38550"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc89e9def5888bcb2649c56e241c5be9dc1c172", "fields": {"nom_de_la_commune": "VILLARD REYMOND", "libell_d_acheminement": "VILLARD REYMOND", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38551"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4699e585c36741f52342cee858e727ad485cc739", "fields": {"nom_de_la_commune": "VILLETTE D ANTHON", "libell_d_acheminement": "VILLETTE D ANTHON", "code_postal": "38280", "coordonnees_gps": [45.7761558636, 5.11926140068], "code_commune_insee": "38557"}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "787b78b27cf0931b8b5c4b1f378da19c4ecee866", "fields": {"nom_de_la_commune": "VIRIEU", "libell_d_acheminement": "VIRIEU SUR BOURBRE", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38560"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2183dd6ff0e8ca5e069e1db6fef92416c56a11", "fields": {"nom_de_la_commune": "VIRIVILLE", "libell_d_acheminement": "VIRIVILLE", "code_postal": "38980", "coordonnees_gps": [45.3053476338, 5.21305858038], "code_commune_insee": "38561"}, "geometry": {"type": "Point", "coordinates": [5.21305858038, 45.3053476338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2fafb26a8cc3bf00d0e90c7e4222b62065554e", "fields": {"nom_de_la_commune": "SOUSTONS", "libell_d_acheminement": "SOUSTONS", "code_postal": "40140", "coordonnees_gps": [43.7629098488, -1.27641282315], "code_commune_insee": "40310"}, "geometry": {"type": "Point", "coordinates": [-1.27641282315, 43.7629098488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00fd253b2d548f6b7c385e06bc8404a5be48b0ef", "fields": {"nom_de_la_commune": "TALLER", "libell_d_acheminement": "TALLER", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40311"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b931563715f1b83a6bbd21b9f225d10ccb9f64c", "fields": {"nom_de_la_commune": "TARTAS", "libell_d_acheminement": "TARTAS", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40313"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e7fc6ff311040a8e198e086603ec19793ca47d", "fields": {"nom_de_la_commune": "UZA", "libell_d_acheminement": "UZA", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40322"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b928c6d24c9bcbe6d4f62acdb445eb20d9dfcb", "fields": {"nom_de_la_commune": "VIELLE TURSAN", "libell_d_acheminement": "VIELLE TURSAN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40325"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcebb59950b29e3ebdd8be4d39588e533e531108", "fields": {"nom_de_la_commune": "LE VIGNAU", "libell_d_acheminement": "LE VIGNAU", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40329"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1c037055cd7e6edf041cdd1a505008c70981d3", "fields": {"nom_de_la_commune": "YGOS ST SATURNIN", "libell_d_acheminement": "YGOS ST SATURNIN", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40333"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c9be51d25531d96483e23fa64dab2c21ae3d9e1", "fields": {"nom_de_la_commune": "AUTAINVILLE", "libell_d_acheminement": "AUTAINVILLE", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41006"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ce826e2ee90170d0240c2797a3c50c9279db803", "fields": {"nom_de_la_commune": "AUTHON", "libell_d_acheminement": "AUTHON", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41007"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed03cc6f1136ad395dbd39679292fc39810aac00", "fields": {"nom_de_la_commune": "AVERDON", "libell_d_acheminement": "AVERDON", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41009"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345f7f6055f00e5a7d574ee3e7f55f46db8b2964", "fields": {"nom_de_la_commune": "BEAUCHENE", "libell_d_acheminement": "BEAUCHENE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41014"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ce5622818a4156f2deb5ce6d27faed17d5aee6", "fields": {"nom_de_la_commune": "BEAUVILLIERS", "libell_d_acheminement": "BEAUVILLIERS", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41015"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1e52a1d9b217b1a7477f74d33a2b1e7172629b", "fields": {"nom_de_la_commune": "BLOIS", "libell_d_acheminement": "BLOIS", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41018"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631087c8a2db45d153ae2c6416b0aa12e90c9142", "fields": {"nom_de_la_commune": "CHAMBORD", "libell_d_acheminement": "CHAMBORD", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41034"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5cc170f06980fcc3462e99415dbef84bda2e46", "fields": {"nom_de_la_commune": "CHAON", "libell_d_acheminement": "CHAON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41036"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23555ef03835a67f67082cdc2b1d59adddaa0d84", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTMARTIN", "libell_d_acheminement": "LA CHAPELLE MONTMARTIN", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41038"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e6fda99ac637ad830304fec67b7e8c0792469b", "fields": {"nom_de_la_commune": "CHEMERY", "libell_d_acheminement": "CHEMERY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41049"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8730aacdff01a805d5af872d08ef0e3327d5ded", "fields": {"nom_de_la_commune": "CHISSAY EN TOURAINE", "libell_d_acheminement": "CHISSAY EN TOURAINE", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41051"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fe59e1e51d7a1f6dcc38b62b0ad657195461180", "fields": {"nom_de_la_commune": "CHOUE", "libell_d_acheminement": "CHOUE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41053"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21cf12091daece45102d8455ffffdc84be25dac2", "fields": {"nom_de_la_commune": "CORMERAY", "libell_d_acheminement": "CORMERAY", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41061"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ed4ca5c7bb240039d851360926350de153c87b", "fields": {"nom_de_la_commune": "LA FERTE IMBAULT", "libell_d_acheminement": "LA FERTE IMBAULT", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41084"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8457704f1dff0517eaff5a8611538b356f5edc7", "fields": {"nom_de_la_commune": "FONTAINE RAOUL", "libell_d_acheminement": "FONTAINE RAOUL", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41088"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d74f49383065b750a1add6ec85b4d98c9a412b", "fields": {"nom_de_la_commune": "FRANCAY", "libell_d_acheminement": "FRANCAY", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41093"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a4381beec812b6eec319e38395759256a52120", "fields": {"nom_de_la_commune": "GOMBERGEAN", "libell_d_acheminement": "GOMBERGEAN", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41098"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e3f3c9f6b3fc181dd4ceb68be6e8cc5e0cadfb", "fields": {"nom_de_la_commune": "LAMOTTE BEUVRON", "libell_d_acheminement": "LAMOTTE BEUVRON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41106"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a0717cb23a50d900f516f21a638a7b12c50f26", "fields": {"nom_de_la_commune": "LANCE", "libell_d_acheminement": "LANCE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41107"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9be0793531728978f8029f0e0aca890a0b8e03", "fields": {"nom_de_la_commune": "LESTIOU", "libell_d_acheminement": "LESTIOU", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41114"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76fe8c497c911f07b558257552f9367120d55e6", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41128"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c05a9194b461f093452d2435322992899fb9db", "fields": {"nom_de_la_commune": "MAVES", "libell_d_acheminement": "MAVES", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41130"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9d0d6641ce235d6c2a7768422dd1e4e6aa7aa3", "fields": {"nom_de_la_commune": "MENARS", "libell_d_acheminement": "MENARS", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41134"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79402c129715986abfc304ab05074794fecaf65d", "fields": {"nom_de_la_commune": "MEUSNES", "libell_d_acheminement": "MEUSNES", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41139"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7640d7d33e086e8f04d26166cbb1a96a6d7b6de", "fields": {"nom_de_la_commune": "MUR DE SOLOGNE", "libell_d_acheminement": "MUR DE SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41157"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88e2c5c449f13ac3154d74d142cd93aa2289cfb", "fields": {"nom_de_la_commune": "NOURRAY", "libell_d_acheminement": "NOURRAY", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41163"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74609c46b445de7f9bbb2c9a9bd07fef376a4d21", "fields": {"nom_de_la_commune": "OISLY", "libell_d_acheminement": "OISLY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41166"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3524195bdb73425173ee0af8d558441a18d11b", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "OUZOUER LE MARCHE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c58f6fe1849252cba7f09b458bd3ac3ac9c607", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "PRENOUVELLON", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad27a81e550def72605c8527a1412efb0fffd4a", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "TRIPLEVILLE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1012b90b65b1c36fbb1cbf7706c924caa7a70ac", "fields": {"nom_de_la_commune": "RAHART", "libell_d_acheminement": "RAHART", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41186"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0287a4723375c9f74cb04e047f5105bc09d2ff3a", "fields": {"nom_de_la_commune": "ROCE", "libell_d_acheminement": "ROCE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41190"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe352d9da9fd7adddee48f5f741cb229ac1b6080", "fields": {"nom_de_la_commune": "ST GERVAIS LA FORET", "libell_d_acheminement": "ST GERVAIS LA FORET", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41212"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3cfa4bb240d255817c364dbe0b2dd0fb508f9b", "fields": {"code_postal": "41220", "code_commune_insee": "41220", "libell_d_acheminement": "ST LAURENT NOUAN", "ligne_5": "NOUAN SUR LOIRE", "nom_de_la_commune": "ST LAURENT NOUAN", "coordonnees_gps": [47.6522187818, 1.66627730575]}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9fe158b8a3f8003c5db68f7455f3f50b6a7750", "fields": {"nom_de_la_commune": "ST LUBIN EN VERGONNOIS", "libell_d_acheminement": "ST LUBIN EN VERGONNOIS", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41223"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885e7c64d6c189e5dfa062e3681283d839f65b69", "fields": {"nom_de_la_commune": "SALBRIS", "libell_d_acheminement": "SALBRIS", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41232"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47279ffd40a1a3636b5ef7edf76a1134bbeb09f1", "fields": {"nom_de_la_commune": "SAMBIN", "libell_d_acheminement": "SAMBIN", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41233"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9276a0ff2b187da8fb8a02254a9ae7c4d1a25be", "fields": {"nom_de_la_commune": "SELOMMES", "libell_d_acheminement": "SELOMMES", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41243"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d78690d46f0155efd3980ccd588170ff33914ab", "fields": {"nom_de_la_commune": "SOINGS EN SOLOGNE", "libell_d_acheminement": "SOINGS EN SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41247"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1436112da4dba672990ff27199f2fac2b4ba376e", "fields": {"nom_de_la_commune": "SOUDAY", "libell_d_acheminement": "SOUDAY", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41248"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df812310581c78f692696d7b6066dcd8fe16dd03", "fields": {"nom_de_la_commune": "SOUESMES", "libell_d_acheminement": "SOUESMES", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41249"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6b64bff592d7db67452d51842a4851fbf711b", "fields": {"nom_de_la_commune": "LE TEMPLE", "libell_d_acheminement": "LE TEMPLE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41254"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a40e7376ae82e872ab77a998e61b9b81a699255", "fields": {"nom_de_la_commune": "THENAY", "libell_d_acheminement": "THENAY", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41257"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050d0fd690c88af36e86cb8ab06b2bdc10586c95", "fields": {"nom_de_la_commune": "VILLAVARD", "libell_d_acheminement": "VILLAVARD", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41274"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29ef42def29c19e97f45aacaeef11163eaa4bda", "fields": {"nom_de_la_commune": "VILLEBOUT", "libell_d_acheminement": "VILLEBOUT", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41277"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc50b15943d7b1bd3a4647c132a31b60c982346c", "fields": {"nom_de_la_commune": "VILLEROMAIN", "libell_d_acheminement": "VILLEROMAIN", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41290"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9923fb3ff959697d13330c58c01550391b4edf23", "fields": {"nom_de_la_commune": "ANDREZIEUX BOUTHEON", "libell_d_acheminement": "ANDREZIEUX BOUTHEON", "code_postal": "42160", "coordonnees_gps": [45.5337951598, 4.25427323721], "code_commune_insee": "42005"}, "geometry": {"type": "Point", "coordinates": [4.25427323721, 45.5337951598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b873bca2bf691facd8324325b30f6ca902b07d1", "fields": {"nom_de_la_commune": "BALBIGNY", "libell_d_acheminement": "BALBIGNY", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42011"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509fc87125b640b66f0d4f6d86073215901174ca", "fields": {"nom_de_la_commune": "BARD", "libell_d_acheminement": "BARD", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42012"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18512adb377f309abee6a5a495f0d842d1753c4c", "fields": {"nom_de_la_commune": "BELLEGARDE EN FOREZ", "libell_d_acheminement": "BELLEGARDE EN FOREZ", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42013"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1f941f92cbaea6f10b469c8b5629995010e5bf", "fields": {"nom_de_la_commune": "BELLEROCHE", "libell_d_acheminement": "BELLEROCHE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42014"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc81b2408eec66ab0ea8e6cca40d3e99a8db90e3", "fields": {"nom_de_la_commune": "BOISSET ST PRIEST", "libell_d_acheminement": "BOISSET ST PRIEST", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42021"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298a4aab609e2b3cc1dc6c0eb99a9c47314595b4", "fields": {"nom_de_la_commune": "BONSON", "libell_d_acheminement": "BONSON", "code_postal": "42160", "coordonnees_gps": [45.5337951598, 4.25427323721], "code_commune_insee": "42022"}, "geometry": {"type": "Point", "coordinates": [4.25427323721, 45.5337951598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f337cac25bdbca86e1161733263d3918068685", "fields": {"nom_de_la_commune": "BOYER", "libell_d_acheminement": "BOYER", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42025"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34dbc67e8bdd4fbc98c44259bb3eff6ecb2e16c9", "fields": {"nom_de_la_commune": "BRIENNON", "libell_d_acheminement": "BRIENNON", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42026"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3b3bb34db60da8aff1bdba7045886b077a77bf", "fields": {"nom_de_la_commune": "BURDIGNES", "libell_d_acheminement": "BURDIGNES", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42028"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0806f3c125c8101e70811319f4bfa1e99ef70197", "fields": {"nom_de_la_commune": "CHAMBOEUF", "libell_d_acheminement": "CHAMBOEUF", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42043"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70358aa74dae7fd789c91b7858b319dd73cfcd1d", "fields": {"nom_de_la_commune": "CHATELNEUF", "libell_d_acheminement": "CHATELNEUF", "code_postal": "42940", "coordonnees_gps": [45.6531481683, 3.93398383728], "code_commune_insee": "42054"}, "geometry": {"type": "Point", "coordinates": [3.93398383728, 45.6531481683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a08b18ac215b5037b2d90261369ac7ff1b2c7f21", "fields": {"nom_de_la_commune": "CHATELUS", "libell_d_acheminement": "CHATELUS", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42055"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e6d229b93c62b547866a2f36bbd8cac08ad359", "fields": {"nom_de_la_commune": "CHAZELLES SUR LAVIEU", "libell_d_acheminement": "CHAZELLES SUR LAVIEU", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42058"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01275d275cd6a881ac0f4b527e844f20e844412", "fields": {"nom_de_la_commune": "COUTOUVRE", "libell_d_acheminement": "COUTOUVRE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42074"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2298a3471bf794e0545587268d3a42dd2abc7731", "fields": {"nom_de_la_commune": "CRAINTILLEUX", "libell_d_acheminement": "CRAINTILLEUX", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42075"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fa733a1e184efb69eebda433c4f130bf795c9e", "fields": {"nom_de_la_commune": "DARGOIRE", "libell_d_acheminement": "DARGOIRE", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42083"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94b0e7a021284be9062c0399b7451dd464e996b4", "fields": {"nom_de_la_commune": "ESSERTINES EN DONZY", "libell_d_acheminement": "ESSERTINES EN DONZY", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42090"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d006c7be0fdb256e28c69e7b81306d20b3c694", "fields": {"nom_de_la_commune": "FARNAY", "libell_d_acheminement": "FARNAY", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42093"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46d173d667da2c2ef425872ffdd8750afb155d3", "fields": {"nom_de_la_commune": "LA FOUILLOUSE", "libell_d_acheminement": "LA FOUILLOUSE", "code_postal": "42480", "coordonnees_gps": [45.501428477, 4.31933881321], "code_commune_insee": "42097"}, "geometry": {"type": "Point", "coordinates": [4.31933881321, 45.501428477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a3f1d807559f258a3e7f3da67502658030205d", "fields": {"nom_de_la_commune": "FOURNEAUX", "libell_d_acheminement": "FOURNEAUX", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42098"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9492b09a1e172a62d13975966bf57fc8ee99268d", "fields": {"nom_de_la_commune": "JARNOSSE", "libell_d_acheminement": "JARNOSSE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42112"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dccd185d1e85beea7b20b81b77007d047534214", "fields": {"nom_de_la_commune": "JONZIEUX", "libell_d_acheminement": "JONZIEUX", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42115"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b331d426c032e0ca39697321cc5e045db46631c3", "fields": {"nom_de_la_commune": "MABLY", "libell_d_acheminement": "MABLY", "code_postal": "42300", "coordonnees_gps": [46.0587698503, 4.05970322199], "code_commune_insee": "42127"}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfbd46624591ce09679639431fd766097f23b7c3", "fields": {"code_postal": "42300", "code_commune_insee": "42127", "libell_d_acheminement": "MABLY", "ligne_5": "LES TUILERIES", "nom_de_la_commune": "MABLY", "coordonnees_gps": [46.0587698503, 4.05970322199]}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a0f967f11ced32cc397c7788bd6a851d35617f", "fields": {"nom_de_la_commune": "MACHEZAL", "libell_d_acheminement": "MACHEZAL", "code_postal": "42114", "coordonnees_gps": [45.9115558204, 4.30459179806], "code_commune_insee": "42128"}, "geometry": {"type": "Point", "coordinates": [4.30459179806, 45.9115558204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5eb32759dfb76a0dde22418632f53b1822624b5", "fields": {"nom_de_la_commune": "MARGERIE CHANTAGRET", "libell_d_acheminement": "MARGERIE CHANTAGRET", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42137"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784dcffaa631c6f697b2284d54200dc89dcc6a53", "fields": {"nom_de_la_commune": "MONTVERDUN", "libell_d_acheminement": "MONTVERDUN", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42150"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d32ad4688cad8c02b37f6894bd94dcef123c969", "fields": {"nom_de_la_commune": "NOIRETABLE", "libell_d_acheminement": "NOIRETABLE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42159"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a2e6333be48ef3cc1e666c2b1b5ff91298a548", "fields": {"nom_de_la_commune": "OUCHES", "libell_d_acheminement": "OUCHES", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42162"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ce0b86f1e684801c3f96287c667fd9f4c88bc8", "fields": {"nom_de_la_commune": "LA PACAUDIERE", "libell_d_acheminement": "LA PACAUDIERE", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42163"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf77410a725f2d799943c9bea034b88dcd42855", "fields": {"nom_de_la_commune": "PELUSSIN", "libell_d_acheminement": "PELUSSIN", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42168"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369b7909937a4e6f55e53d08dafe778342078fb7", "fields": {"nom_de_la_commune": "PONCINS", "libell_d_acheminement": "PONCINS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42174"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2171e02fe341e95942364d330eb8db5ff9d99336", "fields": {"nom_de_la_commune": "PRECIEUX", "libell_d_acheminement": "PRECIEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42180"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3be99117145ad80415f65e71e8252f7e66e9ea", "fields": {"nom_de_la_commune": "ROANNE", "libell_d_acheminement": "ROANNE", "code_postal": "42300", "coordonnees_gps": [46.0587698503, 4.05970322199], "code_commune_insee": "42187"}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c977ee1ac6a37f0d688120b643668ed4bf4625", "fields": {"nom_de_la_commune": "ROCHE", "libell_d_acheminement": "ROCHE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42188"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfbc7c2bd7e2a00c749b0ede257d533c54227fac", "fields": {"nom_de_la_commune": "STE AGATHE EN DONZY", "libell_d_acheminement": "STE AGATHE EN DONZY", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42196"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0122511a14e03aaef42ef817e2300795aa55147", "fields": {"nom_de_la_commune": "ST BONNET LE CHATEAU", "libell_d_acheminement": "ST BONNET LE CHATEAU", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42204"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a5ba0f46e5fb31f79687f2f696266bbc10b17b", "fields": {"nom_de_la_commune": "ST CHAMOND", "libell_d_acheminement": "ST CHAMOND", "code_postal": "42400", "coordonnees_gps": [45.4701877634, 4.50203719758], "code_commune_insee": "42207"}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95f092e1afe12ac4e856eb015c04b78ed5105fe", "fields": {"nom_de_la_commune": "ST CHRISTO EN JAREZ", "libell_d_acheminement": "ST CHRISTO EN JAREZ", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42208"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e0e6c336e343fc7ad4c53fb93b2c9503246635", "fields": {"nom_de_la_commune": "STE COLOMBE SUR GAND", "libell_d_acheminement": "STE COLOMBE SUR GAND", "code_postal": "42540", "coordonnees_gps": [45.8845566287, 4.25261617322], "code_commune_insee": "42209"}, "geometry": {"type": "Point", "coordinates": [4.25261617322, 45.8845566287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ef7a6ebfd47b77fa14fcced92cc16146a2c684", "fields": {"nom_de_la_commune": "ST CYR DE VALORGES", "libell_d_acheminement": "ST CYR DE VALORGES", "code_postal": "42114", "coordonnees_gps": [45.9115558204, 4.30459179806], "code_commune_insee": "42213"}, "geometry": {"type": "Point", "coordinates": [4.30459179806, 45.9115558204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9331046b3b3b0b348bfd35f0b90555969bcc9239", "fields": {"nom_de_la_commune": "ST ETIENNE", "libell_d_acheminement": "ST ETIENNE", "code_postal": "42000", "coordonnees_gps": [45.4301225907, 4.37830062526], "code_commune_insee": "42218"}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d259f42b30d2603facd275564b3eaf5ea3cc09c", "fields": {"code_postal": "42100", "code_commune_insee": "42218", "libell_d_acheminement": "ST ETIENNE", "ligne_5": "ROCHETAILLEE", "nom_de_la_commune": "ST ETIENNE", "coordonnees_gps": [45.4301225907, 4.37830062526]}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a163e293ac8ba24175008726ee65bf2499af09", "fields": {"code_postal": "42230", "code_commune_insee": "42218", "libell_d_acheminement": "ST ETIENNE", "ligne_5": "ST VICTOR SUR LOIRE", "nom_de_la_commune": "ST ETIENNE", "coordonnees_gps": [45.4293966387, 4.36873276603]}, "geometry": {"type": "Point", "coordinates": [4.36873276603, 45.4293966387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333e3fc182f1844b7e7c2be12ca264ec72648a2d", "fields": {"nom_de_la_commune": "ST GEORGES DE BAROILLE", "libell_d_acheminement": "ST GEORGES DE BAROILLE", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42226"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c3e555d480ee60a7511720205332020ed57bda", "fields": {"nom_de_la_commune": "ST GEORGES HAUTE VILLE", "libell_d_acheminement": "ST GEORGES HAUTE VILLE", "code_postal": "42610", "coordonnees_gps": [45.5527385083, 4.11908617697], "code_commune_insee": "42228"}, "geometry": {"type": "Point", "coordinates": [4.11908617697, 45.5527385083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e498bd8167a2b2de2dbf4f441a331bee70dbc831", "fields": {"nom_de_la_commune": "CHARRAY", "libell_d_acheminement": "CHARRAY", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28083"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538bdfdcbfa812090dcabfbdcf121268fd939f4b", "fields": {"nom_de_la_commune": "CINTRAY", "libell_d_acheminement": "CINTRAY", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28100"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959e14dd91eecd35d20f1fb53a25991330973bd7", "fields": {"nom_de_la_commune": "CIVRY", "libell_d_acheminement": "CIVRY", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28101"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06729ae42a62dfcc3ff65cfc529c257aa3a9fa21", "fields": {"nom_de_la_commune": "CORANCEZ", "libell_d_acheminement": "CORANCEZ", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28107"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ac447ac6aba8b0d89e3bd5aab73560faa7ce079", "fields": {"nom_de_la_commune": "CRUCEY VILLAGES", "libell_d_acheminement": "CRUCEY VILLAGES", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28120"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8deb74cc3580298e67b385702f9675590288a5b1", "fields": {"nom_de_la_commune": "DAMMARIE", "libell_d_acheminement": "DAMMARIE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28122"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec46b852f3373b794f8aca4ed577626fa8f3898", "fields": {"nom_de_la_commune": "DAMPIERRE SOUS BROU", "libell_d_acheminement": "DAMPIERRE SOUS BROU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28123"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db627ef630ba5487705b89e971d6a5548f103723", "fields": {"nom_de_la_commune": "DIGNY", "libell_d_acheminement": "DIGNY", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28130"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35ee09f6152b5c48c6c2f0334a2315d43daf30c", "fields": {"nom_de_la_commune": "ECROSNES", "libell_d_acheminement": "ECROSNES", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28137"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7943c16c841d434c4cdd16f8f4dcc88f1e558de", "fields": {"nom_de_la_commune": "ERMENONVILLE LA PETITE", "libell_d_acheminement": "ERMENONVILLE LA PETITE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28142"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df81069ea9f695039b9be0ed834615923d6c5ab", "fields": {"nom_de_la_commune": "LES ETILLEUX", "libell_d_acheminement": "LES ETILLEUX", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28144"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fe1beaf552bbebe2698b3ea1e1f0c4624be7a0", "fields": {"nom_de_la_commune": "LE FAVRIL", "libell_d_acheminement": "LE FAVRIL", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28148"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a92f57252a9d8903f2a202db0d17fd75f60d2d", "fields": {"nom_de_la_commune": "FLACEY", "libell_d_acheminement": "FLACEY", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28153"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b6515895c1dd784fb713749a1c0b194eb16a2f", "fields": {"nom_de_la_commune": "FONTAINE LES RIBOUTS", "libell_d_acheminement": "FONTAINE LES RIBOUTS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28155"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e433d5cf3c79b4f9c4c8e3f9f84a2cecf9dd323b", "fields": {"nom_de_la_commune": "FONTAINE SIMON", "libell_d_acheminement": "FONTAINE SIMON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28156"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55606c95fc6ba4c9cc88a2c55ff418ed83936a7", "fields": {"nom_de_la_commune": "LA FRAMBOISIERE", "libell_d_acheminement": "LA FRAMBOISIERE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28159"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51a377c4ba211b04349e2fceefff660482c1962", "fields": {"nom_de_la_commune": "FRANCOURVILLE", "libell_d_acheminement": "FRANCOURVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28160"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5103d7430eabb9c59538719243aa4d77ada70ee5", "fields": {"nom_de_la_commune": "FRUNCE", "libell_d_acheminement": "FRUNCE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28167"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0e96fbd6d6d92b23f196fc40947a25ede1fbf7", "fields": {"nom_de_la_commune": "LEVESVILLE LA CHENARD", "libell_d_acheminement": "LEVESVILLE LA CHENARD", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28210"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa552ba34e10a4d52753be836e56a66ad536154", "fields": {"nom_de_la_commune": "LOIGNY LA BATAILLE", "libell_d_acheminement": "LOIGNY LA BATAILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28212"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68af4225683ee2d4434b7bfb848ea719107408ab", "fields": {"nom_de_la_commune": "LORMAYE", "libell_d_acheminement": "LORMAYE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28213"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462c3b457e82e773eaa81131cb43c8125b0ab02a", "fields": {"nom_de_la_commune": "LUIGNY", "libell_d_acheminement": "LUIGNY", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28219"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d67e7e28bbcd8a53dcbb15fcd255022afe7a10", "fields": {"nom_de_la_commune": "LURAY", "libell_d_acheminement": "LURAY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28223"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1da6e7c4049684a2dcbfd8c1fb2611b4fad5ed", "fields": {"nom_de_la_commune": "LUTZ EN DUNOIS", "libell_d_acheminement": "LUTZ EN DUNOIS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28224"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b987e47c0dc885bfa3d5b321fe5acac7b749dd", "fields": {"nom_de_la_commune": "LA MANCELIERE", "libell_d_acheminement": "LA MANCELIERE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28231"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0310e2a1ffb2857d3a11cafc2daca07987e5a7d5", "fields": {"nom_de_la_commune": "MEVOISINS", "libell_d_acheminement": "MEVOISINS", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28249"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc1d42369e22c4454acbb876b62e75f5b3bfe09", "fields": {"nom_de_la_commune": "MIERMAIGNE", "libell_d_acheminement": "MIERMAIGNE", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28252"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f8f30c808815fe20ad252fb6df907aefc1161c", "fields": {"nom_de_la_commune": "MONDONVILLE ST JEAN", "libell_d_acheminement": "MONDONVILLE ST JEAN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28257"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9bbf022e9753e3a8ced9ad680c31a5550a59391", "fields": {"nom_de_la_commune": "MONTIGNY SUR AVRE", "libell_d_acheminement": "MONTIGNY SUR AVRE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28263"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6957b0f3e29793740422013fc6d30c9c5ef9220", "fields": {"nom_de_la_commune": "MONTLANDON", "libell_d_acheminement": "MONTLANDON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28265"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f10111c712a0bfd55d0c9efdb17f0762021de86", "fields": {"nom_de_la_commune": "MORAINVILLE", "libell_d_acheminement": "MORAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28268"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100caf4bc1f2422b7ac0b2cad4bef5015845a46d", "fields": {"nom_de_la_commune": "MORIERS", "libell_d_acheminement": "MORIERS", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28270"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99d1651d81f3aa80b2176c84cafab3224b48bf0", "fields": {"nom_de_la_commune": "MORVILLIERS", "libell_d_acheminement": "MORVILLIERS", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28271"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5634977572830cf0b73347d55ad35bef00aefcde", "fields": {"nom_de_la_commune": "MOULHARD", "libell_d_acheminement": "MOULHARD", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28273"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc8569fff3d09911f26cbce3a032744f491ea31", "fields": {"nom_de_la_commune": "NOGENT LE ROI", "libell_d_acheminement": "NOGENT LE ROI", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28279"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac7428caaadb2acb79d30e71b2ce58beafe02b3", "fields": {"nom_de_la_commune": "NOGENT LE ROTROU", "libell_d_acheminement": "NOGENT LE ROTROU", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28280"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1949367716977b9494819e4f90429dbf91b9cf8", "fields": {"nom_de_la_commune": "OINVILLE ST LIPHARD", "libell_d_acheminement": "OINVILLE ST LIPHARD", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28284"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52a5254a10473cd2857fbf344a6897802573837", "fields": {"nom_de_la_commune": "LA PUISAYE", "libell_d_acheminement": "LA PUISAYE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28310"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72278a3a7e74d696ca0e8d02198fe8dfcc5e213", "fields": {"nom_de_la_commune": "PUISEUX", "libell_d_acheminement": "PUISEUX", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28312"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d8140176349a31d40dcc38c2485fb48dbe89c6", "fields": {"nom_de_la_commune": "ROUVRAY ST DENIS", "libell_d_acheminement": "ROUVRAY ST DENIS", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28319"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4af73c89159021711f0c512ff4d958d03a1f6bd", "fields": {"nom_de_la_commune": "ST DENIS LES PONTS", "libell_d_acheminement": "ST DENIS LES PONTS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28334"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90171825574b7b0d3c9e11b796e4171a7c198ea7", "fields": {"nom_de_la_commune": "ST JEAN DE REBERVILLIERS", "libell_d_acheminement": "ST JEAN DE REBERVILLIERS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28341"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0017889a3131f4f31d511ebbfef29a3b8ab507", "fields": {"nom_de_la_commune": "ST OUEN MARCHEFROY", "libell_d_acheminement": "ST OUEN MARCHEFROY", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28355"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904912962846f11ff79575df0536e240f91588f6", "fields": {"nom_de_la_commune": "ST PIAT", "libell_d_acheminement": "ST PIAT", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28357"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6a2c565bd2ef5f95700ace167f32996b82eae2", "fields": {"nom_de_la_commune": "ST PREST", "libell_d_acheminement": "ST PREST", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28358"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db21279198d7740c8c56a3b351182e5e9160259", "fields": {"nom_de_la_commune": "THIMERT GATELLES", "libell_d_acheminement": "THIMERT GATELLES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28386"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441e53de46c9bdd9a43c8bee20f28e300ef5a52c", "fields": {"code_postal": "28170", "code_commune_insee": "28386", "libell_d_acheminement": "THIMERT GATELLES", "ligne_5": "GATELLES", "nom_de_la_commune": "THIMERT GATELLES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c4271c45322adfa3fb0d631f12f00de2f69c11", "fields": {"nom_de_la_commune": "TOURY", "libell_d_acheminement": "TOURY", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28391"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dca7c8b56494359ee0f79d25f3b8bb7ac59eecc", "fields": {"nom_de_la_commune": "TRANCRAINVILLE", "libell_d_acheminement": "TRANCRAINVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28392"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a9add20cea899dc06063924265d60e35e2d8d7", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "ECUBLE", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed8a26b70c001b909768ada8ee503907edaaa0c", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "GIRONVILLE ET NEUVILLE", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ad57142ab291371175417c856b05df62415f09", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "ST CHERON DES CHAMPS", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1dcee93009ea3e37eb3b5845c265177a3a79cac", "fields": {"code_postal": "28150", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "VIABON", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7a19841536c5bc0caa8aba9475f577659a51d7", "fields": {"nom_de_la_commune": "VITRAY EN BEAUCE", "libell_d_acheminement": "VITRAY EN BEAUCE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28419"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea717bef631bad71ccaf1c655bafe272d4ac43f3", "fields": {"nom_de_la_commune": "YERMENONVILLE", "libell_d_acheminement": "YERMENONVILLE", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28423"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f00aefd5bbf9d0b7943281cedb7707ec5d43f5", "fields": {"nom_de_la_commune": "YMERAY", "libell_d_acheminement": "YMERAY", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28425"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef6b25fd9fbe035190c767b7b6401c8cb650008", "fields": {"nom_de_la_commune": "AUDIERNE", "libell_d_acheminement": "AUDIERNE", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29003"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9c016c07b25aff77494f8531f3f00b7aae5d3e", "fields": {"nom_de_la_commune": "CAMARET SUR MER", "libell_d_acheminement": "CAMARET SUR MER", "code_postal": "29570", "coordonnees_gps": [48.2895784826, -4.57542430265], "code_commune_insee": "29022"}, "geometry": {"type": "Point", "coordinates": [-4.57542430265, 48.2895784826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71870ea91d1890d8987e4602a906f0ccbfffdcb", "fields": {"nom_de_la_commune": "LE CLOITRE PLEYBEN", "libell_d_acheminement": "LE CLOITRE PLEYBEN", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29033"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3434fd4d7484460bbe9425a50c365db3963189a", "fields": {"nom_de_la_commune": "COLLOREC", "libell_d_acheminement": "COLLOREC", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29036"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578338be34c362f672e309d77c27ade4b11566ac", "fields": {"nom_de_la_commune": "LE CONQUET", "libell_d_acheminement": "LE CONQUET", "code_postal": "29217", "coordonnees_gps": [48.3548137568, -4.73034046541], "code_commune_insee": "29040"}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750eae17e7e32c9bf796096d54001be0a4b64540", "fields": {"nom_de_la_commune": "CORAY", "libell_d_acheminement": "CORAY", "code_postal": "29370", "coordonnees_gps": [48.0256499846, -3.888334488], "code_commune_insee": "29041"}, "geometry": {"type": "Point", "coordinates": [-3.888334488, 48.0256499846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55cca8dbe2baa7f6504665c396b8590795ba1179", "fields": {"nom_de_la_commune": "LA FEUILLEE", "libell_d_acheminement": "LA FEUILLEE", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29054"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1686180b6ae76f0dd9430e88de8c5f51fe950649", "fields": {"nom_de_la_commune": "LE FOLGOET", "libell_d_acheminement": "LE FOLGOET", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29055"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79a7ed0f069af266fe5f8f9ca57452f916f03c2", "fields": {"nom_de_la_commune": "LA FOREST LANDERNEAU", "libell_d_acheminement": "LA FOREST LANDERNEAU", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29056"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69180f7a630d6601f7bf4dc942479398f9f4dbb8", "fields": {"nom_de_la_commune": "FOUESNANT", "libell_d_acheminement": "FOUESNANT", "code_postal": "29170", "coordonnees_gps": [47.912618887, -4.02039306441], "code_commune_insee": "29058"}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "670980fc973ed7e96f0b0d0161db12c49b0e3911", "fields": {"nom_de_la_commune": "HENVIC", "libell_d_acheminement": "HENVIC", "code_postal": "29670", "coordonnees_gps": [48.6115229936, -3.90607440481], "code_commune_insee": "29079"}, "geometry": {"type": "Point", "coordinates": [-3.90607440481, 48.6115229936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fdac3ce9aad00f7cf3fab5194bc0f747180ef7", "fields": {"nom_de_la_commune": "KERLAZ", "libell_d_acheminement": "KERLAZ", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29090"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e89f298e138e4c1df9f23f4657c419de874f7d", "fields": {"nom_de_la_commune": "KERLOUAN", "libell_d_acheminement": "KERLOUAN", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29091"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc80a43df1427b153e452a9f03cfae497c79d1e", "fields": {"nom_de_la_commune": "LANDEVENNEC", "libell_d_acheminement": "LANDEVENNEC", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29104"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876686c07e10dde9a8ef7060b08d788c85478993", "fields": {"nom_de_la_commune": "LANHOUARNEAU", "libell_d_acheminement": "LANHOUARNEAU", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29111"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69dfdebe36cd2143a6808dbb54b33ad429f97c71", "fields": {"nom_de_la_commune": "LANNILIS", "libell_d_acheminement": "LANNILIS", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29117"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5997c35a11c506cf36ded592db508312c9db9f7", "fields": {"nom_de_la_commune": "LENNON", "libell_d_acheminement": "LENNON", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29123"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89fb1842f27bca56b10e60819bb0101d6e0c24aa", "fields": {"nom_de_la_commune": "LOC EGUINER", "libell_d_acheminement": "LOC EGUINER", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29128"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae151ba128dc24c177c1c08fab3abd3583b5e245", "fields": {"nom_de_la_commune": "LOCMARIA PLOUZANE", "libell_d_acheminement": "LOCMARIA PLOUZANE", "code_postal": "29280", "coordonnees_gps": [48.3750034189, -4.61990199453], "code_commune_insee": "29130"}, "geometry": {"type": "Point", "coordinates": [-4.61990199453, 48.3750034189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5121b7599f518563cc404b7a7c1ac8310bc229d8", "fields": {"nom_de_la_commune": "LOCRONAN", "libell_d_acheminement": "LOCRONAN", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29134"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6820dfdf616f46120d63f76f864bdc9973ff85b", "fields": {"nom_de_la_commune": "LOGONNA DAOULAS", "libell_d_acheminement": "LOGONNA DAOULAS", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29137"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568d0c80197bf0e4c6096bc0e147380b24a00867", "fields": {"nom_de_la_commune": "LOTHEY", "libell_d_acheminement": "LOTHEY", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29142"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10985f1394874375c74ea895d4e8fef60bd81b4", "fields": {"nom_de_la_commune": "LA MARTYRE", "libell_d_acheminement": "LA MARTYRE", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29144"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b7f426952a99c00afc2b840cdcaad0499b8814", "fields": {"nom_de_la_commune": "NEVEZ", "libell_d_acheminement": "NEVEZ", "code_postal": "29920", "coordonnees_gps": [47.815380473, -3.77580285801], "code_commune_insee": "29153"}, "geometry": {"type": "Point", "coordinates": [-3.77580285801, 47.815380473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe82fabe8ad2bfe0976cfcea0a28d19e636226c", "fields": {"nom_de_la_commune": "OUESSANT", "libell_d_acheminement": "ILE D OUESSANT", "code_postal": "29242", "coordonnees_gps": [48.459903719, -5.08558073486], "code_commune_insee": "29155"}, "geometry": {"type": "Point", "coordinates": [-5.08558073486, 48.459903719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416aa631e1b142c40c5be2b9b426848e95fffa70", "fields": {"code_postal": "29760", "code_commune_insee": "29158", "libell_d_acheminement": "PENMARCH", "ligne_5": "ST GUENOLE", "nom_de_la_commune": "PENMARCH", "coordonnees_gps": [47.8121356044, -4.34149591824]}, "geometry": {"type": "Point", "coordinates": [-4.34149591824, 47.8121356044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20a7360895c8a38fc03f50a23b11b2f28ebaa94", "fields": {"nom_de_la_commune": "PLOMEUR", "libell_d_acheminement": "PLOMEUR", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29171"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25800122d0430982cfa9f8e521eba582f499a38f", "fields": {"nom_de_la_commune": "PLONEOUR LANVERN", "libell_d_acheminement": "PLONEOUR LANVERN", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29174"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb9abe39c7e3c874276dd9d6ec32be390db7abc", "fields": {"nom_de_la_commune": "PLONEVEZ DU FAOU", "libell_d_acheminement": "PLONEVEZ DU FAOU", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29175"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a12d3041e3423adae6b0f98f3a9d7040c8c034e", "fields": {"nom_de_la_commune": "PLOUEZOC H", "libell_d_acheminement": "PLOUEZOC H", "code_postal": "29252", "coordonnees_gps": [48.6370036944, -3.81562783248], "code_commune_insee": "29186"}, "geometry": {"type": "Point", "coordinates": [-3.81562783248, 48.6370036944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96d42ac5a6e187b4091d9cdd426e85f0706477f", "fields": {"nom_de_la_commune": "PLOUGUIN", "libell_d_acheminement": "PLOUGUIN", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29196"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa530b9c4111c3e7893c07e128c0820360e786c2", "fields": {"nom_de_la_commune": "PLOUNEOUR MENEZ", "libell_d_acheminement": "PLOUNEOUR MENEZ", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29202"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e0812df5cb0aa7c292f3dc43f2f2245d1105cc", "fields": {"nom_de_la_commune": "PLOUNEVEZEL", "libell_d_acheminement": "PLOUNEVEZEL", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29205"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b63e94738ff6e716bd9295e15f393c1a3dd63ca", "fields": {"nom_de_la_commune": "PLOUNEVEZ LOCHRIST", "libell_d_acheminement": "PLOUNEVEZ LOCHRIST", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29206"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82ef0ae3df79c9e382d8d2d20d1ce3ffd04d37d", "fields": {"nom_de_la_commune": "PLOURIN LES MORLAIX", "libell_d_acheminement": "PLOURIN LES MORLAIX", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29207"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf71a910d581a92ee158d444355606434af13e33", "fields": {"nom_de_la_commune": "PLOUZEVEDE", "libell_d_acheminement": "PLOUZEVEDE", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29213"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad8e6a427033210ec46dfe016243ac62a721bf5", "fields": {"nom_de_la_commune": "QUERRIEN", "libell_d_acheminement": "QUERRIEN", "code_postal": "29310", "coordonnees_gps": [47.9478080575, -3.53309930028], "code_commune_insee": "29230"}, "geometry": {"type": "Point", "coordinates": [-3.53309930028, 47.9478080575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1d35aee09202126f2fa010582c65b9121ec0a4", "fields": {"nom_de_la_commune": "ST DERRIEN", "libell_d_acheminement": "ST DERRIEN", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29244"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8897235c6f1a6ff36adaa709a592a047f2c9e98", "fields": {"nom_de_la_commune": "ST ELOY", "libell_d_acheminement": "ST ELOY", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29246"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900d76a3aedd0daf810566cc5f014310f0564569", "fields": {"nom_de_la_commune": "ST JEAN TROLIMON", "libell_d_acheminement": "ST JEAN TROLIMON", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29252"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731ca452afa5950b46094a707a397f57c51eab4b", "fields": {"nom_de_la_commune": "ST THEGONNEC LOC EGUINER", "libell_d_acheminement": "ST THEGONNEC LOC EGUINER", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29266"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a7e977a2707e8cfb3daba9e1a51ee2a4c206d7", "fields": {"nom_de_la_commune": "ST THONAN", "libell_d_acheminement": "ST THONAN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29268"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333040ae6c8532b737ddfd9cc7c634e3b3480dbe", "fields": {"nom_de_la_commune": "ST THURIEN", "libell_d_acheminement": "ST THURIEN", "code_postal": "29380", "coordonnees_gps": [47.931095922, -3.67533522316], "code_commune_insee": "29269"}, "geometry": {"type": "Point", "coordinates": [-3.67533522316, 47.931095922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce01b138017df38ddb219a0a6648d2139df6883f", "fields": {"nom_de_la_commune": "TOURCH", "libell_d_acheminement": "TOURCH", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29281"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a8298e2df494bd94a01bd60d16a4c8e00d7472", "fields": {"nom_de_la_commune": "LE PERTHUS", "libell_d_acheminement": "LE PERTHUS", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66137"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602404425027101caf9c7bc1e7cb2dfc76b3a978", "fields": {"nom_de_la_commune": "PIA", "libell_d_acheminement": "PIA", "code_postal": "66380", "coordonnees_gps": [42.7491096887, 2.91515282762], "code_commune_insee": "66141"}, "geometry": {"type": "Point", "coordinates": [2.91515282762, 42.7491096887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e77d81ffae95bd71f778275511e8ad136e22e90", "fields": {"nom_de_la_commune": "PONTEILLA", "libell_d_acheminement": "PONTEILLA", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66145"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015b681ad7c7a51170f6a641415200855967672d", "fields": {"nom_de_la_commune": "PUYVALADOR", "libell_d_acheminement": "PUYVALADOR", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66154"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c5633ac12af0fbbc510e86f3330af9e0c06392", "fields": {"nom_de_la_commune": "PY", "libell_d_acheminement": "PY", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66155"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76678775c480257daa6eb9bf5e1630862963a55c", "fields": {"nom_de_la_commune": "RIGARDA", "libell_d_acheminement": "RIGARDA", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66162"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334c7cfafe8466c128ae099b974c5fa2ce86041f", "fields": {"nom_de_la_commune": "STE COLOMBE DE LA COMMANDERIE", "libell_d_acheminement": "STE COLOMBE DE LA COMMANDERIE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66170"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edab17ca13aeb5193ae983bc0ff0c75460af081a", "fields": {"nom_de_la_commune": "ST MARTIN DE FENOUILLET", "libell_d_acheminement": "ST MARTIN DE FENOUILLET", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66184"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae57ca6728348bf088f5aa446de500759796201", "fields": {"nom_de_la_commune": "SALEILLES", "libell_d_acheminement": "SALEILLES", "code_postal": "66280", "coordonnees_gps": [42.6571521574, 2.94899721736], "code_commune_insee": "66189"}, "geometry": {"type": "Point", "coordinates": [2.94899721736, 42.6571521574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949bf4e2dbc7fbe3f4da2fae1d4db814c2b30892", "fields": {"nom_de_la_commune": "SALSES LE CHATEAU", "libell_d_acheminement": "SALSES LE CHATEAU", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66190"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c6d36182060fcd92cb15220da220f4aee4b2e0", "fields": {"nom_de_la_commune": "SAUTO", "libell_d_acheminement": "SAUTO", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66192"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00fad407ea3570cdfda773778dce7456c7c20574", "fields": {"nom_de_la_commune": "SOUANYAS", "libell_d_acheminement": "SOUANYAS", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66197"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2881128db6dbb58c1d0a5486c97a69804090d912", "fields": {"nom_de_la_commune": "TAULIS", "libell_d_acheminement": "TAULIS", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66203"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b057f913eecfa7957d84835a4f120148359a2813", "fields": {"nom_de_la_commune": "TOULOUGES", "libell_d_acheminement": "TOULOUGES", "code_postal": "66350", "coordonnees_gps": [42.6703079126, 2.82366497706], "code_commune_insee": "66213"}, "geometry": {"type": "Point", "coordinates": [2.82366497706, 42.6703079126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be7d3343400199984302e700e11a9a8471c989a", "fields": {"nom_de_la_commune": "TRESSERRE", "libell_d_acheminement": "TRESSERRE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66214"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54e86876485b82d36211411b7aab53efc90f701", "fields": {"nom_de_la_commune": "UR", "libell_d_acheminement": "UR", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66218"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5d34ee651e8c440102425404b38b3add0e8e51", "fields": {"nom_de_la_commune": "VALMANYA", "libell_d_acheminement": "VALMANYA", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66221"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a68002ac0b8088de2e14d8feed1f076d963f611", "fields": {"nom_de_la_commune": "VILLELONGUE DE LA SALANQUE", "libell_d_acheminement": "VILLELONGUE DE LA SALANQUE", "code_postal": "66410", "coordonnees_gps": [42.725777411, 2.97701363818], "code_commune_insee": "66224"}, "geometry": {"type": "Point", "coordinates": [2.97701363818, 42.725777411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01616e8a5d3d438872f548f80a4735027033637f", "fields": {"nom_de_la_commune": "VILLENEUVE LA RIVIERE", "libell_d_acheminement": "VILLENEUVE LA RIVIERE", "code_postal": "66610", "coordonnees_gps": [42.7054255947, 2.79893251682], "code_commune_insee": "66228"}, "geometry": {"type": "Point", "coordinates": [2.79893251682, 42.7054255947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da422ceb9b7ce0619cdff07bb70e195d88ba06c3", "fields": {"nom_de_la_commune": "VINCA", "libell_d_acheminement": "VINCA", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66230"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97d3f5bf1c220101c0e5e4c298f292e55de7e80", "fields": {"nom_de_la_commune": "VINGRAU", "libell_d_acheminement": "VINGRAU", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66231"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f2bc475913cb2256fb2c4b954577eb750f6f4d", "fields": {"nom_de_la_commune": "ADAMSWILLER", "libell_d_acheminement": "ADAMSWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67002"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcb042e161c6fdd55aa3995cef41c2d61f6be9c", "fields": {"code_postal": "67440", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "BIRKENWALD", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87f816cf151d5058d8dee80646e711bf1dc4a5b", "fields": {"code_postal": "67440", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "SINGRIST", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0467c252d08aad08e35dffcef418cf750932db7f", "fields": {"nom_de_la_commune": "ALTECKENDORF", "libell_d_acheminement": "ALTECKENDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67005"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3182e2159c5a6da7b3fd30876f257548b8d878", "fields": {"nom_de_la_commune": "ALTORF", "libell_d_acheminement": "ALTORF", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67008"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681cb37f1aca67f4e800e765e7146732e1ee64f3", "fields": {"nom_de_la_commune": "ARTOLSHEIM", "libell_d_acheminement": "ARTOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67011"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c520f5061709564fd562cdffc6022fa3e843fc", "fields": {"nom_de_la_commune": "ASSWILLER", "libell_d_acheminement": "ASSWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67013"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "518e545acea39c1ddf0d079d1cc202f11b0ee6c4", "fields": {"nom_de_la_commune": "BAERENDORF", "libell_d_acheminement": "BAERENDORF", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67017"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab5b615f9120d941a3278557c0188e0a95e4e66", "fields": {"nom_de_la_commune": "BERG", "libell_d_acheminement": "BERG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67029"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d031421bde3a3abd83af28851c1ee518e97ae289", "fields": {"nom_de_la_commune": "BERGBIETEN", "libell_d_acheminement": "BERGBIETEN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67030"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf19f92b3f758d8a70243a439f8488f21615287", "fields": {"code_postal": "67370", "code_commune_insee": "67034", "libell_d_acheminement": "BERSTETT", "ligne_5": "RUMERSHEIM", "nom_de_la_commune": "BERSTETT", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41330a4b01c6c8ed500ecf4a1b77cebf93d9cf8d", "fields": {"nom_de_la_commune": "BERSTHEIM", "libell_d_acheminement": "BERSTHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67035"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d0f3925420bb097f99d8ba7ce33b9fb73817d7", "fields": {"nom_de_la_commune": "BISSERT", "libell_d_acheminement": "BISSERT", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67047"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e4c1639d54fbd76a2252600b7e2491d154c142", "fields": {"nom_de_la_commune": "BLANCHERUPT", "libell_d_acheminement": "BLANCHERUPT", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67050"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470932139a7eb86464207af5b09a48199b44eca1", "fields": {"nom_de_la_commune": "BOSSENDORF", "libell_d_acheminement": "BOSSENDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67058"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8625a454f224eaac638e2ea416cafa0579cd45", "fields": {"nom_de_la_commune": "BREITENAU", "libell_d_acheminement": "BREITENAU", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67062"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f8b98f4db54004bcfbc7dee09b42c99aa4a78d", "fields": {"nom_de_la_commune": "BRUMATH", "libell_d_acheminement": "BRUMATH", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67067"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3795c346dec8b0950c10586cda809b86d8ec29bd", "fields": {"nom_de_la_commune": "BUSWILLER", "libell_d_acheminement": "BUSWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67068"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a069b16d8ee1a45051317538eaba72b81ce384c5", "fields": {"nom_de_la_commune": "BUST", "libell_d_acheminement": "BUST", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67071"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93cd89200f042ab9c5f51481a520dd1424188ebc", "fields": {"nom_de_la_commune": "CLIMBACH", "libell_d_acheminement": "CLIMBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67075"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adab6328882936c1a4415c1aa96e656658c166ec", "fields": {"nom_de_la_commune": "COLROY LA ROCHE", "libell_d_acheminement": "COLROY LA ROCHE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67076"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f076e0357ef7e29c29154cc9c4ab4a7f2d0b891f", "fields": {"nom_de_la_commune": "DIEBOLSHEIM", "libell_d_acheminement": "DIEBOLSHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67090"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a099925d91b123f25ee43ad441e5085eaae991", "fields": {"nom_de_la_commune": "DIEMERINGEN", "libell_d_acheminement": "DIEMERINGEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67095"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d120b5580f1f0729d1992a0849b8a42c9fbcb7", "fields": {"nom_de_la_commune": "DRACHENBRONN BIRLENBACH", "libell_d_acheminement": "DRACHENBRONN BIRLENBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67104"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0746b3f6a890555b896b76d2c70978d1a560d9f9", "fields": {"nom_de_la_commune": "DUNTZENHEIM", "libell_d_acheminement": "DUNTZENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67107"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9665581567a20d2c8fcb9932bd26a61502b6e833", "fields": {"nom_de_la_commune": "DURRENBACH", "libell_d_acheminement": "DURRENBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67110"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287226f55f421dd9fe770e51ddc512b0ccb238c8", "fields": {"nom_de_la_commune": "DUTTLENHEIM", "libell_d_acheminement": "DUTTLENHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67112"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed98730b110f37a4a8fd9ce82dc93b808babffaa", "fields": {"nom_de_la_commune": "ECKARTSWILLER", "libell_d_acheminement": "ECKARTSWILLER", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67117"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9026c0a81acddabdfb71289013464581f6db810d", "fields": {"nom_de_la_commune": "EICHHOFFEN", "libell_d_acheminement": "EICHHOFFEN", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67120"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a84d70d254e474463065a3f7459e62ec425a2b", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "SCHNEETHAL", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a50dcfd5b75706317e4eafe322554180d36e512c", "fields": {"code_postal": "67150", "code_commune_insee": "67130", "libell_d_acheminement": "ERSTEIN", "ligne_5": "KRAFFT", "nom_de_la_commune": "ERSTEIN", "coordonnees_gps": [48.4189432585, 7.66592042678]}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8027d2e3e255173fc98db06827eda49308b9863f", "fields": {"nom_de_la_commune": "ESCHWILLER", "libell_d_acheminement": "ESCHWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67134"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92f5663249e6c8242fc93392f02f6f5269d0552", "fields": {"nom_de_la_commune": "EYWILLER", "libell_d_acheminement": "EYWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67136"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb6e3f14f4154c72fd65137e6eb945da70f68eb", "fields": {"nom_de_la_commune": "FOUCHY", "libell_d_acheminement": "FOUCHY", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67143"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b491ace7d226d73b048596de9265434dde64a6e7", "fields": {"nom_de_la_commune": "GRIES", "libell_d_acheminement": "GRIES", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67169"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d9c5e7af7dc659fb8e4f60c1f2e0ec46a4a0ba", "fields": {"nom_de_la_commune": "GUNDERSHOFFEN", "libell_d_acheminement": "GUNDERSHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67176"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072c5ee5c39a43ee67bbf92e3248c609d6454aff", "fields": {"code_postal": "67500", "code_commune_insee": "67180", "libell_d_acheminement": "HAGUENAU", "ligne_5": "MARIENTHAL", "nom_de_la_commune": "HAGUENAU", "coordonnees_gps": [48.83252193, 7.82037649522]}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03c1f31e3d985d71218d0ef4c8f3731b1d4ffc6", "fields": {"nom_de_la_commune": "HANGENBIETEN", "libell_d_acheminement": "HANGENBIETEN", "code_postal": "67980", "coordonnees_gps": [48.5566327988, 7.61284773841], "code_commune_insee": "67182"}, "geometry": {"type": "Point", "coordinates": [7.61284773841, 48.5566327988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92852864669817a27801fd2f1db3511d3db2609a", "fields": {"nom_de_la_commune": "HEGENEY", "libell_d_acheminement": "HEGENEY", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67186"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c9f019548ff30129e5e43cd0a4c4fcada86726", "fields": {"nom_de_la_commune": "HERBSHEIM", "libell_d_acheminement": "HERBSHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67192"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2732ba695ce73a5dcd4687b520464adf6fda5aae", "fields": {"nom_de_la_commune": "HUNSPACH", "libell_d_acheminement": "HUNSPACH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67213"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d93fd9dc7059e1f73ea2d362614c7b69d6b00d", "fields": {"nom_de_la_commune": "INGOLSHEIM", "libell_d_acheminement": "INGOLSHEIM", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67221"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d292092a5c2ad75d423a382b7b8f7c2360f24c0", "fields": {"nom_de_la_commune": "ITTENHEIM", "libell_d_acheminement": "ITTENHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67226"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c023ab0a7fdbf2b3d14b019d156157f1b6f20031", "fields": {"nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", "libell_d_acheminement": "NEUGARTHEIM ITTLENHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67228"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07525b1d4afe8c6c639938f05328cbe1ba634df", "fields": {"nom_de_la_commune": "KALTENHOUSE", "libell_d_acheminement": "KALTENHOUSE", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67230"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c67708d9d62d5a4b84aabb44d90b4965cb544ce5", "fields": {"nom_de_la_commune": "KERTZFELD", "libell_d_acheminement": "KERTZFELD", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67233"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d733f2917a3721aea22b005fecb367bfe2d5488", "fields": {"nom_de_la_commune": "KESSELDORF", "libell_d_acheminement": "KESSELDORF", "code_postal": "67930", "coordonnees_gps": [48.8645701824, 8.0807216154], "code_commune_insee": "67235"}, "geometry": {"type": "Point", "coordinates": [8.0807216154, 48.8645701824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4953d3d35a68cd75773eb33aeacf5081ac3828d", "fields": {"nom_de_la_commune": "KIENHEIM", "libell_d_acheminement": "KIENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67236"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b982ba56f27a3978a9722afabea1bb4c176cb0af", "fields": {"nom_de_la_commune": "KINTZHEIM", "libell_d_acheminement": "KINTZHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67239"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4767d69c5e272ca15a001ecbf70722dca53f7363", "fields": {"nom_de_la_commune": "KOGENHEIM", "libell_d_acheminement": "KOGENHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67246"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87069c6036c82520181a9164d7b6bfcebb4b45d4", "fields": {"nom_de_la_commune": "KRAUTERGERSHEIM", "libell_d_acheminement": "KRAUTERGERSHEIM", "code_postal": "67880", "coordonnees_gps": [48.4869700046, 7.56924214969], "code_commune_insee": "67248"}, "geometry": {"type": "Point", "coordinates": [7.56924214969, 48.4869700046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f971d1e0ebce9e50a426a9bf0c795246df6b52b6", "fields": {"nom_de_la_commune": "KRAUTWILLER", "libell_d_acheminement": "KRAUTWILLER", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67249"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285081fe1ec78de82445b74c43e618147a583194", "fields": {"nom_de_la_commune": "KUTZENHAUSEN", "libell_d_acheminement": "KUTZENHAUSEN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67254"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92e753b120b08c9b8c77362d83b422e52ae0457", "fields": {"nom_de_la_commune": "LALAYE", "libell_d_acheminement": "LALAYE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67255"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2053b8f851c1441f2a04d01728ac407dea3e70a1", "fields": {"code_postal": "67220", "code_commune_insee": "67255", "libell_d_acheminement": "LALAYE", "ligne_5": "CHARBES", "nom_de_la_commune": "LALAYE", "coordonnees_gps": [48.3397350207, 7.28306516568]}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d9c16a7c73e1b459ccc005ea317f5a6d2f1a15", "fields": {"nom_de_la_commune": "LAUBACH", "libell_d_acheminement": "LAUBACH", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67260"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099c770bfcecfce014363fe5bc5f090544b7876c", "fields": {"code_postal": "67510", "code_commune_insee": "67263", "libell_d_acheminement": "LEMBACH", "ligne_5": "MATTSTALL", "nom_de_la_commune": "LEMBACH", "coordonnees_gps": [49.0227242639, 7.76839928059]}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541fddf5e9eee38ad75e60b420fb029f0e6afc27", "fields": {"nom_de_la_commune": "LOHR", "libell_d_acheminement": "LOHR", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67273"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c80adc20e2e02e69fb9673e6d7cf0750a257db6", "fields": {"nom_de_la_commune": "LUPSTEIN", "libell_d_acheminement": "LUPSTEIN", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67275"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7154bbdc8d975d004866bc1ff107d97e779bf66d", "fields": {"nom_de_la_commune": "MAISONSGOUTTE", "libell_d_acheminement": "MAISONSGOUTTE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67280"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c9c114f6995d952ff5d1395b03c394cb8e288c", "fields": {"nom_de_la_commune": "MEMMELSHOFFEN", "libell_d_acheminement": "MEMMELSHOFFEN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67288"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11bf68979ffad992ac9dd9c565ae4624baf5df5e", "fields": {"code_postal": "67250", "code_commune_insee": "67290", "libell_d_acheminement": "MERKWILLER PECHELBRONN", "ligne_5": "HOELSCHLOCH", "nom_de_la_commune": "MERKWILLER PECHELBRONN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba00c3c2218c213565d47edabcbd05a60c7ce3f", "fields": {"nom_de_la_commune": "MITTELBERGHEIM", "libell_d_acheminement": "MITTELBERGHEIM", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67295"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609599090b4fabd85da97f0bdd444a49654e872d", "fields": {"nom_de_la_commune": "MOLLKIRCH", "libell_d_acheminement": "MOLLKIRCH", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67299"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665bcc3d6aba790ccab2934aa0699b7159abd876", "fields": {"nom_de_la_commune": "MORSCHWILLER", "libell_d_acheminement": "MORSCHWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67304"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef5f8fd62fb9a922785dac87fae1daac3fb39bd", "fields": {"nom_de_la_commune": "MOTHERN", "libell_d_acheminement": "MOTHERN", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67305"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2db6e312bcfc74b16d1346ea0632c99165667c2", "fields": {"nom_de_la_commune": "MUHLBACH SUR BRUCHE", "libell_d_acheminement": "MUHLBACH SUR BRUCHE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67306"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece48b0c5f1c58c1b2d8401a20869ae5583f4239", "fields": {"nom_de_la_commune": "MUTTERSHOLTZ", "libell_d_acheminement": "MUTTERSHOLTZ", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67311"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db17157df7f7f5e63671160b197dbfc6e69b720", "fields": {"nom_de_la_commune": "NEEWILLER PRES LAUTERBOURG", "libell_d_acheminement": "NEEWILLER PRES LAUTERBOURG", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67315"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac47927cc58fbefb5e2cf1dd25ee6a9341570bf5", "fields": {"nom_de_la_commune": "NEUVILLER LA ROCHE", "libell_d_acheminement": "NEUVILLER LA ROCHE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67321"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda2bfb0bdb7bb5db2b2717917a16ff25c98bc78", "fields": {"nom_de_la_commune": "NEUWILLER LES SAVERNE", "libell_d_acheminement": "NEUWILLER LES SAVERNE", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67322"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea18cecb223df3e00b8eb24119e676cc939f0c0b", "fields": {"nom_de_la_commune": "NIEDERHASLACH", "libell_d_acheminement": "NIEDERHASLACH", "code_postal": "67280", "coordonnees_gps": [48.5545295138, 7.30377202795], "code_commune_insee": "67325"}, "geometry": {"type": "Point", "coordinates": [7.30377202795, 48.5545295138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a74b07309c57c79e391b51d79f3a597a0204e9a", "fields": {"nom_de_la_commune": "NIEDERMODERN", "libell_d_acheminement": "NIEDERMODERN", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67328"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff1115ec38837088b3888162a022424429dfa7f", "fields": {"nom_de_la_commune": "NIEDERSOULTZBACH", "libell_d_acheminement": "NIEDERSOULTZBACH", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67333"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ecdbf031f773aea370470f11a326aa5b454014", "fields": {"nom_de_la_commune": "OBENHEIM", "libell_d_acheminement": "OBENHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67338"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001c459ee520e1b370cdede6248dfffe14e7918e", "fields": {"nom_de_la_commune": "BETSCHDORF", "libell_d_acheminement": "BETSCHDORF", "code_postal": "67660", "coordonnees_gps": [48.8932955893, 7.92442100196], "code_commune_insee": "67339"}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6834976f98833700d356d2f6ac4767b829b5572b", "fields": {"nom_de_la_commune": "OBERDORF SPACHBACH", "libell_d_acheminement": "OBERDORF SPACHBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67341"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b80bc19d428550554da88042c0067826c1303e3", "fields": {"nom_de_la_commune": "OBERHOFFEN LES WISSEMBOURG", "libell_d_acheminement": "OBERHOFFEN LES WISSEMBOURG", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67344"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73525df2a57b203b74301a4935ed66a1f4b52118", "fields": {"nom_de_la_commune": "OBERMODERN ZUTZENDORF", "libell_d_acheminement": "OBERMODERN ZUTZENDORF", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67347"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53205160abbae1e56bcb85290d02711e275e9d37", "fields": {"nom_de_la_commune": "CHASSAGNES", "libell_d_acheminement": "CHASSAGNES", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43063"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216da74092af2344b056fd366ca2505e1dc77f37", "fields": {"nom_de_la_commune": "CHAVANIAC LAFAYETTE", "libell_d_acheminement": "CHAVANIAC LAFAYETTE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43067"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584c8b523fa30db86cd192e51d3045d8142d8966", "fields": {"nom_de_la_commune": "CHENEREILLES", "libell_d_acheminement": "CHENEREILLES", "code_postal": "43190", "coordonnees_gps": [45.1188374413, 4.29959378038], "code_commune_insee": "43069"}, "geometry": {"type": "Point", "coordinates": [4.29959378038, 45.1188374413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ae033b64595909e4297f6c7c08f41b8b476852", "fields": {"nom_de_la_commune": "CHOMELIX", "libell_d_acheminement": "CHOMELIX", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43071"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798480c9c20533962d17dc6d8e16157a2cb1c7fd", "fields": {"nom_de_la_commune": "LA CHOMETTE", "libell_d_acheminement": "LA CHOMETTE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43072"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48453d9a8d9068e6b00384a8a697b2d5bc1ef3a", "fields": {"nom_de_la_commune": "CRAPONNE SUR ARZON", "libell_d_acheminement": "CRAPONNE SUR ARZON", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43080"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad1c395316866cac894fb61ea4f93c9db3c716d", "fields": {"nom_de_la_commune": "CRONCE", "libell_d_acheminement": "CRONCE", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43082"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305e4cfca2da44abe6dba75c154ebbac2224293f", "fields": {"nom_de_la_commune": "CUSSAC SUR LOIRE", "libell_d_acheminement": "CUSSAC SUR LOIRE", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43084"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d226930bba8d3f49a2920d81b71644dcab59f3", "fields": {"nom_de_la_commune": "ESPALEM", "libell_d_acheminement": "ESPALEM", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43088"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983edfa66519f74ea2f4320ea9739de59c004a0a", "fields": {"code_postal": "43580", "code_commune_insee": "43090", "libell_d_acheminement": "ESPLANTAS VAZEILLES", "ligne_5": "VAZEILLES PRES SAUGUES", "nom_de_la_commune": "ESPLANTAS VAZEILLES", "coordonnees_gps": [44.9273994452, 3.63004731198]}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e700543fc269a485e94ea8e1a4cd0f85809790", "fields": {"nom_de_la_commune": "FREYCENET LA TOUR", "libell_d_acheminement": "FREYCENET LA TOUR", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43098"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67febe5ecd38234920d1a2e816815b559fd0214", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43104"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeade00692286516c3c2673f7191688d61f6a0dc", "fields": {"nom_de_la_commune": "LANGEAC", "libell_d_acheminement": "LANGEAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43112"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25e9b097070c879319127f441560e3584d0d67e", "fields": {"nom_de_la_commune": "LEOTOING", "libell_d_acheminement": "LEOTOING", "code_postal": "43410", "coordonnees_gps": [45.3649207273, 3.25237177222], "code_commune_insee": "43121"}, "geometry": {"type": "Point", "coordinates": [3.25237177222, 45.3649207273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "444191c4e6c261fe6f2276ec5216f9a34d410a21", "fields": {"nom_de_la_commune": "LORLANGES", "libell_d_acheminement": "LORLANGES", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43123"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08db8c0d2713af71d501331695633b0c3d829296", "fields": {"nom_de_la_commune": "MAZERAT AUROUZE", "libell_d_acheminement": "MAZERAT AUROUZE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43131"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5f0a2922426a508d4914511d5e5930b4a5f336", "fields": {"code_postal": "43300", "code_commune_insee": "43132", "libell_d_acheminement": "MAZEYRAT D ALLIER", "ligne_5": "ST EBLE", "nom_de_la_commune": "MAZEYRAT D ALLIER", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2ed2202e6019e01783d212b9fdfbdb17a0ff4d", "fields": {"nom_de_la_commune": "MONISTROL D ALLIER", "libell_d_acheminement": "MONISTROL D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43136"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293a8eea6da610a7488070902d2e53c4312aed04", "fields": {"nom_de_la_commune": "LE MONTEIL", "libell_d_acheminement": "LE MONTEIL", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43140"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9822b724cd474084cccae9ff92e835a6d017d20c", "fields": {"nom_de_la_commune": "POLIGNAC", "libell_d_acheminement": "POLIGNAC", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43152"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721c54ceea9e6bd393fe21bfb36d022b7e1dc3d5", "fields": {"nom_de_la_commune": "PONT SALOMON", "libell_d_acheminement": "PONT SALOMON", "code_postal": "43330", "coordonnees_gps": [45.3471380637, 4.25156297945], "code_commune_insee": "43153"}, "geometry": {"type": "Point", "coordinates": [4.25156297945, 45.3471380637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04cbe3498924880df0a1ef5bd0d70c44dd30a1b", "fields": {"nom_de_la_commune": "PRESAILLES", "libell_d_acheminement": "PRESAILLES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43156"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f163245bc8ff859a72a19c50b953409949f8800a", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR DOLAISON", "libell_d_acheminement": "ST CHRISTOPHE SUR DOLAISON", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43174"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d40cf1292e5e9503f49725e0c7bfdfd3ab5323", "fields": {"nom_de_la_commune": "ST CIRGUES", "libell_d_acheminement": "ST CIRGUES", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43175"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53de3c0cde4f382bafe81af4e3c52270429f40a5", "fields": {"nom_de_la_commune": "ST FERREOL D AUROURE", "libell_d_acheminement": "ST FERREOL D AUROURE", "code_postal": "43330", "coordonnees_gps": [45.3471380637, 4.25156297945], "code_commune_insee": "43184"}, "geometry": {"type": "Point", "coordinates": [4.25156297945, 45.3471380637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e1b46b08a7580f4bc2ed78ced1654e6be28b3e", "fields": {"nom_de_la_commune": "ST GENEYS PRES ST PAULIEN", "libell_d_acheminement": "ST GENEYS PRES ST PAULIEN", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43187"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7667a6e99c22d94a3e59d3f01a964fa3585afdf8", "fields": {"nom_de_la_commune": "ST GEORGES D AURAC", "libell_d_acheminement": "ST GEORGES D AURAC", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43188"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1cdea96ec7ef4644467941665990a28fda0ec94", "fields": {"nom_de_la_commune": "ST GERMAIN LAPRADE", "libell_d_acheminement": "ST GERMAIN LAPRADE", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43190"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c84748ba4bb109f91a458f0fe4e7b7cb6ec812e", "fields": {"nom_de_la_commune": "ST HAON", "libell_d_acheminement": "ST HAON", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43192"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4215a63aa05e734e886ff579c8c15914cc33fcdf", "fields": {"nom_de_la_commune": "ST JULIEN CHAPTEUIL", "libell_d_acheminement": "ST JULIEN CHAPTEUIL", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43200"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425a393be448c56656c7f5f9cb12463fd569e1f0", "fields": {"nom_de_la_commune": "ST MAURICE DE LIGNON", "libell_d_acheminement": "ST MAURICE DE LIGNON", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43211"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ad2a25ab605e75040b0b67e88bedbfc14127a2", "fields": {"nom_de_la_commune": "ST PAULIEN", "libell_d_acheminement": "ST PAULIEN", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43216"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7814dfcbbd8e04b4db815aee0c84cbe0b0166f", "fields": {"nom_de_la_commune": "ST PIERRE EYNAC", "libell_d_acheminement": "ST PIERRE EYNAC", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43218"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8200902eaa8edb848505492d9c90b4fde11c337f", "fields": {"nom_de_la_commune": "ST PRIVAT D ALLIER", "libell_d_acheminement": "ST PRIVAT D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43221"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f91f5ce88ebf8070e2ab60683cfea0eae5d5c55", "fields": {"nom_de_la_commune": "ST PRIVAT DU DRAGON", "libell_d_acheminement": "ST PRIVAT DU DRAGON", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43222"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cb74e63729f00f7319fe0e8444c705306375e8", "fields": {"nom_de_la_commune": "STE SIGOLENE", "libell_d_acheminement": "STE SIGOLENE", "code_postal": "43600", "coordonnees_gps": [45.2449490447, 4.21509490997], "code_commune_insee": "43224"}, "geometry": {"type": "Point", "coordinates": [4.21509490997, 45.2449490447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f972a48eff2ce31d00438d8e908b74edb876308b", "fields": {"nom_de_la_commune": "ST VENERAND", "libell_d_acheminement": "ST VENERAND", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43225"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc585113a53e84bb054f2d9e5e78707c92c82584", "fields": {"nom_de_la_commune": "ST VERT", "libell_d_acheminement": "ST VERT", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43226"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baa38729e712f7d0505c18d69837fabe044ef038", "fields": {"nom_de_la_commune": "ST VICTOR MALESCOURS", "libell_d_acheminement": "ST VICTOR MALESCOURS", "code_postal": "43140", "coordonnees_gps": [45.3026508928, 4.29061531047], "code_commune_insee": "43227"}, "geometry": {"type": "Point", "coordinates": [4.29061531047, 45.3026508928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e8f2d9b1171f4cd4d460eeb6d8cfc31d057c048", "fields": {"nom_de_la_commune": "SALETTES", "libell_d_acheminement": "SALETTES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43231"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884b8f4346e813e088e28894dd1022e5becaf7b4", "fields": {"nom_de_la_commune": "SALZUIT", "libell_d_acheminement": "SALZUIT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43232"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ad4819351978c4f8714719a923bb5049886b5b", "fields": {"nom_de_la_commune": "SAUGUES", "libell_d_acheminement": "SAUGUES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43234"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5b650d392341272e0e0898c9f94892f761b2e4", "fields": {"nom_de_la_commune": "SOLIGNAC SUR LOIRE", "libell_d_acheminement": "SOLIGNAC SUR LOIRE", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43241"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3256e30d1f5af8c642284746efc20b39d8c6cd9d", "fields": {"nom_de_la_commune": "TENCE", "libell_d_acheminement": "TENCE", "code_postal": "43190", "coordonnees_gps": [45.1188374413, 4.29959378038], "code_commune_insee": "43244"}, "geometry": {"type": "Point", "coordinates": [4.29959378038, 45.1188374413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0852c82b0113d6265a2e67ef304f6f08f0562dd", "fields": {"nom_de_la_commune": "VALS LE CHASTEL", "libell_d_acheminement": "VALS LE CHASTEL", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43250"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75cfac81c56310ed5c7cea8c6bfe35f39cb9aa3", "fields": {"nom_de_la_commune": "LES VILLETTES", "libell_d_acheminement": "LES VILLETTES", "code_postal": "43600", "coordonnees_gps": [45.2449490447, 4.21509490997], "code_commune_insee": "43265"}, "geometry": {"type": "Point", "coordinates": [4.21509490997, 45.2449490447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2125330976b0220c94f32b12a98e68b7b10d5d77", "fields": {"code_postal": "44320", "code_commune_insee": "44005", "libell_d_acheminement": "CHAUMES EN RETZ", "ligne_5": "ARTHON EN RETZ", "nom_de_la_commune": "CHAUMES EN RETZ", "coordonnees_gps": [47.2108954989, -1.99426015028]}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63bb39d44e7058938077123ee34b70d8074f60f", "fields": {"code_postal": "44680", "code_commune_insee": "44005", "libell_d_acheminement": "CHAUMES EN RETZ", "ligne_5": "CHEMERE", "nom_de_la_commune": "CHAUMES EN RETZ", "coordonnees_gps": [47.1058819776, -1.85298461474]}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a55beccbb485088e6bae768f993e2f2da244fd", "fields": {"nom_de_la_commune": "AVESSAC", "libell_d_acheminement": "AVESSAC", "code_postal": "44460", "coordonnees_gps": [47.6181534488, -2.00119847224], "code_commune_insee": "44007"}, "geometry": {"type": "Point", "coordinates": [-2.00119847224, 47.6181534488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcd69639f92d97b0b2ddd6af6fcc49c8b390e1a", "fields": {"code_postal": "44130", "code_commune_insee": "44015", "libell_d_acheminement": "BLAIN", "ligne_5": "ST EMILIEN DE BLAIN", "nom_de_la_commune": "BLAIN", "coordonnees_gps": [47.4415843575, -1.78877692421]}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b644fbcab989dd84ebc0af6f9637ee17b91da6", "fields": {"code_postal": "44130", "code_commune_insee": "44015", "libell_d_acheminement": "BLAIN", "ligne_5": "ST OMER DE BLAIN", "nom_de_la_commune": "BLAIN", "coordonnees_gps": [47.4415843575, -1.78877692421]}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd51871df0557107e2f6443d96cd17fd80c8aa6b", "fields": {"nom_de_la_commune": "BOUEE", "libell_d_acheminement": "BOUEE", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44019"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "709374222d90c0e6e4f7bf059e82622568ea7e45", "fields": {"nom_de_la_commune": "BRAINS", "libell_d_acheminement": "BRAINS", "code_postal": "44830", "coordonnees_gps": [47.1596986296, -1.70104385056], "code_commune_insee": "44024"}, "geometry": {"type": "Point", "coordinates": [-1.70104385056, 47.1596986296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08663a97841973ca0807de1f3e11dfdaf9452dfe", "fields": {"nom_de_la_commune": "LE CELLIER", "libell_d_acheminement": "LE CELLIER", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44028"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede3fa9618b97b42c43025d936a33a31a0ec9cdd", "fields": {"nom_de_la_commune": "CHATEAUBRIANT", "libell_d_acheminement": "CHATEAUBRIANT", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44036"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4777f22f0b75ea5deada6c8825aedd2d0189f03", "fields": {"code_postal": "44220", "code_commune_insee": "44047", "libell_d_acheminement": "COUERON", "ligne_5": "LA CHABOSSIERE", "nom_de_la_commune": "COUERON", "coordonnees_gps": [47.230492836, -1.73028941593]}, "geometry": {"type": "Point", "coordinates": [-1.73028941593, 47.230492836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9929ba015e326336336427d8cc0eeb40fdece7e4", "fields": {"nom_de_la_commune": "DREFFEAC", "libell_d_acheminement": "DREFFEAC", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44053"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea61a89412ca67413c1b53d4ae94b60c3d93d7bb", "fields": {"nom_de_la_commune": "GUERANDE", "libell_d_acheminement": "GUERANDE", "code_postal": "44350", "coordonnees_gps": [47.3439577414, -2.41627951573], "code_commune_insee": "44069"}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a06746cdd672673988e356fd7ef5f1d9e2b6909", "fields": {"code_postal": "44350", "code_commune_insee": "44069", "libell_d_acheminement": "GUERANDE", "ligne_5": "LA MADELEINE", "nom_de_la_commune": "GUERANDE", "coordonnees_gps": [47.3439577414, -2.41627951573]}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc627045fe3bd023793273c427fa94460206d8b", "fields": {"nom_de_la_commune": "LA HAIE FOUASSIERE", "libell_d_acheminement": "LA HAIE FOUASSIERE", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44070"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af59a30dde3b7d842eb58b82f60aab04011dc85a", "fields": {"nom_de_la_commune": "HERBIGNAC", "libell_d_acheminement": "HERBIGNAC", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44072"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534663f6b4a80b8d5e180e06ad0dde1a4f2823ca", "fields": {"code_postal": "44410", "code_commune_insee": "44072", "libell_d_acheminement": "HERBIGNAC", "ligne_5": "POMPAS", "nom_de_la_commune": "HERBIGNAC", "coordonnees_gps": [47.4324776311, -2.33169406972]}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fba454b9a2cf627b40f1073b72cdfb7f16358f", "fields": {"code_postal": "44610", "code_commune_insee": "44074", "libell_d_acheminement": "INDRE", "ligne_5": "BASSE INDRE", "nom_de_la_commune": "INDRE", "coordonnees_gps": [47.1984071351, -1.67155607359]}, "geometry": {"type": "Point", "coordinates": [-1.67155607359, 47.1984071351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30f310a7a034b690b249a8e6468f245c712594f", "fields": {"nom_de_la_commune": "JUIGNE DES MOUTIERS", "libell_d_acheminement": "JUIGNE DES MOUTIERS", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44078"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee14f80fdbfe82f3da650d67147e031faea46ff", "fields": {"nom_de_la_commune": "MAUMUSSON", "libell_d_acheminement": "MAUMUSSON", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44093"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce1d283298308c1441666f00176e7258d81b01e", "fields": {"nom_de_la_commune": "MAUVES SUR LOIRE", "libell_d_acheminement": "MAUVES SUR LOIRE", "code_postal": "44470", "coordonnees_gps": [47.3000422915, -1.4503189654], "code_commune_insee": "44094"}, "geometry": {"type": "Point", "coordinates": [-1.4503189654, 47.3000422915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec882558d3f57234fc16a2e22e5d5049066a71c", "fields": {"nom_de_la_commune": "LA MEILLERAYE DE BRETAGNE", "libell_d_acheminement": "LA MEILLERAYE DE BRETAGNE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44095"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cdabbaf395fbffc4d46ee123745238d5fbc1b8a", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44000", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c8c6a67df9402833243b0a5e0ec135edce6aa0", "fields": {"nom_de_la_commune": "NOYAL SUR BRUTZ", "libell_d_acheminement": "NOYAL SUR BRUTZ", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44112"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ff04a72c14b33e0a927e4ccfdd1fe94ef2e1ae", "fields": {"nom_de_la_commune": "ORVAULT", "libell_d_acheminement": "ORVAULT", "code_postal": "44700", "coordonnees_gps": [47.2742584851, -1.62327402303], "code_commune_insee": "44114"}, "geometry": {"type": "Point", "coordinates": [-1.62327402303, 47.2742584851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021cd51487efea914c445320b15471e0a1e1df4c", "fields": {"nom_de_la_commune": "PANNECE", "libell_d_acheminement": "PANNECE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44118"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c0797efbb9a706d669d6a49864a9a99120ee29b", "fields": {"nom_de_la_commune": "PAULX", "libell_d_acheminement": "PAULX", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44119"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4694a11b825999d04b38f59d3b05fe86309c5a67", "fields": {"nom_de_la_commune": "PETIT MARS", "libell_d_acheminement": "PETIT MARS", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44122"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09bc86b7dd6bbe5633f6b43557dee7b11b4bf1bb", "fields": {"nom_de_la_commune": "PIRIAC SUR MER", "libell_d_acheminement": "PIRIAC SUR MER", "code_postal": "44420", "coordonnees_gps": [47.373686193, -2.48987078247], "code_commune_insee": "44125"}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471418d615363d8962761cb6053220249d3a6e4a", "fields": {"code_postal": "44630", "code_commune_insee": "44128", "libell_d_acheminement": "PLESSE", "ligne_5": "LE COUDRAY", "nom_de_la_commune": "PLESSE", "coordonnees_gps": [47.5557950636, -1.89023163627]}, "geometry": {"type": "Point", "coordinates": [-1.89023163627, 47.5557950636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3925d429a32915d2d69013a9bd2810d55aeb140c", "fields": {"nom_de_la_commune": "PONTCHATEAU", "libell_d_acheminement": "PONTCHATEAU", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44129"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6180ee939763dcc180502ad9894931cca9469428", "fields": {"code_postal": "44210", "code_commune_insee": "44131", "libell_d_acheminement": "PORNIC", "ligne_5": "LE CLION SUR MER", "nom_de_la_commune": "PORNIC", "coordonnees_gps": [47.122206427, -2.05186337229]}, "geometry": {"type": "Point", "coordinates": [-2.05186337229, 47.122206427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44ce2f8f0efa83102a9533e10b43a0d57fccd8af", "fields": {"nom_de_la_commune": "PUCEUL", "libell_d_acheminement": "PUCEUL", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44138"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f106b3124f4f38deaad40261636ec5c1f6150da", "fields": {"nom_de_la_commune": "QUILLY", "libell_d_acheminement": "QUILLY", "code_postal": "44750", "coordonnees_gps": [47.4278237849, -1.96018609185], "code_commune_insee": "44139"}, "geometry": {"type": "Point", "coordinates": [-1.96018609185, 47.4278237849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2f843466eb2d0433bd6df938e107897c5ec244", "fields": {"nom_de_la_commune": "RIAILLE", "libell_d_acheminement": "RIAILLE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44144"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d525bebdf8765e40113801dbf77edb19ace08c4", "fields": {"nom_de_la_commune": "RUFFIGNE", "libell_d_acheminement": "RUFFIGNE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44148"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817c861dee35bd3e2f95a3db31407ad78fd084f8", "fields": {"nom_de_la_commune": "ST AIGNAN GRANDLIEU", "libell_d_acheminement": "ST AIGNAN GRANDLIEU", "code_postal": "44860", "coordonnees_gps": [47.1293725692, -1.59139240082], "code_commune_insee": "44150"}, "geometry": {"type": "Point", "coordinates": [-1.59139240082, 47.1293725692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fdfcef278c02ca067c4cd446d840170b063b2e", "fields": {"nom_de_la_commune": "STE ANNE SUR BRIVET", "libell_d_acheminement": "STE ANNE SUR BRIVET", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44152"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ddb66f7a69b911a0a8a893fe36ac5415d935c01", "fields": {"nom_de_la_commune": "ST AUBIN DES CHATEAUX", "libell_d_acheminement": "ST AUBIN DES CHATEAUX", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44153"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236e5ba2a721ea20d715b247b7b95baecc7cd362", "fields": {"code_postal": "44650", "code_commune_insee": "44156", "libell_d_acheminement": "CORCOUE SUR LOGNE", "ligne_5": "ST JEAN DE CORCOUE", "nom_de_la_commune": "CORCOUE SUR LOGNE", "coordonnees_gps": [46.9200173219, -1.61088022271]}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f10989a01d130bc44eee88b8cbd56e765f97c13", "fields": {"nom_de_la_commune": "ST HILAIRE DE CLISSON", "libell_d_acheminement": "ST HILAIRE DE CLISSON", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44165"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77dd45b78eba9c80e6abce12a8cc3041296ab31", "fields": {"nom_de_la_commune": "ST JULIEN DE CONCELLES", "libell_d_acheminement": "ST JULIEN DE CONCELLES", "code_postal": "44450", "coordonnees_gps": [47.2609944569, -1.38232107674], "code_commune_insee": "44169"}, "geometry": {"type": "Point", "coordinates": [-1.38232107674, 47.2609944569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0abb46930d9e19efc788f4a595e90b7a0bcc0c", "fields": {"nom_de_la_commune": "ST LEGER LES VIGNES", "libell_d_acheminement": "ST LEGER LES VIGNES", "code_postal": "44710", "coordonnees_gps": [47.1414628863, -1.75847032416], "code_commune_insee": "44171"}, "geometry": {"type": "Point", "coordinates": [-1.75847032416, 47.1414628863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045bcc9787a1e7c379168bfba6b94c609041f977", "fields": {"nom_de_la_commune": "ST MALO DE GUERSAC", "libell_d_acheminement": "ST MALO DE GUERSAC", "code_postal": "44550", "coordonnees_gps": [47.3304711447, -2.15365906277], "code_commune_insee": "44176"}, "geometry": {"type": "Point", "coordinates": [-2.15365906277, 47.3304711447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256884cbe4b411cb29e57573c14962316c05684f", "fields": {"nom_de_la_commune": "STE PAZANNE", "libell_d_acheminement": "STE PAZANNE", "code_postal": "44680", "coordonnees_gps": [47.1058819776, -1.85298461474], "code_commune_insee": "44186"}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ca9d314353ba273a0308fec9757402d4173095", "fields": {"nom_de_la_commune": "SION LES MINES", "libell_d_acheminement": "SION LES MINES", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44197"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a680adf5e44b44006aeb6526da74b34e06e58273", "fields": {"nom_de_la_commune": "TOUVOIS", "libell_d_acheminement": "TOUVOIS", "code_postal": "44650", "coordonnees_gps": [46.9200173219, -1.61088022271], "code_commune_insee": "44206"}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a13645818b933862ae051e02ada02bf49b519b", "fields": {"nom_de_la_commune": "VIGNEUX DE BRETAGNE", "libell_d_acheminement": "VIGNEUX DE BRETAGNE", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44217"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe73527f58ef8e55d96b6221738ebdd3b5e0c31", "fields": {"nom_de_la_commune": "LA CHEVALLERAIS", "libell_d_acheminement": "LA CHEVALLERAIS", "code_postal": "44810", "coordonnees_gps": [47.42821115, -1.64065236011], "code_commune_insee": "44221"}, "geometry": {"type": "Point", "coordinates": [-1.64065236011, 47.42821115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dfa78e34d36fa5041af0487bda7c0b566c4e3b", "fields": {"nom_de_la_commune": "ADON", "libell_d_acheminement": "ADON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45001"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e728d68399efcee8c8e2acd4bcdfd85492f30f7", "fields": {"nom_de_la_commune": "AUGERVILLE LA RIVIERE", "libell_d_acheminement": "AUGERVILLE LA RIVIERE", "code_postal": "45330", "coordonnees_gps": [48.2827964198, 2.40158740828], "code_commune_insee": "45013"}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b37e51b86a54ecf9f23f2f729157a3c26db2e42", "fields": {"nom_de_la_commune": "BAZOCHES LES GALLERANDES", "libell_d_acheminement": "BAZOCHES LES GALLERANDES", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45025"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25954adaeb72dde9267603abe33b1b8fe4a2fd7", "fields": {"nom_de_la_commune": "BAZOCHES SUR LE BETZ", "libell_d_acheminement": "BAZOCHES SUR LE BETZ", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45026"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eecff5be2d1284ad641d5a6661261176a0ebbee", "fields": {"nom_de_la_commune": "BEAULIEU SUR LOIRE", "libell_d_acheminement": "BEAULIEU SUR LOIRE", "code_postal": "45630", "coordonnees_gps": [47.5356351776, 2.80251320136], "code_commune_insee": "45029"}, "geometry": {"type": "Point", "coordinates": [2.80251320136, 47.5356351776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6eedf4ee1a5b1d50a0ac663b56d51e82dca1da5", "fields": {"nom_de_la_commune": "BOISMORAND", "libell_d_acheminement": "BOISMORAND", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45036"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211025a59cf7258605bb846ef528c6fc098798f2", "fields": {"nom_de_la_commune": "VOREPPE", "libell_d_acheminement": "VOREPPE", "code_postal": "38340", "coordonnees_gps": [45.3011036045, 5.65576728481], "code_commune_insee": "38565"}, "geometry": {"type": "Point", "coordinates": [5.65576728481, 45.3011036045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcdc32b71a105c18e62913dfecc547fe62e69a6a", "fields": {"nom_de_la_commune": "ALIEZE", "libell_d_acheminement": "ALIEZE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39007"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1178f740e2deab04797457f938f8f5c24a11dca4", "fields": {"nom_de_la_commune": "ANDELOT MORVAL", "libell_d_acheminement": "ANDELOT MORVAL", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39010"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb349660bbacc93c3322548bea9e68cd3a9e6f43", "fields": {"code_postal": "39270", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "VARESSIA", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8454bf64abb0f5f0381b3bb231eaa1a0fe7ea92f", "fields": {"nom_de_la_commune": "AUGERANS", "libell_d_acheminement": "AUGERANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39026"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "144a061d2052c5cd3ca8fe54e6d08ff921ae45c4", "fields": {"nom_de_la_commune": "AUMONT", "libell_d_acheminement": "AUMONT", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39028"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff9f1918d0b4b06b48e54188bc606c03950a00e8", "fields": {"nom_de_la_commune": "AUMUR", "libell_d_acheminement": "AUMUR", "code_postal": "39410", "coordonnees_gps": [47.0386263121, 5.33402730171], "code_commune_insee": "39029"}, "geometry": {"type": "Point", "coordinates": [5.33402730171, 47.0386263121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a90e8cecc250d5e41494f041ac18437f9fe8ed", "fields": {"nom_de_la_commune": "BALANOD", "libell_d_acheminement": "BALANOD", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39035"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5be6f38182ef0d5f1f4a16eb7c796d3cfb6115f", "fields": {"nom_de_la_commune": "LA BALME D EPY", "libell_d_acheminement": "LA BALME D EPY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39036"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6df07f6adbbdea35f640e8bec92ee97ce386b7", "fields": {"nom_de_la_commune": "BAUME LES MESSIEURS", "libell_d_acheminement": "BAUME LES MESSIEURS", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39041"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f41cd4f1d3b71dcb5ac0c3dc2742284a90f342", "fields": {"nom_de_la_commune": "BAUME LES MESSIEURS", "libell_d_acheminement": "BAUME LES MESSIEURS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39041"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd624ea71c2d40cd1f00183b161e92149c53c812", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39043"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1edfab3e14d931491b8fa4230fca03d5cf2f951", "fields": {"nom_de_la_commune": "BERSAILLIN", "libell_d_acheminement": "BERSAILLIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39049"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2800febfe21367eedf8810859d73854651165d5", "fields": {"nom_de_la_commune": "BIEF DES MAISONS", "libell_d_acheminement": "BIEF DES MAISONS", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39052"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549c5dc03f565f5b72e9d5ea33ede77904ef6b2d", "fields": {"nom_de_la_commune": "BILLECUL", "libell_d_acheminement": "BILLECUL", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39055"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b67bd5500f3032051a58891a441c655eb096001", "fields": {"nom_de_la_commune": "BLETTERANS", "libell_d_acheminement": "BLETTERANS", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39056"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "594a94b65fefd1bb16f6c4c1eec82f90ce6a6c7e", "fields": {"nom_de_la_commune": "BLYE", "libell_d_acheminement": "BLYE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39058"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2bcc1aebc010dd9d7afe80dbb1a2e2af441bce", "fields": {"nom_de_la_commune": "BOIS DE GAND", "libell_d_acheminement": "BOIS DE GAND", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39060"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796db0fbbb526ee7a1f082dc72dd9b4da4929a10", "fields": {"nom_de_la_commune": "BONNAUD", "libell_d_acheminement": "BONNAUD", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39064"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "071677e19061c4e0602cd866d72e4a0b95fae9c8", "fields": {"nom_de_la_commune": "CERNANS", "libell_d_acheminement": "CERNANS", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39084"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf497da9625776ab33a4d53dfc5d5f926c15d462", "fields": {"nom_de_la_commune": "CEZIA", "libell_d_acheminement": "CEZIA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39089"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b009c2e7321745ac46eefc05c602b7c6f9cb00cd", "fields": {"nom_de_la_commune": "CHAMBLAY", "libell_d_acheminement": "CHAMBLAY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39093"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8833528eed0bfc99079b6f5e4b21d2007753a186", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR LOUE", "libell_d_acheminement": "CHAMPAGNE SUR LOUE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39095"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b71512495c1faf5af39c3addd8628b896cc592", "fields": {"nom_de_la_commune": "CHAMPROUGIER", "libell_d_acheminement": "CHAMPROUGIER", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39100"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa14c1cadb253a0a43de94c515d0a9dd5453ec13", "fields": {"nom_de_la_commune": "CHANCIA", "libell_d_acheminement": "CHANCIA", "code_postal": "01590", "coordonnees_gps": [46.3238684456, 5.65548376535], "code_commune_insee": "39102"}, "geometry": {"type": "Point", "coordinates": [5.65548376535, 46.3238684456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461187288f287f7109ce8d1b451d2eb9d20041c3", "fields": {"nom_de_la_commune": "LA CHARME", "libell_d_acheminement": "LA CHARME", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39110"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a760bb6d415a559549375799dd3abecbf467cdb", "fields": {"nom_de_la_commune": "CHASSAL", "libell_d_acheminement": "CHASSAL", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39113"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e687282710eda36333eb245f928d9512c5c3a799", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39121"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c077164e09e05db42a14370301a6be47dcef3b", "fields": {"nom_de_la_commune": "CHATONNAY", "libell_d_acheminement": "CHATONNAY", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39123"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e8031b28102eb1c0fda4b2b0249b669cc0eee2", "fields": {"code_postal": "39150", "code_commune_insee": "39130", "libell_d_acheminement": "NANCHEZ", "ligne_5": "PRENOVEL", "nom_de_la_commune": "NANCHEZ", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45209ef5f91ec7391b78d3e8bf0d279cfc6574b0", "fields": {"code_postal": "39110", "code_commune_insee": "39133", "libell_d_acheminement": "CHAUX CHAMPAGNY", "ligne_5": "CHAMPAGNY", "nom_de_la_commune": "CHAUX CHAMPAGNY", "coordonnees_gps": [46.9201409369, 5.90413463996]}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788b6d4e7b264d7d308f94ace578169bc6f0a7da", "fields": {"nom_de_la_commune": "CHENE BERNARD", "libell_d_acheminement": "CHENE BERNARD", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39139"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ea1520fa455e2b7a2ca641fc0f56c6508b318a", "fields": {"nom_de_la_commune": "CHEVIGNY", "libell_d_acheminement": "CHEVIGNY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39141"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfec720d0d1773c9f36730c476f7150cbc6186d0", "fields": {"nom_de_la_commune": "CLUCY", "libell_d_acheminement": "CLUCY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39155"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76891e9b45468d83af42eb93c61c54635246f81", "fields": {"nom_de_la_commune": "COISERETTE", "libell_d_acheminement": "COISERETTE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39157"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bbd09fb633a7ae02661cb4772efef7e323c1f6a", "fields": {"nom_de_la_commune": "COISIA", "libell_d_acheminement": "COISIA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39158"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe60421bd824ba4eaf1a44697fb7b24174d66ba9", "fields": {"nom_de_la_commune": "COURLANS", "libell_d_acheminement": "COURLANS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39170"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad076aacb8a704aa1707c100c85ceda351e4042", "fields": {"code_postal": "39570", "code_commune_insee": "39170", "libell_d_acheminement": "COURLANS", "ligne_5": "CHAVANNE", "nom_de_la_commune": "COURLANS", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5732ead49e50feb7a8f83a5e551528cf9c4c6693", "fields": {"nom_de_la_commune": "COURTEFONTAINE", "libell_d_acheminement": "COURTEFONTAINE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39172"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1cdac3c54704726078f72108e750a34313688d", "fields": {"code_postal": "39570", "code_commune_insee": "39177", "libell_d_acheminement": "HAUTEROCHE", "ligne_5": "CRANCOT", "nom_de_la_commune": "HAUTEROCHE", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8891bb323bd73e0239c9e3d5df9311da53bae4a5", "fields": {"nom_de_la_commune": "DAMMARTIN MARPAIN", "libell_d_acheminement": "DAMMARTIN MARPAIN", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39188"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5629dbdb154c25c92b4985dcae47dda20eb0588b", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39190"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9859f14234842a1ffcc0b8932ecc61b5b8ae15", "fields": {"nom_de_la_commune": "LE DESCHAUX", "libell_d_acheminement": "LE DESCHAUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39193"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14695c9d44f79ae702fd7dac072e219fdd378cd", "fields": {"code_postal": "39100", "code_commune_insee": "39198", "libell_d_acheminement": "DOLE", "ligne_5": "GOUX", "nom_de_la_commune": "DOLE", "coordonnees_gps": [47.081657682, 5.47646341998]}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab19227d59d7967e259b859fc30ffd6e30f0048", "fields": {"nom_de_la_commune": "ENTRE DEUX MONTS", "libell_d_acheminement": "ENTRE DEUX MONTS", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39208"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee91b00883157100d77c66448d98ef5ac747db2", "fields": {"nom_de_la_commune": "EQUEVILLON", "libell_d_acheminement": "EQUEVILLON", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39210"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867d3a10b54ee780a449dc734f0d3fd532eece76", "fields": {"nom_de_la_commune": "ETIVAL", "libell_d_acheminement": "ETIVAL", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39216"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847c7ac42a08ae71ed203f9ac1220fb8bf324d3d", "fields": {"nom_de_la_commune": "FAY EN MONTAGNE", "libell_d_acheminement": "FAY EN MONTAGNE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39222"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db67cc6b0fb388904321b0749e2b5965edecd6a0", "fields": {"nom_de_la_commune": "FOULENAY", "libell_d_acheminement": "FOULENAY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39234"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c213aedf17280450959acc3aaf96f4d61ae4e5", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39236"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d37752ba63392313a54ffd3f410b029bf6da516c", "fields": {"nom_de_la_commune": "FRONTENAY", "libell_d_acheminement": "FRONTENAY", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39244"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e932779c1da316f6ad4aeb977a40a9b190135f", "fields": {"nom_de_la_commune": "GATEY", "libell_d_acheminement": "GATEY", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39245"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046e99529af498a3967d470e0bdfab5701daf880", "fields": {"nom_de_la_commune": "GEVINGEY", "libell_d_acheminement": "GEVINGEY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39251"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7163b53ba041ca571e4bc5f9a3a440d7327390cb", "fields": {"nom_de_la_commune": "GILLOIS", "libell_d_acheminement": "GILLOIS", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39254"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6587c8a67e86cd8b99ca96a47fd6efdc3433dc0", "fields": {"nom_de_la_commune": "GIZIA", "libell_d_acheminement": "GIZIA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39255"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccddccb57b9007748a4fb51246811dd4b365263", "fields": {"code_postal": "39150", "code_commune_insee": "39258", "libell_d_acheminement": "GRANDE RIVIERE", "ligne_5": "RIVIERE DEVANT", "nom_de_la_commune": "GRANDE RIVIERE", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0092b4335391a4268f1c274671467c4eb26ed574", "fields": {"nom_de_la_commune": "GROZON", "libell_d_acheminement": "GROZON", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39263"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d38c203d9f99466df421ece15a563213ce2b07", "fields": {"nom_de_la_commune": "HAUTECOUR", "libell_d_acheminement": "HAUTECOUR", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39265"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe1755efa2e903b73c873fff6adc40aa9a41fce", "fields": {"nom_de_la_commune": "JOUHE", "libell_d_acheminement": "JOUHE", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39270"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c4eaf53baa0ab7aecbc6bda1abb500095517790", "fields": {"nom_de_la_commune": "LADOYE SUR SEILLE", "libell_d_acheminement": "LADOYE SUR SEILLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39272"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958129486601b819e826c44c2034336e75fc68db", "fields": {"nom_de_la_commune": "LAMOURA", "libell_d_acheminement": "LAMOURA", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39275"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142c8d2924d832b5b883a88848995693a6f4cc5d", "fields": {"nom_de_la_commune": "LAVANS LES DOLE", "libell_d_acheminement": "LAVANS LES DOLE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39285"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95a0b6dc7e6de174ed2402d10a12b82c0bb0a69", "fields": {"nom_de_la_commune": "LAVANS LES ST CLAUDE", "libell_d_acheminement": "LAVANS LES ST CLAUDE", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39286"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2d1ae0aaa2929c5b56b1c30f2f02ef0c75cac4", "fields": {"code_postal": "39210", "code_commune_insee": "39288", "libell_d_acheminement": "LAVIGNY", "ligne_5": "ROSNAY", "nom_de_la_commune": "LAVIGNY", "coordonnees_gps": [46.742636609, 5.62862510157]}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0a501be361303154e143aa2c4ca3b0673604ed", "fields": {"nom_de_la_commune": "LEGNA", "libell_d_acheminement": "LEGNA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39290"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8120879ef9c0e18fc78a0c87582281168ac6cfa0", "fields": {"nom_de_la_commune": "LOUVATANGE", "libell_d_acheminement": "LOUVATANGE", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39302"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6339bd41e4d022bfa3644b7e13602cec12e80f55", "fields": {"nom_de_la_commune": "LOUVENNE", "libell_d_acheminement": "LOUVENNE", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39303"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704d64f6f0502e51947afd12a98486930da8d2b4", "fields": {"nom_de_la_commune": "MARNOZ", "libell_d_acheminement": "MARNOZ", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39315"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b156f77304eec83f76c904a8f804a22cac91b961", "fields": {"nom_de_la_commune": "MENOTEY", "libell_d_acheminement": "MENOTEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39323"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49071226e2195aca03ed0b4c27ecefbccdb86b8", "fields": {"nom_de_la_commune": "MESNOIS", "libell_d_acheminement": "MESNOIS", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39326"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e271b7f71f7f9d9734ca12348a1b67cb9b71f13f", "fields": {"nom_de_la_commune": "MIEGES", "libell_d_acheminement": "MIEGES", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39329"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db5be5137926597420d152dd32037d691691cd4", "fields": {"code_postal": "39250", "code_commune_insee": "39329", "libell_d_acheminement": "MIEGES", "ligne_5": "ESSERVAL COMBE", "nom_de_la_commune": "MIEGES", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e21a0ad9032730e9ba7edcd83458b2b7fa570ba", "fields": {"nom_de_la_commune": "MIERY", "libell_d_acheminement": "MIERY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39330"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b1a2c3a4fb69a04049bb8b141b3c942319a431", "fields": {"code_postal": "39250", "code_commune_insee": "39331", "libell_d_acheminement": "MIGNOVILLARD", "ligne_5": "COMMUNAILLES EN MONTAGNE", "nom_de_la_commune": "MIGNOVILLARD", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae67bee817b624b4b6734145b8e24e3b5ebb5c8d", "fields": {"nom_de_la_commune": "MONNETAY", "libell_d_acheminement": "MONNETAY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39343"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5b8c39a31ba2df4e529cdb942a422ffc75e576", "fields": {"nom_de_la_commune": "MONTAGNA LE TEMPLIER", "libell_d_acheminement": "MONTAGNA LE TEMPLIER", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39347"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd67cd5be5ecb7d2c7e4d3982c48912a618fa880", "fields": {"nom_de_la_commune": "MONTCUSEL", "libell_d_acheminement": "MONTCUSEL", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39351"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817b55f8c5739507e8df1bd3b81e3e637bc9e70f", "fields": {"code_postal": "39570", "code_commune_insee": "39362", "libell_d_acheminement": "MONTMOROT", "ligne_5": "SAVAGNA", "nom_de_la_commune": "MONTMOROT", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dec70e7c52ecc3c3ede8207fcfd435c57229711", "fields": {"nom_de_la_commune": "MONTREVEL", "libell_d_acheminement": "MONTREVEL", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39363"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9dd6e4b08bc70fe9f95c4447a2c15a7aa79b55e", "fields": {"nom_de_la_commune": "MONT SOUS VAUDREY", "libell_d_acheminement": "MONT SOUS VAUDREY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39365"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77da04f74efa9150744d17487dd00a3ba88a8cca", "fields": {"code_postal": "39400", "code_commune_insee": "39367", "libell_d_acheminement": "MORBIER", "ligne_5": "TANCUA", "nom_de_la_commune": "MORBIER", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a25d2b53a45c34d6e6d27b0029d305b24319825", "fields": {"code_postal": "39330", "code_commune_insee": "39370", "libell_d_acheminement": "MOUCHARD", "ligne_5": "CERTEMERY", "nom_de_la_commune": "MOUCHARD", "coordonnees_gps": [46.9882126425, 5.81136152584]}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264ef7c573979289bfbe5213f7d5634e58da2a5e", "fields": {"code_postal": "39160", "code_commune_insee": "39378", "libell_d_acheminement": "LES TROIS CHATEAUX", "ligne_5": "CHAZELLES", "nom_de_la_commune": "LES TROIS CHATEAUX", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf1a7a6a720baff15c60729628ff7970c287f19", "fields": {"nom_de_la_commune": "NEUBLANS ABERGEMENT", "libell_d_acheminement": "NEUBLANS ABERGEMENT", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39385"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a22e8f5db430ef378032fdfb7051d22981ab08", "fields": {"nom_de_la_commune": "NOZEROY", "libell_d_acheminement": "NOZEROY", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39391"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b11b7d28a451bd17a7c86ca80d185703702bbe", "fields": {"nom_de_la_commune": "OFFLANGES", "libell_d_acheminement": "OFFLANGES", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39392"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d7efa4f2cb8e53cacc4a26c90225ba04bca17d", "fields": {"code_postal": "39270", "code_commune_insee": "39397", "libell_d_acheminement": "ORGELET", "ligne_5": "SEZERIA", "nom_de_la_commune": "ORGELET", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6aeafa72537459c7ab56cb6e4690b9b62e4a727", "fields": {"nom_de_la_commune": "PAGNEY", "libell_d_acheminement": "PAGNEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39402"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d128ddcfcdaf8f41a77493dcc5c97e6144e4a5", "fields": {"nom_de_la_commune": "PANNESSIERES", "libell_d_acheminement": "PANNESSIERES", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39404"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb01534fb79f25fe214dc51d44a2c985cb182b05", "fields": {"nom_de_la_commune": "PEINTRE", "libell_d_acheminement": "PEINTRE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39409"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37520ece8dbc029eef0916d8ca82a7f3feea9c5d", "fields": {"nom_de_la_commune": "PESEUX", "libell_d_acheminement": "PESEUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39412"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4241541b4efe4e85005ec3319d5c8171dde1d78c", "fields": {"nom_de_la_commune": "LA PESSE", "libell_d_acheminement": "LA PESSE", "code_postal": "39370", "coordonnees_gps": [46.2916662197, 5.82108544834], "code_commune_insee": "39413"}, "geometry": {"type": "Point", "coordinates": [5.82108544834, 46.2916662197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9812ba07510f60f0ff025a3ac59ef07463fb53f7", "fields": {"nom_de_la_commune": "PIMORIN", "libell_d_acheminement": "PIMORIN", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39420"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7384fa0801626e62919063534d407e1401f5c2d", "fields": {"nom_de_la_commune": "PLASNE", "libell_d_acheminement": "PLASNE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39426"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bedeab395b160868c7522ebc8f4f86d71f13c76", "fields": {"nom_de_la_commune": "PLENISETTE", "libell_d_acheminement": "PLENISETTE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39428"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ea99d1c9d854572f7e119338cca5d90464c538", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39434"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9bf4bba5ac2c6466ecb0b2f1e7709ec2840220", "fields": {"nom_de_la_commune": "PORT LESNEY", "libell_d_acheminement": "PORT LESNEY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39439"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4442cb957110b453f2922fbc73d00c36ca3b23a3", "fields": {"nom_de_la_commune": "PREMANON", "libell_d_acheminement": "PREMANON", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39441"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ac3a2d0a002625fc9a5ffc1a9efe2de480dba5", "fields": {"nom_de_la_commune": "RIX", "libell_d_acheminement": "RIX", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39461"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d399ea93084c2f2f46f4abd7aa198401f9789e1", "fields": {"nom_de_la_commune": "LES ROUSSES", "libell_d_acheminement": "LES ROUSSES", "code_postal": "39220", "coordonnees_gps": [46.4870347389, 6.06467102901], "code_commune_insee": "39470"}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee70613911c027b8f8c3becaaa5789458b0379c9", "fields": {"nom_de_la_commune": "ST HILAIRE SOUS CHARLIEU", "libell_d_acheminement": "ST HILAIRE SOUS CHARLIEU", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42236"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6da06a71d97f3a12cf0b4afd97b874d42a69c78", "fields": {"nom_de_la_commune": "ST JEAN ST MAURICE SUR LOIRE", "libell_d_acheminement": "ST JEAN ST MAURICE SUR LOIRE", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42239"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d350ad59c3cb847e03949c29f99611e3a743e77", "fields": {"code_postal": "42155", "code_commune_insee": "42239", "libell_d_acheminement": "ST JEAN ST MAURICE SUR LOIRE", "ligne_5": "ST MAURICE SUR LOIRE", "nom_de_la_commune": "ST JEAN ST MAURICE SUR LOIRE", "coordonnees_gps": [45.9923375929, 3.9763968216]}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a082c384cc87504305f0328fc6f1aa495f57215", "fields": {"nom_de_la_commune": "ST JULIEN D ODDES", "libell_d_acheminement": "ST JULIEN D ODDES", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42243"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc94bec5bf9337acbf81cec927b14a1a30656fe", "fields": {"nom_de_la_commune": "ST JULIEN MOLIN MOLETTE", "libell_d_acheminement": "ST JULIEN MOLIN MOLETTE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42246"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da95f0934e50dec229124b6e68f0ef7ed951a9f", "fields": {"nom_de_la_commune": "ST MARCELLIN EN FOREZ", "libell_d_acheminement": "ST MARCELLIN EN FOREZ", "code_postal": "42680", "coordonnees_gps": [45.4895995384, 4.16803060335], "code_commune_insee": "42256"}, "geometry": {"type": "Point", "coordinates": [4.16803060335, 45.4895995384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75841c5773a20555563fd005cf300130c3dabac", "fields": {"nom_de_la_commune": "ST MARTIN LA PLAINE", "libell_d_acheminement": "ST MARTIN LA PLAINE", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42259"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d0acc16e69fc0bf3dc23acf09fad352c21ad08", "fields": {"nom_de_la_commune": "ST MEDARD EN FOREZ", "libell_d_acheminement": "ST MEDARD EN FOREZ", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42264"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3231e59490d5281dde737c9e05491512bb6adc", "fields": {"nom_de_la_commune": "ST PAUL DE VEZELIN", "libell_d_acheminement": "ST PAUL DE VEZELIN", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42268"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0fbf5fbce03ab53b7af4d365d12eed7389f471", "fields": {"nom_de_la_commune": "ST PIERRE DE BOEUF", "libell_d_acheminement": "ST PIERRE DE BOEUF", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42272"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790249239170295fb3ae29b60590bb622bf88909", "fields": {"nom_de_la_commune": "ST PRIEST LA ROCHE", "libell_d_acheminement": "ST PRIEST LA ROCHE", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42277"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f03378c7d405fc6c8a8706d83bb56309b43c7e1f", "fields": {"nom_de_la_commune": "ST RIRAND", "libell_d_acheminement": "ST RIRAND", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42281"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59051d07c2ef5d013569815b91f244824f9339bc", "fields": {"nom_de_la_commune": "ST ROMAIN EN JAREZ", "libell_d_acheminement": "ST ROMAIN EN JAREZ", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42283"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16a6e47d2c417d6427958de09f53772c818c7c9", "fields": {"nom_de_la_commune": "ST THOMAS LA GARDE", "libell_d_acheminement": "ST THOMAS LA GARDE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42290"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44fda63f45380dd3524d9bcf3fb33ad526290d79", "fields": {"nom_de_la_commune": "SAVIGNEUX", "libell_d_acheminement": "SAVIGNEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42299"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26ab2ae470b4f9a25c0bbff5d76fee09702f768", "fields": {"nom_de_la_commune": "SURY LE COMTAL", "libell_d_acheminement": "SURY LE COMTAL", "code_postal": "42450", "coordonnees_gps": [45.5419473284, 4.18169243713], "code_commune_insee": "42304"}, "geometry": {"type": "Point", "coordinates": [4.18169243713, 45.5419473284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d86bc7fe8ae6cd01d193c1eded56b0eb7347373", "fields": {"nom_de_la_commune": "LA TOURETTE", "libell_d_acheminement": "LA TOURETTE", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42312"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73ae9d7d7ac50383fece7a0902abf9746917ce12", "fields": {"nom_de_la_commune": "LA TUILIERE", "libell_d_acheminement": "LA TUILIERE", "code_postal": "42830", "coordonnees_gps": [45.9518080744, 3.77484013363], "code_commune_insee": "42314"}, "geometry": {"type": "Point", "coordinates": [3.77484013363, 45.9518080744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035e2628aa4123d5a47768f74819fbdcc8d74e6e", "fields": {"nom_de_la_commune": "VEAUCHE", "libell_d_acheminement": "VEAUCHE", "code_postal": "42340", "coordonnees_gps": [45.5673382654, 4.26910796554], "code_commune_insee": "42323"}, "geometry": {"type": "Point", "coordinates": [4.26910796554, 45.5673382654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206eb0dee311432caf3cdcd96ddede0c8b55d7f8", "fields": {"nom_de_la_commune": "VENDRANGES", "libell_d_acheminement": "VENDRANGES", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42325"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c56cea85eda79f9ea00b5ea592b16045ea5256", "fields": {"nom_de_la_commune": "LA VERSANNE", "libell_d_acheminement": "LA VERSANNE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42329"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1847410fa1dc4205ccc916bb220f7ac57d2ddd94", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "42390", "coordonnees_gps": [45.4686632816, 4.35121808476], "code_commune_insee": "42330"}, "geometry": {"type": "Point", "coordinates": [4.35121808476, 45.4686632816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a09f9f3910afe9b6080a53f686dbbc2538bfd4", "fields": {"nom_de_la_commune": "VILLEREST", "libell_d_acheminement": "VILLEREST", "code_postal": "42300", "coordonnees_gps": [46.0587698503, 4.05970322199], "code_commune_insee": "42332"}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a664f2437827715d0ca6c47bad8a67e6b45633bc", "fields": {"nom_de_la_commune": "CHAUSSETERRE", "libell_d_acheminement": "CHAUSSETERRE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42339"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adff8a5abaecf07084ab18144ff8a8fd8cd1992", "fields": {"nom_de_la_commune": "AIGUILHE", "libell_d_acheminement": "AIGUILHE", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43002"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1edd1fc4879cc73827cab85a1c8d4daed92b3fe", "fields": {"nom_de_la_commune": "ALLEYRAC", "libell_d_acheminement": "ALLEYRAC", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43004"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ea6c7c64a27fea742bb8570138c8ef202f9e6c", "fields": {"nom_de_la_commune": "ARLET", "libell_d_acheminement": "ARLET", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43009"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ab83785214c168284b2724436244325f022395", "fields": {"nom_de_la_commune": "AUBAZAT", "libell_d_acheminement": "AUBAZAT", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43011"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d9cd3e173f8597aaa039a5518bd89472d378bc", "fields": {"nom_de_la_commune": "BAS EN BASSET", "libell_d_acheminement": "BAS EN BASSET", "code_postal": "43210", "coordonnees_gps": [45.3265198809, 4.10184881262], "code_commune_insee": "43020"}, "geometry": {"type": "Point", "coordinates": [4.10184881262, 45.3265198809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e23f8151034cc7274cc019b8edfbdf628bc988", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43021"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f7b215717a5b1f59304568befd96bdf4a2544d", "fields": {"nom_de_la_commune": "BONNEVAL", "libell_d_acheminement": "BONNEVAL", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43035"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8b0d0ea11a5f7c7f64e33d6c69bc61a3838673", "fields": {"nom_de_la_commune": "BORNE", "libell_d_acheminement": "BORNE", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43036"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a413047e8d349141def986bd7d71b12dd81974", "fields": {"nom_de_la_commune": "BOURNONCLE ST PIERRE", "libell_d_acheminement": "BOURNONCLE ST PIERRE", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43038"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ba84ec1d759e0dbae804184493b260d1b2661b", "fields": {"nom_de_la_commune": "BRIVES CHARENSAC", "libell_d_acheminement": "BRIVES CHARENSAC", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43041"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149906ff29a1a42b0b5e48c09e82a1d24056a77c", "fields": {"nom_de_la_commune": "CERZAT", "libell_d_acheminement": "CERZAT", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43044"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecd4712dfad62434fa126ee563d64863fed497d", "fields": {"nom_de_la_commune": "CHADRON", "libell_d_acheminement": "CHADRON", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43047"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3982ff7d964bce0245cde52ddf3f54d00f8f1878", "fields": {"nom_de_la_commune": "CHAMBEZON", "libell_d_acheminement": "CHAMBEZON", "code_postal": "43410", "coordonnees_gps": [45.3649207273, 3.25237177222], "code_commune_insee": "43050"}, "geometry": {"type": "Point", "coordinates": [3.25237177222, 45.3649207273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0809d028c6fa4106dd9171195ffdeb03f52edb19", "fields": {"nom_de_la_commune": "CHANIAT", "libell_d_acheminement": "CHANIAT", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43055"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57df055bc49751e80a002e3556373c4677effe99", "fields": {"nom_de_la_commune": "LA CHAPELLE BERTIN", "libell_d_acheminement": "LA CHAPELLE BERTIN", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43057"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e275ebfb94c9621d41e1022706727ff56cb5f658", "fields": {"nom_de_la_commune": "CHASTEL", "libell_d_acheminement": "CHASTEL", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43065"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb21d4c8abd75dc2b29fd71589e813a7d69c35d", "fields": {"nom_de_la_commune": "COHADE", "libell_d_acheminement": "COHADE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43074"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ea91d4a3f94f31665d2910cc3f0e20b8980a83", "fields": {"nom_de_la_commune": "COLLAT", "libell_d_acheminement": "COLLAT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43075"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f183c7a3b0b13ea19c510a4f43909adb0e134a93", "fields": {"nom_de_la_commune": "COSTAROS", "libell_d_acheminement": "COSTAROS", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43077"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dcf26f350588840c0d1bd877c8d9d1e3bc836ba", "fields": {"nom_de_la_commune": "COUBON", "libell_d_acheminement": "COUBON", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43078"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8751235dbb75cfe428668d5a2e932df853a4ea8a", "fields": {"nom_de_la_commune": "CUBELLES", "libell_d_acheminement": "CUBELLES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43083"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5818fde1d06f32a2c30f3e5244d884b5708063e", "fields": {"nom_de_la_commune": "FAY SUR LIGNON", "libell_d_acheminement": "FAY SUR LIGNON", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43092"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208b9e2bb95e03510d6a999c107c958f54428e5b", "fields": {"nom_de_la_commune": "FERRUSSAC", "libell_d_acheminement": "FERRUSSAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43094"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8167439f684b25becd9be0701eadba61b1fa3e8f", "fields": {"nom_de_la_commune": "JAVAUGUES", "libell_d_acheminement": "JAVAUGUES", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43105"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2dd91037de8a8e9d190a8460eb4e204f5dc0566", "fields": {"nom_de_la_commune": "LAMOTHE", "libell_d_acheminement": "LAMOTHE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43110"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afcb72213439787a2181a8d91fa6b91965ea33d3", "fields": {"nom_de_la_commune": "LEMPDES SUR ALLAGNON", "libell_d_acheminement": "LEMPDES SUR ALLAGNON", "code_postal": "43410", "coordonnees_gps": [45.3649207273, 3.25237177222], "code_commune_insee": "43120"}, "geometry": {"type": "Point", "coordinates": [3.25237177222, 45.3649207273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d69bea35520991af1dfb5aa88eed03f48a14639", "fields": {"nom_de_la_commune": "MALREVERS", "libell_d_acheminement": "MALREVERS", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43126"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe90596cef39f876823f840ce95dd5702e49bbf2", "fields": {"nom_de_la_commune": "MALVALETTE", "libell_d_acheminement": "MALVALETTE", "code_postal": "43210", "coordonnees_gps": [45.3265198809, 4.10184881262], "code_commune_insee": "43127"}, "geometry": {"type": "Point", "coordinates": [4.10184881262, 45.3265198809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302ff6ca205ccf34c00ec6b31310c2e882c370d2", "fields": {"nom_de_la_commune": "LE MAS DE TENCE", "libell_d_acheminement": "LE MAS DE TENCE", "code_postal": "43190", "coordonnees_gps": [45.1188374413, 4.29959378038], "code_commune_insee": "43129"}, "geometry": {"type": "Point", "coordinates": [4.29959378038, 45.1188374413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c57318c8c4d107948aff650e48ec22ee915e819", "fields": {"nom_de_la_commune": "MAZET ST VOY", "libell_d_acheminement": "MAZET ST VOY", "code_postal": "43520", "coordonnees_gps": [45.0436685669, 4.23998847158], "code_commune_insee": "43130"}, "geometry": {"type": "Point", "coordinates": [4.23998847158, 45.0436685669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592147cb7521929e55ab1afe01565f051d28d1ac", "fields": {"nom_de_la_commune": "MAZEYRAT D ALLIER", "libell_d_acheminement": "MAZEYRAT D ALLIER", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43132"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862d6974b975b661409f8c35b35957ce87d0a0fc", "fields": {"nom_de_la_commune": "MERCOEUR", "libell_d_acheminement": "MERCOEUR", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43133"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d5a7ee890dea575eeec20ae922d616b613c241", "fields": {"nom_de_la_commune": "MONTUSCLAT", "libell_d_acheminement": "MONTUSCLAT", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43143"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f602ed99c5e5f3e574d7029ca3987c90cc1530f1", "fields": {"nom_de_la_commune": "PEBRAC", "libell_d_acheminement": "PEBRAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43149"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7ab97ab726bf9146e8e35c522f2cd588623c83", "fields": {"nom_de_la_commune": "PRADELLES", "libell_d_acheminement": "PRADELLES", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43154"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee6407ba36d9ae035575538989a4ad77ff3e351", "fields": {"nom_de_la_commune": "RAURET", "libell_d_acheminement": "RAURET", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43160"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ed97a21133994ca62258b8663c680b0c31ef53", "fields": {"nom_de_la_commune": "RETOURNAC", "libell_d_acheminement": "RETOURNAC", "code_postal": "43130", "coordonnees_gps": [45.2367556015, 4.006325814], "code_commune_insee": "43162"}, "geometry": {"type": "Point", "coordinates": [4.006325814, 45.2367556015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2862009aa521678e183e1aec1708bdcce258ded6", "fields": {"nom_de_la_commune": "RIOTORD", "libell_d_acheminement": "RIOTORD", "code_postal": "43220", "coordonnees_gps": [45.218017746, 4.40270777123], "code_commune_insee": "43163"}, "geometry": {"type": "Point", "coordinates": [4.40270777123, 45.218017746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b07ff6382e830ce7528a0c8f76c1a8ae5d5e6b83", "fields": {"nom_de_la_commune": "ST DIDIER D ALLIER", "libell_d_acheminement": "ST DIDIER D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43176"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8cebc441ed2a2cdab3c995e9746b6056a452ef4", "fields": {"nom_de_la_commune": "ST ETIENNE SUR BLESLE", "libell_d_acheminement": "ST ETIENNE SUR BLESLE", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43182"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8862a06d6a7c1bf2d98acbe79834142a43877a32", "fields": {"nom_de_la_commune": "ST HOSTIEN", "libell_d_acheminement": "ST HOSTIEN", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43194"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da22523a72fe99222627193365fa72a1e229af9", "fields": {"nom_de_la_commune": "ST JULIEN D ANCE", "libell_d_acheminement": "ST JULIEN D ANCE", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43201"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140f4c4aeca1a5e55f01ef92d418702b9df064b6", "fields": {"nom_de_la_commune": "ST JULIEN MOLHESABATE", "libell_d_acheminement": "ST JULIEN MOLHESABATE", "code_postal": "43220", "coordonnees_gps": [45.218017746, 4.40270777123], "code_commune_insee": "43204"}, "geometry": {"type": "Point", "coordinates": [4.40270777123, 45.218017746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627b65d57b4572c2201d95d6000ee48f11d2a232", "fields": {"nom_de_la_commune": "ST JUST PRES BRIOUDE", "libell_d_acheminement": "ST JUST PRES BRIOUDE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43206"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d9adc798e2d36bdecf33dccef950082d34e2e4", "fields": {"nom_de_la_commune": "ST PAL DE SENOUIRE", "libell_d_acheminement": "ST PAL DE SENOUIRE", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43214"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178e9ff7f32b516e6c9b04ced185ed7ec27f9ec2", "fields": {"nom_de_la_commune": "ST PREJET D ALLIER", "libell_d_acheminement": "ST PREJET D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43220"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8609569a6e7e58bb6a9c1ecaee5457de409f47a8", "fields": {"nom_de_la_commune": "ST ROMAIN LACHALM", "libell_d_acheminement": "ST ROMAIN LACHALM", "code_postal": "43620", "coordonnees_gps": [45.2519727569, 4.30691844433], "code_commune_insee": "43223"}, "geometry": {"type": "Point", "coordinates": [4.30691844433, 45.2519727569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cddb35ce2f8aee72688f94f76ac941f725c04b0", "fields": {"nom_de_la_commune": "ST VICTOR SUR ARLANC", "libell_d_acheminement": "ST VICTOR SUR ARLANC", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43228"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff47695a03d13e16f0570c2294d6ec899586ab2", "fields": {"nom_de_la_commune": "ST VIDAL", "libell_d_acheminement": "ST VIDAL", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43229"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91948f39d80d1d5bfd9a581bcce595e2917f0df4", "fields": {"nom_de_la_commune": "SANSSAC L EGLISE", "libell_d_acheminement": "SANSSAC L EGLISE", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43233"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfceb9ef5ecec1924b35a35d726f7f5bd398b5e", "fields": {"nom_de_la_commune": "LA SEAUVE SUR SEMENE", "libell_d_acheminement": "LA SEAUVE SUR SEMENE", "code_postal": "43140", "coordonnees_gps": [45.3026508928, 4.29061531047], "code_commune_insee": "43236"}, "geometry": {"type": "Point", "coordinates": [4.29061531047, 45.3026508928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d857c20e78f189192b8e74d470872b0aace6f9", "fields": {"nom_de_la_commune": "LES VASTRES", "libell_d_acheminement": "LES VASTRES", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43253"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3dd6f117f415536dfe225464ebb7b1b750d447", "fields": {"nom_de_la_commune": "VERGONGHEON", "libell_d_acheminement": "VERGONGHEON", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43258"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c894b64def26e44a8963ae566a640ac593207a37", "fields": {"nom_de_la_commune": "VERNASSAL", "libell_d_acheminement": "VERNASSAL", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43259"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c0ae7c35eb42d30febc212aea8e78f6e8991363", "fields": {"nom_de_la_commune": "ABBARETZ", "libell_d_acheminement": "ABBARETZ", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44001"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072ed5e50fbd5879349705889f7c78ff346c1f03", "fields": {"code_postal": "44320", "code_commune_insee": "44005", "libell_d_acheminement": "CHAUMES EN RETZ", "ligne_5": "LA SICAUDAIS", "nom_de_la_commune": "CHAUMES EN RETZ", "coordonnees_gps": [47.2108954989, -1.99426015028]}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62440d380f3a13ba07d60c3b1d07f13ba64a79b", "fields": {"nom_de_la_commune": "BOUVRON", "libell_d_acheminement": "BOUVRON", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44023"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5187df2b9507629659589cfb4fe62b6e567cf1", "fields": {"nom_de_la_commune": "CAMPBON", "libell_d_acheminement": "CAMPBON", "code_postal": "44750", "coordonnees_gps": [47.4278237849, -1.96018609185], "code_commune_insee": "44025"}, "geometry": {"type": "Point", "coordinates": [-1.96018609185, 47.4278237849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba84206ee6aabc3aa9bef6902937016b4ed83d3", "fields": {"code_postal": "44450", "code_commune_insee": "44029", "libell_d_acheminement": "DIVATTE SUR LOIRE", "ligne_5": "BARBECHAT", "nom_de_la_commune": "DIVATTE SUR LOIRE", "coordonnees_gps": [47.2609944569, -1.38232107674]}, "geometry": {"type": "Point", "coordinates": [-1.38232107674, 47.2609944569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efbbbe0e7d4140d9bd294e4a4c4da66e8371d8c", "fields": {"nom_de_la_commune": "LA CHAPELLE DES MARAIS", "libell_d_acheminement": "LA CHAPELLE DES MARAIS", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44030"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29829c6b8689a1c2c74b555415698037274643e", "fields": {"nom_de_la_commune": "CHAUVE", "libell_d_acheminement": "CHAUVE", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44038"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "230bc2ceb9508f21f56f79733792f9444c92f6bc", "fields": {"nom_de_la_commune": "CLISSON", "libell_d_acheminement": "CLISSON", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44043"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73911776cf3d7ed09a30bb0ec103b2a42b7ea87d", "fields": {"nom_de_la_commune": "LE CROISIC", "libell_d_acheminement": "LE CROISIC", "code_postal": "44490", "coordonnees_gps": [47.2925346738, -2.52343668563], "code_commune_insee": "44049"}, "geometry": {"type": "Point", "coordinates": [-2.52343668563, 47.2925346738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ea68e9b1b2a52712a391040abe7dc935fbd25f", "fields": {"nom_de_la_commune": "DERVAL", "libell_d_acheminement": "DERVAL", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44051"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35aa3885a86fe22113a8b907c922ebb658477366", "fields": {"nom_de_la_commune": "DONGES", "libell_d_acheminement": "DONGES", "code_postal": "44480", "coordonnees_gps": [47.3331156301, -2.07211683429], "code_commune_insee": "44052"}, "geometry": {"type": "Point", "coordinates": [-2.07211683429, 47.3331156301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0065ffc2ed83f237c7d9f7685a57f7fc32332b77", "fields": {"nom_de_la_commune": "LA BAULE ESCOUBLAC", "libell_d_acheminement": "LA BAULE", "code_postal": "44500", "coordonnees_gps": [47.2909335075, -2.35378776755], "code_commune_insee": "44055"}, "geometry": {"type": "Point", "coordinates": [-2.35378776755, 47.2909335075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6a829c0b14519f6e2e04f5003b00bb1882d50a", "fields": {"nom_de_la_commune": "FEGREAC", "libell_d_acheminement": "FEGREAC", "code_postal": "44460", "coordonnees_gps": [47.6181534488, -2.00119847224], "code_commune_insee": "44057"}, "geometry": {"type": "Point", "coordinates": [-2.00119847224, 47.6181534488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8768ce868d9236263655fc13f13535d281449a80", "fields": {"nom_de_la_commune": "LE GAVRE", "libell_d_acheminement": "LE GAVRE", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44062"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a862df3ff126d2b9c3a6a1ac7ce8a4bc6e0d1d3", "fields": {"nom_de_la_commune": "GETIGNE", "libell_d_acheminement": "GETIGNE", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44063"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b4c2acf516c8ea911d266a05350a953a4cae44", "fields": {"nom_de_la_commune": "GRAND AUVERNE", "libell_d_acheminement": "GRAND AUVERNE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44065"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d08a1df4e841ad0001c8fe185c697d45facb8925", "fields": {"code_postal": "44290", "code_commune_insee": "44067", "libell_d_acheminement": "GUEMENE PENFAO", "ligne_5": "BESLE SUR VILAINE", "nom_de_la_commune": "GUEMENE PENFAO", "coordonnees_gps": [47.6456298963, -1.81807007019]}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049f9b09376636840a0851ac01f9e68a9fcebb48", "fields": {"nom_de_la_commune": "ISSE", "libell_d_acheminement": "ISSE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44075"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4925a9d7ea2e6b75b2e99e1bcf5bdec9489cf853", "fields": {"nom_de_la_commune": "LA LIMOUZINIERE", "libell_d_acheminement": "LA LIMOUZINIERE", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44083"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47445b35c9f0b9043ca5f04d58293ff4737ccd11", "fields": {"code_postal": "44270", "code_commune_insee": "44087", "libell_d_acheminement": "MACHECOUL ST MEME", "ligne_5": "ST MEME LE TENU", "nom_de_la_commune": "MACHECOUL ST MEME", "coordonnees_gps": [46.9745110591, -1.78089818288]}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70680222bc9fb4e97903f3307428520b89da705e", "fields": {"nom_de_la_commune": "MALVILLE", "libell_d_acheminement": "MALVILLE", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44089"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d164d3a806fc1fe47dc0ac4525e03165a57fe9a3", "fields": {"nom_de_la_commune": "MESQUER", "libell_d_acheminement": "MESQUER", "code_postal": "44420", "coordonnees_gps": [47.373686193, -2.48987078247], "code_commune_insee": "44097"}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac8a9b962936682b9e5046fd9c319500212e77e9", "fields": {"nom_de_la_commune": "TREGLONOU", "libell_d_acheminement": "TREGLONOU", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29290"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a654b15d22eedf57d40a8d711dad3b7fd97550df", "fields": {"nom_de_la_commune": "TREMEOC", "libell_d_acheminement": "TREMEOC", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29296"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610d4ec3212d7896591183636f6acfc3fc9e2d96", "fields": {"nom_de_la_commune": "TREMEVEN", "libell_d_acheminement": "TREMEVEN", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29297"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72ea46d7d1e71cdaa2bd573dc9be06c60cef62f", "fields": {"nom_de_la_commune": "TREOGAT", "libell_d_acheminement": "TREOGAT", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29298"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59020e6e247d73a36831dea1be7121d30027bde9", "fields": {"nom_de_la_commune": "TREOUERGAT", "libell_d_acheminement": "TREOUERGAT", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29299"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864cd373304a79ed602e193ff2ba87abc4dc39e0", "fields": {"nom_de_la_commune": "ALLEGRE LES FUMADES", "libell_d_acheminement": "ALLEGRE LES FUMADES", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30008"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f57ee4ebe4277f5b7c4d0d67833beede4ce25f7", "fields": {"nom_de_la_commune": "AUBAIS", "libell_d_acheminement": "AUBAIS", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30019"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ae7ee5ba7da6d556a373c63ca8a59b0b8f9f60", "fields": {"nom_de_la_commune": "AUJARGUES", "libell_d_acheminement": "AUJARGUES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30023"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc8acac8fcba56d89e4fd40790ba4a117c7bd13", "fields": {"nom_de_la_commune": "BELLEGARDE", "libell_d_acheminement": "BELLEGARDE", "code_postal": "30127", "coordonnees_gps": [43.7515537312, 4.49595254324], "code_commune_insee": "30034"}, "geometry": {"type": "Point", "coordinates": [4.49595254324, 43.7515537312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5821fb080fc5d24fb789dcdd69f8ee64d9bc4aae", "fields": {"nom_de_la_commune": "BERNIS", "libell_d_acheminement": "BERNIS", "code_postal": "30620", "coordonnees_gps": [43.7617443706, 4.28868094098], "code_commune_insee": "30036"}, "geometry": {"type": "Point", "coordinates": [4.28868094098, 43.7617443706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe764f6abcd071c7bccf474da134a53a61ac5dc1", "fields": {"nom_de_la_commune": "BESSEGES", "libell_d_acheminement": "BESSEGES", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30037"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c74c32d601fa9b6cc684ddd1d550c2bee10160", "fields": {"nom_de_la_commune": "BOUCOIRAN ET NOZIERES", "libell_d_acheminement": "BOUCOIRAN ET NOZIERES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30046"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223beaa1c1ffc872d95a8722977b657d1e14898d", "fields": {"nom_de_la_commune": "BOURDIC", "libell_d_acheminement": "BOURDIC", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30049"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7504c2fe198e91cb31c58229c2eeea00046772c1", "fields": {"nom_de_la_commune": "BRAGASSARGUES", "libell_d_acheminement": "BRAGASSARGUES", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30050"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9e3373166bfd6199d47d6dfd3ef1c1c71bce64", "fields": {"nom_de_la_commune": "CABRIERES", "libell_d_acheminement": "CABRIERES", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30057"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b70bab270f11ddf6e1eec399add45ef15d1bde4", "fields": {"nom_de_la_commune": "CAISSARGUES", "libell_d_acheminement": "CAISSARGUES", "code_postal": "30132", "coordonnees_gps": [43.7919598414, 4.39540235975], "code_commune_insee": "30060"}, "geometry": {"type": "Point", "coordinates": [4.39540235975, 43.7919598414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c51d39ef9d5b11101342174b1ecb5c40c99d7", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30079"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5979080c7b20d44017bd7590b59711d04bba260d", "fields": {"nom_de_la_commune": "CHAMBORIGAUD", "libell_d_acheminement": "CHAMBORIGAUD", "code_postal": "30530", "coordonnees_gps": [44.2835677648, 3.99804352323], "code_commune_insee": "30080"}, "geometry": {"type": "Point", "coordinates": [3.99804352323, 44.2835677648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed73197ce12951e915718b6f212a7b9db13cb3a", "fields": {"code_postal": "30200", "code_commune_insee": "30081", "libell_d_acheminement": "CHUSCLAN", "ligne_5": "MARCOULE", "nom_de_la_commune": "CHUSCLAN", "coordonnees_gps": [44.1738229164, 4.60897329043]}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2315d3d1fdd5949905004151f91fd1af02457558", "fields": {"nom_de_la_commune": "CODOGNAN", "libell_d_acheminement": "CODOGNAN", "code_postal": "30920", "coordonnees_gps": [43.7231922793, 4.2275810591], "code_commune_insee": "30083"}, "geometry": {"type": "Point", "coordinates": [4.2275810591, 43.7231922793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd7610f3e44d5698ea8073d04a3a77c346e82b6", "fields": {"nom_de_la_commune": "COLLIAS", "libell_d_acheminement": "COLLIAS", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30085"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe82df72a47a73137de388f895e8b165af78a9c", "fields": {"nom_de_la_commune": "COLLORGUES", "libell_d_acheminement": "COLLORGUES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30086"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdf1434604704836e8be1a19d5de55ac7b51c58", "fields": {"nom_de_la_commune": "CONGENIES", "libell_d_acheminement": "CONGENIES", "code_postal": "30111", "coordonnees_gps": [43.7757593036, 4.15842080594], "code_commune_insee": "30091"}, "geometry": {"type": "Point", "coordinates": [4.15842080594, 43.7757593036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dc2f735c07bc877e77ed9cae6c3980b2c1fdc7", "fields": {"nom_de_la_commune": "CRESPIAN", "libell_d_acheminement": "CRESPIAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30098"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2708b23e7ba3909cdc64418225bfb69b70a573f4", "fields": {"nom_de_la_commune": "SEIGNY", "libell_d_acheminement": "SEIGNY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21598"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc9059cb79dd3fbb751f1ae9c0e6fca4c3b0505f", "fields": {"nom_de_la_commune": "SEMUR EN AUXOIS", "libell_d_acheminement": "SEMUR EN AUXOIS", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21603"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118e8b144239967cf81eefb9b57543390971ffd8", "fields": {"nom_de_la_commune": "LADOIX SERRIGNY", "libell_d_acheminement": "LADOIX SERRIGNY", "code_postal": "21550", "coordonnees_gps": [47.0621683884, 4.91195092652], "code_commune_insee": "21606"}, "geometry": {"type": "Point", "coordinates": [4.91195092652, 47.0621683884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a2edb60c756d068e3448a4e6a4297c38a1c4d2", "fields": {"nom_de_la_commune": "SOIRANS", "libell_d_acheminement": "SOIRANS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21609"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e855cda4604ab55815a14e9882a6174ba578ba", "fields": {"nom_de_la_commune": "SUSSEY", "libell_d_acheminement": "SUSSEY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21615"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6389f629b0832b0d5bfb63516e464e29ed475e35", "fields": {"nom_de_la_commune": "TERREFONDREE", "libell_d_acheminement": "TERREFONDREE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21626"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d72b370a3135e70917162ad70caecca0e1c167", "fields": {"nom_de_la_commune": "TROUHANS", "libell_d_acheminement": "TROUHANS", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21645"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41de63e06bb9c77c6288985c0e2540615e70bc97", "fields": {"nom_de_la_commune": "TRUGNY", "libell_d_acheminement": "TRUGNY", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21647"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ca9c27762cf3278d4df00c9cab463b4d2276fd", "fields": {"nom_de_la_commune": "VELARS SUR OUCHE", "libell_d_acheminement": "VELARS SUR OUCHE", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21661"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2c5fd1cf7d3d009e283b93b117a655e226a8cb", "fields": {"nom_de_la_commune": "VESVRES", "libell_d_acheminement": "VESVRES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21672"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c7acd94ddb056657ac966c953aa384405f4e10", "fields": {"nom_de_la_commune": "VEUXHAULLES SUR AUBE", "libell_d_acheminement": "VEUXHAULLES SUR AUBE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21674"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23cffd7248ff34560683cfdde329fbba3293d1c", "fields": {"nom_de_la_commune": "VILLARS FONTAINE", "libell_d_acheminement": "VILLARS FONTAINE", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21688"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d188f05ec8c8bf6048b5c01ad21215e200df4a1b", "fields": {"nom_de_la_commune": "VILLEBICHOT", "libell_d_acheminement": "VILLEBICHOT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21691"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be4175646da9afbafb80a5e9f4d9f40f472a393", "fields": {"nom_de_la_commune": "LA VILLENEUVE LES CONVERS", "libell_d_acheminement": "LA VILLENEUVE LES CONVERS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21695"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa1f3441c38efeff980e207fbec6e46e5312bbe", "fields": {"nom_de_la_commune": "VILLERS LES POTS", "libell_d_acheminement": "VILLERS LES POTS", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21699"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3696da178a4e8dd7665aaf8838cceef07560a41", "fields": {"nom_de_la_commune": "VILLOTTE ST SEINE", "libell_d_acheminement": "VILLOTTE ST SEINE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21705"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6073e9ea096bfb407cf8130bc31153b1a159a88e", "fields": {"nom_de_la_commune": "VILLOTTE SUR OURCE", "libell_d_acheminement": "VILLOTTE SUR OURCE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21706"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e572bf669a300b53dfc353153cd30fe48f740c", "fields": {"nom_de_la_commune": "ANDEL", "libell_d_acheminement": "ANDEL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22002"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4517a39b5ef8f80811b38679c7392010b6f526", "fields": {"code_postal": "22140", "code_commune_insee": "22004", "libell_d_acheminement": "BEGARD", "ligne_5": "GUENEZAN", "nom_de_la_commune": "BEGARD", "coordonnees_gps": [48.6535314003, -3.30873251878]}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b7483dbfaae0e791ca75b5a6e4880041f03d62", "fields": {"nom_de_la_commune": "BERHET", "libell_d_acheminement": "BERHET", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22006"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1128b75b43e9456be3868685fefd6cdd75b06e", "fields": {"nom_de_la_commune": "BOBITAL", "libell_d_acheminement": "BOBITAL", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22008"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "303fde225d4c346e5f3e0d8b89ccfa4de1cdb3c8", "fields": {"nom_de_la_commune": "LE BODEO", "libell_d_acheminement": "LE BODEO", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22009"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251437544214c3d0046abfdd1acaaf5818a36064", "fields": {"nom_de_la_commune": "CAUREL", "libell_d_acheminement": "CAUREL", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22033"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3a7ae31fb25c566f41fe505b93e542d8645220", "fields": {"nom_de_la_commune": "COADOUT", "libell_d_acheminement": "COADOUT", "code_postal": "22970", "coordonnees_gps": [48.5268505114, -3.12593475161], "code_commune_insee": "22040"}, "geometry": {"type": "Point", "coordinates": [-3.12593475161, 48.5268505114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f280dc1a14ec28bb5e813629688efb89f894588a", "fields": {"nom_de_la_commune": "COETLOGON", "libell_d_acheminement": "COETLOGON", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22043"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd9c7fa30a01e9a82d83ac691805f31e4a0df63", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "COLLINEE", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458eca006e31b914852509b254578a8d18b135db", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "ST GILLES DU MENE", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c359aa4afe934d8a86116cc117a74722d4f713a", "fields": {"nom_de_la_commune": "BINIC ETABLES SUR MER", "libell_d_acheminement": "BINIC ETABLES SUR MER", "code_postal": "22680", "coordonnees_gps": [48.6253671156, -2.8412181683], "code_commune_insee": "22055"}, "geometry": {"type": "Point", "coordinates": [-2.8412181683, 48.6253671156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295b9c3262055f62c3b07bd49d4600b4e8dbedcf", "fields": {"nom_de_la_commune": "GLOMEL", "libell_d_acheminement": "GLOMEL", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22061"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c4ade1a2fb8efe6f9857bb3a343ef78ae7f9d9", "fields": {"nom_de_la_commune": "GUINGAMP", "libell_d_acheminement": "GUINGAMP", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22070"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5dc73e84c6f945f69b2e93a76c5b7ab5dd661c", "fields": {"nom_de_la_commune": "HILLION", "libell_d_acheminement": "HILLION", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22081"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2975d43af4427c7581d78af65dba22089153e34c", "fields": {"nom_de_la_commune": "KERMOROC H", "libell_d_acheminement": "KERMOROC H", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22091"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a64e79bcfb44df591a35094f0537a16adabe4f", "fields": {"nom_de_la_commune": "LANFAINS", "libell_d_acheminement": "LANFAINS", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22099"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fd23a48bb03f1b4d0e46d23a03f59094a52aae", "fields": {"nom_de_la_commune": "LANGOAT", "libell_d_acheminement": "LANGOAT", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22101"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bfb86f8b98c4b209e26e8860943507319b59ff", "fields": {"nom_de_la_commune": "LANGUEUX", "libell_d_acheminement": "LANGUEUX", "code_postal": "22360", "coordonnees_gps": [48.5000567544, -2.71042685567], "code_commune_insee": "22106"}, "geometry": {"type": "Point", "coordinates": [-2.71042685567, 48.5000567544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92d69528db0df820502ade1f0df86269da0f6a0", "fields": {"nom_de_la_commune": "LANLEFF", "libell_d_acheminement": "LANLEFF", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22108"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5b28d1fbc628e8e3eb53b7b1140df4ea805124", "fields": {"nom_de_la_commune": "LANMODEZ", "libell_d_acheminement": "LANMODEZ", "code_postal": "22610", "coordonnees_gps": [48.8387667808, -3.14072269056], "code_commune_insee": "22111"}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e673de536e991775a1f3cebc1434ddc24a5077", "fields": {"code_postal": "22100", "code_commune_insee": "22118", "libell_d_acheminement": "LANVALLAY", "ligne_5": "ST SOLEN", "nom_de_la_commune": "LANVALLAY", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3090be4c3e1b04f3991d59b688a9c1f744a8d02", "fields": {"nom_de_la_commune": "LANVELLEC", "libell_d_acheminement": "LANVELLEC", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22119"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f08a7d20da5b09fd6787c4d27fc47a39d3fd9f", "fields": {"nom_de_la_commune": "LEHON", "libell_d_acheminement": "LEHON", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22123"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1bbb8f606ad4527c8ad855179589aa00c5f774", "fields": {"nom_de_la_commune": "LOGUIVY PLOUGRAS", "libell_d_acheminement": "LOGUIVY PLOUGRAS", "code_postal": "22780", "coordonnees_gps": [48.5213777811, -3.52574815356], "code_commune_insee": "22131"}, "geometry": {"type": "Point", "coordinates": [-3.52574815356, 48.5213777811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08d15a124ae0399a691548acc4cbb671d47634b", "fields": {"nom_de_la_commune": "MANTALLOT", "libell_d_acheminement": "MANTALLOT", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22141"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4789404e81c3274b2740375ec0c5fe1fba02d527", "fields": {"nom_de_la_commune": "MELLIONNEC", "libell_d_acheminement": "MELLIONNEC", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22146"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04c516d551939684734f5eb75af529492925f1e", "fields": {"nom_de_la_commune": "MERILLAC", "libell_d_acheminement": "MERILLAC", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22148"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "230f027483d5818efe0d16ee4be17f96910314b3", "fields": {"nom_de_la_commune": "MOUSTERU", "libell_d_acheminement": "MOUSTERU", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22156"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9383c365ac3e377d3996a9aa4042459749c45ff1", "fields": {"nom_de_la_commune": "MUR DE BRETAGNE", "libell_d_acheminement": "MUR DE BRETAGNE", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22158"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6809ee869226e106b357da703fe8cdd546fdce", "fields": {"nom_de_la_commune": "PAIMPOL", "libell_d_acheminement": "PAIMPOL", "code_postal": "22500", "coordonnees_gps": [48.7659885525, -3.04980464918], "code_commune_insee": "22162"}, "geometry": {"type": "Point", "coordinates": [-3.04980464918, 48.7659885525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c592f3876ababa5975f0e727c67d773ab817a92", "fields": {"nom_de_la_commune": "PLEBOULLE", "libell_d_acheminement": "PLEBOULLE", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22174"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d7329416bd16e171d4bac02c8b1430b569b95d", "fields": {"nom_de_la_commune": "PLEDRAN", "libell_d_acheminement": "PLEDRAN", "code_postal": "22960", "coordonnees_gps": [48.4433395848, -2.74484098565], "code_commune_insee": "22176"}, "geometry": {"type": "Point", "coordinates": [-2.74484098565, 48.4433395848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4fe8c83b422c2785a8a69f7190020c28215eed", "fields": {"nom_de_la_commune": "PLEGUIEN", "libell_d_acheminement": "PLEGUIEN", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22177"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5638442c344efe173391a1f5543bd3cf81526b82", "fields": {"code_postal": "22240", "code_commune_insee": "22179", "libell_d_acheminement": "FREHEL", "ligne_5": "SABLES D OR LES PINS", "nom_de_la_commune": "FREHEL", "coordonnees_gps": [48.6228539052, -2.37843201672]}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c7b0c46c3f0b818e7f340c84310fb7d671e2e5", "fields": {"code_postal": "22170", "code_commune_insee": "22182", "libell_d_acheminement": "PLELO", "ligne_5": "ST JEAN PLELO", "nom_de_la_commune": "PLELO", "coordonnees_gps": [48.5200598595, -2.97473935214]}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e8fda5dbfdf502ec56d4e0e57598caca4bb016", "fields": {"nom_de_la_commune": "PLESSIX BALISSON", "libell_d_acheminement": "PLESSIX BALISSON", "code_postal": "22650", "coordonnees_gps": [48.5606353312, -2.1363314846], "code_commune_insee": "22192"}, "geometry": {"type": "Point", "coordinates": [-2.1363314846, 48.5606353312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a6746d14e655e706a955828389c60db0377ebb", "fields": {"nom_de_la_commune": "PLESTAN", "libell_d_acheminement": "PLESTAN", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22193"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6870c9c6f2b4969f13d33d6adb622c040b4758", "fields": {"code_postal": "22610", "code_commune_insee": "22195", "libell_d_acheminement": "PLEUBIAN", "ligne_5": "L ARMOR", "nom_de_la_commune": "PLEUBIAN", "coordonnees_gps": [48.8387667808, -3.14072269056]}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "912e5eab0b662a9ee1b74d4db7c92c163cd0d955", "fields": {"nom_de_la_commune": "PLOUAGAT", "libell_d_acheminement": "PLOUAGAT", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22206"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5573ea09d290fc0de3d2650d9eb8ddf8d2e4bd7", "fields": {"nom_de_la_commune": "PLOUARET", "libell_d_acheminement": "PLOUARET", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22207"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca18741d25a1b606d64c37b1ed81d4bad9e7d8cd", "fields": {"nom_de_la_commune": "PLOUBALAY", "libell_d_acheminement": "PLOUBALAY", "code_postal": "22650", "coordonnees_gps": [48.5606353312, -2.1363314846], "code_commune_insee": "22209"}, "geometry": {"type": "Point", "coordinates": [-2.1363314846, 48.5606353312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8caab5f22a361c951fe82dd2552397517d9e7087", "fields": {"code_postal": "22620", "code_commune_insee": "22210", "libell_d_acheminement": "PLOUBAZLANEC", "ligne_5": "L ARCOUEST", "nom_de_la_commune": "PLOUBAZLANEC", "coordonnees_gps": [48.8054371509, -3.04487100542]}, "geometry": {"type": "Point", "coordinates": [-3.04487100542, 48.8054371509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b61ab5edb0072f36307226c43876587c5442ddc", "fields": {"nom_de_la_commune": "PLOUBEZRE", "libell_d_acheminement": "PLOUBEZRE", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22211"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffc6a028b1fd004a56c9536f60d63c6d61a3a53c", "fields": {"nom_de_la_commune": "PLOUER SUR RANCE", "libell_d_acheminement": "PLOUER SUR RANCE", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22213"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9293f5b04f3436fabc5bdc05beea717f7a7861", "fields": {"code_postal": "22580", "code_commune_insee": "22222", "libell_d_acheminement": "PLOUHA", "ligne_5": "KEREGAL", "nom_de_la_commune": "PLOUHA", "coordonnees_gps": [48.6838185781, -2.93369249044]}, "geometry": {"type": "Point", "coordinates": [-2.93369249044, 48.6838185781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8228ce3ec084f03f4cb0f46e0c442fa51a2ff48e", "fields": {"nom_de_la_commune": "PLOUMAGOAR", "libell_d_acheminement": "PLOUMAGOAR", "code_postal": "22970", "coordonnees_gps": [48.5268505114, -3.12593475161], "code_commune_insee": "22225"}, "geometry": {"type": "Point", "coordinates": [-3.12593475161, 48.5268505114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2956e676acda582d980ce90e20a2ff61cbf608d", "fields": {"nom_de_la_commune": "PLOUMILLIAU", "libell_d_acheminement": "PLOUMILLIAU", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22226"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83fddda04b8d9366de512545408bfcea88e3a4f9", "fields": {"nom_de_la_commune": "PLOUNEVEZ MOEDEC", "libell_d_acheminement": "PLOUNEVEZ MOEDEC", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22228"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3606d69e157dd09041dea981de7bcfc244f431", "fields": {"nom_de_la_commune": "PLOUVARA", "libell_d_acheminement": "PLOUVARA", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22234"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677e7906db9f37e0c514321c88a86191a8c7c837", "fields": {"nom_de_la_commune": "PLURIEN", "libell_d_acheminement": "PLURIEN", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22242"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c99b32e4cedff29029f464cf3f494b7817a658", "fields": {"nom_de_la_commune": "POMMERET", "libell_d_acheminement": "POMMERET", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22246"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876cb4d3815b092ec9533dc8ac9d815f8c6281be", "fields": {"nom_de_la_commune": "POMMERIT JAUDY", "libell_d_acheminement": "POMMERIT JAUDY", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22247"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f04229b0ee18406f5cbc778e42d41001ff49231", "fields": {"code_postal": "22590", "code_commune_insee": "22251", "libell_d_acheminement": "PORDIC", "ligne_5": "LA VILLE LOUAIS", "nom_de_la_commune": "PORDIC", "coordonnees_gps": [48.5695461938, -2.84144566596]}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece0598b86f8ca1d4994f1ffc6731b08aced1fb6", "fields": {"nom_de_la_commune": "LE QUIOU", "libell_d_acheminement": "LE QUIOU", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22263"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c869fe6ca072682907b0765ce70b8b95b29478", "fields": {"nom_de_la_commune": "ROUILLAC", "libell_d_acheminement": "ROUILLAC", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22267"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a9ef55c2ac3846b278f9205eeca077b5a0dafb2", "fields": {"nom_de_la_commune": "ST ANDRE DES EAUX", "libell_d_acheminement": "ST ANDRE DES EAUX", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22274"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "595f2f032d657b825743c5bb72b5b327306c4588", "fields": {"nom_de_la_commune": "ST BRIEUC", "libell_d_acheminement": "ST BRIEUC", "code_postal": "22000", "coordonnees_gps": [48.5146037386, -2.76180979127], "code_commune_insee": "22278"}, "geometry": {"type": "Point", "coordinates": [-2.76180979127, 48.5146037386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3651edabe029a017d0a6f808c77d99535b668bd8", "fields": {"nom_de_la_commune": "ST CARREUC", "libell_d_acheminement": "ST CARREUC", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22281"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cd5dcd4fc7e8692365dd0594ef4b977bac91fd2", "fields": {"code_postal": "22380", "code_commune_insee": "22282", "libell_d_acheminement": "ST CAST LE GUILDO", "ligne_5": "NOTRE DAME DU GUILDO", "nom_de_la_commune": "ST CAST LE GUILDO", "coordonnees_gps": [48.6033654101, -2.24845045064]}, "geometry": {"type": "Point", "coordinates": [-2.24845045064, 48.6033654101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84787479b0f7c72a25cd6058ca5b9119db7db8e7", "fields": {"code_postal": "67330", "code_commune_insee": "67347", "libell_d_acheminement": "OBERMODERN ZUTZENDORF", "ligne_5": "OBERMODERN", "nom_de_la_commune": "OBERMODERN ZUTZENDORF", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfa14d4b2f40d6c1ff8ade2fe66e4dc432cd95a", "fields": {"nom_de_la_commune": "OBERSCHAEFFOLSHEIM", "libell_d_acheminement": "OBERSCHAEFFOLSHEIM", "code_postal": "67203", "coordonnees_gps": [48.5913901619, 7.64679643518], "code_commune_insee": "67350"}, "geometry": {"type": "Point", "coordinates": [7.64679643518, 48.5913901619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e4087059af6a25559426a87f89ee0ba791d2f5", "fields": {"nom_de_la_commune": "SEEBACH", "libell_d_acheminement": "SEEBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67351"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694d49e249f91e7cfbc4eb5285563de052cde878", "fields": {"nom_de_la_commune": "TACONNAY", "libell_d_acheminement": "TACONNAY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58283"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f637a68b05f8a13d9d7e79a0b536698f4139a4d8", "fields": {"nom_de_la_commune": "TINTURY", "libell_d_acheminement": "TINTURY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58292"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f738671c17795d153dda455c0dffd2b49e7c3a67", "fields": {"code_postal": "58150", "code_commune_insee": "58295", "libell_d_acheminement": "TRACY SUR LOIRE", "ligne_5": "BOISGIBAULT", "nom_de_la_commune": "TRACY SUR LOIRE", "coordonnees_gps": [47.3141169585, 3.01884186422]}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5e0578271a90f2b774bcf3dc88f5478e5f581e", "fields": {"nom_de_la_commune": "TRESNAY", "libell_d_acheminement": "TRESNAY", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58296"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0cdca3ffdac09c33a27fe47a4dc59f7530fa9cc", "fields": {"nom_de_la_commune": "TRONSANGES", "libell_d_acheminement": "TRONSANGES", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58298"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "170bda081a45ea07e05ecde3139002697d442eb0", "fields": {"nom_de_la_commune": "URZY", "libell_d_acheminement": "URZY", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58300"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7b149e50cbd2d64e11f1ee5b7a61c1e64cd84e", "fields": {"nom_de_la_commune": "VARENNES LES NARCY", "libell_d_acheminement": "VARENNES LES NARCY", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58302"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edcc6d0bdd727f2e94b046dfd959807afb81b32", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58306"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e46c0beaeb4c9947b82f8b283bcdc2f8d0f4a5c", "fields": {"nom_de_la_commune": "VIGNOL", "libell_d_acheminement": "VIGNOL", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58308"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b2966dab477ccacc24c923a325d6c1903e882c", "fields": {"nom_de_la_commune": "VILLAPOURCON", "libell_d_acheminement": "VILLAPOURCON", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58309"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6babb01241ab6b2218d26c3d4bc553fe82ab7f39", "fields": {"nom_de_la_commune": "VILLE LANGY", "libell_d_acheminement": "VILLE LANGY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58311"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a1e45e2c994d0a04316e9210f0e88e0242238c", "fields": {"nom_de_la_commune": "AIBES", "libell_d_acheminement": "AIBES", "code_postal": "59149", "coordonnees_gps": [50.2443056992, 4.15095520104], "code_commune_insee": "59003"}, "geometry": {"type": "Point", "coordinates": [4.15095520104, 50.2443056992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6cc165bfd7b2b1a7561fa8c090917dc75d7a55", "fields": {"nom_de_la_commune": "ALLENNES LES MARAIS", "libell_d_acheminement": "ALLENNES LES MARAIS", "code_postal": "59251", "coordonnees_gps": [50.5419829153, 2.94796550506], "code_commune_insee": "59005"}, "geometry": {"type": "Point", "coordinates": [2.94796550506, 50.5419829153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b1140baf2520b75cd9f4655e74feb0a1385b902", "fields": {"nom_de_la_commune": "ANNEUX", "libell_d_acheminement": "ANNEUX", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59010"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4375c2a680c23128e6966f2cbadc7f93b1db9b7", "fields": {"nom_de_la_commune": "ARTRES", "libell_d_acheminement": "ARTRES", "code_postal": "59269", "coordonnees_gps": [50.2865936592, 3.53807571429], "code_commune_insee": "59019"}, "geometry": {"type": "Point", "coordinates": [3.53807571429, 50.2865936592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1aa0614e5abb8e1038c1ffc791b40b84900fd2", "fields": {"nom_de_la_commune": "ASSEVENT", "libell_d_acheminement": "ASSEVENT", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59021"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db677226526ff3cb8b1fabc116c05e3e993258f", "fields": {"nom_de_la_commune": "AULNOY LEZ VALENCIENNES", "libell_d_acheminement": "AULNOY LEZ VALENCIENNES", "code_postal": "59300", "coordonnees_gps": [50.3420089884, 3.52240338554], "code_commune_insee": "59032"}, "geometry": {"type": "Point", "coordinates": [3.52240338554, 50.3420089884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ebf589add38faa3496ef8b3b0acf769e68fa79", "fields": {"nom_de_la_commune": "AVELIN", "libell_d_acheminement": "AVELIN", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59034"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a232cd06710cdfda63a9fbc4142dc91d2bf3c5", "fields": {"nom_de_la_commune": "AVESNES LES AUBERT", "libell_d_acheminement": "AVESNES LES AUBERT", "code_postal": "59129", "coordonnees_gps": [50.191508936, 3.37663816461], "code_commune_insee": "59037"}, "geometry": {"type": "Point", "coordinates": [3.37663816461, 50.191508936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9e581f23b0b31d3f8ad9d511a1d0e2086988af", "fields": {"nom_de_la_commune": "BANTIGNY", "libell_d_acheminement": "BANTIGNY", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59048"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991276ec6a2b2e05c398ba79337beb3fb49a5157", "fields": {"nom_de_la_commune": "BAS LIEU", "libell_d_acheminement": "BAS LIEU", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59050"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e981eccbdd0cfff61ed03b436a72c85b181450fa", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59058"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06f01f3c42c3715c510d9584f0bf31008240301", "fields": {"nom_de_la_commune": "BEAUVOIS EN CAMBRESIS", "libell_d_acheminement": "BEAUVOIS EN CAMBRESIS", "code_postal": "59157", "coordonnees_gps": [50.1316078184, 3.37201243969], "code_commune_insee": "59063"}, "geometry": {"type": "Point", "coordinates": [3.37201243969, 50.1316078184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f7263f37b5835b235dc39c9d9adc5721e9f06e", "fields": {"nom_de_la_commune": "BETHENCOURT", "libell_d_acheminement": "BETHENCOURT", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59075"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07dff901ab921e2cce62267634da98328549fe6", "fields": {"nom_de_la_commune": "BEUGNIES", "libell_d_acheminement": "BEUGNIES", "code_postal": "59216", "coordonnees_gps": [50.1687463201, 4.01936516486], "code_commune_insee": "59078"}, "geometry": {"type": "Point", "coordinates": [4.01936516486, 50.1687463201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7251b76c8b3c621c315858be6252a60ff1287c", "fields": {"nom_de_la_commune": "BEUVRAGES", "libell_d_acheminement": "BEUVRAGES", "code_postal": "59192", "coordonnees_gps": [50.3888434919, 3.50516090536], "code_commune_insee": "59079"}, "geometry": {"type": "Point", "coordinates": [3.50516090536, 50.3888434919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb6ab516f6bca9fd3feb36949a31cd56f479b6e", "fields": {"nom_de_la_commune": "BLECOURT", "libell_d_acheminement": "BLECOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59085"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac1ba11f63b7735621762a7bcfdc4d663ecb3ee", "fields": {"code_postal": "59111", "code_commune_insee": "59092", "libell_d_acheminement": "BOUCHAIN", "ligne_5": "BASSIN ROND", "nom_de_la_commune": "BOUCHAIN", "coordonnees_gps": [50.2733776483, 3.31798741017]}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b29cc54b83d2a748aeccee577ead2d025932f8", "fields": {"nom_de_la_commune": "BOURGHELLES", "libell_d_acheminement": "BOURGHELLES", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59096"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bc72c372226b3e8e433949e4ffb3951f97649f", "fields": {"nom_de_la_commune": "BOUSSIERES EN CAMBRESIS", "libell_d_acheminement": "BOUSSIERES EN CAMBRESIS", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59102"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04addcf7edaa207d5d332c3d117b35f42016644b", "fields": {"nom_de_la_commune": "BOUVINES", "libell_d_acheminement": "BOUVINES", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59106"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8631266784228a9aebf75d43b83343d38d38b6", "fields": {"nom_de_la_commune": "BRILLON", "libell_d_acheminement": "BRILLON", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59109"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c98cee287f51f1d234f16479da2ba91a8c573b", "fields": {"nom_de_la_commune": "BUGNICOURT", "libell_d_acheminement": "BUGNICOURT", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59117"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03a1daba5fc67ecbb3486086581a89ae54a2597", "fields": {"nom_de_la_commune": "BUSIGNY", "libell_d_acheminement": "BUSIGNY", "code_postal": "59137", "coordonnees_gps": [50.0375774947, 3.46625652064], "code_commune_insee": "59118"}, "geometry": {"type": "Point", "coordinates": [3.46625652064, 50.0375774947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de2c998c75f976770342a22c605a8de5823dcee", "fields": {"nom_de_la_commune": "CAGNONCLES", "libell_d_acheminement": "CAGNONCLES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59121"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e0d7f83b0ec6341c7721e812f278fb69690fd6", "fields": {"nom_de_la_commune": "CAPINGHEM", "libell_d_acheminement": "CAPINGHEM", "code_postal": "59160", "coordonnees_gps": [50.6326805368, 3.0429756448], "code_commune_insee": "59128"}, "geometry": {"type": "Point", "coordinates": [3.0429756448, 50.6326805368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f3b99f9e5c843011ec50834f85892752d3072e", "fields": {"nom_de_la_commune": "CLAIRFAYTS", "libell_d_acheminement": "CLAIRFAYTS", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59148"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f7adef7c484dc684c7849f448f9e796a6b35f", "fields": {"nom_de_la_commune": "CLARY", "libell_d_acheminement": "CLARY", "code_postal": "59225", "coordonnees_gps": [50.0767179455, 3.40307595775], "code_commune_insee": "59149"}, "geometry": {"type": "Point", "coordinates": [3.40307595775, 50.0767179455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea625b60b13ce7014366f03ec99ad1ff194e4953", "fields": {"nom_de_la_commune": "COLLERET", "libell_d_acheminement": "COLLERET", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59151"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4424a61082def78257b25d6e24055cf937837d88", "fields": {"nom_de_la_commune": "COMINES", "libell_d_acheminement": "COMINES", "code_postal": "59560", "coordonnees_gps": [50.7487126349, 3.00528149313], "code_commune_insee": "59152"}, "geometry": {"type": "Point", "coordinates": [3.00528149313, 50.7487126349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db1fc62c64304b3aee3cdff4217c315fb2c6c5f", "fields": {"nom_de_la_commune": "CRAYWICK", "libell_d_acheminement": "CRAYWICK", "code_postal": "59279", "coordonnees_gps": [51.0134149737, 2.28028859027], "code_commune_insee": "59159"}, "geometry": {"type": "Point", "coordinates": [2.28028859027, 51.0134149737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259a746b94cb7d4689b63a4d74d7cf33579f0979", "fields": {"nom_de_la_commune": "CRESPIN", "libell_d_acheminement": "CRESPIN", "code_postal": "59154", "coordonnees_gps": [50.4218005346, 3.65167545746], "code_commune_insee": "59160"}, "geometry": {"type": "Point", "coordinates": [3.65167545746, 50.4218005346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6df67371b94bb7949ceb9dd138399a16454be5e", "fields": {"nom_de_la_commune": "DAMOUSIES", "libell_d_acheminement": "DAMOUSIES", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59169"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509578f03bea1f9068d8008ef91e513b5ee0ee17", "fields": {"nom_de_la_commune": "DIMECHAUX", "libell_d_acheminement": "DIMECHAUX", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59174"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f4ce7c787e7aa52c60f37978a361f587febd40c", "fields": {"nom_de_la_commune": "DOIGNIES", "libell_d_acheminement": "DOIGNIES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59176"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859476ad0453e84b4cea2636e9b6f3aec5bcfe38", "fields": {"code_postal": "59500", "code_commune_insee": "59178", "libell_d_acheminement": "DOUAI", "ligne_5": "DORIGNIES", "nom_de_la_commune": "DOUAI", "coordonnees_gps": [50.382032933, 3.09129729986]}, "geometry": {"type": "Point", "coordinates": [3.09129729986, 50.382032933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97184a3d30d2a7e25cdedcf73ba412e35f541cbb", "fields": {"nom_de_la_commune": "ECLAIBES", "libell_d_acheminement": "ECLAIBES", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59187"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8bca446eb6b2931e3912dc874b059c477964ba", "fields": {"nom_de_la_commune": "EMERCHICOURT", "libell_d_acheminement": "EMERCHICOURT", "code_postal": "59580", "coordonnees_gps": [50.322452087, 3.25533634496], "code_commune_insee": "59192"}, "geometry": {"type": "Point", "coordinates": [3.25533634496, 50.322452087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f7a1f7feb5d356a439ed77a4250776d04db11e", "fields": {"nom_de_la_commune": "EPPE SAUVAGE", "libell_d_acheminement": "EPPE SAUVAGE", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59198"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5467667cf81ab7e03ca4a3dcc514e1d40db0488", "fields": {"nom_de_la_commune": "ERQUINGHEM LE SEC", "libell_d_acheminement": "ERQUINGHEM LE SEC", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59201"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ecc10cb0f7a4406705a045d038cbc5dbc882ed8", "fields": {"nom_de_la_commune": "ERQUINGHEM LYS", "libell_d_acheminement": "ERQUINGHEM LYS", "code_postal": "59193", "coordonnees_gps": [50.6702564088, 2.84077626226], "code_commune_insee": "59202"}, "geometry": {"type": "Point", "coordinates": [2.84077626226, 50.6702564088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602adbe357f423d36e039b59c2572c2be509843c", "fields": {"nom_de_la_commune": "FERIN", "libell_d_acheminement": "FERIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59228"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bf17789d630eff84748cd577d07f3d8375f6ff", "fields": {"nom_de_la_commune": "LA FLAMENGRIE", "libell_d_acheminement": "LA FLAMENGRIE", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59232"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b4abc8e6e7c4a64bcc89eeb8c109d08f887be2", "fields": {"nom_de_la_commune": "FLINES LES MORTAGNE", "libell_d_acheminement": "FLINES LES MORTAGNE", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59238"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f72b641a48f0107fdc4f5d10b9d70bfe8735623", "fields": {"nom_de_la_commune": "FONTAINE AU PIRE", "libell_d_acheminement": "FONTAINE AU PIRE", "code_postal": "59157", "coordonnees_gps": [50.1316078184, 3.37201243969], "code_commune_insee": "59243"}, "geometry": {"type": "Point", "coordinates": [3.37201243969, 50.1316078184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ab2d616d75e59dd07f973eb89c0ceb711f8baf", "fields": {"nom_de_la_commune": "FRESNES SUR ESCAUT", "libell_d_acheminement": "FRESNES SUR ESCAUT", "code_postal": "59970", "coordonnees_gps": [50.4323433177, 3.57545124255], "code_commune_insee": "59253"}, "geometry": {"type": "Point", "coordinates": [3.57545124255, 50.4323433177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059ad10f678f75f14b79188e83bd182de05a7e48", "fields": {"code_postal": "59122", "code_commune_insee": "59260", "libell_d_acheminement": "GHYVELDE", "ligne_5": "LES MOERES", "nom_de_la_commune": "GHYVELDE", "coordonnees_gps": [50.9782311457, 2.55726472129]}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e3f59f698bccb85eef5477e64a2e61a393245e", "fields": {"nom_de_la_commune": "GOMMEGNIES", "libell_d_acheminement": "GOMMEGNIES", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59265"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d3c48a58a163145fdf89353abbfba0f870f83b", "fields": {"nom_de_la_commune": "GRAND FAYT", "libell_d_acheminement": "GRAND FAYT", "code_postal": "59244", "coordonnees_gps": [50.0896425348, 3.83023391682], "code_commune_insee": "59270"}, "geometry": {"type": "Point", "coordinates": [3.83023391682, 50.0896425348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9ad2e2c77fae2a9439da25da40b450b2915c89a", "fields": {"nom_de_la_commune": "HASNON", "libell_d_acheminement": "HASNON", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59284"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ac762a2963a93ce62bb5563ec0039daa66f7d8", "fields": {"nom_de_la_commune": "HASPRES", "libell_d_acheminement": "HASPRES", "code_postal": "59198", "coordonnees_gps": [50.2646016218, 3.41120751388], "code_commune_insee": "59285"}, "geometry": {"type": "Point", "coordinates": [3.41120751388, 50.2646016218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302375f36baca4185cce81779fb97469b0366e50", "fields": {"nom_de_la_commune": "HAUSSY", "libell_d_acheminement": "HAUSSY", "code_postal": "59294", "coordonnees_gps": [50.2223682652, 3.47941651772], "code_commune_insee": "59289"}, "geometry": {"type": "Point", "coordinates": [3.47941651772, 50.2223682652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce9f40e72078e88fcf44a343eb932ed9edc4cb10", "fields": {"nom_de_la_commune": "HAUT LIEU", "libell_d_acheminement": "HAUT LIEU", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59290"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20795fde20cde0e36358cebec3610c98408418f8", "fields": {"nom_de_la_commune": "HAYNECOURT", "libell_d_acheminement": "HAYNECOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59294"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1eec77d013dee93671670ae7bfdd2ac9983b2d", "fields": {"nom_de_la_commune": "HAZEBROUCK", "libell_d_acheminement": "HAZEBROUCK", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59295"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4c2484b6d527e438cb9e30cdf78eab9f60a002", "fields": {"nom_de_la_commune": "HELESMES", "libell_d_acheminement": "HELESMES", "code_postal": "59171", "coordonnees_gps": [50.3694204804, 3.33834111863], "code_commune_insee": "59297"}, "geometry": {"type": "Point", "coordinates": [3.33834111863, 50.3694204804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a867e757facbda4acbb268b13a4cb6d8e00d011", "fields": {"nom_de_la_commune": "HERIN", "libell_d_acheminement": "HERIN", "code_postal": "59195", "coordonnees_gps": [50.3552982371, 3.44360395869], "code_commune_insee": "59302"}, "geometry": {"type": "Point", "coordinates": [3.44360395869, 50.3552982371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058324648c405c3bb83ccdd1ff510e13e640a550", "fields": {"nom_de_la_commune": "HERLIES", "libell_d_acheminement": "HERLIES", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59303"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e802734be740c3035d08b9cfe91fad028d42d2", "fields": {"nom_de_la_commune": "HOLQUE", "libell_d_acheminement": "HOLQUE", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59307"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f482fb97d5fe5064ff8dc32b6fa490e6f12efb11", "fields": {"nom_de_la_commune": "HONDEGHEM", "libell_d_acheminement": "HONDEGHEM", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59308"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756d0476e27b1a3e75aba14ef7e3969a179ea5d3", "fields": {"nom_de_la_commune": "HONNECHY", "libell_d_acheminement": "HONNECHY", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59311"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb76f79787a5067925abfe4ac7fd951a17196980", "fields": {"nom_de_la_commune": "HOUTKERQUE", "libell_d_acheminement": "HOUTKERQUE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59318"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec27fca089f941f1083534b44f5a2455d8c6d68", "fields": {"nom_de_la_commune": "LANDRECIES", "libell_d_acheminement": "LANDRECIES", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59331"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbf36d74bca8baae7d4049dac4cf7531f52dc19", "fields": {"nom_de_la_commune": "LECELLES", "libell_d_acheminement": "LECELLES", "code_postal": "59226", "coordonnees_gps": [50.480222772, 3.38511026562], "code_commune_insee": "59335"}, "geometry": {"type": "Point", "coordinates": [3.38511026562, 50.480222772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990a75d781210201c199e622c54a254691d9caf4", "fields": {"nom_de_la_commune": "LEFFRINCKOUCKE", "libell_d_acheminement": "LEFFRINCKOUCKE", "code_postal": "59495", "coordonnees_gps": [51.0480700987, 2.45495927922], "code_commune_insee": "59340"}, "geometry": {"type": "Point", "coordinates": [2.45495927922, 51.0480700987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d938696f93eddc3756906f8ba3002003b864f14e", "fields": {"nom_de_la_commune": "LEWARDE", "libell_d_acheminement": "LEWARDE", "code_postal": "59287", "coordonnees_gps": [50.3426420903, 3.15765827403], "code_commune_insee": "59345"}, "geometry": {"type": "Point", "coordinates": [3.15765827403, 50.3426420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b7be0b9ebcf6729eedbacb2522939980df5d53e", "fields": {"nom_de_la_commune": "LEZENNES", "libell_d_acheminement": "LEZENNES", "code_postal": "59260", "coordonnees_gps": [50.6305664, 3.05173534019], "code_commune_insee": "59346"}, "geometry": {"type": "Point", "coordinates": [3.05173534019, 50.6305664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b4ab5376d01b3c9008b3a92633fb00a0cd0700", "fields": {"nom_de_la_commune": "LIESSIES", "libell_d_acheminement": "LIESSIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59347"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f68f0a68e94f82b84d9778acb8e053527d08626", "fields": {"nom_de_la_commune": "LILLE", "libell_d_acheminement": "LILLE", "code_postal": "59000", "coordonnees_gps": [50.6319195692, 3.04708687186], "code_commune_insee": "59350"}, "geometry": {"type": "Point", "coordinates": [3.04708687186, 50.6319195692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85497828ee09604d48c97c30910ada52e30330ae", "fields": {"code_postal": "59260", "code_commune_insee": "59350", "libell_d_acheminement": "LILLE", "ligne_5": "HELLEMMES LILLE", "nom_de_la_commune": "LILLE", "coordonnees_gps": [50.6305664, 3.05173534019]}, "geometry": {"type": "Point", "coordinates": [3.05173534019, 50.6305664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7dd02cd6e7122788b26a12bfd8b712675116b8", "fields": {"code_postal": "59777", "code_commune_insee": "59350", "libell_d_acheminement": "LILLE", "ligne_5": "EURALILLE", "nom_de_la_commune": "LILLE", "coordonnees_gps": [50.6319195692, 3.04708687186]}, "geometry": {"type": "Point", "coordinates": [3.04708687186, 50.6319195692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b975292455afd7db4422bd799d5b8819d536c1ce", "fields": {"nom_de_la_commune": "LILLE", "libell_d_acheminement": "LILLE", "code_postal": "59800", "coordonnees_gps": [50.6319195692, 3.04708687186], "code_commune_insee": "59350"}, "geometry": {"type": "Point", "coordinates": [3.04708687186, 50.6319195692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bcb5cc9864e9c3c36699395049f278eec49c2b1", "fields": {"nom_de_la_commune": "LOMPRET", "libell_d_acheminement": "LOMPRET", "code_postal": "59840", "coordonnees_gps": [50.6641115451, 2.96705892746], "code_commune_insee": "59356"}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67029dcc781a7e8f53afa0ca17085683d5d66006", "fields": {"nom_de_la_commune": "LOOBERGHE", "libell_d_acheminement": "LOOBERGHE", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59358"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b03296d51d30fcde450239d143be8ac4889c8b6", "fields": {"nom_de_la_commune": "LOON PLAGE", "libell_d_acheminement": "LOON PLAGE", "code_postal": "59279", "coordonnees_gps": [51.0134149737, 2.28028859027], "code_commune_insee": "59359"}, "geometry": {"type": "Point", "coordinates": [2.28028859027, 51.0134149737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bee0e0cccab4d6bdc2143554d22f6dbd927635", "fields": {"nom_de_la_commune": "LYS LEZ LANNOY", "libell_d_acheminement": "LYS LEZ LANNOY", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59367"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37afc98373cd01b72907176ad806273902a99e7", "fields": {"nom_de_la_commune": "MALINCOURT", "libell_d_acheminement": "MALINCOURT", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59372"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdf6c4450d51fc8daff4b13d9c5c74ea9172393", "fields": {"nom_de_la_commune": "MARCHIENNES", "libell_d_acheminement": "MARCHIENNES", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59375"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de804e821f9b0be5f3c5493314b392fe6dbcd4b1", "fields": {"nom_de_la_commune": "MARCOING", "libell_d_acheminement": "MARCOING", "code_postal": "59159", "coordonnees_gps": [50.1152893393, 3.16124259033], "code_commune_insee": "59377"}, "geometry": {"type": "Point", "coordinates": [3.16124259033, 50.1152893393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e12c071f1a0a6e6283a172e2e83c12e1f9c99fd", "fields": {"nom_de_la_commune": "MARQUETTE EN OSTREVANT", "libell_d_acheminement": "MARQUETTE EN OSTREVANT", "code_postal": "59252", "coordonnees_gps": [50.2842668858, 3.25374088253], "code_commune_insee": "59387"}, "geometry": {"type": "Point", "coordinates": [3.25374088253, 50.2842668858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5f777e4709c452035a93f7450c7f3d4efabe8b", "fields": {"nom_de_la_commune": "MASNY", "libell_d_acheminement": "MASNY", "code_postal": "59176", "coordonnees_gps": [50.3439205555, 3.20295217014], "code_commune_insee": "59390"}, "geometry": {"type": "Point", "coordinates": [3.20295217014, 50.3439205555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f194dee7be4a5f1adce9969ef1e043f65d1b6c6", "fields": {"nom_de_la_commune": "MAUROIS", "libell_d_acheminement": "MAUROIS", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59394"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63b655ded6c6e4c57e4e48e993a21efea378200", "fields": {"nom_de_la_commune": "MERVILLE", "libell_d_acheminement": "MERVILLE", "code_postal": "59660", "coordonnees_gps": [50.6440201212, 2.61424433004], "code_commune_insee": "59400"}, "geometry": {"type": "Point", "coordinates": [2.61424433004, 50.6440201212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4868a91ed4edf5cc30fa50960cb74a77ce41e9ab", "fields": {"nom_de_la_commune": "METEREN", "libell_d_acheminement": "METEREN", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59401"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ec4b4b60f61cd3231e8b2f318dbd2f785787b80", "fields": {"nom_de_la_commune": "MONS EN PEVELE", "libell_d_acheminement": "MONS EN PEVELE", "code_postal": "59246", "coordonnees_gps": [50.4819044324, 3.10379562947], "code_commune_insee": "59411"}, "geometry": {"type": "Point", "coordinates": [3.10379562947, 50.4819044324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d4695e45a5aa9c7f3d791ca217ff5fb662eb36", "fields": {"nom_de_la_commune": "MONTIGNY EN OSTREVENT", "libell_d_acheminement": "MONTIGNY EN OSTREVENT", "code_postal": "59182", "coordonnees_gps": [50.3632091187, 3.17800560697], "code_commune_insee": "59414"}, "geometry": {"type": "Point", "coordinates": [3.17800560697, 50.3632091187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c57a8f9fd868e34b4fbfc1cfdaecabf26c12fbc", "fields": {"nom_de_la_commune": "NEUF MESNIL", "libell_d_acheminement": "NEUF MESNIL", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59424"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70636df89e530638ec1e086759aa69a699dffe83", "fields": {"nom_de_la_commune": "BOISSEAUX", "libell_d_acheminement": "BOISSEAUX", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45037"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7518a50d0117093bee7dca801ee48c384542af", "fields": {"nom_de_la_commune": "BONDAROY", "libell_d_acheminement": "BONDAROY", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45038"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa1a94489bc771afb973174120b374ce41dec67", "fields": {"nom_de_la_commune": "BONNY SUR LOIRE", "libell_d_acheminement": "BONNY SUR LOIRE", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45040"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bf823c8b027ace960b04232fbddfbcacd42b5c", "fields": {"nom_de_la_commune": "BOUZONVILLE AUX BOIS", "libell_d_acheminement": "BOUZONVILLE AUX BOIS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45047"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95df8a7c5aad300820db31918c557507136db361", "fields": {"nom_de_la_commune": "BRAY EN VAL", "libell_d_acheminement": "BRAY EN VAL", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45051"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90bf54d3be9aed92e935dd03a1d6da39d26f2791", "fields": {"nom_de_la_commune": "BUCY LE ROI", "libell_d_acheminement": "BUCY LE ROI", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45058"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c5ca6ba6b97de008eebd2548d3d7bf7d6c27c5", "fields": {"nom_de_la_commune": "CERCOTTES", "libell_d_acheminement": "CERCOTTES", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45062"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b86ac3ee9ddeca93126105880bd2e0b6123230", "fields": {"nom_de_la_commune": "CHAINGY", "libell_d_acheminement": "CHAINGY", "code_postal": "45380", "coordonnees_gps": [47.8904899207, 1.78907704146], "code_commune_insee": "45067"}, "geometry": {"type": "Point", "coordinates": [1.78907704146, 47.8904899207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801ee3faea183b4997190a522fde06480d43f9e6", "fields": {"nom_de_la_commune": "CHALETTE SUR LOING", "libell_d_acheminement": "CHALETTE SUR LOING", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45068"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6a8fa4d3b79f5aeb7409ad5e54574e7a85b5d4", "fields": {"nom_de_la_commune": "LA CHAPELLE ST SEPULCRE", "libell_d_acheminement": "LA CHAPELLE ST SEPULCRE", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45076"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f3585aca645b72ab3b2f16df867bb27d2a347b", "fields": {"nom_de_la_commune": "CHARSONVILLE", "libell_d_acheminement": "CHARSONVILLE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45081"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7803ada944377a3ee4ce8235a87d387013b1bd21", "fields": {"nom_de_la_commune": "CHATEAU RENARD", "libell_d_acheminement": "CHATEAU RENARD", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45083"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6e40752afe1b9d2828ff9b5ea7312593ffabaa", "fields": {"nom_de_la_commune": "CHATILLON COLIGNY", "libell_d_acheminement": "CHATILLON COLIGNY", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45085"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cde660fda103f5b2115c4a83aeba59e35dc275", "fields": {"nom_de_la_commune": "CHATILLON LE ROI", "libell_d_acheminement": "CHATILLON LE ROI", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45086"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c48a6f0bf38a5511404127d4cce6c96c54d1fd", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45091"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572540cbe2e57c7b904e1ce36f32cf3141460608", "fields": {"nom_de_la_commune": "CHEVILLON SUR HUILLARD", "libell_d_acheminement": "CHEVILLON SUR HUILLARD", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45092"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a54aea95c9ad33215eb7f85d12321ab05d02ea5", "fields": {"nom_de_la_commune": "CHEVRY SOUS LE BIGNON", "libell_d_acheminement": "CHEVRY SOUS LE BIGNON", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45094"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d9799134de3c41d928f685ca2287019c1efb92", "fields": {"nom_de_la_commune": "COMBLEUX", "libell_d_acheminement": "COMBLEUX", "code_postal": "45800", "coordonnees_gps": [47.9164571685, 1.97410766394], "code_commune_insee": "45100"}, "geometry": {"type": "Point", "coordinates": [1.97410766394, 47.9164571685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd94751b904de9bec5efa686c01dbc6b29b7be3", "fields": {"nom_de_la_commune": "CORBEILLES", "libell_d_acheminement": "CORBEILLES", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45103"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769436cd91993fcaeb82ab28856decbef2739bb8", "fields": {"nom_de_la_commune": "COULLONS", "libell_d_acheminement": "COULLONS", "code_postal": "45720", "coordonnees_gps": [47.6176666982, 2.50600758489], "code_commune_insee": "45108"}, "geometry": {"type": "Point", "coordinates": [2.50600758489, 47.6176666982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d4bcc4ebc08bbd3f220e76169bacf735610e51", "fields": {"nom_de_la_commune": "LA COUR MARIGNY", "libell_d_acheminement": "LA COUR MARIGNY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45112"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50ad3c002943f2f5766bf7b7bed52c380d92486", "fields": {"nom_de_la_commune": "COURTEMPIERRE", "libell_d_acheminement": "COURTEMPIERRE", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45114"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf40005fb752eb5233daea63f93e901053d44637", "fields": {"code_postal": "45170", "code_commune_insee": "45118", "libell_d_acheminement": "CROTTES EN PITHIVERAIS", "ligne_5": "TEILLAY ST BENOIT", "nom_de_la_commune": "CROTTES EN PITHIVERAIS", "coordonnees_gps": [48.0809443986, 2.05747366676]}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287c3776834c75e18da519043a57a2a922522b8a", "fields": {"nom_de_la_commune": "DADONVILLE", "libell_d_acheminement": "DADONVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45119"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56021b4121c99324d79fdd96efd1d3580ac9a8c", "fields": {"nom_de_la_commune": "DAMMARIE EN PUISAYE", "libell_d_acheminement": "DAMMARIE EN PUISAYE", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45120"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca88528a6370d60fb930f4a6fe456d629f9bfbd", "fields": {"code_postal": "45220", "code_commune_insee": "45129", "libell_d_acheminement": "DOUCHY MONTCORBON", "ligne_5": "MONTCORBON", "nom_de_la_commune": "DOUCHY MONTCORBON", "coordonnees_gps": [47.9445707894, 2.94063509683]}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183a9be83d5fdae577b99e952fe6cc6662dcd091", "fields": {"nom_de_la_commune": "DRY", "libell_d_acheminement": "DRY", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45130"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dde6b1d73811d867ee8a543604683a3fd351adf", "fields": {"nom_de_la_commune": "EGRY", "libell_d_acheminement": "EGRY", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45132"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceb38bff93acbc06b11a1252d068a6bd6a712140", "fields": {"nom_de_la_commune": "ERCEVILLE", "libell_d_acheminement": "ERCEVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45135"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0e3d5b99591a6aa5cf56594eab5705ac11cc42", "fields": {"nom_de_la_commune": "ERVAUVILLE", "libell_d_acheminement": "ERVAUVILLE", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45136"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15604b7303af9160737054a7c9885275370b5f6", "fields": {"nom_de_la_commune": "ESCRENNES", "libell_d_acheminement": "ESCRENNES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45137"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87bdc58bde9955f3732ea34b950420345b1f312", "fields": {"nom_de_la_commune": "FAVERELLES", "libell_d_acheminement": "FAVERELLES", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45141"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec4f19d85f3002d5f31941d71baf8abd239ee795", "fields": {"nom_de_la_commune": "FEROLLES", "libell_d_acheminement": "FEROLLES", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45144"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2040ad8616d7cea676d2df6f85560f3a2e3faafc", "fields": {"nom_de_la_commune": "FLEURY LES AUBRAIS", "libell_d_acheminement": "FLEURY LES AUBRAIS", "code_postal": "45400", "coordonnees_gps": [47.9619656993, 1.95515679115], "code_commune_insee": "45147"}, "geometry": {"type": "Point", "coordinates": [1.95515679115, 47.9619656993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464a10993f986be3bff194d1227c0bd987c63295", "fields": {"nom_de_la_commune": "FOUCHEROLLES", "libell_d_acheminement": "FOUCHEROLLES", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45149"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d43e2935aedf100f47d9855369c24167cde11b", "fields": {"nom_de_la_commune": "GAUBERTIN", "libell_d_acheminement": "GAUBERTIN", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45151"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a53f1c337457fbb5dcf7623009b25ed7ef1dcc44", "fields": {"nom_de_la_commune": "GIEN", "libell_d_acheminement": "GIEN", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45155"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1135f4630805b4861445ce4735242c4002bac6b1", "fields": {"code_postal": "45500", "code_commune_insee": "45155", "libell_d_acheminement": "GIEN", "ligne_5": "ARRABLOY", "nom_de_la_commune": "GIEN", "coordonnees_gps": [47.669813444, 2.62052294278]}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0408069a90712aa18595e70f39fd62c82e457e24", "fields": {"nom_de_la_commune": "GIROLLES", "libell_d_acheminement": "GIROLLES", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45156"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2801044097377a38629d572b246a3f8282448e", "fields": {"nom_de_la_commune": "GRANGERMONT", "libell_d_acheminement": "GRANGERMONT", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45159"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04d98423bac7956fad5737a981132075d8872fe", "fields": {"nom_de_la_commune": "GY LES NONAINS", "libell_d_acheminement": "GY LES NONAINS", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45165"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1e48e6c81237cbc5a5cb1025fd2adb52c53b0e", "fields": {"nom_de_la_commune": "INGRE", "libell_d_acheminement": "INGRE", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45169"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d45306d1da6225b143e8f7ffd79c49fa94d643", "fields": {"nom_de_la_commune": "LANGESSE", "libell_d_acheminement": "LANGESSE", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45180"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40033f71acdc5abd1ef1f4c2ba145e339dff853", "fields": {"nom_de_la_commune": "LION EN BEAUCE", "libell_d_acheminement": "LION EN BEAUCE", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45183"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9af41f299dc88e86003baab0754961d7798f74", "fields": {"nom_de_la_commune": "LORCY", "libell_d_acheminement": "LORCY", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45186"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4154ccd29b8d4ba61c7d001a53086133696c9962", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "NANGEVILLE", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f08527cc0ee5b177efc81d61a11832eb0d5161", "fields": {"nom_de_la_commune": "MARCILLY EN VILLETTE", "libell_d_acheminement": "MARCILLY EN VILLETTE", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45193"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416be7b55163a083000082f56bdfb15749067ae0", "fields": {"nom_de_la_commune": "MERINVILLE", "libell_d_acheminement": "MERINVILLE", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45201"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9759f0e19e4df94f7c64aa7f69c9bcf5a715ba7", "fields": {"nom_de_la_commune": "MEZIERES EN GATINAIS", "libell_d_acheminement": "MEZIERES EN GATINAIS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45205"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033d25fffb5b413e57a5c0fbaae687bea94f1e45", "fields": {"nom_de_la_commune": "MONTBARROIS", "libell_d_acheminement": "MONTBARROIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45209"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d985e25ef835b3b9c3bd2283ea5c6f39fcd3838", "fields": {"nom_de_la_commune": "MONTCRESSON", "libell_d_acheminement": "MONTCRESSON", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45212"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d97d6e00a56e0836788fceb8b8bb3146ab7adf", "fields": {"nom_de_la_commune": "LE MOULINET SUR SOLIN", "libell_d_acheminement": "LE MOULINET SUR SOLIN", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45218"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bbfcfaaadcfa76eed9ef17c3c2e0cd08a615954", "fields": {"nom_de_la_commune": "LA NEUVILLE SUR ESSONNE", "libell_d_acheminement": "LA NEUVILLE SUR ESSONNE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45225"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a63855d63978ac05e85481071ca24abec00ac2d", "fields": {"nom_de_la_commune": "NEUVY EN SULLIAS", "libell_d_acheminement": "NEUVY EN SULLIAS", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45226"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93fa4519f995608dcc6249fcc0727b5d426e8e6", "fields": {"nom_de_la_commune": "OISON", "libell_d_acheminement": "OISON", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45231"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef081b27799a9988fd82f9fe3934b6556b0325db", "fields": {"nom_de_la_commune": "ORLEANS", "libell_d_acheminement": "ORLEANS", "code_postal": "45000", "coordonnees_gps": [47.8826248233, 1.91635582903], "code_commune_insee": "45234"}, "geometry": {"type": "Point", "coordinates": [1.91635582903, 47.8826248233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee874a4ab13487c54c2c33b3c960a32100854c9", "fields": {"nom_de_la_commune": "OUTARVILLE", "libell_d_acheminement": "OUTARVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45240"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45a4c97e182e1c6f70d7687b08ab1cbda23fff2", "fields": {"nom_de_la_commune": "OUZOUER DES CHAMPS", "libell_d_acheminement": "OUZOUER DES CHAMPS", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45242"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb55763cb89cd59f055e0573e4ffeccc0d9caf9", "fields": {"nom_de_la_commune": "PREFONTAINES", "libell_d_acheminement": "PREFONTAINES", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45255"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede1a4464ac6b25d1206941692e3b7b8b19cfdb4", "fields": {"nom_de_la_commune": "ST CYR EN VAL", "libell_d_acheminement": "ST CYR EN VAL", "code_postal": "45590", "coordonnees_gps": [47.8147392443, 1.95993704937], "code_commune_insee": "45272"}, "geometry": {"type": "Point", "coordinates": [1.95993704937, 47.8147392443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e507965475b46aa174e79ec6a3ba2e28be9210", "fields": {"nom_de_la_commune": "SOUGY", "libell_d_acheminement": "SOUGY", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45313"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3273ddc11206878c4dd933ee35dc16fb16ebb7", "fields": {"nom_de_la_commune": "TRAINOU", "libell_d_acheminement": "TRAINOU", "code_postal": "45470", "coordonnees_gps": [47.9894256341, 2.08205266737], "code_commune_insee": "45327"}, "geometry": {"type": "Point", "coordinates": [2.08205266737, 47.9894256341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4645be76927d0dce8658789679d3e221c120ca46", "fields": {"nom_de_la_commune": "VARENNES CHANGY", "libell_d_acheminement": "VARENNES CHANGY", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45332"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6800441f7d3ecee359370f9fe3c6321b4c0675d", "fields": {"nom_de_la_commune": "VILLENEUVE SUR CONIE", "libell_d_acheminement": "VILLENEUVE SUR CONIE", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45341"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0bd7deb0f8c2adf86f0d5f87e8f7041eb1716ef", "fields": {"nom_de_la_commune": "ALBAS", "libell_d_acheminement": "ALBAS", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46001"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8864113edf2d5073c475646c90b428ec166dc3", "fields": {"nom_de_la_commune": "ALBIAC", "libell_d_acheminement": "ALBIAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46002"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673b067dc82b9fde9603895b704c8df738efc6aa", "fields": {"nom_de_la_commune": "ALVIGNAC", "libell_d_acheminement": "ALVIGNAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46003"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d556eb20256806b91d49ee678395be3ed21891", "fields": {"nom_de_la_commune": "AUJOLS", "libell_d_acheminement": "AUJOLS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46010"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03940b6571927ec4b6fdbd800970c57caa4b0482", "fields": {"nom_de_la_commune": "AUTOIRE", "libell_d_acheminement": "AUTOIRE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46011"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066bf86139d42e51f5e47192fda16dd9ba04fef9", "fields": {"nom_de_la_commune": "AYNAC", "libell_d_acheminement": "AYNAC", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46012"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca3c2f4d71feeddec5d1ca2e5ae748a66ca1979", "fields": {"nom_de_la_commune": "BAGNAC SUR CELE", "libell_d_acheminement": "BAGNAC SUR CELE", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46015"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282bb3297a34e94a61d32b7601136bafea22b700", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46017"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61196a3a068029036e95d3cf78b20dfa967695b8", "fields": {"nom_de_la_commune": "LE BASTIT", "libell_d_acheminement": "LE BASTIT", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46018"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1146ca0fd729035cb7307de466ac926d5fd226cb", "fields": {"nom_de_la_commune": "BEAUREGARD", "libell_d_acheminement": "BEAUREGARD", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46020"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e89956a65ae7c81aaddcd16a4ff16c25a7e4c35", "fields": {"nom_de_la_commune": "BEDUER", "libell_d_acheminement": "BEDUER", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46021"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd0f6cece3c92e3592247d78f9e4edc662040f0", "fields": {"nom_de_la_commune": "LE BOULVE", "libell_d_acheminement": "LE BOULVE", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46033"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39d7d2fc331d1cb724eefcfb380a4469b06af58c", "fields": {"nom_de_la_commune": "CABRERETS", "libell_d_acheminement": "CABRERETS", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46040"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fdb6b49f21f6d99a3565f923faf53d7639ffa14", "fields": {"nom_de_la_commune": "CAHORS", "libell_d_acheminement": "CAHORS", "code_postal": "46000", "coordonnees_gps": [44.4507621185, 1.44053357922], "code_commune_insee": "46042"}, "geometry": {"type": "Point", "coordinates": [1.44053357922, 44.4507621185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d0153d7b575631ab21408f036745cf7e1c3944", "fields": {"nom_de_la_commune": "CANIAC DU CAUSSE", "libell_d_acheminement": "CANIAC DU CAUSSE", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46054"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "419a079e520e09f23de2e678e982c09d70bef01d", "fields": {"nom_de_la_commune": "CARNAC ROUFFIAC", "libell_d_acheminement": "CARNAC ROUFFIAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46060"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b71c3fa156e81ab24478d9955b8d7d5e33f2e1e", "fields": {"nom_de_la_commune": "CASTELFRANC", "libell_d_acheminement": "CASTELFRANC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46062"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1a9be6d82c5ff44fe186e5e0c8638b0438ca6f", "fields": {"nom_de_la_commune": "CONCORES", "libell_d_acheminement": "CONCORES", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46072"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238bd39448c7ce920104b40848e37079a0b1dd5d", "fields": {"nom_de_la_commune": "CREGOLS", "libell_d_acheminement": "CREGOLS", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46081"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15463fc62fe59cc303f6ad4dae32f57f6fb9e460", "fields": {"nom_de_la_commune": "FLAUJAC GARE", "libell_d_acheminement": "FLAUJAC GARE", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46104"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dae0793c24197d6b3d8d1088970ce431e14ed84", "fields": {"nom_de_la_commune": "FLOIRAC", "libell_d_acheminement": "FLOIRAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46106"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359fe4470ee677a5523c33990c0e8fda61e94660", "fields": {"nom_de_la_commune": "FOURMAGNAC", "libell_d_acheminement": "FOURMAGNAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46111"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e3952451b0bb20cd4c2f7a7e9e8c2b938daa0b", "fields": {"nom_de_la_commune": "GINDOU", "libell_d_acheminement": "GINDOU", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46120"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ceaa4d655b12298141746e0358d3442b9c82220", "fields": {"nom_de_la_commune": "GRAMAT", "libell_d_acheminement": "GRAMAT", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46128"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d013661b361e43364554cc6d65018225402eb", "fields": {"nom_de_la_commune": "GREZELS", "libell_d_acheminement": "GREZELS", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46130"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293eef83944f9617db4ba88a97bda5b3bef71b7a", "fields": {"nom_de_la_commune": "LABASTIDE DU HAUT MONT", "libell_d_acheminement": "LABASTIDE DU HAUT MONT", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46135"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813c0197e6cc1d9704573c57d7170b09a5687554", "fields": {"nom_de_la_commune": "LANZAC", "libell_d_acheminement": "LANZAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46153"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904fdeb47159905e092aca2871ab1f30fbbad673", "fields": {"nom_de_la_commune": "LEOBARD", "libell_d_acheminement": "LEOBARD", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46169"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2377481cca4bd938bb7413301ec164b5dd761633", "fields": {"nom_de_la_commune": "LOUPIAC", "libell_d_acheminement": "LOUPIAC", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46178"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5797d1c08fa648e92b09bbd22dfd2f8d5847fcba", "fields": {"nom_de_la_commune": "MARCILHAC SUR CELE", "libell_d_acheminement": "MARCILHAC SUR CELE", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46183"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6630cf9e852c1a02f2139274f5e3b35d07fde8", "fields": {"nom_de_la_commune": "MASCLAT", "libell_d_acheminement": "MASCLAT", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46186"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6743d4951bb21a32e711aeb784746ece9424acce", "fields": {"nom_de_la_commune": "MECHMONT", "libell_d_acheminement": "MECHMONT", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46190"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625b3d81583b2bfc3cf052b31a32d6395ae0d795", "fields": {"nom_de_la_commune": "MERCUES", "libell_d_acheminement": "MERCUES", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46191"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad13f0da7ce46206c86847775f9db3e35d3e9fe", "fields": {"nom_de_la_commune": "MIERS", "libell_d_acheminement": "MIERS", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46193"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7e507c3a6cdff5ac42638c9a731f45c30e3267", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "VALPRIONDE", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c80121bdb4e81d80aa36d2e5d1ef6a246b9343", "fields": {"nom_de_la_commune": "NADILLAC", "libell_d_acheminement": "NADILLAC", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46210"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755002eb7d71cd6f809f675e90b81bd29d918c34", "fields": {"nom_de_la_commune": "RYE", "libell_d_acheminement": "RYE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39472"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1b8313a80fe906b072c93017dd7b147cd35628", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "CHEVRY", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3028bb93fefd8194cb335d8d733db5b0049346d1", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "RANCHETTE", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317f05ea57b40301cffba72190ec1f3f1f718999", "fields": {"nom_de_la_commune": "ST CYR MONTMALIN", "libell_d_acheminement": "ST CYR MONTMALIN", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39479"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef47f2f9c137ddb71a73e561d6e0e1dab41b80c6", "fields": {"nom_de_la_commune": "ST LAMAIN", "libell_d_acheminement": "ST LAMAIN", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39486"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3d11a0740a37d6276771764d8fb90919983124", "fields": {"nom_de_la_commune": "ST LUPICIN", "libell_d_acheminement": "ST LUPICIN", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39491"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c905aa36e1454a59c661eda1e4b78aa1231bb65", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39494"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9846ae06629335466b320b915712a908843997e", "fields": {"nom_de_la_commune": "SAIZENAY", "libell_d_acheminement": "SAIZENAY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39497"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de699550089a63701f3887c3c1c94e32dcc91100", "fields": {"nom_de_la_commune": "SALANS", "libell_d_acheminement": "SALANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39498"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1eaa835a3bfe44a10bbb7cae6aab68e408173e6", "fields": {"nom_de_la_commune": "SALIGNEY", "libell_d_acheminement": "SALIGNEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39499"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f08b5603c5ae64ecd696665525a5cd0c9234b1", "fields": {"nom_de_la_commune": "SAVIGNA", "libell_d_acheminement": "SAVIGNA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39506"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "877248d99325e5976ca260c14df801017c420592", "fields": {"nom_de_la_commune": "SERMANGE", "libell_d_acheminement": "SERMANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39513"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d833687141ab39d04b4c753f3e905d6f0304e755", "fields": {"nom_de_la_commune": "SERRE LES MOULIERES", "libell_d_acheminement": "SERRE LES MOULIERES", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39514"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15c29b6a40f9311e1c72ba89f3fe22cc08a081f", "fields": {"nom_de_la_commune": "SUPT", "libell_d_acheminement": "SUPT", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39522"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294a53abc9a6a10ef3ebfaa7a518ff340b46cd94", "fields": {"nom_de_la_commune": "SYAM", "libell_d_acheminement": "SYAM", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39523"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b38aefa99af8f696de94f1dd46adcd9ff278d34", "fields": {"nom_de_la_commune": "VAUX LES ST CLAUDE", "libell_d_acheminement": "VAUX LES ST CLAUDE", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39547"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a303e8fb00c25167c89a3f04d085f958caab725a", "fields": {"nom_de_la_commune": "VAUX SUR POLIGNY", "libell_d_acheminement": "VAUX SUR POLIGNY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39548"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fe8973393fac170a8960ee375db0528802ce36", "fields": {"nom_de_la_commune": "LE VERNOIS", "libell_d_acheminement": "LE VERNOIS", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39553"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a844b62e1e31e7868895f48a1dcd9fdf087e97", "fields": {"nom_de_la_commune": "VERTAMBOZ", "libell_d_acheminement": "VERTAMBOZ", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39556"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a7f32b64af089f0122be056ce145a4161a67b5", "fields": {"nom_de_la_commune": "VILLECHANTRIA", "libell_d_acheminement": "VILLECHANTRIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39564"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f09f3b7d14b476198839ad0f26a95da15431903", "fields": {"nom_de_la_commune": "VILLERSERINE", "libell_d_acheminement": "VILLERSERINE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39568"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935346fedb9bb531c18ceb1379e1148cb211a0bf", "fields": {"nom_de_la_commune": "VILLETTE LES ARBOIS", "libell_d_acheminement": "VILLETTE LES ARBOIS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39572"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "133f6a2f49c2d386378a183d15c0888c63738d5f", "fields": {"nom_de_la_commune": "VITREUX", "libell_d_acheminement": "VITREUX", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39581"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "766e7549e4b59165640aff114391b7ba0e3f8bb1", "fields": {"nom_de_la_commune": "VRIANGE", "libell_d_acheminement": "VRIANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39584"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a731a450069bb1f69fe7d158a2d90b4a1e9cf532", "fields": {"nom_de_la_commune": "AIRE SUR L ADOUR", "libell_d_acheminement": "AIRE SUR L ADOUR", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40001"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3a3dfc489f744b385069908e793137ecfb0d81", "fields": {"nom_de_la_commune": "ANGOUME", "libell_d_acheminement": "ANGOUME", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40003"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1757037e739f9a4b7124de43f76b343338d95ee3", "fields": {"nom_de_la_commune": "ARGELOS", "libell_d_acheminement": "ARGELOS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40007"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9a201f70e7649962ee1dae3a104e1aa5725e83", "fields": {"nom_de_la_commune": "ARTHEZ D ARMAGNAC", "libell_d_acheminement": "ARTHEZ D ARMAGNAC", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40013"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dba6429d843333e2180625762c4aecfcab22583", "fields": {"nom_de_la_commune": "ARX", "libell_d_acheminement": "ARX", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40015"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f8b95e57119c1e4bbc20a139cd1b5d45658179", "fields": {"nom_de_la_commune": "AUDIGNON", "libell_d_acheminement": "AUDIGNON", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40017"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db54678633960869c0393729ae2b2040d5a8b662", "fields": {"nom_de_la_commune": "AUREILHAN", "libell_d_acheminement": "AUREILHAN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40019"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c4ca58d9345ba06bb61364178155210e204142", "fields": {"nom_de_la_commune": "AURICE", "libell_d_acheminement": "AURICE", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40020"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02adef7d1a5c1be61bf83098f9e962194ea1a4d2", "fields": {"nom_de_la_commune": "BAS MAUCO", "libell_d_acheminement": "BAS MAUCO", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40026"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a9a85da50c183aff7e28a3fa0e1eec1f2b1e28", "fields": {"nom_de_la_commune": "BEGAAR", "libell_d_acheminement": "BEGAAR", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40031"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c879314a4be2b71f1d3e93e27affa5a484551b", "fields": {"nom_de_la_commune": "BEYRIES", "libell_d_acheminement": "BEYRIES", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40041"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717449b3077e4d2b78901cbebde6577d997ec609", "fields": {"nom_de_la_commune": "BISCARROSSE", "libell_d_acheminement": "BISCARROSSE", "code_postal": "40600", "coordonnees_gps": [44.4090784689, -1.17737599006], "code_commune_insee": "40046"}, "geometry": {"type": "Point", "coordinates": [-1.17737599006, 44.4090784689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b602154627ad1cf4ca7528c1c089b2a58437a3", "fields": {"nom_de_la_commune": "BOURDALAT", "libell_d_acheminement": "BOURDALAT", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40052"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8525b5d33acb256c60e9c5e91e9380a36729ae76", "fields": {"nom_de_la_commune": "BOURRIOT BERGONCE", "libell_d_acheminement": "BOURRIOT BERGONCE", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40053"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ee21b56112a35f7e393fe11930a4761174c339", "fields": {"nom_de_la_commune": "CAPBRETON", "libell_d_acheminement": "CAPBRETON", "code_postal": "40130", "coordonnees_gps": [43.6325077803, -1.42907501854], "code_commune_insee": "40065"}, "geometry": {"type": "Point", "coordinates": [-1.42907501854, 43.6325077803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23bda126d021f9ef05d4552c0439179921f7aeb", "fields": {"nom_de_la_commune": "CASTELNAU TURSAN", "libell_d_acheminement": "CASTELNAU TURSAN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40072"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e70689c16d8700e019c0df610ff3f28953a2604", "fields": {"nom_de_la_commune": "CAZALIS", "libell_d_acheminement": "CAZALIS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40079"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2f52228573b3da83f2dad0835e5eb4058f5463", "fields": {"nom_de_la_commune": "CLEDES", "libell_d_acheminement": "CLEDES", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40083"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d8b2d7697b53acea12684371c5718d8462f3a5", "fields": {"nom_de_la_commune": "DOAZIT", "libell_d_acheminement": "DOAZIT", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40089"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51964da690d47f81717397e2cdd32e6dc6615573", "fields": {"nom_de_la_commune": "GABARRET", "libell_d_acheminement": "GABARRET", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40102"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298ac6aa7e0586e45a1ab98ab7bca27f972f0603", "fields": {"nom_de_la_commune": "GAMARDE LES BAINS", "libell_d_acheminement": "GAMARDE LES BAINS", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40104"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbd735c8d7cf92d5373bd0b65f493d8829cf971", "fields": {"nom_de_la_commune": "HAUT MAUCO", "libell_d_acheminement": "HAUT MAUCO", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40122"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a713a81bb0ad0570e49237c38950a48500c9b057", "fields": {"nom_de_la_commune": "HONTANX", "libell_d_acheminement": "HONTANX", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40127"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e06b0658508ef0cb347c25ad16d75f408ccf2dc4", "fields": {"nom_de_la_commune": "LACAJUNTE", "libell_d_acheminement": "LACAJUNTE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40136"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64c384228104423d16d43fdddf6fa7a3747bd3f", "fields": {"nom_de_la_commune": "LUCBARDEZ ET BARGUES", "libell_d_acheminement": "LUCBARDEZ ET BARGUES", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40162"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7721bcc05bb6d655338a3c2d7192687fca2fe1ba", "fields": {"nom_de_la_commune": "LUE", "libell_d_acheminement": "LUE", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40163"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1970d2fd96b08cc3df024c955b8f47c1362aaa", "fields": {"nom_de_la_commune": "LUSSAGNET", "libell_d_acheminement": "LUSSAGNET", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40166"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9c875941021347c73af9d7079135bee4b27252", "fields": {"nom_de_la_commune": "MAYLIS", "libell_d_acheminement": "MAYLIS", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40177"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180bc47442e913a7571c0a1c56630bc21b95bf87", "fields": {"nom_de_la_commune": "MIMBASTE", "libell_d_acheminement": "MIMBASTE", "code_postal": "40350", "coordonnees_gps": [43.6178542813, -0.994527077008], "code_commune_insee": "40183"}, "geometry": {"type": "Point", "coordinates": [-0.994527077008, 43.6178542813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5160297e5b922203cc4b78d9de956b3381bdd2f", "fields": {"nom_de_la_commune": "MONGET", "libell_d_acheminement": "MONGET", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40189"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda9e6ece42880786cd21dd66a032a146bfde3f7", "fields": {"nom_de_la_commune": "MORGANX", "libell_d_acheminement": "MORGANX", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40198"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2ea81007e0336c2aabf2448e638db504dc6ce5", "fields": {"nom_de_la_commune": "MOUSTEY", "libell_d_acheminement": "MOUSTEY", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40200"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73a8802449c82563ea977ce60f31705d6e8c03f", "fields": {"nom_de_la_commune": "NERBIS", "libell_d_acheminement": "NERBIS", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40204"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead266a869dfcf7616424c9a4855c662fc691430", "fields": {"nom_de_la_commune": "ORIST", "libell_d_acheminement": "ORIST", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40211"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65dcfe1143b2b8ad0c7aa5aa75c814a74540457f", "fields": {"nom_de_la_commune": "OUSSE SUZAN", "libell_d_acheminement": "OUSSE SUZAN", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40215"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976be9a92daa8814bfc0201afb3dfe2cb58a09fc", "fields": {"nom_de_la_commune": "PARENTIS EN BORN", "libell_d_acheminement": "PARENTIS EN BORN", "code_postal": "40160", "coordonnees_gps": [44.3463280206, -1.04252210773], "code_commune_insee": "40217"}, "geometry": {"type": "Point", "coordinates": [-1.04252210773, 44.3463280206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5a1b12718a2a9bdbc1a7adf9d7c976673a5a3a4", "fields": {"nom_de_la_commune": "PERQUIE", "libell_d_acheminement": "PERQUIE", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40221"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df705f98d1bb8500fe8bf1129ca68b9da907d43e", "fields": {"nom_de_la_commune": "PEYREHORADE", "libell_d_acheminement": "PEYREHORADE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40224"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26969a781d0a5c8e403044b76ff437fdade85b8d", "fields": {"nom_de_la_commune": "PIMBO", "libell_d_acheminement": "PIMBO", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40226"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4630f53210edf79496c80f0a01579307499ed29", "fields": {"code_postal": "40410", "code_commune_insee": "40227", "libell_d_acheminement": "PISSOS", "ligne_5": "RICHET", "nom_de_la_commune": "PISSOS", "coordonnees_gps": [44.3533102389, -0.785997047975]}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3b1811d1ac606c84b1a5e37acb3534450f7eb8", "fields": {"nom_de_la_commune": "POUILLON", "libell_d_acheminement": "POUILLON", "code_postal": "40350", "coordonnees_gps": [43.6178542813, -0.994527077008], "code_commune_insee": "40233"}, "geometry": {"type": "Point", "coordinates": [-0.994527077008, 43.6178542813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4742d25e2b3830e96016ee896cf6dec3660811", "fields": {"nom_de_la_commune": "RENUNG", "libell_d_acheminement": "RENUNG", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40240"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568e0b743364c88f54a314b2aab3b94ca9bf0efe", "fields": {"nom_de_la_commune": "RIMBEZ ET BAUDIETS", "libell_d_acheminement": "RIMBEZ ET BAUDIETS", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40242"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c676769408bde91573538735de47b8d06feef81f", "fields": {"nom_de_la_commune": "SABRES", "libell_d_acheminement": "SABRES", "code_postal": "40630", "coordonnees_gps": [44.158641182, -0.72802164635], "code_commune_insee": "40246"}, "geometry": {"type": "Point", "coordinates": [-0.72802164635, 44.158641182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f8ed500a8de70802921c166b9b958f98aa8146", "fields": {"nom_de_la_commune": "ST ANDRE DE SEIGNANX", "libell_d_acheminement": "ST ANDRE DE SEIGNANX", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40248"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ff746ed3923fd76a8c86d927109aef687db82b3", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40249"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30793dc3bc07f285e5747d417bd7aefdbc881315", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40250"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1558e22c065478e2ef27ec39bdc87aae5fb53cd2", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40252"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c0f11779576acddec34b4e3bafc8fc97435866", "fields": {"nom_de_la_commune": "ST ETIENNE D ORTHE", "libell_d_acheminement": "ST ETIENNE D ORTHE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40256"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7d9eb8ea48c11414641d543e3543af256f9a9d", "fields": {"nom_de_la_commune": "STE EULALIE EN BORN", "libell_d_acheminement": "STE EULALIE EN BORN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40257"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc058c22f250d0946eb698b8b372cb970b07b627", "fields": {"nom_de_la_commune": "ST PIERRE DU MONT", "libell_d_acheminement": "ST PIERRE DU MONT", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40281"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c48b6c3811b91617c73140483cf866e0ca0a90", "fields": {"nom_de_la_commune": "ST VINCENT DE PAUL", "libell_d_acheminement": "ST VINCENT DE PAUL", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40283"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62787741def4888af9690cf96bd97c011a9c65c", "fields": {"nom_de_la_commune": "ST YAGUEN", "libell_d_acheminement": "ST YAGUEN", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40285"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd0873cc895fa0c2ff424e7dd678ce22a056b0e", "fields": {"nom_de_la_commune": "SARRAZIET", "libell_d_acheminement": "SARRAZIET", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40289"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e877ac452578338e07fed2c42c4234bfc8d6a9a", "fields": {"nom_de_la_commune": "SAUBION", "libell_d_acheminement": "SAUBION", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40291"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e933c35b825a2cba59f1fa887b995583b05b0cc5", "fields": {"nom_de_la_commune": "SAUBUSSE", "libell_d_acheminement": "SAUBUSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40293"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fee4ea534dabceeaf3392e09efe52c2acfda331", "fields": {"nom_de_la_commune": "SAUGNACQ ET MURET", "libell_d_acheminement": "SAUGNACQ ET MURET", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40295"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97315e117724292b6b67daab75e652ebab46d9c", "fields": {"nom_de_la_commune": "SERRESLOUS ET ARRIBANS", "libell_d_acheminement": "SERRESLOUS ET ARRIBANS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40299"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73fb6ce0695b5fef3688e8921a6cfb3ece8a4ef8", "fields": {"nom_de_la_commune": "SIEST", "libell_d_acheminement": "SIEST", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40301"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e2b6004a98d30c2655f1fadc850d8c41fa47d0", "fields": {"nom_de_la_commune": "TARNOS", "libell_d_acheminement": "TARNOS", "code_postal": "40220", "coordonnees_gps": [43.5368571138, -1.46590189188], "code_commune_insee": "40312"}, "geometry": {"type": "Point", "coordinates": [-1.46590189188, 43.5368571138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca35e29aa9dfacf85e03a3085a7277e957119fb", "fields": {"nom_de_la_commune": "TERCIS LES BAINS", "libell_d_acheminement": "TERCIS LES BAINS", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40314"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e712f27df8b456f29338ae1cc59c454ce81d9953", "fields": {"nom_de_la_commune": "TETHIEU", "libell_d_acheminement": "TETHIEU", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40315"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76deed8084b1d2900e0c73c4961b1c3c04b4b48e", "fields": {"nom_de_la_commune": "TILH", "libell_d_acheminement": "TILH", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40316"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16af68561391df16b660196f13606fdbeb878fd2", "fields": {"nom_de_la_commune": "TOULOUZETTE", "libell_d_acheminement": "TOULOUZETTE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40318"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82600df10ea6af60caa2a5d15173d45bad0a5d9", "fields": {"nom_de_la_commune": "YCHOUX", "libell_d_acheminement": "YCHOUX", "code_postal": "40160", "coordonnees_gps": [44.3463280206, -1.04252210773], "code_commune_insee": "40332"}, "geometry": {"type": "Point", "coordinates": [-1.04252210773, 44.3463280206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fffd106e175cc4397b8a235e7f9d01ef6ade84b1", "fields": {"nom_de_la_commune": "YZOSSE", "libell_d_acheminement": "YZOSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40334"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf3eff84457289f031f058c3eb6b9ebdbd8adc6", "fields": {"nom_de_la_commune": "ARTINS", "libell_d_acheminement": "ARTINS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41004"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d6a7a17a251f65c3b500727cc3ecc5fbe1119d", "fields": {"nom_de_la_commune": "ARVILLE", "libell_d_acheminement": "ARVILLE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41005"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a2a9d23aaa0016da7141cabb6823a39d566652", "fields": {"nom_de_la_commune": "AVARAY", "libell_d_acheminement": "AVARAY", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41008"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1905569d81d25f7f4f110f95805efcc0330dd901", "fields": {"nom_de_la_commune": "BAUZY", "libell_d_acheminement": "BAUZY", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41013"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba9c4e0ac6f75d4b3953518e710ba1ee91fd223", "fields": {"nom_de_la_commune": "BRACIEUX", "libell_d_acheminement": "BRACIEUX", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41025"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab28c8ff0e9d340a011402fd2a3cf4a334ad7a2", "fields": {"nom_de_la_commune": "BREVAINVILLE", "libell_d_acheminement": "BREVAINVILLE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41026"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140b7e359967f1b31cd0b565951269b4bb983e3a", "fields": {"nom_de_la_commune": "BUSLOUP", "libell_d_acheminement": "BUSLOUP", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41028"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043f86bb29b4eb96857851ee38c33d5624309ba5", "fields": {"nom_de_la_commune": "CELLETTES", "libell_d_acheminement": "CELLETTES", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41031"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f716e405686438311c635fef5e75ddc9dccc61c1", "fields": {"nom_de_la_commune": "CHAMPIGNY EN BEAUCE", "libell_d_acheminement": "CHAMPIGNY EN BEAUCE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41035"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89510718ccfa3516ceda4f942f34b310610a0826", "fields": {"nom_de_la_commune": "LA CHAPELLE VENDOMOISE", "libell_d_acheminement": "LA CHAPELLE VENDOMOISE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41040"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cceddbfdc708cf7e36f0cb33f923727a4179455", "fields": {"code_postal": "44420", "code_commune_insee": "44097", "libell_d_acheminement": "MESQUER", "ligne_5": "QUIMIAC", "nom_de_la_commune": "MESQUER", "coordonnees_gps": [47.373686193, -2.48987078247]}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e279218abb6ce07a0595a52ae1682cd89e22d19", "fields": {"nom_de_la_commune": "MOISDON LA RIVIERE", "libell_d_acheminement": "MOISDON LA RIVIERE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44099"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064a5fe34cc980e96371215ed0926242695f9be2", "fields": {"nom_de_la_commune": "LA MONTAGNE", "libell_d_acheminement": "LA MONTAGNE", "code_postal": "44620", "coordonnees_gps": [47.1849440556, -1.6845203285], "code_commune_insee": "44101"}, "geometry": {"type": "Point", "coordinates": [-1.6845203285, 47.1849440556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4303f5fa2aacc5d6e1f15498921c3dab71f6758", "fields": {"nom_de_la_commune": "MONTRELAIS", "libell_d_acheminement": "MONTRELAIS", "code_postal": "44370", "coordonnees_gps": [47.4023701755, -1.01236308659], "code_commune_insee": "44104"}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a422213cfeed5c2a1376b19eb0ef1ae0ff166f", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44200", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3868cbe3e558fbca0d9a3deeec464c6ed33cab4", "fields": {"nom_de_la_commune": "NOZAY", "libell_d_acheminement": "NOZAY", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44113"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199b02cab61485a6580b48ace876f0a47ccc5777", "fields": {"nom_de_la_commune": "PAIMBOEUF", "libell_d_acheminement": "PAIMBOEUF", "code_postal": "44560", "coordonnees_gps": [47.2711622125, -2.08332725108], "code_commune_insee": "44116"}, "geometry": {"type": "Point", "coordinates": [-2.08332725108, 47.2711622125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26aa4e78a8c37b325d28298b57edc3b1ece85f07", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44124"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02905b618c505038cc9809ddbf3328c1d2ccff47", "fields": {"nom_de_la_commune": "LA PLANCHE", "libell_d_acheminement": "LA PLANCHE", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44127"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03934813fe006a8a8a168c03ddb685e9a616f0d2", "fields": {"code_postal": "44210", "code_commune_insee": "44131", "libell_d_acheminement": "PORNIC", "ligne_5": "STE MARIE", "nom_de_la_commune": "PORNIC", "coordonnees_gps": [47.122206427, -2.05186337229]}, "geometry": {"type": "Point", "coordinates": [-2.05186337229, 47.122206427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00607bf20179916d5024defdbae8418d0f0eff61", "fields": {"nom_de_la_commune": "PORNICHET", "libell_d_acheminement": "PORNICHET", "code_postal": "44380", "coordonnees_gps": [47.2620004843, -2.31447331185], "code_commune_insee": "44132"}, "geometry": {"type": "Point", "coordinates": [-2.31447331185, 47.2620004843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d9a320ec2e0a7b0d98c1d7796179c92ac5bc74", "fields": {"nom_de_la_commune": "PORT ST PERE", "libell_d_acheminement": "PORT ST PERE", "code_postal": "44710", "coordonnees_gps": [47.1414628863, -1.75847032416], "code_commune_insee": "44133"}, "geometry": {"type": "Point", "coordinates": [-1.75847032416, 47.1414628863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297971685b6c3560e803402f3fa518efc01ec4ed", "fields": {"nom_de_la_commune": "PREFAILLES", "libell_d_acheminement": "PREFAILLES", "code_postal": "44770", "coordonnees_gps": [47.1411450003, -2.19113263493], "code_commune_insee": "44136"}, "geometry": {"type": "Point", "coordinates": [-2.19113263493, 47.1411450003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799153125e506825eee2d4a357396cd5d87a03ef", "fields": {"nom_de_la_commune": "LA REGRIPPIERE", "libell_d_acheminement": "LA REGRIPPIERE", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44140"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49d535f64e0620899e4748fadb4c81b3c5ab3ad", "fields": {"nom_de_la_commune": "REMOUILLE", "libell_d_acheminement": "REMOUILLE", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44142"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43b8f107fcfa313b50e29d85c9674227e8c5bc61", "fields": {"code_postal": "44400", "code_commune_insee": "44143", "libell_d_acheminement": "REZE", "ligne_5": "PONT ROUSSEAU", "nom_de_la_commune": "REZE", "coordonnees_gps": [47.176499243, -1.54979300458]}, "geometry": {"type": "Point", "coordinates": [-1.54979300458, 47.176499243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a0861ace1938e2d4d7d3d3e9c78c57643dc658", "fields": {"nom_de_la_commune": "ST BREVIN LES PINS", "libell_d_acheminement": "ST BREVIN LES PINS", "code_postal": "44250", "coordonnees_gps": [47.2472409804, -2.15082822089], "code_commune_insee": "44154"}, "geometry": {"type": "Point", "coordinates": [-2.15082822089, 47.2472409804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a37b2a462d5659e778043515f095d7f7b103e7", "fields": {"code_postal": "44250", "code_commune_insee": "44154", "libell_d_acheminement": "ST BREVIN LES PINS", "ligne_5": "MINDIN", "nom_de_la_commune": "ST BREVIN LES PINS", "coordonnees_gps": [47.2472409804, -2.15082822089]}, "geometry": {"type": "Point", "coordinates": [-2.15082822089, 47.2472409804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86aaca0e25dc914a6ab4ee4bf5db21231d7b9de", "fields": {"nom_de_la_commune": "ST ETIENNE DE MER MORTE", "libell_d_acheminement": "ST ETIENNE DE MER MORTE", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44157"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fb8e904f44009c31ae3c5fdcd4b5e8f7ba7d3c", "fields": {"nom_de_la_commune": "ST JEAN DE BOISEAU", "libell_d_acheminement": "ST JEAN DE BOISEAU", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44166"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab6c572b24e4d27f303f683bef42f7f49f58185c", "fields": {"nom_de_la_commune": "STE LUCE SUR LOIRE", "libell_d_acheminement": "STE LUCE SUR LOIRE", "code_postal": "44980", "coordonnees_gps": [47.2534245812, -1.47264031933], "code_commune_insee": "44172"}, "geometry": {"type": "Point", "coordinates": [-1.47264031933, 47.2534245812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afde85160ea6ea3c59b041250d4a04fb8eebbec", "fields": {"nom_de_la_commune": "ST LUMINE DE COUTAIS", "libell_d_acheminement": "ST LUMINE DE COUTAIS", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44174"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c32db92d99618c69bdc3396068212c21e455204", "fields": {"nom_de_la_commune": "ST LYPHARD", "libell_d_acheminement": "ST LYPHARD", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44175"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "594a1cbd76d4096d8d231f3adef7341abf943368", "fields": {"nom_de_la_commune": "ST MARS DU DESERT", "libell_d_acheminement": "ST MARS DU DESERT", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44179"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc917db41d03fb78d06eb3c3bd5100fc09ba4578", "fields": {"nom_de_la_commune": "ST MARS LA JAILLE", "libell_d_acheminement": "ST MARS LA JAILLE", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44180"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7663af8ff67edc2d1a0a9995c2a2f1bcb8fdfca", "fields": {"nom_de_la_commune": "ST MICHEL CHEF CHEF", "libell_d_acheminement": "ST MICHEL CHEF CHEF", "code_postal": "44730", "coordonnees_gps": [47.1753240266, -2.12708707959], "code_commune_insee": "44182"}, "geometry": {"type": "Point", "coordinates": [-2.12708707959, 47.1753240266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e52bf7a462e3a9ee5470804303812313b4468c3", "fields": {"nom_de_la_commune": "SOUDAN", "libell_d_acheminement": "SOUDAN", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44199"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b70e1458e81ecf800a59851efb61da58c28ec255", "fields": {"nom_de_la_commune": "SOULVACHE", "libell_d_acheminement": "SOULVACHE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44200"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5903cde49479276d222f59317c3bc63a0234b5cb", "fields": {"nom_de_la_commune": "TEILLE", "libell_d_acheminement": "TEILLE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44202"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fcd6831012002b0dab52f2ea891a84ef6c695f", "fields": {"nom_de_la_commune": "LE TEMPLE DE BRETAGNE", "libell_d_acheminement": "LE TEMPLE DE BRETAGNE", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44203"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3f261db8cd5c48e9f0296c5f09e8e0f9ce08fb", "fields": {"code_postal": "44420", "code_commune_insee": "44211", "libell_d_acheminement": "LA TURBALLE", "ligne_5": "TRESCALAN", "nom_de_la_commune": "LA TURBALLE", "coordonnees_gps": [47.373686193, -2.48987078247]}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc6777a1dca1acf8d535e965efb63608151d6b09", "fields": {"nom_de_la_commune": "VUE", "libell_d_acheminement": "VUE", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44220"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f147d10b316ec56aeef268b2475ba8a27d25e5", "fields": {"nom_de_la_commune": "LA GRIGONNAIS", "libell_d_acheminement": "LA GRIGONNAIS", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44224"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed26e4975daddf4aa4c8cff79cd9e0da6a6639c9", "fields": {"nom_de_la_commune": "AILLANT SUR MILLERON", "libell_d_acheminement": "AILLANT SUR MILLERON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45002"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529b0907ac6a4dc0d5ba8b4539093d458f22086f", "fields": {"nom_de_la_commune": "AMILLY", "libell_d_acheminement": "AMILLY", "code_postal": "45200", "coordonnees_gps": [48.0036568049, 2.78095949035], "code_commune_insee": "45004"}, "geometry": {"type": "Point", "coordinates": [2.78095949035, 48.0036568049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b704e9228ee86b86188157febefc74c6f6c304", "fields": {"nom_de_la_commune": "ARTENAY", "libell_d_acheminement": "ARTENAY", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45008"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a004a23aea549c838d44edf908da2dd4d3277df8", "fields": {"nom_de_la_commune": "ASCHERES LE MARCHE", "libell_d_acheminement": "ASCHERES LE MARCHE", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45009"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0abce6a8c4011b597482c5a956fd43ecc7a53d9", "fields": {"nom_de_la_commune": "BACCON", "libell_d_acheminement": "BACCON", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45019"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72840e50beeb101be2119c92271cc837de972a5", "fields": {"nom_de_la_commune": "BEAUGENCY", "libell_d_acheminement": "BEAUGENCY", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45028"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3d38e865a3f47ca3152d4097c9c86eeaf8d895", "fields": {"nom_de_la_commune": "LE BIGNON MIRABEAU", "libell_d_acheminement": "LE BIGNON MIRABEAU", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45032"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9716e115f7ec3b862ab61edcb6b18208627f9af", "fields": {"code_postal": "45340", "code_commune_insee": "45035", "libell_d_acheminement": "BOISCOMMUN", "ligne_5": "CHEMAULT", "nom_de_la_commune": "BOISCOMMUN", "coordonnees_gps": [48.0647487968, 2.39617529456]}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b854121ef23f64c5ea23c047970e785b5559bc22", "fields": {"code_postal": "45290", "code_commune_insee": "45036", "libell_d_acheminement": "BOISMORAND", "ligne_5": "LES BEZARDS", "nom_de_la_commune": "BOISMORAND", "coordonnees_gps": [47.8346228413, 2.67975778756]}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e05c589f84a7bf39c5871fd17bdaf9a994753f0", "fields": {"nom_de_la_commune": "BORDEAUX EN GATINAIS", "libell_d_acheminement": "BORDEAUX EN GATINAIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45041"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df96e2cb4d221d436b2eadde9d188099965c9275", "fields": {"nom_de_la_commune": "BRICY", "libell_d_acheminement": "BRICY", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45055"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8684089d395b831720c2248b1072a7c97596b705", "fields": {"code_postal": "45300", "code_commune_insee": "45065", "libell_d_acheminement": "CESARVILLE DOSSAINVILLE", "ligne_5": "DOSSAINVILLE", "nom_de_la_commune": "CESARVILLE DOSSAINVILLE", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8108a8903ee9e218024a60503324e5b7e3d7382", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR AVEYRON", "libell_d_acheminement": "LA CHAPELLE SUR AVEYRON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45077"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d1d218aa4b235cb8a30360c02e192acdad144de", "fields": {"nom_de_la_commune": "LE CHARME", "libell_d_acheminement": "LE CHARME", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45079"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7fb25fb2d1a667fb5bbb860d3fc17987861d36", "fields": {"nom_de_la_commune": "CORTRAT", "libell_d_acheminement": "CORTRAT", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45105"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b518fee56c628e552f4d7b3044acfea32588c80", "fields": {"nom_de_la_commune": "COUDROY", "libell_d_acheminement": "COUDROY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45107"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287ea034734abae5c9edd0efe633c08fb615e2ef", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45110"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdda871e8710c819736d840fd16ab109481b3cfc", "fields": {"nom_de_la_commune": "COURTENAY", "libell_d_acheminement": "COURTENAY", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45115"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "171ef2348547083c285abcd8da5747e014ac183c", "fields": {"nom_de_la_commune": "DAMPIERRE EN BURLY", "libell_d_acheminement": "DAMPIERRE EN BURLY", "code_postal": "45570", "coordonnees_gps": [47.7713399136, 2.51487040381], "code_commune_insee": "45122"}, "geometry": {"type": "Point", "coordinates": [2.51487040381, 47.7713399136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0d9a58168e6b836b2ed285bb4c2a525708ddd8", "fields": {"nom_de_la_commune": "DARVOY", "libell_d_acheminement": "DARVOY", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45123"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b404ed2604f135e5fdc1c2de42ea00c5befa6141", "fields": {"nom_de_la_commune": "DOUCHY MONTCORBON", "libell_d_acheminement": "DOUCHY MONTCORBON", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45129"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8204abdbc7aab072537c1039c08e11fd06e9ed37", "fields": {"nom_de_la_commune": "FAY AUX LOGES", "libell_d_acheminement": "FAY AUX LOGES", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45142"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac709dd3164510707851ab3c5c254e0a9038f78", "fields": {"nom_de_la_commune": "FONTENAY SUR LOING", "libell_d_acheminement": "FONTENAY SUR LOING", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45148"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b88cfc38bd636b73b16f18ac8ab41e1da8998a", "fields": {"code_postal": "45300", "code_commune_insee": "45162", "libell_d_acheminement": "GUIGNEVILLE", "ligne_5": "SEBOUVILLE", "nom_de_la_commune": "GUIGNEVILLE", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c1ded8554253322ee2bc9753218fe2838741b8", "fields": {"nom_de_la_commune": "GUILLY", "libell_d_acheminement": "GUILLY", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45164"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce33754bf015b67a7b3e46858fed1592b9a7295", "fields": {"nom_de_la_commune": "JARGEAU", "libell_d_acheminement": "JARGEAU", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45173"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf006a46d67af7a092363abb98a6576ea4024f6", "fields": {"nom_de_la_commune": "JOUY LE POTIER", "libell_d_acheminement": "JOUY LE POTIER", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45175"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf8f8528701e81d263c74b271aa8da962f03c85", "fields": {"nom_de_la_commune": "LAAS", "libell_d_acheminement": "LAAS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45177"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d267bc198edb861f6e558e3136b59f86efbe214", "fields": {"nom_de_la_commune": "LAILLY EN VAL", "libell_d_acheminement": "LAILLY EN VAL", "code_postal": "45740", "coordonnees_gps": [47.746544398, 1.71571419606], "code_commune_insee": "45179"}, "geometry": {"type": "Point", "coordinates": [1.71571419606, 47.746544398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0b2a4b7011fabcae850911730a6a7e82f40537", "fields": {"nom_de_la_commune": "LORRIS", "libell_d_acheminement": "LORRIS", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45187"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1a209b32ef4fdbc31ece70bacbc504c56b82f7", "fields": {"nom_de_la_commune": "LOURY", "libell_d_acheminement": "LOURY", "code_postal": "45470", "coordonnees_gps": [47.9894256341, 2.08205266737], "code_commune_insee": "45188"}, "geometry": {"type": "Point", "coordinates": [2.08205266737, 47.9894256341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa24a82f32fdf3ce1823269c65b1089a35c1b2f9", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "MALESHERBES", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c09f93fc7f4432cec4d2b0f45e4c0808b359d2a", "fields": {"nom_de_la_commune": "MARDIE", "libell_d_acheminement": "MARDIE", "code_postal": "45430", "coordonnees_gps": [47.8949996525, 2.04744187127], "code_commune_insee": "45194"}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fea18d0a2c9cd85b611207b71136869577e281b", "fields": {"code_postal": "45430", "code_commune_insee": "45194", "libell_d_acheminement": "MARDIE", "ligne_5": "PONT AUX MOINES", "nom_de_la_commune": "MARDIE", "coordonnees_gps": [47.8949996525, 2.04744187127]}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7d9dddd8f19ba072a7056816813b77fe7f1f7fc", "fields": {"nom_de_la_commune": "MAREAU AUX PRES", "libell_d_acheminement": "MAREAU AUX PRES", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45196"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0667d4ea7e3cbc0db85cba1dfe0e7bd805c12faf", "fields": {"nom_de_la_commune": "MELLEROY", "libell_d_acheminement": "MELLEROY", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45199"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7b64a01ed9c180372fec1cc9fe49237c8a32ab", "fields": {"nom_de_la_commune": "MESSAS", "libell_d_acheminement": "MESSAS", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45202"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69cb274a104345b28ea9e45039a8b70375a7e1a5", "fields": {"nom_de_la_commune": "MEZIERES LEZ CLERY", "libell_d_acheminement": "MEZIERES LEZ CLERY", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45204"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9978ad8672362c0ddbdf1161823d9ea48bfcf88", "fields": {"nom_de_la_commune": "MIGNERES", "libell_d_acheminement": "MIGNERES", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45206"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b491ddccd6739244a9fe11bac48168af924d33e8", "fields": {"nom_de_la_commune": "MIGNERETTE", "libell_d_acheminement": "MIGNERETTE", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45207"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4261469adf4a1d1a865652defd731eced4fcc44e", "fields": {"nom_de_la_commune": "NANCRAY SUR RIMARDE", "libell_d_acheminement": "NANCRAY SUR RIMARDE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45220"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00b9ddb713bcfd5d71dae89322cdad58d0779bf", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45230"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a972b11ca143a84777090e007d6bfde3895f263", "fields": {"nom_de_la_commune": "OLIVET", "libell_d_acheminement": "OLIVET", "code_postal": "45160", "coordonnees_gps": [47.8140032252, 1.87690042129], "code_commune_insee": "45232"}, "geometry": {"type": "Point", "coordinates": [1.87690042129, 47.8140032252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f155fa84f08814472890932498cf40b2bcdfd5", "fields": {"nom_de_la_commune": "OUGNY", "libell_d_acheminement": "OUGNY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58202"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e69c7c3a817c2e03eef7dcf6d1a860166ab99d", "fields": {"nom_de_la_commune": "OULON", "libell_d_acheminement": "OULON", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58203"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c795ce9af050521c9ab0c62f8aa0afb6552fb40", "fields": {"nom_de_la_commune": "PARIGNY LA ROSE", "libell_d_acheminement": "PARIGNY LA ROSE", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58206"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fd99f2e57c09ee931276ef978e0b43e9aea5dc", "fields": {"nom_de_la_commune": "PARIGNY LES VAUX", "libell_d_acheminement": "PARIGNY LES VAUX", "code_postal": "58320", "coordonnees_gps": [47.0887291303, 3.1067226135], "code_commune_insee": "58207"}, "geometry": {"type": "Point", "coordinates": [3.1067226135, 47.0887291303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fe8871a1921606423bc27b3ca976be74f9a340", "fields": {"nom_de_la_commune": "POISEUX", "libell_d_acheminement": "POISEUX", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58212"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f463a83981702d87ec3029891c15a11607af4706", "fields": {"nom_de_la_commune": "POUGUES LES EAUX", "libell_d_acheminement": "POUGUES LES EAUX", "code_postal": "58320", "coordonnees_gps": [47.0887291303, 3.1067226135], "code_commune_insee": "58214"}, "geometry": {"type": "Point", "coordinates": [3.1067226135, 47.0887291303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce219c925059c83fcc5a42cf0a9c7a1870b8bd60", "fields": {"nom_de_la_commune": "RUAGES", "libell_d_acheminement": "RUAGES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58224"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d868ea1edf76c06208e512c90385c10cd5419576", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58226"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd984496cc41e4f5fd608d3e4304865827c6344", "fields": {"nom_de_la_commune": "ST BENIN DES BOIS", "libell_d_acheminement": "ST BENIN DES BOIS", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58233"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d4ea737f7292f3be1aec5a3090405897aeacd1", "fields": {"nom_de_la_commune": "STE COLOMBE DES BOIS", "libell_d_acheminement": "STE COLOMBE DES BOIS", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58236"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1367d85dc0678fa7085857fba39bc4550f1f11a1", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58237"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9c93c87670fcc27cbecd87431f0382647c2dc2", "fields": {"nom_de_la_commune": "ST JEAN AUX AMOGNES", "libell_d_acheminement": "ST JEAN AUX AMOGNES", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58247"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec366b4734c4773eea7cba2f8ea91ff0f6b932d6", "fields": {"nom_de_la_commune": "ST OUEN SUR LOIRE", "libell_d_acheminement": "ST OUEN SUR LOIRE", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58258"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7edac308d0835672462f31d6cb607d7b557a9b6", "fields": {"nom_de_la_commune": "ST PARIZE EN VIRY", "libell_d_acheminement": "ST PARIZE EN VIRY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58259"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c682290d84b64aca38e033fedce24f2bbdc227", "fields": {"nom_de_la_commune": "ST PIERRE LE MOUTIER", "libell_d_acheminement": "ST PIERRE LE MOUTIER", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58264"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f974866ac525d3ef02ac8af91f4164864d49972e", "fields": {"nom_de_la_commune": "ST QUENTIN SUR NOHAIN", "libell_d_acheminement": "ST QUENTIN SUR NOHAIN", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58265"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bff17c076d4f3b63196abdf6010231df964ea9b2", "fields": {"nom_de_la_commune": "ST SEINE", "libell_d_acheminement": "ST SEINE", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58268"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f85445e85ad19fa7dc17fce291e01f9074d3d4", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58269"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e98ade3c9485d6692fea81107a05b241d11e30", "fields": {"nom_de_la_commune": "SOUGY SUR LOIRE", "libell_d_acheminement": "SOUGY SUR LOIRE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58280"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80db614e4b5f3438bd7ba2997295c22c331d2135", "fields": {"nom_de_la_commune": "SURGY", "libell_d_acheminement": "SURGY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58282"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f91083a27b936762c80da53ba3ffc4f996e36e", "fields": {"nom_de_la_commune": "TALON", "libell_d_acheminement": "TALON", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58284"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ed73e0229fee50b5112ccbec7975ef05f6501d", "fields": {"nom_de_la_commune": "TANNAY", "libell_d_acheminement": "TANNAY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58286"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6795a97ad1486d1e9b067ca5561dd8ac3f5b0e", "fields": {"nom_de_la_commune": "TOURY LURCY", "libell_d_acheminement": "TOURY LURCY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58293"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a606de2c022358d50c1edb81378de8e9e7bd27e", "fields": {"nom_de_la_commune": "TOURY SUR JOUR", "libell_d_acheminement": "TOURY SUR JOUR", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58294"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1c850553ff7e22e395b46dac64e2dabbd53733", "fields": {"nom_de_la_commune": "ST HELEN", "libell_d_acheminement": "ST HELEN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22299"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d00cd6657dff6518c6aea1593c86dabfbc275d5", "fields": {"nom_de_la_commune": "ST HERVE", "libell_d_acheminement": "ST HERVE", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22300"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d593b0245861a41e32fe371ca3719bfcfddad7bc", "fields": {"nom_de_la_commune": "ST JOUAN DE L ISLE", "libell_d_acheminement": "ST JOUAN DE L ISLE", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22305"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bd212faaeb19cf3ad0b9966d64e0d42a4f41d9a", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22310"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3db7c1684f0b867cf7f0413b249d247daa83c0f8", "fields": {"nom_de_la_commune": "ST MAYEUX", "libell_d_acheminement": "ST MAYEUX", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22316"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa6f6e1ad25b3d2cc54f7bfd805cb69c16a42fc", "fields": {"nom_de_la_commune": "ST MELOIR DES BOIS", "libell_d_acheminement": "ST MELOIR DES BOIS", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22317"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5123734ce5c17c9101698fe9afae08d40faa3025", "fields": {"nom_de_la_commune": "ST MICHEL EN GREVE", "libell_d_acheminement": "ST MICHEL EN GREVE", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22319"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f48061218bbdd940f08f9570741d25f3530bdd3", "fields": {"nom_de_la_commune": "ST RIEUL", "libell_d_acheminement": "ST RIEUL", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22326"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c142d179abc7f51815c8fe246ceb0e86533f12c2", "fields": {"code_postal": "22100", "code_commune_insee": "22327", "libell_d_acheminement": "ST SAMSON SUR RANCE", "ligne_5": "LA HISSE ST SAMSON", "nom_de_la_commune": "ST SAMSON SUR RANCE", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71cc678e52d9e6395db973587677aa32c4861187", "fields": {"nom_de_la_commune": "TRAMAIN", "libell_d_acheminement": "TRAMAIN", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22341"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a48813c4685f37e9ae034e915a50b0cabcd62f0", "fields": {"nom_de_la_commune": "TREBRIVAN", "libell_d_acheminement": "TREBRIVAN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22344"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a2a8bafe1e44989a1df8ef27d8212d324564d9", "fields": {"nom_de_la_commune": "TREDIAS", "libell_d_acheminement": "TREDIAS", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22348"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87d0803144352a167a14ba16952b7796600bdbc", "fields": {"nom_de_la_commune": "TREGUEUX", "libell_d_acheminement": "TREGUEUX", "code_postal": "22950", "coordonnees_gps": [48.480585356, -2.74472433795], "code_commune_insee": "22360"}, "geometry": {"type": "Point", "coordinates": [-2.74472433795, 48.480585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6163f6f0b6bd3bafa4db02c1b2e4fb52f55d4947", "fields": {"nom_de_la_commune": "TREGUIER", "libell_d_acheminement": "TREGUIER", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22362"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c49d418650a664accf20493cae4319a7c4d322", "fields": {"nom_de_la_commune": "TRELIVAN", "libell_d_acheminement": "TRELIVAN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22364"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc8f3a81df6b72c05eb5973b51532ce8c94d5d6", "fields": {"nom_de_la_commune": "TREMEUR", "libell_d_acheminement": "TREMEUR", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22369"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279f9fc76a5a55288fdfd31c56c6e14c2b693bf3", "fields": {"nom_de_la_commune": "TREVE", "libell_d_acheminement": "TREVE", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22376"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413cd173f9e683e1efb33f314a6c8b79d3ab73ad", "fields": {"nom_de_la_commune": "TREZENY", "libell_d_acheminement": "TREZENY", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22381"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7781127774ecf59026fae128e03adea07565afe6", "fields": {"nom_de_la_commune": "YVIGNAC LA TOUR", "libell_d_acheminement": "YVIGNAC LA TOUR", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22391"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cf1cf5d177331179ccc5ddff2260cc30117cedc", "fields": {"nom_de_la_commune": "AZERABLES", "libell_d_acheminement": "AZERABLES", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23015"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d96f3dd8f9869a3a4b8483eb11f5fa08ef0206", "fields": {"nom_de_la_commune": "BANIZE", "libell_d_acheminement": "BANIZE", "code_postal": "23120", "coordonnees_gps": [45.9136291884, 2.02913270433], "code_commune_insee": "23016"}, "geometry": {"type": "Point", "coordinates": [2.02913270433, 45.9136291884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743081e902c335268fac1b6a20d7045f29ef9a9d", "fields": {"nom_de_la_commune": "BELLEGARDE EN MARCHE", "libell_d_acheminement": "BELLEGARDE EN MARCHE", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23020"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4521b937d1cc24d052c57fc341a20f7e0c1f2e3", "fields": {"nom_de_la_commune": "LA CELLE DUNOISE", "libell_d_acheminement": "LA CELLE DUNOISE", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23039"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baeea0e13e78e4bd519cb14c9a823c53d577b28", "fields": {"nom_de_la_commune": "CHAVANAT", "libell_d_acheminement": "CHAVANAT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23060"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deac80b802614428ba13db03d8894ea077cbdc8f", "fields": {"nom_de_la_commune": "CHENERAILLES", "libell_d_acheminement": "CHENERAILLES", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23061"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5ce68f0038a58a29a489424e49dd303fad538f", "fields": {"nom_de_la_commune": "CLAIRAVAUX", "libell_d_acheminement": "CLAIRAVAUX", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23063"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32eaa58bd478b7cb80cc1d10ae5ead93414cc50", "fields": {"nom_de_la_commune": "LE DONZEIL", "libell_d_acheminement": "LE DONZEIL", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23074"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a0efe0a2f01be2aa4f18ff5359ee4e8e19f51e", "fields": {"nom_de_la_commune": "FELLETIN", "libell_d_acheminement": "FELLETIN", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23079"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f22c837b877d7e59b31137e5a99ebf1965c3d65", "fields": {"nom_de_la_commune": "FONTANIERES", "libell_d_acheminement": "FONTANIERES", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23083"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1d9c40ab81dcf43944cb1cccdbf6daade7fd66", "fields": {"nom_de_la_commune": "GARTEMPE", "libell_d_acheminement": "GARTEMPE", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23088"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef3e4971d85b0c1f8377a0827e56b6d35182b37", "fields": {"nom_de_la_commune": "JOUILLAT", "libell_d_acheminement": "JOUILLAT", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23101"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf9eb8f11d0b107cffe4d005b6d733d37759e8b", "fields": {"nom_de_la_commune": "LEPAUD", "libell_d_acheminement": "LEPAUD", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23106"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5095b7181af0a21fac1cde4a48847e10d2a8f16b", "fields": {"nom_de_la_commune": "LEYRAT", "libell_d_acheminement": "LEYRAT", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23108"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625128b9df4037c10c85ca973c38e8b3d15b415b", "fields": {"nom_de_la_commune": "LINARD", "libell_d_acheminement": "LINARD", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23109"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a05b8bd9e14b24cb12d3f2180af204c56d77124", "fields": {"nom_de_la_commune": "LIZIERES", "libell_d_acheminement": "LIZIERES", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23111"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29342695ab7f1029b196602ca4ea41ea0c014f8", "fields": {"nom_de_la_commune": "MAISON FEYNE", "libell_d_acheminement": "MAISON FEYNE", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23117"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f95bd2da81400bf130275e4585acef2da7d5d4", "fields": {"nom_de_la_commune": "MALLERET", "libell_d_acheminement": "MALLERET", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23119"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd9cf0aa69d4c5d6fec894afc7981e41a343d42", "fields": {"nom_de_la_commune": "LE MAS D ARTIGE", "libell_d_acheminement": "LE MAS D ARTIGE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23125"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d30a26b9aa8d8abe6a35e07d0210c2380a3b7d", "fields": {"nom_de_la_commune": "MERINCHAL", "libell_d_acheminement": "MERINCHAL", "code_postal": "23420", "coordonnees_gps": [45.9083107746, 2.49413853625], "code_commune_insee": "23131"}, "geometry": {"type": "Point", "coordinates": [2.49413853625, 45.9083107746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93bec7506b764009f03cb413ee4087c057d783bb", "fields": {"nom_de_la_commune": "MOURIOUX VIEILLEVILLE", "libell_d_acheminement": "MOURIOUX VIEILLEVILLE", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23137"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30633192e186e71e5e26eb01be7224096eee674", "fields": {"nom_de_la_commune": "MOUTIER ROZEILLE", "libell_d_acheminement": "MOUTIER ROZEILLE", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23140"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d33e73995e7476bef2aa8044725d69ba7da27ca", "fields": {"nom_de_la_commune": "NOTH", "libell_d_acheminement": "NOTH", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23143"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5c7bee19c94d5659ba3c4979924ccc6059fc37", "fields": {"nom_de_la_commune": "LA NOUAILLE", "libell_d_acheminement": "LA NOUAILLE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23144"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "616d690c4df66baa8552460c7a223f55c25eadb1", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23152"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fc531832678cca83d91bd379b7d02efc3ed766", "fields": {"nom_de_la_commune": "PONTARION", "libell_d_acheminement": "PONTARION", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23155"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bf95e16908b4fc7fe128d7a0bc8762a0cf6179", "fields": {"nom_de_la_commune": "LA POUGE", "libell_d_acheminement": "LA POUGE", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23157"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee6f9112ce5ad35a65b3fad3033f406ea45e6a5", "fields": {"nom_de_la_commune": "RETERRE", "libell_d_acheminement": "RETERRE", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23160"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91ef032b71c63126957858a97db230384d6c564", "fields": {"nom_de_la_commune": "SARDENT", "libell_d_acheminement": "SARDENT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23168"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb4afa7d5ea27addac5ab482ec46c0ce14b4b94", "fields": {"nom_de_la_commune": "SERMUR", "libell_d_acheminement": "SERMUR", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23171"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eddec362991986a1f16400bdd29d40f7f26c34de", "fields": {"nom_de_la_commune": "SOUBREBOST", "libell_d_acheminement": "SOUBREBOST", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23173"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84584595081968015f2c5d20d0238f7891420aa6", "fields": {"nom_de_la_commune": "ST AVIT DE TARDES", "libell_d_acheminement": "ST AVIT DE TARDES", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23182"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3bfdf27588e3ed3db6503933a4b42bc82f7960", "fields": {"nom_de_la_commune": "ST BARD", "libell_d_acheminement": "ST BARD", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23184"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2ea610eef7901d780c36f5811c736332e5ce60", "fields": {"nom_de_la_commune": "STE FEYRE", "libell_d_acheminement": "STE FEYRE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23193"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8111bf53293d8c30d18232789f4a220856af35", "fields": {"nom_de_la_commune": "ST GEORGES LA POUGE", "libell_d_acheminement": "ST GEORGES LA POUGE", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23197"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc0e37f99c125d42b22a73b0a428f66a66a490b", "fields": {"nom_de_la_commune": "ST GERMAIN BEAUPRE", "libell_d_acheminement": "ST GERMAIN BEAUPRE", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23199"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2369cc730acea29086543e84c3231395127c858d", "fields": {"nom_de_la_commune": "ST HILAIRE LA PLAINE", "libell_d_acheminement": "ST HILAIRE LA PLAINE", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23201"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0031c0f8be99a1a5dc3a1b5340c58df7eb5fa0ce", "fields": {"nom_de_la_commune": "ST HILAIRE LE CHATEAU", "libell_d_acheminement": "ST HILAIRE LE CHATEAU", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23202"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363cdd6e2a94fa4d8245cb80bc482540a5b8d177", "fields": {"nom_de_la_commune": "ST JULIEN LA GENETE", "libell_d_acheminement": "ST JULIEN LA GENETE", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23203"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f246b754582aa6a0b46406bafd7340d82a8f781c", "fields": {"nom_de_la_commune": "ST MARC A FRONGIER", "libell_d_acheminement": "ST MARC A FRONGIER", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23211"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d697b29b9e9624fe91b65ad904aa4765ceef96", "fields": {"code_postal": "23300", "code_commune_insee": "23219", "libell_d_acheminement": "ST MAURICE LA SOUTERRAINE", "ligne_5": "LE DOGNON", "nom_de_la_commune": "ST MAURICE LA SOUTERRAINE", "coordonnees_gps": [46.2460007526, 1.49623466309]}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "608bdeb911a817b24e9704060eca074aa4ea3770", "fields": {"nom_de_la_commune": "ST MEDARD LA ROCHETTE", "libell_d_acheminement": "ST MEDARD LA ROCHETTE", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23220"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3fed01406a7ba93ce1f80393516cc2cd15209c", "fields": {"nom_de_la_commune": "ST MERD LA BREUILLE", "libell_d_acheminement": "ST MERD LA BREUILLE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23221"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9afd869d261bf931124b274c51e126ea9da7a7", "fields": {"nom_de_la_commune": "ST PRIEST", "libell_d_acheminement": "ST PRIEST", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23234"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad48678961ce677ab9b569484d268d2178c2f20", "fields": {"nom_de_la_commune": "ST PRIEST LA FEUILLE", "libell_d_acheminement": "ST PRIEST LA FEUILLE", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23235"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5190459a2af4eb995940c9c114a007d6af6ddfe8", "fields": {"nom_de_la_commune": "ST PRIEST LA PLAINE", "libell_d_acheminement": "ST PRIEST LA PLAINE", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23236"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d9a0400f6ef8b23e5142d39291e64b775c907d", "fields": {"nom_de_la_commune": "ST SILVAIN BELLEGARDE", "libell_d_acheminement": "ST SILVAIN BELLEGARDE", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23241"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4684d8e10c9c3ed21fab9db0690f378854ecd6d7", "fields": {"nom_de_la_commune": "ST SULPICE LE DUNOIS", "libell_d_acheminement": "ST SULPICE LE DUNOIS", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23244"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed8653c0c48d2afa619226d79d567163ee94465", "fields": {"nom_de_la_commune": "VALLIERE", "libell_d_acheminement": "VALLIERE", "code_postal": "23120", "coordonnees_gps": [45.9136291884, 2.02913270433], "code_commune_insee": "23257"}, "geometry": {"type": "Point", "coordinates": [2.02913270433, 45.9136291884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6211d28025dcd1f3a6eba12cb4bb4c0d9f8c21b", "fields": {"nom_de_la_commune": "LA VILLENEUVE", "libell_d_acheminement": "LA VILLENEUVE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23265"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2a3872e67cbf73068e063d56dc3bb27b1e7e5c", "fields": {"nom_de_la_commune": "ALLES SUR DORDOGNE", "libell_d_acheminement": "ALLES SUR DORDOGNE", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24005"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11bdd2f6fdff5222ac92ef257002246582e5852", "fields": {"nom_de_la_commune": "ALLEMANS", "libell_d_acheminement": "ALLEMANS", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24007"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca858e0776276a02614cab72a6a76fbe1de8035f", "fields": {"nom_de_la_commune": "ANLHIAC", "libell_d_acheminement": "ANLHIAC", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24009"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c5c04bf02c0c3416df422ff6fdf700ce2b79fe", "fields": {"nom_de_la_commune": "BASSILLAC", "libell_d_acheminement": "BASSILLAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24026"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82669199d8003c093e2cd90dedd2605e129a17d7", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "LABOUQUERIE", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d768a654326f18a177dd9d50d4df86f118efae7", "fields": {"nom_de_la_commune": "BEAUREGARD ET BASSAC", "libell_d_acheminement": "BEAUREGARD ET BASSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24031"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a62e30ca79c1909b1c6ba6d2effd2598cef4619", "fields": {"code_postal": "24170", "code_commune_insee": "24035", "libell_d_acheminement": "PAYS DE BELVES", "ligne_5": "ST AMAND DE BELVES", "nom_de_la_commune": "PAYS DE BELVES", "coordonnees_gps": [44.7520136105, 1.04613211786]}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dfde77a419fa356c32fda0280c2ed3418a264f5", "fields": {"nom_de_la_commune": "BERGERAC", "libell_d_acheminement": "BERGERAC", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24037"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "321c48d82e3bca4e96ce2ae5e6794e7e0ff970a0", "fields": {"nom_de_la_commune": "BEYNAC ET CAZENAC", "libell_d_acheminement": "BEYNAC ET CAZENAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24040"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28f3b2ec231e976b2f4e1c0b3ddb5ea4a558b50", "fields": {"nom_de_la_commune": "BIRAS", "libell_d_acheminement": "BIRAS", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24042"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639d2a997ab927f08babd530bb3144d08a05c876", "fields": {"nom_de_la_commune": "BOISSE", "libell_d_acheminement": "BOISSE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24045"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e021a4d1e4dbeaf6107b71db047d9d2b87bbdf7", "fields": {"nom_de_la_commune": "BOISSEUILH", "libell_d_acheminement": "BOISSEUILH", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24046"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122ebc01b188b463a9cbbca613a05961f3596f29", "fields": {"nom_de_la_commune": "BORREZE", "libell_d_acheminement": "BORREZE", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24050"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a01ad06df82bb5a4f82bc78cfd8738c7ffc28dd7", "fields": {"nom_de_la_commune": "BOUTEILLES ST SEBASTIEN", "libell_d_acheminement": "BOUTEILLES ST SEBASTIEN", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24062"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe184a4add79e2ce9cf2529af2dbc072ad1a93c5", "fields": {"code_postal": "24250", "code_commune_insee": "24086", "libell_d_acheminement": "CASTELNAUD LA CHAPELLE", "ligne_5": "LA CHAPELLE PECHAUD", "nom_de_la_commune": "CASTELNAUD LA CHAPELLE", "coordonnees_gps": [44.774302218, 1.21332262796]}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a55dccf12dbeae0aec640e4308a7cf95b7e70e0", "fields": {"nom_de_la_commune": "CAZOULES", "libell_d_acheminement": "CAZOULES", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24089"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae02a73c8be785941dd083e46e160588942c7576", "fields": {"nom_de_la_commune": "CENDRIEUX", "libell_d_acheminement": "CENDRIEUX", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24092"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455d3781278a7206d6778ca9a0ae111bbee2b8c9", "fields": {"nom_de_la_commune": "CHANCELADE", "libell_d_acheminement": "CHANCELADE", "code_postal": "24650", "coordonnees_gps": [45.2097414862, 0.655505386092], "code_commune_insee": "24102"}, "geometry": {"type": "Point", "coordinates": [0.655505386092, 45.2097414862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd9c41d4fea084fb16b78e3fb8fdc954ee15001", "fields": {"nom_de_la_commune": "LA CHAPELLE GRESIGNAC", "libell_d_acheminement": "LA CHAPELLE GRESIGNAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24109"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6946f21c366c49d5cd38bf3db10cbcbf7ef86147", "fields": {"nom_de_la_commune": "CHERVEIX CUBAS", "libell_d_acheminement": "CHERVEIX CUBAS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24120"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec044ff7b127b316352acf83d77a09486491881c", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24126"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513f420de3d431d7a5cc36745392a9cb32c8d6bd", "fields": {"nom_de_la_commune": "CONDAT SUR TRINCOU", "libell_d_acheminement": "CONDAT SUR TRINCOU", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24129"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd1cc84f2bc0528418c14a22d21afb800e698db3", "fields": {"nom_de_la_commune": "LA COQUILLE", "libell_d_acheminement": "LA COQUILLE", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24133"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "515f5ce8f6dbbe04066cb38e0e2ef73f5c614bc8", "fields": {"nom_de_la_commune": "COURSAC", "libell_d_acheminement": "COURSAC", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24139"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7044ace58756e5e7212e4245fe95a63e7eb109ee", "fields": {"nom_de_la_commune": "COURS DE PILE", "libell_d_acheminement": "COURS DE PILE", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24140"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9139808e2ab901597e7c98272183dc7096193ee5", "fields": {"nom_de_la_commune": "CREYSSAC", "libell_d_acheminement": "CREYSSAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24144"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca01bb6b8cfd3eba4688558913743e7b611d7aaf", "fields": {"nom_de_la_commune": "CREYSSENSAC ET PISSOT", "libell_d_acheminement": "CREYSSENSAC ET PISSOT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24146"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb9796295dba95accb0f4e6a0e6840f3f58d4b4", "fields": {"nom_de_la_commune": "DOUCHAPT", "libell_d_acheminement": "DOUCHAPT", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24154"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d40dd603423c093833713430ad0e3dd807b0e1", "fields": {"nom_de_la_commune": "EXCIDEUIL", "libell_d_acheminement": "EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24164"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf32dfe0195d844da81699f2a17e6f00e79aa4d4", "fields": {"nom_de_la_commune": "EYMET", "libell_d_acheminement": "EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24167"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84996d54523e92b879c81f03ed5230208ef34752", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24168"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548233eabd9f5ec2e976f0f1968645ef5e14f92c", "fields": {"nom_de_la_commune": "NOMAIN", "libell_d_acheminement": "NOMAIN", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59435"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417e0f8f63eaa38a661224fe05f7e2ae8a845bff", "fields": {"nom_de_la_commune": "NOYELLES SUR ESCAUT", "libell_d_acheminement": "NOYELLES SUR ESCAUT", "code_postal": "59159", "coordonnees_gps": [50.1152893393, 3.16124259033], "code_commune_insee": "59438"}, "geometry": {"type": "Point", "coordinates": [3.16124259033, 50.1152893393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1509ef1b17fa6c6c8122665ad67e64149c7e66a8", "fields": {"nom_de_la_commune": "NOYELLES SUR SELLE", "libell_d_acheminement": "NOYELLES SUR SELLE", "code_postal": "59282", "coordonnees_gps": [50.2922712188, 3.38676423014], "code_commune_insee": "59440"}, "geometry": {"type": "Point", "coordinates": [3.38676423014, 50.2922712188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae3a31be9216d90413d7c92c888a7cddc2b7b7a", "fields": {"nom_de_la_commune": "OBIES", "libell_d_acheminement": "OBIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59441"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58f2f1a556e7fef6a9294e40f2516981efec3797", "fields": {"nom_de_la_commune": "OOST CAPPEL", "libell_d_acheminement": "OOST CAPPEL", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59448"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fde774848730214e820fbaa5d5523d06e3197a5", "fields": {"nom_de_la_commune": "ORCHIES", "libell_d_acheminement": "ORCHIES", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59449"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b80e7dea7df18e9b81500acf2e069fa4a26ce13", "fields": {"nom_de_la_commune": "ORSINVAL", "libell_d_acheminement": "ORSINVAL", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59451"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9202e58379c5540881bec47d5f535d5cc67e0403", "fields": {"nom_de_la_commune": "OUDEZEELE", "libell_d_acheminement": "OUDEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59453"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6390ae44ce3e3ef9a604b13fac57cbceefcf7819", "fields": {"nom_de_la_commune": "PITGAM", "libell_d_acheminement": "PITGAM", "code_postal": "59284", "coordonnees_gps": [50.9300434284, 2.3406993946], "code_commune_insee": "59463"}, "geometry": {"type": "Point", "coordinates": [2.3406993946, 50.9300434284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a19dba2feef8c5be4bef378a497c5e173f090c13", "fields": {"nom_de_la_commune": "POIX DU NORD", "libell_d_acheminement": "POIX DU NORD", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59464"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0590df0118601c9ade92cc664047f1d32ff6b48d", "fields": {"nom_de_la_commune": "POMMEREUIL", "libell_d_acheminement": "POMMEREUIL", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59465"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8ac0d95d66c5c213f50251aa3cb7e0f2563096f", "fields": {"nom_de_la_commune": "PONT SUR SAMBRE", "libell_d_acheminement": "PONT SUR SAMBRE", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59467"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0d0823af3e538c98014fbda1db5aef845ace6c", "fields": {"nom_de_la_commune": "PREMESQUES", "libell_d_acheminement": "PREMESQUES", "code_postal": "59840", "coordonnees_gps": [50.6641115451, 2.96705892746], "code_commune_insee": "59470"}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceb8b80054f68c2af59dc94c3145a3b633b288d5", "fields": {"nom_de_la_commune": "PROVILLE", "libell_d_acheminement": "PROVILLE", "code_postal": "59267", "coordonnees_gps": [50.14197399, 3.16014006865], "code_commune_insee": "59476"}, "geometry": {"type": "Point", "coordinates": [3.16014006865, 50.14197399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab193e97c2862849798ed32b83c6b942a7ef13a9", "fields": {"nom_de_la_commune": "QUAEDYPRE", "libell_d_acheminement": "QUAEDYPRE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59478"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11394c43224fe8ce7bdd4fbacce68c71c8b1d222", "fields": {"nom_de_la_commune": "QUAROUBLE", "libell_d_acheminement": "QUAROUBLE", "code_postal": "59243", "coordonnees_gps": [50.4026527101, 3.62777454], "code_commune_insee": "59479"}, "geometry": {"type": "Point", "coordinates": [3.62777454, 50.4026527101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbdc295bd1c9a26462cda894b87ae355afed0cb6", "fields": {"nom_de_la_commune": "QUIEVRECHAIN", "libell_d_acheminement": "QUIEVRECHAIN", "code_postal": "59920", "coordonnees_gps": [50.3920105185, 3.65986336367], "code_commune_insee": "59484"}, "geometry": {"type": "Point", "coordinates": [3.65986336367, 50.3920105185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27384ede72fc9549b791e4b887190f12bf3691c7", "fields": {"code_postal": "59920", "code_commune_insee": "59484", "libell_d_acheminement": "QUIEVRECHAIN", "ligne_5": "BLANC MISSERON", "nom_de_la_commune": "QUIEVRECHAIN", "coordonnees_gps": [50.3920105185, 3.65986336367]}, "geometry": {"type": "Point", "coordinates": [3.65986336367, 50.3920105185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24284466e745312e09e4f184438c12e4fd6bb85", "fields": {"nom_de_la_commune": "QUIEVY", "libell_d_acheminement": "QUIEVY", "code_postal": "59214", "coordonnees_gps": [50.1631137023, 3.42269935978], "code_commune_insee": "59485"}, "geometry": {"type": "Point", "coordinates": [3.42269935978, 50.1631137023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81aae882aa3fbf8e3cedf6f2f01e7292b60f0551", "fields": {"nom_de_la_commune": "RACHES", "libell_d_acheminement": "RACHES", "code_postal": "59194", "coordonnees_gps": [50.4161128378, 3.14174159912], "code_commune_insee": "59486"}, "geometry": {"type": "Point", "coordinates": [3.14174159912, 50.4161128378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032115f4704f385e98ff25fe7b27db7cfb244837", "fields": {"nom_de_la_commune": "RAMILLIES", "libell_d_acheminement": "RAMILLIES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59492"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8f1b23ec8507a4af3e78bc273f5a5d0fb4adf5", "fields": {"nom_de_la_commune": "REJET DE BEAULIEU", "libell_d_acheminement": "REJET DE BEAULIEU", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59496"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c816325f7060970579fa8c31a85336e206ec7f6", "fields": {"nom_de_la_commune": "RIBECOURT LA TOUR", "libell_d_acheminement": "RIBECOURT LA TOUR", "code_postal": "59159", "coordonnees_gps": [50.1152893393, 3.16124259033], "code_commune_insee": "59500"}, "geometry": {"type": "Point", "coordinates": [3.16124259033, 50.1152893393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b611d78a5e94b36b78017b0c8810dafb39132e", "fields": {"nom_de_la_commune": "RIEULAY", "libell_d_acheminement": "RIEULAY", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59501"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee9a9f7f8393228e1848630f9fe6cd1528a4ca72", "fields": {"nom_de_la_commune": "ROEULX", "libell_d_acheminement": "ROEULX", "code_postal": "59172", "coordonnees_gps": [50.3090205997, 3.30898360738], "code_commune_insee": "59504"}, "geometry": {"type": "Point", "coordinates": [3.30898360738, 50.3090205997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d366ae69243461ad65282b41699224ebcda1f1", "fields": {"nom_de_la_commune": "ROUCOURT", "libell_d_acheminement": "ROUCOURT", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59513"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62981b5ed5099f5fecb7cab82eb2df629706452", "fields": {"nom_de_la_commune": "ROUSIES", "libell_d_acheminement": "ROUSIES", "code_postal": "59131", "coordonnees_gps": [50.2717476027, 3.99907995948], "code_commune_insee": "59514"}, "geometry": {"type": "Point", "coordinates": [3.99907995948, 50.2717476027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8e55ec06f2917fc3f287cc15e675659e654c71", "fields": {"nom_de_la_commune": "ROUVIGNIES", "libell_d_acheminement": "ROUVIGNIES", "code_postal": "59220", "coordonnees_gps": [50.331558265, 3.40464647794], "code_commune_insee": "59515"}, "geometry": {"type": "Point", "coordinates": [3.40464647794, 50.331558265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0b7b1c471b423e4bf81f68f86d05724dc4d814", "fields": {"nom_de_la_commune": "SAINGHIN EN WEPPES", "libell_d_acheminement": "SAINGHIN EN WEPPES", "code_postal": "59184", "coordonnees_gps": [50.5586252814, 2.89724093973], "code_commune_insee": "59524"}, "geometry": {"type": "Point", "coordinates": [2.89724093973, 50.5586252814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914c00db857529ba0eaba92f5128ae296d2be9ed", "fields": {"nom_de_la_commune": "ST HILAIRE SUR HELPE", "libell_d_acheminement": "ST HILAIRE SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59534"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96af03e4d3d1df520b3f87fb7ff9606ee610129d", "fields": {"nom_de_la_commune": "ST JANS CAPPEL", "libell_d_acheminement": "ST JANS CAPPEL", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59535"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185a011ce0f7c12f75a29459d10bbc5a0ae9157b", "fields": {"nom_de_la_commune": "ST PYTHON", "libell_d_acheminement": "ST PYTHON", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59541"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7518762786b66fb21f8fc5a8eaf245f9114e45", "fields": {"nom_de_la_commune": "ST REMY CHAUSSEE", "libell_d_acheminement": "ST REMY CHAUSSEE", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59542"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebb9a20f28fa5b7f107a030b687c545fd742fc8", "fields": {"code_postal": "59360", "code_commune_insee": "59545", "libell_d_acheminement": "ST SOUPLET", "ligne_5": "ESCAUFOURT", "nom_de_la_commune": "ST SOUPLET", "coordonnees_gps": [50.0869230183, 3.58161803685]}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d378058ad5967303643e3e6ab4a67672fc944f", "fields": {"nom_de_la_commune": "ST SYLVESTRE CAPPEL", "libell_d_acheminement": "ST SYLVESTRE CAPPEL", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59546"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ce6a94240b2530f673ee567a9fcdafef63c060", "fields": {"nom_de_la_commune": "SARS ET ROSIERES", "libell_d_acheminement": "SARS ET ROSIERES", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59554"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3fc60295a520a3a922c7d350c8489818314cf6", "fields": {"nom_de_la_commune": "SAULTAIN", "libell_d_acheminement": "SAULTAIN", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59557"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe8708cf7b684a4c0167baf32d9811b812b9d7a8", "fields": {"nom_de_la_commune": "SEMERIES", "libell_d_acheminement": "SEMERIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59562"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c03c8dfed0cb9e4afd91a513f92d21ea9d7320", "fields": {"nom_de_la_commune": "SEQUEDIN", "libell_d_acheminement": "SEQUEDIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59566"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8021051f89f33e8bafa99d16be579c4c503591", "fields": {"nom_de_la_commune": "SOLRINNES", "libell_d_acheminement": "SOLRINNES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59573"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fd3c0d7a9bb0053cd9ec657fe56b80889b8dd6", "fields": {"nom_de_la_commune": "SPYCKER", "libell_d_acheminement": "SPYCKER", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59576"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c381403ac7cf3ec90d9f3a2993816710dedfb8b2", "fields": {"nom_de_la_commune": "STEENE", "libell_d_acheminement": "STEENE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59579"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb1e1179d27d3348f6f85dcc32047aa49e3ff52", "fields": {"nom_de_la_commune": "STEENWERCK", "libell_d_acheminement": "STEENWERCK", "code_postal": "59181", "coordonnees_gps": [50.6868143298, 2.76936799525], "code_commune_insee": "59581"}, "geometry": {"type": "Point", "coordinates": [2.76936799525, 50.6868143298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9825f19f17d0352994e307657a2ec60accbfafbf", "fields": {"code_postal": "59181", "code_commune_insee": "59581", "libell_d_acheminement": "STEENWERCK", "ligne_5": "CROIX DU BAC", "nom_de_la_commune": "STEENWERCK", "coordonnees_gps": [50.6868143298, 2.76936799525]}, "geometry": {"type": "Point", "coordinates": [2.76936799525, 50.6868143298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4e64f656d86480ceba7ae4c0da8dd054e18643", "fields": {"nom_de_la_commune": "TAISNIERES EN THIERACHE", "libell_d_acheminement": "TAISNIERES EN THIERACHE", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59583"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca7ee249e46a36aadb02b6b8157bcc6d7e858aa2", "fields": {"nom_de_la_commune": "THIANT", "libell_d_acheminement": "THIANT", "code_postal": "59224", "coordonnees_gps": [50.2929263496, 3.44612493476], "code_commune_insee": "59589"}, "geometry": {"type": "Point", "coordinates": [3.44612493476, 50.2929263496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344777453300a7be0ef7340d0aa98de19c9dac35", "fields": {"nom_de_la_commune": "THUN ST AMAND", "libell_d_acheminement": "THUN ST AMAND", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59594"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c014228dd5b25d3771041938538752225d6be9", "fields": {"nom_de_la_commune": "TILLOY LEZ CAMBRAI", "libell_d_acheminement": "TILLOY LEZ CAMBRAI", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59597"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3649fe6255fc8017633bb20e7e5301c89e34605", "fields": {"nom_de_la_commune": "TOUFFLERS", "libell_d_acheminement": "TOUFFLERS", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59598"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729a37eaa1d7c29b00ffe54dae243be5f15286ba", "fields": {"nom_de_la_commune": "TRELON", "libell_d_acheminement": "TRELON", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59601"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63efd81121bdde3d5ba3d49694485fe8b3936289", "fields": {"code_postal": "59530", "code_commune_insee": "59619", "libell_d_acheminement": "VILLEREAU", "ligne_5": "HERBIGNIES VILLEREAU", "nom_de_la_commune": "VILLEREAU", "coordonnees_gps": [50.223224015, 3.68515855463]}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c35927867c792a87d295e06c7f9ce2c8d06af65", "fields": {"nom_de_la_commune": "VILLERS OUTREAUX", "libell_d_acheminement": "VILLERS OUTREAUX", "code_postal": "59142", "coordonnees_gps": [50.0299399327, 3.29180819068], "code_commune_insee": "59624"}, "geometry": {"type": "Point", "coordinates": [3.29180819068, 50.0299399327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d38bfadee66e27ed02abb196ca2228fd35a73828", "fields": {"nom_de_la_commune": "VILLERS POL", "libell_d_acheminement": "VILLERS POL", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59626"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8b6822a97112b7abff7b127b097d6064bcc377", "fields": {"code_postal": "59127", "code_commune_insee": "59631", "libell_d_acheminement": "WALINCOURT SELVIGNY", "ligne_5": "SELVIGNY", "nom_de_la_commune": "WALINCOURT SELVIGNY", "coordonnees_gps": [50.0669008118, 3.33260202285]}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597cfdd93f3dd4b4cf4af4266462d4c5530bc7e7", "fields": {"nom_de_la_commune": "WANDIGNIES HAMAGE", "libell_d_acheminement": "WANDIGNIES HAMAGE", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59637"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855eba775142e51839b5987a8c909d8a1827aa25", "fields": {"nom_de_la_commune": "WASNES AU BAC", "libell_d_acheminement": "WASNES AU BAC", "code_postal": "59252", "coordonnees_gps": [50.2842668858, 3.25374088253], "code_commune_insee": "59645"}, "geometry": {"type": "Point", "coordinates": [3.25374088253, 50.2842668858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db57ad67552c0387abb58749d20c202778699128", "fields": {"nom_de_la_commune": "WATTIGNIES LA VICTOIRE", "libell_d_acheminement": "WATTIGNIES LA VICTOIRE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59649"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9920c2e9e435a02fe93e67114bc1bced8136a567", "fields": {"nom_de_la_commune": "WAVRECHAIN SOUS DENAIN", "libell_d_acheminement": "WAVRECHAIN SOUS DENAIN", "code_postal": "59220", "coordonnees_gps": [50.331558265, 3.40464647794], "code_commune_insee": "59651"}, "geometry": {"type": "Point", "coordinates": [3.40464647794, 50.331558265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c363d260e525c2ce5ae6c47f98f9aae77ce40514", "fields": {"nom_de_la_commune": "WAVRECHAIN SOUS FAULX", "libell_d_acheminement": "WAVRECHAIN SOUS FAULX", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59652"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68a18d4e6f77d91ed2bb8d0b5ddbc24a9f9e926", "fields": {"nom_de_la_commune": "WAZIERS", "libell_d_acheminement": "WAZIERS", "code_postal": "59119", "coordonnees_gps": [50.3855065324, 3.11218708685], "code_commune_insee": "59654"}, "geometry": {"type": "Point", "coordinates": [3.11218708685, 50.3855065324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc45965893597839ee7e149b8f33d1ef13711b3", "fields": {"nom_de_la_commune": "ABBEVILLE ST LUCIEN", "libell_d_acheminement": "ABBEVILLE ST LUCIEN", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60003"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b323c46250f8567d73cf7de973855604385ef8", "fields": {"nom_de_la_commune": "AIRION", "libell_d_acheminement": "AIRION", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60008"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e4aa91c35807073fcc696fb650f87b133c46d3", "fields": {"nom_de_la_commune": "ALLONNE", "libell_d_acheminement": "ALLONNE", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60009"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1651c274e44da5939ce0b89547e827592202c494", "fields": {"nom_de_la_commune": "AMBLAINVILLE", "libell_d_acheminement": "AMBLAINVILLE", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60010"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a46fd3e23ff871c92ba5f1fea98bc80f78c0d50", "fields": {"nom_de_la_commune": "ANGICOURT", "libell_d_acheminement": "ANGICOURT", "code_postal": "60940", "coordonnees_gps": [49.322780883, 2.53673238341], "code_commune_insee": "60013"}, "geometry": {"type": "Point", "coordinates": [2.53673238341, 49.322780883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6481398abae172d76b921c4a6c3186dacfa0738", "fields": {"nom_de_la_commune": "ANTILLY", "libell_d_acheminement": "ANTILLY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60020"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270f906093e6a2506c11a35f30fc7c331372ecf3", "fields": {"nom_de_la_commune": "ATTICHY", "libell_d_acheminement": "ATTICHY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60025"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2a3108c0f8e18ffd9e1daa376fea7432d886c3", "fields": {"nom_de_la_commune": "AUNEUIL", "libell_d_acheminement": "AUNEUIL", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60029"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d391469b2cf00706dc9e9c1e60ed9784c0be7935", "fields": {"nom_de_la_commune": "BAILLEUL LE SOC", "libell_d_acheminement": "BAILLEUL LE SOC", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60040"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8f796970d7b6573ccb64cf74787db07cea09d5", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "60113", "coordonnees_gps": [49.468392159, 2.74988902801], "code_commune_insee": "60048"}, "geometry": {"type": "Point", "coordinates": [2.74988902801, 49.468392159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee2376b7f9f5fa03561a539abf844c79f6a9ce1", "fields": {"nom_de_la_commune": "BEHERICOURT", "libell_d_acheminement": "BEHERICOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60059"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9529585bc18d9e4ce8076b478e6a48c4ae20f1d", "fields": {"nom_de_la_commune": "BETHISY ST MARTIN", "libell_d_acheminement": "BETHISY ST MARTIN", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60067"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c93f2792f0230e445b3a6c4a0dc90f8bd036a27", "fields": {"nom_de_la_commune": "BETHISY ST PIERRE", "libell_d_acheminement": "BETHISY ST PIERRE", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60068"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00139305c990062794bfe4a509574a6ad9774e31", "fields": {"nom_de_la_commune": "BETZ", "libell_d_acheminement": "BETZ", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60069"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75fa6fd90502acdfc2e0d5ca8672ba528e714c1f", "fields": {"nom_de_la_commune": "BLANCFOSSE", "libell_d_acheminement": "BLANCFOSSE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60075"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8ad51384917e17680dc22ec24800d27a3d6820", "fields": {"nom_de_la_commune": "BOISSY LE BOIS", "libell_d_acheminement": "BOISSY LE BOIS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60080"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b315d8e60de009b7850f45ef899c1d5f00e7f5a0", "fields": {"nom_de_la_commune": "BONLIER", "libell_d_acheminement": "BONLIER", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60081"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6304bcfe6e9f03fc0a1f89cf69550a6156a615", "fields": {"nom_de_la_commune": "BONNEUIL EN VALOIS", "libell_d_acheminement": "BONNEUIL EN VALOIS", "code_postal": "60123", "coordonnees_gps": [49.2803594207, 2.98767047499], "code_commune_insee": "60083"}, "geometry": {"type": "Point", "coordinates": [2.98767047499, 49.2803594207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529527be04ee90993efdaddd2b17a86cf4962ab1", "fields": {"nom_de_la_commune": "BORNEL", "libell_d_acheminement": "BORNEL", "code_postal": "60540", "coordonnees_gps": [49.1970454016, 2.20454103263], "code_commune_insee": "60088"}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13bdfdc05d9ab07bad7cbb8ef1c8a46ee06e73a7", "fields": {"nom_de_la_commune": "BOUTAVENT", "libell_d_acheminement": "BOUTAVENT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60096"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80b42c21d00767d33059de26e4ea427f3c3bd61", "fields": {"nom_de_la_commune": "BOUTENCOURT", "libell_d_acheminement": "BOUTENCOURT", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60097"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeecc3dbecf542f0235684a44167f04032bb1af0", "fields": {"nom_de_la_commune": "BRESLES", "libell_d_acheminement": "BRESLES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60103"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ced5655fee561d883726271586b01e642a5d693", "fields": {"nom_de_la_commune": "BRETIGNY", "libell_d_acheminement": "BRETIGNY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60105"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c93b5a59911d0f215d4830250cc93413578d62", "fields": {"nom_de_la_commune": "BREUIL LE SEC", "libell_d_acheminement": "BREUIL LE SEC", "code_postal": "60840", "coordonnees_gps": [49.3800366036, 2.49101738028], "code_commune_insee": "60106"}, "geometry": {"type": "Point", "coordinates": [2.49101738028, 49.3800366036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab0cffd3df8ae7ade3d150b17c7095fa5407b65", "fields": {"nom_de_la_commune": "BROMBOS", "libell_d_acheminement": "BROMBOS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60109"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a32b83b41c1f1faf1b272e21f90bd4818b0e79", "fields": {"nom_de_la_commune": "BROQUIERS", "libell_d_acheminement": "BROQUIERS", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60110"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45734cedb5745685ed0cd3c57982aa27be065a6d", "fields": {"nom_de_la_commune": "BROYES", "libell_d_acheminement": "BROYES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60111"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38dbc30ad057b660148b223bacc316154c16d8b", "fields": {"nom_de_la_commune": "BRUNVILLERS LA MOTTE", "libell_d_acheminement": "BRUNVILLERS LA MOTTE", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60112"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84013e41bcb7f66af8caf8fb2588f46a50facfa", "fields": {"nom_de_la_commune": "BUCAMPS", "libell_d_acheminement": "BUCAMPS", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60113"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bec7c3128251f081ec6e6e718d34aa61f14f290", "fields": {"nom_de_la_commune": "BUSSY", "libell_d_acheminement": "BUSSY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60117"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700918c676f62a9fa47af7db3738d0830a91a144", "fields": {"nom_de_la_commune": "CANDOR", "libell_d_acheminement": "CANDOR", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60124"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16fa7b081993f5b67bb1aa4e37f22de04e1b17d4", "fields": {"nom_de_la_commune": "CANNY SUR THERAIN", "libell_d_acheminement": "CANNY SUR THERAIN", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60128"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7fe178f19354594ca5b1e39905c2be44b154694", "fields": {"nom_de_la_commune": "CHAMANT", "libell_d_acheminement": "CHAMANT", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60138"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac44affb304140674f96e78023b5d15275812ab8", "fields": {"nom_de_la_commune": "CHEVREVILLE", "libell_d_acheminement": "CHEVREVILLE", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60148"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac728000eb7e866f425671cd5a9505692c4e84b", "fields": {"nom_de_la_commune": "CHEVRIERES", "libell_d_acheminement": "CHEVRIERES", "code_postal": "60710", "coordonnees_gps": [49.343381616, 2.66813985407], "code_commune_insee": "60149"}, "geometry": {"type": "Point", "coordinates": [2.66813985407, 49.343381616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064a6f087af8077349ee88832028a38596194e52", "fields": {"nom_de_la_commune": "CHIRY OURSCAMP", "libell_d_acheminement": "CHIRY OURSCAMP", "code_postal": "60138", "coordonnees_gps": [49.530957314, 2.96949803106], "code_commune_insee": "60150"}, "geometry": {"type": "Point", "coordinates": [2.96949803106, 49.530957314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12a748bf21aa2a277dd0905581f0abe4947556c", "fields": {"nom_de_la_commune": "CHOISY LA VICTOIRE", "libell_d_acheminement": "CHOISY LA VICTOIRE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60152"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0b9f1567cee561bb40c5d3ca84938157396a9a", "fields": {"nom_de_la_commune": "CIRES LES MELLO", "libell_d_acheminement": "CIRES LES MELLO", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60155"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00292a9998bdbcaec4aaadba6ebb4310267c3b2", "fields": {"nom_de_la_commune": "CORMEILLES", "libell_d_acheminement": "CORMEILLES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60163"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0361889b3213d0b6883b6792b441f2d3c6602cf5", "fields": {"nom_de_la_commune": "COUDUN", "libell_d_acheminement": "COUDUN", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60166"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24834a7f9b5fc70d26b465a043c3a724c6b36aca", "fields": {"nom_de_la_commune": "PARNAC", "libell_d_acheminement": "PARNAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46214"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58755c9b3f1177d292004782fd742a976f1b326", "fields": {"nom_de_la_commune": "PINSAC", "libell_d_acheminement": "PINSAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46220"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b5d68f54478527b5d3895174bc51d685719077", "fields": {"nom_de_la_commune": "POMAREDE", "libell_d_acheminement": "POMAREDE", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46222"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fe6c2d86477ab40164465a27f4bd0891d749f3", "fields": {"nom_de_la_commune": "QUISSAC", "libell_d_acheminement": "QUISSAC", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46233"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ea3ead002a4859c30c585dbc2ec312c102e453", "fields": {"nom_de_la_commune": "RIGNAC", "libell_d_acheminement": "RIGNAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46238"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4bf72263124dfe55d134bf043fa36e210a7926", "fields": {"nom_de_la_commune": "RUDELLE", "libell_d_acheminement": "RUDELLE", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46242"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b639ddb50d7eca6910b231b7715aff5fa406746d", "fields": {"nom_de_la_commune": "STE ALAUZIE", "libell_d_acheminement": "STE ALAUZIE", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46248"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b711fd8ede08d4ca5a8e8a815c475b2df96dd785", "fields": {"code_postal": "46360", "code_commune_insee": "46252", "libell_d_acheminement": "LES PECHS DU VERS", "ligne_5": "ST MARTIN DE VERS", "nom_de_la_commune": "LES PECHS DU VERS", "coordonnees_gps": [44.5788373248, 1.59698113973]}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ae50ddf305a1bcaf798e1f44a94f715647feaa", "fields": {"nom_de_la_commune": "ST CIRQ LAPOPIE", "libell_d_acheminement": "ST CIRQ LAPOPIE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46256"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7838091d2be2d2544783524886f42a1cbaad49", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46260"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a865b17739eb43ae7fda50e3f203c7dee32daa9", "fields": {"nom_de_la_commune": "ST GERMAIN DU BEL AIR", "libell_d_acheminement": "ST GERMAIN DU BEL AIR", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46267"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb79fb84eb0f4b0c04b401453e2a6c9459656810", "fields": {"nom_de_la_commune": "ST LAURENT LES TOURS", "libell_d_acheminement": "ST LAURENT LES TOURS", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46273"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5b3d475bab207e7c4c13e9e87aebf6988099d3c", "fields": {"nom_de_la_commune": "ST MARTIN LE REDON", "libell_d_acheminement": "ST MARTIN LE REDON", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46277"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293ba4f2b9d189ff9a960b419ec08b2ab01645dd", "fields": {"nom_de_la_commune": "ST MAURICE EN QUERCY", "libell_d_acheminement": "ST MAURICE EN QUERCY", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46279"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7143401f09f3c2e066407347232696d035d57ccc", "fields": {"nom_de_la_commune": "ST MICHEL LOUBEJOU", "libell_d_acheminement": "ST MICHEL LOUBEJOU", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46284"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05c20bff1ad8576752f8fe4023e6ca174f49329", "fields": {"nom_de_la_commune": "SARRAZAC", "libell_d_acheminement": "SARRAZAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46298"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1092a0e513d9a57805ee313cc78250365890d35b", "fields": {"nom_de_la_commune": "SAULIAC SUR CELE", "libell_d_acheminement": "SAULIAC SUR CELE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46299"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f988425df977ecb3c8733814cbcfdf24ae017f6", "fields": {"nom_de_la_commune": "SENAILLAC LAUZES", "libell_d_acheminement": "SENAILLAC LAUZES", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46303"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07afe3a901c90624aba2fba55df0fd81f57309dc", "fields": {"nom_de_la_commune": "SOTURAC", "libell_d_acheminement": "SOTURAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46307"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fb2bd962c318c16eea84cf60cc3057305d85a4", "fields": {"nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "code_postal": "46190", "coordonnees_gps": [44.886802824, 2.02091707559], "code_commune_insee": "46311"}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548bd93bb5c18f081668c108a2d9118ccd972157", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "COMIAC", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac78a2834980455ff8589d0a223dbed9efdc347b", "fields": {"nom_de_la_commune": "TERROU", "libell_d_acheminement": "TERROU", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46314"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b81c634da38678120005a93556b535bda217f3f7", "fields": {"nom_de_la_commune": "VILLESEQUE", "libell_d_acheminement": "VILLESEQUE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46335"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502374c75f312ed72189fbb624de840cfe6a9a29", "fields": {"nom_de_la_commune": "ALLEMANS DU DROPT", "libell_d_acheminement": "ALLEMANS DU DROPT", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47005"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46ce45c96727a2dfc69713290688005c77206f6", "fields": {"nom_de_la_commune": "ANDIRAN", "libell_d_acheminement": "ANDIRAN", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47009"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a7d36755acc074a750c8d2fe7c7aa4fe763c9f", "fields": {"nom_de_la_commune": "ANTHE", "libell_d_acheminement": "ANTHE", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47011"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f347ead65bbbc2e9113e8a16dc6171767563fe5c", "fields": {"nom_de_la_commune": "BEAUVILLE", "libell_d_acheminement": "BEAUVILLE", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47025"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b743aced1a261bc875911c0c5da7bcbda755df9", "fields": {"nom_de_la_commune": "BOUDY DE BEAUREGARD", "libell_d_acheminement": "BOUDY DE BEAUREGARD", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47033"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209cbaa3b28eac20b898bd4036a88041dde1e684", "fields": {"nom_de_la_commune": "BRAX", "libell_d_acheminement": "BRAX", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47040"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9821ee0f9bc3df623eb9ba219b320d995d1ddf9", "fields": {"nom_de_la_commune": "BRUCH", "libell_d_acheminement": "BRUCH", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47041"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5028a5485e8cf706a9e9ee349acf32868832f6", "fields": {"nom_de_la_commune": "CANCON", "libell_d_acheminement": "CANCON", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47048"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0444b0a7e823f1c60f1c3c2cc8ae6fc72390d9df", "fields": {"nom_de_la_commune": "CASTELCULIER", "libell_d_acheminement": "CASTELCULIER", "code_postal": "47240", "coordonnees_gps": [44.1950523774, 0.697905787009], "code_commune_insee": "47051"}, "geometry": {"type": "Point", "coordinates": [0.697905787009, 44.1950523774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c1b610d0c02125189176c497482dfe15ea117b", "fields": {"nom_de_la_commune": "COCUMONT", "libell_d_acheminement": "COCUMONT", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47068"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c4f2ef162174024d53af252f39f9a381b4f44a", "fields": {"nom_de_la_commune": "COLAYRAC ST CIRQ", "libell_d_acheminement": "COLAYRAC ST CIRQ", "code_postal": "47450", "coordonnees_gps": [44.2392176007, 0.551719264146], "code_commune_insee": "47069"}, "geometry": {"type": "Point", "coordinates": [0.551719264146, 44.2392176007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfb75ea26d029c355ff68182cb0e2b2e852d764", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47073"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa86104a461d9cf20ade2cb9e45adc4c2073061f", "fields": {"nom_de_la_commune": "CUZORN", "libell_d_acheminement": "CUZORN", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47077"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f43df30acd9da2df27db4b71100f447e9501129", "fields": {"nom_de_la_commune": "DONDAS", "libell_d_acheminement": "DONDAS", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47082"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0f520469ae4e19b70040eacb8391244091ae59", "fields": {"nom_de_la_commune": "FAUILLET", "libell_d_acheminement": "FAUILLET", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47095"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dcb2ca1e9105fb67fa54021f583925ebc441368", "fields": {"nom_de_la_commune": "FIEUX", "libell_d_acheminement": "FIEUX", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47098"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fa3e8ce54787222800d7bb486287e4c9ff7a72", "fields": {"nom_de_la_commune": "FONGRAVE", "libell_d_acheminement": "FONGRAVE", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47099"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e155eb25afede4eba0e6431d7d8806271c72a0f", "fields": {"nom_de_la_commune": "FRECHOU", "libell_d_acheminement": "FRECHOU", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47103"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd8aa768b4c4385c777a1e05268f8659e620eef", "fields": {"nom_de_la_commune": "FRESPECH", "libell_d_acheminement": "FRESPECH", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47105"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9097fd3a6356ff8c4d26ea3ba32e16fcbc7147", "fields": {"nom_de_la_commune": "GRANGES SUR LOT", "libell_d_acheminement": "GRANGES SUR LOT", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47111"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823735b62b58df845b9c058a627b00cefde22d9b", "fields": {"nom_de_la_commune": "LABRETONIE", "libell_d_acheminement": "LABRETONIE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47122"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087dab39b0b8f95396f119c97b531c165924b9fb", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LACHAPELLE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47126"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efdb04abf4c74fcd676d40d2b51dcde781015c6d", "fields": {"code_postal": "47170", "code_commune_insee": "47134", "libell_d_acheminement": "LANNES", "ligne_5": "VILLENEUVE DE MEZIN", "nom_de_la_commune": "LANNES", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114663abe162629b5033efa9aee9cf8c413f241b", "fields": {"nom_de_la_commune": "LAPLUME", "libell_d_acheminement": "LAPLUME", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47137"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898dd96c049540ce2af5473023a9d306312056a7", "fields": {"nom_de_la_commune": "LAYRAC", "libell_d_acheminement": "LAYRAC", "code_postal": "47390", "coordonnees_gps": [44.1202976189, 0.654195230069], "code_commune_insee": "47145"}, "geometry": {"type": "Point", "coordinates": [0.654195230069, 44.1202976189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f98e3cdafb7dd09a58372cbb9e07f1643f6a83", "fields": {"nom_de_la_commune": "LE MAS D AGENAIS", "libell_d_acheminement": "LE MAS D AGENAIS", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47159"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759a30e47ab789137f3b09a5ad58261f9d33277f", "fields": {"nom_de_la_commune": "MAZIERES NARESSE", "libell_d_acheminement": "MAZIERES NARESSE", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47164"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba67227cfd71a2aa7bffad767f5b65b60dfa3541", "fields": {"nom_de_la_commune": "MIRAMONT DE GUYENNE", "libell_d_acheminement": "MIRAMONT DE GUYENNE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47168"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1aa18456b1050cf253459f117411b1644ddec3a", "fields": {"nom_de_la_commune": "MONSEMPRON LIBOS", "libell_d_acheminement": "MONSEMPRON LIBOS", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47179"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0a3a86e1c79cee8b6db7efc00fd2923d79f050", "fields": {"nom_de_la_commune": "MONTAGNAC SUR AUVIGNON", "libell_d_acheminement": "MONTAGNAC SUR AUVIGNON", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47180"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4d7dd25a7ae8082e8830a959fae3562c868965", "fields": {"nom_de_la_commune": "MONTAGNAC SUR LEDE", "libell_d_acheminement": "MONTAGNAC SUR LEDE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47181"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457a7585fb314f64d6a615d0817e0e192e022c69", "fields": {"nom_de_la_commune": "MONTPEZAT", "libell_d_acheminement": "MONTPEZAT", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47190"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a727c6ce8a4dae302ae50026f57279fc4aab0588", "fields": {"nom_de_la_commune": "PENNE D AGENAIS", "libell_d_acheminement": "PENNE D AGENAIS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47203"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3876f6c9eb5c472e80acbdcf02be3f1f1f91d86", "fields": {"nom_de_la_commune": "PEYRIERE", "libell_d_acheminement": "PEYRIERE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47204"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1727bf9da4ee19a4b43bbb9e24ddee57c5efff06", "fields": {"code_postal": "47380", "code_commune_insee": "47206", "libell_d_acheminement": "PINEL HAUTERIVE", "ligne_5": "ST PIERRE DE CAUBEL", "nom_de_la_commune": "PINEL HAUTERIVE", "coordonnees_gps": [44.4800576934, 0.508511955035]}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a55fef06e4013670da5c5ba9938077534862fc", "fields": {"nom_de_la_commune": "PRAYSSAS", "libell_d_acheminement": "PRAYSSAS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47213"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c00b7a6aa820bf41ddbc7842e4a7d73c0da0d88", "fields": {"nom_de_la_commune": "RAZIMET", "libell_d_acheminement": "RAZIMET", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47220"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e276b94d009153afc961bb2629c8371caac447b0", "fields": {"nom_de_la_commune": "RIVES", "libell_d_acheminement": "RIVES", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47223"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d424ea1e1f2febda9db7a5e1ba38d3653319b1", "fields": {"nom_de_la_commune": "ROUMAGNE", "libell_d_acheminement": "ROUMAGNE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47226"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d545cb5818deba41806fc1bdf82b2651bc66841", "fields": {"nom_de_la_commune": "ST BARTHELEMY D AGENAIS", "libell_d_acheminement": "ST BARTHELEMY D AGENAIS", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47232"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe6500c0149e1af1b67fa4f65cc7c5b99a742c9", "fields": {"nom_de_la_commune": "STE BAZEILLE", "libell_d_acheminement": "STE BAZEILLE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47233"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebab6a9f27f0853d4cb2c88ada468028332f9921", "fields": {"nom_de_la_commune": "ST HILAIRE DE LUSIGNAN", "libell_d_acheminement": "ST HILAIRE DE LUSIGNAN", "code_postal": "47450", "coordonnees_gps": [44.2392176007, 0.551719264146], "code_commune_insee": "47246"}, "geometry": {"type": "Point", "coordinates": [0.551719264146, 44.2392176007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7bd93ef3a711c3349d106b52a7b421c5da0ce89", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47250"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13bed177866803bcc7fd762200009bf0f28fb27", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47251"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3368b07db29cf1167fab1181722e71a9942ef510", "fields": {"nom_de_la_commune": "ST MARTIN CURTON", "libell_d_acheminement": "ST MARTIN CURTON", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47254"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b4cc170336e9557a674244e3e94d46fb4dbeaa", "fields": {"nom_de_la_commune": "ST PE ST SIMON", "libell_d_acheminement": "ST PE ST SIMON", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47266"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39799722a2b6fbe2775489812b0609bf43313c99", "fields": {"nom_de_la_commune": "ST PIERRE DE CLAIRAC", "libell_d_acheminement": "ST PIERRE DE CLAIRAC", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47269"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc71d5c8f76a3629abc129df90378c3ff62ad15", "fields": {"nom_de_la_commune": "ST SAUVEUR DE MEILHAN", "libell_d_acheminement": "ST SAUVEUR DE MEILHAN", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47277"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f2fdbf840cc04a4885626ba66416b07393f1b9", "fields": {"nom_de_la_commune": "ST SYLVESTRE SUR LOT", "libell_d_acheminement": "ST SYLVESTRE SUR LOT", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47280"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ce83bfd30a4df0c64ab103956722e707a707f1", "fields": {"nom_de_la_commune": "LA SAUVETAT DE SAVERES", "libell_d_acheminement": "LA SAUVETAT DE SAVERES", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47289"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1cbd3448e3739751cec53ee1c9a8a7c0ad75d5", "fields": {"nom_de_la_commune": "LA SAUVETAT DU DROPT", "libell_d_acheminement": "LA SAUVETAT DU DROPT", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47290"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e22a1dd33ccbbc657f3104b6d99056e0077f12", "fields": {"nom_de_la_commune": "SAVIGNAC DE DURAS", "libell_d_acheminement": "SAVIGNAC DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47294"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc86abfd61b79cb11f27f83188e0f1b04f4d3072", "fields": {"nom_de_la_commune": "SERIGNAC PEBOUDOU", "libell_d_acheminement": "SERIGNAC PEBOUDOU", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47299"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df175a05fda998bb8b7651ffb71d415bc3e625c", "fields": {"nom_de_la_commune": "SEYCHES", "libell_d_acheminement": "SEYCHES", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47301"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1ca9c4be4453b8bcf387e1b34384a2662b90fb", "fields": {"nom_de_la_commune": "ALBARET LE COMTAL", "libell_d_acheminement": "ALBARET LE COMTAL", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48001"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6234608f0e9ab9aaeed4df1deaba6de0f91e46c", "fields": {"nom_de_la_commune": "ALBARET STE MARIE", "libell_d_acheminement": "ALBARET STE MARIE", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48002"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6657489024c7dc30d0fbb4a87abacb1fe3a81793", "fields": {"nom_de_la_commune": "ALLENC", "libell_d_acheminement": "ALLENC", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48003"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cd38531bd54b5b2122ba9df3dff281fbfe435e", "fields": {"nom_de_la_commune": "AUROUX", "libell_d_acheminement": "AUROUX", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48010"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5b0784eb214a3e53c9779816496b6def599ebd", "fields": {"nom_de_la_commune": "BADAROUX", "libell_d_acheminement": "BADAROUX", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48013"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5de38b89b9c586de93a11416f4a69a20f5436a8", "fields": {"nom_de_la_commune": "LES BONDONS", "libell_d_acheminement": "LES BONDONS", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48028"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1304cfc5dd02a96218e5531505ac38d863836134", "fields": {"nom_de_la_commune": "CULTURES", "libell_d_acheminement": "CULTURES", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48055"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62eb5e6ad78bbb0df1e74214c67546f8f41bc742", "fields": {"nom_de_la_commune": "ESTABLES", "libell_d_acheminement": "ESTABLES", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48057"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f44c5d308146f3f64453267399045a8c0f7aef", "fields": {"nom_de_la_commune": "FRAISSINET DE FOURQUES", "libell_d_acheminement": "FRAISSINET DE FOURQUES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48065"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325fc7e671099e991eaf17f908237ae42df001fe", "fields": {"nom_de_la_commune": "GABRIAS", "libell_d_acheminement": "GABRIAS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48068"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a27b1614f6d5cb923300a9d9e545464f856ded", "fields": {"nom_de_la_commune": "GRANDRIEU", "libell_d_acheminement": "GRANDRIEU", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48070"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f24ce3b42b547288934ac9857f89b8cf109ba2", "fields": {"nom_de_la_commune": "LES HERMAUX", "libell_d_acheminement": "LES HERMAUX", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48073"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694a35f3ed55ce6e04f59cc4626d9a5ddfa8030a", "fields": {"nom_de_la_commune": "JULIANGES", "libell_d_acheminement": "JULIANGES", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48077"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0feac092e7ef0caaccea4c89a7d922d6b749bce7", "fields": {"nom_de_la_commune": "MAS D ORCIERES", "libell_d_acheminement": "MAS D ORCIERES", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48093"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b30bfd3bdbdf56ffa705d39ea563676899592b4", "fields": {"nom_de_la_commune": "MONTRODAT", "libell_d_acheminement": "MONTRODAT", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48103"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f1def6a4eb84987b65f587e948df6dbd31f30f", "fields": {"nom_de_la_commune": "PRUNIERES", "libell_d_acheminement": "PRUNIERES", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48121"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d90237cf5d211f2b2d1f1bcde4fed0a1420ea7a2", "fields": {"nom_de_la_commune": "RECOULES DE FUMAS", "libell_d_acheminement": "RECOULES DE FUMAS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48124"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa24a80efddcf73f9d91b1ad16736b3ddfae41c8", "fields": {"nom_de_la_commune": "LE ROZIER", "libell_d_acheminement": "LE ROZIER", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48131"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda4a26155922af8797792ba326238c9606c1241", "fields": {"nom_de_la_commune": "ST ANDRE CAPCEZE", "libell_d_acheminement": "ST ANDRE CAPCEZE", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48135"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c25e479f2ece5aac6ec74610d466f7799da887b", "fields": {"code_postal": "48600", "code_commune_insee": "48139", "libell_d_acheminement": "ST BONNET DE MONTAUROUX", "ligne_5": "CHAPEAUROUX", "nom_de_la_commune": "ST BONNET DE MONTAUROUX", "coordonnees_gps": [44.7870474778, 3.63511389212]}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d732576b58e7b49e7906fa29fa9e269dca52b3", "fields": {"nom_de_la_commune": "ST CHELY D APCHER", "libell_d_acheminement": "ST CHELY D APCHER", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48140"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70598ac3cccc435f1fbc68d1304224487444b9c", "fields": {"nom_de_la_commune": "STE COLOMBE DE PEYRE", "libell_d_acheminement": "STE COLOMBE DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48142"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db864db13b83638433e6e602bf0ca9f616c2aba", "fields": {"nom_de_la_commune": "ST GAL", "libell_d_acheminement": "ST GAL", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48153"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb194463582c50fbebde452a8d22ff221b87a6ba", "fields": {"nom_de_la_commune": "CHATEAUVIEUX", "libell_d_acheminement": "CHATEAUVIEUX", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41042"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71849c2541a1341021ce559ba74d7152311b2f71", "fields": {"nom_de_la_commune": "CHATILLON SUR CHER", "libell_d_acheminement": "CHATILLON SUR CHER", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41043"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4300c90f162966ae897a8f22e6b874c19a9ebe45", "fields": {"nom_de_la_commune": "CHAUMONT SUR THARONNE", "libell_d_acheminement": "CHAUMONT SUR THARONNE", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41046"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a56e2d695b466429da46311856302e28b5610109", "fields": {"nom_de_la_commune": "CONAN", "libell_d_acheminement": "CONAN", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41057"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7571df8f38576ab0ea6e7e7cab8db8677f23ba53", "fields": {"nom_de_la_commune": "CONCRIERS", "libell_d_acheminement": "CONCRIERS", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41058"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74327a475bf938efdd7b96a6f017ed8d02ae116c", "fields": {"nom_de_la_commune": "COULANGES", "libell_d_acheminement": "COULANGES", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41064"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7ccc09135af723dac8b997ec4dd4d803408b20", "fields": {"nom_de_la_commune": "COURBOUZON", "libell_d_acheminement": "COURBOUZON", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41066"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3107d7a25bc7e35f19f7bba600f62fe9b3d5fb8b", "fields": {"nom_de_la_commune": "COUTURE SUR LOIR", "libell_d_acheminement": "COUTURE SUR LOIR", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41070"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9d21fd500a0dc48b467565b5fb4113f849d068", "fields": {"nom_de_la_commune": "CRUCHERAY", "libell_d_acheminement": "CRUCHERAY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41072"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0291b525334ca6c60ba94350e32e8e6f86d6f88", "fields": {"nom_de_la_commune": "LES ESSARTS", "libell_d_acheminement": "LES ESSARTS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41079"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5bd98e469fd05dd792a874e68b5aa0b8e8ce776", "fields": {"nom_de_la_commune": "FONTAINES EN SOLOGNE", "libell_d_acheminement": "FONTAINES EN SOLOGNE", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41086"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f9afeb3297a160617cdb748ce7fbf9bf930e35", "fields": {"nom_de_la_commune": "LA FONTENELLE", "libell_d_acheminement": "LA FONTENELLE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41089"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4693803d4eaf2b1ab808e9aa51e1413a283eead4", "fields": {"nom_de_la_commune": "FOSSE", "libell_d_acheminement": "FOSSE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41091"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c92deee017028eceaf40734b0ffe4936a54930b", "fields": {"nom_de_la_commune": "FOUGERES SUR BIEVRE", "libell_d_acheminement": "FOUGERES SUR BIEVRE", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41092"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b14c5bb5fdeb9205fa12c58a25bbc5ebd314cdb", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41094"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c4e3060c4d33eeca47bbf94bc410cd0c1e0950", "fields": {"nom_de_la_commune": "LES HAYES", "libell_d_acheminement": "LES HAYES", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41100"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5ef22f7a2723037ae290792a63c102228400d2", "fields": {"nom_de_la_commune": "HUISSEAU EN BEAUCE", "libell_d_acheminement": "HUISSEAU EN BEAUCE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41103"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba0c96d8ff1614dcc48e4e765f98c842eb25962", "fields": {"nom_de_la_commune": "HUISSEAU SUR COSSON", "libell_d_acheminement": "HUISSEAU SUR COSSON", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41104"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e96aff09d46a7213a2104d2265ac5f1eca7454", "fields": {"nom_de_la_commune": "LANCOME", "libell_d_acheminement": "LANCOME", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41108"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecc605d09be0c6dde012d6aacb60767b316c1f0e", "fields": {"nom_de_la_commune": "LANDES LE GAULOIS", "libell_d_acheminement": "LANDES LE GAULOIS", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41109"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c645b2b4bc614352e53781048d2ebd979b5b15a9", "fields": {"nom_de_la_commune": "LOREUX", "libell_d_acheminement": "LOREUX", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41118"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c27edf8eca7e63d0179f244116a73c05815875e", "fields": {"nom_de_la_commune": "MASLIVES", "libell_d_acheminement": "MASLIVES", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41129"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d9c43f2ae71af6c6bb4476539e0040dd70cd55b", "fields": {"nom_de_la_commune": "MENNETOU SUR CHER", "libell_d_acheminement": "MENNETOU SUR CHER", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41135"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93fb2a4cc2e2e34d0c01d624cbf640d7a99ae17d", "fields": {"code_postal": "41190", "code_commune_insee": "41142", "libell_d_acheminement": "VALENCISSE", "ligne_5": "ORCHAISE", "nom_de_la_commune": "VALENCISSE", "coordonnees_gps": [47.6158784323, 1.13032503262]}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba0d463ee8d067edfd04eb3f1e42ac3a4257536", "fields": {"nom_de_la_commune": "MONDOUBLEAU", "libell_d_acheminement": "MONDOUBLEAU", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41143"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f9f48b0382ab2db15c8e253f4bd654b537342f", "fields": {"code_postal": "41400", "code_commune_insee": "41151", "libell_d_acheminement": "MONTRICHARD VAL DE CHER", "ligne_5": "BOURRE", "nom_de_la_commune": "MONTRICHARD VAL DE CHER", "coordonnees_gps": [47.3654199665, 1.20385620984]}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80f43114071d7ff9832d1c0cbdb402e67a3ce470", "fields": {"nom_de_la_commune": "MULSANS", "libell_d_acheminement": "MULSANS", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41156"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54350a2858b40e03397037f40adbfcfd42338a8a", "fields": {"nom_de_la_commune": "NOUAN LE FUZELIER", "libell_d_acheminement": "NOUAN LE FUZELIER", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41161"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18a415932228ef0b66d58128e9e046a78a2b320", "fields": {"nom_de_la_commune": "ONZAIN", "libell_d_acheminement": "ONZAIN", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41167"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e72628e4214ec7efaa3d3befe54ef2dc54ea045", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41174"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904abc00f2c77ac37574b3f8a157699b88a6048a", "fields": {"nom_de_la_commune": "LE PLESSIS L ECHELLE", "libell_d_acheminement": "LE PLESSIS L ECHELLE", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41178"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f1c72eac2eb5a7269ae0b39bd51e4ef12bc62e", "fields": {"nom_de_la_commune": "ROMILLY", "libell_d_acheminement": "ROMILLY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41193"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2760f99d4cb5a43ec3f6a738487b1eb9926557", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41200"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316f820e2611e8368c7bb1cdcadbe36524fb2424", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41202"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d086e9cebdfdda579d0b9253e9ba2f4b9cb116a", "fields": {"nom_de_la_commune": "ST CLAUDE DE DIRAY", "libell_d_acheminement": "ST CLAUDE DE DIRAY", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41204"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7949d250d43305ed644d7261386698749ec1709c", "fields": {"nom_de_la_commune": "ST DYE SUR LOIRE", "libell_d_acheminement": "ST DYE SUR LOIRE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41207"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dde0e6171c7d0a5f5b5873168194def8de4147", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41222"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2440ff008e20579cd70c77733dd356865a6f34f3", "fields": {"nom_de_la_commune": "ST OUEN", "libell_d_acheminement": "ST OUEN", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41226"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763cc9bd88116915e906b459e4234394fec5c8e1", "fields": {"nom_de_la_commune": "SASSAY", "libell_d_acheminement": "SASSAY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41237"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93454fd68edc3d5fb028bd77d47cf714206e8f4", "fields": {"nom_de_la_commune": "SEIGY", "libell_d_acheminement": "SEIGY", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41239"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f547199a891031b90e9df644df375d21d2adae9", "fields": {"nom_de_la_commune": "THORE LA ROCHETTE", "libell_d_acheminement": "THORE LA ROCHETTE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41259"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c6dc8ff70b17eb1cf2e03c82d4f52ecda72c53", "fields": {"nom_de_la_commune": "VENDOME", "libell_d_acheminement": "VENDOME", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41269"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86d79e174e37bda3ac27d134301b29c07e084aeb", "fields": {"nom_de_la_commune": "VILLEBAROU", "libell_d_acheminement": "VILLEBAROU", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41276"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ac323c25948fda949d89b82945a3bc666253d4", "fields": {"nom_de_la_commune": "VILLEMARDY", "libell_d_acheminement": "VILLEMARDY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41283"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2834a5bad494f1b3780f7a8cfb5d336f78e160da", "fields": {"nom_de_la_commune": "VILLETRUN", "libell_d_acheminement": "VILLETRUN", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41291"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d1ec397f987845710691fbb54991067ecae77e", "fields": {"nom_de_la_commune": "VILLIERS SUR LOIR", "libell_d_acheminement": "VILLIERS SUR LOIR", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41294"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7566a3abeea7c74b2159308befd438d138abf72c", "fields": {"nom_de_la_commune": "VINEUIL", "libell_d_acheminement": "VINEUIL", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41295"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b183b866f84dfce9dd949687652beacd18fff97d", "fields": {"nom_de_la_commune": "ABOEN", "libell_d_acheminement": "ABOEN", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42001"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167bda4c433003581858e710755ec8a03ef671df", "fields": {"nom_de_la_commune": "AILLEUX", "libell_d_acheminement": "AILLEUX", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42002"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8485fed5c6280d0b9c3b791f45dc16d553997c", "fields": {"nom_de_la_commune": "AMIONS", "libell_d_acheminement": "AMIONS", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42004"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eac5a7054e559477c33626457a5309aed22681b", "fields": {"nom_de_la_commune": "APINAC", "libell_d_acheminement": "APINAC", "code_postal": "42550", "coordonnees_gps": [45.3920060669, 3.94898861156], "code_commune_insee": "42006"}, "geometry": {"type": "Point", "coordinates": [3.94898861156, 45.3920060669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77c4ccfdd14df7a1a6b248809f686789be6b9cd", "fields": {"nom_de_la_commune": "ARCON", "libell_d_acheminement": "ARCON", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42008"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ecdd422652426b24f2b8ea81c355836784e84e", "fields": {"nom_de_la_commune": "LA BENISSON DIEU", "libell_d_acheminement": "LA BENISSON DIEU", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42016"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a3972e80cfbecbb2b0ed8d45b094df04bf7e2d1", "fields": {"nom_de_la_commune": "BESSEY", "libell_d_acheminement": "BESSEY", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42018"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f9891a1123b6766c2d522d7dac4b6924db9989", "fields": {"nom_de_la_commune": "BULLY", "libell_d_acheminement": "BULLY", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42027"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0427a5e5e78563ebb90efa6b1be0951ab04b228b", "fields": {"nom_de_la_commune": "LA CHAMBA", "libell_d_acheminement": "LA CHAMBA", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42040"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d012b10d37edd588f2b981a37fcf80c60144a1e2", "fields": {"nom_de_la_commune": "CHERIER", "libell_d_acheminement": "CHERIER", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42061"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb75a90a2a4b60e13e4986ded2d21d1b67c0ab3", "fields": {"nom_de_la_commune": "CIVENS", "libell_d_acheminement": "CIVENS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42065"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166a31984362b0ad2488008dc4ca494204cf0715", "fields": {"nom_de_la_commune": "CLEPPE", "libell_d_acheminement": "CLEPPE", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42066"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de3947e91005a258ea22ee2f467f211f444ed3b", "fields": {"nom_de_la_commune": "CORDELLE", "libell_d_acheminement": "CORDELLE", "code_postal": "42123", "coordonnees_gps": [45.9494163931, 4.07525689543], "code_commune_insee": "42070"}, "geometry": {"type": "Point", "coordinates": [4.07525689543, 45.9494163931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a6e7b6b1e45b6c28e8653483eab63ee275f84f", "fields": {"nom_de_la_commune": "LE CROZET", "libell_d_acheminement": "LE CROZET", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42078"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2979c7b56f4fd3533ed5aa3ab0b438b9ff7fc930", "fields": {"nom_de_la_commune": "DEBATS RIVIERE D ORPRA", "libell_d_acheminement": "DEBATS RIVIERE D ORPRA", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42084"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a33cdc96b3509464004b1547e114134c94d449", "fields": {"nom_de_la_commune": "ESSERTINES EN CHATELNEUF", "libell_d_acheminement": "ESSERTINES EN CHATELNEUF", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42089"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbfc6d2c6cec6740c1fedbb33ada3e7ddd484d9", "fields": {"nom_de_la_commune": "FEURS", "libell_d_acheminement": "FEURS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42094"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcdcd7e66a073f878f217a602baa712c611a6e52", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42096"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c0a801fc9dc902c71f4f8050a43dce4c6baabc", "fields": {"nom_de_la_commune": "SAVOISY", "libell_d_acheminement": "SAVOISY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21594"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba615f93f687ad7c9198a85db37467475c3c5d47", "fields": {"nom_de_la_commune": "SOMBERNON", "libell_d_acheminement": "SOMBERNON", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21611"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229c1df01ddde896b8fac0d563a4804c11b2a3ce", "fields": {"nom_de_la_commune": "SOUSSEY SUR BRIONNE", "libell_d_acheminement": "SOUSSEY SUR BRIONNE", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21613"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b0ba981219e33ff0574e86eb70074a77edd6b3", "fields": {"code_postal": "21430", "code_commune_insee": "21615", "libell_d_acheminement": "SUSSEY", "ligne_5": "LE MAUPAS", "nom_de_la_commune": "SUSSEY", "coordonnees_gps": [47.1707376827, 4.30105737278]}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b637f564833fd430394831e99b1edb776fff574", "fields": {"nom_de_la_commune": "TALANT", "libell_d_acheminement": "TALANT", "code_postal": "21240", "coordonnees_gps": [47.3390347486, 4.99726805025], "code_commune_insee": "21617"}, "geometry": {"type": "Point", "coordinates": [4.99726805025, 47.3390347486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c462b15473b80976dd667470124620db29a6176", "fields": {"nom_de_la_commune": "TART LE HAUT", "libell_d_acheminement": "TART LE HAUT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21623"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79fe0ec1935e209ffdb4dd656b31653f5715ebda", "fields": {"nom_de_la_commune": "TELLECEY", "libell_d_acheminement": "TELLECEY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21624"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573dff994196fafb135c4598dc72c23ca12bebbd", "fields": {"nom_de_la_commune": "TERNANT", "libell_d_acheminement": "TERNANT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21625"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "342d94c9fca61e3eb481db55bc63c82f24db0178", "fields": {"nom_de_la_commune": "THENISSEY", "libell_d_acheminement": "THENISSEY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21627"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04d3ae55d2466dffe006740359eba0e3cf961a3", "fields": {"nom_de_la_commune": "VARANGES", "libell_d_acheminement": "VARANGES", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21656"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57659f65949fee2717dc459b6a4c557e603d94f2", "fields": {"nom_de_la_commune": "VENAREY LES LAUMES", "libell_d_acheminement": "VENAREY LES LAUMES", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21663"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7e316f16fad9aa67d771c9dddcdf0cbfb7f910", "fields": {"code_postal": "21150", "code_commune_insee": "21663", "libell_d_acheminement": "VENAREY LES LAUMES", "ligne_5": "LES LAUMES", "nom_de_la_commune": "VENAREY LES LAUMES", "coordonnees_gps": [47.5309324126, 4.52615532844]}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbdff5b1f4853882eb8a22ec78cc8b8e741779fd", "fields": {"code_postal": "21260", "code_commune_insee": "21667", "libell_d_acheminement": "VERONNES", "ligne_5": "VERONNES LES PETITES", "nom_de_la_commune": "VERONNES", "coordonnees_gps": [47.5891653686, 5.22743421512]}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "098c6e7d79fc997d52e7de2340d4b94271c578d0", "fields": {"nom_de_la_commune": "VERREY SOUS DREE", "libell_d_acheminement": "VERREY SOUS DREE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21669"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2110ca17479a253a609334d04c2a1f9306397037", "fields": {"nom_de_la_commune": "VERREY SOUS SALMAISE", "libell_d_acheminement": "VERREY SOUS SALMAISE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21670"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b69981b999614d852d09b0c06f1f5ceb8e69333", "fields": {"nom_de_la_commune": "VIEILMOULIN", "libell_d_acheminement": "VIEILMOULIN", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21679"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b6ef7da7fcb063223d3ae942f4c0d2031b85b2e", "fields": {"nom_de_la_commune": "VILLARGOIX", "libell_d_acheminement": "VILLARGOIX", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21687"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c38bb6b6bcb2f9713ff551bc2176d502510adf3", "fields": {"nom_de_la_commune": "VILLEBERNY", "libell_d_acheminement": "VILLEBERNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21690"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f9a315bbe2b8830a0eaf0296cece50e9280148", "fields": {"nom_de_la_commune": "VILLENEUVE SOUS CHARIGNY", "libell_d_acheminement": "VILLENEUVE SOUS CHARIGNY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21696"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1266d6286dc680c4e87ace639f0574be618c98", "fields": {"nom_de_la_commune": "VILLERS LA FAYE", "libell_d_acheminement": "VILLERS LA FAYE", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21698"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06215944c6d0bb4270883b055783bbbc28e618b", "fields": {"nom_de_la_commune": "VILLY LE MOUTIER", "libell_d_acheminement": "VILLY LE MOUTIER", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21708"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6d5d0569cb27f145d0c2386c2b63e9d9df1c69", "fields": {"nom_de_la_commune": "VOSNE ROMANEE", "libell_d_acheminement": "VOSNE ROMANEE", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21714"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22147ae3088611c868f7648df68284036b97d506", "fields": {"nom_de_la_commune": "ALLINEUC", "libell_d_acheminement": "ALLINEUC", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22001"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250155929d4e7f5023dfb42546512bfc1d0e86d1", "fields": {"nom_de_la_commune": "AUCALEUC", "libell_d_acheminement": "AUCALEUC", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22003"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de0512bc993cbbf8793b287f9b8dc6dae936e6ef", "fields": {"nom_de_la_commune": "BOURSEUL", "libell_d_acheminement": "BOURSEUL", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22014"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95025e81fe1f77a71db6fecbe9d3342d80d0070f", "fields": {"nom_de_la_commune": "BULAT PESTIVIEN", "libell_d_acheminement": "BULAT PESTIVIEN", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22023"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50235f8e66639d9e67945023dcf4bdebbf5af3dd", "fields": {"nom_de_la_commune": "CANIHUEL", "libell_d_acheminement": "CANIHUEL", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22029"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de73db7b1f6e1dcf3e2a109178b9c20d2006c9f9", "fields": {"nom_de_la_commune": "LES CHAMPS GERAUX", "libell_d_acheminement": "LES CHAMPS GERAUX", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22035"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015c78266c6ff4d1496bc417afee381ede43a713", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "ST JACUT DU MENE", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812ad6c6e450e395c1f353d3c3a1f913a999a958", "fields": {"nom_de_la_commune": "CORSEUL", "libell_d_acheminement": "CORSEUL", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22048"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6a3a09193f3b1821a3b1d9153151b21425c905", "fields": {"nom_de_la_commune": "CREHEN", "libell_d_acheminement": "CREHEN", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22049"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed4ae30894b82e204ac43a52170245ef88b3c0d", "fields": {"nom_de_la_commune": "ERQUY", "libell_d_acheminement": "ERQUY", "code_postal": "22430", "coordonnees_gps": [48.6189302635, -2.45852814283], "code_commune_insee": "22054"}, "geometry": {"type": "Point", "coordinates": [-2.45852814283, 48.6189302635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ab089bc53a2cb9b5739f1975abcbb5a3b54737", "fields": {"code_postal": "22430", "code_commune_insee": "22054", "libell_d_acheminement": "ERQUY", "ligne_5": "CAROUAL", "nom_de_la_commune": "ERQUY", "coordonnees_gps": [48.6189302635, -2.45852814283]}, "geometry": {"type": "Point", "coordinates": [-2.45852814283, 48.6189302635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1dc54bf37c6a79e44bfbf470dc095e9e6ff6f6", "fields": {"nom_de_la_commune": "LE FAOUET", "libell_d_acheminement": "LE FAOUET", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22057"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10513bea6961115d642b92f312d00b266b2bb6da", "fields": {"nom_de_la_commune": "GOMENE", "libell_d_acheminement": "GOMENE", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22062"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fc6766da51851795504dac87202af74ff4addf", "fields": {"nom_de_la_commune": "VARZY", "libell_d_acheminement": "VARZY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58304"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd93b9c83bb83701fa6db560076059fc08ec4ef7", "fields": {"nom_de_la_commune": "ABANCOURT", "libell_d_acheminement": "ABANCOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59001"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0656f0a0dea8c8e274c22bcaefa17a81a1d0b6", "fields": {"nom_de_la_commune": "AIX", "libell_d_acheminement": "AIX", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59004"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330998049b0b5672d07471736dcc64a2edc50864", "fields": {"nom_de_la_commune": "VILLENEUVE D ASCQ", "libell_d_acheminement": "VILLENEUVE D ASCQ", "code_postal": "59493", "coordonnees_gps": [50.6323253006, 3.15291340611], "code_commune_insee": "59009"}, "geometry": {"type": "Point", "coordinates": [3.15291340611, 50.6323253006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd6ec1aca77219720f5c26b4d202a763d6b76bb5", "fields": {"nom_de_la_commune": "ANOR", "libell_d_acheminement": "ANOR", "code_postal": "59186", "coordonnees_gps": [49.9951527515, 4.11798958936], "code_commune_insee": "59012"}, "geometry": {"type": "Point", "coordinates": [4.11798958936, 49.9951527515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253053c5773410524d71176ff078007fc2a315be", "fields": {"nom_de_la_commune": "ARMENTIERES", "libell_d_acheminement": "ARMENTIERES", "code_postal": "59280", "coordonnees_gps": [50.6683510107, 2.87630050545], "code_commune_insee": "59017"}, "geometry": {"type": "Point", "coordinates": [2.87630050545, 50.6683510107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c7d9daa16c906487ea68d8d9f0fd4111379e2d", "fields": {"nom_de_la_commune": "ARNEKE", "libell_d_acheminement": "ARNEKE", "code_postal": "59285", "coordonnees_gps": [50.8315857512, 2.37917573107], "code_commune_insee": "59018"}, "geometry": {"type": "Point", "coordinates": [2.37917573107, 50.8315857512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755603a3139ad0a09eccfb62e1b10c0a6b0f151f", "fields": {"nom_de_la_commune": "AUBRY DU HAINAUT", "libell_d_acheminement": "AUBRY DU HAINAUT", "code_postal": "59494", "coordonnees_gps": [50.3753696067, 3.46424091997], "code_commune_insee": "59027"}, "geometry": {"type": "Point", "coordinates": [3.46424091997, 50.3753696067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c663fae09901c09f33f0aac159dd1ebc2108d3fa", "fields": {"nom_de_la_commune": "AUDIGNIES", "libell_d_acheminement": "AUDIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59031"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a5ee2d846287ab79c08fc17780dab003b23d9d", "fields": {"nom_de_la_commune": "AVESNES SUR HELPE", "libell_d_acheminement": "AVESNES SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59036"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1434f6698790111fac76cc0d51da85760a2d35aa", "fields": {"nom_de_la_commune": "AVESNES LE SEC", "libell_d_acheminement": "AVESNES LE SEC", "code_postal": "59296", "coordonnees_gps": [50.2482297165, 3.37116225953], "code_commune_insee": "59038"}, "geometry": {"type": "Point", "coordinates": [3.37116225953, 50.2482297165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e413aab2561c94874ed8c75afb9dd3ec64bc332", "fields": {"nom_de_la_commune": "BAILLEUL", "libell_d_acheminement": "BAILLEUL", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59043"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65b65064a279516e0eb67cd631bcaf88f3b30cb", "fields": {"nom_de_la_commune": "BAIVES", "libell_d_acheminement": "BAIVES", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59045"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41457aa7ab0b2fd837c8f29f5e9eb7fe007011f", "fields": {"nom_de_la_commune": "BAMBECQUE", "libell_d_acheminement": "BAMBECQUE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59046"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d6680965f420d1fa05e87b254f81fcdb738a44", "fields": {"nom_de_la_commune": "BANTOUZELLE", "libell_d_acheminement": "BANTOUZELLE", "code_postal": "59266", "coordonnees_gps": [50.0472384043, 3.20499874057], "code_commune_insee": "59049"}, "geometry": {"type": "Point", "coordinates": [3.20499874057, 50.0472384043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49f1a9913e4fdb3feda7e066f10b33fa721903f", "fields": {"nom_de_la_commune": "BAVINCHOVE", "libell_d_acheminement": "BAVINCHOVE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59054"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4019bce6f203b164208c8054a1ed0dec75b89f76", "fields": {"nom_de_la_commune": "BEAURIEUX", "libell_d_acheminement": "BEAURIEUX", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59062"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec91625bab1ab91c7b8f40a62516964e3106562", "fields": {"nom_de_la_commune": "BELLAING", "libell_d_acheminement": "BELLAING", "code_postal": "59135", "coordonnees_gps": [50.3789593982, 3.39834366175], "code_commune_insee": "59064"}, "geometry": {"type": "Point", "coordinates": [3.39834366175, 50.3789593982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffc0b1140592f8f5f308d0e4bce8f882daba96d", "fields": {"nom_de_la_commune": "BEVILLERS", "libell_d_acheminement": "BEVILLERS", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59081"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9e1801625f826c156887d6c6046e84d8216ad8", "fields": {"nom_de_la_commune": "BONDUES", "libell_d_acheminement": "BONDUES", "code_postal": "59910", "coordonnees_gps": [50.7097709499, 3.09551042829], "code_commune_insee": "59090"}, "geometry": {"type": "Point", "coordinates": [3.09551042829, 50.7097709499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eec189298cc133506dc0be214b6d0389034d309", "fields": {"nom_de_la_commune": "BRAY DUNES", "libell_d_acheminement": "BRAY DUNES", "code_postal": "59123", "coordonnees_gps": [51.0709279733, 2.51756699208], "code_commune_insee": "59107"}, "geometry": {"type": "Point", "coordinates": [2.51756699208, 51.0709279733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99553e7f946d4b147ee479f48a11e90bd86b2aa", "fields": {"nom_de_la_commune": "BRIASTRE", "libell_d_acheminement": "BRIASTRE", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59108"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb292764b0edabe700f62618b675c06ee8a8a9c4", "fields": {"nom_de_la_commune": "BRUAY SUR L ESCAUT", "libell_d_acheminement": "BRUAY SUR L ESCAUT", "code_postal": "59860", "coordonnees_gps": [50.3972882388, 3.53799089043], "code_commune_insee": "59112"}, "geometry": {"type": "Point", "coordinates": [3.53799089043, 50.3972882388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ef708aa5b7034fc3a5103f83c010441d407453", "fields": {"nom_de_la_commune": "CAMBRAI", "libell_d_acheminement": "CAMBRAI", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59122"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9acdd5809971ca4b2820cbf36b8cb8ff80587e", "fields": {"nom_de_la_commune": "CAPELLE", "libell_d_acheminement": "CAPELLE", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59127"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13790189e0c1bf608b254f7224370938e6fcd4e", "fields": {"nom_de_la_commune": "CAPPELLE BROUCK", "libell_d_acheminement": "CAPPELLE BROUCK", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59130"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2d18ded5a6e067928ef1d3d00e71e385dbc2a9", "fields": {"nom_de_la_commune": "CARNIN", "libell_d_acheminement": "CARNIN", "code_postal": "59112", "coordonnees_gps": [50.524811889, 2.93444929776], "code_commune_insee": "59133"}, "geometry": {"type": "Point", "coordinates": [2.93444929776, 50.524811889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82632878b531debb76d50d507baab858604fda1a", "fields": {"nom_de_la_commune": "CATTENIERES", "libell_d_acheminement": "CATTENIERES", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59138"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29134d51e948428c63fcf74f31cb1cd68da3ebf", "fields": {"nom_de_la_commune": "CERFONTAINE", "libell_d_acheminement": "CERFONTAINE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59142"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a61ec09c2b43b58e50ca191aae6821d8bd2ef78", "fields": {"nom_de_la_commune": "CHATEAU L ABBAYE", "libell_d_acheminement": "CHATEAU L ABBAYE", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59144"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7fa5ce239fd50ec2f51a0e8dc998bad9e39689d", "fields": {"nom_de_la_commune": "CHEMY", "libell_d_acheminement": "CHEMY", "code_postal": "59147", "coordonnees_gps": [50.5444177471, 2.98104516318], "code_commune_insee": "59145"}, "geometry": {"type": "Point", "coordinates": [2.98104516318, 50.5444177471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48d6df43418e18abc55f8ad7500e2eab9aa56bd", "fields": {"nom_de_la_commune": "COURCHELETTES", "libell_d_acheminement": "COURCHELETTES", "code_postal": "59552", "coordonnees_gps": [50.3521392693, 3.05547051543], "code_commune_insee": "59156"}, "geometry": {"type": "Point", "coordinates": [3.05547051543, 50.3521392693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01198df83def2b2313e494a18e0c7bb7f2ebf895", "fields": {"nom_de_la_commune": "CURGIES", "libell_d_acheminement": "CURGIES", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59166"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6161151a3caa5b14fb4b3cf7c6301dbda3687e2b", "fields": {"nom_de_la_commune": "CUVILLERS", "libell_d_acheminement": "CUVILLERS", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59167"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dbe692a476e64160b5cfdbce75bdc2b967a4682", "fields": {"nom_de_la_commune": "DENAIN", "libell_d_acheminement": "DENAIN", "code_postal": "59220", "coordonnees_gps": [50.331558265, 3.40464647794], "code_commune_insee": "59172"}, "geometry": {"type": "Point", "coordinates": [3.40464647794, 50.331558265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed2bb84bfc33f5f23131055e9efb8cc610adc8a", "fields": {"nom_de_la_commune": "DUNKERQUE", "libell_d_acheminement": "DUNKERQUE", "code_postal": "59240", "coordonnees_gps": [51.0306940868, 2.33760634], "code_commune_insee": "59183"}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e444928196b8b1937fac0004af15c9786220a91", "fields": {"code_postal": "59240", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "MALO LES BAINS", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780e6df57ef9ecaa92fc6fca38adf20e0671bedd", "fields": {"code_postal": "59240", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "ROSENDAEL", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ca84c36a73971a520039244bdd83c6d5014069", "fields": {"nom_de_la_commune": "EBBLINGHEM", "libell_d_acheminement": "EBBLINGHEM", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59184"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fdb28ffb606278f114b220c155e8ff176795afc", "fields": {"nom_de_la_commune": "ELESMES", "libell_d_acheminement": "ELESMES", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59190"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01679087fd7518ee57725c94771deb5c4cad535", "fields": {"nom_de_la_commune": "ELINCOURT", "libell_d_acheminement": "ELINCOURT", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59191"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1af791230454e8247769124a93a176407dea0fb", "fields": {"nom_de_la_commune": "ESCOBECQUES", "libell_d_acheminement": "ESCOBECQUES", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59208"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2198e5364b3e61d1e4af869c816828791fa4e485", "fields": {"nom_de_la_commune": "ESTREUX", "libell_d_acheminement": "ESTREUX", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59215"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "facb840eaebfcddb3be3267f58733842c1f4ddf1", "fields": {"nom_de_la_commune": "ESTRUN", "libell_d_acheminement": "ESTRUN", "code_postal": "59295", "coordonnees_gps": [50.2473645343, 3.27148479456], "code_commune_insee": "59219"}, "geometry": {"type": "Point", "coordinates": [3.27148479456, 50.2473645343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc3f9c0fff195865576a5184d42c63c166d1243", "fields": {"nom_de_la_commune": "FLOURSIES", "libell_d_acheminement": "FLOURSIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59240"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dcc1e64f4200a902549624b0741ecb27540f008", "fields": {"nom_de_la_commune": "FONTAINE AU BOIS", "libell_d_acheminement": "FONTAINE AU BOIS", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59242"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2726faf1087f6050c152676221ac74022f7280", "fields": {"nom_de_la_commune": "FONTAINE NOTRE DAME", "libell_d_acheminement": "FONTAINE NOTRE DAME", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59244"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a17e4db4c6a7b60cc69115f1e56c823dcbae8a1", "fields": {"nom_de_la_commune": "FRETIN", "libell_d_acheminement": "FRETIN", "code_postal": "59273", "coordonnees_gps": [50.5659829271, 3.1352270312], "code_commune_insee": "59256"}, "geometry": {"type": "Point", "coordinates": [3.1352270312, 50.5659829271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f0df3447961c54f64e187489ffead9a6e6fa84", "fields": {"nom_de_la_commune": "FROMELLES", "libell_d_acheminement": "FROMELLES", "code_postal": "59249", "coordonnees_gps": [50.6028600602, 2.83634213579], "code_commune_insee": "59257"}, "geometry": {"type": "Point", "coordinates": [2.83634213579, 50.6028600602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc2324e4fae7f52acd070f660c83ec3a4159c2b", "fields": {"nom_de_la_commune": "GODEWAERSVELDE", "libell_d_acheminement": "GODEWAERSVELDE", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59262"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03aa3b04526a8092a8354d46201ace767326d258", "fields": {"nom_de_la_commune": "GONNELIEU", "libell_d_acheminement": "GONNELIEU", "code_postal": "59231", "coordonnees_gps": [50.065671657, 3.13135649355], "code_commune_insee": "59267"}, "geometry": {"type": "Point", "coordinates": [3.13135649355, 50.065671657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e0279dca4c30ffb6a4e211212db69e4cc100469", "fields": {"nom_de_la_commune": "GRANDE SYNTHE", "libell_d_acheminement": "GRANDE SYNTHE", "code_postal": "59760", "coordonnees_gps": [51.0165890114, 2.29038510702], "code_commune_insee": "59271"}, "geometry": {"type": "Point", "coordinates": [2.29038510702, 51.0165890114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74daf2848921557c41b4b7e38b59e5522010e49", "fields": {"nom_de_la_commune": "HAMEL", "libell_d_acheminement": "HAMEL", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59280"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29558d8a3bfc7872ec4674cf2fd6704d22bf3cd0", "fields": {"nom_de_la_commune": "HAUTMONT", "libell_d_acheminement": "HAUTMONT", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59291"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63785c6178cdb21075f2ff12dab8fcfcf1f006ad", "fields": {"nom_de_la_commune": "HONDSCHOOTE", "libell_d_acheminement": "HONDSCHOOTE", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59309"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a54c3f02d36131adabfe791314ec8e0b06976876", "fields": {"nom_de_la_commune": "KILLEM", "libell_d_acheminement": "KILLEM", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59326"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541436a99fc5bb67a10ebcc84a6339697157eb2e", "fields": {"nom_de_la_commune": "LALLAING", "libell_d_acheminement": "LALLAING", "code_postal": "59167", "coordonnees_gps": [50.3862957696, 3.168388613], "code_commune_insee": "59327"}, "geometry": {"type": "Point", "coordinates": [3.168388613, 50.3862957696]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909115a8bc036fb957dc0f292480508e944405fc", "fields": {"nom_de_la_commune": "LAROUILLIES", "libell_d_acheminement": "LAROUILLIES", "code_postal": "59219", "coordonnees_gps": [50.0518032549, 3.92131798693], "code_commune_insee": "59333"}, "geometry": {"type": "Point", "coordinates": [3.92131798693, 50.0518032549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9840ec1a9f9c8f7292fdca662ed8431f68243436", "fields": {"nom_de_la_commune": "LIGNY EN CAMBRESIS", "libell_d_acheminement": "LIGNY EN CAMBRESIS", "code_postal": "59191", "coordonnees_gps": [50.1001907619, 3.36864533682], "code_commune_insee": "59349"}, "geometry": {"type": "Point", "coordinates": [3.36864533682, 50.1001907619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673bffdd992fcb545f9c834fc8d3e3af67124813", "fields": {"code_postal": "59160", "code_commune_insee": "59350", "libell_d_acheminement": "LILLE", "ligne_5": "LOMME", "nom_de_la_commune": "LILLE", "coordonnees_gps": [50.6326805368, 3.0429756448]}, "geometry": {"type": "Point", "coordinates": [3.0429756448, 50.6326805368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72820c6c4ae282905e01105b5cd042e4b5ad26a", "fields": {"nom_de_la_commune": "LIMONT FONTAINE", "libell_d_acheminement": "LIMONT FONTAINE", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59351"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18570f011e2b07fce2fb4b22a14a67065480a2c", "fields": {"nom_de_la_commune": "LOFFRE", "libell_d_acheminement": "LOFFRE", "code_postal": "59182", "coordonnees_gps": [50.3632091187, 3.17800560697], "code_commune_insee": "59354"}, "geometry": {"type": "Point", "coordinates": [3.17800560697, 50.3632091187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1b4990f6d09a27cda7cd055b88a1320d569abf", "fields": {"nom_de_la_commune": "LA LONGUEVILLE", "libell_d_acheminement": "LA LONGUEVILLE", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59357"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ca65df29f5eb342064514997922d692b96877b", "fields": {"nom_de_la_commune": "LOUVIGNIES QUESNOY", "libell_d_acheminement": "LOUVIGNIES QUESNOY", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59363"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13e2a815b6513053f2b92ad620b5c7023968d39", "fields": {"nom_de_la_commune": "MARCQ EN BAROEUL", "libell_d_acheminement": "MARCQ EN BAROEUL", "code_postal": "59700", "coordonnees_gps": [50.6754108079, 3.10130180622], "code_commune_insee": "59378"}, "geometry": {"type": "Point", "coordinates": [3.10130180622, 50.6754108079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910891c4ac3680d578649cab8bdd5d4cbc11d256", "fields": {"nom_de_la_commune": "MARESCHES", "libell_d_acheminement": "MARESCHES", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59381"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c93584887d82254503a03e315d1b61aa04e5e7f", "fields": {"nom_de_la_commune": "MARQUETTE LEZ LILLE", "libell_d_acheminement": "MARQUETTE LEZ LILLE", "code_postal": "59520", "coordonnees_gps": [50.6742385888, 3.06026176447], "code_commune_insee": "59386"}, "geometry": {"type": "Point", "coordinates": [3.06026176447, 50.6742385888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e13cb40b7c372c7c36e3c8ce27c1983290200b", "fields": {"nom_de_la_commune": "MERCKEGHEM", "libell_d_acheminement": "MERCKEGHEM", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59397"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747b2607fc3144cb2ca02a5d53151e8ad4888ea1", "fields": {"nom_de_la_commune": "MERIGNIES", "libell_d_acheminement": "MERIGNIES", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59398"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14d09fe02e51da5c87223863457dccc16314cdf", "fields": {"nom_de_la_commune": "MERRIS", "libell_d_acheminement": "MERRIS", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59399"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ea30b80340f95530ae46332c9db2390ee4294a", "fields": {"nom_de_la_commune": "MONS EN BAROEUL", "libell_d_acheminement": "MONS EN BAROEUL", "code_postal": "59370", "coordonnees_gps": [50.6427503155, 3.10726820603], "code_commune_insee": "59410"}, "geometry": {"type": "Point", "coordinates": [3.10726820603, 50.6427503155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b184126fb2877e7ad2ad3b9ca87881516a9f19", "fields": {"nom_de_la_commune": "MONTAY", "libell_d_acheminement": "MONTAY", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59412"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97797f84142e67ef5058b3768bb6cd4496b73cdf", "fields": {"nom_de_la_commune": "MONTIGNY EN CAMBRESIS", "libell_d_acheminement": "MONTIGNY EN CAMBRESIS", "code_postal": "59225", "coordonnees_gps": [50.0767179455, 3.40307595775], "code_commune_insee": "59413"}, "geometry": {"type": "Point", "coordinates": [3.40307595775, 50.0767179455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05beb20372c1fd2d3874fa90cde5ca7057652466", "fields": {"nom_de_la_commune": "MORBECQUE", "libell_d_acheminement": "MORBECQUE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59416"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8bb7d20c962ae9ebdca3b9cb7b28ae31eaacd0", "fields": {"nom_de_la_commune": "MORTAGNE DU NORD", "libell_d_acheminement": "MORTAGNE DU NORD", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59418"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44902117c178b3f11bbcb16c6a0d9c7f169e6a66", "fields": {"nom_de_la_commune": "NEUF BERQUIN", "libell_d_acheminement": "NEUF BERQUIN", "code_postal": "59940", "coordonnees_gps": [50.6663981785, 2.70159427049], "code_commune_insee": "59423"}, "geometry": {"type": "Point", "coordinates": [2.70159427049, 50.6663981785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1126ea03dbdfd14198bc3c1a853c535391c4f29", "fields": {"nom_de_la_commune": "NIEPPE", "libell_d_acheminement": "NIEPPE", "code_postal": "59850", "coordonnees_gps": [50.6991351406, 2.83274027717], "code_commune_insee": "59431"}, "geometry": {"type": "Point", "coordinates": [2.83274027717, 50.6991351406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7cc375812f4b4997a264b2ca7283a14cad338b", "fields": {"nom_de_la_commune": "NIEURLET", "libell_d_acheminement": "NIEURLET", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59433"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbfbf35d4d4f4839beead0bf750f0c6daf6ea3d", "fields": {"nom_de_la_commune": "ODOMEZ", "libell_d_acheminement": "ODOMEZ", "code_postal": "59970", "coordonnees_gps": [50.4323433177, 3.57545124255], "code_commune_insee": "59444"}, "geometry": {"type": "Point", "coordinates": [3.57545124255, 50.4323433177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbdf7c4e74ab47b91383e13cffdf68a3f123982", "fields": {"nom_de_la_commune": "OHAIN", "libell_d_acheminement": "OHAIN", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59445"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194756864a2890d5296ccfb72c767c0e6ddd2899", "fields": {"nom_de_la_commune": "ONNAING", "libell_d_acheminement": "ONNAING", "code_postal": "59264", "coordonnees_gps": [50.3864443825, 3.59638308705], "code_commune_insee": "59447"}, "geometry": {"type": "Point", "coordinates": [3.59638308705, 50.3864443825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed7a9330dd3de7b3e0ebab00b54563cd3230c6f", "fields": {"nom_de_la_commune": "OSTRICOURT", "libell_d_acheminement": "OSTRICOURT", "code_postal": "59162", "coordonnees_gps": [50.4575299308, 3.03272831033], "code_commune_insee": "59452"}, "geometry": {"type": "Point", "coordinates": [3.03272831033, 50.4575299308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770f489f6aad6e80fb991bab5a77429a49f39a74", "fields": {"nom_de_la_commune": "PECQUENCOURT", "libell_d_acheminement": "PECQUENCOURT", "code_postal": "59146", "coordonnees_gps": [50.3766235173, 3.21883898526], "code_commune_insee": "59456"}, "geometry": {"type": "Point", "coordinates": [3.21883898526, 50.3766235173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829fcae57757e8b156217a66bfd548790ee0a925", "fields": {"nom_de_la_commune": "PETITE FORET", "libell_d_acheminement": "PETITE FORET", "code_postal": "59494", "coordonnees_gps": [50.3753696067, 3.46424091997], "code_commune_insee": "59459"}, "geometry": {"type": "Point", "coordinates": [3.46424091997, 50.3753696067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc23e4b08123d4ec24b902095f15bb8c79edc47d", "fields": {"nom_de_la_commune": "PETIT FAYT", "libell_d_acheminement": "PETIT FAYT", "code_postal": "59244", "coordonnees_gps": [50.0896425348, 3.83023391682], "code_commune_insee": "59461"}, "geometry": {"type": "Point", "coordinates": [3.83023391682, 50.0896425348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bfa98adc529c281a6c31b7c90420cf4d654e0ab", "fields": {"nom_de_la_commune": "PHALEMPIN", "libell_d_acheminement": "PHALEMPIN", "code_postal": "59133", "coordonnees_gps": [50.5122341221, 3.00761898471], "code_commune_insee": "59462"}, "geometry": {"type": "Point", "coordinates": [3.00761898471, 50.5122341221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46af315b11ce32667262f92d75ceeee12d850ec9", "fields": {"nom_de_la_commune": "PONT A MARCQ", "libell_d_acheminement": "PONT A MARCQ", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59466"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044249295e58045c98b281a8990238134f99f71d", "fields": {"nom_de_la_commune": "QUIEVELON", "libell_d_acheminement": "QUIEVELON", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59483"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb3a552843901c1c78c6532a8488caaafe87503", "fields": {"nom_de_la_commune": "RAISMES", "libell_d_acheminement": "RAISMES", "code_postal": "59590", "coordonnees_gps": [50.4106446323, 3.48926993726], "code_commune_insee": "59491"}, "geometry": {"type": "Point", "coordinates": [3.48926993726, 50.4106446323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a5dc96e40d614273e48cc435ca54a73adfc023", "fields": {"nom_de_la_commune": "RECQUIGNIES", "libell_d_acheminement": "RECQUIGNIES", "code_postal": "59245", "coordonnees_gps": [50.2759501478, 4.04846683203], "code_commune_insee": "59495"}, "geometry": {"type": "Point", "coordinates": [4.04846683203, 50.2759501478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3d762cf376282f18674d5ac740c24cde994bdb", "fields": {"nom_de_la_commune": "REXPOEDE", "libell_d_acheminement": "REXPOEDE", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59499"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e10088f05dcb3998ef602776709162c7535311", "fields": {"nom_de_la_commune": "RIEUX EN CAMBRESIS", "libell_d_acheminement": "RIEUX EN CAMBRESIS", "code_postal": "59277", "coordonnees_gps": [50.2046176366, 3.3520348216], "code_commune_insee": "59502"}, "geometry": {"type": "Point", "coordinates": [3.3520348216, 50.2046176366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904bb2ef0ef63a214aab143143c864a64ee9f6bd", "fields": {"nom_de_la_commune": "ROOST WARENDIN", "libell_d_acheminement": "ROOST WARENDIN", "code_postal": "59286", "coordonnees_gps": [50.4150658867, 3.10332195148], "code_commune_insee": "59509"}, "geometry": {"type": "Point", "coordinates": [3.10332195148, 50.4150658867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e91b7c6504448b19896b1ad1029f7ae6aa3b2f1", "fields": {"nom_de_la_commune": "RUBROUCK", "libell_d_acheminement": "RUBROUCK", "code_postal": "59285", "coordonnees_gps": [50.8315857512, 2.37917573107], "code_commune_insee": "59516"}, "geometry": {"type": "Point", "coordinates": [2.37917573107, 50.8315857512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a947cc84fbf09fdc1a67d648186ed37bb8a31e4", "fields": {"nom_de_la_commune": "LES RUES DES VIGNES", "libell_d_acheminement": "LES RUES DES VIGNES", "code_postal": "59258", "coordonnees_gps": [50.0777482818, 3.25663233924], "code_commune_insee": "59517"}, "geometry": {"type": "Point", "coordinates": [3.25663233924, 50.0777482818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6809dec38f372fd2e6371a099a15cc914bab3bd8", "fields": {"nom_de_la_commune": "RUMILLY EN CAMBRESIS", "libell_d_acheminement": "RUMILLY EN CAMBRESIS", "code_postal": "59281", "coordonnees_gps": [50.1302971756, 3.22861401767], "code_commune_insee": "59520"}, "geometry": {"type": "Point", "coordinates": [3.22861401767, 50.1302971756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d6a5686b8dc5142628b008916ff746bb1e4415", "fields": {"nom_de_la_commune": "SAILLY LEZ LANNOY", "libell_d_acheminement": "SAILLY LEZ LANNOY", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59522"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ecc54e0f4a9cdbbfd31eb519c737fc0fb004569", "fields": {"nom_de_la_commune": "SAINS DU NORD", "libell_d_acheminement": "SAINS DU NORD", "code_postal": "59177", "coordonnees_gps": [50.0919119818, 4.0256341447], "code_commune_insee": "59525"}, "geometry": {"type": "Point", "coordinates": [4.0256341447, 50.0919119818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf29294da67efa36f0e5412adf36535e0e7a699", "fields": {"nom_de_la_commune": "ST AMAND LES EAUX", "libell_d_acheminement": "ST AMAND LES EAUX", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59526"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4384e638c1842134b29460bf883f8e6dc9a19f", "fields": {"nom_de_la_commune": "ST BENIN", "libell_d_acheminement": "ST BENIN", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59531"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bccb3869e6be19982d8c1d596992bf377b0e3fa", "fields": {"nom_de_la_commune": "GABILLOU", "libell_d_acheminement": "GABILLOU", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24192"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38153791c6ef9067faa9e4e32b1ddabbe27c7609", "fields": {"nom_de_la_commune": "GAGEAC ET ROUILLAC", "libell_d_acheminement": "GAGEAC ET ROUILLAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24193"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fd74daf231742107cdd0b3c6c54ca99f47fa39", "fields": {"nom_de_la_commune": "GINESTET", "libell_d_acheminement": "GINESTET", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24197"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4115a0df2be903f680e12ec8e581c97aa55cdc63", "fields": {"nom_de_la_commune": "GOUT ROSSIGNOL", "libell_d_acheminement": "GOUT ROSSIGNOL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24199"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea744847591bf98ea91e23070cc9fa456982c68", "fields": {"nom_de_la_commune": "GRAND BRASSAC", "libell_d_acheminement": "GRAND BRASSAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24200"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ffe7bfc12cdbed1c84a2228b19c390bf34da7b", "fields": {"nom_de_la_commune": "GRIGNOLS", "libell_d_acheminement": "GRIGNOLS", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24205"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb6038ed1bac20b62fba4e632cab498e1b0fbf3", "fields": {"nom_de_la_commune": "GRIVES", "libell_d_acheminement": "GRIVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24206"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f141eee8c612e426f7145fb7371b3c7ea91c553b", "fields": {"nom_de_la_commune": "ISSIGEAC", "libell_d_acheminement": "ISSIGEAC", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24212"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8e9e60facb533605a2b5b279518f2525464dc2", "fields": {"nom_de_la_commune": "JAYAC", "libell_d_acheminement": "JAYAC", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24215"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1156e9a7849b093717d98f5caa5f056fb331c477", "fields": {"nom_de_la_commune": "LA JEMAYE", "libell_d_acheminement": "LA JEMAYE", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24216"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb75154f92982c03c1ea643446cce57cc6a8398", "fields": {"nom_de_la_commune": "LACROPTE", "libell_d_acheminement": "LACROPTE", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24220"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032a6dbe01377861df9e033527c80ea686f0f22f", "fields": {"nom_de_la_commune": "LALINDE", "libell_d_acheminement": "LALINDE", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24223"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23cfea2b237c686e0577cab56e967e4c25d69621", "fields": {"nom_de_la_commune": "LES LECHES", "libell_d_acheminement": "LES LECHES", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24234"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd73f212277fbd61209a41bf9d97346c6fa902c1", "fields": {"nom_de_la_commune": "LEGUILLAC DE CERCLES", "libell_d_acheminement": "LEGUILLAC DE CERCLES", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24235"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "025090a4d59bac1d67147899a549abf9b220b4ae", "fields": {"nom_de_la_commune": "LEGUILLAC DE L AUCHE", "libell_d_acheminement": "LEGUILLAC DE L AUCHE", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24236"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516639c9e5b957614555549d9725f91f19e2baaf", "fields": {"nom_de_la_commune": "LISLE", "libell_d_acheminement": "LISLE", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24243"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411c2aa82d24505e10b8e6d742f7d4a3c8b5f19e", "fields": {"nom_de_la_commune": "MARCILLAC ST QUENTIN", "libell_d_acheminement": "MARCILLAC ST QUENTIN", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24252"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4493ca75bbeec2c750c5f7b9f98ff0297a86dbd2", "fields": {"nom_de_la_commune": "MARQUAY", "libell_d_acheminement": "MARQUAY", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24255"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82abc4b5bbd99e8dc8e35d279e001f87c8e2bbb3", "fields": {"nom_de_la_commune": "MARSANEIX", "libell_d_acheminement": "MARSANEIX", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24258"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0283541e1df557d57d9195f392e0ca1b780764f8", "fields": {"nom_de_la_commune": "MEYRALS", "libell_d_acheminement": "MEYRALS", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24268"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07dda78b3c0866dba730fe59b27341e2e9d11f5f", "fields": {"nom_de_la_commune": "MILHAC D AUBEROCHE", "libell_d_acheminement": "MILHAC D AUBEROCHE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24270"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ced3cd904594803651766a03a2e94c8d54db25", "fields": {"nom_de_la_commune": "MONFAUCON", "libell_d_acheminement": "MONFAUCON", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24277"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff03bf7c119622fd4471291edee85ddb8ddbde35", "fields": {"nom_de_la_commune": "MONTAZEAU", "libell_d_acheminement": "MONTAZEAU", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24288"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53cfb0bce1b7baca8a3f90bf3af6564a81a50b6", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24292"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0cb9bce29e9152f777a568aca83d4558415b169", "fields": {"nom_de_la_commune": "MONTPON MENESTEROL", "libell_d_acheminement": "MONTPON MENESTEROL", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24294"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c7ff044ff717f35c819aa8a20068913e5791a2", "fields": {"nom_de_la_commune": "MOULIN NEUF", "libell_d_acheminement": "MOULIN NEUF", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24297"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0265643dfd7d798d68f6b2180b9bd92793b9e97", "fields": {"nom_de_la_commune": "NANTHEUIL", "libell_d_acheminement": "NANTHEUIL", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24304"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a238b9271a7fe4db3593d49db43a2f0624d7c0", "fields": {"nom_de_la_commune": "PERIGUEUX", "libell_d_acheminement": "PERIGUEUX", "code_postal": "24000", "coordonnees_gps": [45.1922180776, 0.71141252253], "code_commune_insee": "24322"}, "geometry": {"type": "Point", "coordinates": [0.71141252253, 45.1922180776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bde8998087607db8501243da25dabb0c7dc2037", "fields": {"nom_de_la_commune": "PEYZAC LE MOUSTIER", "libell_d_acheminement": "PEYZAC LE MOUSTIER", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24326"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a0ca232397ab2faf8a79edcecb60292f11b7827", "fields": {"nom_de_la_commune": "PLAZAC", "libell_d_acheminement": "PLAZAC", "code_postal": "24580", "coordonnees_gps": [45.0387588745, 0.994420883545], "code_commune_insee": "24330"}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4465c4dc2a7491b21338aafc06e2d344975c9fcd", "fields": {"nom_de_la_commune": "PRIGONRIEUX", "libell_d_acheminement": "PRIGONRIEUX", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24340"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2143e56ff487a2f7b195a12fa95cb77450882441", "fields": {"nom_de_la_commune": "PUYRENIER", "libell_d_acheminement": "PUYRENIER", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24344"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9904a275f87befbea65e07f71cbca1f0fe97296", "fields": {"nom_de_la_commune": "ROUFFIGNAC ST CERNIN DE REILHAC", "libell_d_acheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", "code_postal": "24580", "coordonnees_gps": [45.0387588745, 0.994420883545], "code_commune_insee": "24356"}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05eea0c932c669abe12d2f483a13a7200a897d76", "fields": {"nom_de_la_commune": "SADILLAC", "libell_d_acheminement": "SADILLAC", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24359"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e37011bf51cc92300e112194c46cc1b2904b0443", "fields": {"nom_de_la_commune": "ST AMAND DE COLY", "libell_d_acheminement": "ST AMAND DE COLY", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24364"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96591579c7fbadaafeaa38532b6684cd60247366", "fields": {"nom_de_la_commune": "ST AUBIN DE LANQUAIS", "libell_d_acheminement": "ST AUBIN DE LANQUAIS", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24374"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5baa6a601c2b201f1449e7f98ddd75c5d4c1b4e", "fields": {"nom_de_la_commune": "ST AVIT DE VIALARD", "libell_d_acheminement": "ST AVIT DE VIALARD", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24377"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2302590c3699a6810d4be131e62a4a9037075fec", "fields": {"nom_de_la_commune": "ST AVIT SENIEUR", "libell_d_acheminement": "ST AVIT SENIEUR", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24379"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bfd875495ef33908282f166a5bf338d82a4a667", "fields": {"nom_de_la_commune": "ST CASSIEN", "libell_d_acheminement": "ST CASSIEN", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24384"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28751306f1de93ef71e660255393266c4a57ee0", "fields": {"nom_de_la_commune": "ST CREPIN D AUBEROCHE", "libell_d_acheminement": "ST CREPIN D AUBEROCHE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24390"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f02d4bd439c5a579be597cb786c31372b7a66495", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24393"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00411662e03152ad50dd10168e8b46be63e57cc9", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24396"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f800684a75ed1b27c2853a0d7e7604a07e28bde9", "fields": {"nom_de_la_commune": "STE EULALIE D EYMET", "libell_d_acheminement": "STE EULALIE D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24402"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e34a04c2a79b6506e0db1e3c2936e9b42ca1e0", "fields": {"nom_de_la_commune": "ST FELIX DE VILLADEIX", "libell_d_acheminement": "ST FELIX DE VILLADEIX", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24405"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8fb6f7c72f9dc7e2a540ee16d32eb108d92829", "fields": {"nom_de_la_commune": "ST FRONT DE PRADOUX", "libell_d_acheminement": "ST FRONT DE PRADOUX", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24409"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f578196a4c3b7a7849c2896d3f82e510c253b02b", "fields": {"nom_de_la_commune": "ST FRONT LA RIVIERE", "libell_d_acheminement": "ST FRONT LA RIVIERE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24410"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad712a0b4f21483e4da3410a917234198fd27799", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24417"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7dcdb59c404eb56ed92c63e0d497bad3d9a586", "fields": {"nom_de_la_commune": "ST GERY", "libell_d_acheminement": "ST GERY", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24420"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9f2f626a0f50f7a6da929a4933a92ec9ae95ca", "fields": {"nom_de_la_commune": "ST LAURENT DES HOMMES", "libell_d_acheminement": "ST LAURENT DES HOMMES", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24436"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8f5c013574a5fbe1da925cdbf44d65486f32b1", "fields": {"nom_de_la_commune": "ST LAURENT DES VIGNES", "libell_d_acheminement": "ST LAURENT DES VIGNES", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24437"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90914b8dfc376b6701497225fd12a7a5bd94bb9f", "fields": {"nom_de_la_commune": "ST LEON SUR VEZERE", "libell_d_acheminement": "ST LEON SUR VEZERE", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24443"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de64e42b6a2189f7f623ea29a3619db0693a6d8", "fields": {"nom_de_la_commune": "ST LOUIS EN L ISLE", "libell_d_acheminement": "ST LOUIS EN L ISLE", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24444"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115ce35ad21f9aa3bd8985e08b2570e8bd28ef72", "fields": {"nom_de_la_commune": "ST MARCORY", "libell_d_acheminement": "ST MARCORY", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24446"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af39af14bd5b945e96d9e0d88c919367a0e7d0e6", "fields": {"nom_de_la_commune": "ST MARTIAL VIVEYROL", "libell_d_acheminement": "ST MARTIAL VIVEYROL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24452"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ea9e26653cc5e209ca32c1b3c033fca5ea5121", "fields": {"nom_de_la_commune": "ST MARTIN DE RIBERAC", "libell_d_acheminement": "ST MARTIN DE RIBERAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24455"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbd5c86b7e586bef706353807cc566aa8072102", "fields": {"nom_de_la_commune": "ST MARTIN L ASTIER", "libell_d_acheminement": "ST MARTIN L ASTIER", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24457"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2220a4d1816ccb188d173ea3aad6cf9e70b7d70", "fields": {"nom_de_la_commune": "ST MEARD DE DRONE", "libell_d_acheminement": "ST MEARD DE DRONE", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24460"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cb48bdb82c3f39e849e837c8cf2e55b9e899e7", "fields": {"nom_de_la_commune": "ST PARDOUX ET VIELVIC", "libell_d_acheminement": "ST PARDOUX ET VIELVIC", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24478"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b36eb6f382d9ec00426f9d401609a3e91c35849", "fields": {"nom_de_la_commune": "ST PRIEST LES FOUGERES", "libell_d_acheminement": "ST PRIEST LES FOUGERES", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24489"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab69c4a05f5e0d119a6c43fa6d9713707ed57c1", "fields": {"nom_de_la_commune": "ST RAPHAEL", "libell_d_acheminement": "ST RAPHAEL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24493"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6199c4212b54abfcd2c8883bae67c3211bf69853", "fields": {"nom_de_la_commune": "ST SEURIN DE PRATS", "libell_d_acheminement": "ST SEURIN DE PRATS", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24501"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12ed9777d2cb48c2cefe21ee25b55f402f3f381", "fields": {"nom_de_la_commune": "ST VINCENT DE CONNEZAC", "libell_d_acheminement": "ST VINCENT DE CONNEZAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24509"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc019dc79d2fd4b766f31950af0617e69a61bb4", "fields": {"nom_de_la_commune": "ST VINCENT LE PALUEL", "libell_d_acheminement": "ST VINCENT LE PALUEL", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24512"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc11534d6c3c7e362b1184a8ba303d43a4890a2", "fields": {"nom_de_la_commune": "ST VINCENT SUR L ISLE", "libell_d_acheminement": "ST VINCENT SUR L ISLE", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24513"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f9dcbf4cb60c2c97166724165f92b206920864", "fields": {"nom_de_la_commune": "SAVIGNAC LES EGLISES", "libell_d_acheminement": "SAVIGNAC LES EGLISES", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24527"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ddcb1656fe787dcc3853f3535376a01fb2bf8c5", "fields": {"nom_de_la_commune": "SIMEYROLS", "libell_d_acheminement": "SIMEYROLS", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24535"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e1dfd85637e9f82c364fdc4452d8b806988d68", "fields": {"nom_de_la_commune": "SOURZAC", "libell_d_acheminement": "SOURZAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24543"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a532b11b1734b9848af785a22f51a93a98358f", "fields": {"nom_de_la_commune": "TAMNIES", "libell_d_acheminement": "TAMNIES", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24544"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2638bab06f7ae26beea75431c08a46df60e3012", "fields": {"nom_de_la_commune": "TEILLOTS", "libell_d_acheminement": "TEILLOTS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24545"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf900301c295ee1a37f5da980060e255fab15af8", "fields": {"nom_de_la_commune": "TEYJAT", "libell_d_acheminement": "TEYJAT", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24548"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e96f4cbac609bdc242244cf82325234c3cdd8f54", "fields": {"code_postal": "24240", "code_commune_insee": "24549", "libell_d_acheminement": "THENAC", "ligne_5": "PUYGUILHEM", "nom_de_la_commune": "THENAC", "coordonnees_gps": [44.7790390603, 0.38999404584]}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0cb35e89d326790dddfecc22061fc8a5ba0685b", "fields": {"nom_de_la_commune": "LA TOUR BLANCHE", "libell_d_acheminement": "LA TOUR BLANCHE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24554"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea4379cffe8b510f3a2dc495eb5007f54389618", "fields": {"nom_de_la_commune": "VANXAINS", "libell_d_acheminement": "VANXAINS", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24564"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137d161c5025fbeb8842984e95333693f9d162d0", "fields": {"nom_de_la_commune": "VARAIGNES", "libell_d_acheminement": "VARAIGNES", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24565"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4aa2a2353fb0e094feb4c8c8c8d942b27a71f1b", "fields": {"nom_de_la_commune": "VAUNAC", "libell_d_acheminement": "VAUNAC", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24567"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1252eca02af665a7940c0ac61d7b6de8f722db3", "fields": {"nom_de_la_commune": "VERGT", "libell_d_acheminement": "VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24571"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e0df34328c87cb5d76b576fa7a32ede1dec83d", "fields": {"nom_de_la_commune": "VILLEFRANCHE DU PERIGORD", "libell_d_acheminement": "VILLEFRANCHE DU PERIGORD", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24585"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71352d4275d00fc9af524205ec38914faeb31ae5", "fields": {"nom_de_la_commune": "ALLENJOIE", "libell_d_acheminement": "ALLENJOIE", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25011"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "433fc6d1ee45a17246a9282ed4cb3c85f3ccb607", "fields": {"nom_de_la_commune": "AMAGNEY", "libell_d_acheminement": "AMAGNEY", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25014"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983f86ed93772bb93603012bfa15e7bf37d54bb3", "fields": {"nom_de_la_commune": "AMANCEY", "libell_d_acheminement": "AMANCEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25015"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b95a3fc2fd38d4e8b4457086c1480f2597f7024", "fields": {"nom_de_la_commune": "ARBOUANS", "libell_d_acheminement": "ARBOUANS", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25020"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88329227a16d16296cb7eed2c83aadd41c20e1a3", "fields": {"nom_de_la_commune": "ARCEY", "libell_d_acheminement": "ARCEY", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25022"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced17103ea5cf29f3d20ab7f0600efbb1b4e10fd", "fields": {"nom_de_la_commune": "ARC SOUS MONTENOT", "libell_d_acheminement": "ARC SOUS MONTENOT", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25026"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd1e342189e3f79216e756d7f7d0979ec1c4317", "fields": {"nom_de_la_commune": "ARGUEL", "libell_d_acheminement": "ARGUEL", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25027"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee9f38aa92d63286f12216967d51b634db975ec", "fields": {"nom_de_la_commune": "AUBONNE", "libell_d_acheminement": "AUBONNE", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25029"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d72b0623a0c87eb12d7660bafb5b34e0d3241b2", "fields": {"code_postal": "25720", "code_commune_insee": "25036", "libell_d_acheminement": "AVANNE AVENEY", "ligne_5": "AVENEY", "nom_de_la_commune": "AVANNE AVENEY", "coordonnees_gps": [47.1886369614, 5.98434041211]}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7bc9480831feff747c119360b60f7acdd0094a", "fields": {"nom_de_la_commune": "AVOUDREY", "libell_d_acheminement": "AVOUDREY", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25039"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cec043b3db6b78e48fc0367b0c170aac63e5dede", "fields": {"nom_de_la_commune": "BANNANS", "libell_d_acheminement": "BANNANS", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25041"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df7b4112456692c997e80602f7eb96e36f1e8e9", "fields": {"nom_de_la_commune": "BATTENANS VARIN", "libell_d_acheminement": "BATTENANS VARIN", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25046"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96254a478a5f56143b82dbfad89a070c578e5aaa", "fields": {"nom_de_la_commune": "BELFAYS", "libell_d_acheminement": "BELFAYS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25049"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "341ce19071cd73f1d6c91ec679bd1383878147db", "fields": {"nom_de_la_commune": "BESANCON", "libell_d_acheminement": "BESANCON", "code_postal": "25000", "coordonnees_gps": [47.2552328934, 6.01938051129], "code_commune_insee": "25056"}, "geometry": {"type": "Point", "coordinates": [6.01938051129, 47.2552328934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db41c9550d39cbc0fdd368aaa6f866e286b142e1", "fields": {"nom_de_la_commune": "BEURE", "libell_d_acheminement": "BEURE", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25058"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101bb610ed1600a6f7f3e996ee0fdc6a97c5a34d", "fields": {"nom_de_la_commune": "BONNAL", "libell_d_acheminement": "BONNAL", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25072"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a59c0dd6fe7e1e87d37f2d4afcd84303da03fc6", "fields": {"nom_de_la_commune": "BOUJAILLES", "libell_d_acheminement": "BOUJAILLES", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25079"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fa7b66cc32f50286130b3b4764a48c94c52cab", "fields": {"nom_de_la_commune": "BOURGUIGNON", "libell_d_acheminement": "BOURGUIGNON", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25082"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab339a31c049cfeb0e332c452fd46b9f786ed1b", "fields": {"nom_de_la_commune": "BOUSSIERES", "libell_d_acheminement": "BOUSSIERES", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25084"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1125467a4756627b81dfd6daff30d6e7381555a", "fields": {"nom_de_la_commune": "BOUVERANS", "libell_d_acheminement": "BOUVERANS", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25085"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b768e4af1e820f0dae837459796769776f07c48", "fields": {"nom_de_la_commune": "BRAILLANS", "libell_d_acheminement": "BRAILLANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25086"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348d9eef01200fcc6d7a21a4ad210533d251961d", "fields": {"nom_de_la_commune": "LES BRESEUX", "libell_d_acheminement": "LES BRESEUX", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25091"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba4996731c8d677b9a7a4c979710ed278756092", "fields": {"nom_de_la_commune": "BROGNARD", "libell_d_acheminement": "BROGNARD", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25097"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc33ba88c5bffdff098a340665e172f473e76f29", "fields": {"nom_de_la_commune": "COURCELLES LES GISORS", "libell_d_acheminement": "COURCELLES LES GISORS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60169"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c91fe07334b4b979ee820c6d7f956db8ecca780", "fields": {"nom_de_la_commune": "COYE LA FORET", "libell_d_acheminement": "COYE LA FORET", "code_postal": "60580", "coordonnees_gps": [49.1449019202, 2.47077084027], "code_commune_insee": "60172"}, "geometry": {"type": "Point", "coordinates": [2.47077084027, 49.1449019202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df58eff607dea2b47a5b02ee686148963dbdbac", "fields": {"nom_de_la_commune": "CREVECOEUR LE GRAND", "libell_d_acheminement": "CREVECOEUR LE GRAND", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60178"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e41ee334daa8950b7afbc1d67c5ad9ed837b344", "fields": {"nom_de_la_commune": "LE CROCQ", "libell_d_acheminement": "LE CROCQ", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60182"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03204c1dd7208e4ed550140a2a03b8fd6fdcb5fd", "fields": {"nom_de_la_commune": "CUTS", "libell_d_acheminement": "CUTS", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60189"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ad542d382591f985eba283f8ee13f09e4f3611", "fields": {"nom_de_la_commune": "LE DELUGE", "libell_d_acheminement": "LE DELUGE", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60196"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f739cd00eeac6c7063023eb83f2e57b5988fd0", "fields": {"nom_de_la_commune": "DIVES", "libell_d_acheminement": "DIVES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60198"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65eef5460f581b52d677dc5fa1d3008ebfe3b3a3", "fields": {"nom_de_la_commune": "DOMPIERRE", "libell_d_acheminement": "DOMPIERRE", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60201"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60684d0101f2ecf9555789abf23619bc56339cc", "fields": {"nom_de_la_commune": "ECUVILLY", "libell_d_acheminement": "ECUVILLY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60204"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806565b9748ab0e4a6aca59ed57de542f789d7ae", "fields": {"nom_de_la_commune": "ERQUERY", "libell_d_acheminement": "ERQUERY", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60215"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6780ac90318c8dc2ca2c8d1b49df3825f2823ac4", "fields": {"nom_de_la_commune": "ESCLES ST PIERRE", "libell_d_acheminement": "ESCLES ST PIERRE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60219"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b5d445c32e31238bb99f54b1629744d1a46ebb", "fields": {"nom_de_la_commune": "FEUQUIERES", "libell_d_acheminement": "FEUQUIERES", "code_postal": "60960", "coordonnees_gps": [49.6501432507, 1.85066345289], "code_commune_insee": "60233"}, "geometry": {"type": "Point", "coordinates": [1.85066345289, 49.6501432507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba234c01627416c5c7f422fc8959d686cf46885d", "fields": {"nom_de_la_commune": "FITZ JAMES", "libell_d_acheminement": "FITZ JAMES", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60234"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aeb7ae07f81378e95ea42757bd3cbe5b4835fbc", "fields": {"nom_de_la_commune": "FRESNOY EN THELLE", "libell_d_acheminement": "FRESNOY EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60259"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698bc5aa87432c9c878d602a5a5e2fba669fafcc", "fields": {"nom_de_la_commune": "LE FRESTOY VAUX", "libell_d_acheminement": "LE FRESTOY VAUX", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60262"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87595895b4d8bbba4611ec225d1a4148b9b3ef37", "fields": {"nom_de_la_commune": "FRETOY LE CHATEAU", "libell_d_acheminement": "FRETOY LE CHATEAU", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60263"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf44299c64ae09a115a7a5fd13a615c21b56cfe", "fields": {"nom_de_la_commune": "GANNES", "libell_d_acheminement": "GANNES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60268"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe09678e547b86fc5aa28c44c387ecfd6f45829b", "fields": {"nom_de_la_commune": "GIRAUMONT", "libell_d_acheminement": "GIRAUMONT", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60273"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5982ece59b1a4a65b756d694ab724c498bde5e0f", "fields": {"nom_de_la_commune": "GLATIGNY", "libell_d_acheminement": "GLATIGNY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60275"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6443d3344095311eda9fdee69fe46dbf98bdad88", "fields": {"nom_de_la_commune": "GRANDVILLIERS", "libell_d_acheminement": "GRANDVILLIERS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60286"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81487e6129c7ab3cbf957323be7a4b3877316c80", "fields": {"nom_de_la_commune": "GREMEVILLERS", "libell_d_acheminement": "GREMEVILLERS", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60288"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5bbea6f15b751e1f9868f716551e72d4f90f253", "fields": {"nom_de_la_commune": "GUIGNECOURT", "libell_d_acheminement": "GUIGNECOURT", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60290"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79cf4a70c3f4bf2134eeaa0f8cf080b589ffc163", "fields": {"nom_de_la_commune": "HARDIVILLERS EN VEXIN", "libell_d_acheminement": "HARDIVILLERS EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60300"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7345c7062d73a50d1fa9d4c25ad39deed23a6c90", "fields": {"nom_de_la_commune": "HEMEVILLERS", "libell_d_acheminement": "HEMEVILLERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60308"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f1e5e5f93c6f5ad427f033db6215241638d86b", "fields": {"nom_de_la_commune": "HERICOURT SUR THERAIN", "libell_d_acheminement": "HERICOURT SUR THERAIN", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60312"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b8f60a8be9dd18aac73fe634f684d494c148d6", "fields": {"nom_de_la_commune": "HERMES", "libell_d_acheminement": "HERMES", "code_postal": "60370", "coordonnees_gps": [49.3538659848, 2.25221191124], "code_commune_insee": "60313"}, "geometry": {"type": "Point", "coordinates": [2.25221191124, 49.3538659848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c2d0c61cc380706ed62e5c2f7e369c48220ee6", "fields": {"nom_de_la_commune": "LA HOUSSOYE", "libell_d_acheminement": "LA HOUSSOYE", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60319"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3affc0ee9bb9646c21ffacd61d6683a68393b800", "fields": {"nom_de_la_commune": "JUVIGNIES", "libell_d_acheminement": "JUVIGNIES", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60328"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73bbb993ec84b4b9853b53ed043a42fc99339f21", "fields": {"nom_de_la_commune": "LABRUYERE", "libell_d_acheminement": "LABRUYERE", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60332"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570d7630552061cb1f40e5c444ae70a6be370d66", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS GERBEROY", "libell_d_acheminement": "LACHAPELLE SOUS GERBEROY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60335"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933cf1e85be9d650ab221cb8d3ec92670dadd149", "fields": {"nom_de_la_commune": "LACHAUSSEE DU BOIS D ECU", "libell_d_acheminement": "LACHAUSSEE DU BOIS D ECU", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60336"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12eafd59b1835bb4ab76f113d68405d3ec158476", "fields": {"nom_de_la_commune": "LAGNY", "libell_d_acheminement": "LAGNY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60340"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495dadcc2117f5de84d88ffaa372f7904efbd723", "fields": {"nom_de_la_commune": "LAMECOURT", "libell_d_acheminement": "LAMECOURT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60345"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d130bf19d219fab31af02b27024104f3c4b1247a", "fields": {"nom_de_la_commune": "LATAULE", "libell_d_acheminement": "LATAULE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60351"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2afe99a2a8bdbfb3943e65102fb91b395aa71285", "fields": {"nom_de_la_commune": "LOUEUSE", "libell_d_acheminement": "LOUEUSE", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60371"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43ea1c3af967e05d06a7653ab40cb7617a9fcc8", "fields": {"nom_de_la_commune": "MAIGNELAY MONTIGNY", "libell_d_acheminement": "MAIGNELAY MONTIGNY", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60374"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50cafe6d63586533f7290292c93ef60e943614ac", "fields": {"nom_de_la_commune": "MARQUEGLISE", "libell_d_acheminement": "MARQUEGLISE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60386"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a54e32f55723d48c1d5c9d5830a3d015318a9d01", "fields": {"nom_de_la_commune": "MAUCOURT", "libell_d_acheminement": "MAUCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60389"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a63ecd2f25d22732433a7cdc8aa838744306a8c", "fields": {"nom_de_la_commune": "MENEVILLERS", "libell_d_acheminement": "MENEVILLERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60394"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89efaaca595ac203759451078a6ded1f9e255718", "fields": {"nom_de_la_commune": "MERY LA BATAILLE", "libell_d_acheminement": "MERY LA BATAILLE", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60396"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc5ecb0f2d168cb1a1594a9310d2dfbc3b907c1", "fields": {"nom_de_la_commune": "LE MESNIL THERIBUS", "libell_d_acheminement": "LE MESNIL THERIBUS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60401"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d6c437d40e81b3a07b8cd41cb0d65091035d40", "fields": {"nom_de_la_commune": "MONCEAUX L ABBAYE", "libell_d_acheminement": "MONCEAUX L ABBAYE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60407"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea52db5b8a112c5fcc904d4ee2eb1f8acb16ed4c", "fields": {"nom_de_la_commune": "MONTAGNY STE FELICITE", "libell_d_acheminement": "MONTAGNY STE FELICITE", "code_postal": "60950", "coordonnees_gps": [49.1189792735, 2.6960856018], "code_commune_insee": "60413"}, "geometry": {"type": "Point", "coordinates": [2.6960856018, 49.1189792735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7b906f72d373626f18e7e39510cbb7fe076277", "fields": {"nom_de_la_commune": "MONT L EVEQUE", "libell_d_acheminement": "MONT L EVEQUE", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60421"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f267454892f8ab503f38b8a340568fc3cd61d41d", "fields": {"nom_de_la_commune": "MONTMARTIN", "libell_d_acheminement": "MONTMARTIN", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60424"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d23bb6c3ad3d53b30ec0f874b390f371dc27087", "fields": {"nom_de_la_commune": "MORTEFONTAINE", "libell_d_acheminement": "MORTEFONTAINE", "code_postal": "60128", "coordonnees_gps": [49.1164844091, 2.59215767956], "code_commune_insee": "60432"}, "geometry": {"type": "Point", "coordinates": [2.59215767956, 49.1164844091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8947ca80be10bb59db6489e2b0c9ff45b6d1a6d", "fields": {"nom_de_la_commune": "MORVILLERS", "libell_d_acheminement": "MORVILLERS", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60435"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87134e1203c95fa99894ea501e14876957629318", "fields": {"nom_de_la_commune": "MOUCHY LE CHATEL", "libell_d_acheminement": "MOUCHY LE CHATEL", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60437"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4e687760e4b6d3ee012f8111d146fed5dbe4dc", "fields": {"nom_de_la_commune": "MUREAUMONT", "libell_d_acheminement": "MUREAUMONT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60444"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ceab91ea9d8882983274db73726ffbc70339377", "fields": {"nom_de_la_commune": "NERY", "libell_d_acheminement": "NERY", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60447"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0b312e81b273b0cb93bd7a0e0f38afb7e4e6c1", "fields": {"nom_de_la_commune": "LA NEUVILLE ST PIERRE", "libell_d_acheminement": "LA NEUVILLE ST PIERRE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60457"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e275bc7ebb025a5852a83e172c85086d1619de", "fields": {"nom_de_la_commune": "NOAILLES", "libell_d_acheminement": "NOAILLES", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60462"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33839025922a8fb6218d694b9923d3786b815ecc", "fields": {"nom_de_la_commune": "NOGENT SUR OISE", "libell_d_acheminement": "NOGENT SUR OISE", "code_postal": "60180", "coordonnees_gps": [49.2761514704, 2.46422100507], "code_commune_insee": "60463"}, "geometry": {"type": "Point", "coordinates": [2.46422100507, 49.2761514704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28cf28205ee71929ba53783ccb57a6b6884c1732", "fields": {"nom_de_la_commune": "NOROY", "libell_d_acheminement": "NOROY", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60466"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3ef5e08a330332d777c3e2f532e96da608f493", "fields": {"nom_de_la_commune": "OFFOY", "libell_d_acheminement": "OFFOY", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60472"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da0936792d0e81a2d83000a470a2a717004406a", "fields": {"nom_de_la_commune": "OGNES", "libell_d_acheminement": "OGNES", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60473"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d798e151267c83bdfa35c72e1121f5583f8e7b6", "fields": {"nom_de_la_commune": "OGNOLLES", "libell_d_acheminement": "OGNOLLES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60474"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0cb5307be7a94222a76f224d7bf90776042d0c", "fields": {"nom_de_la_commune": "ONS EN BRAY", "libell_d_acheminement": "ONS EN BRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60477"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334c1f2887f63e259908774e8930057924e37899", "fields": {"nom_de_la_commune": "ORMOY LE DAVIEN", "libell_d_acheminement": "ORMOY LE DAVIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60478"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8d72202a1e048c38f57ba59b90b20b46634e425", "fields": {"nom_de_la_commune": "PIMPREZ", "libell_d_acheminement": "PIMPREZ", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60492"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de0d5d52855910f1a1c8adad728aed254bfeb855", "fields": {"nom_de_la_commune": "PLAINVILLE", "libell_d_acheminement": "PLAINVILLE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60496"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf3f0cffff2b195f1fbf3f975b8bad835590478", "fields": {"nom_de_la_commune": "LE PLESSIS BRION", "libell_d_acheminement": "LE PLESSIS BRION", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60501"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40efc963d7040416a0d9ff04a6d045ced3f7ce8", "fields": {"nom_de_la_commune": "LE PLESSIS PATTE D OIE", "libell_d_acheminement": "LE PLESSIS PATTE D OIE", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60502"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1b4d3570a89436636e0bc868ef6e9a20e1afc9", "fields": {"nom_de_la_commune": "POUILLY", "libell_d_acheminement": "POUILLY", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60512"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869019280c7022da0e9678129135cb4457d46aef", "fields": {"nom_de_la_commune": "PRONLEROY", "libell_d_acheminement": "PRONLEROY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60515"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4b0bee99bd2d7ee80097e7387c113803b8654b", "fields": {"nom_de_la_commune": "RAVENEL", "libell_d_acheminement": "RAVENEL", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60526"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cd86f376ecb5dd5d8fc454150abf2e83e15c45", "fields": {"nom_de_la_commune": "REMERANGLES", "libell_d_acheminement": "REMERANGLES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60530"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47339dc4635a2464b3a91696cd858f8ec0f7d41a", "fields": {"nom_de_la_commune": "REMY", "libell_d_acheminement": "REMY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60531"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076863c1ac6d6a2f2dc94d94d502be7811ce16f6", "fields": {"nom_de_la_commune": "RHUIS", "libell_d_acheminement": "RHUIS", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60536"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "872f77528cb7a069923b20bb3bc8a5e10e472d01", "fields": {"code_postal": "60170", "code_commune_insee": "60537", "libell_d_acheminement": "RIBECOURT DRESLINCOURT", "ligne_5": "DRESLINCOURT", "nom_de_la_commune": "RIBECOURT DRESLINCOURT", "coordonnees_gps": [49.4914347292, 2.97702281469]}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5329c1fc8a8381a96b1c69affe2f8ab1aea642d", "fields": {"nom_de_la_commune": "ROCQUEMONT", "libell_d_acheminement": "ROCQUEMONT", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60543"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c1f95b555287f526f09425d3dc495e41ff4727", "fields": {"nom_de_la_commune": "ROTANGY", "libell_d_acheminement": "ROTANGY", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60549"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8cbedde25bf8de4afe6dd2eb5db2ebd2d16ae9", "fields": {"nom_de_la_commune": "ST ANDRE FARIVILLERS", "libell_d_acheminement": "ST ANDRE FARIVILLERS", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60565"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c55893cd4ac3d4d4d508903ba00033226842d4f", "fields": {"nom_de_la_commune": "ST DENISCOURT", "libell_d_acheminement": "ST DENISCOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60571"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6138c12129103595e3ec5f30578afef2bc23a754", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "60370", "coordonnees_gps": [49.3538659848, 2.25221191124], "code_commune_insee": "60574"}, "geometry": {"type": "Point", "coordinates": [2.25221191124, 49.3538659848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73b20a160f34ef49057544eaac2aad8a76d2c08", "fields": {"nom_de_la_commune": "ST GERMAIN LA POTERIE", "libell_d_acheminement": "ST GERMAIN LA POTERIE", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60576"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d544d112ed771fd2a9ece3e27183ada5eaf4dd", "fields": {"nom_de_la_commune": "ST GERMER DE FLY", "libell_d_acheminement": "ST GERMER DE FLY", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60577"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a1ee0e1734877a4768d19622779282cee4a518", "fields": {"nom_de_la_commune": "ST OMER EN CHAUSSEE", "libell_d_acheminement": "ST OMER EN CHAUSSEE", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60590"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf44b38f838102758ba57dda6ce50ff06e4f1af", "fields": {"nom_de_la_commune": "ST REMY EN L EAU", "libell_d_acheminement": "ST REMY EN L EAU", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60595"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d562928ca9dcbaa515d2ece481f7cde9db317b", "fields": {"nom_de_la_commune": "ST THIBAULT", "libell_d_acheminement": "ST THIBAULT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60599"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc12345a47dbc44e60f12c093236a654a5e3071", "fields": {"nom_de_la_commune": "SENOTS", "libell_d_acheminement": "SENOTS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60613"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d69cc5b5393a72782d0b50a499225d796431f7", "fields": {"nom_de_la_commune": "SILLY TILLARD", "libell_d_acheminement": "SILLY TILLARD", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60620"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17ddd6eaab42df46f4af298a23023913d1f7349", "fields": {"nom_de_la_commune": "SOMMEREUX", "libell_d_acheminement": "SOMMEREUX", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60622"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8182c3685f2d0cd4a26f41b580609b4fa22d2e4", "fields": {"nom_de_la_commune": "THIERS SUR THEVE", "libell_d_acheminement": "THIERS SUR THEVE", "code_postal": "60520", "coordonnees_gps": [49.1470921709, 2.55054405119], "code_commune_insee": "60631"}, "geometry": {"type": "Point", "coordinates": [2.55054405119, 49.1470921709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91350517f425e664934ee04dec1a30ebd36bb910", "fields": {"nom_de_la_commune": "THURY SOUS CLERMONT", "libell_d_acheminement": "THURY SOUS CLERMONT", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60638"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2444d834aae2b0b2f7e3d3765be8bd39b3865f", "fields": {"nom_de_la_commune": "TILLE", "libell_d_acheminement": "TILLE", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60639"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c20b0f202d2994f4a31d5ec261996dfd67ede0c", "fields": {"nom_de_la_commune": "TROSLY BREUIL", "libell_d_acheminement": "TROSLY BREUIL", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60647"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e54664987677adba989e100f55ab323e7e307a1", "fields": {"nom_de_la_commune": "LE VAUROUX", "libell_d_acheminement": "LE VAUROUX", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60662"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c41cee690c9a5a1928aebc4f94999228e5e2369", "fields": {"code_postal": "60112", "code_commune_insee": "60668", "libell_d_acheminement": "VERDEREL LES SAUQUEUSE", "ligne_5": "SAUQUEUSE ST LUCIEN", "nom_de_la_commune": "VERDEREL LES SAUQUEUSE", "coordonnees_gps": [49.5062949705, 2.00745335083]}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc1b6ff3332ad44d8f9398263163da32723b533c", "fields": {"nom_de_la_commune": "VERSIGNY", "libell_d_acheminement": "VERSIGNY", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60671"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc202334d9048567c21a0b4afdfee9324a0ab90", "fields": {"nom_de_la_commune": "VEZ", "libell_d_acheminement": "VEZ", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60672"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b93e9d7177ec7697c2747626026de28df2ec24b", "fields": {"nom_de_la_commune": "VILLE", "libell_d_acheminement": "VILLE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60676"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e908848dc3ffa6ff65afa208a2b7176fffa6f6", "fields": {"nom_de_la_commune": "VILLENEUVE SUR VERBERIE", "libell_d_acheminement": "VILLENEUVE SUR VERBERIE", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60680"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "353d1cd63be070bf15ec7d3d36cc295c365403cf", "fields": {"nom_de_la_commune": "VILLERS SUR BONNIERES", "libell_d_acheminement": "VILLERS SUR BONNIERES", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60688"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27845577bb070023173b80da5cf187d52c648edb", "fields": {"nom_de_la_commune": "VILLOTRAN", "libell_d_acheminement": "VILLOTRAN", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60694"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fe33f653cc51917fb5b3bd6b56b1e98de987aa", "fields": {"nom_de_la_commune": "WACQUEMOULIN", "libell_d_acheminement": "WACQUEMOULIN", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60698"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1d2ccb60ed5da24006030b0ca53cf11c254400", "fields": {"nom_de_la_commune": "ARGENTAN", "libell_d_acheminement": "ARGENTAN", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61006"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c5aadb8852e7bdfb5677ebdf4263ddff589a62", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "RONFEUGERAI", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aece9517ab5b09f0e5f2978ad8049e7d9540376", "fields": {"nom_de_la_commune": "ATHIS VAL DE ROUVRE", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61007"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c13b8dc730c2762fb9de731233fc62b67d0db18", "fields": {"nom_de_la_commune": "AUGUAISE", "libell_d_acheminement": "AUGUAISE", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61012"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4436c079d595e2af07169fc9a6241b789739f5d", "fields": {"nom_de_la_commune": "ST JULIEN DES POINTS", "libell_d_acheminement": "ST JULIEN DES POINTS", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48163"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8ba176d24ab57699c20dbd4a292e96541e9b09", "fields": {"nom_de_la_commune": "ST JULIEN DU TOURNEL", "libell_d_acheminement": "ST JULIEN DU TOURNEL", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48164"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6508630dbd16a16c0d877406369c9fbfd261e63b", "fields": {"nom_de_la_commune": "ST LAURENT DE MURET", "libell_d_acheminement": "ST LAURENT DE MURET", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48165"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28575b8e7b66c004808fbba45ee4aa42aef38c9a", "fields": {"nom_de_la_commune": "ST LAURENT DE VEYRES", "libell_d_acheminement": "ST LAURENT DE VEYRES", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48167"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e66f982ea280e2fd425221c06b0a3201f53bac", "fields": {"nom_de_la_commune": "ST PRIVAT DE VALLONGUE", "libell_d_acheminement": "ST PRIVAT DE VALLONGUE", "code_postal": "48240", "coordonnees_gps": [44.2838225075, 3.82458328852], "code_commune_insee": "48178"}, "geometry": {"type": "Point", "coordinates": [3.82458328852, 44.2838225075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad11e5b485c90326a892f0691763684de8293586", "fields": {"nom_de_la_commune": "ST ROME DE DOLAN", "libell_d_acheminement": "ST ROME DE DOLAN", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48180"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0daf9842659dc4da7a240f9396a04c77f59fc0", "fields": {"nom_de_la_commune": "SERVIERES", "libell_d_acheminement": "SERVIERES", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48189"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7dc7f26accddf5cc598322e7cf6487539a3b24", "fields": {"nom_de_la_commune": "TERMES", "libell_d_acheminement": "TERMES", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48190"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1590bea88ec8e38fa84e91f79cf150257ede68bf", "fields": {"code_postal": "48400", "code_commune_insee": "48193", "libell_d_acheminement": "VEBRON", "ligne_5": "LES VANELS", "nom_de_la_commune": "VEBRON", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd3ffc2f5646b8896cd1c006e5295ddb2e170e1", "fields": {"nom_de_la_commune": "VIALAS", "libell_d_acheminement": "VIALAS", "code_postal": "48220", "coordonnees_gps": [44.3629471664, 3.81136680024], "code_commune_insee": "48194"}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ead7a01270136e407522caf60360a695ae320d", "fields": {"nom_de_la_commune": "ANGERS", "libell_d_acheminement": "ANGERS", "code_postal": "49000", "coordonnees_gps": [47.4914905977, -0.545029996891], "code_commune_insee": "49007"}, "geometry": {"type": "Point", "coordinates": [-0.545029996891, 47.4914905977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "614e08f0426c51083b248b3082214f88b3d890f4", "fields": {"nom_de_la_commune": "ANGERS", "libell_d_acheminement": "ANGERS", "code_postal": "49100", "coordonnees_gps": [47.4764503449, -0.55599583518], "code_commune_insee": "49007"}, "geometry": {"type": "Point", "coordinates": [-0.55599583518, 47.4764503449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581b76da14f5da08455fb2f9a2562b336c5d7742", "fields": {"nom_de_la_commune": "ANGRIE", "libell_d_acheminement": "ANGRIE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49008"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0bdfeadc132a40220164b8506e2dc442264a05", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CHARTRENE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cd46162333db9a5d2def1ca825bad17ba80bba", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CUON", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f83fc4832e69cfef60a9132fdc75f316304455", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "FOUGERE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5475d0ee0bdeeb55452ad6e14e7c30551e5433c6", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "MONTPOLLIN", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f16109b54f0e1ccefc309bde3104ba5345d132", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "ST QUENTIN LES BEAUREPAIRE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a897d45794c7ee74fa76a8a36217656a7e2705a7", "fields": {"nom_de_la_commune": "BEAUCOUZE", "libell_d_acheminement": "BEAUCOUZE", "code_postal": "49070", "coordonnees_gps": [47.4753092045, -0.662263154222], "code_commune_insee": "49020"}, "geometry": {"type": "Point", "coordinates": [-0.662263154222, 47.4753092045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd13f5999508ae3bbf9765b1d16ec4b31609491f", "fields": {"nom_de_la_commune": "BECON LES GRANITS", "libell_d_acheminement": "BECON LES GRANITS", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49026"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8bee65f442e48be9e3511ce1f57f2d194185a5", "fields": {"nom_de_la_commune": "BOUCHEMAINE", "libell_d_acheminement": "BOUCHEMAINE", "code_postal": "49080", "coordonnees_gps": [47.4306089664, -0.627478615441], "code_commune_insee": "49035"}, "geometry": {"type": "Point", "coordinates": [-0.627478615441, 47.4306089664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "034c978e96bedb775c2a92ed0aae64503d5cf3bf", "fields": {"nom_de_la_commune": "LE BOURG D IRE", "libell_d_acheminement": "LE BOURG D IRE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49037"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b024503d1764fdc17fa879c7933b058b5a520f80", "fields": {"nom_de_la_commune": "LA BREILLE LES PINS", "libell_d_acheminement": "LA BREILLE LES PINS", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49045"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58fc6792e70ffbb195caf08ac55bd0d6c7a8ecf", "fields": {"nom_de_la_commune": "CARBAY", "libell_d_acheminement": "CARBAY", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49056"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04b5d13f1cd503b26814e304050830607480d721", "fields": {"nom_de_la_commune": "LES CERQUEUX", "libell_d_acheminement": "LES CERQUEUX", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49058"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496ac5bdaffc72ecf1abaf0bdd6ebea479a819fa", "fields": {"nom_de_la_commune": "CHAMPTOCE SUR LOIRE", "libell_d_acheminement": "CHAMPTOCE SUR LOIRE", "code_postal": "49123", "coordonnees_gps": [47.4332447625, -0.895504618393], "code_commune_insee": "49068"}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af05cf48bcf82426f87aa453e30c1bf28bb5f3ae", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "ST LAURENT DES AUTELS", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da20492039d5432e2cceca654ea84058a0355678", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR SARTHE", "libell_d_acheminement": "CHATEAUNEUF SUR SARTHE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49080"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5f4d77e77895dbb996e382ce052ac69fc7a221", "fields": {"nom_de_la_commune": "CHAVAGNES", "libell_d_acheminement": "CHAVAGNES", "code_postal": "49380", "coordonnees_gps": [47.275621339, -0.477027666042], "code_commune_insee": "49086"}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780f162592ec5f7c8ed7aca91576f7a26d02bf5f", "fields": {"nom_de_la_commune": "CHEFFES", "libell_d_acheminement": "CHEFFES", "code_postal": "49125", "coordonnees_gps": [47.6143418722, -0.475891019587], "code_commune_insee": "49090"}, "geometry": {"type": "Point", "coordinates": [-0.475891019587, 47.6143418722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af32d58bc638c39bb9824ca5076263b0cfdb007", "fields": {"nom_de_la_commune": "CHEMELLIER", "libell_d_acheminement": "CHEMELLIER", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49091"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a961589c100fbff1aed84d04bb9ed5f27844d13", "fields": {"nom_de_la_commune": "CHEMILLE EN ANJOU", "libell_d_acheminement": "CHEMILLE EN ANJOU", "code_postal": "49120", "coordonnees_gps": [47.2129709341, -0.724371217207], "code_commune_insee": "49092"}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68d75c920f9e387e4be7737c125add49ae2def6", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "STE CHRISTINE", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaccfa3034d0089eadbc6ede28e536b6d65352c", "fields": {"code_postal": "49670", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "JOUE ETIAU", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50425e1f43b933516a772ae2aaf899a41d384f5f", "fields": {"code_postal": "49670", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "VALANJOU", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6eb9d87cdb719d1fdc1891950273d26b36ed86", "fields": {"nom_de_la_commune": "CHERRE", "libell_d_acheminement": "CHERRE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49096"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70e48b4253128ce8f687238367d50006bcb45ca", "fields": {"nom_de_la_commune": "CHIGNE", "libell_d_acheminement": "CHIGNE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49098"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5092a95cffb4560f13512e7fe87e81a72de2871", "fields": {"nom_de_la_commune": "CHOLET", "libell_d_acheminement": "CHOLET", "code_postal": "49300", "coordonnees_gps": [47.0459625077, -0.876963134951], "code_commune_insee": "49099"}, "geometry": {"type": "Point", "coordinates": [-0.876963134951, 47.0459625077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f152793c78001a0a06b0cf80a4ac2c5140c9beb", "fields": {"nom_de_la_commune": "COMBREE", "libell_d_acheminement": "COMBREE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49103"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf10dc077e77109472a3f34ecdaed54eca74c85e", "fields": {"nom_de_la_commune": "COURCHAMPS", "libell_d_acheminement": "COURCHAMPS", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49113"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d13368eba146df49b075f3ccc7b094d9f6ae26", "fields": {"nom_de_la_commune": "DENEE", "libell_d_acheminement": "DENEE", "code_postal": "49190", "coordonnees_gps": [47.3455543641, -0.637191878311], "code_commune_insee": "49120"}, "geometry": {"type": "Point", "coordinates": [-0.637191878311, 47.3455543641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442bb8d3e1a94f5d082108e362ec46e4dbe32d20", "fields": {"nom_de_la_commune": "LA FERRIERE DE FLEE", "libell_d_acheminement": "LA FERRIERE DE FLEE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49136"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9374d8058befc4c04d491aa5f81c1f43b844409c", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "ST GEORGES DES SEPT VOIES", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8592793c2d9651b07e3fb0fae679942694bf04cd", "fields": {"nom_de_la_commune": "JUIGNE SUR LOIRE", "libell_d_acheminement": "JUIGNE SUR LOIRE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49167"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7b79ff42c123abadbcb0ad53e189cd3cc91f0c", "fields": {"nom_de_la_commune": "JUVARDEIL", "libell_d_acheminement": "JUVARDEIL", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49170"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36aa2076f2438d3cd24be02ca2517b6fa7508f03", "fields": {"code_postal": "49160", "code_commune_insee": "49180", "libell_d_acheminement": "LONGUE JUMELLES", "ligne_5": "JUMELLES", "nom_de_la_commune": "LONGUE JUMELLES", "coordonnees_gps": [47.3844683998, -0.0956251907418]}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57b943ffbcbe62b21216f88180d893f3f736b93", "fields": {"nom_de_la_commune": "LOURESSE ROCHEMENIER", "libell_d_acheminement": "LOURESSE ROCHEMENIER", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49182"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bdb73a6ed96ddac4ad6fc5b604550b083e6b0c2", "fields": {"nom_de_la_commune": "LUIGNE", "libell_d_acheminement": "LUIGNE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49186"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9c44c34354938d33575f195c947c66900c64fb", "fields": {"nom_de_la_commune": "MAULEVRIER", "libell_d_acheminement": "MAULEVRIER", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49192"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5433ef67beb400929dfebb7a5a8aa7367f6013", "fields": {"code_postal": "49770", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "LA MEMBROLLE SUR LONGUENEE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.5603869664, -0.682921091412]}, "geometry": {"type": "Point", "coordinates": [-0.682921091412, 47.5603869664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ca8ca9212f60fadfbb2967be23979deac906bb", "fields": {"nom_de_la_commune": "MIRE", "libell_d_acheminement": "MIRE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49205"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9120804745a26479ad76ff579375680b9ebfe642", "fields": {"nom_de_la_commune": "MONTILLIERS", "libell_d_acheminement": "MONTILLIERS", "code_postal": "49310", "coordonnees_gps": [47.1669501795, -0.609299799039], "code_commune_insee": "49211"}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c36618bbc814a07865a58e8276431f88f3e4d23", "fields": {"nom_de_la_commune": "MONTREVAULT SUR EVRE", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "code_postal": "49110", "coordonnees_gps": [47.2803686932, -0.928193282699], "code_commune_insee": "49218"}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6051aa6fe83775cd01d53482f4440395cfc5cfde", "fields": {"code_postal": "49600", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LE FIEF SAUVIN", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f307b6d349512723398fb61e0e299647602da4c5", "fields": {"nom_de_la_commune": "NOYANT", "libell_d_acheminement": "NOYANT", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49228"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3487374b8ba01b61af914d943403e151573ba2", "fields": {"nom_de_la_commune": "NOYANT LA GRAVOYERE", "libell_d_acheminement": "NOYANT LA GRAVOYERE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49229"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72aaed6277f82a51bd899c7730ea9ff39de6b2f", "fields": {"code_postal": "49570", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "MONTJEAN SUR LOIRE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012ea11d60ce7639d1682478a0cc174e9fbc0e2f", "fields": {"code_postal": "49620", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LA POMMERAYE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7999ca286f553b5006ae52397c48f2cce5710b7a", "fields": {"nom_de_la_commune": "LES PONTS DE CE", "libell_d_acheminement": "LES PONTS DE CE", "code_postal": "49130", "coordonnees_gps": [47.4268002737, -0.542779965339], "code_commune_insee": "49246"}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74b67b52e60c1011f89e185a01936e04c2959e4", "fields": {"nom_de_la_commune": "LA POSSONNIERE", "libell_d_acheminement": "LA POSSONNIERE", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49247"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2d030dc0dbbf24d147240348572ffcf9ae8444", "fields": {"nom_de_la_commune": "QUERRE", "libell_d_acheminement": "QUERRE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49254"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c073e6084572fa855a08aa8ab35c9c1935ccad7", "fields": {"nom_de_la_commune": "LES RAIRIES", "libell_d_acheminement": "LES RAIRIES", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49257"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77af52fd3c33a3ae9cd67433f9869b0cfe3265e", "fields": {"nom_de_la_commune": "ROU MARSON", "libell_d_acheminement": "ROU MARSON", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49262"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc961440df5c597df44a83cc77588fd43f2b2ef", "fields": {"nom_de_la_commune": "STE GEMMES SUR LOIRE", "libell_d_acheminement": "STE GEMMES SUR LOIRE", "code_postal": "49130", "coordonnees_gps": [47.4268002737, -0.542779965339], "code_commune_insee": "49278"}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b88efbb7101a1bd87a1947284780273266f4f7", "fields": {"nom_de_la_commune": "ST GEORGES SUR LOIRE", "libell_d_acheminement": "ST GEORGES SUR LOIRE", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49283"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "befb6601215efafb98e4ccae9a1888f1fee649d8", "fields": {"nom_de_la_commune": "ST JEAN DE LINIERES", "libell_d_acheminement": "ST JEAN DE LINIERES", "code_postal": "49070", "coordonnees_gps": [47.4753092045, -0.662263154222], "code_commune_insee": "49289"}, "geometry": {"type": "Point", "coordinates": [-0.662263154222, 47.4753092045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e534b045a8067a83e3659139be135274b08b05a6", "fields": {"nom_de_la_commune": "ST JUST SUR DIVE", "libell_d_acheminement": "ST JUST SUR DIVE", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49291"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82162d20b7862bae20c4a2dadef408028dc89047", "fields": {"code_postal": "49750", "code_commune_insee": "49292", "libell_d_acheminement": "VAL DU LAYON", "ligne_5": "ST LAMBERT DU LATTAY", "nom_de_la_commune": "VAL DU LAYON", "coordonnees_gps": [47.2426647325, -0.667761115453]}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df1a385546b8fa946f4e357ffcaa542fb4d8c97", "fields": {"nom_de_la_commune": "ST LEGER DES BOIS", "libell_d_acheminement": "ST LEGER DES BOIS", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49298"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "147d4bec0384d671cf8c6db697e8d000abd6d2e7", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST ANDRE DE LA MARCHE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e10fe86606cb9066f76fbb167a857dfcf2e18ab", "fields": {"nom_de_la_commune": "ST MACAIRE DU BOIS", "libell_d_acheminement": "ST MACAIRE DU BOIS", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49302"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef64c44985d2feda231ec6d7eccc1d040e55e3b", "fields": {"nom_de_la_commune": "ST MARTIN DU BOIS", "libell_d_acheminement": "ST MARTIN DU BOIS", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49305"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11fa4ca2c76346227cc85698697d3bfe11a2a0b", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "BRAIN SUR L AUTHION", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04e6f2b46690ee9d846f977d51aad7818d1a1a8", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "LA BOHALLE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30b42b5e0532afdcd5267fdd50662648181b5c9", "fields": {"nom_de_la_commune": "ST PAUL DU BOIS", "libell_d_acheminement": "ST PAUL DU BOIS", "code_postal": "49310", "coordonnees_gps": [47.1669501795, -0.609299799039], "code_commune_insee": "49310"}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a82bc8747daa9769ef24c23099d4dad48389c7", "fields": {"code_postal": "49112", "code_commune_insee": "49323", "libell_d_acheminement": "VERRIERES EN ANJOU", "ligne_5": "PELLOUAILLES LES VIGNES", "nom_de_la_commune": "VERRIERES EN ANJOU", "coordonnees_gps": [47.5121402522, -0.476038939286]}, "geometry": {"type": "Point", "coordinates": [-0.476038939286, 47.5121402522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b07c27fd2e5b4969e87c3efe0125c9283505a92f", "fields": {"nom_de_la_commune": "SCEAUX D ANJOU", "libell_d_acheminement": "SCEAUX D ANJOU", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49330"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bc8c9c6e06417b69c0ac112f0636870185333b", "fields": {"nom_de_la_commune": "SEICHES SUR LE LOIR", "libell_d_acheminement": "SEICHES SUR LE LOIR", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49333"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d23e5448a6f232b215a5614536adbc2182d8ae9", "fields": {"nom_de_la_commune": "SOMLOIRE", "libell_d_acheminement": "SOMLOIRE", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49336"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582c27e7ec2f708e4ae7a9b66af17656f8b7366b", "fields": {"nom_de_la_commune": "SOUCELLES", "libell_d_acheminement": "SOUCELLES", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49337"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d5ce7d08c888ddcfba89c72aeac262510730c00", "fields": {"nom_de_la_commune": "THORIGNE D ANJOU", "libell_d_acheminement": "THORIGNE D ANJOU", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49344"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4513d9f657912cd8978703a124aaa5f042eb61b4", "fields": {"code_postal": "49750", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "RABLAY SUR LAYON", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.2426647325, -0.667761115453]}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa74edda79ee6bd09d9e35e0c41cd899b21ebc6", "fields": {"nom_de_la_commune": "LE TREMBLAY", "libell_d_acheminement": "LE TREMBLAY", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49354"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992ea4081ebbf10a6cb0462530273f0306e36b8c", "fields": {"nom_de_la_commune": "VAUCHRETIEN", "libell_d_acheminement": "VAUCHRETIEN", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49363"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c747fa8108cc21a448b829e0ff5c9c96d62e94c", "fields": {"nom_de_la_commune": "LES VERCHERS SUR LAYON", "libell_d_acheminement": "LES VERCHERS SUR LAYON", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49365"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90e547bc667adefd466097c6c01dbb2ef8a34b2c", "fields": {"nom_de_la_commune": "VERGONNES", "libell_d_acheminement": "VERGONNES", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49366"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa07c2a05582755274aeaa0f2937d5f5ea2512b1", "fields": {"nom_de_la_commune": "VERNOIL LE FOURRIER", "libell_d_acheminement": "VERNOIL LE FOURRIER", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49369"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1089602dcf70a02e99a7c514f8c6b8e5b96447", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "LES CERQUEUX SOUS PASSAVANT", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4a39c23a3baf176ccb5bedd615c9f7d57cca5b", "fields": {"nom_de_la_commune": "APPEVILLE", "libell_d_acheminement": "APPEVILLE", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50016"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75451ac8907b9d27ef04e31bd3c3b3eb4be3b79", "fields": {"nom_de_la_commune": "AVRANCHES", "libell_d_acheminement": "AVRANCHES", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50025"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8f34cb4f292eaed5c426a26445abca99cc8653", "fields": {"nom_de_la_commune": "BARNEVILLE CARTERET", "libell_d_acheminement": "BARNEVILLE CARTERET", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50031"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9d5f4b7f76e61199bd688d3fd7228f79c54267", "fields": {"nom_de_la_commune": "LA BARRE DE SEMILLY", "libell_d_acheminement": "LA BARRE DE SEMILLY", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50032"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db49a179683de453a4414b3e543253bb2c2de67f", "fields": {"nom_de_la_commune": "BEAUCHAMPS", "libell_d_acheminement": "BEAUCHAMPS", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50038"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294f6ee6ec7750c1ed202e9a16fe67999721d840", "fields": {"nom_de_la_commune": "BELVAL", "libell_d_acheminement": "BELVAL", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50044"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b2856273ecf6b133a6c8690eac9aea8acf9604", "fields": {"nom_de_la_commune": "BLAINVILLE SUR MER", "libell_d_acheminement": "BLAINVILLE SUR MER", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50058"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff20ac9cdc6517f2b3bd34f7bba63a235db3451", "fields": {"nom_de_la_commune": "JULLOUVILLE", "libell_d_acheminement": "JULLOUVILLE", "code_postal": "50610", "coordonnees_gps": [48.7634707089, -1.52774338084], "code_commune_insee": "50066"}, "geometry": {"type": "Point", "coordinates": [-1.52774338084, 48.7634707089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063eb44a1a08922b183a5537df040730c922351a", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR AY", "libell_d_acheminement": "BRETTEVILLE SUR AY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50078"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3599ce75d88ff5dfce38d7562091c00f9896ce74", "fields": {"nom_de_la_commune": "BREUVILLE", "libell_d_acheminement": "BREUVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50079"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188991db7b79113362fa0a1d7b4d36e07d88941a", "fields": {"nom_de_la_commune": "BREVILLE SUR MER", "libell_d_acheminement": "BREVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50081"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6d60a8ee2429cea32ec5d1d2b88085923f543ef", "fields": {"nom_de_la_commune": "BRICQUEVILLE SUR MER", "libell_d_acheminement": "BRICQUEVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50085"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd18cdb49d04ca12f1d2c232896394a173a709e2", "fields": {"nom_de_la_commune": "GOMMENEC H", "libell_d_acheminement": "GOMMENEC H", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22063"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a56d8e4ef03571568b892276c6f16f7d19f59f4", "fields": {"code_postal": "22200", "code_commune_insee": "22067", "libell_d_acheminement": "GRACES", "ligne_5": "GOURLAN GRACES", "nom_de_la_commune": "GRACES", "coordonnees_gps": [48.5849264415, -3.14728309077]}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dd61a7d9f3adf7e5805aee289913e5b3eb1ebb", "fields": {"nom_de_la_commune": "KERFOT", "libell_d_acheminement": "KERFOT", "code_postal": "22500", "coordonnees_gps": [48.7659885525, -3.04980464918], "code_commune_insee": "22086"}, "geometry": {"type": "Point", "coordinates": [-3.04980464918, 48.7659885525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5551a79c98cbc82bcc8b68e10f9471245470a701", "fields": {"nom_de_la_commune": "KERGRIST MOELOU", "libell_d_acheminement": "KERGRIST MOELOU", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22087"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "702288f6fd3b24aa039e5ad0c56eb7301be8a569", "fields": {"nom_de_la_commune": "KERIEN", "libell_d_acheminement": "KERIEN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22088"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757d3a8afc8f50ecbc7f938fb632b03c9386799a", "fields": {"nom_de_la_commune": "LANDEBAERON", "libell_d_acheminement": "LANDEBAERON", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22095"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020a83d318924837e4b0ac94a6d3769861cf86c8", "fields": {"nom_de_la_commune": "LANDEBIA", "libell_d_acheminement": "LANDEBIA", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22096"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c8df2f11a7cec73a980dad941f39cd43124dd1", "fields": {"nom_de_la_commune": "LA LANDEC", "libell_d_acheminement": "LA LANDEC", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22097"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f9e363cf9a66f0e66855a5e495e3895a2d7b2fa", "fields": {"nom_de_la_commune": "LANDEHEN", "libell_d_acheminement": "LANDEHEN", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22098"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b249cfaaca07860627e725cfd3ae03c844db0e42", "fields": {"nom_de_la_commune": "LANGROLAY SUR RANCE", "libell_d_acheminement": "LANGROLAY SUR RANCE", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22103"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afb0dac52b26e35c70b37a795d828842e0e3362", "fields": {"code_postal": "22300", "code_commune_insee": "22113", "libell_d_acheminement": "LANNION", "ligne_5": "BEG LEGUER SERVEL", "nom_de_la_commune": "LANNION", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302fddb08d543b7106266e071375eedb3848d104", "fields": {"nom_de_la_commune": "LANRODEC", "libell_d_acheminement": "LANRODEC", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22116"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32c3f25e8e877f93037a8ec0ab991db80ebb6e21", "fields": {"nom_de_la_commune": "LANTIC", "libell_d_acheminement": "LANTIC", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22117"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7956189c10f35054d7a1b9157261e917fe65cc14", "fields": {"nom_de_la_commune": "LAURENAN", "libell_d_acheminement": "LAURENAN", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22122"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67df8f05424643d92cb539ab70c8c605781cf14e", "fields": {"nom_de_la_commune": "MAEL CARHAIX", "libell_d_acheminement": "MAEL CARHAIX", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22137"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf217e80e37962838d87dcb15ba2d150cd88671", "fields": {"nom_de_la_commune": "LA MALHOURE", "libell_d_acheminement": "LA MALHOURE", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22140"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b8c66c5aae7420053f6a04bdeddc92665511d", "fields": {"nom_de_la_commune": "MATIGNON", "libell_d_acheminement": "MATIGNON", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22143"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6c09498915b9a73e5c894bb194ed1942197208", "fields": {"nom_de_la_commune": "LA MEAUGON", "libell_d_acheminement": "LA MEAUGON", "code_postal": "22440", "coordonnees_gps": [48.4956130543, -2.82108365648], "code_commune_insee": "22144"}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad099ca1d5fac65339a7c0d7cf16e42eddf8fc5c", "fields": {"nom_de_la_commune": "MERDRIGNAC", "libell_d_acheminement": "MERDRIGNAC", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22147"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74663d60819f1e9f21ffef134e4d08032e6696d1", "fields": {"nom_de_la_commune": "MERLEAC", "libell_d_acheminement": "MERLEAC", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22149"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478c77691b4b83243bb8ec7c7e29662b9f6915f7", "fields": {"nom_de_la_commune": "MINIHY TREGUIER", "libell_d_acheminement": "MINIHY TREGUIER", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22152"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fd25762fcd94ddf11a9475c4782f99620bac16", "fields": {"nom_de_la_commune": "MONCONTOUR", "libell_d_acheminement": "MONCONTOUR DE BRETAGNE", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22153"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67de97d004edcbe2fcfb190e490a5b277956676", "fields": {"nom_de_la_commune": "LA MOTTE", "libell_d_acheminement": "LA MOTTE", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22155"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed7b160e97cf79a45ab58fc29284549be55d2d9", "fields": {"nom_de_la_commune": "PEDERNEC", "libell_d_acheminement": "PEDERNEC", "code_postal": "22540", "coordonnees_gps": [48.5672822265, -3.30848163045], "code_commune_insee": "22164"}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39e2557df41967a34c127b1b1552ef968fc4754", "fields": {"code_postal": "22710", "code_commune_insee": "22166", "libell_d_acheminement": "PENVENAN", "ligne_5": "PORT BLANC", "nom_de_la_commune": "PENVENAN", "coordonnees_gps": [48.815824264, -3.30211967596]}, "geometry": {"type": "Point", "coordinates": [-3.30211967596, 48.815824264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b7166b250b158904e1ddae2158b1ccaa8e1b5e", "fields": {"nom_de_la_commune": "PERROS GUIREC", "libell_d_acheminement": "PERROS GUIREC", "code_postal": "22700", "coordonnees_gps": [48.7941225989, -3.4412963824], "code_commune_insee": "22168"}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d588513b7a7a801109eed66af600a743e7efc42", "fields": {"code_postal": "22700", "code_commune_insee": "22168", "libell_d_acheminement": "PERROS GUIREC", "ligne_5": "PLOUMANACH", "nom_de_la_commune": "PERROS GUIREC", "coordonnees_gps": [48.7941225989, -3.4412963824]}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86fcf27e6c3dc77bf0c9eadd61122a53bb000180", "fields": {"nom_de_la_commune": "PEUMERIT QUINTIN", "libell_d_acheminement": "PEUMERIT QUINTIN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22169"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf96162f62b10cc567ab8dc8552a53075ba5ada3", "fields": {"nom_de_la_commune": "PLAINTEL", "libell_d_acheminement": "PLAINTEL", "code_postal": "22940", "coordonnees_gps": [48.4160517121, -2.8116302496], "code_commune_insee": "22171"}, "geometry": {"type": "Point", "coordinates": [-2.8116302496, 48.4160517121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56bccab06aaeeb53dede10e9279f5e8b9d7d2ce", "fields": {"nom_de_la_commune": "PLEUDIHEN SUR RANCE", "libell_d_acheminement": "PLEUDIHEN SUR RANCE", "code_postal": "22690", "coordonnees_gps": [48.5060687899, -1.94808964301], "code_commune_insee": "22197"}, "geometry": {"type": "Point", "coordinates": [-1.94808964301, 48.5060687899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ee0c3d2c9aa8525c05d6d81a8997d7c4257807", "fields": {"nom_de_la_commune": "PLOUHA", "libell_d_acheminement": "PLOUHA", "code_postal": "22580", "coordonnees_gps": [48.6838185781, -2.93369249044], "code_commune_insee": "22222"}, "geometry": {"type": "Point", "coordinates": [-2.93369249044, 48.6838185781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a9d2f8c83f3f00f7f6d08a0b485c5d7b653e26", "fields": {"nom_de_la_commune": "PLOUISY", "libell_d_acheminement": "PLOUISY", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22223"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf89d7a0dc511bc7b4ad8cb467de4118b8086eb", "fields": {"nom_de_la_commune": "PLOUNERIN", "libell_d_acheminement": "PLOUNERIN", "code_postal": "22780", "coordonnees_gps": [48.5213777811, -3.52574815356], "code_commune_insee": "22227"}, "geometry": {"type": "Point", "coordinates": [-3.52574815356, 48.5213777811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f609c64ba6b8c9a3ba76855054ca242d3675ca4a", "fields": {"nom_de_la_commune": "PLOURAC H", "libell_d_acheminement": "PLOURAC H", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22231"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231f20f092c9df55f90baf2623d11bf105ef4e33", "fields": {"nom_de_la_commune": "PLOURHAN", "libell_d_acheminement": "PLOURHAN", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22232"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d869d5ac6cf1e5c15c8819e4ed323a271fb6c75b", "fields": {"nom_de_la_commune": "PLOUZELAMBRE", "libell_d_acheminement": "PLOUZELAMBRE", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22235"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a845b6442e9bcbc960a106af347fd9d26a6b1d51", "fields": {"nom_de_la_commune": "PLUDUAL", "libell_d_acheminement": "PLUDUAL", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22236"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5493726496e6987ab7dc872246b4db94a882b1ca", "fields": {"nom_de_la_commune": "PLUZUNET", "libell_d_acheminement": "PLUZUNET", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22245"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee065f43f1317d610db53cd95c55e1fd83b1b01", "fields": {"nom_de_la_commune": "POULDOURAN", "libell_d_acheminement": "POULDOURAN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22253"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0277980a6f0f64a6a68d2e0ee81e43de60668a30", "fields": {"nom_de_la_commune": "LA PRENESSAYE", "libell_d_acheminement": "LA PRENESSAYE", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22255"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb93d51718b75f9f5060dafdad283854c667d28a", "fields": {"nom_de_la_commune": "QUEMPER GUEZENNEC", "libell_d_acheminement": "QUEMPER GUEZENNEC", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22256"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51299dd8e53418040184cd0fafb80fc572c3372b", "fields": {"nom_de_la_commune": "QUESSOY", "libell_d_acheminement": "QUESSOY", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22258"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2c37ddf03ac579c9af3de35452bf5bb5876a03", "fields": {"nom_de_la_commune": "QUEVERT", "libell_d_acheminement": "QUEVERT", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22259"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99e4136c743b0a98628a7294d054f9b2642df92", "fields": {"code_postal": "22100", "code_commune_insee": "22259", "libell_d_acheminement": "QUEVERT", "ligne_5": "L AUBLETTE QUEVERT", "nom_de_la_commune": "QUEVERT", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a6612e80b99e4493135c240b22793bd34986a1", "fields": {"nom_de_la_commune": "ROSTRENEN", "libell_d_acheminement": "ROSTRENEN", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22266"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb98dca4bd9fac03c9f34a7ff7bead3c0d194be1", "fields": {"code_postal": "22110", "code_commune_insee": "22266", "libell_d_acheminement": "ROSTRENEN", "ligne_5": "BONEN", "nom_de_la_commune": "ROSTRENEN", "coordonnees_gps": [48.2418797133, -3.31058083]}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "833300b7410074849f32114717ac74bad0f2ff4f", "fields": {"nom_de_la_commune": "ST AGATHON", "libell_d_acheminement": "ST AGATHON", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22272"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195aac527781fa798d485798eef4ee62f9a4d3ce", "fields": {"nom_de_la_commune": "ST CAST LE GUILDO", "libell_d_acheminement": "ST CAST LE GUILDO", "code_postal": "22380", "coordonnees_gps": [48.6033654101, -2.24845045064], "code_commune_insee": "22282"}, "geometry": {"type": "Point", "coordinates": [-2.24845045064, 48.6033654101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e6d02ede9bdffab9b07429e0b8110bc99fe9e5b", "fields": {"nom_de_la_commune": "ST CLET", "libell_d_acheminement": "ST CLET", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22283"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721bda6a7849bb0c99095757abce94dfe9060505", "fields": {"nom_de_la_commune": "ST CONNAN", "libell_d_acheminement": "ST CONNAN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22284"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8e9285d737ebcdd6a10f33dbb253a00cc0fa57", "fields": {"nom_de_la_commune": "ST CONNEC", "libell_d_acheminement": "ST CONNEC", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22285"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea0d18e2f8a4ae552945e445ee5da3526b30422", "fields": {"nom_de_la_commune": "ST DENOUAL", "libell_d_acheminement": "ST DENOUAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22286"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7b75beae257a0390edd5aea996115472e5d582", "fields": {"nom_de_la_commune": "ST FIACRE", "libell_d_acheminement": "ST FIACRE", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22289"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6133a520dda507234f7f12b40886bbb5f19f0e29", "fields": {"nom_de_la_commune": "ST GELVEN", "libell_d_acheminement": "ST GELVEN", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22290"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60395e91699b2a78e678a33a755ecde5f5c23eb", "fields": {"nom_de_la_commune": "ST GILLES PLIGEAUX", "libell_d_acheminement": "ST GILLES PLIGEAUX", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22294"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8676da5ce06468fe5b497680d212e9c433ae8fc", "fields": {"nom_de_la_commune": "ST GUEN", "libell_d_acheminement": "ST GUEN", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22298"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe87f5d2548cc33e96cb5ff39be9c7bb78e3938", "fields": {"nom_de_la_commune": "ST JACUT DE LA MER", "libell_d_acheminement": "ST JACUT DE LA MER", "code_postal": "22750", "coordonnees_gps": [48.5896019058, -2.19253863485], "code_commune_insee": "22302"}, "geometry": {"type": "Point", "coordinates": [-2.19253863485, 48.5896019058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf051683e1737295362952ee69b17fde7b6e2ab", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "22940", "coordonnees_gps": [48.4160517121, -2.8116302496], "code_commune_insee": "22307"}, "geometry": {"type": "Point", "coordinates": [-2.8116302496, 48.4160517121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdf88f48c76fed3139103e4c6734a1b1b2caa0b", "fields": {"nom_de_la_commune": "ST NICODEME", "libell_d_acheminement": "ST NICODEME", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22320"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f93c69a30df478d0614634b28cd341b7aef17a9", "fields": {"nom_de_la_commune": "ST PEVER", "libell_d_acheminement": "ST PEVER", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22322"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9140d1ba1eddeede39ec3e552b5d971ec92107", "fields": {"nom_de_la_commune": "SENVEN LEHART", "libell_d_acheminement": "SENVEN LEHART", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22335"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33fbeedee9fe9b2a4653d2669aa74a128fa746fd", "fields": {"nom_de_la_commune": "SEVIGNAC", "libell_d_acheminement": "SEVIGNAC", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22337"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3779c49921d5cfc810d5d9a1e3ab1fadfad41985", "fields": {"nom_de_la_commune": "SQUIFFIEC", "libell_d_acheminement": "SQUIFFIEC", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22338"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6181c42400e327d3986b2a2d015e85e63ed6f2", "fields": {"nom_de_la_commune": "TREDARZEC", "libell_d_acheminement": "TREDARZEC", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22347"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa2eed17b7039edd3888e8066e40a900912398c", "fields": {"nom_de_la_commune": "TREDREZ LOCQUEMEAU", "libell_d_acheminement": "TREDREZ LOCQUEMEAU", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22349"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03af8d04616c04c0bbaf7dd174166350e80811a", "fields": {"nom_de_la_commune": "TREDUDER", "libell_d_acheminement": "TREDUDER", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22350"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd14782147fd25c2172fd0c54833b6561f5551e4", "fields": {"nom_de_la_commune": "TREFUMEL", "libell_d_acheminement": "TREFUMEL", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22352"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0577954e64ba6a167e42e24455e0ab094918ac", "fields": {"nom_de_la_commune": "TREGASTEL", "libell_d_acheminement": "TREGASTEL", "code_postal": "22730", "coordonnees_gps": [48.816984154, -3.50723770629], "code_commune_insee": "22353"}, "geometry": {"type": "Point", "coordinates": [-3.50723770629, 48.816984154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c51b04b01998a867b181bd7b51e40143039cc5", "fields": {"nom_de_la_commune": "TREGUIDEL", "libell_d_acheminement": "TREGUIDEL", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22361"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b031b9469d96c8a3191c128cae3daa565eb5b0c8", "fields": {"nom_de_la_commune": "TRELEVERN", "libell_d_acheminement": "TRELEVERN", "code_postal": "22660", "coordonnees_gps": [48.8064531549, -3.35769639754], "code_commune_insee": "22363"}, "geometry": {"type": "Point", "coordinates": [-3.35769639754, 48.8064531549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba978b7fe67e2e4c7d2d2437d974df62cf37318e", "fields": {"nom_de_la_commune": "TREMEL", "libell_d_acheminement": "TREMEL", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22366"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7287935e9517754be6140174f5deefcf6333a2e8", "fields": {"nom_de_la_commune": "TREMEVEN", "libell_d_acheminement": "TREMEVEN", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22370"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0959afad52cd2fc820e6d14e5781c2154e2420", "fields": {"nom_de_la_commune": "TRESSIGNAUX", "libell_d_acheminement": "TRESSIGNAUX", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22375"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5286460c35df4075e6fed2eaf8c38e2cac852a8f", "fields": {"nom_de_la_commune": "TROGUERY", "libell_d_acheminement": "TROGUERY", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22383"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd052a92d9d824fdb816a5232e0e14508cac4de2", "fields": {"nom_de_la_commune": "ALLEYRAT", "libell_d_acheminement": "ALLEYRAT", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23003"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5564320e730407ad0f8024ca11d84ef2b8f2a31", "fields": {"nom_de_la_commune": "AULON", "libell_d_acheminement": "AULON", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23011"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cb5c2789bf23c6e20355ff6e5e3e66d978d4a9", "fields": {"nom_de_la_commune": "BEISSAT", "libell_d_acheminement": "BEISSAT", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23019"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7820dfec60512891ad05562958c5b81f5051e979", "fields": {"nom_de_la_commune": "BLAUDEIX", "libell_d_acheminement": "BLAUDEIX", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23023"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7191cc783443c749fc5cb05fa3fad3c66eab1c06", "fields": {"nom_de_la_commune": "BOSROGER", "libell_d_acheminement": "BOSROGER", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23028"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30087ebda3fcbbce06a3e2711f212bda030bed7", "fields": {"nom_de_la_commune": "BOURGANEUF", "libell_d_acheminement": "BOURGANEUF", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23030"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5813e89605cb063f176205a7dccd0ee15e02e18", "fields": {"nom_de_la_commune": "BOUSSAC BOURG", "libell_d_acheminement": "BOUSSAC BOURG", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23032"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b088f33725dae2b5b8c0dfcf4f4eb361206f05d", "fields": {"nom_de_la_commune": "BROUSSE", "libell_d_acheminement": "BROUSSE", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23034"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3bea9b7627ca7301da576423f63995a28c2b925", "fields": {"nom_de_la_commune": "BUSSIERE ST GEORGES", "libell_d_acheminement": "BUSSIERE ST GEORGES", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23038"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9afb0129838fc47d2c0c9de7e40ac6f0bdf8ba2f", "fields": {"nom_de_la_commune": "LA CELLE SOUS GOUZON", "libell_d_acheminement": "LA CELLE SOUS GOUZON", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23040"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02eb0683ae1d6eece1858d0bbe1d0912beb6ba19", "fields": {"nom_de_la_commune": "LA CELLETTE", "libell_d_acheminement": "LA CELLETTE", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23041"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f01853ebcf085cd225e9bde3d23c33ae625368", "fields": {"nom_de_la_commune": "CHAMBON STE CROIX", "libell_d_acheminement": "CHAMBON STE CROIX", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23044"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e96b965b98b7587ceede5282f18fe92c90bc00", "fields": {"nom_de_la_commune": "CHAMBON SUR VOUEIZE", "libell_d_acheminement": "CHAMBON SUR VOUEIZE", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23045"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a4b931eb4221a0fe62da6d711114b4dbfc9928", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MARTIAL", "libell_d_acheminement": "LA CHAPELLE ST MARTIAL", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23051"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e05d339cb4f206b667eefda47a1fdca3684d647", "fields": {"nom_de_la_commune": "LA CHAPELLE TAILLEFERT", "libell_d_acheminement": "LA CHAPELLE TAILLEFERT", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23052"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e1ede02f88e65cd873855c6408a3668693e489", "fields": {"nom_de_la_commune": "COLONDANNES", "libell_d_acheminement": "COLONDANNES", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23065"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7144ac7155f589a7d1748b60ca6d4dd1c19a17e", "fields": {"nom_de_la_commune": "GENTIOUX PIGEROLLES", "libell_d_acheminement": "GENTIOUX PIGEROLLES", "code_postal": "23340", "coordonnees_gps": [45.7675202312, 1.97700019659], "code_commune_insee": "23090"}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a26f07535f2b6074868f46d3e7fa253a05c6000", "fields": {"nom_de_la_commune": "GLENIC", "libell_d_acheminement": "GLENIC", "code_postal": "23380", "coordonnees_gps": [46.2198124266, 1.97076642582], "code_commune_insee": "23092"}, "geometry": {"type": "Point", "coordinates": [1.97076642582, 46.2198124266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274ccb6a16452dc05f81b091f7c7807982b61d9d", "fields": {"nom_de_la_commune": "LE GRAND BOURG", "libell_d_acheminement": "LE GRAND BOURG", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23095"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e29d3a5a4b327704c3948f0ea0a362373b7a919", "fields": {"nom_de_la_commune": "LAFAT", "libell_d_acheminement": "LAFAT", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23103"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28099bc86648ac5dd0978ac310c5c54638611c8", "fields": {"nom_de_la_commune": "LAVAUFRANCHE", "libell_d_acheminement": "LAVAUFRANCHE", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23104"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ade045db2c0c1d97255f509cf3c45fe79d0cb9c", "fields": {"nom_de_la_commune": "LIOUX LES MONGES", "libell_d_acheminement": "LIOUX LES MONGES", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23110"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2419678685d88555a54eedda63dfb7c81dc1796e", "fields": {"nom_de_la_commune": "LUSSAT", "libell_d_acheminement": "LUSSAT", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23114"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db29b3971cc767d9ac996fc758b54a149ae7640", "fields": {"nom_de_la_commune": "MAINSAT", "libell_d_acheminement": "MAINSAT", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23116"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24061cf2400c2268c130c341b443e0d0bf6e2973", "fields": {"nom_de_la_commune": "MAISONNISSES", "libell_d_acheminement": "MAISONNISSES", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23118"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0df53feeb54dff24007d6d3c2f417760256a2e8", "fields": {"nom_de_la_commune": "MALLERET BOUSSAC", "libell_d_acheminement": "MALLERET BOUSSAC", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23120"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3568ebbc4a304f4f42c7806d7c0b52560e30af", "fields": {"nom_de_la_commune": "STE MARIE CAPPEL", "libell_d_acheminement": "STE MARIE CAPPEL", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59536"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7daed764dc0cdfffe7d06748226f0b1d7144715a", "fields": {"nom_de_la_commune": "ST MOMELIN", "libell_d_acheminement": "ST MOMELIN", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59538"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830b41b27e877562d4e95f18775928ac5cf442ba", "fields": {"nom_de_la_commune": "ST SOUPLET", "libell_d_acheminement": "ST SOUPLET", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59545"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62321f48ad2b289908b642ea60c490a13dc57bd2", "fields": {"nom_de_la_commune": "ST VAAST EN CAMBRESIS", "libell_d_acheminement": "ST VAAST EN CAMBRESIS", "code_postal": "59188", "coordonnees_gps": [50.2124042637, 3.41180746227], "code_commune_insee": "59547"}, "geometry": {"type": "Point", "coordinates": [3.41180746227, 50.2124042637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3682f895887e84759adfb9d2ce6cbfe5c9d8fc9", "fields": {"nom_de_la_commune": "SAMEON", "libell_d_acheminement": "SAMEON", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59551"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9206f814eb84b9b31164d5f4011e446be24ad3", "fields": {"nom_de_la_commune": "SANTES", "libell_d_acheminement": "SANTES", "code_postal": "59211", "coordonnees_gps": [50.5902518478, 2.96079766371], "code_commune_insee": "59553"}, "geometry": {"type": "Point", "coordinates": [2.96079766371, 50.5902518478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb475f0c755719ee0c2232ab971000d00044e20", "fields": {"nom_de_la_commune": "SASSEGNIES", "libell_d_acheminement": "SASSEGNIES", "code_postal": "59145", "coordonnees_gps": [50.1990593503, 3.79431721305], "code_commune_insee": "59556"}, "geometry": {"type": "Point", "coordinates": [3.79431721305, 50.1990593503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eddbc7b230527a38f4dfcbb0a407c6eca700625", "fields": {"nom_de_la_commune": "SEBOURG", "libell_d_acheminement": "SEBOURG", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59559"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2bf5f0edcb0df71df290aa2d50c681d7d87ad0", "fields": {"nom_de_la_commune": "SERANVILLERS FORENVILLE", "libell_d_acheminement": "SERANVILLERS FORENVILLE", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59567"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254ebbf56878e14d0275b2af35981e0f8b0140e4", "fields": {"nom_de_la_commune": "SERCUS", "libell_d_acheminement": "SERCUS", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59568"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa360f487463ce4c1b43a7dc387a1e01749c467", "fields": {"nom_de_la_commune": "SIN LE NOBLE", "libell_d_acheminement": "SIN LE NOBLE", "code_postal": "59450", "coordonnees_gps": [50.3677619244, 3.12077272055], "code_commune_insee": "59569"}, "geometry": {"type": "Point", "coordinates": [3.12077272055, 50.3677619244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fded58ab1bb752e0a8440acc48e9772433149557", "fields": {"nom_de_la_commune": "SOLRE LE CHATEAU", "libell_d_acheminement": "SOLRE LE CHATEAU", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59572"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da652a34220450666fc6c111b54c735740c2f6e", "fields": {"nom_de_la_commune": "TETEGHEM COUDEKERQUE VILLAGE", "libell_d_acheminement": "TETEGHEM COUDEKERQUE VILLAGE", "code_postal": "59229", "coordonnees_gps": [51.0183217327, 2.46486695201], "code_commune_insee": "59588"}, "geometry": {"type": "Point", "coordinates": [2.46486695201, 51.0183217327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c7a783176b3f8e83a372832bb76a9b9739f168", "fields": {"nom_de_la_commune": "THIENNES", "libell_d_acheminement": "THIENNES", "code_postal": "59189", "coordonnees_gps": [50.6676916499, 2.47249399478], "code_commune_insee": "59590"}, "geometry": {"type": "Point", "coordinates": [2.47249399478, 50.6676916499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f686adf23b5eca7a38379565ce083c30f91c32", "fields": {"nom_de_la_commune": "THIVENCELLE", "libell_d_acheminement": "THIVENCELLE", "code_postal": "59163", "coordonnees_gps": [50.4613685751, 3.61604638041], "code_commune_insee": "59591"}, "geometry": {"type": "Point", "coordinates": [3.61604638041, 50.4613685751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779bc3151b3c1bfddcf86e0529b6d713315bc84a", "fields": {"nom_de_la_commune": "TOURMIGNIES", "libell_d_acheminement": "TOURMIGNIES", "code_postal": "59551", "coordonnees_gps": [50.5114163439, 3.06811658517], "code_commune_insee": "59600"}, "geometry": {"type": "Point", "coordinates": [3.06811658517, 50.5114163439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82714d88445c5310cf14d2d1768c0345e8bd9ce", "fields": {"nom_de_la_commune": "VALENCIENNES", "libell_d_acheminement": "VALENCIENNES", "code_postal": "59300", "coordonnees_gps": [50.3420089884, 3.52240338554], "code_commune_insee": "59606"}, "geometry": {"type": "Point", "coordinates": [3.52240338554, 50.3420089884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181ed31688891c327d4a4b26db64d398d10bf0f8", "fields": {"nom_de_la_commune": "VENDEGIES AU BOIS", "libell_d_acheminement": "VENDEGIES AU BOIS", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59607"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ef2d59589b7228ec20ac2356d6f710e19d6f62", "fields": {"nom_de_la_commune": "VIESLY", "libell_d_acheminement": "VIESLY", "code_postal": "59271", "coordonnees_gps": [50.1566654786, 3.45681264991], "code_commune_insee": "59614"}, "geometry": {"type": "Point", "coordinates": [3.45681264991, 50.1566654786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da5b48b04b12eb001f69098f919e44de1647bd5", "fields": {"nom_de_la_commune": "VIEUX MESNIL", "libell_d_acheminement": "VIEUX MESNIL", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59617"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a720e210440150445b016e0a006c25eaf74da0", "fields": {"nom_de_la_commune": "VILLEREAU", "libell_d_acheminement": "VILLEREAU", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59619"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c1429082b8d98468c87f0f816cc34b285c0806", "fields": {"nom_de_la_commune": "VILLERS GUISLAIN", "libell_d_acheminement": "VILLERS GUISLAIN", "code_postal": "59297", "coordonnees_gps": [50.0360859364, 3.1522537661], "code_commune_insee": "59623"}, "geometry": {"type": "Point", "coordinates": [3.1522537661, 50.0360859364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33335782e01be4a8a41baeb232fcf2c5af26ffcb", "fields": {"nom_de_la_commune": "VOLCKERINCKHOVE", "libell_d_acheminement": "VOLCKERINCKHOVE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59628"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be151fa5e4e4603b9114db929bf10344b6fbdb27", "fields": {"nom_de_la_commune": "WALLERS", "libell_d_acheminement": "WALLERS", "code_postal": "59135", "coordonnees_gps": [50.3789593982, 3.39834366175], "code_commune_insee": "59632"}, "geometry": {"type": "Point", "coordinates": [3.39834366175, 50.3789593982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1923b55bbc7b7d8ef94e7968340ef04345c0d98", "fields": {"nom_de_la_commune": "WANNEHAIN", "libell_d_acheminement": "WANNEHAIN", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59638"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be706628a41641960729039565aa48cb32b14f72", "fields": {"nom_de_la_commune": "WARGNIES LE PETIT", "libell_d_acheminement": "WARGNIES LE PETIT", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59640"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3186da6768a73cc5a8753e92171f844b928d64e", "fields": {"nom_de_la_commune": "WARLAING", "libell_d_acheminement": "WARLAING", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59642"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30c12ab97d6c0c626433f0766e34065c72e554d", "fields": {"nom_de_la_commune": "WILLEMS", "libell_d_acheminement": "WILLEMS", "code_postal": "59780", "coordonnees_gps": [50.6106542416, 3.2436665711], "code_commune_insee": "59660"}, "geometry": {"type": "Point", "coordinates": [3.2436665711, 50.6106542416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad4cc7a572be44a7b414c5a5ab2275e391db389", "fields": {"nom_de_la_commune": "WILLIES", "libell_d_acheminement": "WILLIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59661"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e1470a297d87c654581e0044c18235f619fc04", "fields": {"nom_de_la_commune": "ZUYDCOOTE", "libell_d_acheminement": "ZUYDCOOTE", "code_postal": "59123", "coordonnees_gps": [51.0709279733, 2.51756699208], "code_commune_insee": "59668"}, "geometry": {"type": "Point", "coordinates": [2.51756699208, 51.0709279733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543628af1b525b5e4918b39bc7d9d6f3521fa30d", "fields": {"nom_de_la_commune": "DON", "libell_d_acheminement": "DON", "code_postal": "59272", "coordonnees_gps": [50.5443637938, 2.91481132578], "code_commune_insee": "59670"}, "geometry": {"type": "Point", "coordinates": [2.91481132578, 50.5443637938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27e6748c8b1cfccff804b6a14372f6b604d2e2ce", "fields": {"nom_de_la_commune": "ANDEVILLE", "libell_d_acheminement": "ANDEVILLE", "code_postal": "60570", "coordonnees_gps": [49.2740563361, 2.16701620037], "code_commune_insee": "60012"}, "geometry": {"type": "Point", "coordinates": [2.16701620037, 49.2740563361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072763dbc03fe875c1c78159e2731240631b7b33", "fields": {"nom_de_la_commune": "ANGIVILLERS", "libell_d_acheminement": "ANGIVILLERS", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60014"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99676def98e42aa48adf5927a3a551155816654b", "fields": {"nom_de_la_commune": "AUGER ST VINCENT", "libell_d_acheminement": "AUGER ST VINCENT", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60027"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d54f2101e21bbc303890b2aa93dfea8850dd97", "fields": {"nom_de_la_commune": "BAILLEVAL", "libell_d_acheminement": "BAILLEVAL", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60042"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12083e773338d684d2933336c2af293618d012cf", "fields": {"nom_de_la_commune": "BALAGNY SUR THERAIN", "libell_d_acheminement": "BALAGNY SUR THERAIN", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60044"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3db8f9d9cafdb3e0bf182f522d207f9be800f5f", "fields": {"nom_de_la_commune": "BEAUDEDUIT", "libell_d_acheminement": "BEAUDEDUIT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60051"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68f6255d2bcb93f15a269f0ae4aef0257d72418", "fields": {"nom_de_la_commune": "BEAULIEU LES FONTAINES", "libell_d_acheminement": "BEAULIEU LES FONTAINES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60053"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59f1a21e2893f7af0fca18ec20d5a089aa11c51", "fields": {"nom_de_la_commune": "BEAURAINS LES NOYON", "libell_d_acheminement": "BEAURAINS LES NOYON", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60055"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e8c2bc3fc54daba274e3f82483fbf145535ad8", "fields": {"nom_de_la_commune": "BELLOY", "libell_d_acheminement": "BELLOY", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60061"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5841111f6de93a7499048dece06b9aa35261c7", "fields": {"nom_de_la_commune": "BIERMONT", "libell_d_acheminement": "BIERMONT", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60071"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a185ea4dd4a65d2f7042a2f2a50dc0886e1b6f98", "fields": {"nom_de_la_commune": "BLACOURT", "libell_d_acheminement": "BLACOURT", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60073"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08bed712f25efba0f5991c28ce85e056bbd9272", "fields": {"nom_de_la_commune": "BOUILLANCY", "libell_d_acheminement": "BOUILLANCY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60091"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a5598a5c2828030aa4639fbb8ce64ffd3d787e6", "fields": {"nom_de_la_commune": "BOUVRESSE", "libell_d_acheminement": "BOUVRESSE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60098"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10cb6234ebd69d8244bee951593565cc10aa08d0", "fields": {"nom_de_la_commune": "BREGY", "libell_d_acheminement": "BREGY", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60101"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1ef70f5a8bea55a7a4e86759d38b766709f22e", "fields": {"nom_de_la_commune": "BREUIL LE VERT", "libell_d_acheminement": "BREUIL LE VERT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60107"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbadfe523fee82ad984e518ccf43474187ed366e", "fields": {"nom_de_la_commune": "CATIGNY", "libell_d_acheminement": "CATIGNY", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60132"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccae5e163f90e111c2fcc43e0d3d70ca86aa0abf", "fields": {"nom_de_la_commune": "CATILLON FUMECHON", "libell_d_acheminement": "CATILLON FUMECHON", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60133"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97efe8ee1495560e93b023c9fe29fe4c309d4641", "fields": {"nom_de_la_commune": "CHAMBORS", "libell_d_acheminement": "CHAMBORS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60140"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297c4d6a5557997ede530608b66cf0964071dffd", "fields": {"nom_de_la_commune": "LA CHAPELLE EN SERVAL", "libell_d_acheminement": "LA CHAPELLE EN SERVAL", "code_postal": "60520", "coordonnees_gps": [49.1470921709, 2.55054405119], "code_commune_insee": "60142"}, "geometry": {"type": "Point", "coordinates": [2.55054405119, 49.1470921709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b410b3ecdc4921fcbb65920ef0de49e4a84b19", "fields": {"nom_de_la_commune": "CHAVENCON", "libell_d_acheminement": "CHAVENCON", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60144"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a70e0e61ca0fdd1fca806a0d5fcca8adc4eea5e", "fields": {"nom_de_la_commune": "CHEPOIX", "libell_d_acheminement": "CHEPOIX", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60146"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e44374a6a68d389bea321ad83433cfd6c315be4", "fields": {"nom_de_la_commune": "CHOQUEUSE LES BENARDS", "libell_d_acheminement": "CHOQUEUSE LES BENARDS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60153"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1170226b61f6222d5f52a9b4bd65970a414dc4", "fields": {"nom_de_la_commune": "COMPIEGNE", "libell_d_acheminement": "COMPIEGNE", "code_postal": "60200", "coordonnees_gps": [49.3992378489, 2.8537782842], "code_commune_insee": "60159"}, "geometry": {"type": "Point", "coordinates": [2.8537782842, 49.3992378489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0176281cd90e42bacf29bb54f5bbaa1ea29d00f6", "fields": {"nom_de_la_commune": "LE COUDRAY ST GERMER", "libell_d_acheminement": "LE COUDRAY ST GERMER", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60164"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03a8bc986bd8ec2fb80face1af7e316a2c5807b", "fields": {"nom_de_la_commune": "LE COUDRAY SUR THELLE", "libell_d_acheminement": "LE COUDRAY SUR THELLE", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60165"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7973a02b49e52847fad47a16f11e28a8ea89fb0", "fields": {"nom_de_la_commune": "COULOISY", "libell_d_acheminement": "COULOISY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60167"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8685b201a5807a864beb9bc268a425da2588f6", "fields": {"nom_de_la_commune": "COURTIEUX", "libell_d_acheminement": "COURTIEUX", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60171"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1acf9d045bbd972a84a6462df07fc2b941c8b9df", "fields": {"nom_de_la_commune": "CREIL", "libell_d_acheminement": "CREIL", "code_postal": "60100", "coordonnees_gps": [49.2528803702, 2.48402017104], "code_commune_insee": "60175"}, "geometry": {"type": "Point", "coordinates": [2.48402017104, 49.2528803702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fee3a727bb1cc7fbe64fa76df65662cb962faf4", "fields": {"nom_de_la_commune": "CROISSY SUR CELLE", "libell_d_acheminement": "CROISSY SUR CELLE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60183"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9daf38700640264e249f029eb0f8b23458b3e4e9", "fields": {"nom_de_la_commune": "CUIGNIERES", "libell_d_acheminement": "CUIGNIERES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60186"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1444623c164df6e7fe80a287c7113d61d334f899", "fields": {"nom_de_la_commune": "CUVILLY", "libell_d_acheminement": "CUVILLY", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60191"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319bc816fd209df663286f9d202962dfe1e315a9", "fields": {"nom_de_la_commune": "DUVY", "libell_d_acheminement": "DUVY", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60203"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898ff1fb17f63675b1c502d78fefdac31d7a0738", "fields": {"nom_de_la_commune": "EPINEUSE", "libell_d_acheminement": "EPINEUSE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60210"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc8c067dfd7f07cb0601de8faf9538ba8a7ccc6", "fields": {"nom_de_la_commune": "ESCHES", "libell_d_acheminement": "ESCHES", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60218"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcc557b24c8a65aa792643c62e7dc04e7068484", "fields": {"nom_de_la_commune": "EVRICOURT", "libell_d_acheminement": "EVRICOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60227"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef93d5237694778e6e91bd972f89a937e71a6d48", "fields": {"nom_de_la_commune": "FAY LES ETANGS", "libell_d_acheminement": "FAY LES ETANGS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60228"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb0edf40e58094a3510b59c9b2bbc10556b6110", "fields": {"nom_de_la_commune": "FEIGNEUX", "libell_d_acheminement": "FEIGNEUX", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60231"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd9d2570625cd5c8b1014630da9ac53fae6f39c", "fields": {"nom_de_la_commune": "FLAVY LE MELDEUX", "libell_d_acheminement": "FLAVY LE MELDEUX", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60236"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb402de08883a359a7e0ce29ae9e319b62a266c", "fields": {"nom_de_la_commune": "FORMERIE", "libell_d_acheminement": "FORMERIE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60245"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da46944762679a1d02e32e8ab36c3a37db862ad", "fields": {"nom_de_la_commune": "FOUILLOY", "libell_d_acheminement": "FOUILLOY", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60248"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a19cdd3983fe25a1313fc0670b0decaebddec4b1", "fields": {"nom_de_la_commune": "FOURNIVAL", "libell_d_acheminement": "FOURNIVAL", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60252"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6deac1bb3a37d3165fc21b3daf8a79f8d1bcbb26", "fields": {"nom_de_la_commune": "GAUDECHART", "libell_d_acheminement": "GAUDECHART", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60269"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71341d5be9535a0b2bad6480c0a7e74c9953eea", "fields": {"nom_de_la_commune": "GILOCOURT", "libell_d_acheminement": "GILOCOURT", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60272"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69df2a42c6dca3bd1257b9b2e4ee2fa1b7a6aa9", "fields": {"nom_de_la_commune": "GOUY LES GROSEILLERS", "libell_d_acheminement": "GOUY LES GROSEILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60283"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6771b9aa63f2cf1cefbe5e34f1a890d835d837e", "fields": {"nom_de_la_commune": "GREZ", "libell_d_acheminement": "GREZ", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60289"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64495a4f6039b77b2f40ff0813ddab1f27c4346a", "fields": {"nom_de_la_commune": "HAINVILLERS", "libell_d_acheminement": "HAINVILLERS", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60294"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9773ec306099a889cbe026c6d0ad7882d4a8e7b", "fields": {"nom_de_la_commune": "HARDIVILLERS", "libell_d_acheminement": "HARDIVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60299"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "335e8a428c237d39fd5c8716df5df7d0e37a0514", "fields": {"nom_de_la_commune": "HENONVILLE", "libell_d_acheminement": "HENONVILLE", "code_postal": "60119", "coordonnees_gps": [49.2082498189, 2.02680448523], "code_commune_insee": "60309"}, "geometry": {"type": "Point", "coordinates": [2.02680448523, 49.2082498189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789b2b5bc40a78e9b8b122b3af6f4da1f02f2b99", "fields": {"nom_de_la_commune": "HETOMESNIL", "libell_d_acheminement": "HETOMESNIL", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60314"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987acd35e6e0d8e1aa8bb0a418e60df0b63711b6", "fields": {"nom_de_la_commune": "HODENC L EVEQUE", "libell_d_acheminement": "HODENC L EVEQUE", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60316"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4879c2e392e400f482e3f235bc8d472690e0fa8a", "fields": {"nom_de_la_commune": "HONDAINVILLE", "libell_d_acheminement": "HONDAINVILLE", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60317"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c946304e3e7ed12e454c4af456a3ffaaf4cb89b", "fields": {"nom_de_la_commune": "JAMERICOURT", "libell_d_acheminement": "JAMERICOURT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60322"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3175964363c7d0eec0659c2c276ea8f7da8ea1", "fields": {"nom_de_la_commune": "JANVILLE", "libell_d_acheminement": "JANVILLE", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60323"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aedb2217534faa1eeef0e40767ec373125bf69c7", "fields": {"nom_de_la_commune": "JAUX", "libell_d_acheminement": "JAUX", "code_postal": "60880", "coordonnees_gps": [49.3809036755, 2.75739000766], "code_commune_insee": "60325"}, "geometry": {"type": "Point", "coordinates": [2.75739000766, 49.3809036755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1168712840ca2bf251d7e26563e0c9a2b5d26f0b", "fields": {"nom_de_la_commune": "LABOISSIERE EN THELLE", "libell_d_acheminement": "LABOISSIERE EN THELLE", "code_postal": "60570", "coordonnees_gps": [49.2740563361, 2.16701620037], "code_commune_insee": "60330"}, "geometry": {"type": "Point", "coordinates": [2.16701620037, 49.2740563361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3cee8375c45feb450a9f42372579c74229660b", "fields": {"nom_de_la_commune": "LACHAPELLE AUX POTS", "libell_d_acheminement": "LACHAPELLE AUX POTS", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60333"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543098a57714fb6cc55e9ab15d3d7a2d863c27f2", "fields": {"nom_de_la_commune": "LACHAPELLE ST PIERRE", "libell_d_acheminement": "LACHAPELLE ST PIERRE", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60334"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0acb6b04f94cb719af6e73fdfa6a595c1a4225", "fields": {"nom_de_la_commune": "LAFRAYE", "libell_d_acheminement": "LAFRAYE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60339"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218423f00c3ae41ad3b2e54a555fe117b5a51ec8", "fields": {"nom_de_la_commune": "LAMORLAYE", "libell_d_acheminement": "LAMORLAYE", "code_postal": "60260", "coordonnees_gps": [49.1601603194, 2.4189700047], "code_commune_insee": "60346"}, "geometry": {"type": "Point", "coordinates": [2.4189700047, 49.1601603194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e14d24c75207fe58f8b7dceab26463106db0a55", "fields": {"nom_de_la_commune": "LAVACQUERIE", "libell_d_acheminement": "LAVACQUERIE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60353"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805a4a822b0256dd9bbcef5d81abdbe0d808cb25", "fields": {"nom_de_la_commune": "LAVERRIERE", "libell_d_acheminement": "LAVERRIERE", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60354"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c136fbeee9ec94d01fe1eda5b94f39d2e9bc668", "fields": {"nom_de_la_commune": "LEVIGNEN", "libell_d_acheminement": "LEVIGNEN", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60358"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91e1c3af488e9e799ac4edd7c5aa555f06f1e37", "fields": {"nom_de_la_commune": "LOCONVILLE", "libell_d_acheminement": "LOCONVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60367"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a990279b710bc9166ec9845560cd08a61cbeb3", "fields": {"nom_de_la_commune": "LONGUEIL ANNEL", "libell_d_acheminement": "LONGUEIL ANNEL", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60368"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4652d06897642fa34d4f76209751bc3d86ebf79", "fields": {"nom_de_la_commune": "LONGUEIL STE MARIE", "libell_d_acheminement": "LONGUEIL STE MARIE", "code_postal": "60126", "coordonnees_gps": [49.3411887466, 2.71608141162], "code_commune_insee": "60369"}, "geometry": {"type": "Point", "coordinates": [2.71608141162, 49.3411887466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483ec81ec4659d2b0bcde291a99c021e8a81ea17", "fields": {"nom_de_la_commune": "MAISONCELLE TUILERIE", "libell_d_acheminement": "MAISONCELLE TUILERIE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60377"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8530306e833fc163054f64f2cb0ade36400b9380", "fields": {"nom_de_la_commune": "MARGNY AUX CERISES", "libell_d_acheminement": "MARGNY AUX CERISES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60381"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975907aa18783078f574e5e8e481f30d4c039c66", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60385"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b70723d4b22dccca815c06e1390e275f2429474", "fields": {"nom_de_la_commune": "MAULERS", "libell_d_acheminement": "MAULERS", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60390"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c0ae5abd1ffef4e4a07c174353deda616d7dfd", "fields": {"nom_de_la_commune": "BUFFARD", "libell_d_acheminement": "BUFFARD", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25098"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9aeb4a703076630d57395f202d17feeb75768e9", "fields": {"nom_de_la_commune": "BUGNY", "libell_d_acheminement": "BUGNY", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25099"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2257dae885edef3967eff60ff34bfad91a2633c4", "fields": {"nom_de_la_commune": "BURGILLE", "libell_d_acheminement": "BURGILLE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25101"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c150f252db5afaa6886df18d83802c679bee272", "fields": {"nom_de_la_commune": "BUSY", "libell_d_acheminement": "BUSY", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25103"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d3b08e27920b600e145b263ce110ea2b8219f8", "fields": {"nom_de_la_commune": "CENDREY", "libell_d_acheminement": "CENDREY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25107"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a835e1545e4046e832892723c787bd65e57789c6", "fields": {"nom_de_la_commune": "CHALEZE", "libell_d_acheminement": "CHALEZE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25111"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5376490b1f0bf9aa244e53a3eeb1658421a5a5f", "fields": {"nom_de_la_commune": "CHANTRANS", "libell_d_acheminement": "CHANTRANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25120"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3316794e05ffa55922bcd522309e23c88667a890", "fields": {"nom_de_la_commune": "CHARQUEMONT", "libell_d_acheminement": "CHARQUEMONT", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25127"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f390851549ddc1b6628a96bf40459c51a97e7a", "fields": {"code_postal": "25140", "code_commune_insee": "25127", "libell_d_acheminement": "CHARQUEMONT", "ligne_5": "LE BOULOIS", "nom_de_la_commune": "CHARQUEMONT", "coordonnees_gps": [47.193428851, 6.81794567647]}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cec82007faaba0b160f674e9e83dce3a4323e37", "fields": {"nom_de_la_commune": "CHATILLON GUYOTTE", "libell_d_acheminement": "CHATILLON GUYOTTE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25132"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae5b7f6f945c7d177edfcab87c46f69ad5b0a10", "fields": {"nom_de_la_commune": "CHAUCENNE", "libell_d_acheminement": "CHAUCENNE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25136"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc7aa26f8753e5a734a70b4c95ab4581ce01060", "fields": {"nom_de_la_commune": "CHAY", "libell_d_acheminement": "CHAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25143"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc724e1d0a4f5c31eb2602d7c33b4cf05700ca3d", "fields": {"nom_de_la_commune": "LA CHENALOTTE", "libell_d_acheminement": "LA CHENALOTTE", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25148"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7600d7237e0e4f61e3779186e66eca6c350ea0", "fields": {"nom_de_la_commune": "CHENECEY BUILLON", "libell_d_acheminement": "CHENECEY BUILLON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25149"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7882dd51d8d8bd9ab387f0c33eb46037a88502b8", "fields": {"nom_de_la_commune": "LA CLUSE ET MIJOUX", "libell_d_acheminement": "LA CLUSE ET MIJOUX", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25157"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e6d6e1a6fbb6b67e8304cd1a0616ce9f365c23", "fields": {"nom_de_la_commune": "COLOMBIER FONTAINE", "libell_d_acheminement": "COLOMBIER FONTAINE", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25159"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e9e521dcc9caaa229722e756d730a44f64139c", "fields": {"nom_de_la_commune": "COTEBRUNE", "libell_d_acheminement": "COTEBRUNE", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25166"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7315a5fa19b17cfa29e2129fb83fb7b886745b57", "fields": {"nom_de_la_commune": "COURTEFONTAINE", "libell_d_acheminement": "COURTEFONTAINE", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25174"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49bf921f16c007321596c535525e3c4db710ceb9", "fields": {"nom_de_la_commune": "DAMBENOIS", "libell_d_acheminement": "DAMBENOIS", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25188"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469b6601f6ec2d7710e97277e6aa0399e7037380", "fields": {"nom_de_la_commune": "DAMMARTIN LES TEMPLIERS", "libell_d_acheminement": "DAMMARTIN LES TEMPLIERS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25189"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbefab0cb72052b38d3aaebb77844769f663727c", "fields": {"nom_de_la_commune": "DASLE", "libell_d_acheminement": "DASLE", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25196"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606ed0ada33a290b68e558787f3dc96e2d6ecfe5", "fields": {"nom_de_la_commune": "DOMPIERRE LES TILLEULS", "libell_d_acheminement": "DOMPIERRE LES TILLEULS", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25202"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b260a66c04915c75bc29d1bac81bee8e9f14ea5", "fields": {"nom_de_la_commune": "LES ECORCES", "libell_d_acheminement": "LES ECORCES", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25213"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b3dd74ff057c9fbbeaee553e4294a6316ccb47", "fields": {"nom_de_la_commune": "EMAGNY", "libell_d_acheminement": "EMAGNY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25217"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba4a6da94514a3aa27c512246c7a4884d503db3", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "COULANS SUR LIZON", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c2065568a11287573113c33b05373e260a75d6", "fields": {"nom_de_la_commune": "ETOUVANS", "libell_d_acheminement": "ETOUVANS", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25224"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d529068f42b46f9a25ee1bf3a17a5b8524255023", "fields": {"nom_de_la_commune": "ETRABONNE", "libell_d_acheminement": "ETRABONNE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25225"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54b10dfc31d19623aa86ea330336e78bd40c669", "fields": {"nom_de_la_commune": "EXINCOURT", "libell_d_acheminement": "EXINCOURT", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25230"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064c652dd455a2aa4b4fd9d99fbe6afdf37d8552", "fields": {"nom_de_la_commune": "FERTANS", "libell_d_acheminement": "FERTANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25236"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57f43971b3323121e9ba29b74049e9acce58d79", "fields": {"nom_de_la_commune": "FLAGEY", "libell_d_acheminement": "FLAGEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25241"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1ac6eb66981b73a584049c0f06c585e52bd14fb", "fields": {"nom_de_la_commune": "FLANGEBOUCHE", "libell_d_acheminement": "FLANGEBOUCHE", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25243"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08edecb043e13cb0d8f799d04eb1f83b071f808d", "fields": {"nom_de_la_commune": "FONTAIN", "libell_d_acheminement": "FONTAIN", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25245"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e81eff8627e7b0d1912a9b8331eddb159b2168c", "fields": {"nom_de_la_commune": "FOURCATIER ET MAISON NEUVE", "libell_d_acheminement": "FOURCATIER ET MAISON NEUVE", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25252"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83b1bad2f00f1cdbb5733e4ad0d0f7faf63d954", "fields": {"nom_de_la_commune": "FRASNE", "libell_d_acheminement": "FRASNE", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25259"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888b1e6485d50572636704001ff751effb889c21", "fields": {"nom_de_la_commune": "GELLIN", "libell_d_acheminement": "GELLIN", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25263"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3dd5f7348b44b4bf54859a0adb08b46018935a9", "fields": {"nom_de_la_commune": "GENEUILLE", "libell_d_acheminement": "GENEUILLE", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25265"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09adbd1d1e130c3765903865867086ea69f73dda", "fields": {"nom_de_la_commune": "GERMEFONTAINE", "libell_d_acheminement": "GERMEFONTAINE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25268"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65aca60b1588893863afe16ecc239b4d80f61f61", "fields": {"nom_de_la_commune": "GERMONDANS", "libell_d_acheminement": "GERMONDANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25269"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e80c39a68eacabd40f1277d93b39076e827901f", "fields": {"nom_de_la_commune": "GILLEY", "libell_d_acheminement": "GILLEY", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25271"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e8b73737a83defac4d29f087ff4ecffb714671", "fields": {"nom_de_la_commune": "GLAY", "libell_d_acheminement": "GLAY", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25274"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af41aa1f96d211e9d58218ae5f893c7cfb78dcbe", "fields": {"nom_de_la_commune": "GONSANS", "libell_d_acheminement": "GONSANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25278"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1eb9242900d1da4419f1663835de6f5fe3acbf0", "fields": {"nom_de_la_commune": "GRAND COMBE CHATELEU", "libell_d_acheminement": "GRAND COMBE CHATELEU", "code_postal": "25570", "coordonnees_gps": [47.0162100758, 6.56050756599], "code_commune_insee": "25285"}, "geometry": {"type": "Point", "coordinates": [6.56050756599, 47.0162100758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc0a6c3dde622222dde49f78285685b373a1f4e", "fields": {"nom_de_la_commune": "LES GRAS", "libell_d_acheminement": "LES GRAS", "code_postal": "25790", "coordonnees_gps": [46.9877227671, 6.54041107345], "code_commune_insee": "25296"}, "geometry": {"type": "Point", "coordinates": [6.54041107345, 46.9877227671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0c935da96c89e0de5ee058b6d7fe447cb27f40", "fields": {"nom_de_la_commune": "LES HOPITAUX VIEUX", "libell_d_acheminement": "LES HOPITAUX VIEUX", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25308"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491d95febfd9d6cb69a4232184efdf8b20ef4407", "fields": {"nom_de_la_commune": "HUANNE MONTMARTIN", "libell_d_acheminement": "HUANNE MONTMARTIN", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25310"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5ca8880e17fac86dc2449a407d06ee5dd8dc76", "fields": {"nom_de_la_commune": "HYEVRE PAROISSE", "libell_d_acheminement": "HYEVRE PAROISSE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25313"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04e619ad10405f511754a71017733df8ff6ba31", "fields": {"nom_de_la_commune": "JOUGNE", "libell_d_acheminement": "JOUGNE", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25318"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd9c6becd3ac45fbec954852cbefb3403f12b61", "fields": {"nom_de_la_commune": "LAISSEY", "libell_d_acheminement": "LAISSEY", "code_postal": "25820", "coordonnees_gps": [47.3002732154, 6.22746805322], "code_commune_insee": "25323"}, "geometry": {"type": "Point", "coordinates": [6.22746805322, 47.3002732154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c4b8a2363eb64f7433c286c292ca96e4cee1d56", "fields": {"nom_de_la_commune": "LANANS", "libell_d_acheminement": "LANANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25324"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c27e5c6e407f34f3c1de0d403bfd1814df179c", "fields": {"nom_de_la_commune": "LANTHENANS", "libell_d_acheminement": "LANTHENANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25327"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94acffd8c6a4cdd5eb02d15979fdd6f55dd259fa", "fields": {"nom_de_la_commune": "LAVANS VUILLAFANS", "libell_d_acheminement": "LAVANS VUILLAFANS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25331"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197504b021dbc6ceb9186978cb23824d03d938e8", "fields": {"code_postal": "25270", "code_commune_insee": "25334", "libell_d_acheminement": "LEVIER", "ligne_5": "GRANGES MAILLOT", "nom_de_la_commune": "LEVIER", "coordonnees_gps": [46.9453479853, 6.08965158553]}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817a9228f763148881d10f8d0f56164557316286", "fields": {"nom_de_la_commune": "LIESLE", "libell_d_acheminement": "LIESLE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25336"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eeb035e0469716a5d58a415803680ccb1f3376b", "fields": {"nom_de_la_commune": "LONGEVELLE SUR DOUBS", "libell_d_acheminement": "LONGEVELLE SUR DOUBS", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25345"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf37c45ba10a72686c7b98463efbaf73585862f", "fields": {"nom_de_la_commune": "LOUGRES", "libell_d_acheminement": "LOUGRES", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25350"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3bb1d1cda1fde5ad75508a99d6d7c6741b2ed88", "fields": {"nom_de_la_commune": "LE LUHIER", "libell_d_acheminement": "LE LUHIER", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25351"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a65fbe181e14d52366fb87a8de5e3cc42eacdc", "fields": {"nom_de_la_commune": "MANCENANS LIZERNE", "libell_d_acheminement": "MANCENANS LIZERNE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25366"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd0d0cf754066c6e7706baeffd54f4c466571d5a", "fields": {"nom_de_la_commune": "MANDEURE", "libell_d_acheminement": "MANDEURE", "code_postal": "25350", "coordonnees_gps": [47.4325059101, 6.81027856127], "code_commune_insee": "25367"}, "geometry": {"type": "Point", "coordinates": [6.81027856127, 47.4325059101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4051de49c79a077371c3f8da228f85d4aa765b", "fields": {"nom_de_la_commune": "MARCHAUX", "libell_d_acheminement": "MARCHAUX", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25368"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e7d947328f3e43b8bb6ea12b264ecf7c01c384", "fields": {"nom_de_la_commune": "MARVELISE", "libell_d_acheminement": "MARVELISE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25369"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85add9671a55d8eb7d95ac4fd8da2e6eac115947", "fields": {"nom_de_la_commune": "MERCEY LE GRAND", "libell_d_acheminement": "MERCEY LE GRAND", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25374"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db94e7c8efe32ce7c2bfa8149d3df825164bd29", "fields": {"nom_de_la_commune": "MEREY SOUS MONTROND", "libell_d_acheminement": "MEREY SOUS MONTROND", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25375"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "085cd7510ef8f5f0f6feddabc703853bbe662f6e", "fields": {"nom_de_la_commune": "MONTAGNEY SERVIGNEY", "libell_d_acheminement": "MONTAGNEY SERVIGNEY", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25385"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d50feb44fdd990f1fe28bb31d1aa651c56b827", "fields": {"nom_de_la_commune": "MONTBELIARDOT", "libell_d_acheminement": "MONTBELIARDOT", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25389"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68bcd5984fe921c2064cb775674beb8729c42bb", "fields": {"nom_de_la_commune": "MONTECHEROUX", "libell_d_acheminement": "MONTECHEROUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25393"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4381ec71789c662041b4eca1b6fbfd55ea20b960", "fields": {"nom_de_la_commune": "MONTJOIE LE CHATEAU", "libell_d_acheminement": "MONTJOIE LE CHATEAU", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25402"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b6d276c8171001e29c91f60b600db6964a8f0e", "fields": {"nom_de_la_commune": "MYON", "libell_d_acheminement": "MYON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25416"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ebce53dbd6bd587b705a2f51ba95da6bc94790", "fields": {"nom_de_la_commune": "NANCRAY", "libell_d_acheminement": "NANCRAY", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25418"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caafa1f4720d03a0c08dc790fd84b5f966222e2", "fields": {"nom_de_la_commune": "NARBIEF", "libell_d_acheminement": "NARBIEF", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25421"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743c84105814b22a75629ab697de8cd7c11da528", "fields": {"nom_de_la_commune": "NEUCHATEL URTIERE", "libell_d_acheminement": "NEUCHATEL URTIERE", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25422"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc6f2b2442426d6a3a32337974b35f78d0daac0", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "HAUTEPIERRE LE CHATELET", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644505ca5614ece3315db34ec2e8a4808acc0f51", "fields": {"nom_de_la_commune": "NOIRONTE", "libell_d_acheminement": "NOIRONTE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25427"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd9076381e63eb5fddc92cec76e8d1b1ee00b8c", "fields": {"nom_de_la_commune": "ORGEANS BLANCHEFONTAINE", "libell_d_acheminement": "ORGEANS BLANCHEFONTAINE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25433"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692a604b78ae7b60decc9785ebf8398d7a72f89c", "fields": {"code_postal": "25620", "code_commune_insee": "25434", "libell_d_acheminement": "ORNANS", "ligne_5": "BONNEVAUX LE PRIEURE", "nom_de_la_commune": "ORNANS", "coordonnees_gps": [47.1496172493, 6.14926775628]}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00f5609e95d00f509d6979c43e8e7421864f821", "fields": {"nom_de_la_commune": "OSSELLE ROUTELLE", "libell_d_acheminement": "OSSELLE ROUTELLE", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25438"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b8cb446e6092b51753006b0b0c80aad0f5a3e0", "fields": {"code_postal": "25410", "code_commune_insee": "25438", "libell_d_acheminement": "OSSELLE ROUTELLE", "ligne_5": "ROUTELLE", "nom_de_la_commune": "OSSELLE ROUTELLE", "coordonnees_gps": [47.1860285519, 5.82335931135]}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4174b4d0935d2e01f88c658e9a71faee11eb869a", "fields": {"nom_de_la_commune": "PASSAVANT", "libell_d_acheminement": "PASSAVANT", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25446"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd41ba66dfba37e16e3f97ceb283e7392a6cc971", "fields": {"nom_de_la_commune": "PONT DE ROIDE VERMONDANS", "libell_d_acheminement": "PONT DE ROIDE VERMONDANS", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25463"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b36edab88a13d0e7aef513a53540a99289debc9", "fields": {"nom_de_la_commune": "POULIGNEY LUSANS", "libell_d_acheminement": "POULIGNEY LUSANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25468"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5799392ca2fd2ee4b8a4e356b6e2576cea66209", "fields": {"nom_de_la_commune": "PRESENTEVILLERS", "libell_d_acheminement": "PRESENTEVILLERS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25469"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054fafd5dc35799825070cce349ff10464e53859", "fields": {"nom_de_la_commune": "RECOLOGNE", "libell_d_acheminement": "RECOLOGNE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25482"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5eb4fc5163a569c8a45ec7e7536407f86cb79ab", "fields": {"nom_de_la_commune": "ROGNON", "libell_d_acheminement": "ROGNON", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25498"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb35e27e22e601644b073066f0226c157fb2d9b", "fields": {"nom_de_la_commune": "ROUGEMONT", "libell_d_acheminement": "ROUGEMONT", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25505"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aecdbed1e2a2fd04a1bb3fcc1f5a7fe4d4303b5", "fields": {"nom_de_la_commune": "ST JUAN", "libell_d_acheminement": "ST JUAN", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25520"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da43158643fc3291de879eafb36bc1b7c227c388", "fields": {"nom_de_la_commune": "ST JULIEN LES RUSSEY", "libell_d_acheminement": "ST JULIEN LES RUSSEY", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25522"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514056a7a373766cc451c7a37c75e3d3a1e2d692", "fields": {"code_postal": "25260", "code_commune_insee": "25524", "libell_d_acheminement": "ST MAURICE COLOMBIER", "ligne_5": "COLOMBIER CHATELOT", "nom_de_la_commune": "ST MAURICE COLOMBIER", "coordonnees_gps": [47.456571306, 6.67036104248]}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b67a0cf420ec1b7a016f7a64b94c452c8e11a5", "fields": {"nom_de_la_commune": "STE SUZANNE", "libell_d_acheminement": "STE SUZANNE", "code_postal": "25630", "coordonnees_gps": [47.5088322071, 6.76860220893], "code_commune_insee": "25526"}, "geometry": {"type": "Point", "coordinates": [6.76860220893, 47.5088322071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8885431c177350c437f1e2ba14f11f456dff07", "fields": {"nom_de_la_commune": "SAUVAGNEY", "libell_d_acheminement": "SAUVAGNEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25536"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80cec22094ee788d4eabfd7d1b28cdd7c4fbea93", "fields": {"nom_de_la_commune": "SECHIN", "libell_d_acheminement": "SECHIN", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25538"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f46aceb231fadff071d866e0d0db7e93ba15b71", "fields": {"nom_de_la_commune": "SILLEY BLEFOND", "libell_d_acheminement": "SILLEY BLEFOND", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25546"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9eab71dbfbda1e1cd561693051be004409fa3ca", "fields": {"nom_de_la_commune": "SOLEMONT", "libell_d_acheminement": "SOLEMONT", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25548"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0044fa4da5d9ed55f0b211dac3978413f3f0cc28", "fields": {"nom_de_la_commune": "SOULCE CERNAY", "libell_d_acheminement": "SOULCE CERNAY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25551"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da52a681ab0c253fdcea78ce08f42ecb6b5a38e", "fields": {"nom_de_la_commune": "TALLENAY", "libell_d_acheminement": "TALLENAY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25557"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a7b6d60cf1c74a68f7c3fff768ad510f84b751", "fields": {"nom_de_la_commune": "THULAY", "libell_d_acheminement": "THULAY", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25562"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2e9a7ab6b638fd8fa1dac43944d73d5f3bf0f9", "fields": {"nom_de_la_commune": "THUREY LE MONT", "libell_d_acheminement": "THUREY LE MONT", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25563"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3007bb7a4169791d2eb00d70ceb02f87621a9a5", "fields": {"nom_de_la_commune": "VAL DE ROULANS", "libell_d_acheminement": "VAL DE ROULANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25579"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63bb4b208a1e30832f4d0384816bad05d1ce45b", "fields": {"nom_de_la_commune": "VAUCHAMPS", "libell_d_acheminement": "VAUCHAMPS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25587"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867ae4880dd85385e660d0829ef04739da254677", "fields": {"nom_de_la_commune": "VAUX ET CHANTEGRUE", "libell_d_acheminement": "VAUX ET CHANTEGRUE", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25592"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e952f1fe804a420e4af93ae5f865695fa09248e", "fields": {"nom_de_la_commune": "VELLEROT LES VERCEL", "libell_d_acheminement": "VELLEROT LES VERCEL", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25596"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94e9e0eb2011186c93b81333c17568eb34ca0369", "fields": {"nom_de_la_commune": "VERCEL VILLEDIEU LE CAMP", "libell_d_acheminement": "VERCEL VILLEDIEU LE CAMP", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25601"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c9291b37fb6dd8f2d6b7d089a90ebfa1351dfe", "fields": {"nom_de_la_commune": "AUNAY LES BOIS", "libell_d_acheminement": "AUNAY LES BOIS", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61013"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c10075038c8f042057f63bf9baa0159b1d0ba46", "fields": {"nom_de_la_commune": "BARVILLE", "libell_d_acheminement": "BARVILLE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61026"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09dfd650bcb6d5185828b40b9e50bbdb81fcdd6", "fields": {"nom_de_la_commune": "BAZOCHES SUR HOENE", "libell_d_acheminement": "BAZOCHES SUR HOENE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61029"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f7fcddc3531bd918048b42446af96bd05b3286", "fields": {"nom_de_la_commune": "BELFONDS", "libell_d_acheminement": "BELFONDS", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61036"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac9e5fd7ad624b587e3281dc209be232ad8bb4d", "fields": {"nom_de_la_commune": "BELLOU LE TRICHARD", "libell_d_acheminement": "BELLOU LE TRICHARD", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61041"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651ae0c4be0c99bb7cc7c77d69e997e72bea4cda", "fields": {"nom_de_la_commune": "BOITRON", "libell_d_acheminement": "BOITRON", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61051"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca304a23e88b83c0124efc4c812c0e8e63ef541", "fields": {"nom_de_la_commune": "BONNEFOI", "libell_d_acheminement": "BONNEFOI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61052"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281228046a078a5a996fb4b400072714ae284a66", "fields": {"nom_de_la_commune": "BRETHEL", "libell_d_acheminement": "BRETHEL", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61060"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e543a3094ee7ea396daeaa2a0376aad7f1557acd", "fields": {"nom_de_la_commune": "BRIEUX", "libell_d_acheminement": "BRIEUX", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61062"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e581febf36bfb11025e26abc42b45d43f4305bdc", "fields": {"nom_de_la_commune": "CANAPVILLE", "libell_d_acheminement": "CANAPVILLE", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61072"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942ea0f73e431c14f4cd6adf2142f36c7ce8aace", "fields": {"nom_de_la_commune": "ST CYR DU GAULT", "libell_d_acheminement": "ST CYR DU GAULT", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41205"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8231d32794aa90c1f0e749fd0a3be5844264c45a", "fields": {"nom_de_la_commune": "ST DENIS SUR LOIRE", "libell_d_acheminement": "ST DENIS SUR LOIRE", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41206"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87dce219650f72c856f950699a74851a8bf5b1bf", "fields": {"nom_de_la_commune": "ST ETIENNE DES GUERETS", "libell_d_acheminement": "ST ETIENNE DES GUERETS", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41208"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2efff33f6f4d22806769f6d6e6606b787e796f", "fields": {"nom_de_la_commune": "STE GEMMES", "libell_d_acheminement": "STE GEMMES", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41210"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4032ffcfbad776ea9baf2835c610393f07534d53", "fields": {"nom_de_la_commune": "ST MARTIN DES BOIS", "libell_d_acheminement": "ST MARTIN DES BOIS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41225"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d32f4e55398c181ae22601034a3c4d9dfba41e2", "fields": {"nom_de_la_commune": "ST RIMAY", "libell_d_acheminement": "ST RIMAY", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41228"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25daa3faf329ba6198daabdca79e7bca69fcf337", "fields": {"nom_de_la_commune": "SARGE SUR BRAYE", "libell_d_acheminement": "SARGE SUR BRAYE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41235"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da79b07b7a8508b2f12927d49e8a472f2eecfe4", "fields": {"nom_de_la_commune": "SASNIERES", "libell_d_acheminement": "SASNIERES", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41236"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c4776ff49d5090ba7da9c8c6b46862815c6328", "fields": {"nom_de_la_commune": "SEILLAC", "libell_d_acheminement": "SEILLAC", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41240"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e49899c2b067ece8ed4ec1e4a083a5105764d5", "fields": {"nom_de_la_commune": "SEUR", "libell_d_acheminement": "SEUR", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41246"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c4d1f7779324516eeb7dcb0718dd4886dc4e08a", "fields": {"nom_de_la_commune": "THEILLAY", "libell_d_acheminement": "THEILLAY", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41256"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1a2c9d2cf2bfe3018098496f9c689e5a2d970a", "fields": {"nom_de_la_commune": "TROO", "libell_d_acheminement": "TROO", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41265"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8431b159b64d5b8bbccfbf3912d2c324fcf15c4b", "fields": {"nom_de_la_commune": "VALAIRE", "libell_d_acheminement": "VALAIRE", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41266"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c79200e5d2a20b071ffb9f4e274d552ba9cd5d", "fields": {"nom_de_la_commune": "VIEVY LE RAYE", "libell_d_acheminement": "VIEVY LE RAYE", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41273"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf511801d344705c7bcde0c27a6c0395ee8d16d", "fields": {"nom_de_la_commune": "LA VILLE AUX CLERCS", "libell_d_acheminement": "LA VILLE AUX CLERCS", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41275"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab54724d26798ae3009adea28f2924e77b5adbc9", "fields": {"nom_de_la_commune": "VILLEFRANCHE SUR CHER", "libell_d_acheminement": "VILLEFRANCHE SUR CHER", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41280"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de1a0093e655b0aee5cc66307003383f76c8a53", "fields": {"nom_de_la_commune": "VILLEHERVIERS", "libell_d_acheminement": "VILLEHERVIERS", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41282"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08b7e9d900d7f1a65b9ee4121048d3c6efb6dff", "fields": {"nom_de_la_commune": "VILLENY", "libell_d_acheminement": "VILLENY", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41285"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f36366eb72edc5995bce3b0bd4f87b881d10e6", "fields": {"nom_de_la_commune": "VILLEPORCHER", "libell_d_acheminement": "VILLEPORCHER", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41286"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ff2d50698111e4d77770af3cb75d0d5224daa1", "fields": {"nom_de_la_commune": "VILLERABLE", "libell_d_acheminement": "VILLERABLE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41287"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726690f9afe1a395110e5c5129964099ca4e4ffc", "fields": {"nom_de_la_commune": "VILLERMAIN", "libell_d_acheminement": "VILLERMAIN", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41289"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b249b8fe397f0b503cd86d0409d7808548b45e", "fields": {"nom_de_la_commune": "ARTHUN", "libell_d_acheminement": "ARTHUN", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42009"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e61949d0a88bdd59a51777a8f8f5c7b5fb874432", "fields": {"nom_de_la_commune": "AVEIZIEUX", "libell_d_acheminement": "AVEIZIEUX", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42010"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4498cf9ece162aab7d5b422118788fd644299a", "fields": {"nom_de_la_commune": "BOURG ARGENTAL", "libell_d_acheminement": "BOURG ARGENTAL", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42023"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7704843c8cd8b308318e4a2ff9d1f9af63ca0037", "fields": {"nom_de_la_commune": "LE CERGNE", "libell_d_acheminement": "LE CERGNE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42033"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4556ac6ddad6c28ed1b8199219d137c13cfa13", "fields": {"nom_de_la_commune": "CEZAY", "libell_d_acheminement": "CEZAY", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42035"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b9282bddf8d28a65b06e491ddc5dd4aa1d7551", "fields": {"nom_de_la_commune": "CHALMAZEL JEANSAGNIERE", "libell_d_acheminement": "CHALMAZEL JEANSAGNIERE", "code_postal": "42920", "coordonnees_gps": [45.6983422849, 3.82487008798], "code_commune_insee": "42039"}, "geometry": {"type": "Point", "coordinates": [3.82487008798, 45.6983422849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd942b802e38106151fc5c7ab1530afce540dda0", "fields": {"nom_de_la_commune": "CHAMBEON", "libell_d_acheminement": "CHAMBEON", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42041"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e752d2cc8d26b46216450eb402f76965e748c667", "fields": {"nom_de_la_commune": "CHAMPDIEU", "libell_d_acheminement": "CHAMPDIEU", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42046"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dff93038af9db1c61e8086c5de333b3f00371b2", "fields": {"nom_de_la_commune": "LA CHAPELLE VILLARS", "libell_d_acheminement": "LA CHAPELLE VILLARS", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42051"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47203bbd8c4bf7fb0f054add854445378f2a745c", "fields": {"nom_de_la_commune": "CHAZELLES SUR LYON", "libell_d_acheminement": "CHAZELLES SUR LYON", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42059"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965c707d44268bc437a82e1f2eaf0a2b33155b88", "fields": {"nom_de_la_commune": "COMBRE", "libell_d_acheminement": "COMBRE", "code_postal": "42840", "coordonnees_gps": [46.0311905207, 4.23062167861], "code_commune_insee": "42068"}, "geometry": {"type": "Point", "coordinates": [4.23062167861, 46.0311905207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62b89a8fb90bff4f1484a094ed98df069469d16", "fields": {"nom_de_la_commune": "CREMEAUX", "libell_d_acheminement": "CREMEAUX", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42076"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eee3eeca943e8cc92a6abb6b126f51b56015781", "fields": {"nom_de_la_commune": "CUINZIER", "libell_d_acheminement": "CUINZIER", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42079"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a02d654867a3516855fbfae21f00cc9d418586", "fields": {"nom_de_la_commune": "DANCE", "libell_d_acheminement": "DANCE", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42082"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b707d8587e9ba5bcd88b4114ccfea8f85baeca75", "fields": {"nom_de_la_commune": "DOIZIEUX", "libell_d_acheminement": "DOIZIEUX", "code_postal": "42740", "coordonnees_gps": [45.4411267885, 4.58408605646], "code_commune_insee": "42085"}, "geometry": {"type": "Point", "coordinates": [4.58408605646, 45.4411267885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0362d300acc64a9dd93e318eeb5aaa97fe642210", "fields": {"nom_de_la_commune": "ECOCHE", "libell_d_acheminement": "ECOCHE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42086"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be8e24dab7156c9b43be26d88b7dca40ae6159d", "fields": {"nom_de_la_commune": "ECOTAY L OLME", "libell_d_acheminement": "ECOTAY L OLME", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42087"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c2e99aa88d9d4d9d1cccaf6d93893a08e737e5", "fields": {"nom_de_la_commune": "L ETRAT", "libell_d_acheminement": "L ETRAT", "code_postal": "42580", "coordonnees_gps": [45.4919279434, 4.38174482251], "code_commune_insee": "42092"}, "geometry": {"type": "Point", "coordinates": [4.38174482251, 45.4919279434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f19913bef4ff2de9c5801d27f9ac0fa1b270bf8", "fields": {"nom_de_la_commune": "FRAISSES", "libell_d_acheminement": "FRAISSES", "code_postal": "42490", "coordonnees_gps": [45.3844645276, 4.26055946433], "code_commune_insee": "42099"}, "geometry": {"type": "Point", "coordinates": [4.26055946433, 45.3844645276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e692edfd2d3e03196da3dc017db99c8adc5dd51c", "fields": {"nom_de_la_commune": "LA GIMOND", "libell_d_acheminement": "LA GIMOND", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42100"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6bc3bef540a8d0206b960c4a1d908cdca73888", "fields": {"nom_de_la_commune": "GRAMMOND", "libell_d_acheminement": "GRAMMOND", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42102"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca5ec3cd6cc13ad7e231782102c7a5fcb8c9c44", "fields": {"nom_de_la_commune": "GREZOLLES", "libell_d_acheminement": "GREZOLLES", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42106"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed92e9d7b2ea5327e01a534a9ab2f01dd1252ad7", "fields": {"nom_de_la_commune": "LAVIEU", "libell_d_acheminement": "LAVIEU", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42117"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2398343a08608a0ca487c1b9113d157e89def0", "fields": {"nom_de_la_commune": "LAY", "libell_d_acheminement": "LAY", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42118"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10937681f1e8a6a05a8470aaad0805af2c946fa2", "fields": {"nom_de_la_commune": "LORETTE", "libell_d_acheminement": "LORETTE", "code_postal": "42420", "coordonnees_gps": [45.5109070676, 4.58167229649], "code_commune_insee": "42123"}, "geometry": {"type": "Point", "coordinates": [4.58167229649, 45.5109070676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b0b4f4f0a4feae252d1466e5227b106ddf58b8", "fields": {"nom_de_la_commune": "LURE", "libell_d_acheminement": "LURE", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42125"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb58819b9bd33e64bc921cefd33cc2856e10f7d", "fields": {"nom_de_la_commune": "MARCILLY LE CHATEL", "libell_d_acheminement": "MARCILLY LE CHATEL", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42134"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dfa7b10654a6af23455fdcad0b967bd520a4d59", "fields": {"nom_de_la_commune": "MARCLOPT", "libell_d_acheminement": "MARCLOPT", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42135"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b69fdf15ce316ec450c1cd6f540289e50bcb29", "fields": {"nom_de_la_commune": "MARCOUX", "libell_d_acheminement": "MARCOUX", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42136"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e39858cd5a7d8f9c8cf79348194fca0ce4f6e0af", "fields": {"nom_de_la_commune": "MARINGES", "libell_d_acheminement": "MARINGES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42138"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8dd9e740e24af3eab276a23a73390f68ec9309", "fields": {"nom_de_la_commune": "MIZERIEUX", "libell_d_acheminement": "MIZERIEUX", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42143"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28f9fcc6c394c7bf1af68c71ee98b4fc6ac8b6c4", "fields": {"nom_de_la_commune": "MONTBRISON", "libell_d_acheminement": "MONTBRISON", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42147"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb50ab4d1d727363de98da2e319a559030bba934", "fields": {"nom_de_la_commune": "NERVIEUX", "libell_d_acheminement": "NERVIEUX", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42155"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153a7460efa47c4dbf895e7e6f85d52a4f408801", "fields": {"nom_de_la_commune": "PARIGNY", "libell_d_acheminement": "PARIGNY", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42166"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0268406b6702d7ef6b839142142df66dfdd48b0", "fields": {"nom_de_la_commune": "REGNY", "libell_d_acheminement": "REGNY", "code_postal": "42630", "coordonnees_gps": [46.0004668112, 4.2221699814], "code_commune_insee": "42181"}, "geometry": {"type": "Point", "coordinates": [4.2221699814, 46.0004668112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9159dfc9d8a0e15abfb069305767252efbfd4f34", "fields": {"code_postal": "42300", "code_commune_insee": "42187", "libell_d_acheminement": "ROANNE", "ligne_5": "L ARSENAL", "nom_de_la_commune": "ROANNE", "coordonnees_gps": [46.0587698503, 4.05970322199]}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99fa4a2269405af671de16323d08e84e8876c3d", "fields": {"nom_de_la_commune": "ROZIER EN DONZY", "libell_d_acheminement": "ROZIER EN DONZY", "code_postal": "42810", "coordonnees_gps": [45.8037489521, 4.27356891069], "code_commune_insee": "42193"}, "geometry": {"type": "Point", "coordinates": [4.27356891069, 45.8037489521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90339bdd129a16efd547d6a4e4ae866bb214c7f", "fields": {"nom_de_la_commune": "SAIL SOUS COUZAN", "libell_d_acheminement": "SAIL SOUS COUZAN", "code_postal": "42890", "coordonnees_gps": [45.7367322973, 3.96160108331], "code_commune_insee": "42195"}, "geometry": {"type": "Point", "coordinates": [3.96160108331, 45.7367322973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256046b20c7a34e1d4a00dfb8fc2560129154737", "fields": {"nom_de_la_commune": "ST BARTHELEMY LESTRA", "libell_d_acheminement": "ST BARTHELEMY LESTRA", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42202"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4ad14fd1b1cc9154e760e61077ca802046d2f3", "fields": {"code_postal": "42400", "code_commune_insee": "42207", "libell_d_acheminement": "ST CHAMOND", "ligne_5": "IZIEUX", "nom_de_la_commune": "ST CHAMOND", "coordonnees_gps": [45.4701877634, 4.50203719758]}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4baca67f97902670ba6af82f5884d18706583b8c", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "42160", "coordonnees_gps": [45.5337951598, 4.25427323721], "code_commune_insee": "42211"}, "geometry": {"type": "Point", "coordinates": [4.25427323721, 45.5337951598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "961fe2fae09e331cdd2de7186aae6b2a6981ac23", "fields": {"nom_de_la_commune": "ST DENIS SUR COISE", "libell_d_acheminement": "ST DENIS SUR COISE", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42216"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b93ff8c63fc92f21e73094380b23f05ec49a29", "fields": {"nom_de_la_commune": "ST DIDIER SUR ROCHEFORT", "libell_d_acheminement": "ST DIDIER SUR ROCHEFORT", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42217"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff8bc815c04d2283e646985fd8e0af55206d339", "fields": {"code_postal": "42100", "code_commune_insee": "42218", "libell_d_acheminement": "ST ETIENNE", "ligne_5": "TERRENOIRE", "nom_de_la_commune": "ST ETIENNE", "coordonnees_gps": [45.4301225907, 4.37830062526]}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b840c1515ec4326cafe3cce3da97fa32d2c223", "fields": {"nom_de_la_commune": "ST GALMIER", "libell_d_acheminement": "ST GALMIER", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42222"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be2f621227bf9531ef3a5934d572a07ad885769", "fields": {"nom_de_la_commune": "ST GENEST MALIFAUX", "libell_d_acheminement": "ST GENEST MALIFAUX", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42224"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c18ae252ff537ec68ff613de408dc571cd05d6c", "fields": {"code_postal": "42800", "code_commune_insee": "42225", "libell_d_acheminement": "GENILAC", "ligne_5": "LA CULA", "nom_de_la_commune": "GENILAC", "coordonnees_gps": [45.5337245551, 4.60104990812]}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5b609966838a2e8b16aa542c5f75d752d9ff74", "fields": {"nom_de_la_commune": "ST GERMAIN LAVAL", "libell_d_acheminement": "ST GERMAIN LAVAL", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42230"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9d8c10dc215300c781dbf090f7c3cd3594124c", "fields": {"nom_de_la_commune": "ST JODARD", "libell_d_acheminement": "ST JODARD", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42241"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6acbf42e56cf035137ec0db3ed53c9947b32849", "fields": {"nom_de_la_commune": "ST JUST EN CHEVALET", "libell_d_acheminement": "ST JUST EN CHEVALET", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42248"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e574c7de6402cab428906b0eac2c88884af031", "fields": {"nom_de_la_commune": "ST NIZIER DE FORNAS", "libell_d_acheminement": "ST NIZIER DE FORNAS", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42266"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb6d52b1825af03c4ef0f4efde44890be8175f6", "fields": {"nom_de_la_commune": "ST NIZIER SOUS CHARLIEU", "libell_d_acheminement": "ST NIZIER SOUS CHARLIEU", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42267"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38529bf973b11beed64ef914191a60b12ea52d59", "fields": {"nom_de_la_commune": "ST PAUL D UZORE", "libell_d_acheminement": "ST PAUL D UZORE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42269"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a357f7507799dde3a006d23be08e99f072e783f9", "fields": {"nom_de_la_commune": "ST PAUL EN CORNILLON", "libell_d_acheminement": "ST PAUL EN CORNILLON", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42270"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1614ff09ab4dd187090cf8d15d558322e9e46b9f", "fields": {"nom_de_la_commune": "ST PAUL EN JAREZ", "libell_d_acheminement": "ST PAUL EN JAREZ", "code_postal": "42740", "coordonnees_gps": [45.4411267885, 4.58408605646], "code_commune_insee": "42271"}, "geometry": {"type": "Point", "coordinates": [4.58408605646, 45.4411267885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88564020690086273ebf5589b99768c4cb1e02d", "fields": {"code_postal": "42170", "code_commune_insee": "42279", "libell_d_acheminement": "ST JUST ST RAMBERT", "ligne_5": "ST JUST SUR LOIRE", "nom_de_la_commune": "ST JUST ST RAMBERT", "coordonnees_gps": [45.4781366129, 4.24298529227]}, "geometry": {"type": "Point", "coordinates": [4.24298529227, 45.4781366129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb81747bcd84f8deb040bfa460cb46b79ebfbf6", "fields": {"nom_de_la_commune": "LES SALLES", "libell_d_acheminement": "LES SALLES", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42295"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3829962ab211215425d4b6dfa5bec7e853fee372", "fields": {"nom_de_la_commune": "SOLEYMIEUX", "libell_d_acheminement": "SOLEYMIEUX", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42301"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b77c47e4ac82c1568e1ee0b0f5243750a37fd6", "fields": {"nom_de_la_commune": "URBISE", "libell_d_acheminement": "URBISE", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42317"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a6655381edc15ce115e3e3cb3c4591c8e15291", "fields": {"nom_de_la_commune": "VERANNE", "libell_d_acheminement": "VERANNE", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42326"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0dd4840472eb8a8ba4e53590b7a47d3441e664", "fields": {"nom_de_la_commune": "VERIN", "libell_d_acheminement": "VERIN", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42327"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13f3ab298f6cf3d91f30c7e1c01e5564e8084fd", "fields": {"nom_de_la_commune": "VERRIERES EN FOREZ", "libell_d_acheminement": "VERRIERES EN FOREZ", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42328"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8a1a48d9410839d5282d06fb2c8ee8fe4a547c1", "fields": {"nom_de_la_commune": "VOUGY", "libell_d_acheminement": "VOUGY", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42338"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47a18ea89ae7e4e4718c70986c0a6e8f149f019", "fields": {"nom_de_la_commune": "ALLEYRAS", "libell_d_acheminement": "ALLEYRAS", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43005"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18d7fdf5e1086a3df702390941b2901a0258738", "fields": {"nom_de_la_commune": "ALLY", "libell_d_acheminement": "ALLY", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43006"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a738c8ee31a7c9c8277697785ad5d1f0f5c0fe3b", "fields": {"nom_de_la_commune": "AUREC SUR LOIRE", "libell_d_acheminement": "AUREC SUR LOIRE", "code_postal": "43110", "coordonnees_gps": [45.3688222347, 4.20461554973], "code_commune_insee": "43012"}, "geometry": {"type": "Point", "coordinates": [4.20461554973, 45.3688222347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9d4e4fea1b576806ebf662ebf21a2b4912940b", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43022"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ae02d957777f145cf9761b9b51cd33d254abdf", "fields": {"nom_de_la_commune": "BLESLE", "libell_d_acheminement": "BLESLE", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43033"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad7964c0d8201ba1734e5a485d1aa28875d2010", "fields": {"nom_de_la_commune": "BOISSET", "libell_d_acheminement": "BOISSET", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43034"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec4c5d2a3ae656802f4f3577041cb291b16bd9a", "fields": {"nom_de_la_commune": "BRUCHEVILLE", "libell_d_acheminement": "BRUCHEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50089"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2478d3dbcd796506b34be76b33a6507161888c0c", "fields": {"nom_de_la_commune": "CAMBERNON", "libell_d_acheminement": "CAMBERNON", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50092"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540ab3a26dfdfb0725ed688a7287e82bf5fa7a8b", "fields": {"nom_de_la_commune": "CANTELOUP", "libell_d_acheminement": "CANTELOUP", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50096"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28c7554d333b437b9d24a052c7784b3f714f2eb", "fields": {"nom_de_la_commune": "CARENTAN LES MARAIS", "libell_d_acheminement": "CARENTAN LES MARAIS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50099"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bc15e24b4430d4c24cb4bdebc2da1c03caae66", "fields": {"code_postal": "50320", "code_commune_insee": "50115", "libell_d_acheminement": "LE GRIPPON", "ligne_5": "CHAMPCERVON", "nom_de_la_commune": "LE GRIPPON", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1855a931d14e07164d4627029b920464da529b6", "fields": {"nom_de_la_commune": "CHAMPEAUX", "libell_d_acheminement": "CHAMPEAUX", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50117"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68bf4037251b20d2ecd14d12a3a60917bfce7fb", "fields": {"nom_de_la_commune": "CHAVOY", "libell_d_acheminement": "CHAVOY", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50126"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a1fb2abe038ec3081a81512bd7fd1224dab49dd", "fields": {"code_postal": "50120", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "EQUEURDREVILLE HAINNEVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6331832109, -1.6338586934]}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cdbf39ebd57fcf4d0d568dc78494a532ba07aa", "fields": {"nom_de_la_commune": "CLITOURPS", "libell_d_acheminement": "CLITOURPS", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50135"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8204c1a94a52189357eff76540358401ae68f6", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "GOUBERVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1f204cea9bda44ebb96be6f11c96c691f840ca", "fields": {"nom_de_la_commune": "COUDEVILLE SUR MER", "libell_d_acheminement": "COUDEVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50143"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd1ca6aba6994b37067015ffcd3150e383d6989", "fields": {"nom_de_la_commune": "COULOUVRAY BOISBENATRE", "libell_d_acheminement": "COULOUVRAY BOISBENATRE", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50144"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e12703cf514ddd79dceed7fa2909fe824ba16e8", "fields": {"nom_de_la_commune": "COURTILS", "libell_d_acheminement": "COURTILS", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50146"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16db40e40600ea93a30b8b2fc55eca44c4daa371", "fields": {"nom_de_la_commune": "COUVAINS", "libell_d_acheminement": "COUVAINS", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50148"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ebe7d1c2011fc161f5afcd4a706c84d9ad99e2", "fields": {"nom_de_la_commune": "DENNEVILLE", "libell_d_acheminement": "DENNEVILLE", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50160"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5679b5b2922667ddfa926a546b779cbdb15d336", "fields": {"nom_de_la_commune": "DIGULLEVILLE", "libell_d_acheminement": "DIGULLEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50163"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b5938536062e3a8ba9458b593ac9d3fdbea466", "fields": {"nom_de_la_commune": "DOMJEAN", "libell_d_acheminement": "DOMJEAN", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50164"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84608879f5a163fb345e8e3936567620a009cdf2", "fields": {"nom_de_la_commune": "EQUILLY", "libell_d_acheminement": "EQUILLY", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50174"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78065973fe16159bade96640dae4638194fe953", "fields": {"nom_de_la_commune": "L ETANG BERTRAND", "libell_d_acheminement": "L ETANG BERTRAND", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50176"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d782df70ba62fc2539a88df8ae6c410309da1044", "fields": {"nom_de_la_commune": "FERMANVILLE", "libell_d_acheminement": "FERMANVILLE", "code_postal": "50840", "coordonnees_gps": [49.681368583, -1.45437779574], "code_commune_insee": "50178"}, "geometry": {"type": "Point", "coordinates": [-1.45437779574, 49.681368583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca1f556381c843f15db2d1d4743ed6c743aaedd", "fields": {"code_postal": "50320", "code_commune_insee": "50188", "libell_d_acheminement": "FOLLIGNY", "ligne_5": "LE MESNIL DREY", "nom_de_la_commune": "FOLLIGNY", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39e625dd5d89f5b7268be5d0c60bcb3e243534c", "fields": {"nom_de_la_commune": "FOURNEAUX", "libell_d_acheminement": "FOURNEAUX", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50192"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d866452dadde295925ed2d89e659beb468035e3", "fields": {"nom_de_la_commune": "GATHEMO", "libell_d_acheminement": "GATHEMO", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50195"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c135afa4b9e23995e2f1dc8c2ad6f6fa7c2b1471", "fields": {"code_postal": "50450", "code_commune_insee": "50197", "libell_d_acheminement": "GAVRAY", "ligne_5": "LE MESNIL BONANT", "nom_de_la_commune": "GAVRAY", "coordonnees_gps": [48.9111916966, -1.32149043714]}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd548688cb84b3ad043fa08bb82400e788987575", "fields": {"nom_de_la_commune": "LE HAM", "libell_d_acheminement": "LE HAM", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50227"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8cb42d2a1a568bb9d67d0bea8504ccc439cc4f", "fields": {"nom_de_la_commune": "LA HAYE D ECTOT", "libell_d_acheminement": "LA HAYE D ECTOT", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50235"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a8777dc6cc98ca09a31bb2d11a0ce81467ebb0", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "MONTGARDON", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5996b32aea1929cec25c1a5a0bc6b48f4a44d66", "fields": {"code_postal": "50580", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "ST REMY DES LANDES", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3440940344, -1.66617929223]}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115d6556d364b3e860cc3a614b84b58eb7a870d6", "fields": {"nom_de_la_commune": "HEAUVILLE", "libell_d_acheminement": "HEAUVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50238"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cba5296bb4fbe9316692defd312b39da748f35", "fields": {"code_postal": "50180", "code_commune_insee": "50239", "libell_d_acheminement": "THEREVAL", "ligne_5": "HEBECREVON", "nom_de_la_commune": "THEREVAL", "coordonnees_gps": [49.1138081989, -1.15891000484]}, "geometry": {"type": "Point", "coordinates": [-1.15891000484, 49.1138081989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfccedb4ea2c487c41f8f73f48c96489cfc7c1c4", "fields": {"nom_de_la_commune": "HIESVILLE", "libell_d_acheminement": "HIESVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50246"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93b7a10f764f56005784f409e059c4e76add6ebf", "fields": {"nom_de_la_commune": "HOCQUIGNY", "libell_d_acheminement": "HOCQUIGNY", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50247"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb2d6e97ebed4a3af6440e0339285e7196b469a", "fields": {"nom_de_la_commune": "HUBERVILLE", "libell_d_acheminement": "HUBERVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50251"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b53bc61bb67c2ea31c70c924364a4d5ba41130b", "fields": {"nom_de_la_commune": "ISIGNY LE BUAT", "libell_d_acheminement": "ISIGNY LE BUAT", "code_postal": "50540", "coordonnees_gps": [48.6212799417, -1.18273702532], "code_commune_insee": "50256"}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a08475bfe01b6a5a0f32c7de66132c2f8d8841d1", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "MONTGOTHIER", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb53325fee0fd8ea73e1607e9079b6dde611fc9", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "MONTIGNY", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0727244e4da939e578ff5e7be9057e5050eefed1", "fields": {"nom_de_la_commune": "LAULNE", "libell_d_acheminement": "LAULNE", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50265"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace5284200163d88481ef7441fd0c046cac2f9e2", "fields": {"nom_de_la_commune": "LESTRE", "libell_d_acheminement": "LESTRE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50268"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc52ca5f1e8e8471b4c7d8f91e3ead68350c7a6f", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "LITHAIRE", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c827f49ef3c5ac2a2065aa83f9cad64dcad12986", "fields": {"nom_de_la_commune": "LES LOGES SUR BRECEY", "libell_d_acheminement": "LES LOGES SUR BRECEY", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50275"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88521d1e04a583d8a115cca847aeacf2203063e1", "fields": {"nom_de_la_commune": "MARCHESIEUX", "libell_d_acheminement": "MARCHESIEUX", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50289"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f128f059e7dc65be749675a9efa993be86705a", "fields": {"code_postal": "50570", "code_commune_insee": "50292", "libell_d_acheminement": "MARIGNY LE LOZON", "ligne_5": "LOZON", "nom_de_la_commune": "MARIGNY LE LOZON", "coordonnees_gps": [49.1154216014, -1.25542173856]}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1515fb4caed4cda2c74bce361d070ce42c4423c", "fields": {"nom_de_la_commune": "MARTINVAST", "libell_d_acheminement": "MARTINVAST", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50294"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e4aef5f5e4eff0a3ae871c0be88cb450430528", "fields": {"nom_de_la_commune": "MEAUTIS", "libell_d_acheminement": "MEAUTIS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50298"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccdaca1746ced9dbd82fd3489cdb6478992c6e6a", "fields": {"nom_de_la_commune": "LA MEURDRAQUIERE", "libell_d_acheminement": "LA MEURDRAQUIERE", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50327"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a5e948aab54773e144e10d83b01a2cead6ac21", "fields": {"nom_de_la_commune": "MONTAIGU LES BOIS", "libell_d_acheminement": "MONTAIGU LES BOIS", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50336"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189194a4b30a3347aa3c6207d387ae4e081427b7", "fields": {"nom_de_la_commune": "MONTFARVILLE", "libell_d_acheminement": "MONTFARVILLE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50342"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d6eca05ccf5f4a61bea001b3fcbfd842d9d1e8", "fields": {"nom_de_la_commune": "MOON SUR ELLE", "libell_d_acheminement": "MOON SUR ELLE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50356"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569e270a398f28edfa110106d90d7f035cbe7bc1", "fields": {"nom_de_la_commune": "LA MOUCHE", "libell_d_acheminement": "LA MOUCHE", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50361"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4975096b859ae5ff4be503d51b53e212ccf55650", "fields": {"nom_de_la_commune": "MOULINES", "libell_d_acheminement": "MOULINES", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50362"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc80e26b88f9cdfbbd960aacccf79d6c62e4107", "fields": {"code_postal": "50420", "code_commune_insee": "50363", "libell_d_acheminement": "MOYON VILLAGES", "ligne_5": "CHEVRY", "nom_de_la_commune": "MOYON VILLAGES", "coordonnees_gps": [48.9843046983, -1.06508907903]}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6afa82f80885f89d53f1b57225f68593dc43c0f1", "fields": {"nom_de_la_commune": "NAY", "libell_d_acheminement": "NAY", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50368"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e14706b44d4b7e143d84937c5aac0090adbe08", "fields": {"nom_de_la_commune": "LE NEUFBOURG", "libell_d_acheminement": "LE NEUFBOURG", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50371"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9dc3790c17c218ef46e59776e951d0bafe01db", "fields": {"nom_de_la_commune": "OMONVILLE LA ROGUE", "libell_d_acheminement": "OMONVILLE LA ROGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50386"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49138469430bfbe2c11bf9a4b372b7c950ce379", "fields": {"nom_de_la_commune": "ORVAL SUR SIENNE", "libell_d_acheminement": "ORVAL SUR SIENNE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50388"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebcc25ef62be548a67d4208c53231b6e457ff0f", "fields": {"code_postal": "50660", "code_commune_insee": "50388", "libell_d_acheminement": "ORVAL SUR SIENNE", "ligne_5": "MONTCHATON", "nom_de_la_commune": "ORVAL SUR SIENNE", "coordonnees_gps": [48.9716894019, -1.47095914438]}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc89a11d229804f836d2e817c9ba544f40721dc8", "fields": {"nom_de_la_commune": "LE PETIT CELLAND", "libell_d_acheminement": "LE PETIT CELLAND", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50399"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28e20f2aef7193c4322bcc4181faadc0030e1460", "fields": {"code_postal": "50250", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "HOUTTEVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efd0a90d724a69afd72733867a150a75943dab7a", "fields": {"code_postal": "50480", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "GOURBESVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1733d79028b37d415e2f7966563e6672287368b4", "fields": {"nom_de_la_commune": "LES PIEUX", "libell_d_acheminement": "LES PIEUX", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50402"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc99719b03de542a310d427bcb32794656064c37", "fields": {"nom_de_la_commune": "PLACY MONTAIGU", "libell_d_acheminement": "PLACY MONTAIGU", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50404"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd94769a7007d0eecc34206bef1d7d8db2b4bdf2", "fields": {"nom_de_la_commune": "LE PLESSIS LASTELLE", "libell_d_acheminement": "LE PLESSIS LASTELLE", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50405"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25d23eadc49f225515374b1fe9bfcf2f0df1add", "fields": {"nom_de_la_commune": "PONT HEBERT", "libell_d_acheminement": "PONT HEBERT", "code_postal": "50880", "coordonnees_gps": [49.1662165631, -1.12970537087], "code_commune_insee": "50409"}, "geometry": {"type": "Point", "coordinates": [-1.12970537087, 49.1662165631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfad7e3623d4802447e620b9f60a3db7b4496f9d", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "MACEY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6005a3d9e145bc8d76d657041c1db8b99d10f989", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "MOIDREY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b0c4c8fabc2dc91732fc3e0c74b747451f5035", "fields": {"nom_de_la_commune": "PONTS", "libell_d_acheminement": "PONTS", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50411"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6df42e11b9cff265d2e8415af63b256fd677ac", "fields": {"nom_de_la_commune": "PORTBAIL", "libell_d_acheminement": "PORTBAIL", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50412"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ebba590cb02f1e5472e7bba0b654e5fa1c5026", "fields": {"nom_de_la_commune": "QUETTEHOU", "libell_d_acheminement": "QUETTEHOU", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50417"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d663d0c19b48778ed433080bd73d658a82fc4a", "fields": {"nom_de_la_commune": "RAIDS", "libell_d_acheminement": "RAIDS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50422"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885c905b4ba175fedcc93e5f9dc3b49b6e9d8422", "fields": {"nom_de_la_commune": "RAMPAN", "libell_d_acheminement": "RAMPAN", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50423"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ef752563f836c5ea050202ae394519eab93331", "fields": {"nom_de_la_commune": "REMILLY SUR LOZON", "libell_d_acheminement": "REMILLY SUR LOZON", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50431"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526d59e0dc90371f8e4c0c6ec3239d64a8c9b7e2", "fields": {"nom_de_la_commune": "ROMAGNY FONTENAY", "libell_d_acheminement": "ROMAGNY FONTENAY", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50436"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79915b1fc2f6fd6e7e9f68882fdf0f94185d5da0", "fields": {"code_postal": "50160", "code_commune_insee": "50444", "libell_d_acheminement": "ST AMAND", "ligne_5": "LA CHAPELLE DU FEST", "nom_de_la_commune": "ST AMAND", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8832882086ce0b9c5af3b22bcabebc3fd659240f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU FOC", "libell_d_acheminement": "ST CHRISTOPHE DU FOC", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50454"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1530a3f7cabe483023fc2bfbf167c2318da949c3", "fields": {"nom_de_la_commune": "ST DENIS LE GAST", "libell_d_acheminement": "ST DENIS LE GAST", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50463"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f286435dae05c696faf85284e30f6b98fb54bf15", "fields": {"nom_de_la_commune": "ST GERMAIN DE VARREVILLE", "libell_d_acheminement": "ST GERMAIN DE VARREVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50479"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ec601c4d3e9cc35383148db1f86f98185ff66a", "fields": {"nom_de_la_commune": "ST GERMAIN SUR SEVES", "libell_d_acheminement": "ST GERMAIN SUR SEVES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50482"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2405261ed6a8f915125b6f1c0561af032a432d", "fields": {"code_postal": "50600", "code_commune_insee": "50484", "libell_d_acheminement": "ST HILAIRE DU HARCOUET", "ligne_5": "VIREY", "nom_de_la_commune": "ST HILAIRE DU HARCOUET", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a37d5ddb3dc6b914b173f267bb3c138d58e22f6", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "NOTRE DAME D ELLE", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4765e339c3d1eccc45dfd49c422de8ac26723790", "fields": {"nom_de_la_commune": "ST JEAN DU CORAIL DES BOIS", "libell_d_acheminement": "ST JEAN DU CORAIL DES BOIS", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50495"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b21f84f4027a9dd58bd208ad12feca153e6af78d", "fields": {"nom_de_la_commune": "ST MARTIN LE GREARD", "libell_d_acheminement": "ST MARTIN LE GREARD", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50519"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b046fd807d816b3c22668d207228bbceacc65d", "fields": {"nom_de_la_commune": "ST NICOLAS DE PIERREPONT", "libell_d_acheminement": "ST NICOLAS DE PIERREPONT", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50528"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93642b22b7daa7b8df48d0a14979e75452e398e", "fields": {"nom_de_la_commune": "ST PELLERIN", "libell_d_acheminement": "ST PELLERIN", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50534"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57db5cf93d4a47f07ed6eee9831026c8b68546d2", "fields": {"nom_de_la_commune": "ST PIERRE DE SEMILLY", "libell_d_acheminement": "ST PIERRE DE SEMILLY", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50538"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac95fa296e3149735e0437ed550d220e41994b5", "fields": {"nom_de_la_commune": "ST PLANCHERS", "libell_d_acheminement": "ST PLANCHERS", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50541"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80114b15ced0d5c93cdf2be06a6c197b008aae8", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "GOURFALEUR", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b571febcb9212a62b123bc709bd07a468d14e7ae", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "LA MANCELLIERE SUR VIRE", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30eefc43cc43867da1834c0d9cd5808db347b4e6", "fields": {"nom_de_la_commune": "ST SENIER SOUS AVRANCHES", "libell_d_acheminement": "ST SENIER SOUS AVRANCHES", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50554"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260d8fcf6b6f03a6cc22654fa3d9d5757fce01d2", "fields": {"nom_de_la_commune": "ST VAAST LA HOUGUE", "libell_d_acheminement": "ST VAAST LA HOUGUE", "code_postal": "50550", "coordonnees_gps": [49.5998454115, -1.27309328299], "code_commune_insee": "50562"}, "geometry": {"type": "Point", "coordinates": [-1.27309328299, 49.5998454115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7351ae61f27fd0eb39908d94fd66c5b8e034c5", "fields": {"code_postal": "50500", "code_commune_insee": "50564", "libell_d_acheminement": "TERRE ET MARAIS", "ligne_5": "SAINTENY", "nom_de_la_commune": "TERRE ET MARAIS", "coordonnees_gps": [49.2869249451, -1.26541021444]}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3a5400f18fb5beb52342f68aad9b93e7b7c13c", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "MONTVIRON", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5241ae00332cb8120cf77dc5dc5944f84796be", "fields": {"nom_de_la_commune": "SERVON", "libell_d_acheminement": "SERVON", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50574"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7469340a5a66077e693304cde2df870d205c3a63", "fields": {"nom_de_la_commune": "SOULLES", "libell_d_acheminement": "SOULLES", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50581"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ad2cd2734cd5d7b4bbb3210830a14a74cb800a", "fields": {"nom_de_la_commune": "SURTAINVILLE", "libell_d_acheminement": "SURTAINVILLE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50585"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32ad43bd0ec48cb0beba38d7a8f0249e41fb4db", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "FERRIERES", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d170b6370ae92a37f66d3492c4768b4e588d0bc2", "fields": {"nom_de_la_commune": "TEURTHEVILLE HAGUE", "libell_d_acheminement": "TEURTHEVILLE HAGUE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50594"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3af7755107f5e20e3318b48d07ce14386e37b02", "fields": {"code_postal": "50870", "code_commune_insee": "50597", "libell_d_acheminement": "TIREPIED", "ligne_5": "STE EUGIENNE", "nom_de_la_commune": "TIREPIED", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859daa6bb84a94e49fb0ad8c4a3581980ca7cdf8", "fields": {"code_postal": "50160", "code_commune_insee": "50601", "libell_d_acheminement": "TORIGNY LES VILLES", "ligne_5": "BRECTOUVILLE", "nom_de_la_commune": "TORIGNY LES VILLES", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99ada1c545237a1c4ce5f486d32c63c07b7d2ca", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50607"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75d63b826b960dd03faada0d4e18b99616f823a", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50610"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b526d6b1862a173c7d7f4db730c41e7a1c2be0a9", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23124"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd924a900cebf5994d7c2d84ea236f4aab4284a", "fields": {"nom_de_la_commune": "MASBARAUD MERIGNAT", "libell_d_acheminement": "MASBARAUD MERIGNAT", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23126"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a2326f72c13ad3110cd8c789424547bbecc5e9", "fields": {"nom_de_la_commune": "MONTAIGUT LE BLANC", "libell_d_acheminement": "MONTAIGUT LE BLANC", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23132"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531f3a3b20dd2b97e53d150219acd797845ef916", "fields": {"nom_de_la_commune": "MOUTIER MALCARD", "libell_d_acheminement": "MOUTIER MALCARD", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23139"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97fe539fecdd41ed77a0495295854c2cba26e35d", "fields": {"nom_de_la_commune": "PUY MALSIGNAT", "libell_d_acheminement": "PUY MALSIGNAT", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23159"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ddba4c2d99b050c9656be6de61bbb18ad80a9a", "fields": {"nom_de_la_commune": "ST AGNANT DE VERSILLAT", "libell_d_acheminement": "ST AGNANT DE VERSILLAT", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23177"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7e6962fbf488a3a2ecdc01893b7708a350b8eb", "fields": {"nom_de_la_commune": "ST ALPINIEN", "libell_d_acheminement": "ST ALPINIEN", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23179"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cddc43017f1cf1fc24c1de9f72e45686786ea6", "fields": {"nom_de_la_commune": "ST AMAND JARTOUDEIX", "libell_d_acheminement": "ST AMAND JARTOUDEIX", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23181"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4788abb34048c2450faa8b0ac58f5e7c76a9808", "fields": {"nom_de_la_commune": "ST AVIT LE PAUVRE", "libell_d_acheminement": "ST AVIT LE PAUVRE", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23183"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749769b03bcbac9a008f9ed665b32048a7762630", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23186"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9fe5e45d097a37418c5288a1c860105c101ddc3", "fields": {"nom_de_la_commune": "ST ELOI", "libell_d_acheminement": "ST ELOI", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23191"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631f268cdc94ca6addad97b9d7fbf35ceb9f49f9", "fields": {"nom_de_la_commune": "STE FEYRE LA MONTAGNE", "libell_d_acheminement": "STE FEYRE LA MONTAGNE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23194"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b252c5206689125a1b5e3a6593b1b5870b57df", "fields": {"nom_de_la_commune": "ST GEORGES NIGREMONT", "libell_d_acheminement": "ST GEORGES NIGREMONT", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23198"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3386ca0094cfe4bb36a954b0e69993f3c1be5ac", "fields": {"code_postal": "23160", "code_commune_insee": "23199", "libell_d_acheminement": "ST GERMAIN BEAUPRE", "ligne_5": "FORGEVIEILLE", "nom_de_la_commune": "ST GERMAIN BEAUPRE", "coordonnees_gps": [46.3627698496, 1.53929968478]}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81533cb689180d8a360d7b3b49eee66fed9efe8c", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23206"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9743366daa6d3a7cbd53af0a2c419b161e116bf2", "fields": {"nom_de_la_commune": "ST LEGER BRIDEREIX", "libell_d_acheminement": "ST LEGER BRIDEREIX", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23207"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b73d66de52fa8cb0b235dd1f6f0f2fe1ea809d", "fields": {"nom_de_la_commune": "ST MARTIN STE CATHERINE", "libell_d_acheminement": "ST MARTIN STE CATHERINE", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23217"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f15d3b39398dc72883b9f2fe45c19031a10180a", "fields": {"nom_de_la_commune": "ST MAURICE PRES CROCQ", "libell_d_acheminement": "ST MAURICE PRES CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23218"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d188722c026688afba740aea87e05fa7c6144846", "fields": {"code_postal": "23200", "code_commune_insee": "23220", "libell_d_acheminement": "ST MEDARD LA ROCHETTE", "ligne_5": "FOURNEAUX", "nom_de_la_commune": "ST MEDARD LA ROCHETTE", "coordonnees_gps": [45.9607828765, 2.18895520996]}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f406642578878ec676319bab8d2a69fc3dcbb32", "fields": {"code_postal": "23200", "code_commune_insee": "23220", "libell_d_acheminement": "ST MEDARD LA ROCHETTE", "ligne_5": "LA ROCHETTE", "nom_de_la_commune": "ST MEDARD LA ROCHETTE", "coordonnees_gps": [45.9607828765, 2.18895520996]}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4ae844ec350f7d654191535b63dfb92c31c91f", "fields": {"nom_de_la_commune": "ST ORADOUX DE CHIROUZE", "libell_d_acheminement": "ST ORADOUX DE CHIROUZE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23224"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42335d740c10e6c1411f3a31c4baf0d2469f96eb", "fields": {"nom_de_la_commune": "ST ORADOUX PRES CROCQ", "libell_d_acheminement": "ST ORADOUX PRES CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23225"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e41902403aa476f6b582577cc24cc5c483a152ac", "fields": {"nom_de_la_commune": "ST SULPICE LE GUERETOIS", "libell_d_acheminement": "ST SULPICE LE GUERETOIS", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23245"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfe8fa8c14e938aa652d0817256d69521091dc5", "fields": {"nom_de_la_commune": "TERCILLAT", "libell_d_acheminement": "TERCILLAT", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23252"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a280606a9095c6680d53c6b600b15dbc7dee0f", "fields": {"nom_de_la_commune": "TROIS FONDS", "libell_d_acheminement": "TROIS FONDS", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23255"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c90a6910506e1014127dc4bb84ea82fd461b1e5", "fields": {"nom_de_la_commune": "VAREILLES", "libell_d_acheminement": "VAREILLES", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23258"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a6100042cf84de6bf1999588b614114872a420", "fields": {"nom_de_la_commune": "AGONAC", "libell_d_acheminement": "AGONAC", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24002"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f280527843f61f22b14694ad92a1ee362108e604", "fields": {"nom_de_la_commune": "AJAT", "libell_d_acheminement": "AJAT", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24004"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926a9037cb27ef7348c95ee8611a80aeed3dffb8", "fields": {"nom_de_la_commune": "ANTONNE ET TRIGONANT", "libell_d_acheminement": "ANTONNE ET TRIGONANT", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24011"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d80ca0a975e3e81f886b96f3d762bc89936a7de0", "fields": {"nom_de_la_commune": "AZERAT", "libell_d_acheminement": "AZERAT", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24019"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5704ed6700afd6b4f99609f310739da4badc2a24", "fields": {"nom_de_la_commune": "BADEFOLS SUR DORDOGNE", "libell_d_acheminement": "BADEFOLS SUR DORDOGNE", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24022"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52724b95ad42839773c19bcd5877a67522748712", "fields": {"nom_de_la_commune": "BEAUPOUYET", "libell_d_acheminement": "BEAUPOUYET", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24029"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c4bf407253f99f1d9f59178fa414a013336dd0", "fields": {"nom_de_la_commune": "BEAUREGARD DE TERRASSON", "libell_d_acheminement": "BEAUREGARD DE TERRASSON", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24030"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e6846464606ab3d479a19adaae12efa88da15f6", "fields": {"nom_de_la_commune": "BELEYMAS", "libell_d_acheminement": "BELEYMAS", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24034"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44e45b57a95b7ae98987b93202fb18c288733ea", "fields": {"nom_de_la_commune": "BERBIGUIERES", "libell_d_acheminement": "BERBIGUIERES", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24036"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9974d18c2a9771c5bcbd8aab4f01bccea3c45c4", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24039"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc55617ca6278cf2a2fdcbbd550e2e07432cbe14", "fields": {"nom_de_la_commune": "BIRON", "libell_d_acheminement": "BIRON", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24043"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da5f505e901770e100a3bf95cd691b6b52c9001", "fields": {"nom_de_la_commune": "BLIS ET BORN", "libell_d_acheminement": "BLIS ET BORN", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24044"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78905ddd004b063468d84df30ec766e5e9dbb820", "fields": {"code_postal": "24330", "code_commune_insee": "24053", "libell_d_acheminement": "BOULAZAC ISLE MANOIRE", "ligne_5": "ST LAURENT SUR MANOIRE", "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", "coordonnees_gps": [45.1284574814, 0.869348647957]}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566786c1daf70c46265c0b8b5de0ea332ed66e8a", "fields": {"nom_de_la_commune": "BOULAZAC ISLE MANOIRE", "libell_d_acheminement": "BOULAZAC ISLE MANOIRE", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24053"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb078741aa9323fd605b249edccbe55d7824b3b2", "fields": {"nom_de_la_commune": "LE BOURDEIX", "libell_d_acheminement": "LE BOURDEIX", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24056"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b0dd4de48831391cc2dbe8cea00e358a482d65", "fields": {"nom_de_la_commune": "BROUCHAUD", "libell_d_acheminement": "BROUCHAUD", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24066"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258fbfd5979f719832edad034d33ae028ef8885b", "fields": {"nom_de_la_commune": "LE BUISSON DE CADOUIN", "libell_d_acheminement": "LE BUISSON DE CADOUIN", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24068"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00709c50ac4e8fd4fc9ee5e4637c220ec6c8dfc5", "fields": {"code_postal": "24480", "code_commune_insee": "24068", "libell_d_acheminement": "LE BUISSON DE CADOUIN", "ligne_5": "CADOUIN", "nom_de_la_commune": "LE BUISSON DE CADOUIN", "coordonnees_gps": [44.8133494955, 0.885908136539]}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a3211f8c14f232070787b1d58cd69926dc8a9a8", "fields": {"nom_de_la_commune": "BUSSAC", "libell_d_acheminement": "BUSSAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24069"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4209a84297e3f86e149a437f0528f5f69b6bfec0", "fields": {"nom_de_la_commune": "BUSSEROLLES", "libell_d_acheminement": "BUSSEROLLES", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24070"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d59c9ca6f9824fd764995d882a18ce4c58f1b4c", "fields": {"nom_de_la_commune": "CALVIAC EN PERIGORD", "libell_d_acheminement": "CALVIAC EN PERIGORD", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24074"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c44a9e33830fc882b5f7ddedf476ba99e4f0ea", "fields": {"nom_de_la_commune": "CAMPAGNAC LES QUERCY", "libell_d_acheminement": "CAMPAGNAC LES QUERCY", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24075"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0e2232b4f1883b52999e840811203d7e605a79", "fields": {"nom_de_la_commune": "CAMPSEGRET", "libell_d_acheminement": "CAMPSEGRET", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24077"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fd8485da0a2ca4d362eff646c164edf9b49369", "fields": {"nom_de_la_commune": "CANTILLAC", "libell_d_acheminement": "CANTILLAC", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24079"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b73450f82fe2e87c9e9d20cfd22c8db722456e", "fields": {"nom_de_la_commune": "CERCLES", "libell_d_acheminement": "CERCLES", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24093"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613834a89deee71bd71ed06541bf8b0d29a11e62", "fields": {"nom_de_la_commune": "CHAMPEAUX ET LA CHAPELLE POMMIER", "libell_d_acheminement": "CHAMPEAUX ET LA CHAPELLE POMMIER", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24099"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c84a35ef3661d9c494ccfc57a2611bdec2e0a3", "fields": {"nom_de_la_commune": "CHAMPS ROMAIN", "libell_d_acheminement": "CHAMPS ROMAIN", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24101"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96138c44db7cfb923abd302ae378bca7a65d6d6c", "fields": {"nom_de_la_commune": "CHANTERAC", "libell_d_acheminement": "CHANTERAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24104"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac6866759504e457b455f4b66d67bb6c9ea8a31", "fields": {"nom_de_la_commune": "CHAPDEUIL", "libell_d_acheminement": "CHAPDEUIL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24105"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1981c86cd60eb00f0922ef6cd2e03a20c5297508", "fields": {"nom_de_la_commune": "LA CHAPELLE FAUCHER", "libell_d_acheminement": "LA CHAPELLE FAUCHER", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24107"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c65703fcce5032f0e1c8622891e2fec3188d7b", "fields": {"nom_de_la_commune": "LA CHAPELLE GONAGUET", "libell_d_acheminement": "LA CHAPELLE GONAGUET", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24108"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82456985ad4c5d0dd1e156f0a5c7c517ef9e5c83", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTABOURLET", "libell_d_acheminement": "LA CHAPELLE MONTABOURLET", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24110"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780340647ccf4466d6d12d007a4291e3cde39764", "fields": {"nom_de_la_commune": "CHATRES", "libell_d_acheminement": "CHATRES", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24116"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04aa288b2bfe4a286e7a05ec811e2e7c84d2617a", "fields": {"nom_de_la_commune": "CLERMONT D EXCIDEUIL", "libell_d_acheminement": "CLERMONT D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24124"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "500d0a9a00e0e3b80b3ca99c6889af3c2f00351a", "fields": {"nom_de_la_commune": "COLY", "libell_d_acheminement": "COLY", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24127"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94fee0269c0847ce68b9162b71020e5c9f3f538d", "fields": {"nom_de_la_commune": "CONNEZAC", "libell_d_acheminement": "CONNEZAC", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24131"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f13c76404df443f29598dd2c7330ba97391d33c", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24141"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d3c2675090df7fc06c634d8a0be676918dbd03", "fields": {"nom_de_la_commune": "CREYSSE", "libell_d_acheminement": "CREYSSE", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24145"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896e83b8d641d3813853eba5cd79576b752272f2", "fields": {"nom_de_la_commune": "CUBJAC", "libell_d_acheminement": "CUBJAC", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24147"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a6121999175a1e67a6e9c4b26e9c651a3924d3", "fields": {"nom_de_la_commune": "DOMME", "libell_d_acheminement": "DOMME", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24152"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005467cbfd81222ca6cf3b408e2e176803fa7dc1", "fields": {"nom_de_la_commune": "DOUVILLE", "libell_d_acheminement": "DOUVILLE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24155"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7e38a6d3205aafe59eb308e66a9e9dadd5da0f", "fields": {"nom_de_la_commune": "LA DOUZE", "libell_d_acheminement": "LA DOUZE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24156"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa8b845ff900b2d61e71e3fbc687102b5bff6ba", "fields": {"nom_de_la_commune": "DOUZILLAC", "libell_d_acheminement": "DOUZILLAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24157"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b9e7144ad15886a89e8534a1534fae7c056dd1", "fields": {"nom_de_la_commune": "DUSSAC", "libell_d_acheminement": "DUSSAC", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24158"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2911685da0d2c5c85056f26cee643568ab6fcad", "fields": {"nom_de_la_commune": "EGLISE NEUVE DE VERGT", "libell_d_acheminement": "EGLISE NEUVE DE VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24160"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4655f3267b4d306ddf4ed53f7ba1327f949eda", "fields": {"nom_de_la_commune": "ESCOIRE", "libell_d_acheminement": "ESCOIRE", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24162"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ea43641188ec6f25ebebdf63b3b746a550927b", "fields": {"nom_de_la_commune": "EYGURANDE ET GARDEDEUIL", "libell_d_acheminement": "EYGURANDE ET GARDEDEUIL", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24165"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb49c189a4dda84651ff55595442e288cca0144", "fields": {"code_postal": "24560", "code_commune_insee": "24168", "libell_d_acheminement": "PLAISANCE", "ligne_5": "FALGUEYRAT", "nom_de_la_commune": "PLAISANCE", "coordonnees_gps": [44.7422356439, 0.603161629803]}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3275b3757a7bbf3094c31d52cb011bcca745373f", "fields": {"nom_de_la_commune": "EYZERAC", "libell_d_acheminement": "EYZERAC", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24171"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec374b160d1224f6db1e752c251664bae3dbfd90", "fields": {"nom_de_la_commune": "FAURILLES", "libell_d_acheminement": "FAURILLES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24176"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002448ea7085b7d635556243780c418fbc68dbcd", "fields": {"nom_de_la_commune": "FIRBEIX", "libell_d_acheminement": "FIRBEIX", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24180"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689a0a2e802297e16c4bdda8c608ff34110e3349", "fields": {"nom_de_la_commune": "FLORIMONT GAUMIER", "libell_d_acheminement": "FLORIMONT GAUMIER", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24184"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac09ba5f8b96578d8d0ee29ba3511d99e232f1d", "fields": {"nom_de_la_commune": "FRAISSE", "libell_d_acheminement": "FRAISSE", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24191"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7141c494f8c32443b63c3bcdd472e421b291a489", "fields": {"nom_de_la_commune": "GENIS", "libell_d_acheminement": "GENIS", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24196"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf575ffecc19718441a057b46e03a46ead30503f", "fields": {"nom_de_la_commune": "GRUN BORDAS", "libell_d_acheminement": "GRUN BORDAS", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24208"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "605c53687ef70d8629fd58bb247124accb6702c7", "fields": {"nom_de_la_commune": "HAUTEFORT", "libell_d_acheminement": "HAUTEFORT", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24210"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab570889d5c6636c386193ddcb4ccad4451418c7", "fields": {"nom_de_la_commune": "LAMONZIE ST MARTIN", "libell_d_acheminement": "LAMONZIE ST MARTIN", "code_postal": "24680", "coordonnees_gps": [44.8327905083, 0.37087813465], "code_commune_insee": "24225"}, "geometry": {"type": "Point", "coordinates": [0.37087813465, 44.8327905083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553ee5e55497c4d4f8ff661c0b386fe20bc14512", "fields": {"nom_de_la_commune": "LANOUAILLE", "libell_d_acheminement": "LANOUAILLE", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24227"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fc07d0643e104648871cc65c2118abcdfeb41d", "fields": {"nom_de_la_commune": "LEMBRAS", "libell_d_acheminement": "LEMBRAS", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24237"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcb5ad43794eeb152f831d55807805ed4c92aba", "fields": {"nom_de_la_commune": "LEMPZOURS", "libell_d_acheminement": "LEMPZOURS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24238"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1f7b06f6f5bedfbed91dab11f445e71bbf733e", "fields": {"nom_de_la_commune": "LIMEUIL", "libell_d_acheminement": "LIMEUIL", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24240"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76dc8f6ecfbed8179a8a84789931a941b7ab7638", "fields": {"nom_de_la_commune": "LOUBEJAC", "libell_d_acheminement": "LOUBEJAC", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24245"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4a57ea20abf1542df0446a18e5a5ec7cbc5c2b", "fields": {"nom_de_la_commune": "MANZAC SUR VERN", "libell_d_acheminement": "MANZAC SUR VERN", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24251"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec326c33dab1ba18c6648acd286302441fd360a", "fields": {"nom_de_la_commune": "MARSAC SUR L ISLE", "libell_d_acheminement": "MARSAC SUR L ISLE", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24256"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15693accd2755f30fd841661c1c1d9efefb9d73c", "fields": {"nom_de_la_commune": "MAURENS", "libell_d_acheminement": "MAURENS", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24259"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59bd55804f3bc4a409b18acf947de09a4b6cf4a2", "fields": {"nom_de_la_commune": "MENESPLET", "libell_d_acheminement": "MENESPLET", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24264"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c9e532e5bc815d923ea98e1b16794a7de5d226", "fields": {"nom_de_la_commune": "MILHAC DE NONTRON", "libell_d_acheminement": "MILHAC DE NONTRON", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24271"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10583d4c026c30af50e73943d128204187d8e62", "fields": {"nom_de_la_commune": "MINZAC", "libell_d_acheminement": "MINZAC", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24272"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9075383f54b82d2272e40d4290dcca6d0889ee8", "fields": {"nom_de_la_commune": "MONMARVES", "libell_d_acheminement": "MONMARVES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24279"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6010b5eb9e5b6b64d561c0beb2ec7cc8430a0e", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24287"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "856637241bb68c590779f68cd859b2b844018871", "fields": {"nom_de_la_commune": "MONTFERRAND DU PERIGORD", "libell_d_acheminement": "MONTFERRAND DU PERIGORD", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24290"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db698d216e46581fad8f387cc40662819e445df", "fields": {"nom_de_la_commune": "NADAILLAC", "libell_d_acheminement": "NADAILLAC", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24301"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b8e74833ef9f9be2ba7a9102ca2de29c85350c", "fields": {"nom_de_la_commune": "NAILHAC", "libell_d_acheminement": "NAILHAC", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24302"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838af22f85097f36fafc9fd64152012789546f59", "fields": {"nom_de_la_commune": "NANTEUIL AURIAC DE BOURZAC", "libell_d_acheminement": "NANTEUIL AURIAC DE BOURZAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24303"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25231b138781484effcad8fd753dece6c767b10b", "fields": {"nom_de_la_commune": "MAYSEL", "libell_d_acheminement": "MAYSEL", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60391"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a6b0f03d12369f352706e29971473db256c632", "fields": {"nom_de_la_commune": "LE MEUX", "libell_d_acheminement": "LE MEUX", "code_postal": "60880", "coordonnees_gps": [49.3809036755, 2.75739000766], "code_commune_insee": "60402"}, "geometry": {"type": "Point", "coordinates": [2.75739000766, 49.3809036755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c39ed8b7a3c588ccb31fd3302a55b3e346e7e6", "fields": {"nom_de_la_commune": "MONNEVILLE", "libell_d_acheminement": "MONNEVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60411"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "affe25a841ebffb81fb770a30379225d43ccdf3c", "fields": {"nom_de_la_commune": "MONTAGNY EN VEXIN", "libell_d_acheminement": "MONTAGNY EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60412"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1506b6c9f4d550ab2cd7a6d77be8a4c09830be", "fields": {"nom_de_la_commune": "MONTEPILLOY", "libell_d_acheminement": "MONTEPILLOY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60415"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70839afb3b3e194dfab6d823e458904c1489d1de", "fields": {"nom_de_la_commune": "MONTMACQ", "libell_d_acheminement": "MONTMACQ", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60423"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa5cd5abbc21d68078806720a1c236120e1efda", "fields": {"nom_de_la_commune": "MONTREUIL SUR THERAIN", "libell_d_acheminement": "MONTREUIL SUR THERAIN", "code_postal": "60134", "coordonnees_gps": [49.3709674035, 2.20669140352], "code_commune_insee": "60426"}, "geometry": {"type": "Point", "coordinates": [2.20669140352, 49.3709674035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e752ae48483c8792f24e1d988da224adac7aae9", "fields": {"nom_de_la_commune": "MORIENVAL", "libell_d_acheminement": "MORIENVAL", "code_postal": "60127", "coordonnees_gps": [49.3037551422, 2.92944456621], "code_commune_insee": "60430"}, "geometry": {"type": "Point", "coordinates": [2.92944456621, 49.3037551422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9821ad48788cb2f99b36b39893ca2c0e0106b5c8", "fields": {"nom_de_la_commune": "MOULIN SOUS TOUVENT", "libell_d_acheminement": "MOULIN SOUS TOUVENT", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60438"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7634c5704e2ad2ee655e51e9d135a7e390ab501a", "fields": {"nom_de_la_commune": "MOYVILLERS", "libell_d_acheminement": "MOYVILLERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60441"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a6749267af4fe78ea1a7d22303027095433625", "fields": {"nom_de_la_commune": "NEUFVY SUR ARONDE", "libell_d_acheminement": "NEUFVY SUR ARONDE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60449"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86f9f51b0bc1125c7fc3410b8ce219aad2144ae", "fields": {"nom_de_la_commune": "LA NEUVILLE SUR RESSONS", "libell_d_acheminement": "LA NEUVILLE SUR RESSONS", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60459"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5e968f1e414bd6fd6f37e0ad9fa9e17c8859b9", "fields": {"nom_de_la_commune": "NOINTEL", "libell_d_acheminement": "NOINTEL", "code_postal": "60840", "coordonnees_gps": [49.3800366036, 2.49101738028], "code_commune_insee": "60464"}, "geometry": {"type": "Point", "coordinates": [2.49101738028, 49.3800366036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9caea4fcde8d3c85b86c52d1fb84ff7e73ce1aeb", "fields": {"nom_de_la_commune": "NOIREMONT", "libell_d_acheminement": "NOIREMONT", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60465"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae45ae546052f3888af3bed2e4122789870e460c", "fields": {"nom_de_la_commune": "ORMOY VILLERS", "libell_d_acheminement": "ORMOY VILLERS", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60479"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aec957211b88698df1931c92c041dd596f648a2", "fields": {"nom_de_la_commune": "ORRY LA VILLE", "libell_d_acheminement": "ORRY LA VILLE", "code_postal": "60560", "coordonnees_gps": [49.1406725737, 2.50972357232], "code_commune_insee": "60482"}, "geometry": {"type": "Point", "coordinates": [2.50972357232, 49.1406725737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d8005407408bd077245d8431e951ba3b8ea96f", "fields": {"nom_de_la_commune": "PASSEL", "libell_d_acheminement": "PASSEL", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60488"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a617b4262b580431779283ba610f4515afb047d", "fields": {"nom_de_la_commune": "PLAILLY", "libell_d_acheminement": "PLAILLY", "code_postal": "60128", "coordonnees_gps": [49.1164844091, 2.59215767956], "code_commune_insee": "60494"}, "geometry": {"type": "Point", "coordinates": [2.59215767956, 49.1164844091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0da3fa4d6788cf11d1272117e37b09d67cf1b3", "fields": {"nom_de_la_commune": "LE PLESSIER SUR BULLES", "libell_d_acheminement": "LE PLESSIER SUR BULLES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60497"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35271375285f6371da9f76c1f4b3200d9e921274", "fields": {"nom_de_la_commune": "PLESSIS DE ROYE", "libell_d_acheminement": "PLESSIS DE ROYE", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60499"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c1470f5338d2acad03520513b717f57e6f8430", "fields": {"nom_de_la_commune": "PONTPOINT", "libell_d_acheminement": "PONTPOINT", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60508"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2893c46a03fe698386b6bac6373bcfd5841bf228", "fields": {"nom_de_la_commune": "PORQUERICOURT", "libell_d_acheminement": "PORQUERICOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60511"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded62b08f612caa40df450b1ee0d199e0d64c332", "fields": {"nom_de_la_commune": "PUISEUX EN BRAY", "libell_d_acheminement": "PUISEUX EN BRAY", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60516"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba03eef54e0ff2ca6606e8da1936ade58f0bf68", "fields": {"nom_de_la_commune": "PUITS LA VALLEE", "libell_d_acheminement": "PUITS LA VALLEE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60518"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736f146651cca3012b729125606395b83bb1e696", "fields": {"nom_de_la_commune": "RAINVILLERS", "libell_d_acheminement": "RAINVILLERS", "code_postal": "60155", "coordonnees_gps": [49.3994473154, 2.0089385619], "code_commune_insee": "60523"}, "geometry": {"type": "Point", "coordinates": [2.0089385619, 49.3994473154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b81d87b86325187921635ee267c6632e5c8e89", "fields": {"nom_de_la_commune": "RANTIGNY", "libell_d_acheminement": "RANTIGNY", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60524"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2457253cddca5d6bc218dd91539acfaf96ff15", "fields": {"nom_de_la_commune": "RARAY", "libell_d_acheminement": "RARAY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60525"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c012717f5f85716f20888195808107917852480", "fields": {"nom_de_la_commune": "REILLY", "libell_d_acheminement": "REILLY", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60528"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b2a310b9fd2c3e0efb59d8451f8a9363d0075c", "fields": {"nom_de_la_commune": "REUIL SUR BRECHE", "libell_d_acheminement": "REUIL SUR BRECHE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60535"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ff24a58f5209e104c41b08dea55ab908556d5f", "fields": {"nom_de_la_commune": "RICQUEBOURG", "libell_d_acheminement": "RICQUEBOURG", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60538"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e304b3634e2f2f913d98cc21c4b17f2cb2f10ca", "fields": {"nom_de_la_commune": "RIVECOURT", "libell_d_acheminement": "RIVECOURT", "code_postal": "60126", "coordonnees_gps": [49.3411887466, 2.71608141162], "code_commune_insee": "60540"}, "geometry": {"type": "Point", "coordinates": [2.71608141162, 49.3411887466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16175889e7d0507a1b157ce6265811d1296e1ef8", "fields": {"nom_de_la_commune": "ROCHY CONDE", "libell_d_acheminement": "ROCHY CONDE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60542"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bda5303256e6a63450524382bad8538d439b11", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60546"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04acf6a50a3876b84580e2c32d081c9540e5875", "fields": {"nom_de_la_commune": "ROY BOISSY", "libell_d_acheminement": "ROY BOISSY", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60557"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0129c41f305066ad0a6b1d68ac76c26ba322bdd", "fields": {"nom_de_la_commune": "ROYE SUR MATZ", "libell_d_acheminement": "ROYE SUR MATZ", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60558"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b1dbd799c0f7f6fe2c05189b9a0865ad7d1d91", "fields": {"nom_de_la_commune": "RULLY", "libell_d_acheminement": "RULLY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60560"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ce7c6c79c2a452c0888bbe603703e3afcfe011", "fields": {"nom_de_la_commune": "RUSSY BEMONT", "libell_d_acheminement": "RUSSY BEMONT", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60561"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a4a44ec3e1371adfe1688156b22e9295a729632", "fields": {"nom_de_la_commune": "ST AUBIN EN BRAY", "libell_d_acheminement": "ST AUBIN EN BRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60567"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347de175502eaf1680a12f704ada15d44d180407", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "LONGUEVAL BARBONVAL", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e762318157da4b27b9751a39fd3851cbc077d9", "fields": {"nom_de_la_commune": "LANDOUZY LA COUR", "libell_d_acheminement": "LANDOUZY LA COUR", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02404"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f9a4d3bca506fcbf1a66c368d17df598e0c3ef8", "fields": {"nom_de_la_commune": "LUCY LE BOCAGE", "libell_d_acheminement": "LUCY LE BOCAGE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02443"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e7a65a73b45c8950155d6512c3439656bd5755", "fields": {"nom_de_la_commune": "LESCHELLE", "libell_d_acheminement": "LESCHELLE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02419"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5270bcb72e2597628231d0f2aff88b1cc793317b", "fields": {"nom_de_la_commune": "LIERVAL", "libell_d_acheminement": "LIERVAL", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02429"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a8de7069863a5db370d57bfcf21410dab05f46", "fields": {"nom_de_la_commune": "LOUATRE", "libell_d_acheminement": "LOUATRE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02441"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8a45e3515bfb1c72ea9338ab80744e7f80f2a5c", "fields": {"nom_de_la_commune": "LEMPIRE", "libell_d_acheminement": "LEMPIRE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02417"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5adea78906da4eafa3551bd59bf87e1472204e", "fields": {"nom_de_la_commune": "LANCHY", "libell_d_acheminement": "LANCHY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02402"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549cdcb151a0c32c7ea30381423f07022aaa549f", "fields": {"nom_de_la_commune": "LAON", "libell_d_acheminement": "LAON", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02408"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3f0134d219e532fa59b5a745c0b5d41814c7cd", "fields": {"nom_de_la_commune": "LOR", "libell_d_acheminement": "LOR", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02440"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f24624410197a4ab3712b846f9970fda55b888", "fields": {"nom_de_la_commune": "MORGNY EN THIERACHE", "libell_d_acheminement": "MORGNY EN THIERACHE", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02526"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0504e59b512da75df071453b4d141b06073fc5eb", "fields": {"nom_de_la_commune": "MONTREUIL AUX LIONS", "libell_d_acheminement": "MONTREUIL AUX LIONS", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02521"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e101e23f796d5e37e2e49e014bac4c1de0d7d27", "fields": {"nom_de_la_commune": "MONTGRU ST HILAIRE", "libell_d_acheminement": "MONTGRU ST HILAIRE", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02507"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df8b9ebc51b12820c7cd728711b49fcde0e49e6", "fields": {"nom_de_la_commune": "MONT NOTRE DAME", "libell_d_acheminement": "MONT NOTRE DAME", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02520"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8780498374e2b84d43b97328447acc329daf0778", "fields": {"nom_de_la_commune": "MONT D ORIGNY", "libell_d_acheminement": "MONT D ORIGNY", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02503"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f435b83fe84e4bcadfa49f579932e0cb31e1da", "fields": {"nom_de_la_commune": "MONT ST PERE", "libell_d_acheminement": "MONT ST PERE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02524"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d17bd06f9ec840fef2d8d65d961a66c173b30e", "fields": {"nom_de_la_commune": "MONTHENAULT", "libell_d_acheminement": "MONTHENAULT", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02508"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7ce0a8084338280ae3659f076ac26956632209", "fields": {"nom_de_la_commune": "MONDREPUIS", "libell_d_acheminement": "MONDREPUIS", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02495"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408c500b926d212605ce5fd69b2d505514690f64", "fields": {"nom_de_la_commune": "MONTHUREL", "libell_d_acheminement": "MONTHUREL", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02510"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a10d6e0ef47d203ba7f5bf727a0643f29ce0556", "fields": {"nom_de_la_commune": "MORSAIN", "libell_d_acheminement": "MORSAIN", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02527"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc4a6c235fc4a104918712bb6d0af7853f39a8d", "fields": {"nom_de_la_commune": "LE HERIE LA VIEVILLE", "libell_d_acheminement": "LE HERIE LA VIEVILLE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02379"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a252f4ed4e57c08b1fd0378db24f9bd0978214ef", "fields": {"nom_de_la_commune": "JUVINCOURT ET DAMARY", "libell_d_acheminement": "JUVINCOURT ET DAMARY", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02399"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65c65cf1911d01c366ae7fd5b8292f46ecb6f7eb", "fields": {"nom_de_la_commune": "HARTENNES ET TAUX", "libell_d_acheminement": "HARTENNES ET TAUX", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02372"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488c99851f948020ea50fd7a790178c77e2e71fe", "fields": {"nom_de_la_commune": "LEHAUCOURT", "libell_d_acheminement": "LEHAUCOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02374"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c6aab3d1a760acd555a33eb385f9c74bc152dc5", "fields": {"nom_de_la_commune": "JEANCOURT", "libell_d_acheminement": "JEANCOURT", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02390"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab4cbadf5532b7dfffb0bd8e5291077a7780c5f", "fields": {"nom_de_la_commune": "GUIVRY", "libell_d_acheminement": "GUIVRY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02362"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c3ba6ff97d3def7d2431a361543aa52b8f2af7", "fields": {"nom_de_la_commune": "HIRSON", "libell_d_acheminement": "HIRSON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02381"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efda8ffa26437eefe9a1712493c685dbac610025", "fields": {"nom_de_la_commune": "JUSSY", "libell_d_acheminement": "JUSSY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02397"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3196c136240af76fadcba0f70e397bf7f4d76c13", "fields": {"nom_de_la_commune": "GUISE", "libell_d_acheminement": "GUISE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02361"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17742b74e952b8b585eee2f2883ba9dcdc1a8b9b", "fields": {"nom_de_la_commune": "GUNY", "libell_d_acheminement": "GUNY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02363"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada60fe21b951558ce6ee35a19c3b3bd849b4dad", "fields": {"nom_de_la_commune": "LA NEUVILLE BOSMONT", "libell_d_acheminement": "LA NEUVILLE BOSMONT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02545"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc20496a79ebd742166744cffbb86d6287d96b0", "fields": {"nom_de_la_commune": "LE PLESSIER HULEU", "libell_d_acheminement": "LE PLESSIER HULEU", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02606"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4a5a68c5f094da7970e3db040505cdd2b03f8e", "fields": {"nom_de_la_commune": "NOYANT ET ACONIN", "libell_d_acheminement": "NOYANT ET ACONIN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02564"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f20aee1b6ef7f757730b5e50e6380f3fcaf0575", "fields": {"nom_de_la_commune": "OIGNY EN VALOIS", "libell_d_acheminement": "OIGNY EN VALOIS", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02568"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33515729e2036166eee169757a80be0fedd973b", "fields": {"nom_de_la_commune": "OLLEZY", "libell_d_acheminement": "OLLEZY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02570"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea49edd1b07c91408470326cbc6a87e383a59e2", "fields": {"nom_de_la_commune": "PAISSY", "libell_d_acheminement": "PAISSY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02582"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271e472bbd3feecbc22db635426f8d30cfd80bcc", "fields": {"nom_de_la_commune": "PASLY", "libell_d_acheminement": "PASLY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02593"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f51311c0358fbabaf19bac8ecff7eabd41be99a", "fields": {"nom_de_la_commune": "MARIZY STE GENEVIEVE", "libell_d_acheminement": "MARIZY STE GENEVIEVE", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02466"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7756e7925a2eeedae32325a2539adc06ba0b54d", "fields": {"nom_de_la_commune": "MAAST ET VIOLAINE", "libell_d_acheminement": "MAAST ET VIOLAINE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02447"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55aff8a72625f4640976e364f2116c74c408401b", "fields": {"nom_de_la_commune": "MARIGNY EN ORXOIS", "libell_d_acheminement": "MARIGNY EN ORXOIS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02465"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d7242bde49f6c0aa369137a291000bf146ed13", "fields": {"nom_de_la_commune": "MISSY AUX BOIS", "libell_d_acheminement": "MISSY AUX BOIS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02485"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a7a73ab07207e486a1e963c5ccc3bc4ceaf18d", "fields": {"nom_de_la_commune": "LA MALMAISON", "libell_d_acheminement": "LA MALMAISON", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02454"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e7779dd0d007fbc74641cfb26d034c62b431e9", "fields": {"nom_de_la_commune": "MACQUIGNY", "libell_d_acheminement": "MACQUIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02450"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8b9a305c40b94116db6cb92ec2b47ff39c6e33", "fields": {"nom_de_la_commune": "MAISSEMY", "libell_d_acheminement": "MAISSEMY", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02452"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ed867c32f160dc5c0bc9768545e8eeb79ff81d", "fields": {"nom_de_la_commune": "MARGIVAL", "libell_d_acheminement": "MARGIVAL", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02464"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869edb50d18e2d9e1dc8442d2593d282bb644e11", "fields": {"nom_de_la_commune": "MANICAMP", "libell_d_acheminement": "MANICAMP", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02456"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d35812223b4254b0177a50cb5f0ccfc3feec0b5", "fields": {"nom_de_la_commune": "MALZY", "libell_d_acheminement": "MALZY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02455"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c20cf34e0ab8813fbfc0e772d64da4e346336c", "fields": {"nom_de_la_commune": "PRESLES ET BOVES", "libell_d_acheminement": "PRESLES ET BOVES", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02620"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5697bc40f502a7c7de94e1858b09876f298b5142", "fields": {"nom_de_la_commune": "PUISEUX EN RETZ", "libell_d_acheminement": "PUISEUX EN RETZ", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02628"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f411d46bb1aefd8947ed8155ed0b4c457303aaab", "fields": {"nom_de_la_commune": "PREMONTRE", "libell_d_acheminement": "PREMONTRE", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02619"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67f6bbf5dc964d611f39bcaa1d1667ad6b4f31f", "fields": {"nom_de_la_commune": "ROGECOURT", "libell_d_acheminement": "ROGECOURT", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02651"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cdbbdeb3d9ae4b7efaedbe07c83355560562c7", "fields": {"nom_de_la_commune": "PONT ARCY", "libell_d_acheminement": "PONT ARCY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02612"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7baa6d2dc0020e52ab588a1d9825ee24028bd269", "fields": {"nom_de_la_commune": "ROCQUIGNY", "libell_d_acheminement": "ROCQUIGNY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02650"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c63c8f634a04dba776c45ea8da0dfe6364ca3d", "fields": {"nom_de_la_commune": "PONTRUET", "libell_d_acheminement": "PONTRUET", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02615"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb9a1a60a5613205c77ac945009ac1e0870bde0", "fields": {"nom_de_la_commune": "PRIEZ", "libell_d_acheminement": "PRIEZ", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02622"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4749174c209231f5b0a33785f8ff0925f74244", "fields": {"nom_de_la_commune": "ST PIERRE LES FRANQUEVILLE", "libell_d_acheminement": "ST PIERRE LES FRANQUEVILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02688"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aef8a8d7b3fdf288be7ee62bca21b9826bd12cb", "fields": {"nom_de_la_commune": "ST ERME OUTRE ET RAMECOURT", "libell_d_acheminement": "ST ERME OUTRE ET RAMECOURT", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02676"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df595b31af1c566bcc0fafa45b26e8ff3e523bf5", "fields": {"nom_de_la_commune": "ST NICOLAS AUX BOIS", "libell_d_acheminement": "ST NICOLAS AUX BOIS", "code_postal": "02410", "coordonnees_gps": [49.5909068066, 3.39907207955], "code_commune_insee": "02685"}, "geometry": {"type": "Point", "coordinates": [3.39907207955, 49.5909068066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26b820304aff83e39e2fad1223b66568eccfc89", "fields": {"nom_de_la_commune": "ROZIERES SUR CRISE", "libell_d_acheminement": "ROZIERES SUR CRISE", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02663"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e85164e769ae00a88f6f362b7c2d99d0d9a7750", "fields": {"nom_de_la_commune": "ROUVROY SUR SERRE", "libell_d_acheminement": "ROUVROY SUR SERRE", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02660"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5224eef819a0e7c8e5c81cd074cc0d07b49e730b", "fields": {"nom_de_la_commune": "ST MARTIN RIVIERE", "libell_d_acheminement": "ST MARTIN RIVIERE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02683"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5c0d34e8de251d94ecf46b7576e38081ebbdf1", "fields": {"nom_de_la_commune": "ST PIERRE AIGLE", "libell_d_acheminement": "ST PIERRE AIGLE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02687"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0746690344ec74aa7e034219034f0da32c8efee5", "fields": {"nom_de_la_commune": "VERNE", "libell_d_acheminement": "VERNE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25604"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a201bdfe3f7f8b989b331a7b21e86ada9a95e5", "fields": {"nom_de_la_commune": "CRESSAC ST GENIS", "libell_d_acheminement": "CRESSAC ST GENIS", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16115"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43439cb4566200b4cf41e6d395600909b1d0af5", "fields": {"nom_de_la_commune": "DIRAC", "libell_d_acheminement": "DIRAC", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16120"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f95107e2939a3217b7c7b428bfaee7cc134febe", "fields": {"nom_de_la_commune": "ECHALLAT", "libell_d_acheminement": "ECHALLAT", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16123"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f76da1fbb657d73a0f0848ac70a994316ebafa6", "fields": {"nom_de_la_commune": "FEUILLADE", "libell_d_acheminement": "FEUILLADE", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16137"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ef296f6ae06699f2f3f8ce053d81eb9271789d", "fields": {"nom_de_la_commune": "FONTENILLE", "libell_d_acheminement": "FONTENILLE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16141"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b33e44adc6336106cd6cfa5f9404ce0af3838172", "fields": {"nom_de_la_commune": "FOUSSIGNAC", "libell_d_acheminement": "FOUSSIGNAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16145"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b34c2a8c813232370d56e751c24d0188f7363aa", "fields": {"nom_de_la_commune": "GONDEVILLE", "libell_d_acheminement": "GONDEVILLE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16153"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a94b33cab6e4b2b4b183770fd0f6170c7adf6b", "fields": {"nom_de_la_commune": "GOND PONTOUVRE", "libell_d_acheminement": "GOND PONTOUVRE", "code_postal": "16160", "coordonnees_gps": [45.6793140943, 0.165488990587], "code_commune_insee": "16154"}, "geometry": {"type": "Point", "coordinates": [0.165488990587, 45.6793140943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0823067c75c8d3f5307c703ed3aa2f4622422a72", "fields": {"nom_de_la_commune": "LE GRAND MADIEU", "libell_d_acheminement": "LE GRAND MADIEU", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16157"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afc1d02ce274827e67890418db4fea05960a224", "fields": {"nom_de_la_commune": "HIESSE", "libell_d_acheminement": "HIESSE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16164"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5190da281e84a25e57f1fb82b74d27a880f09a7f", "fields": {"nom_de_la_commune": "HOULETTE", "libell_d_acheminement": "HOULETTE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16165"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a291c897762a324b91fa116c4801610fb341dcc6", "fields": {"nom_de_la_commune": "L ISLE D ESPAGNAC", "libell_d_acheminement": "L ISLE D ESPAGNAC", "code_postal": "16340", "coordonnees_gps": [45.6638639482, 0.199285365252], "code_commune_insee": "16166"}, "geometry": {"type": "Point", "coordinates": [0.199285365252, 45.6638639482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddd3d90402032cb14746809d4e2afca3428e28d", "fields": {"nom_de_la_commune": "JAVREZAC", "libell_d_acheminement": "JAVREZAC", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16169"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84870c1bb9e62d135cc5189c7cc5fc836eb0d8c5", "fields": {"nom_de_la_commune": "JUILLAC LE COQ", "libell_d_acheminement": "JUILLAC LE COQ", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16171"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3dded816bddbc6ed094d7fe08b8481bf8dbeff", "fields": {"nom_de_la_commune": "LACHAISE", "libell_d_acheminement": "LACHAISE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16176"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eef0c8fb1a8d20a6cfcc684ae278efd725e0917", "fields": {"nom_de_la_commune": "LAGARDE SUR LE NE", "libell_d_acheminement": "LAGARDE SUR LE NE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16178"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f69a93a6887239da4fd9f2d68baabe583de5f9", "fields": {"nom_de_la_commune": "LESIGNAC DURAND", "libell_d_acheminement": "LESIGNAC DURAND", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16183"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3e2a07b0a101f7bf777e1bfa8123cc464c7516", "fields": {"nom_de_la_commune": "LIGNE", "libell_d_acheminement": "LIGNE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16185"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17566a661ebef33fcfc6667d02a66c29cea4f8e9", "fields": {"nom_de_la_commune": "LIGNIERES SONNEVILLE", "libell_d_acheminement": "LIGNIERES SONNEVILLE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16186"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe05c88f237350af7df08726aeb7e76c8cdf822", "fields": {"nom_de_la_commune": "LUPSAULT", "libell_d_acheminement": "LUPSAULT", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16194"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6fef65831ae5a2458bc08e993346a5018db591", "fields": {"nom_de_la_commune": "LUXE", "libell_d_acheminement": "LUXE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16196"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4d4fbd3d497bd04c2f13ff6deb65f2abb3953e", "fields": {"nom_de_la_commune": "MAINE DE BOIXE", "libell_d_acheminement": "MAINE DE BOIXE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16200"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afab9e93491a8bd11c1cdc866418366bb0c8b709", "fields": {"nom_de_la_commune": "MALAVILLE", "libell_d_acheminement": "MALAVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16204"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffc5875ccfd3eaeb8200a6c273f50b2c94c60d8", "fields": {"nom_de_la_commune": "MARCILLAC LANVILLE", "libell_d_acheminement": "MARCILLAC LANVILLE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16207"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bb06e50e4a6307dfa839d3393b4f09229b9668", "fields": {"nom_de_la_commune": "MARILLAC LE FRANC", "libell_d_acheminement": "MARILLAC LE FRANC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16209"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a134e08f2d4ff4f286b2b989c0204ab44cd193", "fields": {"nom_de_la_commune": "MASSIGNAC", "libell_d_acheminement": "MASSIGNAC", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16212"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e542b3e4eec6ba0b07b702cedcb3c510c17e18", "fields": {"nom_de_la_commune": "MONTIGNE", "libell_d_acheminement": "MONTIGNE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16228"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862c2928921f7f97aa2286c5c9d7480ac22707b5", "fields": {"nom_de_la_commune": "MONTMOREAU ST CYBARD", "libell_d_acheminement": "MONTMOREAU ST CYBARD", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16230"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eae106e3cc31b496dbd2f6266a43ea05ce97577", "fields": {"nom_de_la_commune": "MOUTHIERS SUR BOEME", "libell_d_acheminement": "MOUTHIERS SUR BOEME", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16236"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95899c22daf8318adc9a96f6571ecc6ee595e0d3", "fields": {"code_postal": "16240", "code_commune_insee": "16253", "libell_d_acheminement": "PAIZAY NAUDOUIN EMBOURIE", "ligne_5": "EMBOURIE", "nom_de_la_commune": "PAIZAY NAUDOUIN EMBOURIE", "coordonnees_gps": [46.0204608634, 0.0623105228243]}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc532ac91586ca773069772b1f008b061e151ef7", "fields": {"nom_de_la_commune": "PARZAC", "libell_d_acheminement": "PARZAC", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16255"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f33d8782b1e3f77fc6f8d8129a89d07338b8097", "fields": {"nom_de_la_commune": "PERIGNAC", "libell_d_acheminement": "PERIGNAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16258"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7030ec60bcb51c242533d4926422e3ca6e123e", "fields": {"nom_de_la_commune": "PILLAC", "libell_d_acheminement": "PILLAC", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16260"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29ed5590576684bc3c41c9806f8efe1a3bf6ac4", "fields": {"nom_de_la_commune": "PLASSAC ROUFFIAC", "libell_d_acheminement": "PLASSAC ROUFFIAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16263"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb851ff2cd6fb2d22b5999d655165b7f76a79a63", "fields": {"nom_de_la_commune": "PLEUVILLE", "libell_d_acheminement": "PLEUVILLE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16264"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ca3a8b49f9a2ba2eb0a600feb0a6d6c0268bac", "fields": {"nom_de_la_commune": "RANCOGNE", "libell_d_acheminement": "RANCOGNE", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16274"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06702dc57a0dec96a49c7ee058b6b0b16830c357", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16284"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f264ac339a2ba85e56ea2ea329d305683b2202", "fields": {"nom_de_la_commune": "RUELLE SUR TOUVRE", "libell_d_acheminement": "RUELLE SUR TOUVRE", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16291"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0bb6978af5d5dd91a65c2e083244dc4354867b", "fields": {"nom_de_la_commune": "ST ANGEAU", "libell_d_acheminement": "ST ANGEAU", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16300"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ec52115d326eb1ccffb8d0e9e628ef7ce4c427", "fields": {"nom_de_la_commune": "ST AULAIS LA CHAPELLE", "libell_d_acheminement": "ST AULAIS LA CHAPELLE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16301"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71eb8b2b9a016be9c30fccc751fb1ecb89568994", "fields": {"nom_de_la_commune": "ST CLAUD", "libell_d_acheminement": "ST CLAUD", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16308"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4648f42371e8d39713fd32b6bc592f3f989ee2", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16321"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55029c3288c288410b9d474d994445d7cb1ee88c", "fields": {"nom_de_la_commune": "ST LAURENT DE BELZAGOT", "libell_d_acheminement": "ST LAURENT DE BELZAGOT", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16328"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ca681a181478052a738c444191139669de1394", "fields": {"nom_de_la_commune": "ST PREUIL", "libell_d_acheminement": "ST PREUIL", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16343"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf25c0b0d7edc434976e96418f9c91274a798921", "fields": {"nom_de_la_commune": "ST QUENTIN SUR CHARENTE", "libell_d_acheminement": "ST QUENTIN SUR CHARENTE", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16345"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b77a0a8e9f96b59c765fe5a249c677678baa830", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16347"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a06cfbdd390cdda7eb76680ea4ac70d11bcfd4a", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16348"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9592fe9b6a2d85301626aadef712fe98e86da913", "fields": {"nom_de_la_commune": "SALLES D ANGLES", "libell_d_acheminement": "SALLES D ANGLES", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16359"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3070a69089d9f76be66e68ca9d3d7b6931bcbfeb", "fields": {"nom_de_la_commune": "SALLES DE BARBEZIEUX", "libell_d_acheminement": "SALLES DE BARBEZIEUX", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16360"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f836979e8de1c98ac65319e1ed737875836be82f", "fields": {"nom_de_la_commune": "SUAUX", "libell_d_acheminement": "SUAUX", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16375"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7075265b4e6d26f9758593f5ae75872fd32e3798", "fields": {"nom_de_la_commune": "LA TACHE", "libell_d_acheminement": "LA TACHE", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16377"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454f4b922b774a7fa421767cab1ddbe483e56a55", "fields": {"nom_de_la_commune": "LE TATRE", "libell_d_acheminement": "LE TATRE", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16380"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f5c1af0598c555df11590eca3255ba7c2a35ceb", "fields": {"nom_de_la_commune": "TORSAC", "libell_d_acheminement": "TORSAC", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16382"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79df5c3f22cbb3067f64c88eb4d577effd10afda", "fields": {"nom_de_la_commune": "TOUZAC", "libell_d_acheminement": "TOUZAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16386"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c465a0ad1ad4ad52516303e8f4377975b0e4adb7", "fields": {"nom_de_la_commune": "TUZIE", "libell_d_acheminement": "TUZIE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16391"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8641d2e11566775dcb668e7bdbeba649647ef639", "fields": {"nom_de_la_commune": "VAUX ROUILLAC", "libell_d_acheminement": "VAUX ROUILLAC", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16395"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5503c75501b80087de04a6d84f49c57b9b1b3a78", "fields": {"nom_de_la_commune": "VENTOUSE", "libell_d_acheminement": "VENTOUSE", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16396"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5027843418e6ba553644be0a3e74195eb67858c", "fields": {"nom_de_la_commune": "VERDILLE", "libell_d_acheminement": "VERDILLE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16397"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5203bf7905da5948a99da5238dfcf209ae8eff1a", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16398"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601479d9c30241b05c73ae5f636a28fe89661e46", "fields": {"nom_de_la_commune": "VERTEUIL SUR CHARENTE", "libell_d_acheminement": "VERTEUIL SUR CHARENTE", "code_postal": "16510", "coordonnees_gps": [45.9782104986, 0.226047066423], "code_commune_insee": "16400"}, "geometry": {"type": "Point", "coordinates": [0.226047066423, 45.9782104986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efea0bb410b0b19adf21ca5f39bdd7953aadb18d", "fields": {"nom_de_la_commune": "VIBRAC", "libell_d_acheminement": "VIBRAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16402"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7acb10f13cce03fd5c9ff9ae02e57473940270e2", "fields": {"nom_de_la_commune": "LE VIEUX CERIER", "libell_d_acheminement": "LE VIEUX CERIER", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16403"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e93b4ab4a9909fcd8ca9c26aa2bb9d04bcff05", "fields": {"nom_de_la_commune": "VIEUX RUFFEC", "libell_d_acheminement": "VIEUX RUFFEC", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16404"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8236c90fc548ac2bb908d7225201673a714d53", "fields": {"nom_de_la_commune": "VILLEJESUS", "libell_d_acheminement": "VILLEJESUS", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16411"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3042106600c424414befbc85a8f92bd8ee93fbf", "fields": {"nom_de_la_commune": "VILLEJOUBERT", "libell_d_acheminement": "VILLEJOUBERT", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16412"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c9b5480ddbbe28396f7d160900b22ca3406a7c", "fields": {"nom_de_la_commune": "ALLAS CHAMPAGNE", "libell_d_acheminement": "ALLAS CHAMPAGNE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17006"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e55a24e30d0f3ec8167af3ff66a1f686158601", "fields": {"code_postal": "17230", "code_commune_insee": "17008", "libell_d_acheminement": "ANDILLY", "ligne_5": "SERIGNY", "nom_de_la_commune": "ANDILLY", "coordonnees_gps": [46.286014889, -1.01509211949]}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ef3dc924fa90349b1046ecc2ecd78545d4cf9f", "fields": {"nom_de_la_commune": "ANNEPONT", "libell_d_acheminement": "ANNEPONT", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17011"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9221e318cfbcebb54d412aa8f67d2ea6dbd1e03b", "fields": {"nom_de_la_commune": "ARCHIAC", "libell_d_acheminement": "ARCHIAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17016"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5084b3867549baae1803966733ca89737076015c", "fields": {"nom_de_la_commune": "AULNAY", "libell_d_acheminement": "AULNAY", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17024"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4035c160d0893e6b2c469be999ef7667f28fd46e", "fields": {"code_postal": "17470", "code_commune_insee": "17024", "libell_d_acheminement": "AULNAY", "ligne_5": "SALLES LES AULNAY", "nom_de_la_commune": "AULNAY", "coordonnees_gps": [46.0200499858, -0.337018455128]}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27cf36c4cac10b42dcc267341549b5643556fa6", "fields": {"nom_de_la_commune": "BALANZAC", "libell_d_acheminement": "BALANZAC", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17030"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4334bf5e4ef8d80e0db23558f28245b57bb01781", "fields": {"nom_de_la_commune": "BEURLAY", "libell_d_acheminement": "BEURLAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17045"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b2418b7bbd3baa65ae0266f4b88e9d71ffe3b0", "fields": {"nom_de_la_commune": "BOIS", "libell_d_acheminement": "BOIS", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17050"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0da977cff4cc9454cb93e4872e619f032d06c06", "fields": {"nom_de_la_commune": "LE BOIS PLAGE EN RE", "libell_d_acheminement": "LE BOIS PLAGE EN RE", "code_postal": "17580", "coordonnees_gps": [46.1829462788, -1.37733812185], "code_commune_insee": "17051"}, "geometry": {"type": "Point", "coordinates": [-1.37733812185, 46.1829462788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47f3f34df491d513ce4e6f3b03da5e94478f4a00", "fields": {"nom_de_la_commune": "BOISREDON", "libell_d_acheminement": "BOISREDON", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17052"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e14cb7e021e0314e3c7d2a912a5b1125353eba", "fields": {"nom_de_la_commune": "BOSCAMNANT", "libell_d_acheminement": "BOSCAMNANT", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17055"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ea278b208f7645af1825206d7641719afd4b07", "fields": {"nom_de_la_commune": "BREUILLET", "libell_d_acheminement": "BREUILLET", "code_postal": "17920", "coordonnees_gps": [45.6938468387, -1.05527970385], "code_commune_insee": "17064"}, "geometry": {"type": "Point", "coordinates": [-1.05527970385, 45.6938468387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d36fe1b079acc11892ab2ced697eecba60b2650", "fields": {"nom_de_la_commune": "CHAILLEVETTE", "libell_d_acheminement": "CHAILLEVETTE", "code_postal": "17890", "coordonnees_gps": [45.7304903713, -1.06851724099], "code_commune_insee": "17079"}, "geometry": {"type": "Point", "coordinates": [-1.06851724099, 45.7304903713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d363fa8dd9f8c39523a54f8137fa8285b2663777", "fields": {"code_postal": "17480", "code_commune_insee": "17093", "libell_d_acheminement": "LE CHATEAU D OLERON", "ligne_5": "LA CHEVALERIE", "nom_de_la_commune": "LE CHATEAU D OLERON", "coordonnees_gps": [45.8814200371, -1.21657707924]}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7c72b54895624ec769738e694b12ecb42d41b2", "fields": {"nom_de_la_commune": "LE CHAY", "libell_d_acheminement": "LE CHAY", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17097"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18105c14d8c52392ae8af07e36f08496c9c81f54", "fields": {"nom_de_la_commune": "CHENAC ST SEURIN D UZET", "libell_d_acheminement": "CHENAC ST SEURIN D UZET", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17098"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aebee3e95ea67d6ce7378f08863773586aac447", "fields": {"nom_de_la_commune": "CHEPNIERS", "libell_d_acheminement": "CHEPNIERS", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17099"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f309c9eb64e2e6b0be601ab5bf5e4da4c9612de3", "fields": {"nom_de_la_commune": "CHERMIGNAC", "libell_d_acheminement": "CHERMIGNAC", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17102"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feba723938892e73110ca5a05e5e6ad41db6e549", "fields": {"nom_de_la_commune": "CHEVANCEAUX", "libell_d_acheminement": "CHEVANCEAUX", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17104"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7211ff92de9cd930958562a2b57b077c5f4c350", "fields": {"nom_de_la_commune": "CLERAC", "libell_d_acheminement": "CLERAC", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17110"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459e144838e776681936a8fb0d45e28efff1466e", "fields": {"nom_de_la_commune": "CONSAC", "libell_d_acheminement": "CONSAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17116"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8abca01ee192b745fe7002c5465b2798e9223e8", "fields": {"nom_de_la_commune": "CORME ECLUSE", "libell_d_acheminement": "CORME ECLUSE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17119"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934f9a952c19e65fc6b7531f10a03739855a98a0", "fields": {"nom_de_la_commune": "COULONGES", "libell_d_acheminement": "COULONGES", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17122"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942e32b9f676b922263f3f66ac7048860fe98b0", "fields": {"nom_de_la_commune": "COUX", "libell_d_acheminement": "COUX", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17130"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6553cd173178442f31201d21431d7e493e6066", "fields": {"nom_de_la_commune": "CRAZANNES", "libell_d_acheminement": "CRAZANNES", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17134"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21458f120ded67ed240b28e9322dd925db445049", "fields": {"nom_de_la_commune": "CROIX CHAPEAU", "libell_d_acheminement": "CROIX CHAPEAU", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17136"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fec6d577ed2d24e3cc47e573c98519bb866bbc", "fields": {"code_postal": "17139", "code_commune_insee": "17142", "libell_d_acheminement": "DOMPIERRE SUR MER", "ligne_5": "CHAGNOLET", "nom_de_la_commune": "DOMPIERRE SUR MER", "coordonnees_gps": [46.1839503995, -1.06844117713]}, "geometry": {"type": "Point", "coordinates": [-1.06844117713, 46.1839503995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4157e667047f7a846d4e0206e871b000686c81d", "fields": {"code_postal": "17620", "code_commune_insee": "17146", "libell_d_acheminement": "ECHILLAIS", "ligne_5": "LA RENAISSANCE", "nom_de_la_commune": "ECHILLAIS", "coordonnees_gps": [45.8464645946, -0.95771650444]}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049ca7a0b44916cb3e803b423e655c4f6dde8ae1", "fields": {"nom_de_la_commune": "L EGUILLE", "libell_d_acheminement": "L EGUILLE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17151"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447661f370640c57d9173d0f3e53a34c81cf07d8", "fields": {"nom_de_la_commune": "LES ESSARDS", "libell_d_acheminement": "LES ESSARDS", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17154"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e24823b107c87920c48c63c6a0acdad92fc5abf", "fields": {"nom_de_la_commune": "ETAULES", "libell_d_acheminement": "ETAULES", "code_postal": "17750", "coordonnees_gps": [45.7233727549, -1.09909741065], "code_commune_insee": "17155"}, "geometry": {"type": "Point", "coordinates": [-1.09909741065, 45.7233727549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7447554c9ecb5ce84ca162a411b75de4df695ee", "fields": {"nom_de_la_commune": "FENIOUX", "libell_d_acheminement": "FENIOUX", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17157"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c0a3e8f055e1b5f96d171b4eb72f2645b1d52a8", "fields": {"nom_de_la_commune": "FLEAC SUR SEUGNE", "libell_d_acheminement": "FLEAC SUR SEUGNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17159"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa07518c7e6d362e5720bca146b8f50d155c449", "fields": {"code_postal": "43360", "code_commune_insee": "43038", "libell_d_acheminement": "BOURNONCLE ST PIERRE", "ligne_5": "ARVANT", "nom_de_la_commune": "BOURNONCLE ST PIERRE", "coordonnees_gps": [45.3429722324, 3.30288813488]}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d4da76925d16f0f08885fc2354d64c95523890", "fields": {"nom_de_la_commune": "CAYRES", "libell_d_acheminement": "CAYRES", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43042"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899b8c51bf748f69f2a42eee4b4a61e8de26cd86", "fields": {"nom_de_la_commune": "CHAMALIERES SUR LOIRE", "libell_d_acheminement": "CHAMALIERES SUR LOIRE", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43049"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548f6089e56a79c12509ced8f59101dcb53b7e05", "fields": {"nom_de_la_commune": "CHARRAIX", "libell_d_acheminement": "CHARRAIX", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43060"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994ab40e47e7819cf0e6489a9105bddb595928ba", "fields": {"nom_de_la_commune": "CHASSIGNOLLES", "libell_d_acheminement": "CHASSIGNOLLES", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43064"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940004ad9ebff3b97f8f7e04f5221b9021dc156d", "fields": {"nom_de_la_commune": "CHAUDEYROLLES", "libell_d_acheminement": "CHAUDEYROLLES", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43066"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e41e3baed2092e40dd79f822594e1f423eb7eb56", "fields": {"nom_de_la_commune": "CONNANGLES", "libell_d_acheminement": "CONNANGLES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43076"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e1deedf2b8bee21ab1ed4768c771050e41add4", "fields": {"nom_de_la_commune": "DUNIERES", "libell_d_acheminement": "DUNIERES", "code_postal": "43220", "coordonnees_gps": [45.218017746, 4.40270777123], "code_commune_insee": "43087"}, "geometry": {"type": "Point", "coordinates": [4.40270777123, 45.218017746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f849afd4f07c1b429d76df3b7742c7b90d5a934", "fields": {"nom_de_la_commune": "ESPALY ST MARCEL", "libell_d_acheminement": "ESPALY ST MARCEL", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43089"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110067e9d235822b2fc6b9b5d08143f079f7c3b5", "fields": {"nom_de_la_commune": "ESPLANTAS VAZEILLES", "libell_d_acheminement": "ESPLANTAS VAZEILLES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43090"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46c1d8a90570861d8c0addb3b84049b873ef858", "fields": {"nom_de_la_commune": "FIX ST GENEYS", "libell_d_acheminement": "FIX ST GENEYS", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43095"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a3ff7d6d89c3753eba90553ebb8d7775e6a363", "fields": {"nom_de_la_commune": "GRENIER MONTGON", "libell_d_acheminement": "GRENIER MONTGON", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43103"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02408476df5b0ed905e9aa8e4d4a5325a59b3cf", "fields": {"nom_de_la_commune": "JAX", "libell_d_acheminement": "JAX", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43106"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1397dc609e05c67682ef41eb80765e18be8c1bdf", "fields": {"nom_de_la_commune": "JULLIANGES", "libell_d_acheminement": "JULLIANGES", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43108"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7029e3d57d62058461495b5f6872e9e95bd07e1c", "fields": {"code_postal": "43340", "code_commune_insee": "43111", "libell_d_acheminement": "LANDOS", "ligne_5": "LA SAUVETAT", "nom_de_la_commune": "LANDOS", "coordonnees_gps": [44.842698307, 3.79076623546]}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec883bd2b2e2a793c9c52ac0f7ccce2af54cd8d7", "fields": {"nom_de_la_commune": "LANTRIAC", "libell_d_acheminement": "LANTRIAC", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43113"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2666ef05009dfc9c4a9853c11ae8e563b656ffa0", "fields": {"nom_de_la_commune": "LAUSSONNE", "libell_d_acheminement": "LAUSSONNE", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43115"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951e46c97a724c752406c1018d96a61a1df19d39", "fields": {"nom_de_la_commune": "LAVAUDIEU", "libell_d_acheminement": "LAVAUDIEU", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43117"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842b65d6b86e5a20abc014d31c5f91a42822033b", "fields": {"nom_de_la_commune": "LAVOUTE SUR LOIRE", "libell_d_acheminement": "LAVOUTE SUR LOIRE", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43119"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc66abc2e66d1fc5c24f669619f8220c4ef02392", "fields": {"nom_de_la_commune": "MALVIERES", "libell_d_acheminement": "MALVIERES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43128"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee20184c8c4be28daafc08de68be1fae3f46aff6", "fields": {"nom_de_la_commune": "MONISTROL SUR LOIRE", "libell_d_acheminement": "MONISTROL SUR LOIRE", "code_postal": "43120", "coordonnees_gps": [45.2982913973, 4.18798743532], "code_commune_insee": "43137"}, "geometry": {"type": "Point", "coordinates": [4.18798743532, 45.2982913973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ec5049a0a0c64b5c9fadbedbac5ab83c49a5fe", "fields": {"nom_de_la_commune": "MONTFAUCON EN VELAY", "libell_d_acheminement": "MONTFAUCON EN VELAY", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43141"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7629dafe2cb6f9919aebcfaa69959290d06818c", "fields": {"nom_de_la_commune": "MONTREGARD", "libell_d_acheminement": "MONTREGARD", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43142"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e9cbe4a3fc8bbfe62da344ea81a3dfd7616dd5", "fields": {"nom_de_la_commune": "PAULHAGUET", "libell_d_acheminement": "PAULHAGUET", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43148"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a03c4b433d12e549f925c11d5e5508ef41083e8", "fields": {"nom_de_la_commune": "LE PUY EN VELAY", "libell_d_acheminement": "LE PUY EN VELAY", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43157"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b2f4b4f3cfca05b18e7ea9408907032d76aea8", "fields": {"nom_de_la_commune": "RAUCOULES", "libell_d_acheminement": "RAUCOULES", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43159"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "481ca9ab42356f2a9ac6b8ad624ab1bb3f15759c", "fields": {"nom_de_la_commune": "ROCHE EN REGNIER", "libell_d_acheminement": "ROCHE EN REGNIER", "code_postal": "43810", "coordonnees_gps": [45.2402907147, 3.91556730056], "code_commune_insee": "43164"}, "geometry": {"type": "Point", "coordinates": [3.91556730056, 45.2402907147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6faa6eb476de2c9cd92b96ae74cc80b39892b13f", "fields": {"nom_de_la_commune": "ST ARCONS DE BARGES", "libell_d_acheminement": "ST ARCONS DE BARGES", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43168"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ae9ed929f4487eafa0784716ab218f8c086bea", "fields": {"nom_de_la_commune": "ST BONNET LE FROID", "libell_d_acheminement": "ST BONNET LE FROID", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43172"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f52971f42f2b59477a02b1a34fb373611edd7a5", "fields": {"nom_de_la_commune": "ST DIDIER SUR DOULON", "libell_d_acheminement": "ST DIDIER SUR DOULON", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43178"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc365e958b85edee76d274fdfdb9c3327df08a94", "fields": {"nom_de_la_commune": "ST ETIENNE DU VIGAN", "libell_d_acheminement": "ST ETIENNE DU VIGAN", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43180"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cebed8e00dc66d2b9969c6a799ee0909868c8e1", "fields": {"nom_de_la_commune": "STE EUGENIE DE VILLENEUVE", "libell_d_acheminement": "STE EUGENIE DE VILLENEUVE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43183"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1edb5a7f55285390b1af7c69f237661eb3f7d7c", "fields": {"nom_de_la_commune": "ST FRONT", "libell_d_acheminement": "ST FRONT", "code_postal": "43550", "coordonnees_gps": [44.9734407897, 4.13957696833], "code_commune_insee": "43186"}, "geometry": {"type": "Point", "coordinates": [4.13957696833, 44.9734407897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ada5a8ac648976fc01fed58ee6b2fb2cb904dd", "fields": {"nom_de_la_commune": "ST GEORGES LAGRICOL", "libell_d_acheminement": "ST GEORGES LAGRICOL", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43189"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6628d2f9fd18d9c5f14207439e37a4b4cd03eec6", "fields": {"nom_de_la_commune": "ST JULIEN DU PINET", "libell_d_acheminement": "ST JULIEN DU PINET", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43203"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5292727a2e0237e325f26a671753ab044f8d84c4", "fields": {"nom_de_la_commune": "ST LAURENT CHABREUGES", "libell_d_acheminement": "ST LAURENT CHABREUGES", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43207"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76412f2ad4842b6e9d184f9e7dfb33fa6eba14b", "fields": {"nom_de_la_commune": "ST PAL DE MONS", "libell_d_acheminement": "ST PAL DE MONS", "code_postal": "43620", "coordonnees_gps": [45.2519727569, 4.30691844433], "code_commune_insee": "43213"}, "geometry": {"type": "Point", "coordinates": [4.30691844433, 45.2519727569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e97be67dae1381ea6101537ced5edd9e236359", "fields": {"nom_de_la_commune": "ST PAUL DE TARTAS", "libell_d_acheminement": "ST PAUL DE TARTAS", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43215"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52471bd2ba5112ffd4bf8306b23e392ab7caad3b", "fields": {"nom_de_la_commune": "ST PREJET ARMANDON", "libell_d_acheminement": "ST PREJET ARMANDON", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43219"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8352b39172e72680b264616e959027e9bc032e28", "fields": {"nom_de_la_commune": "SEMBADEL", "libell_d_acheminement": "SEMBADEL", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43237"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058e29fa174af58b4ed7b7ea04267b19f299cbe3", "fields": {"nom_de_la_commune": "SIAUGUES STE MARIE", "libell_d_acheminement": "SIAUGUES STE MARIE", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43239"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e47b969bb440f0997b5cf86b946e51f23c460b", "fields": {"nom_de_la_commune": "SOLIGNAC SOUS ROCHE", "libell_d_acheminement": "SOLIGNAC SOUS ROCHE", "code_postal": "43130", "coordonnees_gps": [45.2367556015, 4.006325814], "code_commune_insee": "43240"}, "geometry": {"type": "Point", "coordinates": [4.006325814, 45.2367556015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b731be56ac631b1dec7861b4ee4bdb1f5995eb60", "fields": {"nom_de_la_commune": "TAILHAC", "libell_d_acheminement": "TAILHAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43242"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec8891dec173c2bcc6b69ab4a29070f303c7b3a", "fields": {"nom_de_la_commune": "THORAS", "libell_d_acheminement": "THORAS", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43245"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9c6a36a179e64c5bbbd7413682c52cb5678580", "fields": {"code_postal": "43580", "code_commune_insee": "43245", "libell_d_acheminement": "THORAS", "ligne_5": "CROISANCES", "nom_de_la_commune": "THORAS", "coordonnees_gps": [44.9273994452, 3.63004731198]}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5039633213f45d9c2d1b1cc3d44cb09c0a329b9a", "fields": {"nom_de_la_commune": "TORSIAC", "libell_d_acheminement": "TORSIAC", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43247"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44f6aa2252ca609368f78658d6c7c2b6ea6d721", "fields": {"nom_de_la_commune": "VALPRIVAS", "libell_d_acheminement": "VALPRIVAS", "code_postal": "43210", "coordonnees_gps": [45.3265198809, 4.10184881262], "code_commune_insee": "43249"}, "geometry": {"type": "Point", "coordinates": [4.10184881262, 45.3265198809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40d97ee803ac9d527f2eed250ecc3a49aa8de76", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43260"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f6a1bcec04931ddfa8af65b4046830e1829373", "fields": {"nom_de_la_commune": "VEZEZOUX", "libell_d_acheminement": "VEZEZOUX", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43261"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b025f436d9625e162c246a282c809882969c34d8", "fields": {"nom_de_la_commune": "VIEILLE BRIOUDE", "libell_d_acheminement": "VIEILLE BRIOUDE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43262"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90e84280cd61bd6200af53ef989e63879380144", "fields": {"nom_de_la_commune": "VIELPRAT", "libell_d_acheminement": "VIELPRAT", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43263"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e63e13c41b82dbf75e223d33206b3ae1a23fea9", "fields": {"nom_de_la_commune": "VILLENEUVE D ALLIER", "libell_d_acheminement": "VILLENEUVE D ALLIER", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43264"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74ba9b29a5d6cc1b1be2124a935dee29a8c95fd", "fields": {"nom_de_la_commune": "BATZ SUR MER", "libell_d_acheminement": "BATZ SUR MER", "code_postal": "44740", "coordonnees_gps": [47.2846734504, -2.47393710058], "code_commune_insee": "44010"}, "geometry": {"type": "Point", "coordinates": [-2.47393710058, 47.2846734504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609f4978ab1380d3843fc7ff76ed94099c631f3a", "fields": {"nom_de_la_commune": "LA BERNERIE EN RETZ", "libell_d_acheminement": "LA BERNERIE EN RETZ", "code_postal": "44760", "coordonnees_gps": [47.0707006392, -2.00607135756], "code_commune_insee": "44012"}, "geometry": {"type": "Point", "coordinates": [-2.00607135756, 47.0707006392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496708605039fd4856a1dd107330d94fe321199e", "fields": {"nom_de_la_commune": "BESNE", "libell_d_acheminement": "BESNE", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44013"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3461c95539cd32149b646bafcc479b1dede9444", "fields": {"nom_de_la_commune": "LE BIGNON", "libell_d_acheminement": "LE BIGNON", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44014"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99744a95f4c608bbde2203dae2a8e822d0b02c14", "fields": {"nom_de_la_commune": "BLAIN", "libell_d_acheminement": "BLAIN", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44015"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d5682e7c6180cfbf23be8dd8763fe781f4fd83", "fields": {"nom_de_la_commune": "LA BOISSIERE DU DORE", "libell_d_acheminement": "LA BOISSIERE DU DORE", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44016"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ba15794c99638eeb76787fc8fb8020b92983e5", "fields": {"nom_de_la_commune": "BOUGUENAIS", "libell_d_acheminement": "BOUGUENAIS", "code_postal": "44340", "coordonnees_gps": [47.1707627594, -1.61663580743], "code_commune_insee": "44020"}, "geometry": {"type": "Point", "coordinates": [-1.61663580743, 47.1707627594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be26fa11c827e2005ffbcf032e65c7b1473e943", "fields": {"code_postal": "44340", "code_commune_insee": "44020", "libell_d_acheminement": "BOUGUENAIS", "ligne_5": "LES COUETS", "nom_de_la_commune": "BOUGUENAIS", "coordonnees_gps": [47.1707627594, -1.61663580743]}, "geometry": {"type": "Point", "coordinates": [-1.61663580743, 47.1707627594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a659f95a9fd4db7f21d32b39ea08ca62b8810475", "fields": {"code_postal": "44580", "code_commune_insee": "44021", "libell_d_acheminement": "VILLENEUVE EN RETZ", "ligne_5": "BOURGNEUF EN RETZ", "nom_de_la_commune": "VILLENEUVE EN RETZ", "coordonnees_gps": [47.0379472575, -1.92596110196]}, "geometry": {"type": "Point", "coordinates": [-1.92596110196, 47.0379472575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f2c0f0a2a837740522774b2bdc322d8f70fd37c", "fields": {"code_postal": "44580", "code_commune_insee": "44021", "libell_d_acheminement": "VILLENEUVE EN RETZ", "ligne_5": "FRESNAY EN RETZ", "nom_de_la_commune": "VILLENEUVE EN RETZ", "coordonnees_gps": [47.0379472575, -1.92596110196]}, "geometry": {"type": "Point", "coordinates": [-1.92596110196, 47.0379472575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fac773ddd51295b65542721ff26cd73e45a9197", "fields": {"nom_de_la_commune": "BOUSSAY", "libell_d_acheminement": "BOUSSAY", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44022"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b042b84055d99d1ba08ac593c834e40dfb12cc4a", "fields": {"nom_de_la_commune": "CARQUEFOU", "libell_d_acheminement": "CARQUEFOU", "code_postal": "44470", "coordonnees_gps": [47.3000422915, -1.4503189654], "code_commune_insee": "44026"}, "geometry": {"type": "Point", "coordinates": [-1.4503189654, 47.3000422915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e86fc0b62628c6856e82415d19399260c20e32e", "fields": {"code_postal": "44450", "code_commune_insee": "44029", "libell_d_acheminement": "DIVATTE SUR LOIRE", "ligne_5": "LA CHAPELLE BASSE MER", "nom_de_la_commune": "DIVATTE SUR LOIRE", "coordonnees_gps": [47.2609944569, -1.38232107674]}, "geometry": {"type": "Point", "coordinates": [-1.38232107674, 47.2609944569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061d7f615d579049b1f30490e3c1fba8cbb767cb", "fields": {"nom_de_la_commune": "LA CHAPELLE LAUNAY", "libell_d_acheminement": "LA CHAPELLE LAUNAY", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44033"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffecc6f57ba242209c6b36d794c866a758e2b6da", "fields": {"nom_de_la_commune": "CHATEAU THEBAUD", "libell_d_acheminement": "CHATEAU THEBAUD", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44037"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7df3d4fd528612d87c85025f98af64bcea66fc5", "fields": {"code_postal": "44118", "code_commune_insee": "44041", "libell_d_acheminement": "LA CHEVROLIERE", "ligne_5": "PASSAY", "nom_de_la_commune": "LA CHEVROLIERE", "coordonnees_gps": [47.0889695478, -1.59676742494]}, "geometry": {"type": "Point", "coordinates": [-1.59676742494, 47.0889695478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec6c06dab6b244f09ccd6720ed13ae5f915b0d2", "fields": {"nom_de_la_commune": "CORDEMAIS", "libell_d_acheminement": "CORDEMAIS", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44045"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9d398dcd83eafe679ec5a44e2c660da55009f1", "fields": {"nom_de_la_commune": "CROSSAC", "libell_d_acheminement": "CROSSAC", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44050"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74db8c7cd353ca34fb931b32cae08da8e6faca20", "fields": {"nom_de_la_commune": "ERBRAY", "libell_d_acheminement": "ERBRAY", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44054"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687d8533c4dfddfe46cbabec4bf7e4c4a9435522", "fields": {"nom_de_la_commune": "GUENROUET", "libell_d_acheminement": "GUENROUET", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44068"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875590e5adfec4f68c1adec98c3234a9099bfc55", "fields": {"nom_de_la_commune": "HERIC", "libell_d_acheminement": "HERIC", "code_postal": "44810", "coordonnees_gps": [47.42821115, -1.64065236011], "code_commune_insee": "44073"}, "geometry": {"type": "Point", "coordinates": [-1.64065236011, 47.42821115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9cc8b726c9a3df8151b9757d2d7e06e20a9de8d", "fields": {"nom_de_la_commune": "INDRE", "libell_d_acheminement": "INDRE", "code_postal": "44610", "coordonnees_gps": [47.1984071351, -1.67155607359], "code_commune_insee": "44074"}, "geometry": {"type": "Point", "coordinates": [-1.67155607359, 47.1984071351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3166f058af86870f7822ac50e63274540761bd9", "fields": {"nom_de_la_commune": "JOUE SUR ERDRE", "libell_d_acheminement": "JOUE SUR ERDRE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44077"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74722b8a0da984a7cc837579739727ac5cf13620", "fields": {"code_postal": "44440", "code_commune_insee": "44077", "libell_d_acheminement": "JOUE SUR ERDRE", "ligne_5": "NOTRE DAME DES LANGUEURS", "nom_de_la_commune": "JOUE SUR ERDRE", "coordonnees_gps": [47.4983275474, -1.33409165092]}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82832b94d9ed0d83710921cb029bb7fd048a5865", "fields": {"nom_de_la_commune": "LA MARNE", "libell_d_acheminement": "LA MARNE", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44090"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bb7a9befcbbe1a508726973b7c2ccc08bb721c", "fields": {"nom_de_la_commune": "MISSILLAC", "libell_d_acheminement": "MISSILLAC", "code_postal": "44780", "coordonnees_gps": [47.48816665, -2.17748670642], "code_commune_insee": "44098"}, "geometry": {"type": "Point", "coordinates": [-2.17748670642, 47.48816665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010ff362eecf0a022f3a304fb5f2023d9679ddbd", "fields": {"nom_de_la_commune": "MONNIERES", "libell_d_acheminement": "MONNIERES", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44100"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627768165bc4e724153013c5bf494bde92661da3", "fields": {"nom_de_la_commune": "NORT SUR ERDRE", "libell_d_acheminement": "NORT SUR ERDRE", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44110"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997b7d205536d9934734fd4f3e046ec98d11fa79", "fields": {"nom_de_la_commune": "NOTRE DAME DES LANDES", "libell_d_acheminement": "NOTRE DAME DES LANDES", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44111"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb7d3f8f44171921de87ce5774c86d69cdca5ac", "fields": {"nom_de_la_commune": "PIERRIC", "libell_d_acheminement": "PIERRIC", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44123"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e617891896ed38f8389e9fc13a374b9af886bf6", "fields": {"nom_de_la_commune": "LA PLAINE SUR MER", "libell_d_acheminement": "LA PLAINE SUR MER", "code_postal": "44770", "coordonnees_gps": [47.1411450003, -2.19113263493], "code_commune_insee": "44126"}, "geometry": {"type": "Point", "coordinates": [-2.19113263493, 47.1411450003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509bedca3c17308401ce50e74ca3637e6e0771a8", "fields": {"code_postal": "44630", "code_commune_insee": "44128", "libell_d_acheminement": "PLESSE", "ligne_5": "LE DRESNY", "nom_de_la_commune": "PLESSE", "coordonnees_gps": [47.5557950636, -1.89023163627]}, "geometry": {"type": "Point", "coordinates": [-1.89023163627, 47.5557950636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eab7ff2e5b1a7a2062f174136ddd7ff19945914", "fields": {"nom_de_la_commune": "PONT ST MARTIN", "libell_d_acheminement": "PONT ST MARTIN", "code_postal": "44860", "coordonnees_gps": [47.1293725692, -1.59139240082], "code_commune_insee": "44130"}, "geometry": {"type": "Point", "coordinates": [-1.59139240082, 47.1293725692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1208af58e359573f32d480f8cf5c53f27bdd7fca", "fields": {"code_postal": "44860", "code_commune_insee": "44130", "libell_d_acheminement": "PONT ST MARTIN", "ligne_5": "VIAIS", "nom_de_la_commune": "PONT ST MARTIN", "coordonnees_gps": [47.1293725692, -1.59139240082]}, "geometry": {"type": "Point", "coordinates": [-1.59139240082, 47.1293725692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798e6e8bd73b707437e2dbf58065c8ea7610f8f8", "fields": {"nom_de_la_commune": "POUILLE LES COTEAUX", "libell_d_acheminement": "POUILLE LES COTEAUX", "code_postal": "44522", "coordonnees_gps": [47.4363371088, -1.20212334851], "code_commune_insee": "44134"}, "geometry": {"type": "Point", "coordinates": [-1.20212334851, 47.4363371088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72fc7278d0ea920edfe9526910f4cbd7bbc4af69", "fields": {"nom_de_la_commune": "LE POULIGUEN", "libell_d_acheminement": "LE POULIGUEN", "code_postal": "44510", "coordonnees_gps": [47.2703996777, -2.43224200434], "code_commune_insee": "44135"}, "geometry": {"type": "Point", "coordinates": [-2.43224200434, 47.2703996777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4629fccde97468ba3346c4b19fa96bf0d49deb", "fields": {"nom_de_la_commune": "LA REMAUDIERE", "libell_d_acheminement": "LA REMAUDIERE", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44141"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b97e8f478cc71a103989f6f37797622b41e6e872", "fields": {"nom_de_la_commune": "ROUANS", "libell_d_acheminement": "ROUANS", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44145"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be837e4117d4db2dbff21f1bee282d4813c6ca5", "fields": {"nom_de_la_commune": "ROUGE", "libell_d_acheminement": "ROUGE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44146"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947afdff62265bceb6ad459efa8b65321b746ee7", "fields": {"nom_de_la_commune": "SAFFRE", "libell_d_acheminement": "SAFFRE", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44149"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c37e36152d3cb4f4df3589169cd18f3209e084", "fields": {"nom_de_la_commune": "ST ETIENNE DE MONTLUC", "libell_d_acheminement": "ST ETIENNE DE MONTLUC", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44158"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73b3ed1734e5e477dee89345d902bf97bdd36d1", "fields": {"nom_de_la_commune": "ST GEREON", "libell_d_acheminement": "ST GEREON", "code_postal": "44150", "coordonnees_gps": [47.3950525616, -1.14692474643], "code_commune_insee": "44160"}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9341393c9c5603c1f0b8581fa23e8711d00108b8", "fields": {"code_postal": "44150", "code_commune_insee": "44163", "libell_d_acheminement": "VAIR SUR LOIRE", "ligne_5": "ANETZ", "nom_de_la_commune": "VAIR SUR LOIRE", "coordonnees_gps": [47.3950525616, -1.14692474643]}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea927574438461ec2eef8f00b7425113505273a", "fields": {"nom_de_la_commune": "ST JULIEN DE VOUVANTES", "libell_d_acheminement": "ST JULIEN DE VOUVANTES", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44170"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdaa3c406d000e9034c0010ff279de3089731c35", "fields": {"nom_de_la_commune": "STE REINE DE BRETAGNE", "libell_d_acheminement": "STE REINE DE BRETAGNE", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44189"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c8cfc84adac738d4745eb4c346fb3da45bd78e", "fields": {"nom_de_la_commune": "ST SULPICE DES LANDES", "libell_d_acheminement": "ST SULPICE DES LANDES", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44191"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbe188df3edd30960b8fa73dec2ffac0d9e35eb", "fields": {"nom_de_la_commune": "ST VINCENT DES LANDES", "libell_d_acheminement": "ST VINCENT DES LANDES", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44193"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebedc7f7d3bd3c1ca09329cbba91f417f99c047a", "fields": {"nom_de_la_commune": "TREILLIERES", "libell_d_acheminement": "TREILLIERES", "code_postal": "44119", "coordonnees_gps": [47.3409762189, -1.62124994195], "code_commune_insee": "44209"}, "geometry": {"type": "Point", "coordinates": [-1.62124994195, 47.3409762189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb065cc73b8e38c9d8f6f94b03f7805d5105a00a", "fields": {"nom_de_la_commune": "VARENGUEBEC", "libell_d_acheminement": "VARENGUEBEC", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50617"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359e910bece6b5f1ebbd0c5aea82341a105d7b1a", "fields": {"nom_de_la_commune": "VAROUVILLE", "libell_d_acheminement": "VAROUVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50618"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa6192ddc3370bef64ecfa72beea7e16226de1c", "fields": {"nom_de_la_commune": "VAUDRIMESNIL", "libell_d_acheminement": "VAUDRIMESNIL", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50622"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497811c8c2e02d3f290623c3a76ede409b668d92", "fields": {"nom_de_la_commune": "LES VEYS", "libell_d_acheminement": "LES VEYS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50631"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c52978c0fa4a6744dea3ca051e188332510ba0d", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "BARBONVAL", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fed3e1bc88ca9db2ae095a096284ad3cac5f3cd", "fields": {"nom_de_la_commune": "LARGNY SUR AUTOMNE", "libell_d_acheminement": "LARGNY SUR AUTOMNE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02410"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c174683e125255062ac3c53fb1329c93d28a9b3", "fields": {"nom_de_la_commune": "LEUILLY SOUS COUCY", "libell_d_acheminement": "LEUILLY SOUS COUCY", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02423"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b2db36103438c36476373cf43f37c89f708289", "fields": {"nom_de_la_commune": "LAVAQUERESSE", "libell_d_acheminement": "LAVAQUERESSE", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02414"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a925fd83344147be96d3edb9a119fcce2b6ad450", "fields": {"nom_de_la_commune": "LAVERSINE", "libell_d_acheminement": "LAVERSINE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02415"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f7d4a5ef25b138a2eb0ddff157afb50c311686", "fields": {"nom_de_la_commune": "LONGPONT", "libell_d_acheminement": "LONGPONT", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02438"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84b6074175a88eba45e34190945fe6f15611c930", "fields": {"nom_de_la_commune": "JONCOURT", "libell_d_acheminement": "JONCOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02392"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cff8d553ee6d8ff1755068782769a41acad0659", "fields": {"nom_de_la_commune": "LATILLY", "libell_d_acheminement": "LATILLY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02411"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cf1e1a7877e85fe108e36675fe6758e52668d1", "fields": {"nom_de_la_commune": "LEME", "libell_d_acheminement": "LEME", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02416"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f64d465c34ff981f50ba6e9353138456447d0", "fields": {"nom_de_la_commune": "LA BASTIDE SUR L HERS", "libell_d_acheminement": "LA BASTIDE SUR L HERS", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09043"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935e4eb96cb1b6ecc71761615adf1ec2556596ef", "fields": {"nom_de_la_commune": "LA BASTIDE DE BESPLAS", "libell_d_acheminement": "LA BASTIDE DE BESPLAS", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09038"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c756767eedcd26516ce28a9bd46179f960c609c4", "fields": {"nom_de_la_commune": "AULUS LES BAINS", "libell_d_acheminement": "AULUS LES BAINS", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09029"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56607422897b16b2c6078a9e5356a6a3c4fe231d", "fields": {"nom_de_la_commune": "AX LES THERMES", "libell_d_acheminement": "AX LES THERMES", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09032"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "419fee3f1cb506584157583597f09769e0c16994", "fields": {"nom_de_la_commune": "BETCHAT", "libell_d_acheminement": "BETCHAT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09054"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb9ec7ac870f66d343e28fe8db2f4e4cbeb920c", "fields": {"nom_de_la_commune": "ARVIGNA", "libell_d_acheminement": "ARVIGNA", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09022"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29340784f17908121728c9d7a68a726a70ccafd4", "fields": {"nom_de_la_commune": "BESSET", "libell_d_acheminement": "BESSET", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09052"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73ef8fd85dfd986b0ede157630896615077a727", "fields": {"nom_de_la_commune": "ASTON", "libell_d_acheminement": "ASTON", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09024"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1392816a94a6209a120213737991eca126a4a755", "fields": {"nom_de_la_commune": "AULOS", "libell_d_acheminement": "AULOS", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09028"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0148651eafeea13bb1e708f580c7946b0a5b97e8", "fields": {"nom_de_la_commune": "ST MARTIN LA CAMPAGNE", "libell_d_acheminement": "ST MARTIN LA CAMPAGNE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27570"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c87538df5aeea5b9797372edbddeb527a2387a7", "fields": {"nom_de_la_commune": "STE OPPORTUNE DU BOSC", "libell_d_acheminement": "STE OPPORTUNE DU BOSC", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27576"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeced92151a4fe8bfe2372873371e254cd011a65", "fields": {"nom_de_la_commune": "ST OUEN DE PONTCHEUIL", "libell_d_acheminement": "ST OUEN DE PONTCHEUIL", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27579"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d364b70d8963b1f6c589e1ccf0d1b22386fbcac9", "fields": {"nom_de_la_commune": "ST OUEN DU TILLEUL", "libell_d_acheminement": "ST OUEN DU TILLEUL", "code_postal": "27670", "coordonnees_gps": [49.2917091598, 0.924488601867], "code_commune_insee": "27582"}, "geometry": {"type": "Point", "coordinates": [0.924488601867, 49.2917091598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f9289bc06442ca9bae738a42a2d5e1ba5b211c", "fields": {"nom_de_la_commune": "ST PAUL DE FOURQUES", "libell_d_acheminement": "ST PAUL DE FOURQUES", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27584"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84b3772fe395be15a839469ac78d25ddafc41104", "fields": {"nom_de_la_commune": "ST PIERRE DE CORMEILLES", "libell_d_acheminement": "ST PIERRE DE CORMEILLES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27591"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c57c80af52a026091c6336f80b3b939054b192e", "fields": {"nom_de_la_commune": "ST PIERRE DES FLEURS", "libell_d_acheminement": "ST PIERRE DES FLEURS", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27593"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c167519974737d32cff016cdd5dfd80c78cd3a2", "fields": {"nom_de_la_commune": "ST PIERRE DU BOSGUERARD", "libell_d_acheminement": "ST PIERRE DU BOSGUERARD", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27595"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac2f08da07fd597c3feb5eefb08abee8fa94f39", "fields": {"nom_de_la_commune": "ST PIERRE DU VAUVRAY", "libell_d_acheminement": "ST PIERRE DU VAUVRAY", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27598"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07c1dbbf3ec4d90e21f88d088d5211f257629f1", "fields": {"nom_de_la_commune": "ST VICTOR DE CHRETIENVILLE", "libell_d_acheminement": "ST VICTOR DE CHRETIENVILLE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27608"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424bbc21db580b88f284f5883f331ba0a00b6eb0", "fields": {"nom_de_la_commune": "ST VICTOR D EPINE", "libell_d_acheminement": "ST VICTOR D EPINE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27609"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b075252a973d090c53adedaa6aa67dfbd7b918", "fields": {"nom_de_la_commune": "SASSEY", "libell_d_acheminement": "SASSEY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27615"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49718074fb1199956136a1d434ff415d66eb70c7", "fields": {"nom_de_la_commune": "LA SAUSSAYE", "libell_d_acheminement": "LA SAUSSAYE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27616"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca09263d2a43624f81540efdb3a6970b9477f5d", "fields": {"nom_de_la_commune": "THIERVILLE", "libell_d_acheminement": "THIERVILLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27631"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281d698390cd88bd04f71b17502743ce26dc1e3f", "fields": {"nom_de_la_commune": "LE THIL", "libell_d_acheminement": "LE THIL EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27632"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58e3123c1228633c902f54bc62299e3e4836d7e", "fields": {"nom_de_la_commune": "LES THILLIERS EN VEXIN", "libell_d_acheminement": "LES THILLIERS EN VEXIN", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27633"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2cf6e7b46eec94f4d1944d94dd7b9ab358afad5", "fields": {"nom_de_la_commune": "TOURVILLE SUR PONT AUDEMER", "libell_d_acheminement": "TOURVILLE SUR PONT AUDEMER", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27655"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e78e26bab5757b680a960383c471c05692c7e8", "fields": {"nom_de_la_commune": "LE TREMBLAY OMONVILLE", "libell_d_acheminement": "LE TREMBLAY OMONVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27658"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42add04b9e5aa6b5db341ef2c3250c8755cc1f5e", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27659"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0573bdb1df8c5dfa990da6d4cd0446cab258e3", "fields": {"nom_de_la_commune": "LE TRONCQ", "libell_d_acheminement": "LE TRONCQ", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27663"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1495d6ef7d6cc261980238ab05a45145c29cc0bc", "fields": {"nom_de_la_commune": "TROUVILLE LA HAULE", "libell_d_acheminement": "TROUVILLE LA HAULE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27665"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a287ed0520ca166d4e0ccfc9448b796110c0765", "fields": {"nom_de_la_commune": "VEZILLON", "libell_d_acheminement": "VEZILLON", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27683"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cd5cdab3dc9485690410e0555f3a8540d93aba", "fields": {"nom_de_la_commune": "VILLERS EN VEXIN", "libell_d_acheminement": "VILLERS EN VEXIN", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27690"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814c30dd365c11eaa98aea85825766e495877b79", "fields": {"nom_de_la_commune": "VILLETTES", "libell_d_acheminement": "VILLETTES", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27692"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1eee9f80733d7b9f8743c926550d439541d7e7", "fields": {"nom_de_la_commune": "VILLIERS EN DESOEUVRE", "libell_d_acheminement": "VILLIERS EN DESOEUVRE", "code_postal": "27640", "coordonnees_gps": [48.9602482824, 1.4448225375], "code_commune_insee": "27696"}, "geometry": {"type": "Point", "coordinates": [1.4448225375, 48.9602482824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3e312a5e3fd73e4c8fda22da4dabb001f2166fe", "fields": {"nom_de_la_commune": "ALLAINES MERVILLIERS", "libell_d_acheminement": "ALLAINES MERVILLIERS", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28002"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e79907f9fccc316fc299939b68608e15926b85", "fields": {"nom_de_la_commune": "ALLONNES", "libell_d_acheminement": "ALLONNES", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28004"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6a28466dd1bfbc2261c853b0dac74b609e74be", "fields": {"nom_de_la_commune": "ARDELU", "libell_d_acheminement": "ARDELU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28009"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56867e10345ce6bb5ac6cd646dd23c1d74560b05", "fields": {"nom_de_la_commune": "ARGENVILLIERS", "libell_d_acheminement": "ARGENVILLIERS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28010"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d49daa27e04fa9331f99e4884fb880f41e9e0f3", "fields": {"code_postal": "28700", "code_commune_insee": "28015", "libell_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", "ligne_5": "BLEURY ST SYMPHORIEN", "nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", "coordonnees_gps": [48.4174133692, 1.78775113893]}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e29399bb56c53b9567dc975b0fcfed00b75e58", "fields": {"nom_de_la_commune": "LES AUTELS VILLEVILLON", "libell_d_acheminement": "LES AUTELS VILLEVILLON", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28016"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7307cfef1e6b220fd9238c581b220834d897d8f7", "fields": {"nom_de_la_commune": "BARMAINVILLE", "libell_d_acheminement": "BARMAINVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28025"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f8390643462c7ab6be5113ec6c455cad8aff17", "fields": {"nom_de_la_commune": "BEAUCHE", "libell_d_acheminement": "BEAUCHE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28030"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f80d4ed13ebf690ee900b98aaa898051e1e763", "fields": {"nom_de_la_commune": "BOISSY EN DROUAIS", "libell_d_acheminement": "BOISSY EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28045"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cab44a97f8f2eb460c801af3c5f9d608d2c7fa4", "fields": {"nom_de_la_commune": "LA BOURDINIERE ST LOUP", "libell_d_acheminement": "LA BOURDINIERE ST LOUP", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28048"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda18c1d8741f458942c9d100ffcb1edcd376cae", "fields": {"nom_de_la_commune": "BONNEVAL", "libell_d_acheminement": "BONNEVAL", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28051"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1cd18bc4bc0033acfd2f464b3f47434fe6dd5f", "fields": {"nom_de_la_commune": "BOUTIGNY PROUAIS", "libell_d_acheminement": "BOUTIGNY PROUAIS", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28056"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cf51a6e935a7cfdc58167470a9fe87084f1a37", "fields": {"code_postal": "28410", "code_commune_insee": "28056", "libell_d_acheminement": "BOUTIGNY PROUAIS", "ligne_5": "PROUAIS", "nom_de_la_commune": "BOUTIGNY PROUAIS", "coordonnees_gps": [48.777838041, 1.50962562015]}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2212830f885d4af3a84f9f57a9f4944499ac281f", "fields": {"nom_de_la_commune": "BROUE", "libell_d_acheminement": "BROUE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28062"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1902b6a238d585a165d2679d2a5ca287740bcdda", "fields": {"nom_de_la_commune": "BULLAINVILLE", "libell_d_acheminement": "BULLAINVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28065"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "713a2fd5f6f36c6bbc025253fe8cd93ecf91adba", "fields": {"nom_de_la_commune": "BULLOU", "libell_d_acheminement": "BULLOU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28066"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa55392c011cebca822d073c0885bb4149e90a96", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28067"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dd9ac8712971a3da4d3ac0271628ec7c088be6", "fields": {"nom_de_la_commune": "CHAMPROND EN GATINE", "libell_d_acheminement": "CHAMPROND EN GATINE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28071"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57d9ee6dc217e5090f563e67e75e14933e4c53b", "fields": {"nom_de_la_commune": "LA CHAPELLE FORTIN", "libell_d_acheminement": "LA CHAPELLE FORTIN", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28077"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f8e68ead0f3046a38eb9a77dba492bd70ca34ee", "fields": {"nom_de_la_commune": "CHAPELLE GUILLAUME", "libell_d_acheminement": "CHAPELLE GUILLAUME", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28078"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577b4446a77bda08600710571746e9ec51982edc", "fields": {"nom_de_la_commune": "CHATAINCOURT", "libell_d_acheminement": "CHATAINCOURT", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28087"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca225b668883bf05b515016bed02e798e77d1dd", "fields": {"nom_de_la_commune": "CHAUFFOURS", "libell_d_acheminement": "CHAUFFOURS", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28095"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af24a5df176e3c4827298cafe0f1087d48e2af7b", "fields": {"nom_de_la_commune": "CHERISY", "libell_d_acheminement": "CHERISY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28098"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49bda17cf00ddd6ad7356f2ee18c8c489899095", "fields": {"nom_de_la_commune": "CLOYES SUR LE LOIR", "libell_d_acheminement": "CLOYES SUR LE LOIR", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28103"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad217090b13f892607c196010485260b495536d", "fields": {"nom_de_la_commune": "COMBRES", "libell_d_acheminement": "COMBRES", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28105"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b04dc70b937283adcff7129e0c7944432d72df", "fields": {"nom_de_la_commune": "CORMAINVILLE", "libell_d_acheminement": "CORMAINVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28108"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d01ecd802d14d92ba4ef93b1e6470cc9ee5a1d", "fields": {"nom_de_la_commune": "LA CROIX DU PERCHE", "libell_d_acheminement": "LA CROIX DU PERCHE", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28119"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a3557192117610e0ec1e21b82c64ff98bd5e02", "fields": {"nom_de_la_commune": "DANCY", "libell_d_acheminement": "DANCY", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28126"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce27ef30948575ab794329661b37bcf11622d29", "fields": {"nom_de_la_commune": "DONNEMAIN ST MAMES", "libell_d_acheminement": "DONNEMAIN ST MAMES", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28132"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f411895eadf12211da64fbddfd629dbde5840b4d", "fields": {"nom_de_la_commune": "DROUE SUR DROUETTE", "libell_d_acheminement": "DROUE SUR DROUETTE", "code_postal": "28230", "coordonnees_gps": [48.5972768911, 1.69206934612], "code_commune_insee": "28135"}, "geometry": {"type": "Point", "coordinates": [1.69206934612, 48.5972768911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca599fe5679baa5ab06e30a319defb924460de55", "fields": {"nom_de_la_commune": "ESCORPAIN", "libell_d_acheminement": "ESCORPAIN", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28143"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6610291b603a1549fc99df50ed99bec5338314b", "fields": {"nom_de_la_commune": "LA FERTE VIDAME", "libell_d_acheminement": "LA FERTE VIDAME", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28149"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b04c68ef5a5eddf9431d1bd4cfc435dcebda1f", "fields": {"nom_de_la_commune": "FRIAIZE", "libell_d_acheminement": "FRIAIZE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28166"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c49aaa74f71173dedec993295539b357698166b", "fields": {"nom_de_la_commune": "GALLARDON", "libell_d_acheminement": "GALLARDON", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28168"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe149251f95ceff26740f215b2ad39ed29437711", "fields": {"nom_de_la_commune": "GARANCIERES EN BEAUCE", "libell_d_acheminement": "GARANCIERES EN BEAUCE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28169"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5281c754348a13c0e6d6c38be3802bbb2859c7b", "fields": {"nom_de_la_commune": "LA GAUDAINE", "libell_d_acheminement": "LA GAUDAINE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28175"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dda6706b0a82b16cc72b2e6685af67fb2b7b05a", "fields": {"nom_de_la_commune": "GOHORY", "libell_d_acheminement": "GOHORY", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28182"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a27ae4645379be3e0038bfee2b91e25282c8ed68", "fields": {"nom_de_la_commune": "GOUSSAINVILLE", "libell_d_acheminement": "GOUSSAINVILLE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28185"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16c13d982e3d0409a4de80140cdbebdeb90b44a", "fields": {"nom_de_la_commune": "GUILLONVILLE", "libell_d_acheminement": "GUILLONVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28190"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbcf0f644bd156cc7c5a11cdd1361eb6955c70c4", "fields": {"nom_de_la_commune": "HANCHES", "libell_d_acheminement": "HANCHES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28191"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53bdc7facf9bc559049d0134ce248f656545e880", "fields": {"nom_de_la_commune": "HOUX", "libell_d_acheminement": "HOUX", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28195"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d71eba76f97335a846f0a8df448b91f5f568d7", "fields": {"nom_de_la_commune": "JAUDRAIS", "libell_d_acheminement": "JAUDRAIS", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28200"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0a4e344ad1b9381df22a8897d6a2952daeb2b7", "fields": {"nom_de_la_commune": "LA LOUPE", "libell_d_acheminement": "LA LOUPE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28214"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5596cc264f2df708e4c3746f10ceeb0836ad86ae", "fields": {"nom_de_la_commune": "MAINTENON", "libell_d_acheminement": "MAINTENON", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28227"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ff65b26f53c6603b24c377fec079f475465c8e", "fields": {"nom_de_la_commune": "MANOU", "libell_d_acheminement": "MANOU", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28232"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12b236479d698357c89249a41ffa484c389a5ff", "fields": {"nom_de_la_commune": "MARVILLE MOUTIERS BRULE", "libell_d_acheminement": "MARVILLE MOUTIERS BRULE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28239"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c792744cb7ae6baa38e7058653d665cc7e60cd5", "fields": {"nom_de_la_commune": "MEROUVILLE", "libell_d_acheminement": "MEROUVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28243"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1a5801e5f03d10b16670c1417584b3ee96a5fd", "fields": {"nom_de_la_commune": "MIGNIERES", "libell_d_acheminement": "MIGNIERES", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28253"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2713dc123e4facf43724c01a19856e9bfaa4e4", "fields": {"nom_de_la_commune": "MONTIGNY LE CHARTIF", "libell_d_acheminement": "MONTIGNY LE CHARTIF", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28261"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4274789b5880a7f68b0dd870626ef1d28111b5", "fields": {"nom_de_la_commune": "MORANCEZ", "libell_d_acheminement": "MORANCEZ", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28269"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc005f2afd3cd44377a870abfe0b724bdd1decb3", "fields": {"nom_de_la_commune": "MOTTEREAU", "libell_d_acheminement": "MOTTEREAU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28272"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a52ae342fa233671edf6b15a69983f7ecba7e4", "fields": {"nom_de_la_commune": "NERON", "libell_d_acheminement": "NERON", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28275"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46615fd19128aefd92b91cd356c6c4a20a83af3d", "fields": {"nom_de_la_commune": "NEUVY EN BEAUCE", "libell_d_acheminement": "NEUVY EN BEAUCE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28276"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536d53040ec205a35f560189bdee9e465ea956e6", "fields": {"code_postal": "24320", "code_commune_insee": "24303", "libell_d_acheminement": "NANTEUIL AURIAC DE BOURZAC", "ligne_5": "AURIAC DE BOURZAC", "nom_de_la_commune": "NANTEUIL AURIAC DE BOURZAC", "coordonnees_gps": [45.3701841655, 0.369368345584]}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a4bb69f88b1fcf82d0743891222f1339ad34d5", "fields": {"nom_de_la_commune": "NANTHIAT", "libell_d_acheminement": "NANTHIAT", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24305"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d79d1996493c5c2aecf4a65e6aa77dc055a72a7", "fields": {"nom_de_la_commune": "NASTRINGUES", "libell_d_acheminement": "NASTRINGUES", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24306"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e34dafc5315b8c8058dbd40d9e95db12087192", "fields": {"nom_de_la_commune": "NAUSSANNES", "libell_d_acheminement": "NAUSSANNES", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24307"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "550e831af5779ee9270d3bcc4d0491018c48c002", "fields": {"nom_de_la_commune": "NEUVIC", "libell_d_acheminement": "NEUVIC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24309"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524f947906fbca50f0695a4841b7f36395435fc1", "fields": {"nom_de_la_commune": "PAYZAC", "libell_d_acheminement": "PAYZAC", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24320"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4362740aebedac271ed983ac8851e5ad16f5e4e5", "fields": {"nom_de_la_commune": "LE PIZOU", "libell_d_acheminement": "LE PIZOU", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24329"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7cae895449192b0ddce3f8c3bbf0f45c765d574", "fields": {"nom_de_la_commune": "PONTEYRAUD", "libell_d_acheminement": "PONTEYRAUD", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24333"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f951e7f3e6ff31f1f5d24f5f63871c88b68904", "fields": {"nom_de_la_commune": "PRATS DE CARLUX", "libell_d_acheminement": "PRATS DE CARLUX", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24336"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2526b83e52268fec1b67cef31da36dd4245c4c", "fields": {"nom_de_la_commune": "PRATS DU PERIGORD", "libell_d_acheminement": "PRATS DU PERIGORD", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24337"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd25024e1ec5bef32d5ab8068c466b198401f84", "fields": {"nom_de_la_commune": "QUEYSSAC", "libell_d_acheminement": "QUEYSSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24345"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd0d240eb4f54126b961ca75ce3b27d7a3887bf", "fields": {"nom_de_la_commune": "RAZAC D EYMET", "libell_d_acheminement": "RAZAC D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24348"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d1b77a5a04607a760cc2a2194de6ea0538199b", "fields": {"nom_de_la_commune": "RAZAC DE SAUSSIGNAC", "libell_d_acheminement": "RAZAC DE SAUSSIGNAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24349"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c3651cbd33e71f8583f86a01a051839d9134e4", "fields": {"nom_de_la_commune": "RAZAC SUR L ISLE", "libell_d_acheminement": "RAZAC SUR L ISLE", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24350"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3500f6b13078996ce1650de13b71f6974228add", "fields": {"nom_de_la_commune": "LA ROQUE GAGEAC", "libell_d_acheminement": "LA ROQUE GAGEAC", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24355"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a342fd1fcb68cd3c6520fb2442a33ce3a14fc8be", "fields": {"nom_de_la_commune": "SAGELAT", "libell_d_acheminement": "SAGELAT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24360"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d4d7eb178710e0e1983361dc2bb93d514c7ac62", "fields": {"code_postal": "24510", "code_commune_insee": "24362", "libell_d_acheminement": "STE ALVERE ST LAURENT LES BATONS", "ligne_5": "ST LAURENT DES BATONS", "nom_de_la_commune": "STE ALVERE ST LAURENT LES BATONS", "coordonnees_gps": [44.9191872389, 0.791972354919]}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7741510e712d36459b39c6d464f36e732963866c", "fields": {"nom_de_la_commune": "ST AUBIN DE NABIRAT", "libell_d_acheminement": "ST AUBIN DE NABIRAT", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24375"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e39618b7f40661093e2d7cf4e704f7a0c3e5332", "fields": {"nom_de_la_commune": "ST AULAYE PUYMANGOU", "libell_d_acheminement": "ST AULAYE PUYMANGOU", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24376"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c304b37d76a645fe8a6289bea80f1e293216d7b", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE BELLEGARDE", "libell_d_acheminement": "ST BARTHELEMY DE BELLEGARDE", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24380"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6fb812c0b21479eafaa8cc8263fcb6489b9ccb", "fields": {"nom_de_la_commune": "STE CROIX DE MAREUIL", "libell_d_acheminement": "STE CROIX DE MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24394"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0107d798c8d3866c2e06d9276aee549fa4dbbaef", "fields": {"nom_de_la_commune": "ST CYR LES CHAMPAGNES", "libell_d_acheminement": "ST CYR LES CHAMPAGNES", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24397"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4b7dce1f1487b1633c891bbdf8efc245097d6f", "fields": {"nom_de_la_commune": "STE EULALIE D ANS", "libell_d_acheminement": "STE EULALIE D ANS", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24401"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cc0f0977fd027ea708621fa7298c1387827648", "fields": {"nom_de_la_commune": "ST GEORGES BLANCANEIX", "libell_d_acheminement": "ST GEORGES BLANCANEIX", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24413"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1a4959fbf73ba64a207c6e87c5b1aa7ee4f9d1", "fields": {"nom_de_la_commune": "ST GEORGES DE MONTCLARD", "libell_d_acheminement": "ST GEORGES DE MONTCLARD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24414"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ecddd992c9e492402e33c3851f94978d27f069", "fields": {"nom_de_la_commune": "ST GERMAIN DE BELVES", "libell_d_acheminement": "ST GERMAIN DE BELVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24416"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c2c5abc391d6d91815c002fa477eb7907ac3d36", "fields": {"nom_de_la_commune": "ST JEAN D ATAUX", "libell_d_acheminement": "ST JEAN D ATAUX", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24424"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e4e694b67b97ccd41cf8403f7f7cbf25944cc42", "fields": {"nom_de_la_commune": "ST JEAN DE COLE", "libell_d_acheminement": "ST JEAN DE COLE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24425"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0abb3e0f213afb09187fe3f51ffab0d9c26a410b", "fields": {"nom_de_la_commune": "ST JEAN D ESTISSAC", "libell_d_acheminement": "ST JEAN D ESTISSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24426"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0aa3a6a98608592ec63802e6f89b456034bdc97", "fields": {"nom_de_la_commune": "ST JEAN D EYRAUD", "libell_d_acheminement": "ST JEAN D EYRAUD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24427"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f437b9a9d518e0375b4b7ac0462b589a890f8f4d", "fields": {"nom_de_la_commune": "ST JORY LAS BLOUX", "libell_d_acheminement": "ST JORY LAS BLOUX", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24429"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adb6b11563d829b72d388c4141f0e55a2d163f5", "fields": {"nom_de_la_commune": "ST LAURENT LA VALLEE", "libell_d_acheminement": "ST LAURENT LA VALLEE", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24438"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da47bbe5c2caa77e581c949d087fedbf3e7fbc5e", "fields": {"nom_de_la_commune": "ST MARTIN DES COMBES", "libell_d_acheminement": "ST MARTIN DES COMBES", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24456"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671e006e3f17a0f9563b09ba102f667bf844ca4e", "fields": {"nom_de_la_commune": "ST MARTIN LE PIN", "libell_d_acheminement": "ST MARTIN LE PIN", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24458"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd481ee9cad71b510a2187e6fc5a7d733ac09e49", "fields": {"nom_de_la_commune": "ST MEDARD D EXCIDEUIL", "libell_d_acheminement": "ST MEDARD D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24463"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb0c11dd669f1656793d4d08f7cad83bb5f465e", "fields": {"nom_de_la_commune": "ST MICHEL DE MONTAIGNE", "libell_d_acheminement": "ST MICHEL DE MONTAIGNE", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24466"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a80c757580ce68038274fb47d03f0aa94b8286", "fields": {"nom_de_la_commune": "ST PANCRACE", "libell_d_acheminement": "ST PANCRACE", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24474"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6fbf0249bb5f15381bb3ae4523e95cbc8c0653", "fields": {"nom_de_la_commune": "ST PAUL DE SERRE", "libell_d_acheminement": "ST PAUL DE SERRE", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24480"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a3681e35cac9794d40f81d1ec22cf3c67b994e", "fields": {"nom_de_la_commune": "ST PAUL LA ROCHE", "libell_d_acheminement": "ST PAUL LA ROCHE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24481"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb215198170296d9e3cbf00fc0f0c5f44a05ff5", "fields": {"nom_de_la_commune": "ST PIERRE D EYRAUD", "libell_d_acheminement": "ST PIERRE D EYRAUD", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24487"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788e6de14a5915759c5938289dfd228253a63d5b", "fields": {"nom_de_la_commune": "ST POMPONT", "libell_d_acheminement": "ST POMPONT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24488"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159165eba35958bc0c62d2ca6a883a6982fe43e9", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24492"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bcf5a509e8ee3f7874c58ce06f764245c66ee05", "fields": {"nom_de_la_commune": "ST ROMAIN ET ST CLEMENT", "libell_d_acheminement": "ST ROMAIN ET ST CLEMENT", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24496"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fd321efa9541586d8deed3eda45e2ac0fe462f", "fields": {"nom_de_la_commune": "ST SULPICE D EXCIDEUIL", "libell_d_acheminement": "ST SULPICE D EXCIDEUIL", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24505"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee434b8b15a92d5d79a28a76b265fca0b09d2f1", "fields": {"nom_de_la_commune": "ST VINCENT JALMOUTIERS", "libell_d_acheminement": "ST VINCENT JALMOUTIERS", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24511"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb0d4ac31531902597feb7145061f1eedd7ec8e", "fields": {"nom_de_la_commune": "SARLIAC SUR L ISLE", "libell_d_acheminement": "SARLIAC SUR L ISLE", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24521"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad41d8d8b0ba03d86d0ecfd3cd6d877dd5b9c84", "fields": {"nom_de_la_commune": "SAVIGNAC DE NONTRON", "libell_d_acheminement": "SAVIGNAC DE NONTRON", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24525"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec373d619d682a6f85cc3c0b1be5004b059a66da", "fields": {"nom_de_la_commune": "SEGONZAC", "libell_d_acheminement": "SEGONZAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24529"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c6f5c083b28219aa3b370d4e3096002407809e", "fields": {"nom_de_la_commune": "SENCENAC PUY DE FOURCHES", "libell_d_acheminement": "SENCENAC PUY DE FOURCHES", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24530"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76287ef1c9df1ed08d32d4c72a068e5adfd37f7c", "fields": {"nom_de_la_commune": "SINGLEYRAC", "libell_d_acheminement": "SINGLEYRAC", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24536"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925f4ff45f865843b46e19436b4890239b149fd9", "fields": {"nom_de_la_commune": "SORGES ET LIGUEUX EN PERIGORD", "libell_d_acheminement": "SORGES ET LIGUEUX EN PERIGORD", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24540"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9062c9f1bb4417296bc0a0fc16297ef3f133749", "fields": {"nom_de_la_commune": "SOULAURES", "libell_d_acheminement": "SOULAURES", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24542"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be8c003f6f6fdc50dc1449d7aa77414320d23f5", "fields": {"nom_de_la_commune": "THENAC", "libell_d_acheminement": "THENAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24549"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71092a0e3a4e7cda1d7a741e9b580fc575b7475a", "fields": {"nom_de_la_commune": "THONAC", "libell_d_acheminement": "THONAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24552"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2ad5475a9f0f47f5663b6aebc66dfa573d3558", "fields": {"nom_de_la_commune": "TREMOLAT", "libell_d_acheminement": "TREMOLAT", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24558"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c80d83b8f14656f6e8e73d06adf72abb27be183", "fields": {"nom_de_la_commune": "URVAL", "libell_d_acheminement": "URVAL", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24560"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fdb6da481192a319ca74aa2b4aada3624a84dc", "fields": {"nom_de_la_commune": "VALLEREUIL", "libell_d_acheminement": "VALLEREUIL", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24562"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90e90288d6fb3c4f9c4a8dce8a43a95cc18b87f6", "fields": {"nom_de_la_commune": "VELINES", "libell_d_acheminement": "VELINES", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24568"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745bc66e5958ca45b6e789562d399506ab960055", "fields": {"nom_de_la_commune": "VERGT DE BIRON", "libell_d_acheminement": "VERGT DE BIRON", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24572"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02373d61829fa69dc62adab2fd1c6961e2f4710b", "fields": {"nom_de_la_commune": "VERTEILLAC", "libell_d_acheminement": "VERTEILLAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24573"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64ba632d98eb6ea5b2b55b4986a5a0b50748453", "fields": {"nom_de_la_commune": "VILLAC", "libell_d_acheminement": "VILLAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24580"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e23f78bc5163dbfc0c7a57c31f54b64006e7e8a", "fields": {"nom_de_la_commune": "ABBEVILLERS", "libell_d_acheminement": "ABBEVILLERS", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25004"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8035d6d6172502185bf8ea526b70e3e0a6934be6", "fields": {"nom_de_la_commune": "ADAM LES PASSAVANT", "libell_d_acheminement": "ADAM LES PASSAVANT", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25006"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8271420d517d202af9082854854132314d989f7e", "fields": {"nom_de_la_commune": "ALLONDANS", "libell_d_acheminement": "ALLONDANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25013"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa1f3399ad127859ac7b3388585cbb1b7ce53f0", "fields": {"nom_de_la_commune": "AMATHAY VESIGNEUX", "libell_d_acheminement": "AMATHAY VESIGNEUX", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25016"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f124ce88d41c469b378ed27988d5649a998402", "fields": {"nom_de_la_commune": "AMONDANS", "libell_d_acheminement": "AMONDANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25017"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7105c81f3c69fa3836034e209132395ca40f64", "fields": {"nom_de_la_commune": "ARC ET SENANS", "libell_d_acheminement": "ARC ET SENANS", "code_postal": "25610", "coordonnees_gps": [47.0353605141, 5.76972348183], "code_commune_insee": "25021"}, "geometry": {"type": "Point", "coordinates": [5.76972348183, 47.0353605141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9037c704c750ba7b744914d356718903dd95993d", "fields": {"nom_de_la_commune": "ARCON", "libell_d_acheminement": "ARCON", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25024"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5032c0353b555893567cfe62e598fd88a0975b", "fields": {"nom_de_la_commune": "ARC SOUS CICON", "libell_d_acheminement": "ARC SOUS CICON", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25025"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06e88ed7c4b328e950b89cbb29dc6c7f045cf82", "fields": {"nom_de_la_commune": "AUTECHAUX ROIDE", "libell_d_acheminement": "AUTECHAUX ROIDE", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25033"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a49fb6e168e1781c4ba0078ae89cc64ce5969ea", "fields": {"nom_de_la_commune": "AVILLEY", "libell_d_acheminement": "AVILLEY", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25038"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce09367084ac7997b5fb3db2a4fba233a9fd993", "fields": {"nom_de_la_commune": "BAUME LES DAMES", "libell_d_acheminement": "BAUME LES DAMES", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25047"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165034506dd33afba3b4da342092e95730923fd7", "fields": {"nom_de_la_commune": "LE BELIEU", "libell_d_acheminement": "LE BELIEU", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25050"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd9b609eebe1e7000bc891718c4bded47875afb", "fields": {"nom_de_la_commune": "BELLEHERBE", "libell_d_acheminement": "BELLEHERBE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25051"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e67e99058a93dbeb119f298a2152aea74ffcba", "fields": {"nom_de_la_commune": "BERCHE", "libell_d_acheminement": "BERCHE", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25054"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db239666b70c4e488d511a7112acd5a6c1142b00", "fields": {"nom_de_la_commune": "BETHONCOURT", "libell_d_acheminement": "BETHONCOURT", "code_postal": "25200", "coordonnees_gps": [47.5248285421, 6.80015635102], "code_commune_insee": "25057"}, "geometry": {"type": "Point", "coordinates": [6.80015635102, 47.5248285421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27798959c2646b274a7082706082f7b1bffe9859", "fields": {"nom_de_la_commune": "LE BIZOT", "libell_d_acheminement": "LE BIZOT", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25062"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d25d9b76fe278716d3b291a58c127c35a9ec5ae", "fields": {"nom_de_la_commune": "BONNAY", "libell_d_acheminement": "BONNAY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25073"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d6a2c6db80c2c0b8eb674fdeac571f0ee0cef9", "fields": {"nom_de_la_commune": "BONNETAGE", "libell_d_acheminement": "BONNETAGE", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25074"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc458d79222dddeaf3e1bf2c7e49e110b1066e0", "fields": {"nom_de_la_commune": "BONNEVAUX", "libell_d_acheminement": "BONNEVAUX", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25075"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9200ccce9ebb5056ddb78bcf7e7d699f8d587ab1", "fields": {"nom_de_la_commune": "BOURNOIS", "libell_d_acheminement": "BOURNOIS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25083"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f518e3f06de5fe60c4c592af8f57ca0cc8bb95", "fields": {"nom_de_la_commune": "BRANNE", "libell_d_acheminement": "BRANNE", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25087"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c742e205b52fe7e517f5ec0c103377f2a98089", "fields": {"nom_de_la_commune": "BRETIGNEY", "libell_d_acheminement": "BRETIGNEY", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25093"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab56def9762de59e7cc639317d62e3626213f00", "fields": {"nom_de_la_commune": "BRETIGNEY NOTRE DAME", "libell_d_acheminement": "BRETIGNEY NOTRE DAME", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25094"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3d2a067d7b13836cff56fd08ef64243c3d166d", "fields": {"nom_de_la_commune": "BRETONVILLERS", "libell_d_acheminement": "BRETONVILLERS", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25095"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f06be3575c216ba40eb7ba6af3050c068a3b356", "fields": {"code_postal": "25170", "code_commune_insee": "25101", "libell_d_acheminement": "BURGILLE", "ligne_5": "CORDIRON", "nom_de_la_commune": "BURGILLE", "coordonnees_gps": [47.2664378485, 5.83042087003]}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315a30bc8e4c0543a97714b6c7a86ab6d36d3982", "fields": {"nom_de_la_commune": "BYANS SUR DOUBS", "libell_d_acheminement": "BYANS SUR DOUBS", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25105"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c910c8ae9c50341d15e1ab2475fe840f4f78a682", "fields": {"nom_de_la_commune": "GUMIERES", "libell_d_acheminement": "GUMIERES", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42107"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ee79c06c841bc29f91a2049fb5d6c932d5600e", "fields": {"nom_de_la_commune": "L HOPITAL LE GRAND", "libell_d_acheminement": "L HOPITAL LE GRAND", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42108"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44cceb07ca545a1ff469ad674680f76eeea6eaa5", "fields": {"nom_de_la_commune": "LUPE", "libell_d_acheminement": "LUPE", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42124"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6586ea0a94261123622fc82de56a81d8fe9f7209", "fields": {"nom_de_la_commune": "LURIECQ", "libell_d_acheminement": "LURIECQ", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42126"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1779e85cfe83582304d22c459e3d715a4363d4", "fields": {"nom_de_la_commune": "MAGNEUX HAUTE RIVE", "libell_d_acheminement": "MAGNEUX HAUTE RIVE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42130"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c5202fe8ed06f1a74a5ada338031e93e2d8127", "fields": {"nom_de_la_commune": "MARLHES", "libell_d_acheminement": "MARLHES", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42139"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ed31ee84f910c2aee450f4959a58174eabc79d", "fields": {"nom_de_la_commune": "MONTAGNY", "libell_d_acheminement": "MONTAGNY", "code_postal": "42840", "coordonnees_gps": [46.0311905207, 4.23062167861], "code_commune_insee": "42145"}, "geometry": {"type": "Point", "coordinates": [4.23062167861, 46.0311905207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e73664a93e3dd4b38ac7dd50c2e79217e16c9", "fields": {"code_postal": "42600", "code_commune_insee": "42147", "libell_d_acheminement": "MONTBRISON", "ligne_5": "MOINGT", "nom_de_la_commune": "MONTBRISON", "coordonnees_gps": [45.6194255891, 4.06119351589]}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325b12b24a7a748b7b42dfe8ada4f7b3c8900fc9", "fields": {"nom_de_la_commune": "MORNAND EN FOREZ", "libell_d_acheminement": "MORNAND EN FOREZ", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42151"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b009683f5a931db41820652f94511e282ed8e685", "fields": {"nom_de_la_commune": "LES NOES", "libell_d_acheminement": "LES NOES", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42158"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4b3bddc31eb0c93a7afb03e440cd16f99596d5", "fields": {"nom_de_la_commune": "NOTRE DAME DE BOISSET", "libell_d_acheminement": "NOTRE DAME DE BOISSET", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42161"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01599e2097b8a6c90bb340e6d5ba8426c47788a8", "fields": {"nom_de_la_commune": "PALOGNEUX", "libell_d_acheminement": "PALOGNEUX", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42164"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f603ceca002da3e8501caf01fdd80c6e31a9b2", "fields": {"nom_de_la_commune": "PAVEZIN", "libell_d_acheminement": "PAVEZIN", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42167"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223727c2febc882fe8133a0701b854e85ff1bdff", "fields": {"nom_de_la_commune": "ST THIBAUT", "libell_d_acheminement": "ST THIBAUT", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02695"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c07e36f1406afb0cfc94c016f20cb941f646cb3", "fields": {"nom_de_la_commune": "ST EUGENE", "libell_d_acheminement": "ST EUGENE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02677"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c462972c5f09902c980fb5bcfee690c643ccfc", "fields": {"nom_de_la_commune": "SAULCHERY", "libell_d_acheminement": "SAULCHERY", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02701"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ecf351a194339a2c5e8d7d258c64ac7b54eb0e8", "fields": {"nom_de_la_commune": "MONTCOMBROUX LES MINES", "libell_d_acheminement": "MONTCOMBROUX LES MINES", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03181"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd50056eeb63b5dc9a271d816618dc110a3f1a00", "fields": {"nom_de_la_commune": "PIERREFITTE SUR LOIRE", "libell_d_acheminement": "PIERREFITTE SUR LOIRE", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03207"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562859b2b24636efbd4e9cb358db99cabae94b84", "fields": {"nom_de_la_commune": "NEUILLY EN DONJON", "libell_d_acheminement": "NEUILLY EN DONJON", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03196"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ec74e0b2fb2d0960ece8b10a3c6fc5facf8056", "fields": {"nom_de_la_commune": "NASSIGNY", "libell_d_acheminement": "NASSIGNY", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03193"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9e8d7f40483dbb0329f52b0accc388e82bafbf", "fields": {"nom_de_la_commune": "MAZERIER", "libell_d_acheminement": "MAZERIER", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03166"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00018f0d0d48929d23d91683fd6d99d2b73010fe", "fields": {"nom_de_la_commune": "ROCLES", "libell_d_acheminement": "ROCLES", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03214"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eeb33762d2388e5a79ae33c9aab193f3b2eb516", "fields": {"nom_de_la_commune": "POEZAT", "libell_d_acheminement": "POEZAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03209"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b23fea05f9498a5122e89efa45b31b438ace37", "fields": {"nom_de_la_commune": "ST MARTIN DU TILLEUL", "libell_d_acheminement": "ST MARTIN DU TILLEUL", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27569"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba8d4b8a358b3df2c5ed1da76608bda0af28a7f", "fields": {"nom_de_la_commune": "ST MARTIN ST FIRMIN", "libell_d_acheminement": "ST MARTIN ST FIRMIN", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27571"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e64cb96b0154ce6a369bd64b6b34c3bf361423c0", "fields": {"nom_de_la_commune": "ST MESLIN DU BOSC", "libell_d_acheminement": "ST MESLIN DU BOSC", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27572"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50edbcf309d955b8d14fccfe6b34a6c0fb96375a", "fields": {"nom_de_la_commune": "ST OUEN DE THOUBERVILLE", "libell_d_acheminement": "ST OUEN DE THOUBERVILLE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27580"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681de17a3f6f2bbeea52a6763608e9a23a5ede65", "fields": {"nom_de_la_commune": "ST PHILBERT SUR RISLE", "libell_d_acheminement": "ST PHILBERT SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27587"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6a50e89f98a4f7240182953d75030c3c6d7f92", "fields": {"nom_de_la_commune": "ST PIERRE DU VAL", "libell_d_acheminement": "ST PIERRE DU VAL", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27597"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b425802b1ecb5b9a4dd388502b7bae2ca68e0b5f", "fields": {"nom_de_la_commune": "ST SYLVESTRE DE CORMEILLES", "libell_d_acheminement": "ST SYLVESTRE DE CORMEILLES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27605"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc127ec2388768f538f38767f372143f1d9e0a8c", "fields": {"nom_de_la_commune": "ST THURIEN", "libell_d_acheminement": "ST THURIEN", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27607"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d949adec71da0b2c9eb54b8b7fad5d3a3e0cc51", "fields": {"nom_de_la_commune": "SANCOURT", "libell_d_acheminement": "SANCOURT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27614"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4625f88adb82b43382d91c1357ef6b8f47fae8ac", "fields": {"nom_de_la_commune": "SAUSSAY LA CAMPAGNE", "libell_d_acheminement": "SAUSSAY LA CAMPAGNE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27617"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a94ec0d114136bd9fad2b5375c234438ca760f7", "fields": {"nom_de_la_commune": "SEREZ", "libell_d_acheminement": "SEREZ", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27621"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00586362c250ae02e6e04eff0b0fdb95c5e9c38", "fields": {"nom_de_la_commune": "SURTAUVILLE", "libell_d_acheminement": "SURTAUVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27623"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d94155004ab3a8f6d31874de7c20133c1f22558", "fields": {"nom_de_la_commune": "SURVILLE", "libell_d_acheminement": "SURVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27624"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c262adc9ef0490f752560078829ce6bd473e7afd", "fields": {"nom_de_la_commune": "LE THUIT DE L OISON", "libell_d_acheminement": "LE THUIT DE L OISON", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27638"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d52d5cd4ad419cdaf67deff9c06181f48377926", "fields": {"nom_de_la_commune": "TILLEUL DAME AGNES", "libell_d_acheminement": "TILLEUL DAME AGNES", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27640"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e44356f25954424f0e17f5582dacfbcf4ea4401", "fields": {"nom_de_la_commune": "TOCQUEVILLE", "libell_d_acheminement": "TOCQUEVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27645"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0aaace63c5c85e1df996d112b5623fc89cd481f", "fields": {"nom_de_la_commune": "TOURNEDOS SUR SEINE", "libell_d_acheminement": "TOURNEDOS SUR SEINE", "code_postal": "27100", "coordonnees_gps": [49.2628287582, 1.2134503663], "code_commune_insee": "27651"}, "geometry": {"type": "Point", "coordinates": [1.2134503663, 49.2628287582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05560c75a674057abcfabebba40924bd5ade01a2", "fields": {"nom_de_la_commune": "TOURNEVILLE", "libell_d_acheminement": "TOURNEVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27652"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f328796daf9672ecf9313e40981a02a6b27251d", "fields": {"nom_de_la_commune": "LA TRINITE DE REVILLE", "libell_d_acheminement": "LA TRINITE DE REVILLE", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27660"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bddbc5a6c6c1ab1f9af30416e5ff014d6a75a5d0", "fields": {"nom_de_la_commune": "VENON", "libell_d_acheminement": "VENON", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27677"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c90391cac9db5d7886111b79a5f505f8ec2dbc", "fields": {"nom_de_la_commune": "LES VENTES", "libell_d_acheminement": "LES VENTES", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27678"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bbeda54115c98c5abd4faba5889b9116fa96d6f", "fields": {"nom_de_la_commune": "VILLERS SUR LE ROULE", "libell_d_acheminement": "VILLERS SUR LE ROULE", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27691"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e594355e0f60dae45b1b0ec95911b9085f3c020a", "fields": {"nom_de_la_commune": "VITOT", "libell_d_acheminement": "VITOT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27698"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18bb0b9e6a4f3d24162662db39f8478b1ddbc67", "fields": {"nom_de_la_commune": "ARROU", "libell_d_acheminement": "ARROU", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28012"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39286858457b62bed8ef4f1a5cc6b85d15a18751", "fields": {"nom_de_la_commune": "AUNAY SOUS CRECY", "libell_d_acheminement": "AUNAY SOUS CRECY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28014"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6716f7cf5ce02e70ac33dd6874ae0654bb20660f", "fields": {"nom_de_la_commune": "AUTHEUIL", "libell_d_acheminement": "AUTHEUIL", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28017"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec10558144fdf6e45b9584bbdb2e26541331d00", "fields": {"nom_de_la_commune": "BAILLEAU LE PIN", "libell_d_acheminement": "BAILLEAU LE PIN", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28021"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e605f431f4cdba6f45225f9c90e57ea97c95807", "fields": {"nom_de_la_commune": "BAILLEAU ARMENONVILLE", "libell_d_acheminement": "BAILLEAU ARMENONVILLE", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28023"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32cd4a13b8d81b1c37caea08e4e77b6af41527bc", "fields": {"nom_de_la_commune": "BERCHERES SUR VESGRE", "libell_d_acheminement": "BERCHERES SUR VESGRE", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28036"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3fe936be264aa4631da40aacde9503e825b54e", "fields": {"nom_de_la_commune": "BILLANCELLES", "libell_d_acheminement": "BILLANCELLES", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28040"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af03553c351c3f56a58c54bb028a9e71ce4a4d0a", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28050"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e8391604efdaa5d4003491544b1b0cea0e27b1", "fields": {"nom_de_la_commune": "LE BOULLAY LES DEUX EGLISES", "libell_d_acheminement": "LE BOULLAY LES DEUX EGLISES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28053"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093abf00eb41c94f12b1ce129de95ad2208b557b", "fields": {"nom_de_la_commune": "BOUVILLE", "libell_d_acheminement": "BOUVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28057"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3291f93530a2a1801037fa8f2e5f11755456c7", "fields": {"nom_de_la_commune": "CHAMPHOL", "libell_d_acheminement": "CHAMPHOL", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28070"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33729e541a0cad2ed778a507a8d817427d23d94b", "fields": {"nom_de_la_commune": "LA CHAPELLE DU NOYER", "libell_d_acheminement": "LA CHAPELLE DU NOYER", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28075"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f630112108b1ba0a451e0f28769b8eac00d0975", "fields": {"nom_de_la_commune": "CHARONVILLE", "libell_d_acheminement": "CHARONVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28081"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b270de0bca49af96711f8106da314b838d165d", "fields": {"nom_de_la_commune": "CHARTAINVILLIERS", "libell_d_acheminement": "CHARTAINVILLIERS", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28084"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c1e90cd0d8abe96f59efdfc5c4cbc4c6e187ac", "fields": {"nom_de_la_commune": "CHARTRES", "libell_d_acheminement": "CHARTRES", "code_postal": "28000", "coordonnees_gps": [48.4472286537, 1.50557775943], "code_commune_insee": "28085"}, "geometry": {"type": "Point", "coordinates": [1.50557775943, 48.4472286537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73448268001d519172425ea464800366086d9aea", "fields": {"nom_de_la_commune": "CHASSANT", "libell_d_acheminement": "CHASSANT", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28086"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ac54b66798d117dc6295e0c1000e3964c92444", "fields": {"nom_de_la_commune": "LES CHATELETS", "libell_d_acheminement": "LES CHATELETS", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28090"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f001a14278f7b66f74e08f1a5b0fbae07786ba1", "fields": {"nom_de_la_commune": "COLTAINVILLE", "libell_d_acheminement": "COLTAINVILLE", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28104"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e99169626a8cb8b8b4069c17a2c5da3676f9bb0", "fields": {"nom_de_la_commune": "COULOMBS", "libell_d_acheminement": "COULOMBS", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28113"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56d0a48fec8155f0bdbb2529c7208285eba4811", "fields": {"nom_de_la_commune": "COURBEHAYE", "libell_d_acheminement": "COURBEHAYE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28114"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "774af5282a10b43fb4d5da499380e8fa74e6371d", "fields": {"nom_de_la_commune": "COURTALAIN", "libell_d_acheminement": "COURTALAIN", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28115"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f205c897d7e8751467b4617bacf5afda8a4b52d", "fields": {"nom_de_la_commune": "COURVILLE SUR EURE", "libell_d_acheminement": "COURVILLE SUR EURE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28116"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24154515944d01fb1376c3af0cbd538d504c63cd", "fields": {"nom_de_la_commune": "CRECY COUVE", "libell_d_acheminement": "CRECY COUVE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28117"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ed05db4a0e760c403c275ec687bacc0af2dac0", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28118"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c74a403f11a660c51d6a866b484cfeb4d9c5aa", "fields": {"code_postal": "28270", "code_commune_insee": "28120", "libell_d_acheminement": "CRUCEY VILLAGES", "ligne_5": "MAINTERNE", "nom_de_la_commune": "CRUCEY VILLAGES", "coordonnees_gps": [48.6934411697, 1.0846058718]}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc21df478ffb01d3851bcb2685f68e48ea20b37", "fields": {"nom_de_la_commune": "DENONVILLE", "libell_d_acheminement": "DENONVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28129"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "868de911199d0048a6e9ffbe58c447cb9ba8f449", "fields": {"nom_de_la_commune": "DREUX", "libell_d_acheminement": "DREUX", "code_postal": "28100", "coordonnees_gps": [48.7484318093, 1.36004109115], "code_commune_insee": "28134"}, "geometry": {"type": "Point", "coordinates": [1.36004109115, 48.7484318093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94a736b9415137e5240c20932faaffd094277e2d", "fields": {"nom_de_la_commune": "EPERNON", "libell_d_acheminement": "EPERNON", "code_postal": "28230", "coordonnees_gps": [48.5972768911, 1.69206934612], "code_commune_insee": "28140"}, "geometry": {"type": "Point", "coordinates": [1.69206934612, 48.5972768911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c4d54654355ceb04407d78c845dc861bbfd713", "fields": {"nom_de_la_commune": "FESSANVILLIERS MATTANVILLIERS", "libell_d_acheminement": "FESSANVILLIERS MATTANVILLIERS", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28151"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e136fe02fb07f7d6fb1407c7d734b59c6521e186", "fields": {"nom_de_la_commune": "FONTAINE LA GUYON", "libell_d_acheminement": "FONTAINE LA GUYON", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28154"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2a09889d9c9750fa75fecf224778a9bc469527", "fields": {"nom_de_la_commune": "FONTENAY SUR EURE", "libell_d_acheminement": "FONTENAY SUR EURE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28158"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e7202d9592717d8c2b64d2e79244f2470b2d6e5", "fields": {"code_postal": "28320", "code_commune_insee": "28168", "libell_d_acheminement": "GALLARDON", "ligne_5": "MONTLOUET", "nom_de_la_commune": "GALLARDON", "coordonnees_gps": [48.5411997507, 1.69133759252]}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd190fe21e5ba430b8864a7c4d8d26dec701c001", "fields": {"nom_de_la_commune": "GARNAY", "libell_d_acheminement": "GARNAY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28171"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964022302a89b4393e09d0fe133be8c0990cf50a", "fields": {"nom_de_la_commune": "GAS", "libell_d_acheminement": "GAS", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28172"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea52a850adca0df82cd32fa2d642e118205541a", "fields": {"nom_de_la_commune": "LE GAULT ST DENIS", "libell_d_acheminement": "LE GAULT ST DENIS", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28176"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a9c1bd1b9f5e4fddc72377ac75eb06fdac2db9", "fields": {"nom_de_la_commune": "GELLAINVILLE", "libell_d_acheminement": "GELLAINVILLE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28177"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8050f14ac7c8c7c78812418bf998100fb85142ea", "fields": {"nom_de_la_commune": "GOMMERVILLE", "libell_d_acheminement": "GOMMERVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28183"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec31aba7849d376914dd6f69a384e73d88a9bfe", "fields": {"nom_de_la_commune": "GOUILLONS", "libell_d_acheminement": "GOUILLONS", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28184"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02490f1f2cd14fd7fea919d239453948f544c077", "fields": {"nom_de_la_commune": "GUILLEVILLE", "libell_d_acheminement": "GUILLEVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28189"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4742e9d0ac10c08e3004b7b5d2ffbba9a31ef492", "fields": {"nom_de_la_commune": "HAPPONVILLIERS", "libell_d_acheminement": "HAPPONVILLIERS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28192"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c93d1a78ae2dd9955f7ac5739dad90a191a6e6", "fields": {"nom_de_la_commune": "JALLANS", "libell_d_acheminement": "JALLANS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28198"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34696885f32837c35052451c4679caca54564404", "fields": {"nom_de_la_commune": "JANVILLE", "libell_d_acheminement": "JANVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28199"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959618bc1b6beafdbc8c29839a407f29d3004c42", "fields": {"nom_de_la_commune": "LETHUIN", "libell_d_acheminement": "LETHUIN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28207"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84511dfb462a4ad5f8870bc8e09be6be58ee9640", "fields": {"nom_de_la_commune": "LEVAINVILLE", "libell_d_acheminement": "LEVAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28208"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a212367c8f1cbf2a41298ec50e9bcea837904f79", "fields": {"nom_de_la_commune": "LOUVILLIERS EN DROUAIS", "libell_d_acheminement": "LOUVILLIERS EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28216"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3b0de9d70f49e59ac74b3143aad75446b6f48d9", "fields": {"nom_de_la_commune": "LUCE", "libell_d_acheminement": "LUCE", "code_postal": "28110", "coordonnees_gps": [48.4348199169, 1.45309110629], "code_commune_insee": "28218"}, "geometry": {"type": "Point", "coordinates": [1.45309110629, 48.4348199169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6244f63f37714b4e6677b0e0842c9435a341be51", "fields": {"nom_de_la_commune": "LUMEAU", "libell_d_acheminement": "LUMEAU", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28221"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f4e0316b7f670b5ffdb14176b142e340109e63", "fields": {"nom_de_la_commune": "LUPLANTE", "libell_d_acheminement": "LUPLANTE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28222"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2d407667aa94d693a13166298badeb3a117d67", "fields": {"nom_de_la_commune": "MAGNY", "libell_d_acheminement": "MAGNY", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28225"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f059ef619a09bacf35a2ecc60a37373f75d9d7a", "fields": {"nom_de_la_commune": "MAILLEBOIS", "libell_d_acheminement": "MAILLEBOIS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28226"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa029057f486bf20d65309ce367da082e828e20f", "fields": {"code_postal": "28170", "code_commune_insee": "28226", "libell_d_acheminement": "MAILLEBOIS", "ligne_5": "BLEVY", "nom_de_la_commune": "MAILLEBOIS", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8007634b5ad0e200c2622d370203f29d5bc80a2b", "fields": {"nom_de_la_commune": "MAINVILLIERS", "libell_d_acheminement": "MAINVILLIERS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28229"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9a6dedc872f8b82a1f0f92dc5e9e7c53f17572", "fields": {"nom_de_la_commune": "MAISONS", "libell_d_acheminement": "MAISONS", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28230"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce13de268153699e642f5fede1db2d0052eeeba2", "fields": {"nom_de_la_commune": "MARCHEVILLE", "libell_d_acheminement": "MARCHEVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28234"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd61146f9fb2aa92cf7988a25efd498d64081ca", "fields": {"nom_de_la_commune": "MEREGLISE", "libell_d_acheminement": "MEREGLISE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28242"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f536b3ace85f2a6005fdd06c9c651155f22eed91", "fields": {"nom_de_la_commune": "LE MESNIL THOMAS", "libell_d_acheminement": "LE MESNIL THOMAS", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28248"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a686e209d144957e7df31d1c25b651ee3a4d22", "fields": {"nom_de_la_commune": "MEZIERES AU PERCHE", "libell_d_acheminement": "MEZIERES AU PERCHE", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28250"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cb23ca29ee04f342c70a3731516fb875f1097f", "fields": {"nom_de_la_commune": "MEZIERES EN DROUAIS", "libell_d_acheminement": "MEZIERES EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28251"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58765ec2dc9fb5b1d4ae81a40d393b4a2162cc45", "fields": {"nom_de_la_commune": "MOLEANS", "libell_d_acheminement": "MOLEANS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28256"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992dfbbbec4a1c0e7f9c80629593f6aafe5dac28", "fields": {"nom_de_la_commune": "MONTBOISSIER", "libell_d_acheminement": "MONTBOISSIER", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28259"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce091072c4c47bac503c5c86e3ce00f55d8eac93", "fields": {"nom_de_la_commune": "NOGENT LE PHAYE", "libell_d_acheminement": "NOGENT LE PHAYE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28278"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe992229d7edccef0eb9d9e99236f2eb4153c52", "fields": {"code_postal": "28210", "code_commune_insee": "28279", "libell_d_acheminement": "NOGENT LE ROI", "ligne_5": "VACHERESSES LES BASSES", "nom_de_la_commune": "NOGENT LE ROI", "coordonnees_gps": [48.6496934928, 1.50829757585]}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15cae0c9e1f488849765aa0012ed29e60534e0b", "fields": {"nom_de_la_commune": "NOTTONVILLE", "libell_d_acheminement": "NOTTONVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28283"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01032eb371b844e2b0ab3083858862eb1274e2f4", "fields": {"nom_de_la_commune": "OUARVILLE", "libell_d_acheminement": "OUARVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28291"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8060120048fe9887b8e22f8d116fdc46ecd08ef4", "fields": {"nom_de_la_commune": "OZOIR LE BREUIL", "libell_d_acheminement": "OZOIR LE BREUIL", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28295"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f3f79c25d051fe3a50d760768198710d4d24047", "fields": {"nom_de_la_commune": "POISVILLIERS", "libell_d_acheminement": "POISVILLIERS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28301"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bed8046b7dafcc08f5afee79a4a306063dfc72a", "fields": {"nom_de_la_commune": "PRASVILLE", "libell_d_acheminement": "PRASVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28304"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c321a348e00337dce13723cf1960a460c4c8cc", "fields": {"nom_de_la_commune": "GEMOZAC", "libell_d_acheminement": "GEMOZAC", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17172"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cacd459502d59ef8e0e5971df60af20dc4efc9e6", "fields": {"nom_de_la_commune": "LA JARNE", "libell_d_acheminement": "LA JARNE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17193"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e172a49fe74d726d2c56653932ab63781f17834", "fields": {"nom_de_la_commune": "JAZENNES", "libell_d_acheminement": "JAZENNES", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17196"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048436069b11798691a71ee45e9fd75e511acd0c", "fields": {"nom_de_la_commune": "LAGORD", "libell_d_acheminement": "LAGORD", "code_postal": "17140", "coordonnees_gps": [46.1866834559, -1.15273602201], "code_commune_insee": "17200"}, "geometry": {"type": "Point", "coordinates": [-1.15273602201, 46.1866834559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74155daf7d263faa7dd2fb1d21308c99908f4d28", "fields": {"nom_de_la_commune": "LANDRAIS", "libell_d_acheminement": "LANDRAIS", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17203"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20bd3058a733e768536c9847157e0a914c99e42", "fields": {"nom_de_la_commune": "LOIRE SUR NIE", "libell_d_acheminement": "LOIRE SUR NIE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17206"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c60bbfff81200eb61070622717664c8bab561fe", "fields": {"nom_de_la_commune": "LONGEVES", "libell_d_acheminement": "LONGEVES", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17208"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c4e3e475ab42257454b1f2b99b5bb8b6c8e500", "fields": {"nom_de_la_commune": "MIGRON", "libell_d_acheminement": "MIGRON", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17235"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3d7ba43ee07b9783fa0b42caefde7882b0aa81", "fields": {"code_postal": "17130", "code_commune_insee": "17240", "libell_d_acheminement": "MONTENDRE", "ligne_5": "VALLET", "nom_de_la_commune": "MONTENDRE", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47cda05009953ea779204c7a08b7785fcd436e14", "fields": {"nom_de_la_commune": "MONTILS", "libell_d_acheminement": "MONTILS", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17242"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf4300b3723b22c75a2af2f9e7a8ce29750af6e", "fields": {"nom_de_la_commune": "MONTPELLIER DE MEDILLAN", "libell_d_acheminement": "MONTPELLIER DE MEDILLAN", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17244"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a158d70fe77d1ebb0f4eaa8b7b5c3928ecb4ff", "fields": {"nom_de_la_commune": "MOSNAC", "libell_d_acheminement": "MOSNAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17250"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437c4b52400df8a346b35034c06f7975e96d7da4", "fields": {"nom_de_la_commune": "NANCRAS", "libell_d_acheminement": "NANCRAS", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17255"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8215fa867b800fa71a8a49bd235e2d32bec9a9e", "fields": {"nom_de_la_commune": "NERE", "libell_d_acheminement": "NERE", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17257"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9bfeff936877d113fec5745440ae93cdd6bf62", "fields": {"nom_de_la_commune": "NIEUL LES SAINTES", "libell_d_acheminement": "NIEUL LES SAINTES", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17262"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c89afe154f0596b7eb211df488f326a798542610", "fields": {"nom_de_la_commune": "NIEUL LE VIROUIL", "libell_d_acheminement": "NIEUL LE VIROUIL", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17263"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b36714f9e97bbe9f2e0c33ab50cca2d6ec45672", "fields": {"nom_de_la_commune": "PISANY", "libell_d_acheminement": "PISANY", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17278"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aad70ce038a0472e9ae85e5b4472f7c7eb6fe71", "fields": {"nom_de_la_commune": "PREGUILLAC", "libell_d_acheminement": "PREGUILLAC", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17289"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3f0c6bf930d40dc4bca3617b38b63c27f9d546a", "fields": {"nom_de_la_commune": "PUYRAVAULT", "libell_d_acheminement": "PUYRAVAULT", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17293"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1e53020fa17d7c940fe6d7013fed06ed579d29", "fields": {"nom_de_la_commune": "RIVEDOUX PLAGE", "libell_d_acheminement": "RIVEDOUX PLAGE", "code_postal": "17940", "coordonnees_gps": [46.1591322925, -1.28378217941], "code_commune_insee": "17297"}, "geometry": {"type": "Point", "coordinates": [-1.28378217941, 46.1591322925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65499dc492e75a53d4174c5c5d3eb22e5d2adcb0", "fields": {"nom_de_la_commune": "ST BRIS DES BOIS", "libell_d_acheminement": "ST BRIS DES BOIS", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17313"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa0129179d67f65e1b5aca169fa1145fcccd958", "fields": {"nom_de_la_commune": "ST CREPIN", "libell_d_acheminement": "ST CREPIN", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17321"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caef90881e243f97d3ef6e805f8464d8b3bf1f8c", "fields": {"nom_de_la_commune": "ST CYR DU DORET", "libell_d_acheminement": "ST CYR DU DORET", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17322"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30a80e0af8f8aa1d0128df6c3882e06ec17135ca", "fields": {"nom_de_la_commune": "ST DENIS D OLERON", "libell_d_acheminement": "ST DENIS D OLERON", "code_postal": "17650", "coordonnees_gps": [46.0245582667, -1.38697941463], "code_commune_insee": "17323"}, "geometry": {"type": "Point", "coordinates": [-1.38697941463, 46.0245582667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a63661081c7b2cbb3ab41400e14764487c3af47", "fields": {"nom_de_la_commune": "ST FROULT", "libell_d_acheminement": "ST FROULT", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17329"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b193ca893c660713bcbe7b1ac8efe217ed30723", "fields": {"nom_de_la_commune": "ST GENIS DE SAINTONGE", "libell_d_acheminement": "ST GENIS DE SAINTONGE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17331"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c732bd5803e5174fa3ef9feb221122602b85eeb", "fields": {"nom_de_la_commune": "ST GEORGES ANTIGNAC", "libell_d_acheminement": "ST GEORGES ANTIGNAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17332"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40950abe1b94302699d84930f30bbfb70de01e4e", "fields": {"nom_de_la_commune": "ST GEORGES DES COTEAUX", "libell_d_acheminement": "ST GEORGES DES COTEAUX", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17336"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed39425068b75b3537770e2d42ade57028230a75", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "CHAUCRE", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "550a24a0ec1562dc69f267c7b10535045a952692", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "SAUZELLE", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75180601f998666f03701ac1bcb0ad758067ce1", "fields": {"nom_de_la_commune": "ST GERMAIN DU SEUDRE", "libell_d_acheminement": "ST GERMAIN DU SEUDRE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17342"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae780f4977742761ee4351229cb24d84c668c6d", "fields": {"nom_de_la_commune": "ST HILAIRE DE VILLEFRANCHE", "libell_d_acheminement": "ST HILAIRE DE VILLEFRANCHE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17344"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ccdd982f1407082b5ce834bf7619cea78962eaa", "fields": {"nom_de_la_commune": "ST JEAN D ANGELY", "libell_d_acheminement": "ST JEAN D ANGELY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17347"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7819dc0400a254e4540baa6dc9744e244d923d4", "fields": {"nom_de_la_commune": "ST MAIGRIN", "libell_d_acheminement": "ST MAIGRIN", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17357"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcc2a5182fba856c380e58e50ea2b7c1c7389b6", "fields": {"nom_de_la_commune": "ST MANDE SUR BREDOIRE", "libell_d_acheminement": "ST MANDE SUR BREDOIRE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17358"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94100f61fe622831527cd6bc3281e5e455918df6", "fields": {"nom_de_la_commune": "STE MARIE DE RE", "libell_d_acheminement": "STE MARIE DE RE", "code_postal": "17740", "coordonnees_gps": [46.1562709439, -1.32156428166], "code_commune_insee": "17360"}, "geometry": {"type": "Point", "coordinates": [-1.32156428166, 46.1562709439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f1b4408451dcf7bd7c1c2e03c3129d43f90ddaa", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17372"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa995da82e5e95e3f4c879e75cdd267b45c15c1", "fields": {"nom_de_la_commune": "ST PALAIS DE PHIOLIN", "libell_d_acheminement": "ST PALAIS DE PHIOLIN", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17379"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bb2ebeb3e3b22d48f0b5fecabdc6cbc9891b03", "fields": {"nom_de_la_commune": "ST ROGATIEN", "libell_d_acheminement": "ST ROGATIEN", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17391"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b160030c3d9bf5f6ef64a35cbc4ba2625794ca", "fields": {"nom_de_la_commune": "ST SEVER DE SAINTONGE", "libell_d_acheminement": "ST SEVER DE SAINTONGE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17400"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d367d0c75847e7b21ff346dca1816ca63e7ac9e9", "fields": {"nom_de_la_commune": "ST SEVERIN SUR BOUTONNE", "libell_d_acheminement": "ST SEVERIN SUR BOUTONNE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17401"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4689a8810286bdcdfc4892b4d8123d00f6eb5a4", "fields": {"nom_de_la_commune": "ST SIMON DE BORDES", "libell_d_acheminement": "ST SIMON DE BORDES", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17403"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c24da86da4082e60e976e5d59e456986ab09446", "fields": {"nom_de_la_commune": "ST SORNIN", "libell_d_acheminement": "ST SORNIN", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17406"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b09b56b05befc91e8910ede7c7c74432ee0b32", "fields": {"code_postal": "17220", "code_commune_insee": "17407", "libell_d_acheminement": "STE SOULLE", "ligne_5": "LES GRANDES RIVIERES", "nom_de_la_commune": "STE SOULLE", "coordonnees_gps": [46.1421522644, -1.01138171467]}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef3132679ba8d26aa42dd226075469b2d6066ce8", "fields": {"nom_de_la_commune": "SALEIGNES", "libell_d_acheminement": "SALEIGNES", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17416"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "278141184aefc2a5b5ee982c60ec406bf1a4b877", "fields": {"nom_de_la_commune": "SALLES SUR MER", "libell_d_acheminement": "SALLES SUR MER", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17420"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f2412848bedcad6774a9b97492d478bfcfe650", "fields": {"nom_de_la_commune": "SAUJON", "libell_d_acheminement": "SAUJON", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17421"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a063e92f93c23464cc0aecbdf1c9ff7b47364263", "fields": {"nom_de_la_commune": "SEMILLAC", "libell_d_acheminement": "SEMILLAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17423"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ae0ab8ed72c88e9a015f1d473a9f6e26ea356e", "fields": {"nom_de_la_commune": "SEMUSSAC", "libell_d_acheminement": "SEMUSSAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17425"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa3759bf3bb4776f21742c9fa7e102d62e41399", "fields": {"nom_de_la_commune": "SONNAC", "libell_d_acheminement": "SONNAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17428"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f923f728dbe81377b4339812e5ce436480d56737", "fields": {"nom_de_la_commune": "TAILLANT", "libell_d_acheminement": "TAILLANT", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17435"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783f1094cc815834c6a0e7f84eb7b7933fda132d", "fields": {"nom_de_la_commune": "TAILLEBOURG", "libell_d_acheminement": "TAILLEBOURG", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17436"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e95a00959ffa39a08ddc8f5f827ffbce8dedfab", "fields": {"nom_de_la_commune": "TERNANT", "libell_d_acheminement": "TERNANT", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17440"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f437720c8781125afc05f164ba1d716090756e21", "fields": {"nom_de_la_commune": "THEZAC", "libell_d_acheminement": "THEZAC", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17445"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f4b77bc225e40be1c9540aebbd5a825b87785b", "fields": {"nom_de_la_commune": "LA TREMBLADE", "libell_d_acheminement": "LA TREMBLADE", "code_postal": "17390", "coordonnees_gps": [45.7593024584, -1.1913464058], "code_commune_insee": "17452"}, "geometry": {"type": "Point", "coordinates": [-1.1913464058, 45.7593024584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebaa66c1fa225eb805be13fa31e5c7d7487c70ed", "fields": {"code_postal": "17390", "code_commune_insee": "17452", "libell_d_acheminement": "LA TREMBLADE", "ligne_5": "RONCE LES BAINS", "nom_de_la_commune": "LA TREMBLADE", "coordonnees_gps": [45.7593024584, -1.1913464058]}, "geometry": {"type": "Point", "coordinates": [-1.1913464058, 45.7593024584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a9c7bb507958d21bbdaf943e7784e8b7ad17fc", "fields": {"nom_de_la_commune": "TRIZAY", "libell_d_acheminement": "TRIZAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17453"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f57b27010150cf4df4f07308f8f0761eda8d8f2", "fields": {"nom_de_la_commune": "LA VALLEE", "libell_d_acheminement": "LA VALLEE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17455"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f243d118eaf5b29e9bfed009e36519cbb52e38ac", "fields": {"nom_de_la_commune": "VANDRE", "libell_d_acheminement": "VANDRE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17457"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0fc5b40093414fedd6e6f5c8d2545d999050d02", "fields": {"nom_de_la_commune": "LA VERGNE", "libell_d_acheminement": "LA VERGNE", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17465"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a237880dd98bf72ce1cce5cdf16d415b56ca21d8", "fields": {"nom_de_la_commune": "VILLARS EN PONS", "libell_d_acheminement": "VILLARS EN PONS", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17469"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb881a16ddbea75cda0c767541a7e79f7a1de292", "fields": {"nom_de_la_commune": "VILLIERS COUTURE", "libell_d_acheminement": "VILLIERS COUTURE", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17477"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd66e557ad1bfe6bac4501d807e3385004d20b38", "fields": {"nom_de_la_commune": "VINAX", "libell_d_acheminement": "VINAX", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17478"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedaacb244b7efb3ef752bd1cc364c2c1ea86aff", "fields": {"nom_de_la_commune": "YVES", "libell_d_acheminement": "YVES", "code_postal": "17340", "coordonnees_gps": [46.0464260547, -1.04444906455], "code_commune_insee": "17483"}, "geometry": {"type": "Point", "coordinates": [-1.04444906455, 46.0464260547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382e1c2444f5cc980ea27012bffe23876966d4f4", "fields": {"nom_de_la_commune": "ACHERES", "libell_d_acheminement": "ACHERES", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18001"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ffa0e1699ead856e53349f00eaba25fa9099a2", "fields": {"nom_de_la_commune": "LES AIX D ANGILLON", "libell_d_acheminement": "LES AIX D ANGILLON", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18003"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7cfaf1e2b84ae73cf715f54a275b76d17e098c4", "fields": {"nom_de_la_commune": "BANNEGON", "libell_d_acheminement": "BANNEGON", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18021"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7b283d098355a10678f8ffef80a0126e414538", "fields": {"nom_de_la_commune": "BEFFES", "libell_d_acheminement": "BEFFES", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18025"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1133c4f62f8b58a0bb0ca01fa3bac912f7307cc2", "fields": {"nom_de_la_commune": "BOULLERET", "libell_d_acheminement": "BOULLERET", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18032"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72764cf8c5aaf05a65ab712a4102a6918664977", "fields": {"nom_de_la_commune": "BUSSY", "libell_d_acheminement": "BUSSY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18040"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f783f2cfc87e1ffbbd3dc4bb2edda1fb01143010", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18042"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c01f90f5b9251fd0e961f5f841a058dbdb94a94", "fields": {"nom_de_la_commune": "LA CHAPELLE HUGON", "libell_d_acheminement": "LA CHAPELLE HUGON", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18048"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae858be90c98ae7624e9cd33a9959de39b70c162", "fields": {"nom_de_la_commune": "LA CHAPELOTTE", "libell_d_acheminement": "LA CHAPELOTTE", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18051"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6945d5500d4627a432b35d2aed2e74846cceab", "fields": {"nom_de_la_commune": "CHAVANNES", "libell_d_acheminement": "CHAVANNES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18063"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5f89bcbdf571e47dc384b49672bce42deedd2a", "fields": {"nom_de_la_commune": "CIVRAY", "libell_d_acheminement": "CIVRAY", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18066"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a4f48b05cc6704dcac2ad080d7adc212e6313a", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18069"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113dc0ac2ce287d30e80340c63e0ff5690906535", "fields": {"nom_de_la_commune": "CREZANCAY SUR CHER", "libell_d_acheminement": "CREZANCAY SUR CHER", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18078"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b44e4314d646f4084ab702ed9acbb3a1ab9e068", "fields": {"nom_de_la_commune": "CUFFY", "libell_d_acheminement": "CUFFY", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18082"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb51ac573288a752bd983397792f703999f3f5c2", "fields": {"nom_de_la_commune": "CULAN", "libell_d_acheminement": "CULAN", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18083"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2974955a464ebd1ec0723eb16effe5027865a04", "fields": {"nom_de_la_commune": "DAMPIERRE EN CROT", "libell_d_acheminement": "DAMPIERRE EN CROT", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18084"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572b623dd494e99f2da8f6d197e0da393dfede34", "fields": {"nom_de_la_commune": "ETRECHY", "libell_d_acheminement": "ETRECHY", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18090"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c5c9b1ae993435a0b36ad2b49dee04a301f77a", "fields": {"nom_de_la_commune": "FARGES EN SEPTAINE", "libell_d_acheminement": "FARGES EN SEPTAINE", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18092"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b61f01ebb6789b757ac54440f43b9827128a4eef", "fields": {"nom_de_la_commune": "FUSSY", "libell_d_acheminement": "FUSSY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18097"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02701d3dfc80fdb28f53e7cdb2d09c427c7e3eb", "fields": {"nom_de_la_commune": "GARIGNY", "libell_d_acheminement": "GARIGNY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18099"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e44f79e693762bfc59eb2a51033c26012686ef", "fields": {"nom_de_la_commune": "LA GUERCHE SUR L AUBOIS", "libell_d_acheminement": "LA GUERCHE SUR L AUBOIS", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18108"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267c91283d0b4fba5926123dec88cf057ed37217", "fields": {"nom_de_la_commune": "LERE", "libell_d_acheminement": "LERE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18125"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a361290417b63ec084cde96a1f891524c629f5a", "fields": {"nom_de_la_commune": "LISSAY LOCHY", "libell_d_acheminement": "LISSAY LOCHY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18129"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf4232755869710f38dad45b709f76dd4dd02f6", "fields": {"nom_de_la_commune": "LUGNY BOURBONNAIS", "libell_d_acheminement": "LUGNY BOURBONNAIS", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18131"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25313322811a04789154c973fa805d4314ae0b1", "fields": {"nom_de_la_commune": "MERY ES BOIS", "libell_d_acheminement": "MERY ES BOIS", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18149"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e395497fb162f3acd5676599daee3aaf35c8a68", "fields": {"nom_de_la_commune": "NOHANT EN GOUT", "libell_d_acheminement": "NOHANT EN GOUT", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18166"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90156faaa1ba456ecf9dcef6d6a2b6cff5d35c37", "fields": {"nom_de_la_commune": "OIZON", "libell_d_acheminement": "OIZON", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18170"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebdb9d367ad8a661e323fb16e2cc8743e8fe31b7", "fields": {"nom_de_la_commune": "ORCENAIS", "libell_d_acheminement": "ORCENAIS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18171"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "944ba3fc4529016b63fb1569f221526bc8931235", "fields": {"nom_de_la_commune": "LA PERCHE", "libell_d_acheminement": "LA PERCHE", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18178"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3818f77fd55b312d4423ed03afdc288543237b6", "fields": {"nom_de_la_commune": "ST AIGNAN DES NOYERS", "libell_d_acheminement": "ST AIGNAN DES NOYERS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18196"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2ac03f23ddd3e6c689108bec25f39268795605", "fields": {"nom_de_la_commune": "ST BAUDEL", "libell_d_acheminement": "ST BAUDEL", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18199"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4b9781e34da154fd4f6f61e0ff81bbb942713b", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18201"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2633811ec9ad20fa7eba183a984aea7a258fda", "fields": {"nom_de_la_commune": "ST CEOLS", "libell_d_acheminement": "ST CEOLS", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18202"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114dfb0ca19bdd7447817950bb2d75b5910892a1", "fields": {"nom_de_la_commune": "ST CHRISTOPHE LE CHAUDRY", "libell_d_acheminement": "ST CHRISTOPHE LE CHAUDRY", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18203"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687566c180e1453f9b1477921bad4f07ca8ecc81", "fields": {"nom_de_la_commune": "ST DOULCHARD", "libell_d_acheminement": "ST DOULCHARD", "code_postal": "18230", "coordonnees_gps": [47.111266878, 2.35685668856], "code_commune_insee": "18205"}, "geometry": {"type": "Point", "coordinates": [2.35685668856, 47.111266878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737bc6ba1aaa39244150c7e6318fa7ae83575fe2", "fields": {"nom_de_la_commune": "ST GEORGES DE POISIEUX", "libell_d_acheminement": "ST GEORGES DE POISIEUX", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18209"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc6da729cfa93c514e6afe97a2b37168f7eef29", "fields": {"nom_de_la_commune": "TRIGNAC", "libell_d_acheminement": "TRIGNAC", "code_postal": "44570", "coordonnees_gps": [47.3120002564, -2.20651150379], "code_commune_insee": "44210"}, "geometry": {"type": "Point", "coordinates": [-2.20651150379, 47.3120002564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98edfed7c4888bf2f658f59fe5681f23f2bfe2f2", "fields": {"nom_de_la_commune": "LA TURBALLE", "libell_d_acheminement": "LA TURBALLE", "code_postal": "44420", "coordonnees_gps": [47.373686193, -2.48987078247], "code_commune_insee": "44211"}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee7f53ca27dd55da0a2d6a52354602f2b2e043d", "fields": {"nom_de_la_commune": "VALLET", "libell_d_acheminement": "VALLET", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44212"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3dc928e86ac369c5fb4d52b6182a3514001e47", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "LA CHAPELLE ST SAUVEUR", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10c7567ca4a111cfb6170b5c841f27f6840bdd8", "fields": {"nom_de_la_commune": "VERTOU", "libell_d_acheminement": "VERTOU", "code_postal": "44120", "coordonnees_gps": [47.1603173471, -1.47089983101], "code_commune_insee": "44215"}, "geometry": {"type": "Point", "coordinates": [-1.47089983101, 47.1603173471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e1648803e815397e4f6e099e80070f6763f08c", "fields": {"nom_de_la_commune": "VIEILLEVIGNE", "libell_d_acheminement": "VIEILLEVIGNE", "code_postal": "44116", "coordonnees_gps": [46.9711238546, -1.4191717487], "code_commune_insee": "44216"}, "geometry": {"type": "Point", "coordinates": [-1.4191717487, 46.9711238546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf3ce6d6f50b94662594f7009fb366a4c438af0", "fields": {"nom_de_la_commune": "VILLEPOT", "libell_d_acheminement": "VILLEPOT", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44218"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f98d32e51e6800f1b90b5c210f1f0d7f986864d2", "fields": {"nom_de_la_commune": "LA ROCHE BLANCHE", "libell_d_acheminement": "LA ROCHE BLANCHE", "code_postal": "44522", "coordonnees_gps": [47.4363371088, -1.20212334851], "code_commune_insee": "44222"}, "geometry": {"type": "Point", "coordinates": [-1.20212334851, 47.4363371088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40888ea1c287efbfd7e536d67c4ddc62a7030fdd", "fields": {"nom_de_la_commune": "ANDONVILLE", "libell_d_acheminement": "ANDONVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45005"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecc607c170812d40a25637e0a6ddbb449a6a686b", "fields": {"nom_de_la_commune": "ARDON", "libell_d_acheminement": "ARDON", "code_postal": "45160", "coordonnees_gps": [47.8140032252, 1.87690042129], "code_commune_insee": "45006"}, "geometry": {"type": "Point", "coordinates": [1.87690042129, 47.8140032252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205f622432b594e3f10f6dd6933eccb8fd7e9fa3", "fields": {"nom_de_la_commune": "AUDEVILLE", "libell_d_acheminement": "AUDEVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45012"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cbb75e26a2dbfce4ef83f97cd8f0d0032193beb", "fields": {"nom_de_la_commune": "AULNAY LA RIVIERE", "libell_d_acheminement": "AULNAY LA RIVIERE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45014"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60fc31a16483c2582a7859d19b3051b39105112e", "fields": {"nom_de_la_commune": "BARVILLE EN GATINAIS", "libell_d_acheminement": "BARVILLE EN GATINAIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45021"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c068c04005f19c5540d755fde0d6e24c655f268", "fields": {"nom_de_la_commune": "BATILLY EN GATINAIS", "libell_d_acheminement": "BATILLY EN GATINAIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45022"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f21c3b2956527190da2b0f2e7ef28c1aa7c1b17", "fields": {"nom_de_la_commune": "BAULE", "libell_d_acheminement": "BAULE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45024"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5d81c30c5606f507b3b991ecda97c86766acf2", "fields": {"nom_de_la_commune": "BEAUCHAMPS SUR HUILLARD", "libell_d_acheminement": "BEAUCHAMPS SUR HUILLARD", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45027"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53c814c7999875db1e4f5cd20cf6aba508d6eae", "fields": {"nom_de_la_commune": "BOISCOMMUN", "libell_d_acheminement": "BOISCOMMUN", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45035"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba3568085f4fcb8d10e8cdfaf450f31dbe60257", "fields": {"nom_de_la_commune": "BONNEE", "libell_d_acheminement": "BONNEE", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45039"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b298849fcd0d8b0fabc57210c67b84a6a442569", "fields": {"nom_de_la_commune": "BOUILLY EN GATINAIS", "libell_d_acheminement": "BOUILLY EN GATINAIS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45045"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15288de9bd4ca12b0d792998a8feefd2a5b1c50c", "fields": {"nom_de_la_commune": "BRETEAU", "libell_d_acheminement": "BRETEAU", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45052"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2358735c2335bcc62f8a883895de21ec1e32f7", "fields": {"nom_de_la_commune": "BRIARRES SUR ESSONNE", "libell_d_acheminement": "BRIARRES SUR ESSONNE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45054"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd81da04d5a68928e33fbd128a195b1a1a206847", "fields": {"nom_de_la_commune": "CEPOY", "libell_d_acheminement": "CEPOY", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45061"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab0d9d5eb03719323045ac53e96c394595542e", "fields": {"nom_de_la_commune": "CERNOY EN BERRY", "libell_d_acheminement": "CERNOY EN BERRY", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45064"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2383020da8cd75c6bb113834a4e6ab34a9c1e1da", "fields": {"nom_de_la_commune": "CESARVILLE DOSSAINVILLE", "libell_d_acheminement": "CESARVILLE DOSSAINVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45065"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199805cc9b699b2398e920ffe032697f8bd9c95e", "fields": {"nom_de_la_commune": "CHAMBON LA FORET", "libell_d_acheminement": "CHAMBON LA FORET", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45069"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce9242d642f2d32393b5afafad4f25fd9673066", "fields": {"nom_de_la_commune": "CHANTEAU", "libell_d_acheminement": "CHANTEAU", "code_postal": "45400", "coordonnees_gps": [47.9619656993, 1.95515679115], "code_commune_insee": "45072"}, "geometry": {"type": "Point", "coordinates": [1.95515679115, 47.9619656993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e708dbc91873f45776b7e5534a25903025d663a", "fields": {"nom_de_la_commune": "CHANTECOQ", "libell_d_acheminement": "CHANTECOQ", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45073"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049396d3d0bc4b4acd573ec26daa023b037c5f57", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MESMIN", "libell_d_acheminement": "LA CHAPELLE ST MESMIN", "code_postal": "45380", "coordonnees_gps": [47.8904899207, 1.78907704146], "code_commune_insee": "45075"}, "geometry": {"type": "Point", "coordinates": [1.78907704146, 47.8904899207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea7cce552bbb3391250825232e75931772a8ad", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR LOIRE", "libell_d_acheminement": "CHATEAUNEUF SUR LOIRE", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45082"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e8eba6c2e27c5ddb4cc8abac07f798b24a58d1", "fields": {"nom_de_la_commune": "COULMIERS", "libell_d_acheminement": "COULMIERS", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45109"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e4a96b2da62d7527ee2b6f91206b751d5ea7c6a", "fields": {"nom_de_la_commune": "COURTEMAUX", "libell_d_acheminement": "COURTEMAUX", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45113"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d23d9d5273fe536919f4d8940d1480465abcc54", "fields": {"nom_de_la_commune": "CROTTES EN PITHIVERAIS", "libell_d_acheminement": "CROTTES EN PITHIVERAIS", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45118"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e21791856601a870e27a31bcf19d62c9fb77a4e", "fields": {"nom_de_la_commune": "DONNERY", "libell_d_acheminement": "DONNERY", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45126"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99373ebd3b26974fb0eda2ac5aaad979160e5932", "fields": {"nom_de_la_commune": "DORDIVES", "libell_d_acheminement": "DORDIVES", "code_postal": "45680", "coordonnees_gps": [48.1480384141, 2.77415862582], "code_commune_insee": "45127"}, "geometry": {"type": "Point", "coordinates": [2.77415862582, 48.1480384141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbab5ee55c438fd14ec5df3328d652224adc3584", "fields": {"nom_de_la_commune": "ECHILLEUSES", "libell_d_acheminement": "ECHILLEUSES", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45131"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c172af973d0fe34333f0f68eae32a097852eddcf", "fields": {"nom_de_la_commune": "ENGENVILLE", "libell_d_acheminement": "ENGENVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45133"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe1c0b2a276a39f091b61f9d2d6269532215fff", "fields": {"nom_de_la_commune": "ESTOUY", "libell_d_acheminement": "ESTOUY", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45139"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254300a9c5e63a9a80b1c0be3adad46d3d941105", "fields": {"nom_de_la_commune": "FERRIERES EN GATINAIS", "libell_d_acheminement": "FERRIERES EN GATINAIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45145"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9b4e0edad374f5fb323d743b656fe7c54568cf", "fields": {"nom_de_la_commune": "GEMIGNY", "libell_d_acheminement": "GEMIGNY", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45152"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "617c0cb46ae3e221c97bdfb0a9512ef948641ca6", "fields": {"nom_de_la_commune": "GIVRAINES", "libell_d_acheminement": "GIVRAINES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45157"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0fc94166c91e7ad93b125273cb0e9c778ddd7c", "fields": {"code_postal": "45480", "code_commune_insee": "45160", "libell_d_acheminement": "GRENEVILLE EN BEAUCE", "ligne_5": "GUIGNONVILLE", "nom_de_la_commune": "GRENEVILLE EN BEAUCE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7616c2ee88770d0d1a644368a4f93068f0c51667", "fields": {"nom_de_la_commune": "ISDES", "libell_d_acheminement": "ISDES", "code_postal": "45620", "coordonnees_gps": [47.6434103501, 2.3340789354], "code_commune_insee": "45171"}, "geometry": {"type": "Point", "coordinates": [2.3340789354, 47.6434103501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72754e8ef14a7d0d33f266c7ef5cc85af03d01fb", "fields": {"nom_de_la_commune": "JOUY EN PITHIVERAIS", "libell_d_acheminement": "JOUY EN PITHIVERAIS", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45174"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e209058f9f8188e2ac6a47e51851e1679a6fb41", "fields": {"nom_de_la_commune": "LOMBREUIL", "libell_d_acheminement": "LOMBREUIL", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45185"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10e915614aa76fa3edacbad75e1f90630d4d7102", "fields": {"nom_de_la_commune": "MENESTREAU EN VILLETTE", "libell_d_acheminement": "MENESTREAU EN VILLETTE", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45200"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f85a56175fad16c72609a0ce2da367c820b21f", "fields": {"nom_de_la_commune": "MEUNG SUR LOIRE", "libell_d_acheminement": "MEUNG SUR LOIRE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45203"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58d51243eda6661ce546009ee7e6c6471111bd8", "fields": {"nom_de_la_commune": "MONTEREAU", "libell_d_acheminement": "MONTEREAU", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45213"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf21c2c93bf68c503c63c2528b4b54d0307291b7", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45214"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c835d6fe16b9d2ee215bd226f417c6e89ab212f0", "fields": {"nom_de_la_commune": "MOULON", "libell_d_acheminement": "MOULON", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45219"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b3ef5601c9a4a3e04c31615f633268d78e705d", "fields": {"nom_de_la_commune": "NEVOY", "libell_d_acheminement": "NEVOY", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45227"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b081a319a28dea1662b933d59b541f9761647dfc", "fields": {"nom_de_la_commune": "NIBELLE", "libell_d_acheminement": "NIBELLE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45228"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fdb3b1f71a131eab7fdb39107ca281fcf589fdc", "fields": {"nom_de_la_commune": "NOGENT SUR VERNISSON", "libell_d_acheminement": "NOGENT SUR VERNISSON", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45229"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cde02f7f1df853670e9e8da449d99c4201a6191", "fields": {"nom_de_la_commune": "BOURGUIGNON SOUS MONTBAVIN", "libell_d_acheminement": "BOURGUIGNON SOUS MONTBAVIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02108"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1854c301fc2bff84d1b6eacadd30bb37beb30083", "fields": {"nom_de_la_commune": "BOHAIN EN VERMANDOIS", "libell_d_acheminement": "BOHAIN EN VERMANDOIS", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02095"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d3f12e731c3bcccc49f7f23504a1db01d3867e", "fields": {"nom_de_la_commune": "BOUFFIGNEREUX", "libell_d_acheminement": "BOUFFIGNEREUX", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02104"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e1aaede6e535e669a82617790a1b2593d3a05a", "fields": {"nom_de_la_commune": "BICHANCOURT", "libell_d_acheminement": "BICHANCOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02086"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffa4439572b060c6fe7be98d515d5640c9a2eed", "fields": {"nom_de_la_commune": "BOURESCHES", "libell_d_acheminement": "BOURESCHES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02105"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efa25029e38aafb2f7e8626090ba5773965b82f", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02097"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f5bd247385104ea31162732b52d07455dd90f", "fields": {"nom_de_la_commune": "BIEVRES", "libell_d_acheminement": "BIEVRES", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02088"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abb0ffbe9fe80ac032b96fa6555d3e2d0663967", "fields": {"nom_de_la_commune": "BRUMETZ", "libell_d_acheminement": "BRUMETZ", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02125"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459308f935007a3789c564080ab784a916f07edd", "fields": {"nom_de_la_commune": "BONNEIL", "libell_d_acheminement": "BONNEIL", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02098"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15163ccb1d66e011d0f100a02822b9c0b069c697", "fields": {"nom_de_la_commune": "BRECY", "libell_d_acheminement": "BRECY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02119"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e311997a03da7ad31e3d24eec96d867f5e5938e", "fields": {"nom_de_la_commune": "ESSOMES SUR MARNE", "libell_d_acheminement": "ESSOMES SUR MARNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02290"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a539a543dd44661cb45fea1edf2958c371d873f8", "fields": {"nom_de_la_commune": "ESSIGNY LE PETIT", "libell_d_acheminement": "ESSIGNY LE PETIT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02288"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c76e7065b3e5c28f344c5e2b5efd466d3cd6cfd", "fields": {"nom_de_la_commune": "DIZY LE GROS", "libell_d_acheminement": "DIZY LE GROS", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02264"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087b273091337f53a1035b4508c13d93f3e7d580", "fields": {"nom_de_la_commune": "EPAUX BEZU", "libell_d_acheminement": "EPAUX BEZU", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02279"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f3987ba271663cc3bebdecd2867d6dfe8b38cba", "fields": {"nom_de_la_commune": "EBOULEAU", "libell_d_acheminement": "EBOULEAU", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02274"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2216d016f329399bc3b24c6bc64c18d5a42f66", "fields": {"nom_de_la_commune": "DRAVEGNY", "libell_d_acheminement": "DRAVEGNY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02271"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a06dc801ed4d98a2130ab09230c0124f6b6433", "fields": {"nom_de_la_commune": "DANIZY", "libell_d_acheminement": "DANIZY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02260"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815d3825acaee93b1ad0064dbec742a0cd1d2f28", "fields": {"nom_de_la_commune": "DOUCHY", "libell_d_acheminement": "DOUCHY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02270"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1274f26b23ba1648da3f93d56c3d0f68165aaee", "fields": {"nom_de_la_commune": "EFFRY", "libell_d_acheminement": "EFFRY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02275"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b784ab8b324ddd8385dd08cf8956d0ce239871", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR CHEZY", "libell_d_acheminement": "LA CHAPELLE SUR CHEZY", "code_postal": "02570", "coordonnees_gps": [48.9733835684, 3.38685321975], "code_commune_insee": "02162"}, "geometry": {"type": "Point", "coordinates": [3.38685321975, 48.9733835684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f6f28a9b5ee2e083eea7412b1602e2220611df", "fields": {"nom_de_la_commune": "CHIVRES EN LAONNOIS", "libell_d_acheminement": "CHIVRES EN LAONNOIS", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02189"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d456a4bb4b1a8c81ad13adbfff244314d3afd456", "fields": {"nom_de_la_commune": "CHATILLON SUR OISE", "libell_d_acheminement": "CHATILLON SUR OISE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02170"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b194c29bd5a8cf989ae51212d44382af5c4611c6", "fields": {"nom_de_la_commune": "CLACY ET THIERRET", "libell_d_acheminement": "CLACY ET THIERRET", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02196"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f752dc42f4dbe5e6bbab67795d1ae2b93b272a6", "fields": {"nom_de_la_commune": "CELLES SUR AISNE", "libell_d_acheminement": "CELLES SUR AISNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02148"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fa911de0aef34e959a34773f34a3a310606cd0", "fields": {"nom_de_la_commune": "CHERY CHARTREUVE", "libell_d_acheminement": "CHERY CHARTREUVE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02179"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9109a5c5ed6681978af25ef62c7ca875cd8dfc", "fields": {"nom_de_la_commune": "CIRY SALSOGNE", "libell_d_acheminement": "CIRY SALSOGNE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02195"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cfefc610977665874e0ec307f5a4bc1b423bdbd", "fields": {"nom_de_la_commune": "LE CHARMEL", "libell_d_acheminement": "LE CHARMEL", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02164"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e05debcee04436b481f826ae3b760f0de0fbbb8", "fields": {"nom_de_la_commune": "BUZANCY", "libell_d_acheminement": "BUZANCY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02138"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb94a8aa95fceb467f73e5b0b7b6887e453e6c5", "fields": {"nom_de_la_commune": "CHAMBRY", "libell_d_acheminement": "CHAMBRY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02157"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a52a84db0b0af3449d2c7e07373b067bd9f16f", "fields": {"nom_de_la_commune": "COUVRON ET AUMENCOURT", "libell_d_acheminement": "COUVRON ET AUMENCOURT", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02231"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61dab11c50537e38482aefe4b1e527b8dc37144c", "fields": {"nom_de_la_commune": "COEUVRES ET VALSERY", "libell_d_acheminement": "COEUVRES ET VALSERY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02201"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb1429c3f6ad42b235d3ad5aca85459ad3924f2", "fields": {"nom_de_la_commune": "CRECY SUR SERRE", "libell_d_acheminement": "CRECY SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02237"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8a52bdc9a4cdf349c4d2f31b09017ceb69eb86", "fields": {"nom_de_la_commune": "COUCY LES EPPES", "libell_d_acheminement": "COUCY LES EPPES", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02218"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63848bef468a4a201b63c0458da3c9ded3ad795", "fields": {"nom_de_la_commune": "DAGNY LAMBERCY", "libell_d_acheminement": "DAGNY LAMBERCY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02256"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7971caa6e50301c3e1332b390558aab1a25e04e4", "fields": {"nom_de_la_commune": "CYS LA COMMUNE", "libell_d_acheminement": "CYS LA COMMUNE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02255"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f428a1f52f8c84df7d23b96aaf3c3112fbb52bb", "fields": {"nom_de_la_commune": "CONCEVREUX", "libell_d_acheminement": "CONCEVREUX", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02208"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37db20b9941172438fbca62c84e7dcbe821e6eca", "fields": {"nom_de_la_commune": "COURMONT", "libell_d_acheminement": "COURMONT", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02227"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ecc01d589109ac0688cd25a63b9ddfcaa76c52", "fields": {"nom_de_la_commune": "COYOLLES", "libell_d_acheminement": "COYOLLES", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02232"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7925ea4634b03f33319d723cc818406184f0e70a", "fields": {"nom_de_la_commune": "CUGNY", "libell_d_acheminement": "CUGNY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02246"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4caa5b986f928cfce39a4bff5e37ff4ea56faf39", "fields": {"nom_de_la_commune": "BAZOCHES SUR VESLES", "libell_d_acheminement": "BAZOCHES SUR VESLES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02054"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f77268598c76f8f9077d7a8ca4b2897950607ee", "fields": {"nom_de_la_commune": "BEAUMONT EN BEINE", "libell_d_acheminement": "BEAUMONT EN BEINE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02056"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601666248a3b5759e895f3e89cf36b3b8e0114db", "fields": {"nom_de_la_commune": "BASSOLES AULERS", "libell_d_acheminement": "BASSOLES AULERS", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02052"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e4730b3e37420ccaf3e08b3d81544c82067746", "fields": {"nom_de_la_commune": "BEZU ST GERMAIN", "libell_d_acheminement": "BEZU ST GERMAIN", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02085"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f69d27a2d2352e69584c7372e31589a565de872", "fields": {"nom_de_la_commune": "BERLANCOURT", "libell_d_acheminement": "BERLANCOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02068"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "902ce3cd133b7ae2eb1f10e8167346482078dc86", "fields": {"nom_de_la_commune": "BEAUREVOIR", "libell_d_acheminement": "BEAUREVOIR", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02057"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af07dec152cb3e6e9299d9b1216b79d2ad42a3b", "fields": {"nom_de_la_commune": "AUTREVILLE", "libell_d_acheminement": "AUTREVILLE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02041"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab493f2dedd7a374b1a718a5dd2fdb6a4b2dcb4", "fields": {"nom_de_la_commune": "BANCIGNY", "libell_d_acheminement": "BANCIGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02044"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7014d8d8ff86cdf02a0bda96b4e7df3e9b83bd8e", "fields": {"nom_de_la_commune": "BEAUTOR", "libell_d_acheminement": "BEAUTOR", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02059"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69b9ee6e9beea3fddd6f5f15071f0e9a33c3f28", "fields": {"nom_de_la_commune": "NOGENT SUR EURE", "libell_d_acheminement": "NOGENT SUR EURE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28281"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4c7c7d690741be44a4c047cab7b590f02ee203", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28289"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0f71ee433454069efc68e5b8c5e74268f751c4", "fields": {"nom_de_la_commune": "ORROUER", "libell_d_acheminement": "ORROUER", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28290"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e770cfd30226739df4e613ab739373134f3a53d", "fields": {"nom_de_la_commune": "OUERRE", "libell_d_acheminement": "OUERRE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28292"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e659664466b044631cf660978c3abaee5599d6e", "fields": {"nom_de_la_commune": "OYSONVILLE", "libell_d_acheminement": "OYSONVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28294"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0135db5fb4c3db9d2a402b7ec5f2e7a70541bec", "fields": {"nom_de_la_commune": "PIERRES", "libell_d_acheminement": "PIERRES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28298"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3131256d7d18f4cecd58da7c4d58340ed941cc72", "fields": {"nom_de_la_commune": "LES PINTHIERES", "libell_d_acheminement": "LES PINTHIERES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28299"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68502c0d507dc9fcf7147c2aecbd7fac8265b4e4", "fields": {"nom_de_la_commune": "POINVILLE", "libell_d_acheminement": "POINVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28300"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6731c094a3399ae02b65ac4059b04b22d12e9", "fields": {"nom_de_la_commune": "PRUNAY LE GILLON", "libell_d_acheminement": "PRUNAY LE GILLON", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28309"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7cdb03453b276344c9fff7e68f8cb7500f3c8a", "fields": {"nom_de_la_commune": "RECLAINVILLE", "libell_d_acheminement": "RECLAINVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28313"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9288f33ef163687fe147b1ab0a556bc47cc42c91", "fields": {"nom_de_la_commune": "ST ARNOULT DES BOIS", "libell_d_acheminement": "ST ARNOULT DES BOIS", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28324"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e7f766283c25d01ed763278b34c1cad3311b905", "fields": {"nom_de_la_commune": "STE GEMME MORONVAL", "libell_d_acheminement": "STE GEMME MORONVAL", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28332"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16adb8de966f35630e4bc541407e6bf4068ea905", "fields": {"nom_de_la_commune": "ST ELIPH", "libell_d_acheminement": "ST ELIPH", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28335"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3f5d15a0da3262e8c402ac781cf316ce93e0a80", "fields": {"nom_de_la_commune": "ST GERMAIN LE GAILLARD", "libell_d_acheminement": "ST GERMAIN LE GAILLARD", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28339"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89455ad91a802fa53e308f21452c624a7339141", "fields": {"nom_de_la_commune": "ST MARTIN DE NIGELLES", "libell_d_acheminement": "ST MARTIN DE NIGELLES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28352"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fcceea009445ffae2a3fda879b705ca59eed2c", "fields": {"nom_de_la_commune": "ST MAUR SUR LE LOIR", "libell_d_acheminement": "ST MAUR SUR LE LOIR", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28353"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2d419cefb0a13e2902c2ad26c9c759eb51ce90", "fields": {"nom_de_la_commune": "ST MAURICE ST GERMAIN", "libell_d_acheminement": "ST MAURICE ST GERMAIN", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28354"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e943c7365337e6afab3b1521112c4a8debce0e1", "fields": {"code_postal": "28170", "code_commune_insee": "28360", "libell_d_acheminement": "ST SAUVEUR MARVILLE", "ligne_5": "MARVILLE LES BOIS", "nom_de_la_commune": "ST SAUVEUR MARVILLE", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935a66388d83a09251e1bcf1361122f5371fb1b8", "fields": {"nom_de_la_commune": "ST VICTOR DE BUTHON", "libell_d_acheminement": "ST VICTOR DE BUTHON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28362"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d536c7c4519c6774114d558f19954019f28fd9", "fields": {"nom_de_la_commune": "SAINVILLE", "libell_d_acheminement": "SAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28363"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddde7dc00dd3ebb557dad75df7bf227f99eaa85", "fields": {"nom_de_la_commune": "SANCHEVILLE", "libell_d_acheminement": "SANCHEVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28364"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4d015646f899bc910eaca100e66576a082e118", "fields": {"nom_de_la_commune": "SANDARVILLE", "libell_d_acheminement": "SANDARVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28365"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b56d5a4c25b7cff9550c6054bdd4a43fbee0f7ad", "fields": {"nom_de_la_commune": "LA SAUCELLE", "libell_d_acheminement": "LA SAUCELLE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28368"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c030dd779a345b160969c7d6230fc2fd188f3c", "fields": {"nom_de_la_commune": "SAUSSAY", "libell_d_acheminement": "SAUSSAY", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28371"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182566c01267ffe1b1caea09130f654c362bac6b", "fields": {"nom_de_la_commune": "SERAZEREUX", "libell_d_acheminement": "SERAZEREUX", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28374"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33310ae9d8c444977b08947c368be611b84189f4", "fields": {"nom_de_la_commune": "SOREL MOUSSEL", "libell_d_acheminement": "SOREL MOUSSEL", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28377"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596be381310fb490fe2a37788e7e877254e7b89b", "fields": {"nom_de_la_commune": "SOUANCE AU PERCHE", "libell_d_acheminement": "SOUANCE AU PERCHE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28378"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ee7ef720b6177bf1dca4d4f295d933ec393421", "fields": {"nom_de_la_commune": "THIRON GARDAIS", "libell_d_acheminement": "THIRON GARDAIS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28387"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510e41a61bc73f55032ebf0b7ba5484f2e33da6c", "fields": {"nom_de_la_commune": "THIVILLE", "libell_d_acheminement": "THIVILLE", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28389"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b5cce8ef4702df6bd7862aa30cd05a305d7572", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "THEUVY ACHERES", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77857b39beff7c132da80c54db248fc738d9aaa8", "fields": {"nom_de_la_commune": "TREON", "libell_d_acheminement": "TREON", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28394"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a8e8dc4f0115dd96e201064e04f370f165dcbe", "fields": {"nom_de_la_commune": "UMPEAU", "libell_d_acheminement": "UMPEAU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28397"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588549b0a09190c57c7db4a288f3837a19293029", "fields": {"nom_de_la_commune": "VARIZE", "libell_d_acheminement": "VARIZE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28400"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa025482dd39bc7b562bbd2210b28afa43b3b7a7", "fields": {"nom_de_la_commune": "VAUPILLON", "libell_d_acheminement": "VAUPILLON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28401"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadf6b5bf51ccfc1aa03ff31ee370447dda371ca", "fields": {"nom_de_la_commune": "VER LES CHARTRES", "libell_d_acheminement": "VER LES CHARTRES", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28403"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba56134e1b171aec293224613841b9f8226f9866", "fields": {"nom_de_la_commune": "VILLEBON", "libell_d_acheminement": "VILLEBON", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28414"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb96aa9b7658c85d461d11988f5fb68b0b5175df", "fields": {"nom_de_la_commune": "VILLIERS ST ORIEN", "libell_d_acheminement": "VILLIERS ST ORIEN", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28418"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b029209f1ae915f3b635f625673625e2f92404", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "VILLENEUVE ST NICOLAS", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc956f1ffee2098ed89e25d8544e6906b0f235cf", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "VOVES", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8297462c046318639a25109ca09ef9f2050ec0b6", "fields": {"nom_de_la_commune": "YEVRES", "libell_d_acheminement": "YEVRES", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28424"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c66fc3d35c5533806e1808a3f444929d6cb2a2", "fields": {"code_postal": "29770", "code_commune_insee": "29003", "libell_d_acheminement": "AUDIERNE", "ligne_5": "ESQUIBIEN", "nom_de_la_commune": "AUDIERNE", "coordonnees_gps": [48.0454956217, -4.63185223568]}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec0d79c24c9ef4aa322196416d03522a9723732", "fields": {"nom_de_la_commune": "BAYE", "libell_d_acheminement": "BAYE", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29005"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a09f45230307d4b55e8e069db6f251cb02cc7a6", "fields": {"nom_de_la_commune": "BODILIS", "libell_d_acheminement": "BODILIS", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29010"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e95d0bcbbd7c27b8943b55b63f047e2d702f572", "fields": {"nom_de_la_commune": "BRIEC", "libell_d_acheminement": "BRIEC", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29020"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb517c03c23f71aec1ead9334704b77fdc23889", "fields": {"nom_de_la_commune": "CHATEAUNEUF DU FAOU", "libell_d_acheminement": "CHATEAUNEUF DU FAOU", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29027"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0e89828abf35fddd0a9e387c6e6f452d076214", "fields": {"nom_de_la_commune": "CLOHARS CARNOET", "libell_d_acheminement": "CLOHARS CARNOET", "code_postal": "29360", "coordonnees_gps": [47.7942669936, -3.56719689292], "code_commune_insee": "29031"}, "geometry": {"type": "Point", "coordinates": [-3.56719689292, 47.7942669936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68f6bf7c1cbdbcfd44ef4a50fbe387ecff0e258b", "fields": {"code_postal": "29360", "code_commune_insee": "29031", "libell_d_acheminement": "CLOHARS CARNOET", "ligne_5": "LE POULDU", "nom_de_la_commune": "CLOHARS CARNOET", "coordonnees_gps": [47.7942669936, -3.56719689292]}, "geometry": {"type": "Point", "coordinates": [-3.56719689292, 47.7942669936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302ff6cdb830eb351c06a46430fabafac600de3b", "fields": {"nom_de_la_commune": "CROZON", "libell_d_acheminement": "CROZON", "code_postal": "29160", "coordonnees_gps": [48.2509456374, -4.48250403015], "code_commune_insee": "29042"}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f348c61189c30fa58586952637797ec09c23c0", "fields": {"code_postal": "29160", "code_commune_insee": "29042", "libell_d_acheminement": "CROZON", "ligne_5": "LE FRET", "nom_de_la_commune": "CROZON", "coordonnees_gps": [48.2509456374, -4.48250403015]}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6aa3d5254ba25cc3eb2b62c77b93a5444e5c66", "fields": {"code_postal": "29100", "code_commune_insee": "29046", "libell_d_acheminement": "DOUARNENEZ", "ligne_5": "TREBOUL", "nom_de_la_commune": "DOUARNENEZ", "coordonnees_gps": [48.0680166457, -4.3318760918]}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41850f5bf60754ba6accfc96fef2d7a0c8e74030", "fields": {"nom_de_la_commune": "ELLIANT", "libell_d_acheminement": "ELLIANT", "code_postal": "29370", "coordonnees_gps": [48.0256499846, -3.888334488], "code_commune_insee": "29049"}, "geometry": {"type": "Point", "coordinates": [-3.888334488, 48.0256499846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "772c03f04ee9d761c538ac9210edcb8219ef8c5c", "fields": {"nom_de_la_commune": "GARLAN", "libell_d_acheminement": "GARLAN", "code_postal": "29610", "coordonnees_gps": [48.5789578669, -3.7146289967], "code_commune_insee": "29059"}, "geometry": {"type": "Point", "coordinates": [-3.7146289967, 48.5789578669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa8b29aa0aaf3ae873bef9542aa1c687a1873ee", "fields": {"nom_de_la_commune": "GUILVINEC", "libell_d_acheminement": "GUILVINEC", "code_postal": "29730", "coordonnees_gps": [47.80414483, -4.26610695], "code_commune_insee": "29072"}, "geometry": {"type": "Point", "coordinates": [-4.26610695, 47.80414483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7db5195c886accfb0a8ca9df50b21f960eca528", "fields": {"nom_de_la_commune": "GUIMAEC", "libell_d_acheminement": "GUIMAEC", "code_postal": "29620", "coordonnees_gps": [48.6479299732, -3.70272210639], "code_commune_insee": "29073"}, "geometry": {"type": "Point", "coordinates": [-3.70272210639, 48.6479299732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd25770bf8c8b9e185e6c93bae220c46e3fbdf0", "fields": {"nom_de_la_commune": "HANVEC", "libell_d_acheminement": "HANVEC", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29078"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd8498f86be60e817ba908662d339582c1a5229", "fields": {"nom_de_la_commune": "HUELGOAT", "libell_d_acheminement": "HUELGOAT", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29081"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23acbcff7542b5c7f5e70ad94ad60cfec2f86d81", "fields": {"nom_de_la_commune": "ILE DE SEIN", "libell_d_acheminement": "ILE DE SEIN", "code_postal": "29990", "coordonnees_gps": [48.0380497921, -4.85657063177], "code_commune_insee": "29083"}, "geometry": {"type": "Point", "coordinates": [-4.85657063177, 48.0380497921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c22e2bd4e3de981227e19aca9b6d8c7b00d9611", "fields": {"nom_de_la_commune": "KERNOUES", "libell_d_acheminement": "KERNOUES", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29094"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096a1c4f1815a109301e97e271c05d031e9f92b9", "fields": {"nom_de_la_commune": "LAMPAUL GUIMILIAU", "libell_d_acheminement": "LAMPAUL GUIMILIAU", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29097"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d26d386fc4e4193bbc7e12e49269addc67f7c8", "fields": {"nom_de_la_commune": "LAMPAUL PLOUDALMEZEAU", "libell_d_acheminement": "LAMPAUL PLOUDALMEZEAU", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29099"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f6257455d42bcc96e63dd3159fa92fd28c0a18", "fields": {"nom_de_la_commune": "LANARVILY", "libell_d_acheminement": "LANARVILY", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29100"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569fdfe515d4c747d8153515b16de90cc8cfcd56", "fields": {"nom_de_la_commune": "LANDELEAU", "libell_d_acheminement": "LANDELEAU", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29102"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54f7675fdd87cfb6b0ed5f10015c66b9a291308", "fields": {"nom_de_la_commune": "LANDIVISIAU", "libell_d_acheminement": "LANDIVISIAU", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29105"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b124ab568ad7051302ae664de75de120d464bc6e", "fields": {"nom_de_la_commune": "LANDUDAL", "libell_d_acheminement": "LANDUDAL", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29107"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ffc5ea80051b8ba767283e1214c4de8ef6dc81", "fields": {"nom_de_la_commune": "LANMEUR", "libell_d_acheminement": "LANMEUR", "code_postal": "29620", "coordonnees_gps": [48.6479299732, -3.70272210639], "code_commune_insee": "29113"}, "geometry": {"type": "Point", "coordinates": [-3.70272210639, 48.6479299732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4570d4a381b43f4603dce56d9e89d1f5ad477816", "fields": {"nom_de_la_commune": "LAZ", "libell_d_acheminement": "LAZ", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29122"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb2f23615f1bf1f483fab3e7e973e946d9bda6e", "fields": {"nom_de_la_commune": "LOCQUIREC", "libell_d_acheminement": "LOCQUIREC", "code_postal": "29241", "coordonnees_gps": [48.6828515665, -3.66757726911], "code_commune_insee": "29133"}, "geometry": {"type": "Point", "coordinates": [-3.66757726911, 48.6828515665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db04477e435e90b854933245177f80a6fc5d367d", "fields": {"nom_de_la_commune": "LOPEREC", "libell_d_acheminement": "LOPEREC", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29139"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44a0e37303fc3b9593f13226d2071b26fc18d03", "fields": {"nom_de_la_commune": "LOPERHET", "libell_d_acheminement": "LOPERHET", "code_postal": "29470", "coordonnees_gps": [48.3674331518, -4.36175367065], "code_commune_insee": "29140"}, "geometry": {"type": "Point", "coordinates": [-4.36175367065, 48.3674331518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2120091367ff79c785ff20dcfba4608870545871", "fields": {"nom_de_la_commune": "MELLAC", "libell_d_acheminement": "MELLAC", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29147"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b341c2571c9e400dfc663796204cdf1e6a84663d", "fields": {"nom_de_la_commune": "MESPAUL", "libell_d_acheminement": "MESPAUL", "code_postal": "29420", "coordonnees_gps": [48.5999876589, -4.00739831758], "code_commune_insee": "29148"}, "geometry": {"type": "Point", "coordinates": [-4.00739831758, 48.5999876589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b93b2455d68dad9888eb7702fa92e061029a5b", "fields": {"nom_de_la_commune": "MILIZAC", "libell_d_acheminement": "MILIZAC", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29149"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce45496458d830865743733360e223c622d2c619", "fields": {"nom_de_la_commune": "MOTREFF", "libell_d_acheminement": "MOTREFF", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29152"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6798a484f4b4d84fc8be5242961f0407d59cf1", "fields": {"nom_de_la_commune": "PLEUVEN", "libell_d_acheminement": "PLEUVEN", "code_postal": "29170", "coordonnees_gps": [47.912618887, -4.02039306441], "code_commune_insee": "29161"}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b912b8d112040c7114d20cde0fbe859fef565f4", "fields": {"code_postal": "29740", "code_commune_insee": "29165", "libell_d_acheminement": "PLOBANNALEC LESCONIL", "ligne_5": "LESCONIL", "nom_de_la_commune": "PLOBANNALEC LESCONIL", "coordonnees_gps": [47.8211386982, -4.22818525264]}, "geometry": {"type": "Point", "coordinates": [-4.22818525264, 47.8211386982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02eae2699b4ed26789263c55fb53e166f02bf28", "fields": {"nom_de_la_commune": "PLOGASTEL ST GERMAIN", "libell_d_acheminement": "PLOGASTEL ST GERMAIN", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29167"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470d049044f566e549b4aae20e9afcdb5c6202f7", "fields": {"nom_de_la_commune": "PLOGOFF", "libell_d_acheminement": "PLOGOFF", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29168"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c99d9d86a3c9a81c51fc445d9aaad6a910f0b6", "fields": {"nom_de_la_commune": "PLOUARZEL", "libell_d_acheminement": "PLOUARZEL", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29177"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4bf3d75466918c9eabe35d79ed3f192a2d8a2b", "fields": {"nom_de_la_commune": "PLOUDIRY", "libell_d_acheminement": "PLOUDIRY", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29180"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa17de86e511d56c7996907494730ab84e7afd65", "fields": {"nom_de_la_commune": "PLOUEDERN", "libell_d_acheminement": "PLOUEDERN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29181"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f181c7c4d46dcdff06bb7ae7028602bcdf6ed80", "fields": {"nom_de_la_commune": "PLOUENAN", "libell_d_acheminement": "PLOUENAN", "code_postal": "29420", "coordonnees_gps": [48.5999876589, -4.00739831758], "code_commune_insee": "29184"}, "geometry": {"type": "Point", "coordinates": [-4.00739831758, 48.5999876589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a87ddce93c4d0e9a22bc32b6fdd54c59824babb", "fields": {"code_postal": "29630", "code_commune_insee": "29188", "libell_d_acheminement": "PLOUGASNOU", "ligne_5": "PRIMEL TREGASTEL", "nom_de_la_commune": "PLOUGASNOU", "coordonnees_gps": [48.6746083543, -3.7940474751]}, "geometry": {"type": "Point", "coordinates": [-3.7940474751, 48.6746083543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaa44bf1619e474f0dad61db200f07b01248a979", "fields": {"code_postal": "29217", "code_commune_insee": "29190", "libell_d_acheminement": "PLOUGONVELIN", "ligne_5": "ST MATHIEU", "nom_de_la_commune": "PLOUGONVELIN", "coordonnees_gps": [48.3548137568, -4.73034046541]}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930c051ff5036b4707fdf62e5043d172f73ad50d", "fields": {"nom_de_la_commune": "PLOUGOULM", "libell_d_acheminement": "PLOUGOULM", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29192"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69d8fddf0e656fe58506e72dbad6b289e1d9aeb", "fields": {"nom_de_la_commune": "PLOUIDER", "libell_d_acheminement": "PLOUIDER", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29198"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "412112d8dafee3de2d1cc3c175cbb31fef802d83", "fields": {"nom_de_la_commune": "PLOUMOGUER", "libell_d_acheminement": "PLOUMOGUER", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29201"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced45abede180d74a092e2b049214bfec95fd7f3", "fields": {"nom_de_la_commune": "PLOUNEVENTER", "libell_d_acheminement": "PLOUNEVENTER", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29204"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5caae39a1b9d1ba099a3c1bdc236f17552d9a4", "fields": {"nom_de_la_commune": "PLOUYE", "libell_d_acheminement": "PLOUYE", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29211"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93416fe195e5a34cb28eb726b38cd0a0302d1f37", "fields": {"nom_de_la_commune": "PLOUZANE", "libell_d_acheminement": "PLOUZANE", "code_postal": "29280", "coordonnees_gps": [48.3750034189, -4.61990199453], "code_commune_insee": "29212"}, "geometry": {"type": "Point", "coordinates": [-4.61990199453, 48.3750034189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbd09b1f84723260a67f85caa3673f0983c69ae", "fields": {"nom_de_la_commune": "PONT L ABBE", "libell_d_acheminement": "PONT L ABBE", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29220"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122b9038c2a81c0211c6fb632fa6ffe4c2529c42", "fields": {"nom_de_la_commune": "POULLAN SUR MER", "libell_d_acheminement": "POULLAN SUR MER", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29226"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53eaca321319703ef7bd98a2283942a9053f44f1", "fields": {"nom_de_la_commune": "POULLAOUEN", "libell_d_acheminement": "POULLAOUEN", "code_postal": "29246", "coordonnees_gps": [48.3452916463, -3.63011667373], "code_commune_insee": "29227"}, "geometry": {"type": "Point", "coordinates": [-3.63011667373, 48.3452916463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0dd1066935c349495f73f7aac824e0a293829d", "fields": {"nom_de_la_commune": "LE RELECQ KERHUON", "libell_d_acheminement": "LE RELECQ KERHUON", "code_postal": "29480", "coordonnees_gps": [48.4030607499, -4.40121515046], "code_commune_insee": "29235"}, "geometry": {"type": "Point", "coordinates": [-4.40121515046, 48.4030607499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3a987282bdaac33faed35ca9c50f08eb609baf", "fields": {"nom_de_la_commune": "RIEC SUR BELON", "libell_d_acheminement": "RIEC SUR BELON", "code_postal": "29340", "coordonnees_gps": [47.8492743509, -3.69074275177], "code_commune_insee": "29236"}, "geometry": {"type": "Point", "coordinates": [-3.69074275177, 47.8492743509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdea5074321acddd6c313155895228b76b3f65f3", "fields": {"nom_de_la_commune": "LA ROCHE MAURICE", "libell_d_acheminement": "LA ROCHE MAURICE", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29237"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d41b94b91bf150db1e6c146e73c05577651c7a", "fields": {"nom_de_la_commune": "ST POL DE LEON", "libell_d_acheminement": "ST POL DE LEON", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29259"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bac7cd420db72da28ad6a9b1498a1f256767536", "fields": {"nom_de_la_commune": "STE SEVE", "libell_d_acheminement": "STE SEVE", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29265"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ad0a88722e95d56848246776eb82b7959a651b", "fields": {"code_postal": "29410", "code_commune_insee": "29266", "libell_d_acheminement": "ST THEGONNEC LOC EGUINER", "ligne_5": "LOC EGUINER ST THEGONNEC", "nom_de_la_commune": "ST THEGONNEC LOC EGUINER", "coordonnees_gps": [48.4944200655, -3.89854217]}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb06525a2cde66be75dc09ba615468329362b7d", "fields": {"nom_de_la_commune": "ST URBAIN", "libell_d_acheminement": "ST URBAIN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29270"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356c3d898a1b7dd22b26b0f410a66f4a2a607e1e", "fields": {"nom_de_la_commune": "ST VOUGAY", "libell_d_acheminement": "ST VOUGAY", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29271"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8938819a994eed13d741323e66848cb30a7d6eb3", "fields": {"nom_de_la_commune": "RENAISON", "libell_d_acheminement": "RENAISON", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42182"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8f6cadc3c9f5d678c29eaa27f4d42b0fa700b9", "fields": {"nom_de_la_commune": "RIVAS", "libell_d_acheminement": "RIVAS", "code_postal": "42340", "coordonnees_gps": [45.5673382654, 4.26910796554], "code_commune_insee": "42185"}, "geometry": {"type": "Point", "coordinates": [4.26910796554, 45.5673382654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecaecbcf7422b5bb26566e2337aea948ed3fdfc5", "fields": {"nom_de_la_commune": "ROZIER COTES D AUREC", "libell_d_acheminement": "ROZIER COTES D AUREC", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42192"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16759602fd73066ae92fce1c329772bdd73449e", "fields": {"nom_de_la_commune": "STE AGATHE LA BOUTERESSE", "libell_d_acheminement": "STE AGATHE LA BOUTERESSE", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42197"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee5ad7d9cff6aee19d3f5ef88d5c40b2e3f2c7a", "fields": {"nom_de_la_commune": "ST BONNET DES QUARTS", "libell_d_acheminement": "ST BONNET DES QUARTS", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42203"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033903bd2599d557e69af461eeb1274989a0350a", "fields": {"nom_de_la_commune": "ST BONNET LES OULES", "libell_d_acheminement": "ST BONNET LES OULES", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42206"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f767bf7d5e4532e70eecc01b49e054d2ffa8f0a6", "fields": {"code_postal": "42400", "code_commune_insee": "42207", "libell_d_acheminement": "ST CHAMOND", "ligne_5": "ST MARTIN EN COAILLEUX", "nom_de_la_commune": "ST CHAMOND", "coordonnees_gps": [45.4701877634, 4.50203719758]}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d288125d7ba8feb6fae166fe22f58c070d68b30", "fields": {"nom_de_la_commune": "STE CROIX EN JAREZ", "libell_d_acheminement": "STE CROIX EN JAREZ", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42210"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c6989a9e8a2c406ce933cbb7965d79bf0e5ccc", "fields": {"nom_de_la_commune": "ST CYR DE FAVIERES", "libell_d_acheminement": "ST CYR DE FAVIERES", "code_postal": "42123", "coordonnees_gps": [45.9494163931, 4.07525689543], "code_commune_insee": "42212"}, "geometry": {"type": "Point", "coordinates": [4.07525689543, 45.9494163931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34d49bbef5959a25b935750a561453387fc5be9", "fields": {"nom_de_la_commune": "ST ETIENNE LE MOLARD", "libell_d_acheminement": "ST ETIENNE LE MOLARD", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42219"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56a0ed33c7e4457fd7d783ef215f93553c27f999", "fields": {"nom_de_la_commune": "ST FORGEUX LESPINASSE", "libell_d_acheminement": "ST FORGEUX LESPINASSE", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42220"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c652026338b6f3c43acf586a26cc198fac914814", "fields": {"nom_de_la_commune": "STE FOY ST SULPICE", "libell_d_acheminement": "STE FOY ST SULPICE", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42221"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0fa4e32ea58556685278881c5d679ade6e7bd5", "fields": {"nom_de_la_commune": "GENILAC", "libell_d_acheminement": "GENILAC", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42225"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bd072731ffe9d29a9ebb968dcdacd47acb7030", "fields": {"nom_de_la_commune": "ST GEORGES EN COUZAN", "libell_d_acheminement": "ST GEORGES EN COUZAN", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42227"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de0831d3d6dfa3ceec4cd72c92b28d09b2f9a48", "fields": {"nom_de_la_commune": "ST GERMAIN LA MONTAGNE", "libell_d_acheminement": "ST GERMAIN LA MONTAGNE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42229"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6647b8898c00dfc2c5d6d4812a720af0c1368bec", "fields": {"nom_de_la_commune": "ST GERMAIN LESPINASSE", "libell_d_acheminement": "ST GERMAIN LESPINASSE", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42231"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ca7ab1e156d7e4d9798de01c713759c868e49b", "fields": {"nom_de_la_commune": "ST HAON LE CHATEL", "libell_d_acheminement": "ST HAON LE CHATEL", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42232"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d5d9ac6fe9ecfe3a656dc887005b62c79d7f712", "fields": {"nom_de_la_commune": "ST HEAND", "libell_d_acheminement": "ST HEAND", "code_postal": "42570", "coordonnees_gps": [45.5307279114, 4.38118209598], "code_commune_insee": "42234"}, "geometry": {"type": "Point", "coordinates": [4.38118209598, 45.5307279114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0cd369b1f88cb3282d2e313ce481819ac140cc", "fields": {"nom_de_la_commune": "ST JEAN BONNEFONDS", "libell_d_acheminement": "ST JEAN BONNEFONDS", "code_postal": "42650", "coordonnees_gps": [45.4566338869, 4.44834110414], "code_commune_insee": "42237"}, "geometry": {"type": "Point", "coordinates": [4.44834110414, 45.4566338869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d81fbb37cc5dc34699cf1b034279ef3f0806076", "fields": {"nom_de_la_commune": "ST JEAN SOLEYMIEUX", "libell_d_acheminement": "ST JEAN SOLEYMIEUX", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42240"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5344a17969c55aec177c09e8b3329ef5aee71ae", "fields": {"nom_de_la_commune": "ST JUST EN BAS", "libell_d_acheminement": "ST JUST EN BAS", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42247"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5cb701b195e96abc44ec122f32cbef9dedbba0", "fields": {"nom_de_la_commune": "ST LAURENT LA CONCHE", "libell_d_acheminement": "ST LAURENT LA CONCHE", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42251"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54358f723bfdb8eed291965f646c8de6e9a5b0f3", "fields": {"nom_de_la_commune": "ST MARTIN D ESTREAUX", "libell_d_acheminement": "ST MARTIN D ESTREAUX", "code_postal": "42620", "coordonnees_gps": [46.2033046771, 3.79612534085], "code_commune_insee": "42257"}, "geometry": {"type": "Point", "coordinates": [3.79612534085, 46.2033046771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1116007cec8d2ba0852d9910cca0254b1357bff0", "fields": {"nom_de_la_commune": "ST MICHEL SUR RHONE", "libell_d_acheminement": "ST MICHEL SUR RHONE", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42265"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb37f9f4fa69e6e135f141fe206bfd9c026ac950", "fields": {"nom_de_la_commune": "ST ROMAIN D URFE", "libell_d_acheminement": "ST ROMAIN D URFE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42282"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6222f94d53382d36553b1edcf6afab57f9ca0db", "fields": {"nom_de_la_commune": "ST ROMAIN LE PUY", "libell_d_acheminement": "ST ROMAIN LE PUY", "code_postal": "42610", "coordonnees_gps": [45.5527385083, 4.11908617697], "code_commune_insee": "42285"}, "geometry": {"type": "Point", "coordinates": [4.11908617697, 45.5527385083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0dd58fe142cbcbf158a6b4a44cfc6b2801a1b84", "fields": {"nom_de_la_commune": "ST SAUVEUR EN RUE", "libell_d_acheminement": "ST SAUVEUR EN RUE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42287"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9199b4012232dd7923b48b6e507a77f7d04149aa", "fields": {"nom_de_la_commune": "ST VICTOR SUR RHINS", "libell_d_acheminement": "ST VICTOR SUR RHINS", "code_postal": "42630", "coordonnees_gps": [46.0004668112, 4.2221699814], "code_commune_insee": "42293"}, "geometry": {"type": "Point", "coordinates": [4.2221699814, 46.0004668112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb2d43a824cdb525fe582f987adc2be5c0fd669", "fields": {"nom_de_la_commune": "SALVIZINET", "libell_d_acheminement": "SALVIZINET", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42297"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621f455c10290f794e722e259e3c350d617b5523", "fields": {"nom_de_la_commune": "SAUVAIN", "libell_d_acheminement": "SAUVAIN", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42298"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "228533c1d9fb850f9634762dc33f9c0b9dee9c93", "fields": {"nom_de_la_commune": "SOUTERNON", "libell_d_acheminement": "SOUTERNON", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42303"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f28fda8c725b6e5fd24f3e5812b64a577855c7", "fields": {"nom_de_la_commune": "LA TERRASSE SUR DORLAY", "libell_d_acheminement": "LA TERRASSE SUR DORLAY", "code_postal": "42740", "coordonnees_gps": [45.4411267885, 4.58408605646], "code_commune_insee": "42308"}, "geometry": {"type": "Point", "coordinates": [4.58408605646, 45.4411267885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d527ed9e9d602dafa3e20c947efce381f13383", "fields": {"nom_de_la_commune": "THELIS LA COMBE", "libell_d_acheminement": "THELIS LA COMBE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42310"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c06d875dbc46c6f627e0118466ac870385edbf9", "fields": {"nom_de_la_commune": "VALEILLE", "libell_d_acheminement": "VALEILLE", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42319"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc15f95fab019fbcc5c0ae5b87cd77b9f97d45c7", "fields": {"nom_de_la_commune": "LA VALLA SUR ROCHEFORT", "libell_d_acheminement": "LA VALLA SUR ROCHEFORT", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42321"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66700e7cb08a58b962811309cac6c29a22957789", "fields": {"nom_de_la_commune": "VIOLAY", "libell_d_acheminement": "VIOLAY", "code_postal": "42780", "coordonnees_gps": [45.8519257177, 4.34943755733], "code_commune_insee": "42334"}, "geometry": {"type": "Point", "coordinates": [4.34943755733, 45.8519257177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52a7a0a8b59b0837d56b7fa7db362a5b93bc486", "fields": {"nom_de_la_commune": "VIRICELLES", "libell_d_acheminement": "VIRICELLES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42335"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aeb54b628eb5e889277d7446db14bc0f0f3ca7f", "fields": {"nom_de_la_commune": "AGNAT", "libell_d_acheminement": "AGNAT", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43001"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1fee7824e098f55f1c98c728d8644cf3d34c4e4", "fields": {"nom_de_la_commune": "ARAULES", "libell_d_acheminement": "ARAULES", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43007"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be6a2d73b0bd76eb7a8e4b03e80e2aecd0b74c6", "fields": {"code_postal": "43300", "code_commune_insee": "43013", "libell_d_acheminement": "VISSAC AUTEYRAC", "ligne_5": "VISSAC", "nom_de_la_commune": "VISSAC AUTEYRAC", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa9ca105888b8d53e9ad709384a26e2cc4f5448", "fields": {"nom_de_la_commune": "AZERAT", "libell_d_acheminement": "AZERAT", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43017"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d75c0252f52688189ef03d5b95661a07a82406", "fields": {"nom_de_la_commune": "BAINS", "libell_d_acheminement": "BAINS", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43018"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c1300f4d32f152201d0d5819f5acfc48050849", "fields": {"nom_de_la_commune": "BLASSAC", "libell_d_acheminement": "BLASSAC", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43031"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b36dada004b9f4fce91aec9c20ba3a3dfeb225", "fields": {"nom_de_la_commune": "LE BRIGNON", "libell_d_acheminement": "LE BRIGNON", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43039"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4289c91e6413192a376270c53227a5d6ad896f5", "fields": {"nom_de_la_commune": "BRIOUDE", "libell_d_acheminement": "BRIOUDE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43040"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76126474704ac258b11989083967451227c4cb2c", "fields": {"nom_de_la_commune": "LE CHAMBON SUR LIGNON", "libell_d_acheminement": "LE CHAMBON SUR LIGNON", "code_postal": "43400", "coordonnees_gps": [45.0530604169, 4.31970286969], "code_commune_insee": "43051"}, "geometry": {"type": "Point", "coordinates": [4.31970286969, 45.0530604169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b38d1505c48011c4e5ead70b4e09c04b2cf8cac", "fields": {"nom_de_la_commune": "CHAMPCLAUSE", "libell_d_acheminement": "CHAMPCLAUSE", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43053"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b099c886e833e7666b3028ce00a390999618a4", "fields": {"nom_de_la_commune": "CHAMPCLAUSE", "libell_d_acheminement": "CHAMPCLAUSE", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43053"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8026d10b4f26be5f7ab548e55b42935350bd0be5", "fields": {"nom_de_la_commune": "CHAZELLES", "libell_d_acheminement": "CHAZELLES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43068"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c755bc7e92f34dc4dbc1e92a3a59274ab65931", "fields": {"nom_de_la_commune": "CISTRIERES", "libell_d_acheminement": "CISTRIERES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43073"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915209137caffc699947b0e1d1a096a09edacb6b", "fields": {"nom_de_la_commune": "COUTEUGES", "libell_d_acheminement": "COUTEUGES", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43079"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6900f55ee5aa2abd521ac350c6900aad5cc35d", "fields": {"nom_de_la_commune": "DESGES", "libell_d_acheminement": "DESGES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43085"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc2dc57341532428e9e0554c45fdde4315daf5b", "fields": {"nom_de_la_commune": "DOMEYRAT", "libell_d_acheminement": "DOMEYRAT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43086"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2836a27a1c1440742e2c8cf56b46bcc6091e2b38", "fields": {"nom_de_la_commune": "FELINES", "libell_d_acheminement": "FELINES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43093"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0d540d283d730723f1f61897b5b47132f28560", "fields": {"nom_de_la_commune": "FONTANNES", "libell_d_acheminement": "FONTANNES", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43096"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f5d02da70925313e9ba34936bd7c7b0172683d", "fields": {"nom_de_la_commune": "FREYCENET LA CUCHE", "libell_d_acheminement": "FREYCENET LA CUCHE", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43097"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e734493ef24c149b7a98daca873c028c6207c5", "fields": {"nom_de_la_commune": "FRUGERES LES MINES", "libell_d_acheminement": "FRUGERES LES MINES", "code_postal": "43250", "coordonnees_gps": [45.4003953203, 3.3095057239], "code_commune_insee": "43099"}, "geometry": {"type": "Point", "coordinates": [3.3095057239, 45.4003953203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9d3e2037bca57fb80dcf559315770f8e63a751", "fields": {"nom_de_la_commune": "GOUDET", "libell_d_acheminement": "GOUDET", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43101"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7be07f8844d2f799bceafc812a1f5d5ef361bdab", "fields": {"nom_de_la_commune": "JOSAT", "libell_d_acheminement": "JOSAT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43107"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28794c9b70676cbe47e87e74214d04414d5a036", "fields": {"nom_de_la_commune": "LAVAL SUR DOULON", "libell_d_acheminement": "LAVAL SUR DOULON", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43116"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f46ccc2e5c9b5f9c4e30a12c9e8726364508cab", "fields": {"nom_de_la_commune": "LISSAC", "libell_d_acheminement": "LISSAC", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43122"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafefdad8040a075400a64d9ca9268f0dd1f577b", "fields": {"nom_de_la_commune": "LOUDES", "libell_d_acheminement": "LOUDES", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43124"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174a2921a42332c1a680b8a6e6fac6c486bb5de7", "fields": {"nom_de_la_commune": "LUBILHAC", "libell_d_acheminement": "LUBILHAC", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43125"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95ee498cb6e6ba3ae0d1b78038425da418d239e", "fields": {"nom_de_la_commune": "MEZERES", "libell_d_acheminement": "MEZERES", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43134"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da74f64c7e6b4bbd450018bbe09a07a0608b9590", "fields": {"nom_de_la_commune": "MONTCLARD", "libell_d_acheminement": "MONTCLARD", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43139"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79d4b6afef12f03dc18874d54ce3ae383324bb9", "fields": {"nom_de_la_commune": "MOUDEYRES", "libell_d_acheminement": "MOUDEYRES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43144"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2636a486e92beda45d46c4624497885e5afa3d3", "fields": {"nom_de_la_commune": "OUIDES", "libell_d_acheminement": "OUIDES", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43145"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395f922fc9048dfb38551b36e0808a16d63dffd3", "fields": {"nom_de_la_commune": "PINOLS", "libell_d_acheminement": "PINOLS", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43151"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4978ad7fe938e18dc725842319a3e1d630b469c2", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43165"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933f5654c032acc63a739d595924d4004bbd3745", "fields": {"nom_de_la_commune": "ST BERAIN", "libell_d_acheminement": "ST BERAIN", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43171"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d3a564702366d3f59fb666d46395f03891c09a", "fields": {"nom_de_la_commune": "ST CHRISTOPHE D ALLIER", "libell_d_acheminement": "ST CHRISTOPHE D ALLIER", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43173"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6e0fdcae6ff21a1ca5ab536a9c88afe3d0f607f", "fields": {"nom_de_la_commune": "STE FLORINE", "libell_d_acheminement": "STE FLORINE", "code_postal": "43250", "coordonnees_gps": [45.4003953203, 3.3095057239], "code_commune_insee": "43185"}, "geometry": {"type": "Point", "coordinates": [3.3095057239, 45.4003953203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8de98ebc5ad9b5f6ffb7b21c409365db77fdc4", "fields": {"nom_de_la_commune": "ST JEAN D AUBRIGOUX", "libell_d_acheminement": "ST JEAN D AUBRIGOUX", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43196"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e8426ce7d1252144cedd2131134184f8522418", "fields": {"nom_de_la_commune": "ST JEAN DE NAY", "libell_d_acheminement": "ST JEAN DE NAY", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43197"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdf5b8823ef59ddb6563ef7964958523a953ca5", "fields": {"nom_de_la_commune": "ST JEAN LACHALM", "libell_d_acheminement": "ST JEAN LACHALM", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43198"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3425b1096fe89f3b41aac6f27ef3d63fa251eaa", "fields": {"nom_de_la_commune": "ST JULIEN DES CHAZES", "libell_d_acheminement": "ST JULIEN DES CHAZES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43202"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8591926bb5d9adccfc17296bfcca328915b002b9", "fields": {"nom_de_la_commune": "STE MARGUERITE", "libell_d_acheminement": "STE MARGUERITE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43208"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25126fe590d709438de36d48c234b60c3423953", "fields": {"nom_de_la_commune": "ST MARTIN DE FUGERES", "libell_d_acheminement": "ST MARTIN DE FUGERES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43210"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fb7e899c282a9a192abd8b51d7b03c1446dc75", "fields": {"nom_de_la_commune": "ST PAL DE CHALENCON", "libell_d_acheminement": "ST PAL DE CHALENCON", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43212"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799cf627fff94c98dd4fc44c4ba9115cc53520b7", "fields": {"nom_de_la_commune": "ST PIERRE DU CHAMP", "libell_d_acheminement": "ST PIERRE DU CHAMP", "code_postal": "43810", "coordonnees_gps": [45.2402907147, 3.91556730056], "code_commune_insee": "43217"}, "geometry": {"type": "Point", "coordinates": [3.91556730056, 45.2402907147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d283b90c9dfb9dd29df4af478d42844e02942aae", "fields": {"nom_de_la_commune": "VAZEILLES LIMANDRE", "libell_d_acheminement": "VAZEILLES LIMANDRE", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43254"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8b5e28282eb56073fc53b8b059f4ababb51d41", "fields": {"nom_de_la_commune": "VENTEUGES", "libell_d_acheminement": "VENTEUGES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43256"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c75893fb53f398e4bb441657b89aa9d9b91b65", "fields": {"nom_de_la_commune": "VERGEZAC", "libell_d_acheminement": "VERGEZAC", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43257"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2cf3d4ad3b81ffcc7ba8c5b782e64151acab64c", "fields": {"nom_de_la_commune": "VOREY", "libell_d_acheminement": "VOREY", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43267"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff3fcc2b2af936aa3b2d8ef8b79723a20233622", "fields": {"nom_de_la_commune": "YSSINGEAUX", "libell_d_acheminement": "YSSINGEAUX", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43268"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a7ba87915a32f34fbce073bf966b85b630f1a5", "fields": {"nom_de_la_commune": "AIGREFEUILLE SUR MAINE", "libell_d_acheminement": "AIGREFEUILLE SUR MAINE", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44002"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "585a8597d9cec92259f3745e0d3106aefe87860d", "fields": {"nom_de_la_commune": "BOUAYE", "libell_d_acheminement": "BOUAYE", "code_postal": "44830", "coordonnees_gps": [47.1596986296, -1.70104385056], "code_commune_insee": "44018"}, "geometry": {"type": "Point", "coordinates": [-1.70104385056, 47.1596986296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b661a9bee5caedc8c65dbef670dbe52529ec06f", "fields": {"nom_de_la_commune": "LA CHAPELLE GLAIN", "libell_d_acheminement": "LA CHAPELLE GLAIN", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44031"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8611b1525b11f79f83db004d5cb63addca509d1e", "fields": {"nom_de_la_commune": "LA CHAPELLE HEULIN", "libell_d_acheminement": "LA CHAPELLE HEULIN", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44032"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e1cf8452e9a86afb400a6b7bb350f6714be86f", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR ERDRE", "libell_d_acheminement": "LA CHAPELLE SUR ERDRE", "code_postal": "44240", "coordonnees_gps": [47.3309393698, -1.53749152159], "code_commune_insee": "44035"}, "geometry": {"type": "Point", "coordinates": [-1.53749152159, 47.3309393698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91853de743365e78ba68a98541127c08c421316c", "fields": {"nom_de_la_commune": "CHEIX EN RETZ", "libell_d_acheminement": "CHEIX EN RETZ", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44039"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0ac50a62a044d36eb16005e0e0311c34921cfb", "fields": {"nom_de_la_commune": "CORSEPT", "libell_d_acheminement": "CORSEPT", "code_postal": "44560", "coordonnees_gps": [47.2711622125, -2.08332725108], "code_commune_insee": "44046"}, "geometry": {"type": "Point", "coordinates": [-2.08332725108, 47.2711622125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23fa554499c1d57e6ed19a0a5826fbdd34e33c0", "fields": {"nom_de_la_commune": "COUERON", "libell_d_acheminement": "COUERON", "code_postal": "44220", "coordonnees_gps": [47.230492836, -1.73028941593], "code_commune_insee": "44047"}, "geometry": {"type": "Point", "coordinates": [-1.73028941593, 47.230492836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebf81362a8d44b11d015d7fb8e66fe0fd11fe0d", "fields": {"nom_de_la_commune": "FAY DE BRETAGNE", "libell_d_acheminement": "FAY DE BRETAGNE", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44056"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebaa0c776541e1afde52e84168677cf5d41acf6e", "fields": {"nom_de_la_commune": "GRANDCHAMPS DES FONTAINES", "libell_d_acheminement": "GRANDCHAMPS DES FONTAINES", "code_postal": "44119", "coordonnees_gps": [47.3409762189, -1.62124994195], "code_commune_insee": "44066"}, "geometry": {"type": "Point", "coordinates": [-1.62124994195, 47.3409762189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e511a43e4cf84abcff80ab5702182a2f1782d1", "fields": {"code_postal": "44290", "code_commune_insee": "44067", "libell_d_acheminement": "GUEMENE PENFAO", "ligne_5": "GUENOUVRY", "nom_de_la_commune": "GUEMENE PENFAO", "coordonnees_gps": [47.6456298963, -1.81807007019]}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2178aa7fbfa4b4e3274745a56e7018b305bba35c", "fields": {"code_postal": "44530", "code_commune_insee": "44068", "libell_d_acheminement": "GUENROUET", "ligne_5": "NOTRE DAME DE GRACE", "nom_de_la_commune": "GUENROUET", "coordonnees_gps": [47.5092008769, -2.00892310392]}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e468179a02049d80d623addcce578aa8ad3006", "fields": {"code_postal": "44350", "code_commune_insee": "44069", "libell_d_acheminement": "GUERANDE", "ligne_5": "CLIS", "nom_de_la_commune": "GUERANDE", "coordonnees_gps": [47.3439577414, -2.41627951573]}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f6f48dc4fbc6f33efbb4c4bdd9f9a269288da2", "fields": {"nom_de_la_commune": "HAUTE GOULAINE", "libell_d_acheminement": "HAUTE GOULAINE", "code_postal": "44115", "coordonnees_gps": [47.2024487913, -1.43097454176], "code_commune_insee": "44071"}, "geometry": {"type": "Point", "coordinates": [-1.43097454176, 47.2024487913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957ac89df628c83c3c495c0c7c9003f957ef308b", "fields": {"nom_de_la_commune": "JANS", "libell_d_acheminement": "JANS", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44076"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf77e9aeb6b0a3d893196d844276b94a573bf6a", "fields": {"nom_de_la_commune": "PRE ST EVROULT", "libell_d_acheminement": "PRE ST EVROULT", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28305"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ed4e2d4ad0279097b369abf2f3e444d2d37c7c", "fields": {"nom_de_la_commune": "PRE ST MARTIN", "libell_d_acheminement": "PRE ST MARTIN", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28306"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e52f12120ace0d53e053870874e0f77af74b8a", "fields": {"nom_de_la_commune": "LE PUISET", "libell_d_acheminement": "LE PUISET", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28311"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c18df3bb097ee3998e6b7d9a1a708e8fe6d90b4", "fields": {"nom_de_la_commune": "LES RESSUINTES", "libell_d_acheminement": "LES RESSUINTES", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28314"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98daf3af41c3fbe278aedd4018e0ce59ee930e1e", "fields": {"nom_de_la_commune": "ROHAIRE", "libell_d_acheminement": "ROHAIRE", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28316"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1adc87f08bff5fb53b22e855c7f52557e280b84c", "fields": {"nom_de_la_commune": "ROINVILLE", "libell_d_acheminement": "ROINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28317"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e11a40522a9052f9d970d237f8ad5ef36f7747", "fields": {"nom_de_la_commune": "ROMILLY SUR AIGRE", "libell_d_acheminement": "ROMILLY SUR AIGRE", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28318"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51a5ed10db66f9793aa37d85b6b4ff5599233e4", "fields": {"nom_de_la_commune": "ROUVRES", "libell_d_acheminement": "ROUVRES", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28321"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f3b0afbb0cc63b65b7f7a640a3f4191c5ea3e8", "fields": {"nom_de_la_commune": "RUEIL LA GADELIERE", "libell_d_acheminement": "RUEIL LA GADELIERE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28322"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9752f39520875906aa09f2482e244f10a4064030", "fields": {"nom_de_la_commune": "ST AUBIN DES BOIS", "libell_d_acheminement": "ST AUBIN DES BOIS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28325"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2362ff286ccd2ae009647c4056dc633d9e702269", "fields": {"nom_de_la_commune": "ST DENIS DES PUITS", "libell_d_acheminement": "ST DENIS DES PUITS", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28333"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770326359ac4a16ad1d5220d916fc54667222aef", "fields": {"nom_de_la_commune": "ST GEORGES SUR EURE", "libell_d_acheminement": "ST GEORGES SUR EURE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28337"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48f9c98518acc5f2a080e4b5535bb5955b03998", "fields": {"nom_de_la_commune": "ST LUBIN DE CRAVANT", "libell_d_acheminement": "ST LUBIN DE CRAVANT", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28346"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788a14881d44fd879326ba006120e0abf7880716", "fields": {"nom_de_la_commune": "ST LUBIN DE LA HAYE", "libell_d_acheminement": "ST LUBIN DE LA HAYE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28347"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e125e4c2f015d1657369fa5ff8e3d18013c95f", "fields": {"nom_de_la_commune": "ST MAIXME HAUTERIVE", "libell_d_acheminement": "ST MAIXME HAUTERIVE", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28351"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a76b3e7b5c3e488acea2798d075bd265832aec", "fields": {"nom_de_la_commune": "SANTILLY", "libell_d_acheminement": "SANTILLY", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28367"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4cbf24d3252b03c16b999ee73163f137a29f7a", "fields": {"nom_de_la_commune": "SAULNIERES", "libell_d_acheminement": "SAULNIERES", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28369"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6630d2242da6134255d1f2301cf8a97664de887", "fields": {"nom_de_la_commune": "SENANTES", "libell_d_acheminement": "SENANTES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28372"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a692f9a2eb1b2be00b1b3a909c76b3410455a81", "fields": {"nom_de_la_commune": "SOURS", "libell_d_acheminement": "SOURS", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28380"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb310cac558942c92493b23a956b60c6f6ab47be", "fields": {"nom_de_la_commune": "TERMINIERS", "libell_d_acheminement": "TERMINIERS", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28382"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b353afbf28c6d1f838147149a341666ad0372eca", "fields": {"code_postal": "28150", "code_commune_insee": "28383", "libell_d_acheminement": "THEUVILLE", "ligne_5": "PEZY", "nom_de_la_commune": "THEUVILLE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc938ba78c8d79b86dc7f2517b3ea4b64fefce55", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "CHENE CHENU", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac48b6eb5515d159dfed103214ac9951a8b6166", "fields": {"nom_de_la_commune": "UNVERRE", "libell_d_acheminement": "UNVERRE", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28398"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4825220c943ae7a270794d9cb2c023e9e5772db9", "fields": {"nom_de_la_commune": "VICHERES", "libell_d_acheminement": "VICHERES", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28407"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c6760bd7ced0b860452a6b5a49a267df85371b", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28411"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71cae0996cbf62269140fa5e1a717a60e3af07f0", "fields": {"nom_de_la_commune": "VILLEMEUX SUR EURE", "libell_d_acheminement": "VILLEMEUX SUR EURE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28415"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0826bc20caee7584209ac2797b5d3c9d4efacd1a", "fields": {"nom_de_la_commune": "ARZANO", "libell_d_acheminement": "ARZANO", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29002"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34eb70a1e6dd5d21dacf99f4a76948cc2c5891cd", "fields": {"nom_de_la_commune": "BANNALEC", "libell_d_acheminement": "BANNALEC", "code_postal": "29380", "coordonnees_gps": [47.931095922, -3.67533522316], "code_commune_insee": "29004"}, "geometry": {"type": "Point", "coordinates": [-3.67533522316, 47.931095922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d06f984284c2eaaf54da3c260800810190df18d", "fields": {"nom_de_la_commune": "BOHARS", "libell_d_acheminement": "BOHARS", "code_postal": "29820", "coordonnees_gps": [48.4223401129, -4.55120430112], "code_commune_insee": "29011"}, "geometry": {"type": "Point", "coordinates": [-4.55120430112, 48.4223401129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b06f34eb29d024d1cb1cd3bcea4134bc83d157", "fields": {"nom_de_la_commune": "BRASPARTS", "libell_d_acheminement": "BRASPARTS", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29016"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa45db0e1756496c1d23774b1e444cefc406e1b", "fields": {"nom_de_la_commune": "CARHAIX PLOUGUER", "libell_d_acheminement": "CARHAIX PLOUGUER", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29024"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdb68f074d9ad92820a654d96868977e539ec25", "fields": {"nom_de_la_commune": "CHATEAULIN", "libell_d_acheminement": "CHATEAULIN", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29026"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211016c6ca21cbbfed673bdcabd55f85c1abd773", "fields": {"nom_de_la_commune": "CLEDEN CAP SIZUN", "libell_d_acheminement": "CLEDEN CAP SIZUN", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29028"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9508b633f4c3efbfdd0b7b927c41ac29ae1a808c", "fields": {"nom_de_la_commune": "CLEDEN POHER", "libell_d_acheminement": "CLEDEN POHER", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29029"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32c3c237335d4c1c61196b405e89c6d422613712", "fields": {"nom_de_la_commune": "CLEDER", "libell_d_acheminement": "CLEDER", "code_postal": "29233", "coordonnees_gps": [48.6604596156, -4.12456271442], "code_commune_insee": "29030"}, "geometry": {"type": "Point", "coordinates": [-4.12456271442, 48.6604596156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1fac03c63dd2f19fc9df7d0f77b2f4ea35b7051", "fields": {"nom_de_la_commune": "LE CLOITRE ST THEGONNEC", "libell_d_acheminement": "LE CLOITRE ST THEGONNEC", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29034"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7eb39e77c94a27da1917d8013a74194b635ea42", "fields": {"nom_de_la_commune": "CONCARNEAU", "libell_d_acheminement": "CONCARNEAU", "code_postal": "29900", "coordonnees_gps": [47.8961173122, -3.9073816698], "code_commune_insee": "29039"}, "geometry": {"type": "Point", "coordinates": [-3.9073816698, 47.8961173122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16614eea11d8135f6ca7521b793045c0503c7d5", "fields": {"nom_de_la_commune": "DINEAULT", "libell_d_acheminement": "DINEAULT", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29044"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621a88c70693e59cfc78e73fc677009e90108610", "fields": {"nom_de_la_commune": "EDERN", "libell_d_acheminement": "EDERN", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29048"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde266f3b114ded9eecc4c1c9501d79d5a10af19", "fields": {"code_postal": "29170", "code_commune_insee": "29058", "libell_d_acheminement": "FOUESNANT", "ligne_5": "BEGMEIL", "nom_de_la_commune": "FOUESNANT", "coordonnees_gps": [47.912618887, -4.02039306441]}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c040ae1461b4d346c303dae93d5f4f15c2c089fd", "fields": {"nom_de_la_commune": "GOUESNACH", "libell_d_acheminement": "GOUESNACH", "code_postal": "29950", "coordonnees_gps": [47.9011430985, -4.09292071146], "code_commune_insee": "29060"}, "geometry": {"type": "Point", "coordinates": [-4.09292071146, 47.9011430985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "366bd7df86172d346c7fb45ff55cb600deffe681", "fields": {"nom_de_la_commune": "GUERLESQUIN", "libell_d_acheminement": "GUERLESQUIN", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29067"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df087f9cd80f69b6909972da705adcf8fb31226e", "fields": {"nom_de_la_commune": "GUILER SUR GOYEN", "libell_d_acheminement": "GUILER SUR GOYEN", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29070"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3beafd86606cc3c2774feab3fee241dbf4592bb9", "fields": {"nom_de_la_commune": "GUIPRONVEL", "libell_d_acheminement": "GUIPRONVEL", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29076"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6bf9bb481e5ab53ddef6b76201efb11cb9d738", "fields": {"nom_de_la_commune": "GUISSENY", "libell_d_acheminement": "GUISSENY", "code_postal": "29880", "coordonnees_gps": [48.6082093608, -4.46096917427], "code_commune_insee": "29077"}, "geometry": {"type": "Point", "coordinates": [-4.46096917427, 48.6082093608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e35e1b62634e3641fbb28a3c542dd3e30201af", "fields": {"nom_de_la_commune": "IRVILLAC", "libell_d_acheminement": "IRVILLAC", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29086"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daca0a705c782659e38c46a0df7982ab852c9517", "fields": {"nom_de_la_commune": "LE JUCH", "libell_d_acheminement": "LE JUCH", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29087"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d0ac4487f40bd4ddcb18d2e6e8100d2af5d545", "fields": {"nom_de_la_commune": "KERGLOFF", "libell_d_acheminement": "KERGLOFF", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29089"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f74d541a85e237e4fd0aa0b785fcd941804e12", "fields": {"nom_de_la_commune": "KERSAINT PLABENNEC", "libell_d_acheminement": "KERSAINT PLABENNEC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29095"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e289af8464500f0fd9d55fba9194a6ff821c766", "fields": {"nom_de_la_commune": "LAMPAUL PLOUARZEL", "libell_d_acheminement": "LAMPAUL PLOUARZEL", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29098"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592326d09a2f316f677d0cbbfcf89a0cb7c34f56", "fields": {"code_postal": "29870", "code_commune_insee": "29101", "libell_d_acheminement": "LANDEDA", "ligne_5": "ABERWRACH", "nom_de_la_commune": "LANDEDA", "coordonnees_gps": [48.5578339908, -4.54140590584]}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff7e55f4f1a4c3f176a0dfbaa9b1bcbc89d0b6e", "fields": {"nom_de_la_commune": "LANDREVARZEC", "libell_d_acheminement": "LANDREVARZEC", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29106"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48922f31a4911fa941978545e087224003511a02", "fields": {"nom_de_la_commune": "LANDUNVEZ", "libell_d_acheminement": "LANDUNVEZ", "code_postal": "29840", "coordonnees_gps": [48.5120330691, -4.73920454797], "code_commune_insee": "29109"}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28d8314dc2b5398f43e2b76f2a9c91b149329e3", "fields": {"nom_de_la_commune": "LANNEANOU", "libell_d_acheminement": "LANNEANOU", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29114"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d85c556d2fc0c07612f55a8bf601d8e1b49314b", "fields": {"nom_de_la_commune": "LANRIVOARE", "libell_d_acheminement": "LANRIVOARE", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29119"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ce7d7322a4baff560c1f8bd539ac6ddfe807e8", "fields": {"nom_de_la_commune": "LEUHAN", "libell_d_acheminement": "LEUHAN", "code_postal": "29390", "coordonnees_gps": [48.0434565453, -3.74078838463], "code_commune_insee": "29125"}, "geometry": {"type": "Point", "coordinates": [-3.74078838463, 48.0434565453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0024efad5f46ed93b7245c7ac7779d0861316a4", "fields": {"nom_de_la_commune": "LOCMELAR", "libell_d_acheminement": "LOCMELAR", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29131"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9669b6cb662966c6ad654ce5abb711441a38949d", "fields": {"nom_de_la_commune": "LOCTUDY", "libell_d_acheminement": "LOCTUDY", "code_postal": "29750", "coordonnees_gps": [47.8249550518, -4.18787458821], "code_commune_insee": "29135"}, "geometry": {"type": "Point", "coordinates": [-4.18787458821, 47.8249550518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8427cc8c4b40625d8a9345012213ff55c1e5320", "fields": {"nom_de_la_commune": "LOQUEFFRET", "libell_d_acheminement": "LOQUEFFRET", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29141"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae2371cf4cc705a96dd3917fbd955759b910ce3", "fields": {"nom_de_la_commune": "MAHALON", "libell_d_acheminement": "MAHALON", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29143"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e7101ac332437dbc54db5ec7a3fb6577326e28", "fields": {"nom_de_la_commune": "MOELAN SUR MER", "libell_d_acheminement": "MOELAN SUR MER", "code_postal": "29350", "coordonnees_gps": [47.8062886655, -3.645915458], "code_commune_insee": "29150"}, "geometry": {"type": "Point", "coordinates": [-3.645915458, 47.8062886655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ae32e0425784355f4efab09465469c7d59f09c", "fields": {"code_postal": "29350", "code_commune_insee": "29150", "libell_d_acheminement": "MOELAN SUR MER", "ligne_5": "KERFANY LES PINS", "nom_de_la_commune": "MOELAN SUR MER", "coordonnees_gps": [47.8062886655, -3.645915458]}, "geometry": {"type": "Point", "coordinates": [-3.645915458, 47.8062886655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2ff1489cb6fa16949afa626c8b55d7e160990ca", "fields": {"nom_de_la_commune": "PEUMERIT", "libell_d_acheminement": "PEUMERIT", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29159"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a924d8312bc32a66c0747c605f9610c06a219f7c", "fields": {"nom_de_la_commune": "PLOBANNALEC LESCONIL", "libell_d_acheminement": "PLOBANNALEC LESCONIL", "code_postal": "29740", "coordonnees_gps": [47.8211386982, -4.22818525264], "code_commune_insee": "29165"}, "geometry": {"type": "Point", "coordinates": [-4.22818525264, 47.8211386982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81bff0cf47c303fe0cf186020bfa0dfb895082d7", "fields": {"nom_de_la_commune": "PLOUDANIEL", "libell_d_acheminement": "PLOUDANIEL", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29179"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf3ecada70fd8936c4148b2912f6a08b86c05b3", "fields": {"nom_de_la_commune": "PLOUEGAT GUERAND", "libell_d_acheminement": "PLOUEGAT GUERAND", "code_postal": "29620", "coordonnees_gps": [48.6479299732, -3.70272210639], "code_commune_insee": "29182"}, "geometry": {"type": "Point", "coordinates": [-3.70272210639, 48.6479299732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdcad2dd9b1a9de436ab8ea05986a91679f4b5e3", "fields": {"nom_de_la_commune": "PLOUESCAT", "libell_d_acheminement": "PLOUESCAT", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29185"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9eaddccd0671fbe561eb6bae5fd007325c02c7b", "fields": {"nom_de_la_commune": "PLOUGONVELIN", "libell_d_acheminement": "PLOUGONVELIN", "code_postal": "29217", "coordonnees_gps": [48.3548137568, -4.73034046541], "code_commune_insee": "29190"}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cde3c8d3c2e52ec8670d5a958967772dd17f10", "fields": {"nom_de_la_commune": "PLOUHINEC", "libell_d_acheminement": "PLOUHINEC", "code_postal": "29780", "coordonnees_gps": [48.013893245, -4.48458481137], "code_commune_insee": "29197"}, "geometry": {"type": "Point", "coordinates": [-4.48458481137, 48.013893245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78ff4831559cfcd056387d7c312353067b09b1d", "fields": {"nom_de_la_commune": "PLOURIN", "libell_d_acheminement": "PLOURIN", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29208"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e5d49366a429e735a40b5692934422ca53a7ce", "fields": {"nom_de_la_commune": "PLOUVORN", "libell_d_acheminement": "PLOUVORN", "code_postal": "29420", "coordonnees_gps": [48.5999876589, -4.00739831758], "code_commune_insee": "29210"}, "geometry": {"type": "Point", "coordinates": [-4.00739831758, 48.5999876589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce91dbe148c74d32dc0e5bf94966a2c356196514", "fields": {"nom_de_la_commune": "PORSPODER", "libell_d_acheminement": "PORSPODER", "code_postal": "29840", "coordonnees_gps": [48.5120330691, -4.73920454797], "code_commune_insee": "29221"}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5be652cb313ce9da223f59bb27ae2c9ff35c263", "fields": {"nom_de_la_commune": "QUIMPERLE", "libell_d_acheminement": "QUIMPERLE", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29233"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e302ccad9db1260edb4947ca05484ca0d9152f1", "fields": {"nom_de_la_commune": "REDENE", "libell_d_acheminement": "REDENE", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29234"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1058ea9b691d328aae8306f3d7a9dd3cfe1f464e", "fields": {"nom_de_la_commune": "ROSCANVEL", "libell_d_acheminement": "ROSCANVEL", "code_postal": "29570", "coordonnees_gps": [48.2895784826, -4.57542430265], "code_commune_insee": "29238"}, "geometry": {"type": "Point", "coordinates": [-4.57542430265, 48.2895784826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5208d57ec358ebb70c5856283e4997f60ef04959", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29254"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79de8f9dc38adddf5bd45fe1abc38a529fb0c672", "fields": {"nom_de_la_commune": "ST PABU", "libell_d_acheminement": "ST PABU", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29257"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e636df6e7f1c9f0bbb993884a69432b03262364e", "fields": {"nom_de_la_commune": "ST RENAN", "libell_d_acheminement": "ST RENAN", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29260"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0804a4a2f93a4264eedfbb4aebfc7fe939afbf15", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29262"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd22594c1ad02a24d9a0340a646bdb2894bcb27", "fields": {"nom_de_la_commune": "ST SEGAL", "libell_d_acheminement": "ST SEGAL", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29263"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ede98c86146951fb784bceafe587e8a1795ea1", "fields": {"nom_de_la_commune": "ST SERVAIS", "libell_d_acheminement": "ST SERVAIS", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29264"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e062bdda4ca3ced5116aa24e399566470fe867", "fields": {"nom_de_la_commune": "ST THOIS", "libell_d_acheminement": "ST THOIS", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29267"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ed5582634fc89bd5ff5ca241fa6521e816b288", "fields": {"nom_de_la_commune": "SANTEC", "libell_d_acheminement": "SANTEC", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29273"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033003bc053b64b234aa388c9f6e6698b9e8f382", "fields": {"nom_de_la_commune": "SIBIRIL", "libell_d_acheminement": "SIBIRIL", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29276"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "111b63b4a59b0525342caa111f000355fd2073be", "fields": {"nom_de_la_commune": "SPEZET", "libell_d_acheminement": "SPEZET", "code_postal": "29540", "coordonnees_gps": [48.1860332797, -3.69150876519], "code_commune_insee": "29278"}, "geometry": {"type": "Point", "coordinates": [-3.69150876519, 48.1860332797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bcfabe718eefd6aead2de83861c42059c68e6c", "fields": {"nom_de_la_commune": "TAULE", "libell_d_acheminement": "TAULE", "code_postal": "29670", "coordonnees_gps": [48.6115229936, -3.90607440481], "code_commune_insee": "29279"}, "geometry": {"type": "Point", "coordinates": [-3.90607440481, 48.6115229936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe41800b74ce8be004b01323ec3d8201c75ee78b", "fields": {"nom_de_la_commune": "TREBABU", "libell_d_acheminement": "TREBABU", "code_postal": "29217", "coordonnees_gps": [48.3548137568, -4.73034046541], "code_commune_insee": "29282"}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f542c67e1220cc78ef055ce60be6c7fcf048d767", "fields": {"nom_de_la_commune": "TREGARVAN", "libell_d_acheminement": "TREGARVAN", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29289"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aed91bbf145c11f4e20f194806e72039d2962064", "fields": {"code_postal": "29590", "code_commune_insee": "29302", "libell_d_acheminement": "PONT DE BUIS LES QUIMERCH", "ligne_5": "QUIMERCH", "nom_de_la_commune": "PONT DE BUIS LES QUIMERCH", "coordonnees_gps": [48.2799947077, -4.10763494114]}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8bff81c2d93ce8aa159c078bade208d2a9aab1", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30002"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "445e3aae5e8c7af4724bb38b6036a02304ff6784", "fields": {"nom_de_la_commune": "AIGUES MORTES", "libell_d_acheminement": "AIGUES MORTES", "code_postal": "30220", "coordonnees_gps": [43.5627760713, 4.22023448009], "code_commune_insee": "30003"}, "geometry": {"type": "Point", "coordinates": [4.22023448009, 43.5627760713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9313043cf013d6c593bf58a3ccae30a6ba0b7bb7", "fields": {"nom_de_la_commune": "AIMARGUES", "libell_d_acheminement": "AIMARGUES", "code_postal": "30470", "coordonnees_gps": [43.6720844575, 4.20379508436], "code_commune_insee": "30006"}, "geometry": {"type": "Point", "coordinates": [4.20379508436, 43.6720844575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d19a55625df2e5e10689e0373117591fd2d2a4a", "fields": {"nom_de_la_commune": "ARAMON", "libell_d_acheminement": "ARAMON", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30012"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcfa5695c55c1111b3c0df4bc8a079562ce2f358", "fields": {"nom_de_la_commune": "ARRE", "libell_d_acheminement": "ARRE", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30016"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c04e66770fc14f709be67c753b5b55644dff50e", "fields": {"nom_de_la_commune": "AUBUSSARGUES", "libell_d_acheminement": "AUBUSSARGUES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30021"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a2839b64e995dca08325ce37f373ed075b57b7", "fields": {"nom_de_la_commune": "AULAS", "libell_d_acheminement": "AULAS", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30024"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee0d35324563e0215a878b53969082b8bc210c7", "fields": {"nom_de_la_commune": "BEZOUCE", "libell_d_acheminement": "BEZOUCE", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30039"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "773547598e00399091a0d98d340bcd6e29983f35", "fields": {"nom_de_la_commune": "BONNEVAUX", "libell_d_acheminement": "BONNEVAUX", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30044"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6011b7508184ef8687ecadb0436b47102bcbc00f", "fields": {"nom_de_la_commune": "BORDEZAC", "libell_d_acheminement": "BORDEZAC", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30045"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe9196142f3e67de49162e5dfe256fd6ae7e22c", "fields": {"nom_de_la_commune": "BRIGNON", "libell_d_acheminement": "BRIGNON", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30053"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6782716020b4d0c21ff81ee22c09c13daf1caff", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18218"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fd7d8fbabce6b91c0b5557a19478a67f6239eaf", "fields": {"nom_de_la_commune": "ST LEGER LE PETIT", "libell_d_acheminement": "ST LEGER LE PETIT", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18220"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98bc81849be26f830d7dd05f0a3fccf884ac85f3", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18224"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b77b6f46e0790e09ee9e8447c40b7941cd37ff9", "fields": {"nom_de_la_commune": "STE MONTAINE", "libell_d_acheminement": "STE MONTAINE", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18227"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e688468a7b8450f61035374bc243eb98549c56", "fields": {"nom_de_la_commune": "ST PIERRE LES BOIS", "libell_d_acheminement": "ST PIERRE LES BOIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18230"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d432c249a1aba8d7709dfe69cf3d82e8c0681b", "fields": {"nom_de_la_commune": "ST PIERRE LES ETIEUX", "libell_d_acheminement": "ST PIERRE LES ETIEUX", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18231"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30b8f0961d96f205b8e9b099b6da5654291557d", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18234"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1d647160fc8764f97803ed25f1b48a26aca984", "fields": {"nom_de_la_commune": "SENNECAY", "libell_d_acheminement": "SENNECAY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18248"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dff7d26b9a301b7d1707c2cf365a1954ce95678", "fields": {"nom_de_la_commune": "SEVRY", "libell_d_acheminement": "SEVRY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18251"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d632db9f4d9f985a1d93e8f0c4380382630a4e0", "fields": {"nom_de_la_commune": "THOU", "libell_d_acheminement": "THOU", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18264"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6790daaa1c2173c8f868b4652e545cfaebcb804d", "fields": {"nom_de_la_commune": "UZAY LE VENON", "libell_d_acheminement": "UZAY LE VENON", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18268"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9195525c36715f324cd764fb18292b544a155c14", "fields": {"nom_de_la_commune": "VAILLY SUR SAULDRE", "libell_d_acheminement": "VAILLY SUR SAULDRE", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18269"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade2a15281cbf5d8bbd92485141f661d2b6773d5", "fields": {"nom_de_la_commune": "VESDUN", "libell_d_acheminement": "VESDUN", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18278"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad210ca4feb22a62f4decb64c80566ede1109ae", "fields": {"nom_de_la_commune": "AFFIEUX", "libell_d_acheminement": "AFFIEUX", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19001"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb5cd7ba584da85a0c682b9f05e8600cd2996cf", "fields": {"nom_de_la_commune": "AIX", "libell_d_acheminement": "AIX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19002"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcef2af4e90e93ab937765cc5b09e3cb06ffc989", "fields": {"nom_de_la_commune": "ALBIGNAC", "libell_d_acheminement": "ALBIGNAC", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19003"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df3388adcdc8a08dc259f00a9f7cd89cbcd1f44", "fields": {"nom_de_la_commune": "ALLASSAC", "libell_d_acheminement": "ALLASSAC", "code_postal": "19240", "coordonnees_gps": [45.2278338531, 1.45884900159], "code_commune_insee": "19005"}, "geometry": {"type": "Point", "coordinates": [1.45884900159, 45.2278338531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8124eb33a905f92c1d7fca56001442afbdaf2c5b", "fields": {"nom_de_la_commune": "AUBAZINES", "libell_d_acheminement": "AUBAZINES", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19013"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceb4d644b11345f3e0555065073d08a9423cfb75", "fields": {"nom_de_la_commune": "BELLECHASSAGNE", "libell_d_acheminement": "BELLECHASSAGNE", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19021"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c60c20bb1429fe3501309254644e7e61a6876c", "fields": {"nom_de_la_commune": "BEYNAT", "libell_d_acheminement": "BEYNAT", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19023"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca05f6ea87a997d80a81d5c127bd44b94cd9255", "fields": {"nom_de_la_commune": "BEYSSAC", "libell_d_acheminement": "BEYSSAC", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19024"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdac5057d0f5e9c752cd0d5cd1d6d9d2a4f6c922", "fields": {"nom_de_la_commune": "BILHAC", "libell_d_acheminement": "BILHAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19026"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77a36e2477e84f7bae52d1f72d6f06da72010f4e", "fields": {"nom_de_la_commune": "BORT LES ORGUES", "libell_d_acheminement": "BORT LES ORGUES", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19028"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b38ea30ed5981ee47c0eb34ff7fa9974cdacb9", "fields": {"nom_de_la_commune": "BRIVE LA GAILLARDE", "libell_d_acheminement": "BRIVE LA GAILLARDE", "code_postal": "19100", "coordonnees_gps": [45.1432638879, 1.51886484736], "code_commune_insee": "19031"}, "geometry": {"type": "Point", "coordinates": [1.51886484736, 45.1432638879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1d52beb1c31ca03a1fe3bb4f56e1989a39d7a2", "fields": {"code_postal": "19430", "code_commune_insee": "19034", "libell_d_acheminement": "CAMPS ST MATHURIN LEOBAZEL", "ligne_5": "ST MATHURIN LEOBAZEL", "nom_de_la_commune": "CAMPS ST MATHURIN LEOBAZEL", "coordonnees_gps": [45.0199120867, 1.9968720483]}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647a1d6f3f1dde4bba7933338185060ce18bb2be", "fields": {"nom_de_la_commune": "LE CHASTANG", "libell_d_acheminement": "LE CHASTANG", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19048"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15ecfcc3bcbda6ea1145afc9d2728869446e2d9", "fields": {"nom_de_la_commune": "CHASTEAUX", "libell_d_acheminement": "CHASTEAUX", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19049"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bad3554bae026509b0c36f54611cd30865c1138", "fields": {"nom_de_la_commune": "CHAVANAC", "libell_d_acheminement": "CHAVANAC", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19052"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5662307c8b34d8cd03a0fb42fb19e01a3ced7b11", "fields": {"nom_de_la_commune": "CORNIL", "libell_d_acheminement": "CORNIL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19061"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fedd26d704d9515dcde45cdccfc71928605b25c1", "fields": {"nom_de_la_commune": "CUREMONTE", "libell_d_acheminement": "CUREMONTE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19067"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05203cb2b2eafe1f351a54850ece00eebc0607e8", "fields": {"nom_de_la_commune": "DARAZAC", "libell_d_acheminement": "DARAZAC", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19069"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddcfbae8d88534fcd623289416726d6a775d112a", "fields": {"nom_de_la_commune": "LACELLE", "libell_d_acheminement": "LACELLE", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19095"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a853dd8d5e9dc100173a407b0e1d521adbaf199", "fields": {"nom_de_la_commune": "LAFAGE SUR SOMBRE", "libell_d_acheminement": "LAFAGE SUR SOMBRE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19097"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e2494117070d5c171edd1b6611de843021edc7", "fields": {"nom_de_la_commune": "LAGLEYGEOLLE", "libell_d_acheminement": "LAGLEYGEOLLE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19099"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30a5fd9ce41e791249627f207bdf6e533cc8576f", "fields": {"nom_de_la_commune": "LAROCHE PRES FEYT", "libell_d_acheminement": "LAROCHE PRES FEYT", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19108"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbbb06ef72b3acbcd74699150721ce3a4c68605", "fields": {"nom_de_la_commune": "LASCAUX", "libell_d_acheminement": "LASCAUX", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19109"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ea8bab35339d70f209f8bc8346c49190e6e813", "fields": {"nom_de_la_commune": "LE LONZAC", "libell_d_acheminement": "LE LONZAC", "code_postal": "19470", "coordonnees_gps": [45.4692753573, 1.7476592385], "code_commune_insee": "19118"}, "geometry": {"type": "Point", "coordinates": [1.7476592385, 45.4692753573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c790d856b25d7119141c4ff7b3655dd6fb59bb", "fields": {"nom_de_la_commune": "LUBERSAC", "libell_d_acheminement": "LUBERSAC", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19121"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066c7296f0cf4e6c245a1920cfb18831654a9849", "fields": {"code_postal": "19360", "code_commune_insee": "19123", "libell_d_acheminement": "MALEMORT", "ligne_5": "VENARSAL", "nom_de_la_commune": "MALEMORT", "coordonnees_gps": [45.1545428877, 1.60311872412]}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85678d40b5f19729be2a83bf750b16e843df591", "fields": {"nom_de_la_commune": "MERCOEUR", "libell_d_acheminement": "MERCOEUR", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19133"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2509f7bb9065966532da3455c0a18d20aa6d2024", "fields": {"nom_de_la_commune": "MESTES", "libell_d_acheminement": "MESTES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19135"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338aee994ed4a51779f0b04bafee8857dc335022", "fields": {"nom_de_la_commune": "MONTAIGNAC ST HIPPOLYTE", "libell_d_acheminement": "MONTAIGNAC ST HIPPOLYTE", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19143"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba0638913b31736f302318da8834a57370287de", "fields": {"nom_de_la_commune": "MOUSTIER VENTADOUR", "libell_d_acheminement": "MOUSTIER VENTADOUR", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19145"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c39bc18501a450b233fc058ff354c5ba7da953f", "fields": {"nom_de_la_commune": "NOAILLES", "libell_d_acheminement": "NOAILLES", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19151"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2f6998513e397a3b7c2525cdd50c5e45cded49", "fields": {"nom_de_la_commune": "NONARDS", "libell_d_acheminement": "NONARDS", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19152"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1770d50d0d44dcac556904515bf5827fcf6c961", "fields": {"nom_de_la_commune": "OBJAT", "libell_d_acheminement": "OBJAT", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19153"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44b06cf7eee21c8d1ec447b38e1ddcd5bc6587e", "fields": {"nom_de_la_commune": "PERPEZAC LE NOIR", "libell_d_acheminement": "PERPEZAC LE NOIR", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19162"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19865817c64b5ed833075f26e2ba793c39088938", "fields": {"nom_de_la_commune": "LE PESCHER", "libell_d_acheminement": "LE PESCHER", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19163"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6629a76a1e2c78447a4438a25b5cc252960758c3", "fields": {"nom_de_la_commune": "PRADINES", "libell_d_acheminement": "PRADINES", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19168"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a65ec224e6a32b96433b4187f587de3636cde23", "fields": {"nom_de_la_commune": "PUY D ARNAC", "libell_d_acheminement": "PUY D ARNAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19169"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74e32da87d527263df9844680924ba47fcfb5a8", "fields": {"nom_de_la_commune": "QUEYSSAC LES VIGNES", "libell_d_acheminement": "QUEYSSAC LES VIGNES", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19170"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683e63fa6f9cea1003d1ed1b5d73e723e1fc46a3", "fields": {"nom_de_la_commune": "LA ROCHE CANILLAC", "libell_d_acheminement": "LA ROCHE CANILLAC", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19174"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade6cab023a60621421fb499f55e7289a5dc965f", "fields": {"nom_de_la_commune": "SAILLAC", "libell_d_acheminement": "SAILLAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19179"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8606a2e62c1899f46463cec3ac36cf0f92778897", "fields": {"nom_de_la_commune": "ST BONNET AVALOUZE", "libell_d_acheminement": "ST BONNET AVALOUZE", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19185"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8836ff9eef4977744b103441e7636c5f20f96ced", "fields": {"nom_de_la_commune": "ST BONNET ELVERT", "libell_d_acheminement": "ST BONNET ELVERT", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19186"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9937608c81f25e4e4938cb3c44ef9236f040ad8", "fields": {"nom_de_la_commune": "ST CHAMANT", "libell_d_acheminement": "ST CHAMANT", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19192"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a72dd808e96eac71920f2a7d61c49bcda5d02de", "fields": {"nom_de_la_commune": "ST CYR LA ROCHE", "libell_d_acheminement": "ST CYR LA ROCHE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19196"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54bcf4d7b119bffc622bee3bf5e6753a1dd901d", "fields": {"nom_de_la_commune": "ST ELOY LES TUILERIES", "libell_d_acheminement": "ST ELOY LES TUILERIES", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19198"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b0ee6397c3979471e77437686dfbf8da83e6c9", "fields": {"nom_de_la_commune": "STE FORTUNADE", "libell_d_acheminement": "STE FORTUNADE", "code_postal": "19490", "coordonnees_gps": [45.2070605995, 1.76340639063], "code_commune_insee": "19203"}, "geometry": {"type": "Point", "coordinates": [1.76340639063, 45.2070605995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99dda0d42893748eb3dc5aa2aa1014c1ae456dae", "fields": {"nom_de_la_commune": "ST HILAIRE FOISSAC", "libell_d_acheminement": "ST HILAIRE FOISSAC", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19208"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a071d90a1dbc18f684bb04eb1ae75bca035ab0", "fields": {"nom_de_la_commune": "ST JAL", "libell_d_acheminement": "ST JAL", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19213"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36bdaa120f85bd7c225b1420c91cdfe0916c5631", "fields": {"nom_de_la_commune": "ST JULIEN AUX BOIS", "libell_d_acheminement": "ST JULIEN AUX BOIS", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19214"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f971a2a25f8623f097612e7daef4185a71628b", "fields": {"nom_de_la_commune": "ST JULIEN LE VENDOMOIS", "libell_d_acheminement": "ST JULIEN LE VENDOMOIS", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19216"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a5d34215a721746014d49c52525ac73fe6a207", "fields": {"nom_de_la_commune": "ST JULIEN PRES BORT", "libell_d_acheminement": "ST JULIEN PRES BORT", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19218"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1500090b5d2a158a0e79491de8326fb67d07d1fe", "fields": {"nom_de_la_commune": "ST MARTIAL ENTRAYGUES", "libell_d_acheminement": "ST MARTIAL ENTRAYGUES", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19221"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bfbb6bc70498bb3373369ca3242cb312a70133", "fields": {"nom_de_la_commune": "ST MERD DE LAPLEAU", "libell_d_acheminement": "ST MERD DE LAPLEAU", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19225"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b288cd435ecf7a64ef69fd5fb14a0518e0653eca", "fields": {"nom_de_la_commune": "ST PANTALEON DE LAPLEAU", "libell_d_acheminement": "ST PANTALEON DE LAPLEAU", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19228"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dee28600255f911bb2b92fa08150a3b79ae29bc", "fields": {"nom_de_la_commune": "ST PARDOUX CORBIER", "libell_d_acheminement": "ST PARDOUX CORBIER", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19230"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f2d70183b7eed48c15dfdc553b5712e8846f0e", "fields": {"nom_de_la_commune": "ST PARDOUX LE NEUF", "libell_d_acheminement": "ST PARDOUX LE NEUF", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19232"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37a014608644e214edc087a2bec09f1a5bc2421", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19235"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b363c5f60e027c5a1c09ba072f927f789bca7a8", "fields": {"nom_de_la_commune": "ST PRIVAT", "libell_d_acheminement": "ST PRIVAT", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19237"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8d56dc777df0911fa9f3cf532da8c1b7d9161f", "fields": {"nom_de_la_commune": "SOUDAINE LAVINADIERE", "libell_d_acheminement": "SOUDAINE LAVINADIERE", "code_postal": "19370", "coordonnees_gps": [45.5888302854, 1.72130640352], "code_commune_insee": "19262"}, "geometry": {"type": "Point", "coordinates": [1.72130640352, 45.5888302854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b837c1efa2c2d37e06f275fb95ecc6d9810713cf", "fields": {"nom_de_la_commune": "TOY VIAM", "libell_d_acheminement": "TOY VIAM", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19268"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6125a1fe3a9f68f716b48aee02b78f87690e1fc", "fields": {"nom_de_la_commune": "TREIGNAC", "libell_d_acheminement": "TREIGNAC", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19269"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd53cbc4f70d08cf2d0fbccc7244d2c8999aeaec", "fields": {"nom_de_la_commune": "VIGEOIS", "libell_d_acheminement": "VIGEOIS", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19285"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479fd7db17ac6213c5d702e7a3bfe654d01b074d", "fields": {"nom_de_la_commune": "AGEY", "libell_d_acheminement": "AGEY", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21002"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2741472f09c2185b074553360acb74cb7cb0f1d", "fields": {"nom_de_la_commune": "AISY SOUS THIL", "libell_d_acheminement": "AISY SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21007"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b1bd67a1202d25d0924923dec465567785841e", "fields": {"nom_de_la_commune": "ANTHEUIL", "libell_d_acheminement": "ANTHEUIL", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21014"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c769256202292fc95be84a7b7a6dd694533651d8", "fields": {"nom_de_la_commune": "ANTIGNY LA VILLE", "libell_d_acheminement": "ANTIGNY LA VILLE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21015"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbf5232f21ee3e263249bb84dfeb952898ddf5a", "fields": {"nom_de_la_commune": "ARRANS", "libell_d_acheminement": "ARRANS", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21025"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a9f1b03e86b8011f73ccd2fc267db5472b3f66", "fields": {"nom_de_la_commune": "AUBIGNY LES SOMBERNON", "libell_d_acheminement": "AUBIGNY LES SOMBERNON", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21033"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a9171c505403439cba8a7c254b356198073532", "fields": {"nom_de_la_commune": "AUTRICOURT", "libell_d_acheminement": "AUTRICOURT", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21034"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51951cdc4e49b5f7232fe9badf44efc6223f831", "fields": {"nom_de_la_commune": "BAIGNEUX LES JUIFS", "libell_d_acheminement": "BAIGNEUX LES JUIFS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21043"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747e077b3a4611f39391c4b1376cfaa1e976d3ca", "fields": {"nom_de_la_commune": "BEIRE LE CHATEL", "libell_d_acheminement": "BEIRE LE CHATEL", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21056"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a474927ca21c07c585ac0a80b47ac7c65822b73", "fields": {"nom_de_la_commune": "BELLENOD SUR SEINE", "libell_d_acheminement": "BELLENOD SUR SEINE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21061"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf742d8166d8e52a5d98a11e6e8321c22acd1d51", "fields": {"nom_de_la_commune": "BESSEY EN CHAUME", "libell_d_acheminement": "BESSEY EN CHAUME", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21065"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59974511e1feadd64b9dab14f6140578154b7ee0", "fields": {"nom_de_la_commune": "BESSEY LES CITEAUX", "libell_d_acheminement": "BESSEY LES CITEAUX", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21067"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce17709ff3189963ab22ee9c683065f0007f26cb", "fields": {"nom_de_la_commune": "BEUREY BAUGUAY", "libell_d_acheminement": "BEUREY BAUGUAY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21068"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a5fdbde29350c1d7fd7a0eaf4f527deb3be2e6", "fields": {"nom_de_la_commune": "BINGES", "libell_d_acheminement": "BINGES", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21076"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c187050ff4d5cbb97535f727b8e834f89277a949", "fields": {"nom_de_la_commune": "BLAGNY SUR VINGEANNE", "libell_d_acheminement": "BLAGNY SUR VINGEANNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21079"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3bb78ab1ac37ccb43758347646560397ca87a3", "fields": {"nom_de_la_commune": "BOUSSEY", "libell_d_acheminement": "BOUSSEY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21097"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ecd531581d92c9ca8f9c65bf2e675a56125908", "fields": {"nom_de_la_commune": "BRETIGNY", "libell_d_acheminement": "BRETIGNY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21107"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bfd410c877727630351afd38c9a91dfbc331c16", "fields": {"nom_de_la_commune": "BUNCEY", "libell_d_acheminement": "BUNCEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21115"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2291eb8637069e083408a11247bbdf37c536fb", "fields": {"nom_de_la_commune": "CENSEREY", "libell_d_acheminement": "CENSEREY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21124"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994f7272d04b3805c1e29cf8ced48e5d4d472eab", "fields": {"nom_de_la_commune": "CHAMBOLLE MUSIGNY", "libell_d_acheminement": "CHAMBOLLE MUSIGNY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21133"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7fe7a56c1fdb92b4caea542c0a779bf3b420b3", "fields": {"nom_de_la_commune": "CHAMP D OISEAU", "libell_d_acheminement": "CHAMP D OISEAU", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21137"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5864c3503cf04113f99958e78bb094fa4ef1bf6e", "fields": {"nom_de_la_commune": "CHAMPRENAULT", "libell_d_acheminement": "CHAMPRENAULT", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21141"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63eee193977a6c560f20105148c252bc93053b03", "fields": {"nom_de_la_commune": "CHARNY", "libell_d_acheminement": "CHARNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21147"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97fb3004754f5d048a30f23c3f78819241d73dfa", "fields": {"nom_de_la_commune": "CHARREY SUR SEINE", "libell_d_acheminement": "CHARREY SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21149"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ef43b7fc9a747d828dcde18a21e9da6f1315c8", "fields": {"nom_de_la_commune": "CHAUDENAY LE CHATEAU", "libell_d_acheminement": "CHAUDENAY LE CHATEAU", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21156"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13790d380de21d7522c9dec098fae65d4a75474", "fields": {"nom_de_la_commune": "BELLEAU", "libell_d_acheminement": "BELLEAU", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02062"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89254f43cc3beab0f9fe00adef802bea4bd5f76a", "fields": {"code_postal": "02460", "code_commune_insee": "02307", "libell_d_acheminement": "LA FERTE MILON", "ligne_5": "MOSLOY", "nom_de_la_commune": "LA FERTE MILON", "coordonnees_gps": [49.1801295296, 3.14646603898]}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a57a263738b043365607d81ebde203d9e51688c9", "fields": {"code_postal": "02450", "code_commune_insee": "02308", "libell_d_acheminement": "FESMY LE SART", "ligne_5": "LE SART", "nom_de_la_commune": "FESMY LE SART", "coordonnees_gps": [50.0067534754, 3.69457044766]}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa763c63f7aa69f527dba92e15f993a613163920", "fields": {"nom_de_la_commune": "FLAVY LE MARTEL", "libell_d_acheminement": "FLAVY LE MARTEL", "code_postal": "02520", "coordonnees_gps": [49.7053596828, 3.19468399179], "code_commune_insee": "02315"}, "geometry": {"type": "Point", "coordinates": [3.19468399179, 49.7053596828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a7884998e9f56aef3c438608bf4d8685293f92", "fields": {"nom_de_la_commune": "ETOUVELLES", "libell_d_acheminement": "ETOUVELLES", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02294"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7770f2c6a652a27f02c0bbd724a70ec4dc0c97dc", "fields": {"nom_de_la_commune": "FLUQUIERES", "libell_d_acheminement": "FLUQUIERES", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02317"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6179801a2cd6b00a2bb0338aaf1633ef9f73a2d5", "fields": {"nom_de_la_commune": "ESTREES", "libell_d_acheminement": "ESTREES", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02291"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a95b00c57318b13cdd1cd6712c675a3bc3d3285", "fields": {"nom_de_la_commune": "GOUDELANCOURT LES PIERREPONT", "libell_d_acheminement": "GOUDELANCOURT LES PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02350"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8231267cd4be8375c841217dd021260e0f1af473", "fields": {"nom_de_la_commune": "FRANCILLY SELENCY", "libell_d_acheminement": "FRANCILLY SELENCY", "code_postal": "02760", "coordonnees_gps": [49.8580828393, 3.21383047105], "code_commune_insee": "02330"}, "geometry": {"type": "Point", "coordinates": [3.21383047105, 49.8580828393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0a1638e58d59a3690f6c9fc8ea4703787826e2", "fields": {"nom_de_la_commune": "FONTAINE UTERTE", "libell_d_acheminement": "FONTAINE UTERTE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02323"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b561e654f1bdb131de56c56cf117393ac9f8a65", "fields": {"nom_de_la_commune": "HARGICOURT", "libell_d_acheminement": "HARGICOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02370"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79d9aadd40d5a6af85b48412933f97df0cd827b", "fields": {"nom_de_la_commune": "GRICOURT", "libell_d_acheminement": "GRICOURT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02355"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b122c0ca1c45f38f47285908743a8d46c0ef9e5", "fields": {"nom_de_la_commune": "GRUGIES", "libell_d_acheminement": "GRUGIES", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02359"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae553fef00f4b4836029cc0a5e3a54d0ce38d17", "fields": {"nom_de_la_commune": "GLAND", "libell_d_acheminement": "GLAND", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02347"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa5ef728e91e2d1a26e3a47ed6db8b782e5d055", "fields": {"nom_de_la_commune": "GIZY", "libell_d_acheminement": "GIZY", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02346"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5919215c1332eb705cde91f60332ff5383315ea", "fields": {"code_postal": "04150", "code_commune_insee": "04208", "libell_d_acheminement": "SIMIANE LA ROTONDE", "ligne_5": "VALSAINTES", "nom_de_la_commune": "SIMIANE LA ROTONDE", "coordonnees_gps": [44.0485937813, 5.61131710182]}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86edbe1d98bd4cd970cd00a30abcb5ec65417df", "fields": {"code_postal": "04170", "code_commune_insee": "04219", "libell_d_acheminement": "THORAME HAUTE", "ligne_5": "ST MICHEL PEYRESQ", "nom_de_la_commune": "THORAME HAUTE", "coordonnees_gps": [44.0283793714, 6.53951156663]}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263b36998bd4af4f8e13b99c84622d45643a527f", "fields": {"code_postal": "04380", "code_commune_insee": "04217", "libell_d_acheminement": "THOARD", "ligne_5": "LA PERUSSE", "nom_de_la_commune": "THOARD", "coordonnees_gps": [44.1606174491, 6.13108296701]}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8966933d5f8e1c5fc08005729b2a75d80ae7405", "fields": {"nom_de_la_commune": "ST MARTIN LES SEYNE", "libell_d_acheminement": "ST MARTIN LES SEYNE", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04191"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2a7e3377958f44540d3d28433c885448b43ccd", "fields": {"nom_de_la_commune": "SOURRIBES", "libell_d_acheminement": "SOURRIBES", "code_postal": "04290", "coordonnees_gps": [44.1438661231, 6.02689394814], "code_commune_insee": "04211"}, "geometry": {"type": "Point", "coordinates": [6.02689394814, 44.1438661231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7387f1cf45f210ca789c7100f21a85cecca1c1", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "04194"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb279a02e5c34f82051f083a24578acca3fa35f", "fields": {"nom_de_la_commune": "ST LIONS", "libell_d_acheminement": "ST LIONS", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04187"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81a0b28ff45d208850b177fcbaa121a517f0cdbb", "fields": {"nom_de_la_commune": "ST JURS", "libell_d_acheminement": "ST JURS", "code_postal": "04410", "coordonnees_gps": [43.8849946548, 6.15663492635], "code_commune_insee": "04184"}, "geometry": {"type": "Point", "coordinates": [6.15663492635, 43.8849946548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6871afc0b01af754e9ce4a170cbd91ebf591c9a", "fields": {"nom_de_la_commune": "SIGONCE", "libell_d_acheminement": "SIGONCE", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04206"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f2db1fd2c4b228223764560510a270c8a59b1a", "fields": {"nom_de_la_commune": "LA MOTTE EN CHAMPSAUR", "libell_d_acheminement": "LA MOTTE EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05090"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7767ce15953df0e2c300adeb752be8aa1efdec21", "fields": {"nom_de_la_commune": "NOSSAGE ET BENEVENT", "libell_d_acheminement": "NOSSAGE ET BENEVENT", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05094"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f279558060ffe08214a8816e6e52ad929d96cbb", "fields": {"nom_de_la_commune": "PELLEAUTIER", "libell_d_acheminement": "PELLEAUTIER", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05100"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdef3b800a13708b1c0cf2d164f7ee500b08c244", "fields": {"nom_de_la_commune": "MONTROND", "libell_d_acheminement": "MONTROND", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05089"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2a727d794ec336f6806d3b2523194c99756b1b", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05104"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761f54359530901c7dd87f1cdb78b3ea7876ccda", "fields": {"nom_de_la_commune": "MOYDANS", "libell_d_acheminement": "MOYDANS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05091"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50398cba5374d471a29ebceef5b7e56d2022149", "fields": {"nom_de_la_commune": "PELVOUX", "libell_d_acheminement": "PELVOUX", "code_postal": "05340", "coordonnees_gps": [44.8995242291, 6.43584380145], "code_commune_insee": "05101"}, "geometry": {"type": "Point", "coordinates": [6.43584380145, 44.8995242291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8fb9e445e6e74f3c3f7087c0cf76088a3af8d2b", "fields": {"nom_de_la_commune": "NEFFES", "libell_d_acheminement": "NEFFES", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05092"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f19db0873ecd8ebca339becaa770dedfe7d0f1", "fields": {"nom_de_la_commune": "OZE", "libell_d_acheminement": "OZE", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05099"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda85b2254b5cb3000b5730aa31badb965c83ddc", "fields": {"code_postal": "04320", "code_commune_insee": "04043", "libell_d_acheminement": "VAL DE CHALVAGNE", "ligne_5": "VILLEVIEILLE", "nom_de_la_commune": "VAL DE CHALVAGNE", "coordonnees_gps": [43.9774312961, 6.76983906157]}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c3427185b9fe9e6c3f06e95a28d8581543d863", "fields": {"code_postal": "04380", "code_commune_insee": "04040", "libell_d_acheminement": "LE CASTELLARD MELAN", "ligne_5": "MELAN", "nom_de_la_commune": "LE CASTELLARD MELAN", "coordonnees_gps": [44.1606174491, 6.13108296701]}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fbc414cff7dc60335f7491daeb47f0dd2f3e126", "fields": {"nom_de_la_commune": "LE CHAFFAUT ST JURSON", "libell_d_acheminement": "LE CHAFFAUT ST JURSON", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04046"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198bb559dfaf0a1d46b187d595bd65985d89352d", "fields": {"nom_de_la_commune": "LE BRUSQUET", "libell_d_acheminement": "LE BRUSQUET", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04036"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e0078b390b44e681bd8b49df4f6682ffc4ffe4", "fields": {"nom_de_la_commune": "LA BREOLE", "libell_d_acheminement": "LA BREOLE", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04033"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c08f0fbe7bb2ed575a173fec71dcb907a3fbca7", "fields": {"nom_de_la_commune": "ARCHAIL", "libell_d_acheminement": "ARCHAIL", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04009"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40abcbf38a4d31e28a1678fe4133df246660524f", "fields": {"nom_de_la_commune": "BLIEUX", "libell_d_acheminement": "BLIEUX", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04030"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75faca48e8e0fb77335b99377aa857a6f3c2712", "fields": {"nom_de_la_commune": "BEVONS", "libell_d_acheminement": "BEVONS", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04027"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d8b39463cac036284d0869f54c08bda763d59c", "fields": {"nom_de_la_commune": "BANON", "libell_d_acheminement": "BANON", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04018"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "127924a62e6dee2138cc1ab7fe4f90c9f2fcff22", "fields": {"nom_de_la_commune": "BRAUX", "libell_d_acheminement": "BRAUX", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04032"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebb9c6b0e51878a1bd143ccbe7dc43a8caff1af", "fields": {"code_postal": "04260", "code_commune_insee": "04006", "libell_d_acheminement": "ALLOS", "ligne_5": "LA FOUX D ALLOS", "nom_de_la_commune": "ALLOS", "coordonnees_gps": [44.2616156328, 6.62661023596]}, "geometry": {"type": "Point", "coordinates": [6.62661023596, 44.2616156328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f595a53770f00ae5a215fa17b4e69ea66c020d2", "fields": {"nom_de_la_commune": "ALLEMAGNE EN PROVENCE", "libell_d_acheminement": "ALLEMAGNE EN PROVENCE", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04004"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e58559d99be025ca93fd1a34938fc625def337", "fields": {"nom_de_la_commune": "VARENNES SUR TECHE", "libell_d_acheminement": "VARENNES SUR TECHE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03299"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c47f4e5bf86d1a55c37d8912839ff928ed210e", "fields": {"nom_de_la_commune": "VALLON EN SULLY", "libell_d_acheminement": "VALLON EN SULLY", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03297"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab769ad01d1239707c1d4885c67b904509f0d78", "fields": {"nom_de_la_commune": "VALIGNAT", "libell_d_acheminement": "VALIGNAT", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03295"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332e166c7e618dc0b83a30a47769d29ef0a0ae8d", "fields": {"nom_de_la_commune": "TRONGET", "libell_d_acheminement": "TRONGET", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03292"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e891169480101026584114e5873142ef6c00cc", "fields": {"nom_de_la_commune": "VALIGNY", "libell_d_acheminement": "VALIGNY", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03296"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ff0b34bbd4fef03886a647ac12b251eba1266d", "fields": {"nom_de_la_commune": "VOUSSAC", "libell_d_acheminement": "VOUSSAC", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03319"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3dcbaad9d54f0c3a2f3091612291c1348f32dba", "fields": {"nom_de_la_commune": "SUSSAT", "libell_d_acheminement": "SUSSAT", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03276"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b17c67b6e63723d26e3667e5088ae63a0025be28", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03311"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f048ce0b55d059cbbe44911e960ce0dfe3c5f3", "fields": {"nom_de_la_commune": "ST GERMAIN DE SALLES", "libell_d_acheminement": "ST GERMAIN DE SALLES", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03237"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ffacb463a54e9b41c840ec3febf803232f738c", "fields": {"nom_de_la_commune": "ST DIDIER EN DONJON", "libell_d_acheminement": "ST DIDIER EN DONJON", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03226"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dafb8f5893f09249449f9447936fadeeb71df57f", "fields": {"nom_de_la_commune": "ST MARTIN DES LAIS", "libell_d_acheminement": "ST MARTIN DES LAIS", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03245"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1142347dcd2d7cad111c7f46cf12a5acfd6b4f6d", "fields": {"nom_de_la_commune": "ST FARGEOL", "libell_d_acheminement": "ST FARGEOL", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03231"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51db95268b6523f9a109ddebeecb44aeda394a9b", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03262"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c6828d8cea630be6aa5e93bb13ea685bed4ed6", "fields": {"nom_de_la_commune": "ST GENEST", "libell_d_acheminement": "ST GENEST", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03233"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03cce0055473d9f1c439bf87daa6ab0d035e83fb", "fields": {"nom_de_la_commune": "SERVILLY", "libell_d_acheminement": "SERVILLY", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03272"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f06b3f8d7a225421a1c19a6840bcdf60e944e15", "fields": {"nom_de_la_commune": "SEUILLET", "libell_d_acheminement": "SEUILLET", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03273"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fd095f77e5d99a5c32d63541ba45a22e163466", "fields": {"nom_de_la_commune": "SAULZET", "libell_d_acheminement": "SAULZET", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03268"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a227d0effb6b6d0e4297acc1cb7db03df2e75d7", "fields": {"nom_de_la_commune": "ST PONT", "libell_d_acheminement": "ST PONT", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03252"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4ba5d4b44bc88edb5636eac52f65ee5c708f2f", "fields": {"nom_de_la_commune": "LE MAYET DE MONTAGNE", "libell_d_acheminement": "LE MAYET DE MONTAGNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03165"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64f850fe836a68543bdc4cbbd0367fcffd144b1", "fields": {"nom_de_la_commune": "ST AUBIN LE MONIAL", "libell_d_acheminement": "ST AUBIN LE MONIAL", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03218"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3ac733923d95559f9bdaafd5c753ea88f86733", "fields": {"nom_de_la_commune": "MONETAY SUR LOIRE", "libell_d_acheminement": "MONETAY SUR LOIRE", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03177"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69756d7fa5480ba42110a1a394ab595d450847c3", "fields": {"nom_de_la_commune": "MONTAIGU LE BLIN", "libell_d_acheminement": "MONTAIGU LE BLIN", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03179"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80db4a26ec5c8c9ae4afb930994a9bedd358195", "fields": {"nom_de_la_commune": "NIZEROLLES", "libell_d_acheminement": "NIZEROLLES", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03201"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed3f4b62676dbed81e23725e4720979f1c4fd6d", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03222"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ec6be149c0a912bd6927b56eb39c4b477803ae", "fields": {"nom_de_la_commune": "MEILLERS", "libell_d_acheminement": "MEILLERS", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03170"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbebec3b0e3a0254f5bc9c52f6ef8706b06049e3", "fields": {"nom_de_la_commune": "RONNET", "libell_d_acheminement": "RONNET", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03216"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2bd6ade3b84bcfa1d5475470681fbc598899872", "fields": {"nom_de_la_commune": "NEUVY", "libell_d_acheminement": "NEUVY", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03200"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "460e9bcaa60174d7475f26848370bc2ac4976b25", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03194"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867048d8b272f3f3db299f75b6efa7813df3d67e", "fields": {"nom_de_la_commune": "LA ROCHEGIRON", "libell_d_acheminement": "LA ROCHEGIRON", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04169"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1ab90615bca037355ac0b2135c0fe70b09d335", "fields": {"nom_de_la_commune": "PEYROULES", "libell_d_acheminement": "PEYROULES", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04148"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d552f8ed50f8b0b359c73c25efa35816512b63e", "fields": {"nom_de_la_commune": "PEYRUIS", "libell_d_acheminement": "PEYRUIS", "code_postal": "04310", "coordonnees_gps": [44.0250031317, 5.92272332026], "code_commune_insee": "04149"}, "geometry": {"type": "Point", "coordinates": [5.92272332026, 44.0250031317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d61badab4eb50f3b3bcc7dd049193dae6621d76", "fields": {"nom_de_la_commune": "PONTIS", "libell_d_acheminement": "PONTIS", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "04154"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdac15b6fc69d7525744cbea0efc5cdab5ab1dcb", "fields": {"nom_de_la_commune": "PEIPIN", "libell_d_acheminement": "PEIPIN", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04145"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff36e9fb3b219c5b0d8e8f2b88a2593f49cc8105", "fields": {"nom_de_la_commune": "RIEZ", "libell_d_acheminement": "RIEZ", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04166"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea26adbcfb349de9b31840edfe7dbbff6970830", "fields": {"code_postal": "03190", "code_commune_insee": "03158", "libell_d_acheminement": "HAUT BOCAGE", "ligne_5": "MAILLET", "nom_de_la_commune": "HAUT BOCAGE", "coordonnees_gps": [46.4826080397, 2.65647600079]}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9cb02f231fe0e9cef359c2cdafc2edd7595a71", "fields": {"nom_de_la_commune": "MARCILLAT EN COMBRAILLE", "libell_d_acheminement": "MARCILLAT EN COMBRAILLE", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03161"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdbda58e01655a5ac1953a604eb03bf40d32d766", "fields": {"nom_de_la_commune": "FERRIERES SUR SICHON", "libell_d_acheminement": "FERRIERES SUR SICHON", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03113"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3179bbdfe2a59760c205de4eed5d4f33d0d48cfa", "fields": {"nom_de_la_commune": "ESPINASSE VOZELLE", "libell_d_acheminement": "ESPINASSE VOZELLE", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03110"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd9e2639fd1da7540b2d805fdb03657bd8dc53a", "fields": {"nom_de_la_commune": "LAVAULT STE ANNE", "libell_d_acheminement": "LAVAULT STE ANNE", "code_postal": "03100", "coordonnees_gps": [46.3299080468, 2.60294961501], "code_commune_insee": "03140"}, "geometry": {"type": "Point", "coordinates": [2.60294961501, 46.3299080468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6a934d7a931283049d2bc4eef9f8a1f08f1d33", "fields": {"nom_de_la_commune": "HERISSON", "libell_d_acheminement": "HERISSON", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03127"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6b64ca134fb1a2de7d0d0c057bcd6ead96c58e", "fields": {"nom_de_la_commune": "MARIOL", "libell_d_acheminement": "MARIOL", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03163"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7031bf4099afa450b7b9c846bc3c1e876ad3d39", "fields": {"nom_de_la_commune": "GOUISE", "libell_d_acheminement": "GOUISE", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03124"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a048166a51bc83ea8cfbe753a7dcb27765761c", "fields": {"nom_de_la_commune": "HURIEL", "libell_d_acheminement": "HURIEL", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03128"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8c6ad48ef5b9a810a39483dc25e5130dbf6868", "fields": {"nom_de_la_commune": "LANGY", "libell_d_acheminement": "LANGY", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03137"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab99fce7555cc17fc15a3138b547c7084df8a21", "fields": {"nom_de_la_commune": "BUXIERES LES MINES", "libell_d_acheminement": "BUXIERES LES MINES", "code_postal": "03440", "coordonnees_gps": [46.4644451309, 2.96888238917], "code_commune_insee": "03046"}, "geometry": {"type": "Point", "coordinates": [2.96888238917, 46.4644451309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6741705f240ce893809f3fcec227ec13c2d01c8", "fields": {"nom_de_la_commune": "CHATEL DE NEUVRE", "libell_d_acheminement": "CHATEL DE NEUVRE", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03065"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4a5f094d420b976869977ceef7144cb73cb890", "fields": {"nom_de_la_commune": "CHAREIL CINTRAT", "libell_d_acheminement": "CHAREIL CINTRAT", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03059"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9996f800504409ce35569a1b9f7446725468d79", "fields": {"nom_de_la_commune": "BRESSOLLES", "libell_d_acheminement": "BRESSOLLES", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03040"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b15d67304a208e1de95a32d68192184792e586", "fields": {"nom_de_la_commune": "BIZENEUILLE", "libell_d_acheminement": "BIZENEUILLE", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03031"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "261c3069ea9a5494ee234fade3cf15320e45f91c", "fields": {"nom_de_la_commune": "CHAMBERAT", "libell_d_acheminement": "CHAMBERAT", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03051"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad992e84ef26b758377ee6ac0640d35ed750d2d1", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03042"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7037980ae11a7af515b1bfddcf50fa12e856ba", "fields": {"nom_de_la_commune": "BRUGHEAS", "libell_d_acheminement": "BRUGHEAS", "code_postal": "03700", "coordonnees_gps": [46.0940657836, 3.37277682749], "code_commune_insee": "03044"}, "geometry": {"type": "Point", "coordinates": [3.37277682749, 46.0940657836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dca44531377c72dbff56075f5ac2ca55735d5b", "fields": {"nom_de_la_commune": "BLOMARD", "libell_d_acheminement": "BLOMARD", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03032"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e2bbd5d8d469e7d11744c140ff3108e5609d984", "fields": {"nom_de_la_commune": "BOUCE", "libell_d_acheminement": "BOUCE", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03034"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e98e8bfd896f31bcd9c0d95a91df1426add635", "fields": {"nom_de_la_commune": "COSNE D ALLIER", "libell_d_acheminement": "COSNE D ALLIER", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03084"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7573c1be01bb788585d517dd9ff324cf49877abd", "fields": {"nom_de_la_commune": "ST YVI", "libell_d_acheminement": "ST YVI", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29272"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264b491b3137b16554ba9c3e06b2f75df5cf8bd7", "fields": {"nom_de_la_commune": "TREFLEVENEZ", "libell_d_acheminement": "TREFLEVENEZ", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29286"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54ca3679da00bff399afafcade30ea8831bcd28", "fields": {"nom_de_la_commune": "TREGARANTEC", "libell_d_acheminement": "TREGARANTEC", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29288"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5e707c6b0b186d4af3bf1cddcc8a4009276ffb", "fields": {"nom_de_la_commune": "PONT DE BUIS LES QUIMERCH", "libell_d_acheminement": "PONT DE BUIS LES QUIMERCH", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29302"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c59e3f175152ea8667600873f12e3fee1cef98e", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "30670", "coordonnees_gps": [43.7344032661, 4.19053144146], "code_commune_insee": "30004"}, "geometry": {"type": "Point", "coordinates": [4.19053144146, 43.7344032661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43a1d70ac34fedfb6a5f80037b819baba54b6c0", "fields": {"nom_de_la_commune": "ALZON", "libell_d_acheminement": "ALZON", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30009"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904d487db1711cdf014c0e4ffbcb4b6cf08e1a61", "fields": {"nom_de_la_commune": "ARPAILLARGUES ET AUREILLAC", "libell_d_acheminement": "ARPAILLARGUES ET AUREILLAC", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30014"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204479f1cb201ab0d54cf30a8ecd7c2d41cb49cf", "fields": {"nom_de_la_commune": "BAGNOLS SUR CEZE", "libell_d_acheminement": "BAGNOLS SUR CEZE", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30028"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121c501879383a7d3f0f5fa5a10aee10b0faff35", "fields": {"nom_de_la_commune": "LA BASTIDE D ENGRAS", "libell_d_acheminement": "LA BASTIDE D ENGRAS", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30031"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181f529d395ef53e9f2ee78785a024a2a7a7746f", "fields": {"nom_de_la_commune": "BELVEZET", "libell_d_acheminement": "BELVEZET", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30035"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9a4833675d58465f8d996420ea9d4c8290a271", "fields": {"nom_de_la_commune": "BEZ ET ESPARON", "libell_d_acheminement": "BEZ ET ESPARON", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30038"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd420d14b20bfb0c74d67d86a2c632e0ab4fab5", "fields": {"nom_de_la_commune": "BOISSET ET GAUJAC", "libell_d_acheminement": "BOISSET ET GAUJAC", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30042"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3df9b8a1efafe599a9ec17b0d5a4ebc277fa16b", "fields": {"nom_de_la_commune": "BRANOUX LES TAILLADES", "libell_d_acheminement": "BRANOUX LES TAILLADES", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30051"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bf4f399cfda2607e1795f9d2eef6540268b38c", "fields": {"nom_de_la_commune": "BREAU ET SALAGOSSE", "libell_d_acheminement": "BREAU ET SALAGOSSE", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30052"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf4640094564b4f53c6b6505d00de7dbcf0816a", "fields": {"nom_de_la_commune": "BROUZET LES QUISSAC", "libell_d_acheminement": "BROUZET LES QUISSAC", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30054"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9186d11029b7d8319343fa9f9ce46032d2b520c", "fields": {"nom_de_la_commune": "LE CAILAR", "libell_d_acheminement": "LE CAILAR", "code_postal": "30740", "coordonnees_gps": [43.6580354658, 4.2427890874], "code_commune_insee": "30059"}, "geometry": {"type": "Point", "coordinates": [4.2427890874, 43.6580354658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cee6d2962ed9fa3ad02c19e22efea40192bd43", "fields": {"nom_de_la_commune": "CAMPESTRE ET LUC", "libell_d_acheminement": "CAMPESTRE ET LUC", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30064"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6fb35d2c426e2b9c24b04f32c9a867c73ae5ed", "fields": {"nom_de_la_commune": "CANNES ET CLAIRAN", "libell_d_acheminement": "CANNES ET CLAIRAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30066"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd4281a805558621d8b6ad02a709b8ec345c7c3", "fields": {"nom_de_la_commune": "CASSAGNOLES", "libell_d_acheminement": "CASSAGNOLES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30071"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c0c2a7cc7cd5aa066f345ba31f72af2e114b0b4", "fields": {"nom_de_la_commune": "CENDRAS", "libell_d_acheminement": "CENDRAS", "code_postal": "30480", "coordonnees_gps": [44.1525130958, 3.9959976233], "code_commune_insee": "30077"}, "geometry": {"type": "Point", "coordinates": [3.9959976233, 44.1525130958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93aaf49cb5b662de4c16cc2fe9ded74ed203fd89", "fields": {"nom_de_la_commune": "CHUSCLAN", "libell_d_acheminement": "CHUSCLAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30081"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6ac303f5bf8e6ab02d3d60957b13fb8949110c", "fields": {"nom_de_la_commune": "COLOGNAC", "libell_d_acheminement": "COLOGNAC", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30087"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b6d8c73f7d4a2cdb13cd5ef9b4f14c49979af9", "fields": {"nom_de_la_commune": "COMPS", "libell_d_acheminement": "COMPS", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30089"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "222f39451921b9a4a38456128ed4889d144ba906", "fields": {"nom_de_la_commune": "CONCOULES", "libell_d_acheminement": "CONCOULES", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30090"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b7b4a1bbac9405aa7acae9f5401608e4b44bfa", "fields": {"nom_de_la_commune": "CONNAUX", "libell_d_acheminement": "CONNAUX", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30092"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2950a43d574a1bbbf7b66d7347696a850155b53", "fields": {"nom_de_la_commune": "CONQUEYRAC", "libell_d_acheminement": "CONQUEYRAC", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30093"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b6dd967005658c0b0d988cc4c5241b4b8320ce", "fields": {"nom_de_la_commune": "CROS", "libell_d_acheminement": "CROS", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30099"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621a9bced00cdfeab78c6e4b6ddd8ff7fbea3595", "fields": {"nom_de_la_commune": "CRUVIERS LASCOURS", "libell_d_acheminement": "CRUVIERS LASCOURS", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30100"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5bdf433a53210e2f9a03203691f1043977d019", "fields": {"nom_de_la_commune": "DIONS", "libell_d_acheminement": "DIONS", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30102"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f98b001c5856109c630803c67e675f3742c84f", "fields": {"nom_de_la_commune": "FONS", "libell_d_acheminement": "FONS", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30112"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8737cc9905abae5abd2cc7fd31a489f7308da1e", "fields": {"nom_de_la_commune": "GAJAN", "libell_d_acheminement": "GAJAN", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30122"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a437bcb1fbac6ee9203733775e993ac33178e0", "fields": {"nom_de_la_commune": "GOUDARGUES", "libell_d_acheminement": "GOUDARGUES", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30131"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e857b3333ee925d37c20ec710271fdaf848ebb9", "fields": {"code_postal": "30240", "code_commune_insee": "30133", "libell_d_acheminement": "LE GRAU DU ROI", "ligne_5": "PORT CAMARGUE", "nom_de_la_commune": "LE GRAU DU ROI", "coordonnees_gps": [43.5075003304, 4.16612104181]}, "geometry": {"type": "Point", "coordinates": [4.16612104181, 43.5075003304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372c98fa04dc388251280a7476c71404be20f64e", "fields": {"nom_de_la_commune": "JONQUIERES ST VINCENT", "libell_d_acheminement": "JONQUIERES ST VINCENT", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30135"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef620754d4062dec63fdeed7c01cb8ddbef05d49", "fields": {"nom_de_la_commune": "LANGLADE", "libell_d_acheminement": "LANGLADE", "code_postal": "30980", "coordonnees_gps": [43.8042643595, 4.24666861732], "code_commune_insee": "30138"}, "geometry": {"type": "Point", "coordinates": [4.24666861732, 43.8042643595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d050000f9bdeded6856036650781f2fed689614e", "fields": {"nom_de_la_commune": "LASALLE", "libell_d_acheminement": "LASALLE", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30140"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54029cbb6473c2bdf3939efc10f1a9cdfa9f9b96", "fields": {"nom_de_la_commune": "LAUDUN L ARDOISE", "libell_d_acheminement": "LAUDUN L ARDOISE", "code_postal": "30290", "coordonnees_gps": [44.0818801602, 4.65422570722], "code_commune_insee": "30141"}, "geometry": {"type": "Point", "coordinates": [4.65422570722, 44.0818801602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a9bb9badeb38340e191d108600cc70859de5b4", "fields": {"nom_de_la_commune": "LIRAC", "libell_d_acheminement": "LIRAC", "code_postal": "30126", "coordonnees_gps": [44.0300936861, 4.6901493854], "code_commune_insee": "30149"}, "geometry": {"type": "Point", "coordinates": [4.6901493854, 44.0300936861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6faf5d88854d722463816657f81dff7ae75f9328", "fields": {"nom_de_la_commune": "LOGRIAN FLORIAN", "libell_d_acheminement": "LOGRIAN FLORIAN", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30150"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70da173ea4334f6b32f5f8ad8f18e64ee35aa230", "fields": {"nom_de_la_commune": "MALONS ET ELZE", "libell_d_acheminement": "MALONS ET ELZE", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30153"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807ace188abc1eb6fc9cd9b82f04d4eee6bab0e4", "fields": {"nom_de_la_commune": "MARTIGNARGUES", "libell_d_acheminement": "MARTIGNARGUES", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30158"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ea62c4322a0e29b3178335bf527e1c05a463cd", "fields": {"nom_de_la_commune": "MASSANES", "libell_d_acheminement": "MASSANES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30161"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eabbb32f3289ee967821d3d2cec48c7900170175", "fields": {"nom_de_la_commune": "MEYNES", "libell_d_acheminement": "MEYNES", "code_postal": "30840", "coordonnees_gps": [43.8767626989, 4.55429203448], "code_commune_insee": "30166"}, "geometry": {"type": "Point", "coordinates": [4.55429203448, 43.8767626989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9409554fe1167042f66b0091c5cc58e6cbc6667", "fields": {"nom_de_la_commune": "MOLIERES CAVAILLAC", "libell_d_acheminement": "MOLIERES CAVAILLAC", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30170"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22744547485846d50772b707ec63e17313356ad6", "fields": {"nom_de_la_commune": "MONOBLET", "libell_d_acheminement": "MONOBLET", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30172"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d1d22d8d23f7fd982774378b30413e57452f66", "fields": {"nom_de_la_commune": "MONTMIRAT", "libell_d_acheminement": "MONTMIRAT", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30181"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6281d7740af3969f910e1d1db531b4a625ed1b81", "fields": {"nom_de_la_commune": "LES PLANS", "libell_d_acheminement": "LES PLANS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30197"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f503426da9aa03c4d6c96d689d0b11543e50827", "fields": {"nom_de_la_commune": "POMPIGNAN", "libell_d_acheminement": "POMPIGNAN", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30200"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebfff6630a82c7dd69a3710eb4a1d877d8dc9ac", "fields": {"nom_de_la_commune": "REMOULINS", "libell_d_acheminement": "REMOULINS", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30212"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea9746a3b0ea44b023427b816fc0f32a64e8939", "fields": {"nom_de_la_commune": "RIVIERES", "libell_d_acheminement": "RIVIERES", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30215"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad33fb4f744ea6572e49328208a1846e8ea30ee7", "fields": {"nom_de_la_commune": "ROCHEGUDE", "libell_d_acheminement": "ROCHEGUDE", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30218"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ef2e99c58d28bd1e6915684b1e1c4939486f89", "fields": {"nom_de_la_commune": "ROQUEMAURE", "libell_d_acheminement": "ROQUEMAURE", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30221"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c98c8d0cbd6726bd18b87e9ef095e93a1f4e45", "fields": {"nom_de_la_commune": "ROUSSON", "libell_d_acheminement": "ROUSSON", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30223"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "052dd82ba9854c755d610fd3c3509daa6fc15e44", "fields": {"nom_de_la_commune": "ST ANDRE D OLERARGUES", "libell_d_acheminement": "ST ANDRE D OLERARGUES", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30232"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402249734bb88bd79bc0545ca39082c5da6f319d", "fields": {"nom_de_la_commune": "ST BONNET DE SALENDRINQUE", "libell_d_acheminement": "ST BONNET DE SALENDRINQUE", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30236"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bca5d530bd25cde0ac27a6e00efb75993985fb", "fields": {"nom_de_la_commune": "STE CECILE D ANDORGE", "libell_d_acheminement": "STE CECILE D ANDORGE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30239"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b4842c67c174d1f1e8c768154f364fbee3f2bf", "fields": {"nom_de_la_commune": "ST ETIENNE DE L OLM", "libell_d_acheminement": "ST ETIENNE DE L OLM", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30250"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5aa3770712e9b488e8d288caf21cba25e06325", "fields": {"nom_de_la_commune": "ST FLORENT SUR AUZONNET", "libell_d_acheminement": "ST FLORENT SUR AUZONNET", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30253"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a420af38a0f1a4bf49c13342b3459ea88d04b1", "fields": {"nom_de_la_commune": "ST GENIES DE MALGOIRES", "libell_d_acheminement": "ST GENIES DE MALGOIRES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30255"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28940d6a6815de4eaba0e06e992e34e41ee45f2d", "fields": {"nom_de_la_commune": "ST GERVASY", "libell_d_acheminement": "ST GERVASY", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30257"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e8ef3e19e2bef064259e24943843be6668f956", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "30800", "coordonnees_gps": [43.657925014, 4.40745034656], "code_commune_insee": "30258"}, "geometry": {"type": "Point", "coordinates": [4.40745034656, 43.657925014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a09623b021858a899116786ac9b6fd48b0c74a4", "fields": {"nom_de_la_commune": "ST JEAN DE CRIEULON", "libell_d_acheminement": "ST JEAN DE CRIEULON", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30265"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81687e5aaf82dd815f2777e6d6fd05995fe3d3a2", "fields": {"nom_de_la_commune": "ST JULIEN DE CASSAGNAS", "libell_d_acheminement": "ST JULIEN DE CASSAGNAS", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30271"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa6a050c0040972b22f7eba51dd23acd50bd0de6", "fields": {"nom_de_la_commune": "ST MAXIMIN", "libell_d_acheminement": "ST MAXIMIN", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30286"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d8b925407e29494c92486082ca71983da1a18d", "fields": {"nom_de_la_commune": "ST PAUL LA COSTE", "libell_d_acheminement": "ST PAUL LA COSTE", "code_postal": "30480", "coordonnees_gps": [44.1525130958, 3.9959976233], "code_commune_insee": "30291"}, "geometry": {"type": "Point", "coordinates": [3.9959976233, 44.1525130958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257c37b256037b189ac446e83a334bdadaa3193a", "fields": {"nom_de_la_commune": "ST VICTOR LA COSTE", "libell_d_acheminement": "ST VICTOR LA COSTE", "code_postal": "30290", "coordonnees_gps": [44.0818801602, 4.65422570722], "code_commune_insee": "30302"}, "geometry": {"type": "Point", "coordinates": [4.65422570722, 44.0818801602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373b29be613e8ed1aa48b6368488f2a50a2f6b2a", "fields": {"nom_de_la_commune": "SAUMANE", "libell_d_acheminement": "SAUMANE", "code_postal": "30125", "coordonnees_gps": [44.1195052098, 3.76831241907], "code_commune_insee": "30310"}, "geometry": {"type": "Point", "coordinates": [3.76831241907, 44.1195052098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b553f422d9afa11a0d28bb20527448ab123cd43b", "fields": {"nom_de_la_commune": "SERNHAC", "libell_d_acheminement": "SERNHAC", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30317"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79156bd105e8b0c54ef921b682476a6fa65e080", "fields": {"nom_de_la_commune": "SOUVIGNARGUES", "libell_d_acheminement": "SOUVIGNARGUES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30324"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1049774587183f0dfefd6e4f9dc72a1a7d272777", "fields": {"code_postal": "30440", "code_commune_insee": "30325", "libell_d_acheminement": "SUMENE", "ligne_5": "PONT D HERAULT", "nom_de_la_commune": "SUMENE", "coordonnees_gps": [43.9870513283, 3.7146726024]}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6eb06aaac2a39af06c1f283ee827ff9a4b9a05", "fields": {"nom_de_la_commune": "VALLABRIX", "libell_d_acheminement": "VALLABRIX", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30337"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f0aa03ae3f7ac00620b11d38956ab44202a798", "fields": {"nom_de_la_commune": "VALLERAUGUE", "libell_d_acheminement": "VALLERAUGUE", "code_postal": "30570", "coordonnees_gps": [44.0726659804, 3.64380586054], "code_commune_insee": "30339"}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dbe1969cb7f260ddb9fc6d9c4a2c4358467be5", "fields": {"code_postal": "30570", "code_commune_insee": "30339", "libell_d_acheminement": "VALLERAUGUE", "ligne_5": "PONT D HERAULT", "nom_de_la_commune": "VALLERAUGUE", "coordonnees_gps": [44.0726659804, 3.64380586054]}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ad603d1c5f43787c9e97485058e12cab595d04", "fields": {"code_postal": "30600", "code_commune_insee": "30341", "libell_d_acheminement": "VAUVERT", "ligne_5": "GALLICIAN", "nom_de_la_commune": "VAUVERT", "coordonnees_gps": [43.6360200976, 4.3019597877]}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f0105c4546605582a46d7a4af98984b0b86633", "fields": {"nom_de_la_commune": "VERGEZE", "libell_d_acheminement": "VERGEZE", "code_postal": "30310", "coordonnees_gps": [43.7378529674, 4.23230506556], "code_commune_insee": "30344"}, "geometry": {"type": "Point", "coordinates": [4.23230506556, 43.7378529674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e3d2509065a83b1204bd549f4ca1ec9a3ba6ef", "fields": {"nom_de_la_commune": "VIC LE FESQ", "libell_d_acheminement": "VIC LE FESQ", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30349"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33986057038b8da68538a8f6eea7c91b5ae86910", "fields": {"nom_de_la_commune": "VILLENEUVE LES AVIGNON", "libell_d_acheminement": "VILLENEUVE LES AVIGNON", "code_postal": "30400", "coordonnees_gps": [43.9767094968, 4.7939679581], "code_commune_insee": "30351"}, "geometry": {"type": "Point", "coordinates": [4.7939679581, 43.9767094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1eb2cfb5270cadc9dcec13625b9f6180eaf2de", "fields": {"nom_de_la_commune": "VISSEC", "libell_d_acheminement": "VISSEC", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30353"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb13321eb32acf1ee1b03a1235e4ed325b08f95f", "fields": {"nom_de_la_commune": "AGASSAC", "libell_d_acheminement": "AGASSAC", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31001"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584cd0fb90a0a680364622070554772b2c9f878c", "fields": {"nom_de_la_commune": "ALAN", "libell_d_acheminement": "ALAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31005"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65be359fb1afd3bb616cc026e1cdfe7233e7d2d1", "fields": {"nom_de_la_commune": "ALBIAC", "libell_d_acheminement": "ALBIAC", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31006"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ec523ee9f21ccfa6e4a01bd8fcb937c3356c0b", "fields": {"nom_de_la_commune": "AMBAX", "libell_d_acheminement": "AMBAX", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31007"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3dbe388329ea01044a22a81d6b2fee7a1cc31b", "fields": {"nom_de_la_commune": "ANTICHAN DE FRONTIGNES", "libell_d_acheminement": "ANTICHAN DE FRONTIGNES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31009"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd5de7bca96b2afd8af9fe274047837dc4c5594", "fields": {"nom_de_la_commune": "ANTIGNAC", "libell_d_acheminement": "ANTIGNAC", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31010"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3775a478d4a5763f43fee1ff82ab318e80b82fc", "fields": {"nom_de_la_commune": "ASPRET SARRAT", "libell_d_acheminement": "ASPRET SARRAT", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31021"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f682cd5e18948653f8a8cfbf2eaacd3143a07f43", "fields": {"nom_de_la_commune": "AULON", "libell_d_acheminement": "AULON", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31023"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41237b94acb51ae7a34c8979c753af67277df1ca", "fields": {"nom_de_la_commune": "AUREVILLE", "libell_d_acheminement": "AUREVILLE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31025"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bedac9646d7b89145c7d57548b2bf06ffaa1c0", "fields": {"nom_de_la_commune": "AURIGNAC", "libell_d_acheminement": "AURIGNAC", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31028"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa23db4ac2e19e162aa20e5525797fc4f46c096d", "fields": {"nom_de_la_commune": "AUTERIVE", "libell_d_acheminement": "AUTERIVE", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31033"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6830c6a0cf9b721bbe19a97da7843db4bc6a2d0a", "fields": {"nom_de_la_commune": "AZAS", "libell_d_acheminement": "AZAS", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31038"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c887c5bca6ea24d98ac766dbdd8c19a6764400", "fields": {"nom_de_la_commune": "BACHAS", "libell_d_acheminement": "BACHAS", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31039"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472480e1098734f7df4ae2b2f99530f1e3cfe2f9", "fields": {"nom_de_la_commune": "BALMA", "libell_d_acheminement": "BALMA", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31044"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0179b072b849a64a3ea21e62e1e5f2b2dbba63f", "fields": {"nom_de_la_commune": "BAZIEGE", "libell_d_acheminement": "BAZIEGE", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31048"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b257c9d215ed785dfaf6bdb1d41ffccec6b993", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31051"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19bacc23c6c350c4ccb3ba85b826563154d61336", "fields": {"nom_de_la_commune": "BEAUMONT SUR LEZE", "libell_d_acheminement": "BEAUMONT SUR LEZE", "code_postal": "31870", "coordonnees_gps": [43.3914758658, 1.36906768586], "code_commune_insee": "31052"}, "geometry": {"type": "Point", "coordinates": [1.36906768586, 43.3914758658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1271de4e3ff8e92a7ed829077ea1e82e8ed4e13", "fields": {"nom_de_la_commune": "BELLEGARDE STE MARIE", "libell_d_acheminement": "BELLEGARDE STE MARIE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31061"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a212dcdca497b186dea2990cbac3cb61ddf220", "fields": {"nom_de_la_commune": "BELLESSERRE", "libell_d_acheminement": "BELLESSERRE", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31062"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27244140fa5a3346d61c1dfe20e041fc1d2681c5", "fields": {"nom_de_la_commune": "BENQUE", "libell_d_acheminement": "BENQUE", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31063"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0d176d1b17153e9102e5380c9f56be8246c571", "fields": {"nom_de_la_commune": "BESSIERES", "libell_d_acheminement": "BESSIERES", "code_postal": "31660", "coordonnees_gps": [43.7787521435, 1.60352136541], "code_commune_insee": "31066"}, "geometry": {"type": "Point", "coordinates": [1.60352136541, 43.7787521435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4014bd0d65e33885ec447d2ac5bfbbe092be466", "fields": {"nom_de_la_commune": "BLAGNAC", "libell_d_acheminement": "BLAGNAC", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31069"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baa91d638c5ce42aa61071475238c9072d591813", "fields": {"nom_de_la_commune": "LE LANDREAU", "libell_d_acheminement": "LE LANDREAU", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44079"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6494c0935a50b1fc80d58ba80059b73e98f6fb", "fields": {"nom_de_la_commune": "LEGE", "libell_d_acheminement": "LEGE", "code_postal": "44650", "coordonnees_gps": [46.9200173219, -1.61088022271], "code_commune_insee": "44081"}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886efec1997c52d84dd412845bf0047cd7aeefda", "fields": {"nom_de_la_commune": "LIGNE", "libell_d_acheminement": "LIGNE", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44082"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9748cef38be297e0c81b45a55b7d289f7ea861", "fields": {"nom_de_la_commune": "LOUISFERT", "libell_d_acheminement": "LOUISFERT", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44085"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea60c3822418c9e62e55cf1decb2bcca47ed5487", "fields": {"nom_de_la_commune": "LUSANGER", "libell_d_acheminement": "LUSANGER", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44086"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f9660c82688e4290831269d3a51bb391dc53b3", "fields": {"nom_de_la_commune": "MACHECOUL ST MEME", "libell_d_acheminement": "MACHECOUL ST MEME", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44087"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46445ec576a956cf75a785aaa170e9870a3fc70", "fields": {"nom_de_la_commune": "MARSAC SUR DON", "libell_d_acheminement": "MARSAC SUR DON", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44091"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd2b6b1baf89f4d76c808ce8eb2779fc7ee76b8", "fields": {"nom_de_la_commune": "MASSERAC", "libell_d_acheminement": "MASSERAC", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44092"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9c796fe4647577abdaca009d553c5dc1a2eb43", "fields": {"nom_de_la_commune": "MONTBERT", "libell_d_acheminement": "MONTBERT", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44102"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad41481dd2ab79a25143ebb39019105336e93073", "fields": {"nom_de_la_commune": "MONTOIR DE BRETAGNE", "libell_d_acheminement": "MONTOIR DE BRETAGNE", "code_postal": "44550", "coordonnees_gps": [47.3304711447, -2.15365906277], "code_commune_insee": "44103"}, "geometry": {"type": "Point", "coordinates": [-2.15365906277, 47.3304711447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01bcb1b2aefa2ceb983192a1b7bf24ba14bfd278", "fields": {"nom_de_la_commune": "MOUZEIL", "libell_d_acheminement": "MOUZEIL", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44107"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef6ca6f4519510cd31659bd86620283967ffc43", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44100", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1a6eb04518860d90b610aaea6b1030c29c9da7", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44300", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eef284ae552a57873d151c7bb72ad2b8088c418", "fields": {"nom_de_la_commune": "LE PALLET", "libell_d_acheminement": "LE PALLET", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44117"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4711e43e6723e1c631d4f6786fa99e088bd00c75", "fields": {"nom_de_la_commune": "LE PELLERIN", "libell_d_acheminement": "LE PELLERIN", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44120"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58da2276bb985887e5599c1de99be6d0e52f5ba", "fields": {"code_postal": "44160", "code_commune_insee": "44129", "libell_d_acheminement": "PONTCHATEAU", "ligne_5": "ST GUILLAUME", "nom_de_la_commune": "PONTCHATEAU", "coordonnees_gps": [47.4265793893, -2.10093858399]}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0b82178fa0415b25b17463477374aaec05123c", "fields": {"code_postal": "44160", "code_commune_insee": "44129", "libell_d_acheminement": "PONTCHATEAU", "ligne_5": "ST ROCH", "nom_de_la_commune": "PONTCHATEAU", "coordonnees_gps": [47.4265793893, -2.10093858399]}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb02ad15e110a25d68f6092dc97552c0bb6ebd47", "fields": {"nom_de_la_commune": "ST ANDRE DES EAUX", "libell_d_acheminement": "ST ANDRE DES EAUX", "code_postal": "44117", "coordonnees_gps": [47.3234199197, -2.31212027704], "code_commune_insee": "44151"}, "geometry": {"type": "Point", "coordinates": [-2.31212027704, 47.3234199197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235f85b9d2a31ba7fd8499308b61ca0b64683d83", "fields": {"code_postal": "44310", "code_commune_insee": "44155", "libell_d_acheminement": "ST COLOMBAN", "ligne_5": "PONT JAMES", "nom_de_la_commune": "ST COLOMBAN", "coordonnees_gps": [47.040945415, -1.64161948487]}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9713299c2b3ff54a4f2e82785cc97247fe29aa", "fields": {"nom_de_la_commune": "CORCOUE SUR LOGNE", "libell_d_acheminement": "CORCOUE SUR LOGNE", "code_postal": "44650", "coordonnees_gps": [46.9200173219, -1.61088022271], "code_commune_insee": "44156"}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8254e97d4ea38e913983b515c758f1ee75d5953b", "fields": {"code_postal": "44150", "code_commune_insee": "44163", "libell_d_acheminement": "VAIR SUR LOIRE", "ligne_5": "ST HERBLON", "nom_de_la_commune": "VAIR SUR LOIRE", "coordonnees_gps": [47.3950525616, -1.14692474643]}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54fa13b296558bba9de3699e39b7e33b4641806", "fields": {"nom_de_la_commune": "ST HILAIRE DE CHALEONS", "libell_d_acheminement": "ST HILAIRE DE CHALEONS", "code_postal": "44680", "coordonnees_gps": [47.1058819776, -1.85298461474], "code_commune_insee": "44164"}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f760f1a6ecbd2304df30bca868dd7716050b0628", "fields": {"nom_de_la_commune": "ST JOACHIM", "libell_d_acheminement": "ST JOACHIM", "code_postal": "44720", "coordonnees_gps": [47.3719152384, -2.24320653036], "code_commune_insee": "44168"}, "geometry": {"type": "Point", "coordinates": [-2.24320653036, 47.3719152384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40109331d195361c54a78e81166d76a424a80ebf", "fields": {"nom_de_la_commune": "ST MARS DE COUTAIS", "libell_d_acheminement": "ST MARS DE COUTAIS", "code_postal": "44680", "coordonnees_gps": [47.1058819776, -1.85298461474], "code_commune_insee": "44178"}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e461d318c64eec0595031af4f1af6287203213", "fields": {"code_postal": "44730", "code_commune_insee": "44182", "libell_d_acheminement": "ST MICHEL CHEF CHEF", "ligne_5": "THARON PLAGE", "nom_de_la_commune": "ST MICHEL CHEF CHEF", "coordonnees_gps": [47.1753240266, -2.12708707959]}, "geometry": {"type": "Point", "coordinates": [-2.12708707959, 47.1753240266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ab8cebc0ac92dbd69b52a1250f20a92eb62e55", "fields": {"nom_de_la_commune": "ST NAZAIRE", "libell_d_acheminement": "ST NAZAIRE", "code_postal": "44600", "coordonnees_gps": [47.2802195147, -2.2511094831], "code_commune_insee": "44184"}, "geometry": {"type": "Point", "coordinates": [-2.2511094831, 47.2802195147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ae05b912f9e81e6976eeb07580f31ee15cffb6", "fields": {"nom_de_la_commune": "ST PHILBERT DE GRAND LIEU", "libell_d_acheminement": "ST PHILBERT DE GRAND LIEU", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44188"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed153a76370ece668ac0bf8533a5fc44d98e7cd", "fields": {"nom_de_la_commune": "SAVENAY", "libell_d_acheminement": "SAVENAY", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44195"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00b0108de49ed65070ef89a05e9e8c5f10fbaf9", "fields": {"nom_de_la_commune": "LES SORINIERES", "libell_d_acheminement": "LES SORINIERES", "code_postal": "44840", "coordonnees_gps": [47.1416858299, -1.5195061965], "code_commune_insee": "44198"}, "geometry": {"type": "Point", "coordinates": [-1.5195061965, 47.1416858299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d06a0ae2a68afd06c2e4815a78d971a088fc7a3", "fields": {"nom_de_la_commune": "SUCE SUR ERDRE", "libell_d_acheminement": "SUCE SUR ERDRE", "code_postal": "44240", "coordonnees_gps": [47.3309393698, -1.53749152159], "code_commune_insee": "44201"}, "geometry": {"type": "Point", "coordinates": [-1.53749152159, 47.3309393698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777a219bb0879ee786d43f056eeb0e0b3f737d26", "fields": {"nom_de_la_commune": "THOUARE SUR LOIRE", "libell_d_acheminement": "THOUARE SUR LOIRE", "code_postal": "44470", "coordonnees_gps": [47.3000422915, -1.4503189654], "code_commune_insee": "44204"}, "geometry": {"type": "Point", "coordinates": [-1.4503189654, 47.3000422915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bda1b2a81d542f16eb4442137255d4f46af9a6", "fields": {"nom_de_la_commune": "TREFFIEUX", "libell_d_acheminement": "TREFFIEUX", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44208"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33d581a29ee71b84e831524caddf466b45ffeb7", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "BELLIGNE", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142937775801cf06aa13e777a5bde8e83f1c8554", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "LA ROUXIERE", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f606c3c3aef321da0339df97ed30f009c00cda", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "VARADES", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a0d4388e44fbce5278ecf07588a72ef911317b", "fields": {"code_postal": "44120", "code_commune_insee": "44215", "libell_d_acheminement": "VERTOU", "ligne_5": "BEAUTOUR", "nom_de_la_commune": "VERTOU", "coordonnees_gps": [47.1603173471, -1.47089983101]}, "geometry": {"type": "Point", "coordinates": [-1.47089983101, 47.1603173471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ed5b2aceaaa440785941bd63be3bcca62a4e4e", "fields": {"nom_de_la_commune": "VRITZ", "libell_d_acheminement": "VRITZ", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44219"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891461703d25a7e899a7d7a52d91d54c18c95542", "fields": {"nom_de_la_commune": "GENESTON", "libell_d_acheminement": "GENESTON", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44223"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e251a0a3a7f3a28efa2c678fd501273fd7c395", "fields": {"nom_de_la_commune": "ATTRAY", "libell_d_acheminement": "ATTRAY", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45011"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5850b001042d3e68709fbeed754517478286e520", "fields": {"nom_de_la_commune": "AUTRY LE CHATEL", "libell_d_acheminement": "AUTRY LE CHATEL", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45016"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c8eb97fdc49cc7443530e6442c44bf3e0262b7", "fields": {"nom_de_la_commune": "AUXY", "libell_d_acheminement": "AUXY", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45018"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4daf5796ff81bd01b886f3ac8dc65c7ba490655", "fields": {"nom_de_la_commune": "BOIGNY SUR BIONNE", "libell_d_acheminement": "BOIGNY SUR BIONNE", "code_postal": "45760", "coordonnees_gps": [47.9504956092, 2.02989730454], "code_commune_insee": "45034"}, "geometry": {"type": "Point", "coordinates": [2.02989730454, 47.9504956092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244e22008577606291465b84c13f147fcad9525b", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45042"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf15bf958b68d1a03fab46365b9592462abe4df1", "fields": {"nom_de_la_commune": "BOU", "libell_d_acheminement": "BOU", "code_postal": "45430", "coordonnees_gps": [47.8949996525, 2.04744187127], "code_commune_insee": "45043"}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9df8b10d41dd8fa3bf7f8ed92247b0d077129a1", "fields": {"nom_de_la_commune": "BOUGY LEZ NEUVILLE", "libell_d_acheminement": "BOUGY LEZ NEUVILLE", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45044"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5e92e64567de8b52bcd12fc206d13adbc45e56", "fields": {"nom_de_la_commune": "BOUZY LA FORET", "libell_d_acheminement": "BOUZY LA FORET", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45049"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd7ea3f45b8ebcde9ca00ebccf0e32baa4cc354", "fields": {"nom_de_la_commune": "BROMEILLES", "libell_d_acheminement": "BROMEILLES", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45056"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a75d8f0b3a1232798111178912d7806b802c370", "fields": {"nom_de_la_commune": "CERDON", "libell_d_acheminement": "CERDON", "code_postal": "45620", "coordonnees_gps": [47.6434103501, 2.3340789354], "code_commune_insee": "45063"}, "geometry": {"type": "Point", "coordinates": [2.3340789354, 47.6434103501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda311db4b287bd0f92f80c3a401cf466bc94e12", "fields": {"nom_de_la_commune": "CHAILLY EN GATINAIS", "libell_d_acheminement": "CHAILLY EN GATINAIS", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45066"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e865bde6bb642e2c740d70a9b52708898aa8b4", "fields": {"nom_de_la_commune": "CHAMPOULET", "libell_d_acheminement": "CHAMPOULET", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45070"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edeb1576c6367577e0d0d8d502a4987c8aa6c79f", "fields": {"nom_de_la_commune": "CHARMONT EN BEAUCE", "libell_d_acheminement": "CHARMONT EN BEAUCE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45080"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e0d41a4c8e497091a35f8507b367f42013f852", "fields": {"nom_de_la_commune": "CHAUSSY", "libell_d_acheminement": "CHAUSSY", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45088"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0f749dd091852a9ede80d9b0d41386b82d8474", "fields": {"nom_de_la_commune": "CHEVILLY", "libell_d_acheminement": "CHEVILLY", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45093"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f193c4732298508f320fd2b5ed8bb6da645ef021", "fields": {"nom_de_la_commune": "CHILLEURS AUX BOIS", "libell_d_acheminement": "CHILLEURS AUX BOIS", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45095"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f442fdb1ae32f6898312baa3c9f3bcf4e4b1ab8", "fields": {"nom_de_la_commune": "LES CHOUX", "libell_d_acheminement": "LES CHOUX", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45096"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89219199e01acf9708ff33edb5295bae85ec5a3c", "fields": {"nom_de_la_commune": "CHUELLES", "libell_d_acheminement": "CHUELLES", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45097"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c77baeadf960c584fbbdf9fff86bb30fb0d5140", "fields": {"nom_de_la_commune": "DAMMARIE SUR LOING", "libell_d_acheminement": "DAMMARIE SUR LOING", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45121"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3822dd4acc6c90b35270dbbc54a8c1562752044", "fields": {"nom_de_la_commune": "EPIEDS EN BEAUCE", "libell_d_acheminement": "EPIEDS EN BEAUCE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45134"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5c5cf8a7830811f31be3ca482020ad944cc117", "fields": {"nom_de_la_commune": "ESCRIGNELLES", "libell_d_acheminement": "ESCRIGNELLES", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45138"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4499f302008bbb777d09226ac658a6d4314f1fa0", "fields": {"nom_de_la_commune": "FEINS EN GATINAIS", "libell_d_acheminement": "FEINS EN GATINAIS", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45143"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2882620936cd9287c60423148799731dfe5d9c65", "fields": {"nom_de_la_commune": "GRENEVILLE EN BEAUCE", "libell_d_acheminement": "GRENEVILLE EN BEAUCE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45160"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b5ff1cb11b297a922d524d3557d983a6f936bd", "fields": {"nom_de_la_commune": "INGRANNES", "libell_d_acheminement": "INGRANNES", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45168"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a68ab6a3a42eae20f72997809b84ef304329354", "fields": {"nom_de_la_commune": "JURANVILLE", "libell_d_acheminement": "JURANVILLE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45176"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c49e053ae21a5bcd12a36c67133b93224dde2f", "fields": {"nom_de_la_commune": "LADON", "libell_d_acheminement": "LADON", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45178"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e79b4f46a415e0dcd94f23684688aedef318866", "fields": {"nom_de_la_commune": "LEOUVILLE", "libell_d_acheminement": "LEOUVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45181"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4bd7b20823ce5885b870b8b194b528ee215589", "fields": {"nom_de_la_commune": "LIGNY LE RIBAULT", "libell_d_acheminement": "LIGNY LE RIBAULT", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45182"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d31cd55ff4cbeae7f47c21a3db74f312a0887a", "fields": {"nom_de_la_commune": "LOUZOUER", "libell_d_acheminement": "LOUZOUER", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45189"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1576635c0707bd0eaf32cc7ce2bbb415ae60f94", "fields": {"code_postal": "45300", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "MANCHECOURT", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7593778493aee57b2fb76cbc00f7a9cac75881", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "LABROSSE", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e499e07cce7a2c0f873e1f65a292b6ee8d7181ad", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "ORVEAU BELLESAUVE", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe325f4399d01ee0a234552400954d84d1531382", "fields": {"nom_de_la_commune": "MARSAINVILLIERS", "libell_d_acheminement": "MARSAINVILLIERS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45198"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a040d2c32232a4d29467d9c371d183e25d44f1ff", "fields": {"nom_de_la_commune": "MONTARGIS", "libell_d_acheminement": "MONTARGIS", "code_postal": "45200", "coordonnees_gps": [48.0036568049, 2.78095949035], "code_commune_insee": "45208"}, "geometry": {"type": "Point", "coordinates": [2.78095949035, 48.0036568049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a59556a7f569384377236b652dfc5f819cea0c", "fields": {"nom_de_la_commune": "MONTLIARD", "libell_d_acheminement": "MONTLIARD", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45215"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f196d3e7acc9db7656089872d05cb991e5ddc5", "fields": {"nom_de_la_commune": "MORVILLE EN BEAUCE", "libell_d_acheminement": "MORVILLE EN BEAUCE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45217"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af77bb9fc4ac240725ac570a94723520369924ca", "fields": {"nom_de_la_commune": "NARGIS", "libell_d_acheminement": "NARGIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45222"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd8a0d163a58d65f41047ecdcc81c3d053e47a6", "fields": {"nom_de_la_commune": "NEUVILLE AUX BOIS", "libell_d_acheminement": "NEUVILLE AUX BOIS", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45224"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36426793a864d4b87bc43104c20125d13a708fe2", "fields": {"nom_de_la_commune": "ONDREVILLE SUR ESSONNE", "libell_d_acheminement": "ONDREVILLE SUR ESSONNE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45233"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a98519c113b98e7e7ece2658705516f0e4790c", "fields": {"nom_de_la_commune": "ORLEANS", "libell_d_acheminement": "ORLEANS", "code_postal": "45100", "coordonnees_gps": [47.8826248233, 1.91635582903], "code_commune_insee": "45234"}, "geometry": {"type": "Point", "coordinates": [1.91635582903, 47.8826248233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48368e79afaa680bb6143d129681d32e4bebb82a", "fields": {"nom_de_la_commune": "PAUCOURT", "libell_d_acheminement": "PAUCOURT", "code_postal": "45200", "coordonnees_gps": [48.0036568049, 2.78095949035], "code_commune_insee": "45249"}, "geometry": {"type": "Point", "coordinates": [2.78095949035, 48.0036568049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbb4860c90d87b6454e7c229bd902745c35577b", "fields": {"nom_de_la_commune": "PIERREFITTE ES BOIS", "libell_d_acheminement": "PIERREFITTE ES BOIS", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45251"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892470ddfb92be45341c9e484c8357d42e64eb8e", "fields": {"code_postal": "45300", "code_commune_insee": "45253", "libell_d_acheminement": "PITHIVIERS LE VIEIL", "ligne_5": "BOUZONVILLE EN BEAUCE", "nom_de_la_commune": "PITHIVIERS LE VIEIL", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69c47c42e974921a1b2bfe744ebfc05926ab899", "fields": {"nom_de_la_commune": "PRESNOY", "libell_d_acheminement": "PRESNOY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45256"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b29f4a6c2472eea244bd8ddae892395b83dbda2", "fields": {"nom_de_la_commune": "ROUVRAY STE CROIX", "libell_d_acheminement": "ROUVRAY STE CROIX", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45262"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00929c8da327aaa5c54131fe2a48385f1dfa8042", "fields": {"nom_de_la_commune": "ROZIERES EN BEAUCE", "libell_d_acheminement": "ROZIERES EN BEAUCE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45264"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843c7d4f444c919ae33dd3d32d3ecdfcb9b1cf87", "fields": {"nom_de_la_commune": "ROZOY LE VIEIL", "libell_d_acheminement": "ROZOY LE VIEIL", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45265"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2befeafb33b843b15ad11092e92b85ef9bea6f7", "fields": {"nom_de_la_commune": "ST BENOIT SUR LOIRE", "libell_d_acheminement": "ST BENOIT SUR LOIRE", "code_postal": "45730", "coordonnees_gps": [47.808760292, 2.31707246728], "code_commune_insee": "45270"}, "geometry": {"type": "Point", "coordinates": [2.31707246728, 47.808760292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e8d00c2e922b8c1b0e8f84a4f5d70005fbe115e", "fields": {"nom_de_la_commune": "ST FLORENT", "libell_d_acheminement": "ST FLORENT", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45277"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266c9e120e439022266087d1c192f0b91f1f9c9e", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45279"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd317555a4a94d8aff99517cf188f4c0c15d6dd", "fields": {"nom_de_la_commune": "ST HILAIRE LES ANDRESIS", "libell_d_acheminement": "ST HILAIRE LES ANDRESIS", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45281"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea30f5a810b28ae470f9d16950bd002252421fe1", "fields": {"nom_de_la_commune": "ST HILAIRE SUR PUISEAUX", "libell_d_acheminement": "ST HILAIRE SUR PUISEAUX", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45283"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb451b6fe7605436764c3f7791fd171b52ab5a2", "fields": {"nom_de_la_commune": "ST JEAN DE LA RUELLE", "libell_d_acheminement": "ST JEAN DE LA RUELLE", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45285"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a63fbeb4284da193b33e54797ea5f16b8123dc", "fields": {"nom_de_la_commune": "ST JEAN LE BLANC", "libell_d_acheminement": "ST JEAN LE BLANC", "code_postal": "45650", "coordonnees_gps": [47.8831183185, 1.93332847011], "code_commune_insee": "45286"}, "geometry": {"type": "Point", "coordinates": [1.93332847011, 47.8831183185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899c87ebd49c8f0d2e2e9810eddcb965cbeaf299", "fields": {"nom_de_la_commune": "ST LOUP DE GONOIS", "libell_d_acheminement": "ST LOUP DE GONOIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45287"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad60bc7343d4aa512aaba125a0545ddd55fda6a", "fields": {"nom_de_la_commune": "ST LYE LA FORET", "libell_d_acheminement": "ST LYE LA FORET", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45289"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eeb54cb1fe5045326615aafce672870311c3026", "fields": {"nom_de_la_commune": "ST MARTIN SUR OCRE", "libell_d_acheminement": "ST MARTIN SUR OCRE", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45291"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b38a43d4fcefc5ce158850ae8325405c657f94", "fields": {"nom_de_la_commune": "LA SELLE SUR LE BIED", "libell_d_acheminement": "LA SELLE SUR LE BIED", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45307"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dfadcf725aeb174028cb2f797fc2fedd86de7a3", "fields": {"nom_de_la_commune": "SENNELY", "libell_d_acheminement": "SENNELY", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45309"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e58c006833ba6746be6a3a9a6ce4cb30416f93f", "fields": {"nom_de_la_commune": "TAVERS", "libell_d_acheminement": "TAVERS", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45317"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279d5683cdced2bbac393166c427d40975555b2e", "fields": {"nom_de_la_commune": "TRIGUERES", "libell_d_acheminement": "TRIGUERES", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45329"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4fc1b7627360c31623bfcf63526fe496243cae", "fields": {"nom_de_la_commune": "VILLAMBLAIN", "libell_d_acheminement": "VILLAMBLAIN", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45337"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a8fc00799c5f7febaa06462e63b251cab0007d", "fields": {"nom_de_la_commune": "LA CADIERE ET CAMBO", "libell_d_acheminement": "LA CADIERE ET CAMBO", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30058"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9cdb10f41b77a11ae7348b7f45f24432af4b32", "fields": {"nom_de_la_commune": "LA CALMETTE", "libell_d_acheminement": "LA CALMETTE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30061"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64afa7afaa254e66d702c5a5bff34c451489502b", "fields": {"nom_de_la_commune": "CALVISSON", "libell_d_acheminement": "CALVISSON", "code_postal": "30420", "coordonnees_gps": [43.7877220442, 4.18874527572], "code_commune_insee": "30062"}, "geometry": {"type": "Point", "coordinates": [4.18874527572, 43.7877220442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cce49e4d094797f5ccd3f556cabb202b119e8ca", "fields": {"nom_de_la_commune": "CARDET", "libell_d_acheminement": "CARDET", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30068"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c010e52c453e1a6863ec52ccb21444a14c1823c0", "fields": {"nom_de_la_commune": "CASTILLON DU GARD", "libell_d_acheminement": "CASTILLON DU GARD", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30073"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712adc70c9ab74be648571105fe8115828109dd8", "fields": {"nom_de_la_commune": "CAVEIRAC", "libell_d_acheminement": "CAVEIRAC", "code_postal": "30820", "coordonnees_gps": [43.8345078656, 4.26758675229], "code_commune_insee": "30075"}, "geometry": {"type": "Point", "coordinates": [4.26758675229, 43.8345078656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a450daac36dea8a47aaf7b75fb7e75312bda18", "fields": {"nom_de_la_commune": "CLARENSAC", "libell_d_acheminement": "CLARENSAC", "code_postal": "30870", "coordonnees_gps": [43.8342757187, 4.20744229546], "code_commune_insee": "30082"}, "geometry": {"type": "Point", "coordinates": [4.20744229546, 43.8342757187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050f7e446b8d27b23ebc03e219af28a8c018a807", "fields": {"nom_de_la_commune": "COMBAS", "libell_d_acheminement": "COMBAS", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30088"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f01fe3aebf021fe06370fdf2b40746afe706e7c", "fields": {"nom_de_la_commune": "DEAUX", "libell_d_acheminement": "DEAUX", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30101"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5b6a666730f3da659dd4c04129c08847747fec", "fields": {"nom_de_la_commune": "L ESTRECHURE", "libell_d_acheminement": "L ESTRECHURE", "code_postal": "30124", "coordonnees_gps": [44.0999030236, 3.79947600086], "code_commune_insee": "30108"}, "geometry": {"type": "Point", "coordinates": [3.79947600086, 44.0999030236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d7bab7abd494fcf7a4247db2c8834d7836e55f", "fields": {"nom_de_la_commune": "FOURNES", "libell_d_acheminement": "FOURNES", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30116"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc08f9a4d6a75c5aad5e7d36adc55c4739e355c", "fields": {"nom_de_la_commune": "FOURQUES", "libell_d_acheminement": "FOURQUES", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30117"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1bd389391dc6ff463728b1d49e1de65216e202", "fields": {"nom_de_la_commune": "GARRIGUES STE EULALIE", "libell_d_acheminement": "GARRIGUES STE EULALIE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30126"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6388666c197bad5696ae2066113a5f4cd7faaa3e", "fields": {"nom_de_la_commune": "GENERAC", "libell_d_acheminement": "GENERAC", "code_postal": "30510", "coordonnees_gps": [43.7239855564, 4.35877744622], "code_commune_insee": "30128"}, "geometry": {"type": "Point", "coordinates": [4.35877744622, 43.7239855564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad9ebd37b09da7408e2ca8c7d1993e8fcf848c9", "fields": {"nom_de_la_commune": "LA GRAND COMBE", "libell_d_acheminement": "LA GRAND COMBE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30132"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06306b12f126bea60f58047c9e3f82a73265ad8f", "fields": {"nom_de_la_commune": "LECQUES", "libell_d_acheminement": "LECQUES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30144"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a608ff3f21c31cb34bf9772406b000055c34ab", "fields": {"nom_de_la_commune": "LEDIGNAN", "libell_d_acheminement": "LEDIGNAN", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30146"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44bc0b862d972cdee5f5ce7c94248ae7c06f8898", "fields": {"nom_de_la_commune": "LEZAN", "libell_d_acheminement": "LEZAN", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30147"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174e77464807fb1342159c84902593f68797f1bf", "fields": {"nom_de_la_commune": "LIOUC", "libell_d_acheminement": "LIOUC", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30148"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f354eb203ec7a02abadcaf6de1abe2d2f7f7d6", "fields": {"nom_de_la_commune": "LES MAGES", "libell_d_acheminement": "LES MAGES", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30152"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b2fa058afe698018b0f44ed9cf3ceebc8c55d4b", "fields": {"nom_de_la_commune": "MARGUERITTES", "libell_d_acheminement": "MARGUERITTES", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30156"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9685e8012b796a13dda80f44a40b5dec0b5ab8c0", "fields": {"nom_de_la_commune": "MAURESSARGUES", "libell_d_acheminement": "MAURESSARGUES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30163"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bced85f6b5cce3569696ea63429906a3e451823", "fields": {"nom_de_la_commune": "MEJANNES LES ALES", "libell_d_acheminement": "MEJANNES LES ALES", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30165"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d75148280f95d28b89598383742ccbcff1b0063", "fields": {"nom_de_la_commune": "MONTDARDIER", "libell_d_acheminement": "MONTDARDIER", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30176"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9062dbb5eee6c10134069038efd911b8e56be2b8", "fields": {"nom_de_la_commune": "MONTIGNARGUES", "libell_d_acheminement": "MONTIGNARGUES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30180"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1993e43776a10d1811839f5ca911eafc74cec653", "fields": {"nom_de_la_commune": "NAVACELLES", "libell_d_acheminement": "NAVACELLES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30187"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d85bf7b6792b61466f1f89b57082ca558993551", "fields": {"nom_de_la_commune": "NERS", "libell_d_acheminement": "NERS", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30188"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710eef50fbcc5be0d2d6e99f38a9553d9712b35d", "fields": {"nom_de_la_commune": "ORSAN", "libell_d_acheminement": "ORSAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30191"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e459403ac8b97d1bd9494ff4352d12c81cf36f25", "fields": {"nom_de_la_commune": "POTELIERES", "libell_d_acheminement": "POTELIERES", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30204"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5734b16d8813f3dbed8eaceb50856929979f4ca", "fields": {"nom_de_la_commune": "PUJAUT", "libell_d_acheminement": "PUJAUT", "code_postal": "30131", "coordonnees_gps": [43.9996703515, 4.76494310963], "code_commune_insee": "30209"}, "geometry": {"type": "Point", "coordinates": [4.76494310963, 43.9996703515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fe99303eaa239a6242a566c96bb3a2da2bf22c", "fields": {"nom_de_la_commune": "ST ALEXANDRE", "libell_d_acheminement": "ST ALEXANDRE", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30226"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893dcc7e8a43fd35b1bde658ca226d9643706b17", "fields": {"nom_de_la_commune": "ST AMBROIX", "libell_d_acheminement": "ST AMBROIX", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30227"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9271f9e5339b1bf6bbf97662906b998c2815979", "fields": {"nom_de_la_commune": "ST ANDRE DE ROQUEPERTUIS", "libell_d_acheminement": "ST ANDRE DE ROQUEPERTUIS", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30230"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07ec4e6186d67ecbeb710f2b87f20f18cedcebb", "fields": {"nom_de_la_commune": "ST ANDRE DE VALBORGNE", "libell_d_acheminement": "ST ANDRE DE VALBORGNE", "code_postal": "30940", "coordonnees_gps": [44.1475370042, 3.68508048992], "code_commune_insee": "30231"}, "geometry": {"type": "Point", "coordinates": [3.68508048992, 44.1475370042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3138177699f93a47e81d973a09dbeb71f1f6a66", "fields": {"nom_de_la_commune": "ST BONNET DU GARD", "libell_d_acheminement": "ST BONNET DU GARD", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30235"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465d5a7094b55bc7158b1101a8ada439fe300958", "fields": {"nom_de_la_commune": "ST CESAIRE DE GAUZIGNAN", "libell_d_acheminement": "ST CESAIRE DE GAUZIGNAN", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30240"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bbca7cbbe915879fec999e0b5353c5fcdaa37b", "fields": {"nom_de_la_commune": "ST ETIENNE DES SORTS", "libell_d_acheminement": "ST ETIENNE DES SORTS", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30251"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999992a167c2bc2f67486351061a127157f9e332", "fields": {"nom_de_la_commune": "ST FELIX DE PALLIERES", "libell_d_acheminement": "ST FELIX DE PALLIERES", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30252"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6e37e4930cef7d673eec85ef8fe809e901f21a", "fields": {"nom_de_la_commune": "ST HILAIRE DE BRETHMAS", "libell_d_acheminement": "ST HILAIRE DE BRETHMAS", "code_postal": "30560", "coordonnees_gps": [44.0919758672, 4.12323888329], "code_commune_insee": "30259"}, "geometry": {"type": "Point", "coordinates": [4.12323888329, 44.0919758672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ff072530689a84e052c7c1711addc5fe43d4f4", "fields": {"nom_de_la_commune": "ST HIPPOLYTE DE CATON", "libell_d_acheminement": "ST HIPPOLYTE DE CATON", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30261"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9124967a4880154f102a6e2c1c63ccef12aea8fc", "fields": {"nom_de_la_commune": "ST JEAN DE CEYRARGUES", "libell_d_acheminement": "ST JEAN DE CEYRARGUES", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30264"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41ae1ee8a03714d162f144913d1cd3fda4f4929", "fields": {"nom_de_la_commune": "ST JEAN DE MARUEJOLS ET AVEJAN", "libell_d_acheminement": "ST JEAN DE MARUEJOLS ET AVEJAN", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30266"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d1dfa79fb2523f5823e54e43cce2f69780a8b7", "fields": {"nom_de_la_commune": "ST JEAN DE SERRES", "libell_d_acheminement": "ST JEAN DE SERRES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30267"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22011802b3d4bece9e136f4514b188332e55ad3f", "fields": {"nom_de_la_commune": "ST JEAN DU GARD", "libell_d_acheminement": "ST JEAN DU GARD", "code_postal": "30270", "coordonnees_gps": [44.1068662238, 3.87766205266], "code_commune_insee": "30269"}, "geometry": {"type": "Point", "coordinates": [3.87766205266, 44.1068662238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7dc0d9f594fff2ad205ed039048fa671f740bb3", "fields": {"nom_de_la_commune": "ST JULIEN DE LA NEF", "libell_d_acheminement": "ST JULIEN DE LA NEF", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30272"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6403bf5fb3439b97ece0a030b1ec37c1fadd5e8b", "fields": {"nom_de_la_commune": "ST LAURENT DES ARBRES", "libell_d_acheminement": "ST LAURENT DES ARBRES", "code_postal": "30126", "coordonnees_gps": [44.0300936861, 4.6901493854], "code_commune_insee": "30278"}, "geometry": {"type": "Point", "coordinates": [4.6901493854, 44.0300936861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb582f6982ada330a617abb8bc81ff53091a590c", "fields": {"nom_de_la_commune": "ST LAURENT LA VERNEDE", "libell_d_acheminement": "ST LAURENT LA VERNEDE", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30279"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7af0c07df28e1e5699f8fca366eda833e654dfba", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30283"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb47c3da06695d221cdfb02f9a5886ec5f14e24", "fields": {"nom_de_la_commune": "ST MARTIN DE VALGALGUES", "libell_d_acheminement": "ST MARTIN DE VALGALGUES", "code_postal": "30520", "coordonnees_gps": [44.1658639136, 4.07436260956], "code_commune_insee": "30284"}, "geometry": {"type": "Point", "coordinates": [4.07436260956, 44.1658639136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be9a7805c68a9033887bd4f208ac2bb682001cd4", "fields": {"nom_de_la_commune": "ST PAULET DE CAISSON", "libell_d_acheminement": "ST PAULET DE CAISSON", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30290"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc14aef7bff735b13165aeeb5a65315a50027cf7", "fields": {"nom_de_la_commune": "ST PRIVAT DE CHAMPCLOS", "libell_d_acheminement": "ST PRIVAT DE CHAMPCLOS", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30293"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c5da72dc47fb0ae96b42ff530434cb235527ac", "fields": {"nom_de_la_commune": "ST PRIVAT DES VIEUX", "libell_d_acheminement": "ST PRIVAT DES VIEUX", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30294"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4938d25b931a95d4f9448c11f0c0693cfa8ab5a3", "fields": {"nom_de_la_commune": "ST ROMAN DE CODIERES", "libell_d_acheminement": "ST ROMAN DE CODIERES", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30296"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d617bd785e8319d6b3e7a9671606bf1388117740", "fields": {"nom_de_la_commune": "ST SEBASTIEN D AIGREFEUILLE", "libell_d_acheminement": "ST SEBASTIEN D AIGREFEUILLE", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30298"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0fd6e92cb4cb7cb7018a2844a2298769aac7ea", "fields": {"nom_de_la_commune": "ST VICTOR DES OULES", "libell_d_acheminement": "ST VICTOR DES OULES", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30301"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6fca0c3d6d09afc7891e7a9ed9c30974d34e67", "fields": {"nom_de_la_commune": "SALINDRES", "libell_d_acheminement": "SALINDRES", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30305"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a0134f5b205028c4155b0602fb4c036ab5a3f84", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30312"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eeffb52df31a541ff0b4dae062c717c91e26c91", "fields": {"nom_de_la_commune": "SAVIGNARGUES", "libell_d_acheminement": "SAVIGNARGUES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30314"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479573fd9d48945398a52537225227d0a936e65e", "fields": {"nom_de_la_commune": "SOUDORGUES", "libell_d_acheminement": "SOUDORGUES", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30322"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71325d0cfa110300bfe94c588d24f21d6c5e075", "fields": {"nom_de_la_commune": "TAVEL", "libell_d_acheminement": "TAVEL", "code_postal": "30126", "coordonnees_gps": [44.0300936861, 4.6901493854], "code_commune_insee": "30326"}, "geometry": {"type": "Point", "coordinates": [4.6901493854, 44.0300936861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff620fd567974cf8ec4f4e482585e122a6c3eed", "fields": {"nom_de_la_commune": "VAUVERT", "libell_d_acheminement": "VAUVERT", "code_postal": "30600", "coordonnees_gps": [43.6360200976, 4.3019597877], "code_commune_insee": "30341"}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e724c95086dedbeb24f213e5d4ffe8b255547d76", "fields": {"nom_de_la_commune": "VENEJAN", "libell_d_acheminement": "VENEJAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30342"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3f44acea5dd12771e690412e1b9afbea3dc23c", "fields": {"nom_de_la_commune": "VERS PONT DU GARD", "libell_d_acheminement": "VERS PONT DU GARD", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30346"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64876ce9d5c69c6cc2805b2e8af3000175e83222", "fields": {"nom_de_la_commune": "VESTRIC ET CANDIAC", "libell_d_acheminement": "VESTRIC ET CANDIAC", "code_postal": "30600", "coordonnees_gps": [43.6360200976, 4.3019597877], "code_commune_insee": "30347"}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd58443c5a584197a405f963db6dfbf286bce31", "fields": {"nom_de_la_commune": "MONTAGNAC", "libell_d_acheminement": "MONTAGNAC", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30354"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788cec4470903d0cc72189eee7a13cacc576ca66", "fields": {"nom_de_la_commune": "AIGNES", "libell_d_acheminement": "AIGNES", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31002"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189dd6d0decee5cca2ae1243a453021f6f4a18e3", "fields": {"nom_de_la_commune": "AIGREFEUILLE", "libell_d_acheminement": "AIGREFEUILLE", "code_postal": "31280", "coordonnees_gps": [43.5930942522, 1.59070902866], "code_commune_insee": "31003"}, "geometry": {"type": "Point", "coordinates": [1.59070902866, 43.5930942522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65302c653c63b4d741e5050e1a2ce002040d2649", "fields": {"nom_de_la_commune": "ANAN", "libell_d_acheminement": "ANAN", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31008"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a96cefbe0a178f19faccb011a45ca2241ca7c0", "fields": {"nom_de_la_commune": "ARBON", "libell_d_acheminement": "ARBON", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31012"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e089f29aaf6341ff67f8641cec6f18a753ba0d1b", "fields": {"nom_de_la_commune": "ARGUT DESSOUS", "libell_d_acheminement": "ARGUT DESSOUS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31015"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ad3bb7c8caec7e1b8cb0f2695b891e12d7c989", "fields": {"nom_de_la_commune": "ARLOS", "libell_d_acheminement": "ARLOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31017"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75993568453610ca2b386e79a22302b5aa508aff", "fields": {"nom_de_la_commune": "AUCAMVILLE", "libell_d_acheminement": "AUCAMVILLE", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31022"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7747a101757972fb21452e37d236e8e5af84e9", "fields": {"nom_de_la_commune": "AURAGNE", "libell_d_acheminement": "AURAGNE", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31024"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42978a2070c410d1c00e56110c10df9b2fa764f", "fields": {"nom_de_la_commune": "AURIAC SUR VENDINELLE", "libell_d_acheminement": "AURIAC SUR VENDINELLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31026"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c3265e2862949c3e77a9da2eda5dff3ed9da08", "fields": {"nom_de_la_commune": "AUSSEING", "libell_d_acheminement": "AUSSEING", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31030"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a012c98c8edea34b785e312caf0ea98e454756b", "fields": {"nom_de_la_commune": "AUZAS", "libell_d_acheminement": "AUZAS", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31034"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0d4ca03f12f61635609fae1a9424a67b907e59", "fields": {"nom_de_la_commune": "AUZEVILLE TOLOSANE", "libell_d_acheminement": "AUZEVILLE TOLOSANE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31035"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a44dbade1329f306d653e131ce9069fce0976a", "fields": {"nom_de_la_commune": "BACHOS", "libell_d_acheminement": "BACHOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31040"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2c8a63f704d12f4554c4b837d51df738212350", "fields": {"code_postal": "31110", "code_commune_insee": "31042", "libell_d_acheminement": "BAGNERES DE LUCHON", "ligne_5": "SUPERBAGNERES", "nom_de_la_commune": "BAGNERES DE LUCHON", "coordonnees_gps": [42.78191254, 0.56401037404]}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f193be14de4fb3d4077a1704dad5bb52bda15e00", "fields": {"nom_de_la_commune": "BARBAZAN", "libell_d_acheminement": "BARBAZAN", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31045"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4626acf48ffce912075ee2fbb8115389c6b987e", "fields": {"nom_de_la_commune": "BEAUCHALOT", "libell_d_acheminement": "BEAUCHALOT", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31050"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06d279d893efe4a91355e77c7b1df8a53bd0aaa", "fields": {"nom_de_la_commune": "BEAUTEVILLE", "libell_d_acheminement": "BEAUTEVILLE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31054"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540184278b38a4be75ed195d961203eb836e5b89", "fields": {"nom_de_la_commune": "BELBEZE DE LAURAGAIS", "libell_d_acheminement": "BELBEZE DE LAURAGAIS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31058"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b41f6bb7add754ea94323dff3ba7fd5c79076be", "fields": {"nom_de_la_commune": "BERAT", "libell_d_acheminement": "BERAT", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31065"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee79f132efaa399a171e5134157ba2da6a02860", "fields": {"nom_de_la_commune": "BONDIGOUX", "libell_d_acheminement": "BONDIGOUX", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31073"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76cb3c01247c737a38605b37ff1fac1e52686eb", "fields": {"nom_de_la_commune": "BONREPOS RIQUET", "libell_d_acheminement": "BONREPOS RIQUET", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31074"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddc5a3f38a142f23a108c6f33b5a9e4b7fc040a", "fields": {"nom_de_la_commune": "LE BORN", "libell_d_acheminement": "LE BORN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31077"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416d6ebc10a35a176b2a366292afd4ad0b3432c2", "fields": {"nom_de_la_commune": "BOUSSAN", "libell_d_acheminement": "BOUSSAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31083"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781a9cf5df9fb9cf20a4de7a4e11889cf78c526a", "fields": {"nom_de_la_commune": "BOUTX", "libell_d_acheminement": "BOUTX", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31085"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510e7023da32930cb45952ebd32ce4a1bb6469d9", "fields": {"nom_de_la_commune": "BOUZIN", "libell_d_acheminement": "BOUZIN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31086"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f2288be1d13ac4d2b78c06b0f113ab890dff9d", "fields": {"nom_de_la_commune": "BRUGUIERES", "libell_d_acheminement": "BRUGUIERES", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31091"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65c5a6a990596b10ce155fd7e2578ad66f3a0b7", "fields": {"nom_de_la_commune": "BURGALAYS", "libell_d_acheminement": "BURGALAYS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31092"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46a5dc1f9817dc59e9f64bcc6dffa6d4d9960f0", "fields": {"nom_de_la_commune": "LE BURGAUD", "libell_d_acheminement": "LE BURGAUD", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31093"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4261688bf23fbffd73236d4e6e959eeb2e5ddfa6", "fields": {"nom_de_la_commune": "CALMONT", "libell_d_acheminement": "CALMONT", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31100"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e4a6e2507df97df4343a842560eee10358aefd8", "fields": {"nom_de_la_commune": "CARAMAN", "libell_d_acheminement": "CARAMAN", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31106"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d37f666c0c59677d3f816d94763a9793345e6a6", "fields": {"nom_de_la_commune": "CARBONNE", "libell_d_acheminement": "CARBONNE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31107"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feb3cd5dc8f1351be1e01652aa686f1747010e46", "fields": {"nom_de_la_commune": "CASTAGNAC", "libell_d_acheminement": "CASTAGNAC", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31111"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "467a07a1edcddf8dd279b6a2410de3e6fd49e248", "fields": {"nom_de_la_commune": "CASTAGNEDE", "libell_d_acheminement": "CASTAGNEDE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31112"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "108e7a9899a043b886ee19bd71331057d0eb0061", "fields": {"nom_de_la_commune": "CASTELMAUROU", "libell_d_acheminement": "CASTELMAUROU", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31117"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b681221aa3b21915074e77d61e84f5ab1d49e906", "fields": {"nom_de_la_commune": "LE CASTERA", "libell_d_acheminement": "LE CASTERA", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31120"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03498a0f3bf4d5d51289cb62f618c6d7aad1b644", "fields": {"nom_de_la_commune": "CHAUME ET COURCHAMP", "libell_d_acheminement": "CHAUME ET COURCHAMP", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21158"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4abed004f080ed80a7731c66b2b7ac621ca6117", "fields": {"nom_de_la_commune": "LA CHAUME", "libell_d_acheminement": "LA CHAUME", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21159"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99818880a56a89b930ef623e4bd1dc502123a6f7", "fields": {"nom_de_la_commune": "CHAUX", "libell_d_acheminement": "CHAUX", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21162"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cf88ba50416195d6db681272ab85a508ba960e", "fields": {"nom_de_la_commune": "CHENOVE", "libell_d_acheminement": "CHENOVE", "code_postal": "21300", "coordonnees_gps": [47.2927838988, 5.00536857546], "code_commune_insee": "21166"}, "geometry": {"type": "Point", "coordinates": [5.00536857546, 47.2927838988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e3f0510049ed14096b6cf50e4da35c280fa128", "fields": {"nom_de_la_commune": "CHEVIGNY EN VALIERE", "libell_d_acheminement": "CHEVIGNY EN VALIERE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21170"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49088c135e8ecb66f6ce472d191352a72c05ce95", "fields": {"nom_de_la_commune": "CHIVRES", "libell_d_acheminement": "CHIVRES", "code_postal": "21820", "coordonnees_gps": [46.9896528835, 5.08851380654], "code_commune_insee": "21172"}, "geometry": {"type": "Point", "coordinates": [5.08851380654, 46.9896528835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab00f8aeccb3c28ac96487497e51eae33b5b20c0", "fields": {"nom_de_la_commune": "CHOREY LES BEAUNE", "libell_d_acheminement": "CHOREY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21173"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c379d368274cb63f7f494f71f41a7d74484717cc", "fields": {"nom_de_la_commune": "CIREY LES PONTAILLER", "libell_d_acheminement": "CIREY LES PONTAILLER", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21175"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad238fbc2841c2393cd57b3f7316c8cedf834b9", "fields": {"nom_de_la_commune": "CORGOLOIN", "libell_d_acheminement": "CORGOLOIN", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21194"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5512a6dc2221be89b6b223a727fa57add2de1c3", "fields": {"nom_de_la_commune": "CORPEAU", "libell_d_acheminement": "CORPEAU", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21196"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7511791f92c5b56ac43d7ae1bbdb3d2498e16a6e", "fields": {"nom_de_la_commune": "COUCHEY", "libell_d_acheminement": "COUCHEY", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21200"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1562444077869e8cc1e0be4b11914972ffd385", "fields": {"nom_de_la_commune": "COURCELLES FREMOY", "libell_d_acheminement": "COURCELLES FREMOY", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21203"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f604c1521eed519de67da9f82f6c0087eb8c75c", "fields": {"nom_de_la_commune": "COURCELLES LES MONTBARD", "libell_d_acheminement": "COURCELLES LES MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21204"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11883b27377ad52e9aba461985f4e7e830b6f496", "fields": {"nom_de_la_commune": "COURLON", "libell_d_acheminement": "COURLON", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21207"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0becda5ff8aa428dc22553795232720917577e0", "fields": {"nom_de_la_commune": "COURTIVRON", "libell_d_acheminement": "COURTIVRON", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21208"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8475a35ac3a63b404028fbdc304a6dce8c5384ca", "fields": {"nom_de_la_commune": "CREANCEY", "libell_d_acheminement": "CREANCEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21210"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ecd97730a0222b75074bc500430160977e7d18c", "fields": {"nom_de_la_commune": "CREPAND", "libell_d_acheminement": "CREPAND", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21212"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af678bf496a43c071037f7b2e6100f8f42635c7", "fields": {"nom_de_la_commune": "CUSSEY LES FORGES", "libell_d_acheminement": "CUSSEY LES FORGES", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21220"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a0c25f18f990971cef3e884fa3009558af8b98e", "fields": {"nom_de_la_commune": "DAMPIERRE EN MONTAGNE", "libell_d_acheminement": "DAMPIERRE EN MONTAGNE", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21224"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee8e6373dde10f4e7ddabd84f848f3a47aaadd6", "fields": {"nom_de_la_commune": "DAROIS", "libell_d_acheminement": "DAROIS", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21227"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9b06571dfaf885ed4e02a78bd5fe03ebbb6732", "fields": {"nom_de_la_commune": "DIANCEY", "libell_d_acheminement": "DIANCEY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21229"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdcae21303b1b06f2f28ebe6759236f55dfd16b", "fields": {"nom_de_la_commune": "DIJON", "libell_d_acheminement": "DIJON", "code_postal": "21000", "coordonnees_gps": [47.3229417955, 5.03751223305], "code_commune_insee": "21231"}, "geometry": {"type": "Point", "coordinates": [5.03751223305, 47.3229417955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "227f2561a937f68a772337d90a477520c917810e", "fields": {"nom_de_la_commune": "DOMPIERRE EN MORVAN", "libell_d_acheminement": "DOMPIERRE EN MORVAN", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21232"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a098afa18d7c5062f455674cbe5209f22afd9ff", "fields": {"nom_de_la_commune": "DREE", "libell_d_acheminement": "DREE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21234"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48380452984cb3b190de0af84a8f783fbc189575", "fields": {"nom_de_la_commune": "ECHENON", "libell_d_acheminement": "ECHENON", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21239"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d26daa2fa9c290d4d4908ae102fa306ca0f324", "fields": {"nom_de_la_commune": "EPAGNY", "libell_d_acheminement": "EPAGNY", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21245"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed96854618930a294d04abd4014e8d67a2b271b8", "fields": {"nom_de_la_commune": "ERINGES", "libell_d_acheminement": "ERINGES", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21248"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae3fe6326df49d9f0e9d851fd2d8e3857361d544", "fields": {"nom_de_la_commune": "ETAIS", "libell_d_acheminement": "ETAIS", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21252"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9783611accf24c68c35e4f4478919cfbfdfefb3d", "fields": {"nom_de_la_commune": "L ETANG VERGY", "libell_d_acheminement": "L ETANG VERGY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21254"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35660886408edebc3db876736d8a476566b5901b", "fields": {"nom_de_la_commune": "ETORMAY", "libell_d_acheminement": "ETORMAY", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21257"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce94c565a46447f3c927206cc2a5d629e29d0932", "fields": {"nom_de_la_commune": "FAIN LES MONTBARD", "libell_d_acheminement": "FAIN LES MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21259"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a2e6d8c2eb26089c48749eb12dd817c5e18309", "fields": {"nom_de_la_commune": "FENAY", "libell_d_acheminement": "FENAY", "code_postal": "21600", "coordonnees_gps": [47.2634836316, 5.06260029514], "code_commune_insee": "21263"}, "geometry": {"type": "Point", "coordinates": [5.06260029514, 47.2634836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a44c86200f2144d107a5c9594ca76971f687d1", "fields": {"nom_de_la_commune": "LE FETE", "libell_d_acheminement": "LE FETE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21264"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05116703189cb1af7cde431078348bd2c75f94e1", "fields": {"nom_de_la_commune": "FLAGEY ECHEZEAUX", "libell_d_acheminement": "FLAGEY ECHEZEAUX", "code_postal": "21640", "coordonnees_gps": [47.1699047121, 4.99001555579], "code_commune_insee": "21267"}, "geometry": {"type": "Point", "coordinates": [4.99001555579, 47.1699047121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86a48fef19bb5d423be1705812ddfa8ac7816cd", "fields": {"nom_de_la_commune": "FLAGEY LES AUXONNE", "libell_d_acheminement": "FLAGEY LES AUXONNE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21268"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba7a19d7f4c984fb4bce313fb86d8701a345423", "fields": {"nom_de_la_commune": "FOISSY", "libell_d_acheminement": "FOISSY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21274"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4dd2d20eafe3e5151d45c7ec285095de48cf47", "fields": {"nom_de_la_commune": "FONTAINES LES SECHES", "libell_d_acheminement": "FONTAINES LES SECHES", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21279"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45e04233e0513c6ad125a870b6aed39fd606c87", "fields": {"nom_de_la_commune": "FRANXAULT", "libell_d_acheminement": "FRANXAULT", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21285"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9305ba53e17092351a244874e81d0a4ab375962", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21287"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4c19eddd212c9a0c8c2baf3dc00fd85333e8fa", "fields": {"nom_de_la_commune": "GRANCEY SUR OURCE", "libell_d_acheminement": "GRANCEY SUR OURCE", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21305"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152dc8fbcd75e54b64330cc3f5e4be91f8a9b5e6", "fields": {"nom_de_la_commune": "GRENANT LES SOMBERNON", "libell_d_acheminement": "GRENANT LES SOMBERNON", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21306"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffbad76cb66475aca994b44647db00f29c79b088", "fields": {"nom_de_la_commune": "JANCIGNY", "libell_d_acheminement": "JANCIGNY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21323"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35f9a59dfe9855779663ef96ca6d6dcf47722f74", "fields": {"nom_de_la_commune": "JOURS LES BAIGNEUX", "libell_d_acheminement": "JOURS LES BAIGNEUX", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21326"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e516f662774b7974083a8250c9c960fc2a9af5", "fields": {"nom_de_la_commune": "LABRUYERE", "libell_d_acheminement": "LABRUYERE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21333"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b780ea3784d8ab94f97aeb03a21b0acba283f3", "fields": {"nom_de_la_commune": "LACANCHE", "libell_d_acheminement": "LACANCHE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21334"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b925a87a24877104e3bf2e463a51e8683e1feb3b", "fields": {"nom_de_la_commune": "LAMARGELLE", "libell_d_acheminement": "LAMARGELLE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21338"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e969e8a8b29b313bbd0c7ec31c6bbe09a3dd4f3", "fields": {"nom_de_la_commune": "LANTENAY", "libell_d_acheminement": "LANTENAY", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21339"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869a6e2b69a66ac289bf320ca50e3ae48f408790", "fields": {"nom_de_la_commune": "LANTHES", "libell_d_acheminement": "LANTHES", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21340"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ded6dfd918ff9bed14fcad8b70d15baf6bb89cd", "fields": {"nom_de_la_commune": "LECHATELET", "libell_d_acheminement": "LECHATELET", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21344"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ad1d8cd55a648befe49e41d2cc4e29e96005a8", "fields": {"nom_de_la_commune": "LICEY SUR VINGEANNE", "libell_d_acheminement": "LICEY SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21348"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b21b6956510b3b54c94c08bcf235324f2f2c3ac", "fields": {"nom_de_la_commune": "LONGCHAMP", "libell_d_acheminement": "LONGCHAMP", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21351"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b754300a90147db04c6488c00e7b379dd9ab3808", "fields": {"nom_de_la_commune": "LONGEAULT", "libell_d_acheminement": "LONGEAULT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21352"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980cbbc119dc74b747686d247145c1e4a54b7636", "fields": {"nom_de_la_commune": "LUCEY", "libell_d_acheminement": "LUCEY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21359"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8115042bfd3e8b883f399f0f94c3e0fb075f9d75", "fields": {"nom_de_la_commune": "MAGNY ST MEDARD", "libell_d_acheminement": "MAGNY ST MEDARD", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21369"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25aa3c2938882aa50039c904ff352df95b28e356", "fields": {"nom_de_la_commune": "LES MAILLYS", "libell_d_acheminement": "LES MAILLYS", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21371"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a32fe53ef43349a4167b2f950b71abb31037752", "fields": {"nom_de_la_commune": "MAISEY LE DUC", "libell_d_acheminement": "MAISEY LE DUC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21372"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8bc1b67fd212445432e328529c893e50f90ed4", "fields": {"nom_de_la_commune": "MARCIGNY SOUS THIL", "libell_d_acheminement": "MARCIGNY SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21380"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d39424cfd136d4afd4c13f7de3369aaab0a7fc8", "fields": {"nom_de_la_commune": "MASSINGY LES SEMUR", "libell_d_acheminement": "MASSINGY LES SEMUR", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21394"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a99fb9dfe05a703ff61dc3b8083cc5e19554fd8a", "fields": {"nom_de_la_commune": "MAUVILLY", "libell_d_acheminement": "MAUVILLY", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21396"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d5eb7098d174ffc42078d318cc01f7eda38d18", "fields": {"nom_de_la_commune": "MELOISEY", "libell_d_acheminement": "MELOISEY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21401"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c481e379fc4e3241c4178ca6c8ece6a3f8cfeb", "fields": {"nom_de_la_commune": "MERCEUIL", "libell_d_acheminement": "MERCEUIL", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21405"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb64780de9a5d13f77c7b202dd31edfddd1ec41", "fields": {"nom_de_la_commune": "MESSANGES", "libell_d_acheminement": "MESSANGES", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21407"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b6a1aa13e119af5128dfc1136e53a0caaa49fca", "fields": {"nom_de_la_commune": "MEURSANGES", "libell_d_acheminement": "MEURSANGES", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21411"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a630f55f5189f6b641c53dd90e907d3ef0f7e80", "fields": {"nom_de_la_commune": "MONTCEAU ET ECHARNANT", "libell_d_acheminement": "MONTCEAU ET ECHARNANT", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21427"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb3f97b668d1473d2b240a0444e366607798cbf", "fields": {"nom_de_la_commune": "MONTMAIN", "libell_d_acheminement": "MONTMAIN", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21436"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c70bf19ec87e1d73d2d9d1fcdf78c1c5bf84a3", "fields": {"nom_de_la_commune": "LA MOTTE TERNANT", "libell_d_acheminement": "LA MOTTE TERNANT", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21445"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96632cc05c7fbc093011f5250e674a7fb6bc93dd", "fields": {"nom_de_la_commune": "NOIRON SUR BEZE", "libell_d_acheminement": "NOIRON SUR BEZE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21459"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dfa2ca46d919c15baed141629e8fecdc322eee", "fields": {"nom_de_la_commune": "ORRET", "libell_d_acheminement": "ORRET", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21471"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c42b37aaae56a1a969e6c9a69c7b98217c7338", "fields": {"nom_de_la_commune": "PANGES", "libell_d_acheminement": "PANGES", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21477"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b24df3ced41a5da38fabce70df25a4ddafe815", "fields": {"nom_de_la_commune": "PASQUES", "libell_d_acheminement": "PASQUES", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21478"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2dac18ce80d83eba15fec4be5302d1a049da77", "fields": {"nom_de_la_commune": "POISEUL LA VILLE ET LAPERRIERE", "libell_d_acheminement": "POISEUL LA VILLE ET LAPERRIERE", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21490"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4b3d4a0bf8f1a67e051a7f4c867ada26955e0de", "fields": {"nom_de_la_commune": "PONTAILLER SUR SAONE", "libell_d_acheminement": "PONTAILLER SUR SAONE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21496"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a940a848ff0e21c29ba79696a6e333989ac29c", "fields": {"nom_de_la_commune": "POUILLENAY", "libell_d_acheminement": "POUILLENAY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21500"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8d918e46abe3f1fb96d55bfb1cc618d8b19ab0", "fields": {"nom_de_la_commune": "PRECY SOUS THIL", "libell_d_acheminement": "PRECY SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21505"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f54e84d91f3fbb6307415d74e9415eafb851099", "fields": {"nom_de_la_commune": "PREMEAUX PRISSEY", "libell_d_acheminement": "PREMEAUX PRISSEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21506"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8067a5686934571a5f4ee1f334f964db70eab9ed", "fields": {"nom_de_la_commune": "PREMIERES", "libell_d_acheminement": "PREMIERES", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21507"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e099db4220628088f750e2d91fc293996e4ddbe", "fields": {"nom_de_la_commune": "PUITS", "libell_d_acheminement": "PUITS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21511"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5501ec88c0500ed77b242ccf3e7d33b98c65573", "fields": {"nom_de_la_commune": "QUEMIGNY SUR SEINE", "libell_d_acheminement": "QUEMIGNY SUR SEINE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21514"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f122c38bf408861c250e6ac064c019e5a6a63d05", "fields": {"nom_de_la_commune": "QUINCEROT", "libell_d_acheminement": "QUINCEROT", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21516"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3e2f75312ef24e8266ae38b845e14484562709", "fields": {"nom_de_la_commune": "REMILLY EN MONTAGNE", "libell_d_acheminement": "REMILLY EN MONTAGNE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21520"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495f700dbd0d4b0d301c417a31a800c81bcafd53", "fields": {"nom_de_la_commune": "RUFFEY LES ECHIREY", "libell_d_acheminement": "RUFFEY LES ECHIREY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21535"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8d72634786a00a9bc48c65629a881564a211882", "fields": {"nom_de_la_commune": "SAFFRES", "libell_d_acheminement": "SAFFRES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21537"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c37fa8975dfe1061580f09bff1ed66fc774c40", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21542"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4679464fa03f65de46a6b64ccfd8effd5ed74e99", "fields": {"nom_de_la_commune": "ST MARC SUR SEINE", "libell_d_acheminement": "ST MARC SUR SEINE", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21557"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776931a5f13b11800e51c169b60ff27ea657d0f1", "fields": {"nom_de_la_commune": "ST NICOLAS LES CITEAUX", "libell_d_acheminement": "ST NICOLAS LES CITEAUX", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21564"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48ab7c3237789494f3bbb76501ae4c4e0a0ab11", "fields": {"nom_de_la_commune": "ST PHILIBERT", "libell_d_acheminement": "ST PHILIBERT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21565"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348e076c514436a5f61bdc8f3ae2486e6a1d816f", "fields": {"nom_de_la_commune": "ST PIERRE EN VAUX", "libell_d_acheminement": "ST PIERRE EN VAUX", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21566"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525e6e698ee9f3a8b68ddebcea9f1dd05ec8e648", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21569"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7695686af70b17db57910ff892bf941bba4eb92", "fields": {"nom_de_la_commune": "STE SABINE", "libell_d_acheminement": "STE SABINE", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21570"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f09374596a491be7210910026e5eb4f4e75664", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21571"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91597df403b3d6b429535e3b822db54b50941006", "fields": {"nom_de_la_commune": "SAMEREY", "libell_d_acheminement": "SAMEREY", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21581"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1540d1f02da7275198bee3f028c5f4f5777cf7c0", "fields": {"nom_de_la_commune": "SAULON LA CHAPELLE", "libell_d_acheminement": "SAULON LA CHAPELLE", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21585"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3834ee3705b7feec54c256f8efc1aada6a166ae", "fields": {"nom_de_la_commune": "SAUSSEY", "libell_d_acheminement": "SAUSSEY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21588"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb8bfb88f2184922527e8320224c0fb2fbee5b0f", "fields": {"nom_de_la_commune": "DOMESSARGUES", "libell_d_acheminement": "DOMESSARGUES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30104"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13eac7057f816d91cb0b32f476103720e687414f", "fields": {"nom_de_la_commune": "FLAUX", "libell_d_acheminement": "FLAUX", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30110"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016137cacbfad4eb6e05da8577d43f17e58a8238", "fields": {"nom_de_la_commune": "FRESSAC", "libell_d_acheminement": "FRESSAC", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30119"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf944eb0ef522c67626181a0746a9c874517b8d", "fields": {"nom_de_la_commune": "GAGNIERES", "libell_d_acheminement": "GAGNIERES", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30120"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdf3a2b9c0cd5ab9d0c3a3b2072f1a3d0a00f07", "fields": {"code_postal": "30450", "code_commune_insee": "30130", "libell_d_acheminement": "GENOLHAC", "ligne_5": "PONT DE RASTEL", "nom_de_la_commune": "GENOLHAC", "coordonnees_gps": [44.3723847738, 3.99224222327]}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b7a1cb530437abc725a6dad4bea11423baeead", "fields": {"nom_de_la_commune": "LAMELOUZE", "libell_d_acheminement": "LAMELOUZE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30137"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd597e08046ab93e2bf079ef6196791edb1361a", "fields": {"code_postal": "30290", "code_commune_insee": "30141", "libell_d_acheminement": "LAUDUN L ARDOISE", "ligne_5": "L ARDOISE", "nom_de_la_commune": "LAUDUN L ARDOISE", "coordonnees_gps": [44.0818801602, 4.65422570722]}, "geometry": {"type": "Point", "coordinates": [4.65422570722, 44.0818801602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028365b8c39255af368ec6f9eebb23991588c200", "fields": {"nom_de_la_commune": "CHATELPERRON", "libell_d_acheminement": "CHATELPERRON", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03067"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e601cda9a1fc94c88e66eaad7c627fd2970305", "fields": {"nom_de_la_commune": "CHAVROCHES", "libell_d_acheminement": "CHAVROCHES", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03071"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a3f03e5ef8e520351f30894066986151eef8df", "fields": {"nom_de_la_commune": "COMMENTRY", "libell_d_acheminement": "COMMENTRY", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03082"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d022e69506e62829a0f8946bb121ff041a16f7f5", "fields": {"nom_de_la_commune": "COULEUVRE", "libell_d_acheminement": "COULEUVRE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03087"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7029306fee14dabf4849cfee5e99f9046978ce9", "fields": {"nom_de_la_commune": "CHAZEMAIS", "libell_d_acheminement": "CHAZEMAIS", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03072"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dbb5ed54e2d84dd84d5bb1475537cdf53ba987a", "fields": {"nom_de_la_commune": "CONTIGNY", "libell_d_acheminement": "CONTIGNY", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03083"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536b3d86978c45a5d90aab08d74d112fe21ceada", "fields": {"nom_de_la_commune": "CHAVENON", "libell_d_acheminement": "CHAVENON", "code_postal": "03440", "coordonnees_gps": [46.4644451309, 2.96888238917], "code_commune_insee": "03070"}, "geometry": {"type": "Point", "coordinates": [2.96888238917, 46.4644451309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8624826d82f3ca1b9ad4acface8877e5331ed91e", "fields": {"nom_de_la_commune": "COURCAIS", "libell_d_acheminement": "COURCAIS", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03088"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d49b594b396a909f5f2b945f3180acc954ec20", "fields": {"nom_de_la_commune": "EBREUIL", "libell_d_acheminement": "EBREUIL", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03107"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c116b1c0551feb533a17e9febad2b9585293d46c", "fields": {"code_postal": "04530", "code_commune_insee": "04120", "libell_d_acheminement": "VAL D ORONAYE", "ligne_5": "MEYRONNES", "nom_de_la_commune": "VAL D ORONAYE", "coordonnees_gps": [44.529721781, 6.79644418503]}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84023b8410d52cfb2339d515bc3b300ed379d436", "fields": {"code_postal": "04530", "code_commune_insee": "04120", "libell_d_acheminement": "VAL D ORONAYE", "ligne_5": "LARCHE", "nom_de_la_commune": "VAL D ORONAYE", "coordonnees_gps": [44.529721781, 6.79644418503]}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eccd21e40da1b70738a13db6d918264e53908107", "fields": {"nom_de_la_commune": "MONTAGNAC MONTPEZAT", "libell_d_acheminement": "MONTAGNAC MONTPEZAT", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04124"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3ba7fca61eada817922fc1a21edda5e4f03122", "fields": {"nom_de_la_commune": "MONTSALIER", "libell_d_acheminement": "MONTSALIER", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04132"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecc999011b3af22277f085288857bfc2d35bad5", "fields": {"nom_de_la_commune": "MONTCLAR", "libell_d_acheminement": "MONTCLAR", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04126"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d454363d6ff1665469447be353afcb3699081654", "fields": {"nom_de_la_commune": "LES MEES", "libell_d_acheminement": "LES MEES", "code_postal": "04190", "coordonnees_gps": [43.9943294384, 5.9660365633], "code_commune_insee": "04116"}, "geometry": {"type": "Point", "coordinates": [5.9660365633, 43.9943294384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8179cd485e8ecbd04efaee4e4d7af9bdcbb7d730", "fields": {"nom_de_la_commune": "MELVE", "libell_d_acheminement": "MELVE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04118"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ea48aa89d42afe1f19d6acbae031bf3fa50e50", "fields": {"code_postal": "04800", "code_commune_insee": "04081", "libell_d_acheminement": "ESPARRON DE VERDON", "ligne_5": "ALBIOSC", "nom_de_la_commune": "ESPARRON DE VERDON", "coordonnees_gps": [43.7622916617, 5.91644609387]}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf60ad754eed4d5205bd2cce6a72082bd8b54856", "fields": {"nom_de_la_commune": "FAUCON DU CAIRE", "libell_d_acheminement": "FAUCON DU CAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04085"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde1b93ccb1720269944ed85452cf9817151575a", "fields": {"nom_de_la_commune": "CHAMPTERCIER", "libell_d_acheminement": "CHAMPTERCIER", "code_postal": "04660", "coordonnees_gps": [44.0968674904, 6.14437203811], "code_commune_insee": "04047"}, "geometry": {"type": "Point", "coordinates": [6.14437203811, 44.0968674904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6721966c40cd8ff047fd1c42f312ccea574041", "fields": {"nom_de_la_commune": "MALLEMOISSON", "libell_d_acheminement": "MALLEMOISSON", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04110"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7a6ff6b5d6676840d8752bbb1eb17a3d27f7f9", "fields": {"nom_de_la_commune": "CHATEAUFORT", "libell_d_acheminement": "CHATEAUFORT", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04050"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90a037232a090d0aae9a782fa3bac701279c7e4", "fields": {"nom_de_la_commune": "LAMBRUISSE", "libell_d_acheminement": "LAMBRUISSE", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04099"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99752e0c5f562887e113b799f31fef4b04d25cb8", "fields": {"nom_de_la_commune": "MAJASTRES", "libell_d_acheminement": "MAJASTRES", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04107"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0110a351e4db90528d9b73d132bca6ee338287", "fields": {"nom_de_la_commune": "ENTREVAUX", "libell_d_acheminement": "ENTREVAUX", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04076"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5973f68d41b66e4351f24855deaed4e852b3faf3", "fields": {"nom_de_la_commune": "MANOSQUE", "libell_d_acheminement": "MANOSQUE", "code_postal": "04100", "coordonnees_gps": [43.8351241867, 5.7912492202], "code_commune_insee": "04112"}, "geometry": {"type": "Point", "coordinates": [5.7912492202, 43.8351241867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eefff9fe9cce301cf6769e5d806678c7a48ef26", "fields": {"nom_de_la_commune": "MANE", "libell_d_acheminement": "MANE", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04111"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e096424320be7edb40d8cc33752855fae13059cb", "fields": {"nom_de_la_commune": "ARPHEUILLES ST PRIEST", "libell_d_acheminement": "ARPHEUILLES ST PRIEST", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03007"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a29f31150f870e1d16a13d17c8b8721b05d7e0", "fields": {"nom_de_la_commune": "BELLERIVE SUR ALLIER", "libell_d_acheminement": "BELLERIVE SUR ALLIER", "code_postal": "03700", "coordonnees_gps": [46.0940657836, 3.37277682749], "code_commune_insee": "03023"}, "geometry": {"type": "Point", "coordinates": [3.37277682749, 46.0940657836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e054c0f9be0a15b4abdcdde095508638049ff55e", "fields": {"nom_de_la_commune": "AUTRY ISSARDS", "libell_d_acheminement": "AUTRY ISSARDS", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03012"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3b263a8b1e4ce11b4785b3b17da75a9c87c8f0", "fields": {"nom_de_la_commune": "BILLEZOIS", "libell_d_acheminement": "BILLEZOIS", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03028"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5cb4e955f61a5ccda8f14bb55b8c5bf619d0d2", "fields": {"nom_de_la_commune": "ARRONNES", "libell_d_acheminement": "ARRONNES", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03008"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cb694e55cf44b564636ecf2fa2c7fcabc046a6", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03009"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880e9babe33a608a125e51f56866b2125408f648", "fields": {"nom_de_la_commune": "AVRILLY", "libell_d_acheminement": "AVRILLY", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03014"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b8f23b57af4b1bc93257cdcfd41ea1d5dbb53a", "fields": {"nom_de_la_commune": "ABREST", "libell_d_acheminement": "ABREST", "code_postal": "03200", "coordonnees_gps": [46.1075083503, 3.45428306112], "code_commune_insee": "03001"}, "geometry": {"type": "Point", "coordinates": [3.45428306112, 46.1075083503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22da4bdcf67b47ca49ff3fea5d3066cad9adc6e8", "fields": {"nom_de_la_commune": "BIOZAT", "libell_d_acheminement": "BIOZAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03030"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96e877657f27040ce01cc092dee824112db8687d", "fields": {"nom_de_la_commune": "WIMY", "libell_d_acheminement": "WIMY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02833"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926cb45e8d778c5e1ebe67c2c99b8f4bfc4e8dec", "fields": {"nom_de_la_commune": "VILLERS LES GUISE", "libell_d_acheminement": "VILLERS LES GUISE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02814"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441da2d80d567b2a873bcf541b18f67c905016e0", "fields": {"nom_de_la_commune": "VILLERS COTTERETS", "libell_d_acheminement": "VILLERS COTTERETS", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02810"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61701f080af391f39ffb34bc02cc6276de8cdd81", "fields": {"nom_de_la_commune": "VIRY NOUREUIL", "libell_d_acheminement": "VIRY NOUREUIL", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02820"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "107c4613678bc91f4b9745403fe23adc7cb05593", "fields": {"nom_de_la_commune": "GRAND VERLY", "libell_d_acheminement": "GRAND VERLY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02783"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f7da6080728f7ac2dabfd32ad4378d98036dac", "fields": {"nom_de_la_commune": "VENDELLES", "libell_d_acheminement": "VENDELLES", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02774"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbea9f65ca4d9b013dbe357183d834564f557bb2", "fields": {"nom_de_la_commune": "VIEL ARCY", "libell_d_acheminement": "VIEL ARCY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02797"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c55089b7378976b77667f8fb891e29639fe4e6d", "fields": {"nom_de_la_commune": "VERDILLY", "libell_d_acheminement": "VERDILLY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02781"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3c2f2f2f98c38f0dbdfe40133f649e929f3b49", "fields": {"nom_de_la_commune": "VENIZEL", "libell_d_acheminement": "VENIZEL", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02780"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48728b37437367e7dcb6069cb54d8bdfa4eedc64", "fields": {"nom_de_la_commune": "VOYENNE", "libell_d_acheminement": "VOYENNE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02827"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74aca5dbb6886fa409552752d34a421d8636317", "fields": {"nom_de_la_commune": "VIFFORT", "libell_d_acheminement": "VIFFORT", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02800"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa078a142ed32af715b1d51adba7a26efa689197", "fields": {"nom_de_la_commune": "ST ANDRE LES ALPES", "libell_d_acheminement": "ST ANDRE LES ALPES", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04173"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f965eb5b0c02145435f1b4aca45ddb960f25605d", "fields": {"nom_de_la_commune": "ST JEANNET", "libell_d_acheminement": "ST JEANNET", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04181"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a225262c834c7ec7aaa8dcf0db181586fba2da", "fields": {"nom_de_la_commune": "ST JACQUES", "libell_d_acheminement": "ST JACQUES", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04180"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b95ff18867e0be132782ab22d7cf42aefc54176", "fields": {"nom_de_la_commune": "ROUMOULES", "libell_d_acheminement": "ROUMOULES", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04172"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e3c64d3e8fb5ef3f6265ffb65720213f6b8620", "fields": {"nom_de_la_commune": "ROUGON", "libell_d_acheminement": "ROUGON", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04171"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff48c050a00ba69a3e186d2ec1789c866de9baf", "fields": {"nom_de_la_commune": "CHATEAU VILLE VIEILLE", "libell_d_acheminement": "CHATEAU VILLE VIEILLE", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05038"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c652a82659fb2caa3d19c2363d3b0e94da60a8d", "fields": {"nom_de_la_commune": "BARCILLONNETTE", "libell_d_acheminement": "BARCILLONNETTE", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05013"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4987ad22e135e0b5213ca278881826ed83adb777", "fields": {"nom_de_la_commune": "LA BATIE NEUVE", "libell_d_acheminement": "LA BATIE NEUVE", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05017"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819f1e1628f980c891735afcdfc1309624f525e1", "fields": {"nom_de_la_commune": "CHAUFFAYER", "libell_d_acheminement": "CHAUFFAYER", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05039"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c075c47e14f3d80dcfded4c3e89f1ca986bba9f0", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04237"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615cc8945efb87abc887ad5ae396e5d32a3a4840", "fields": {"nom_de_la_commune": "BUISSARD", "libell_d_acheminement": "BUISSARD", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05025"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7820a99a1a982d15387a8e11ad657801086f9b", "fields": {"nom_de_la_commune": "VOLONNE", "libell_d_acheminement": "VOLONNE", "code_postal": "04290", "coordonnees_gps": [44.1438661231, 6.02689394814], "code_commune_insee": "04244"}, "geometry": {"type": "Point", "coordinates": [6.02689394814, 44.1438661231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188c6d499d853d77f4ee91ab70133f790899b308", "fields": {"nom_de_la_commune": "AVANCON", "libell_d_acheminement": "AVANCON", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05011"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58f989925d721b808ffaaaddb082fc176b260ed", "fields": {"nom_de_la_commune": "UBRAYE", "libell_d_acheminement": "UBRAYE", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04224"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807f2b2d8322b32c6cf37e3bde505cf60535500d", "fields": {"code_postal": "05000", "code_commune_insee": "05061", "libell_d_acheminement": "GAP", "ligne_5": "ROMETTE", "nom_de_la_commune": "GAP", "coordonnees_gps": [44.5625391818, 6.06869105196]}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e112b57f259bb65ffebc6a694029350d919c6ba0", "fields": {"nom_de_la_commune": "LE MONETIER LES BAINS", "libell_d_acheminement": "LE MONETIER LES BAINS", "code_postal": "05220", "coordonnees_gps": [44.9957936495, 6.46967651706], "code_commune_insee": "05079"}, "geometry": {"type": "Point", "coordinates": [6.46967651706, 44.9957936495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205cd839c88c451a3c9e28c11c1ee4515eb02c4a", "fields": {"nom_de_la_commune": "ETOILE ST CYRICE", "libell_d_acheminement": "ETOILE ST CYRICE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05051"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99521f981d2b5432ecf11ef0faff1b8ced58cd89", "fields": {"nom_de_la_commune": "FREISSINIERES", "libell_d_acheminement": "FREISSINIERES", "code_postal": "05310", "coordonnees_gps": [44.7404687507, 6.51315581075], "code_commune_insee": "05058"}, "geometry": {"type": "Point", "coordinates": [6.51315581075, 44.7404687507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32cdb1448f2ae7b915475fce13766ed7f0b3b513", "fields": {"nom_de_la_commune": "MONT DAUPHIN", "libell_d_acheminement": "MONT DAUPHIN", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05082"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc5360f80462ec972b7bc68e2439108f3c4cdeb", "fields": {"nom_de_la_commune": "MONTGENEVRE", "libell_d_acheminement": "MONTGENEVRE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05085"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24ded8029697c74e3eae5bf8da4468b21f0daa7", "fields": {"nom_de_la_commune": "LA FAURIE", "libell_d_acheminement": "LA FAURIE", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05055"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee173f9cdb404f9679de0919046ab178cdcaef0", "fields": {"nom_de_la_commune": "EYGLIERS", "libell_d_acheminement": "EYGLIERS", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05052"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c32aee7de0a76b8daf489d2c2e92985d9431e7", "fields": {"nom_de_la_commune": "CHORGES", "libell_d_acheminement": "CHORGES", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05040"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aab8be72d81c813737c10e0dbdddad795be94db", "fields": {"nom_de_la_commune": "EMBRUN", "libell_d_acheminement": "EMBRUN", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05046"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c86c860392bb68270d70d3cd1e7698f2c4655c", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "LA CLUSE", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf7fa2f728b4a6c8ffaacaf3cfd89e7a4ac30800", "fields": {"nom_de_la_commune": "ST JACQUES EN VALGODEMARD", "libell_d_acheminement": "ST JACQUES EN VALGODEMARD", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05144"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a09bece920f67e85137a303c5d1e0df517047e79", "fields": {"nom_de_la_commune": "ST EUSEBE EN CHAMPSAUR", "libell_d_acheminement": "ST EUSEBE EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05141"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24985553d0a4ed6b41080910aca41b34dc8d90ac", "fields": {"nom_de_la_commune": "ST LEGER LES MELEZES", "libell_d_acheminement": "ST LEGER LES MELEZES", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05149"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5da513cd317c1b784e4f8fb6b6df82dfaf696c", "fields": {"nom_de_la_commune": "PUY ST VINCENT", "libell_d_acheminement": "PUY ST VINCENT", "code_postal": "05290", "coordonnees_gps": [44.8269347148, 6.42358106998], "code_commune_insee": "05110"}, "geometry": {"type": "Point", "coordinates": [6.42358106998, 44.8269347148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adebd557b9ec902c3de9aff59ce5d9cebdd376eb", "fields": {"nom_de_la_commune": "ST APOLLINAIRE", "libell_d_acheminement": "ST APOLLINAIRE", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05130"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942d1a36ea50db6588d8b5d079034ec8404ae600", "fields": {"nom_de_la_commune": "ST CREPIN", "libell_d_acheminement": "ST CREPIN", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05136"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c93ca9a01c9a3ecb02183a82c6d2785cd4cde3", "fields": {"nom_de_la_commune": "CHAMPIGNOL LEZ MONDEVILLE", "libell_d_acheminement": "CHAMPIGNOL LEZ MONDEVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10076"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd715ae4ad2567106fd1f0e7a5e89b12a91c6553", "fields": {"nom_de_la_commune": "BRAGELOGNE BEAUVOIR", "libell_d_acheminement": "BRAGELOGNE BEAUVOIR", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10058"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48fad59060fb3dff5dfc70eadcecab0291cab7b1", "fields": {"nom_de_la_commune": "BRILLECOURT", "libell_d_acheminement": "BRILLECOURT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10065"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cb5798ad0207a99e98ee30b96d3f1d4c27f984", "fields": {"nom_de_la_commune": "BOURDENAY", "libell_d_acheminement": "BOURDENAY", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10054"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edba1e6d4550098feeb9a0149f0618e29298e30f", "fields": {"nom_de_la_commune": "BOURANTON", "libell_d_acheminement": "BOURANTON", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10053"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3451d970a72bd08cc8f26b86184937a0402c40c4", "fields": {"nom_de_la_commune": "BERGERES", "libell_d_acheminement": "BERGERES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10039"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0991517436ab592550988648003e40829e44c6", "fields": {"nom_de_la_commune": "BEUREY", "libell_d_acheminement": "BEUREY", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10045"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d71fcc167e9a2ec8da4647fb7cec5495989c7a", "fields": {"nom_de_la_commune": "BAYEL", "libell_d_acheminement": "BAYEL", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10035"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307b41abde3f664dc6e50d10f59b86a8c3259a34", "fields": {"nom_de_la_commune": "BESSY", "libell_d_acheminement": "BESSY", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10043"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a52da5e42bb393ac215a79d79c94078de04bb8", "fields": {"nom_de_la_commune": "FAUX", "libell_d_acheminement": "FAUX", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24177"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185609c1bed2588525d361f087a32a5cb3f012b2", "fields": {"nom_de_la_commune": "FLEURAC", "libell_d_acheminement": "FLEURAC", "code_postal": "24580", "coordonnees_gps": [45.0387588745, 0.994420883545], "code_commune_insee": "24183"}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d1f54d6c49e6627650e8673e93a251fd640132", "fields": {"nom_de_la_commune": "FOULEIX", "libell_d_acheminement": "FOULEIX", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24190"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b331b6e467f1e9e0e6b1a056ac40cc998388954f", "fields": {"nom_de_la_commune": "GAUGEAC", "libell_d_acheminement": "GAUGEAC", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24195"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5270e5959c6f8109eeac2ff72c7f9092c42a45a", "fields": {"nom_de_la_commune": "GROLEJAC", "libell_d_acheminement": "GROLEJAC", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24207"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b942f25a98c874f809e14ce69a2e53d3670f7537", "fields": {"nom_de_la_commune": "JAURE", "libell_d_acheminement": "JAURE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24213"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f027755c04677959e88cff81cbac85a39c479cf1", "fields": {"nom_de_la_commune": "JAVERLHAC ET LA CHAPELLE ST ROBERT", "libell_d_acheminement": "JAVERLHAC LA CHAPELLE ST ROBERT", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24214"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f5889f76e367fb50016804aff921e4a99bea98", "fields": {"nom_de_la_commune": "RUDEAU LADOSSE", "libell_d_acheminement": "RUDEAU LADOSSE", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24221"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f5c85c28e4a95862d0ace4d08f04e504673ea9", "fields": {"nom_de_la_commune": "LAMONZIE MONTASTRUC", "libell_d_acheminement": "LAMONZIE MONTASTRUC", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24224"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e556543b3c6d499d4b1881277e1552d0c8a841", "fields": {"nom_de_la_commune": "LAMOTHE MONTRAVEL", "libell_d_acheminement": "LAMOTHE MONTRAVEL", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24226"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f77789995c3bc1cad99c034df5733c8f4f0ab8", "fields": {"nom_de_la_commune": "LAVAUR", "libell_d_acheminement": "LAVAUR", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24232"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a27edcea82dda5865f578fd6571e07dcce7fb7", "fields": {"nom_de_la_commune": "LUNAS", "libell_d_acheminement": "LUNAS", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24246"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2166d49dfe463826816ee4bbcb885a55ff42b2", "fields": {"nom_de_la_commune": "LUSIGNAC", "libell_d_acheminement": "LUSIGNAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24247"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895ef2271a538b69d29e29172a03ef211319d204", "fields": {"nom_de_la_commune": "LUSSAS ET NONTRONNEAU", "libell_d_acheminement": "LUSSAS ET NONTRONNEAU", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24248"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9a9b6f03e8c88789610ee4090ef656e4534f44", "fields": {"nom_de_la_commune": "BONREPOS SUR AUSSONNELLE", "libell_d_acheminement": "BONREPOS SUR AUSSONNELLE", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31075"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde885c12ae1f4132a9f3b2dac0890cb6dfa69a4", "fields": {"nom_de_la_commune": "BOULOC", "libell_d_acheminement": "BOULOC", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31079"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5adf12b8f3ef41f88f60fde23433daa3a16bc7c", "fields": {"nom_de_la_commune": "BOURG D OUEIL", "libell_d_acheminement": "BOURG D OUEIL", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31081"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3df47e8321494ad6a3aec52dad1285aba754fe2", "fields": {"nom_de_la_commune": "BOURG ST BERNARD", "libell_d_acheminement": "BOURG ST BERNARD", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31082"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148b63140f8c71f88751edfcbfd219e418f7f0b8", "fields": {"nom_de_la_commune": "BOUTX", "libell_d_acheminement": "BOUTX", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31085"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2739b14696302af75c8038cde4c601e9c32efa40", "fields": {"code_postal": "31440", "code_commune_insee": "31085", "libell_d_acheminement": "BOUTX", "ligne_5": "ARGUT DESSUS", "nom_de_la_commune": "BOUTX", "coordonnees_gps": [42.895421056, 0.722774837437]}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b6c76222f2f962f8cafc73d3baab43ee088255", "fields": {"nom_de_la_commune": "BRETX", "libell_d_acheminement": "BRETX", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31089"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a607d72144037765433e5783b60a33b28cdcbdae", "fields": {"nom_de_la_commune": "BUZET SUR TARN", "libell_d_acheminement": "BUZET SUR TARN", "code_postal": "31660", "coordonnees_gps": [43.7787521435, 1.60352136541], "code_commune_insee": "31094"}, "geometry": {"type": "Point", "coordinates": [1.60352136541, 43.7787521435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe4cfe2df3d892e8cf310957678b9cf086e1a88", "fields": {"nom_de_la_commune": "CABANAC CAZAUX", "libell_d_acheminement": "CABANAC CAZAUX", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31095"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260afe4834956ed9a85cbf2533066b97c82e14e8", "fields": {"nom_de_la_commune": "CABANAC SEGUENVILLE", "libell_d_acheminement": "CABANAC SEGUENVILLE", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31096"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a649e1bc0facb27c9e7e078d3de31d9073d7b87", "fields": {"nom_de_la_commune": "CASTELBIAGUE", "libell_d_acheminement": "CASTELBIAGUE", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31114"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b8b32298d00527e4056cc334977b2adc4db297", "fields": {"nom_de_la_commune": "CASTELNAU D ESTRETEFONDS", "libell_d_acheminement": "CASTELNAU D ESTRETEFONDS", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31118"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d9e0d2499dd8260af7539a072b4055b4744670", "fields": {"nom_de_la_commune": "CASTILLON DE LARBOUST", "libell_d_acheminement": "CASTILLON DE LARBOUST", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31123"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805e5f57b856a2a90a7ecc3ca5a53eac37948aa7", "fields": {"nom_de_la_commune": "CAUBIAC", "libell_d_acheminement": "CAUBIAC", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31126"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72148f4d52debaa72731e9a8ac498e008bb83e5e", "fields": {"nom_de_la_commune": "CAZARIL TAMBOURES", "libell_d_acheminement": "CAZARIL TAMBOURES", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31130"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5614cc2435f92d2c6f4c7585ec5b2c7eb9aa86", "fields": {"nom_de_la_commune": "CAZERES", "libell_d_acheminement": "CAZERES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31135"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9713841498842b9033a4fbcb9a47a75dc15283c2", "fields": {"nom_de_la_commune": "CHARLAS", "libell_d_acheminement": "CHARLAS", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31138"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d27f99c065e721f16ad31bbc1e423cb37b257c", "fields": {"nom_de_la_commune": "CHEIN DESSUS", "libell_d_acheminement": "CHEIN DESSUS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31140"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852a6d8b6069c5115d5b585332a4a27d2e37fbd3", "fields": {"nom_de_la_commune": "CIER DE RIVIERE", "libell_d_acheminement": "CIER DE RIVIERE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31143"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a14d7c7bb0d06c174b928a1d02350c6283622d", "fields": {"nom_de_la_commune": "CIERP GAUD", "libell_d_acheminement": "CIERP GAUD", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31144"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c1ccfbf8e21d8277e2b037afcb0753e79d050a", "fields": {"nom_de_la_commune": "CINTEGABELLE", "libell_d_acheminement": "CINTEGABELLE", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31145"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f081e3793531beecf19da0cce793f4a1f4e2a7e3", "fields": {"nom_de_la_commune": "CLARAC", "libell_d_acheminement": "CLARAC", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31147"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79509639fc1626f36dc98b8860e72ddd2d4aa76", "fields": {"nom_de_la_commune": "COLOMIERS", "libell_d_acheminement": "COLOMIERS", "code_postal": "31770", "coordonnees_gps": [43.6115429523, 1.32737692342], "code_commune_insee": "31149"}, "geometry": {"type": "Point", "coordinates": [1.32737692342, 43.6115429523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13375beb72c6b75f195caef8a3b5eafc15399f1", "fields": {"nom_de_la_commune": "CORNEBARRIEU", "libell_d_acheminement": "CORNEBARRIEU", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31150"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db4cfe56b3442e3539c24d7af1263dd0e53064b", "fields": {"nom_de_la_commune": "DONNEVILLE", "libell_d_acheminement": "DONNEVILLE", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31162"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62d000924c84491cd7bd534eb437f7784486019", "fields": {"nom_de_la_commune": "DREMIL LAFAGE", "libell_d_acheminement": "DREMIL LAFAGE", "code_postal": "31280", "coordonnees_gps": [43.5930942522, 1.59070902866], "code_commune_insee": "31163"}, "geometry": {"type": "Point", "coordinates": [1.59070902866, 43.5930942522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6c198d72b24c71f11ef6e319f94cef581bad6e", "fields": {"nom_de_la_commune": "EAUNES", "libell_d_acheminement": "EAUNES", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31165"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a05f7018bc166ebd3625eca6d5c6dcc5c408ac", "fields": {"nom_de_la_commune": "EOUX", "libell_d_acheminement": "EOUX", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31168"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007ef60f3ef55d5fc96b0aaf69cbefffde8baee5", "fields": {"nom_de_la_commune": "ESCANECRABE", "libell_d_acheminement": "ESCANECRABE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31170"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674aa7f0093dad7d6954a9f78ee6e8b5b68ea51c", "fields": {"nom_de_la_commune": "ESTENOS", "libell_d_acheminement": "ESTENOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31176"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25167fbca22f2e354b209393d817c9c5c46c8932", "fields": {"nom_de_la_commune": "FENOUILLET", "libell_d_acheminement": "FENOUILLET", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31182"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155aa5275fbf772e9558e39b86f8ae7c17df4266", "fields": {"nom_de_la_commune": "FIGAROL", "libell_d_acheminement": "FIGAROL", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31183"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a6a689097f99445fa03611b857d185b154a5944", "fields": {"nom_de_la_commune": "FOS", "libell_d_acheminement": "FOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31190"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a5c3ea8ea34978ead06ca0dbaab087789214a9", "fields": {"nom_de_la_commune": "FRANQUEVIELLE", "libell_d_acheminement": "FRANQUEVIELLE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31197"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a30b150002b53ccc71135c88c5a576b1db8094c", "fields": {"nom_de_la_commune": "FRONTON", "libell_d_acheminement": "FRONTON", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31202"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd9e7f07fbb8d63bb202150f5b5410da2fa1f8f", "fields": {"nom_de_la_commune": "FROUZINS", "libell_d_acheminement": "FROUZINS", "code_postal": "31270", "coordonnees_gps": [43.5340423568, 1.33486531125], "code_commune_insee": "31203"}, "geometry": {"type": "Point", "coordinates": [1.33486531125, 43.5340423568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20d6a4c08ee4d61b5eecf5a751462625d1a560f4", "fields": {"nom_de_la_commune": "FUSTIGNAC", "libell_d_acheminement": "FUSTIGNAC", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31204"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001d994d26422d1e94e2aa38cee7460da58f343d", "fields": {"nom_de_la_commune": "GARDOUCH", "libell_d_acheminement": "GARDOUCH", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31210"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bca0faa8673212f8bcfc82400e0784852104f94", "fields": {"nom_de_la_commune": "GARGAS", "libell_d_acheminement": "GARGAS", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31211"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a2fb7825022d27c2928a2f4772f9f587f92646", "fields": {"nom_de_la_commune": "GAURE", "libell_d_acheminement": "GAURE", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31215"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172bfdba2c2f919cf6c793b2094f9709cff09ad4", "fields": {"nom_de_la_commune": "GOUAUX DE LUCHON", "libell_d_acheminement": "GOUAUX DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31222"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d888f44a5487cb8d47ebd59b6e6b9d98b97fc038", "fields": {"nom_de_la_commune": "GOUTEVERNISSE", "libell_d_acheminement": "GOUTEVERNISSE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31225"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af708980c130b0a2753c8d6a0cba4cfc2f05ec89", "fields": {"nom_de_la_commune": "GOYRANS", "libell_d_acheminement": "GOYRANS", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31227"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a796c6ed155ff82a81d6eb412fed0111e4fdb1", "fields": {"nom_de_la_commune": "GURAN", "libell_d_acheminement": "GURAN", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31235"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf60a3fe9a22285b92cfb6be6aabd5aed4b989c", "fields": {"nom_de_la_commune": "HUOS", "libell_d_acheminement": "HUOS", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31238"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96842822f522477cbe85fbb941ae57d9644f4a5c", "fields": {"nom_de_la_commune": "LABROQUERE", "libell_d_acheminement": "LABROQUERE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31255"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6055d4eaac74671a67b444e7647e2470fee51eb4", "fields": {"nom_de_la_commune": "LAHAGE", "libell_d_acheminement": "LAHAGE", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31266"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884195706605e923229aeda59f237ab16e1dda5f", "fields": {"nom_de_la_commune": "LANTA", "libell_d_acheminement": "LANTA", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31271"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b0b7623cdddf84101f0096e5b647b999c3ca82", "fields": {"nom_de_la_commune": "LAPEYRERE", "libell_d_acheminement": "LAPEYRERE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31272"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c509302c8f07e83498509adf836ef552818ecfed", "fields": {"nom_de_la_commune": "LATOUR", "libell_d_acheminement": "LATOUR", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31279"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe2fc377bbe7bb1567d30e58989c68db31381bb", "fields": {"nom_de_la_commune": "LAUNAC", "libell_d_acheminement": "LAUNAC", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31281"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1713a6f3027f3c8d4a686db538d2d29c19f70c2", "fields": {"nom_de_la_commune": "LEGE", "libell_d_acheminement": "LEGE", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31290"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb62caa069e22f795f56dd3bcebbae7e6ed4d45f", "fields": {"nom_de_la_commune": "LEGUEVIN", "libell_d_acheminement": "LEGUEVIN", "code_postal": "31490", "coordonnees_gps": [43.5952608538, 1.22974000355], "code_commune_insee": "31291"}, "geometry": {"type": "Point", "coordinates": [1.22974000355, 43.5952608538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e70e3c5352ca12e9ea8bb8b489c42ee7561639", "fields": {"nom_de_la_commune": "LESTELLE DE ST MARTORY", "libell_d_acheminement": "LESTELLE DE ST MARTORY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31296"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5797969ffd40e52e18827046a964cfd1d41f9a4", "fields": {"nom_de_la_commune": "LOUBENS LAURAGAIS", "libell_d_acheminement": "LOUBENS LAURAGAIS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31304"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e6cc09d6a8f13bdcd8e0e5d8c2e59defb42c04", "fields": {"nom_de_la_commune": "MANE", "libell_d_acheminement": "MANE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31315"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b1e945106324a8fd7a3bd7b545f42f55acbda1b", "fields": {"nom_de_la_commune": "MARIGNAC LASPEYRES", "libell_d_acheminement": "MARIGNAC LASPEYRES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31318"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2a96017b114c0f98a11e98cdc18937c35b0ac3", "fields": {"nom_de_la_commune": "MARTRES TOLOSANE", "libell_d_acheminement": "MARTRES TOLOSANE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31324"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae2716155ee2272ef1007204c65197b0aa91b09", "fields": {"nom_de_la_commune": "MASCARVILLE", "libell_d_acheminement": "MASCARVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31325"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad539529b9a56e31e2d85ec18f7d2c731ba383a", "fields": {"nom_de_la_commune": "MAUREMONT", "libell_d_acheminement": "MAUREMONT", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31328"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87682e8b9968db32fc61cfcd90f6834e55c005a", "fields": {"nom_de_la_commune": "MAUZAC", "libell_d_acheminement": "MAUZAC", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31334"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e2172bbd8e95761a51c30f1861b0ff6fa656956", "fields": {"nom_de_la_commune": "MELLES", "libell_d_acheminement": "MELLES", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31337"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc17f07d25b8a92e57f23344e1aac9324304af6c", "fields": {"nom_de_la_commune": "MENVILLE", "libell_d_acheminement": "MENVILLE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31338"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2b650aac246ac5709cf9141f1f93eef866056b", "fields": {"nom_de_la_commune": "MIREMONT", "libell_d_acheminement": "MIREMONT", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31345"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a392226f38f9be5489d9284af5acd666c538eb", "fields": {"nom_de_la_commune": "MONESTROL", "libell_d_acheminement": "MONESTROL", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31354"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ae74150fd3a4dfc366ca6043ab013cf8c26a1c", "fields": {"nom_de_la_commune": "MONTAIGUT SUR SAVE", "libell_d_acheminement": "MONTAIGUT SUR SAVE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31356"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce547e26668fe387f5d76a4cc49f0dfd59ec141", "fields": {"nom_de_la_commune": "MONTASTRUC DE SALIES", "libell_d_acheminement": "MONTASTRUC DE SALIES", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31357"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6593b0e20f3a3d18e0a911564a18b6871e39c2d5", "fields": {"nom_de_la_commune": "MONTBERON", "libell_d_acheminement": "MONTBERON", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31364"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2761dfc03b87c51e7ebcff024cf30dda502ee6", "fields": {"nom_de_la_commune": "MONTBRUN BOCAGE", "libell_d_acheminement": "MONTBRUN BOCAGE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31365"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef05cc6fdf8ad726a070d63b0621cbf9459f6614", "fields": {"nom_de_la_commune": "MONTESQUIEU GUITTAUT", "libell_d_acheminement": "MONTESQUIEU GUITTAUT", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31373"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9975a315ff923869b69ccf27b71fb6d9c07a733", "fields": {"nom_de_la_commune": "MONTGEARD", "libell_d_acheminement": "MONTGEARD", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31380"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84611d0c2e5cecb2bb23fce9b821f2dc166379d4", "fields": {"nom_de_la_commune": "MONTJOIRE", "libell_d_acheminement": "MONTJOIRE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31383"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55451a48dbbef890cc717da7cd30493e33d833c7", "fields": {"nom_de_la_commune": "MONTLAUR", "libell_d_acheminement": "MONTLAUR", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31384"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61217f167cb436b04228afd8078ffd0ad36a3eaf", "fields": {"nom_de_la_commune": "MONTOUSSIN", "libell_d_acheminement": "MONTOUSSIN", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31387"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ffdfdf7a0a2a7f04f08ae9c3a6de1258c6f8a4", "fields": {"nom_de_la_commune": "MOURVILLES HAUTES", "libell_d_acheminement": "MOURVILLES HAUTES", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31393"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc9ff9c91568aff2a1276fd84c2a4d70a66ebf5a", "fields": {"nom_de_la_commune": "NIZAN GESSE", "libell_d_acheminement": "NIZAN GESSE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31398"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90e32f60414d0953477021ae747cb1cdb2b6eb6", "fields": {"nom_de_la_commune": "NOGARET", "libell_d_acheminement": "NOGARET", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31400"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401d949ffd3c740c4efdd57427d2d12f5460a0db", "fields": {"nom_de_la_commune": "OO", "libell_d_acheminement": "OO", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31404"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b26259a82165f3e5d34f728678b4fac128890e4", "fields": {"nom_de_la_commune": "PECHABOU", "libell_d_acheminement": "PECHABOU", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31409"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df7234fb196549900141773ba145d6f1be0f4320", "fields": {"nom_de_la_commune": "PELLEPORT", "libell_d_acheminement": "PELLEPORT", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31413"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49200789c8b62e2af2f10dbcc97e3f637aed72e3", "fields": {"nom_de_la_commune": "PONLAT TAILLEBOURG", "libell_d_acheminement": "PONLAT TAILLEBOURG", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31430"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e2bf194a5acb600d01317aa0ffa632bc25bda5", "fields": {"nom_de_la_commune": "PORTET DE LUCHON", "libell_d_acheminement": "PORTET DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31432"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82cd6ea1e4df518ea68a2cdad2f9facbd945e0f", "fields": {"nom_de_la_commune": "RIEUCAZE", "libell_d_acheminement": "RIEUCAZE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31452"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519f40c501850de9043f62a20762101944614114", "fields": {"nom_de_la_commune": "ROQUES", "libell_d_acheminement": "ROQUES", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31458"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08da58e076f67271db69728ee0d62434b5a35e69", "fields": {"nom_de_la_commune": "ROUMENS", "libell_d_acheminement": "ROUMENS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31463"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1dbe57327224d69452dc28989fdba9b495a5ff", "fields": {"nom_de_la_commune": "ST ARAILLE", "libell_d_acheminement": "ST ARAILLE", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31469"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1147aa381b99f0ed40dbf07569c95b674fd650a", "fields": {"nom_de_la_commune": "ST AVENTIN", "libell_d_acheminement": "ST AVENTIN", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31470"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81f2c15b5a5d51d31dc0fc437d099ab82ae6de1", "fields": {"nom_de_la_commune": "ST BEAT", "libell_d_acheminement": "ST BEAT", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31471"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40251cc9a621d0bfa50848a84fa458707da147f7", "fields": {"nom_de_la_commune": "ST FERREOL DE COMMINGES", "libell_d_acheminement": "ST FERREOL DE COMMINGES", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31479"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee3e2a0a16f180edac89d82e379886a10722d0a", "fields": {"nom_de_la_commune": "STE FOY D AIGREFEUILLE", "libell_d_acheminement": "STE FOY D AIGREFEUILLE", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31480"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24976c8098a16cb7630ef371202fbb49a5510409", "fields": {"nom_de_la_commune": "ST JULIEN SUR GARONNE", "libell_d_acheminement": "ST JULIEN SUR GARONNE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31492"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f09ce010e66f3b288114e0d023c51683685be7", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31494"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc36c4e66eb378105279333558591d1fde3921c1", "fields": {"nom_de_la_commune": "ST LYS", "libell_d_acheminement": "ST LYS", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31499"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec92ded9bfc0a4dd23e78fed40f7c8a512958562", "fields": {"nom_de_la_commune": "ST MARCEL PAULEL", "libell_d_acheminement": "ST MARCEL PAULEL", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31501"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf7a308f1f7462f0961b44ad643fe2553a90e2a3", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31504"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6465969cb3cf3438d0cb6bc29f29f5dbb4bd56c", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31511"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293ab0c54b2d837d91be3492a808ba8912389123", "fields": {"nom_de_la_commune": "SAMOUILLAN", "libell_d_acheminement": "SAMOUILLAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31529"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b07662118f6532dbbdb78dd713d182ca1a7842", "fields": {"nom_de_la_commune": "SAUVETERRE DE COMMINGES", "libell_d_acheminement": "SAUVETERRE DE COMMINGES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31535"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc109d069f711dc790eeda700c13431de426e7a0", "fields": {"nom_de_la_commune": "SAVERES", "libell_d_acheminement": "SAVERES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31538"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c25541517edefcc07c06fed6d9e8f2c1927e449", "fields": {"nom_de_la_commune": "SEILH", "libell_d_acheminement": "SEILH", "code_postal": "31840", "coordonnees_gps": [43.6853114113, 1.33718819111], "code_commune_insee": "31541"}, "geometry": {"type": "Point", "coordinates": [1.33718819111, 43.6853114113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7dd28fe97afec5fbecebeb78bebd1abab80a20", "fields": {"nom_de_la_commune": "VILLEREAU", "libell_d_acheminement": "VILLEREAU", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45342"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa97e2d54e2e81f21407ea7cdbd76f30c448254d", "fields": {"nom_de_la_commune": "VILLEVOQUES", "libell_d_acheminement": "VILLEVOQUES", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45343"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2256b82dfef535db11fc7737aa7d0754d5a0976d", "fields": {"nom_de_la_commune": "VITRY AUX LOGES", "libell_d_acheminement": "VITRY AUX LOGES", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45346"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8b64d17b22f40b51355bd9360d1d062762a82d", "fields": {"nom_de_la_commune": "ANGLARS NOZAC", "libell_d_acheminement": "ANGLARS NOZAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46006"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fcee7a45029c9eff5ab03549c9754e189554bfa", "fields": {"nom_de_la_commune": "BALADOU", "libell_d_acheminement": "BALADOU", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46016"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311ba2eb802f9c6a8fa1aaa6acbbcf2815e2098b", "fields": {"nom_de_la_commune": "BELFORT DU QUERCY", "libell_d_acheminement": "BELFORT DU QUERCY", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46023"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56667b26ceb6d729b4346d81d00616fc39296cef", "fields": {"nom_de_la_commune": "BIARS SUR CERE", "libell_d_acheminement": "BIARS SUR CERE", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46029"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b8f1d542165cb7de2e7bfea15b0be00af28896", "fields": {"nom_de_la_commune": "LE BOURG", "libell_d_acheminement": "LE BOURG", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46034"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfdfd34128a7db271d9c3849093e8dce6eb477e", "fields": {"nom_de_la_commune": "CADRIEU", "libell_d_acheminement": "CADRIEU", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46041"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff6a8232976b58c35cfe1d54c0bd9f0a5c84a3f", "fields": {"nom_de_la_commune": "CAHUS", "libell_d_acheminement": "CAHUS", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46043"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebb5f1d5ac571a3194f445b6d620d763db73d8f", "fields": {"nom_de_la_commune": "CAMBES", "libell_d_acheminement": "CAMBES", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46051"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de44a22caf2a8e902a4417d75bb5162e000f57af", "fields": {"nom_de_la_commune": "CARENNAC", "libell_d_acheminement": "CARENNAC", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46058"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02fc56214000c828a53cd40e29bca21e4f604da2", "fields": {"nom_de_la_commune": "CASSAGNES", "libell_d_acheminement": "CASSAGNES", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46061"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb34e37faed8e7e3a07d0177ad3c6fab25f6c65", "fields": {"nom_de_la_commune": "CATUS", "libell_d_acheminement": "CATUS", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46064"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fc8986daa4d8a3c84426464d45b73e1736ff9b", "fields": {"nom_de_la_commune": "CAVAGNAC", "libell_d_acheminement": "CAVAGNAC", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46065"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8afe4609ef9d28c5515d4560baab3dc064c4be7", "fields": {"nom_de_la_commune": "CEZAC", "libell_d_acheminement": "CEZAC", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46069"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4088e4fbd65efb1da47a1717bb28297fd2e9c6c3", "fields": {"nom_de_la_commune": "CRAS", "libell_d_acheminement": "CRAS", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46079"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d279746bf06f5f1a442bb1c9c084ef07ba04103", "fields": {"nom_de_la_commune": "CREMPS", "libell_d_acheminement": "CREMPS", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46082"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa92f9470d269771c3543e4f19c71880757e6be", "fields": {"nom_de_la_commune": "CREYSSE", "libell_d_acheminement": "CREYSSE", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46084"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87de45f6b8cb5135e54ebf1241ae36b1a07889b", "fields": {"nom_de_la_commune": "CUZANCE", "libell_d_acheminement": "CUZANCE", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46086"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b86ba216d2e03835ce89d0d68d3a394a7b5773", "fields": {"nom_de_la_commune": "ESPAGNAC STE EULALIE", "libell_d_acheminement": "ESPAGNAC STE EULALIE", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46093"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bee75b90bbdaad46410794a5d0b012ad40404d4", "fields": {"nom_de_la_commune": "FARGUES", "libell_d_acheminement": "FARGUES", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46099"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fdc1c29b0f34ce1df58c75a1cfa7fc387347f5", "fields": {"nom_de_la_commune": "FAYCELLES", "libell_d_acheminement": "FAYCELLES", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46100"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec50559aa5c36ac87b5c31f5f684dd2bdc8998d", "fields": {"nom_de_la_commune": "FONS", "libell_d_acheminement": "FONS", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46108"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca54c1b276fe50332e07f8337c8aa8a90be14fb1", "fields": {"nom_de_la_commune": "FRANCOULES", "libell_d_acheminement": "FRANCOULES", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46112"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dec07d6e7f476d64dbfe189cb0fbfba3fdc3a72", "fields": {"nom_de_la_commune": "FRAYSSINHES", "libell_d_acheminement": "FRAYSSINHES", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46115"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd54fc6343ee327372fb71d7a258aa95ccbafb6", "fields": {"nom_de_la_commune": "GIRAC", "libell_d_acheminement": "GIRAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46123"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0988788155c776d66e6943a2c882c814e65937b", "fields": {"nom_de_la_commune": "ISSENDOLUS", "libell_d_acheminement": "ISSENDOLUS", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46132"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e8cec903b5892670fc3b7da40a14a4d863a305", "fields": {"nom_de_la_commune": "ISSEPTS", "libell_d_acheminement": "ISSEPTS", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46133"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0f7cac2b14fca23f9365b83b88e85d4a2d1edd", "fields": {"nom_de_la_commune": "LABASTIDE MARNHAC", "libell_d_acheminement": "LABASTIDE MARNHAC", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46137"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e042a5f9d9fac7dfbc030549f283ac96c064b5", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "FONTANES DU CAUSSE", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aad88a62368eec2ceb710e92a36a77971b86db4", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "LABASTIDE MURAT", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04646d7907551da1bc6e9d53aa511d54956dddc0", "fields": {"nom_de_la_commune": "LABURGADE", "libell_d_acheminement": "LABURGADE", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46140"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161dbedd8c1c27a92145551d5dbdb713c00b27c3", "fields": {"nom_de_la_commune": "LACHAPELLE AUZAC", "libell_d_acheminement": "LACHAPELLE AUZAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46145"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ff9dc47e82333c632633b3567a730d03711f83", "fields": {"nom_de_la_commune": "LADIRAT", "libell_d_acheminement": "LADIRAT", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46146"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8004499782ba68f3ac69e344cc835af1cf50c81", "fields": {"nom_de_la_commune": "LAMAGDELAINE", "libell_d_acheminement": "LAMAGDELAINE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46149"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59f1a6f5d2165738cc6c25dd19c1fcc5ff3be50", "fields": {"nom_de_la_commune": "LAMOTHE FENELON", "libell_d_acheminement": "LAMOTHE FENELON", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46152"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a74ecaf5b1f7d97028946d1f0946b95f290df30", "fields": {"nom_de_la_commune": "LAROQUE DES ARCS", "libell_d_acheminement": "LAROQUE DES ARCS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46156"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf822bcdd55f7c8e93921dac8e2c4d85a781ce6", "fields": {"nom_de_la_commune": "LATOUILLE LENTILLAC", "libell_d_acheminement": "LATOUILLE LENTILLAC", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46159"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5c92c98caf320fc0233d5042fa791a892756ab", "fields": {"nom_de_la_commune": "LAVERCANTIERE", "libell_d_acheminement": "LAVERCANTIERE", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46164"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d877e22c21d9579acf835b95b21227fd93e4aab", "fields": {"nom_de_la_commune": "LENTILLAC ST BLAISE", "libell_d_acheminement": "LENTILLAC ST BLAISE", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46168"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd1ff5a009e62a4b63a68ebde114338e19a306d", "fields": {"nom_de_la_commune": "LUNAN", "libell_d_acheminement": "LUNAN", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46180"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d0823f7085e87a1f478db72e4c99e6d6020cac", "fields": {"nom_de_la_commune": "MAUROUX", "libell_d_acheminement": "MAUROUX", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46187"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70956c4bcddff6a640547607bc936fb5e7cc19c7", "fields": {"nom_de_la_commune": "MOLIERES", "libell_d_acheminement": "MOLIERES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46195"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "995118434fcfbe994b3e0c0e00902f3cfd793c56", "fields": {"nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46201"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f757e63be32f8a9554f4faee242618cead76e6", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "STE CROIX", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c45782674e3cb216a85e49fd3e81fdfe83cd5a3", "fields": {"nom_de_la_commune": "MONTET ET BOUXAL", "libell_d_acheminement": "MONTET ET BOUXAL", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46203"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a397bcfeebb604d837ff894d968f746cdd56270c", "fields": {"nom_de_la_commune": "MONTGESTY", "libell_d_acheminement": "MONTGESTY", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46205"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6181845ece1132ed3ef22cb1e4a7e9f69684ea6", "fields": {"nom_de_la_commune": "NUZEJOULS", "libell_d_acheminement": "NUZEJOULS", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46211"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25be8aa17a3516aef7e533f5b1cc97d1a4ef975", "fields": {"nom_de_la_commune": "PAYRAC", "libell_d_acheminement": "PAYRAC", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46215"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b647ee392998055c9d89939dda0aba8c3a66a1", "fields": {"nom_de_la_commune": "PESCADOIRES", "libell_d_acheminement": "PESCADOIRES", "code_postal": "46220", "coordonnees_gps": [44.5097292644, 1.18339970147], "code_commune_insee": "46218"}, "geometry": {"type": "Point", "coordinates": [1.18339970147, 44.5097292644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3097a59aa66b6b6f31c1a5ba6ea64c4baffc7b6", "fields": {"nom_de_la_commune": "PLANIOLES", "libell_d_acheminement": "PLANIOLES", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46221"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc8cd5c01dc8109d65a55c179a7eeb4b886acca", "fields": {"nom_de_la_commune": "PRUDHOMAT", "libell_d_acheminement": "PRUDHOMAT", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46228"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7334ab441ad66f0686cc981eb583726eddcd21e4", "fields": {"nom_de_la_commune": "RAMPOUX", "libell_d_acheminement": "RAMPOUX", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46234"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a59ba166515d1298083a0c59eb5ed8cb086d3db", "fields": {"nom_de_la_commune": "REILHAC", "libell_d_acheminement": "REILHAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46235"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfea63dd0d6af90d4534481fdc99f1138bd9abfe", "fields": {"nom_de_la_commune": "SABADEL LATRONQUIERE", "libell_d_acheminement": "SABADEL LATRONQUIERE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46244"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4dd166a879f692bd6840a3139ddaaa088d453f", "fields": {"nom_de_la_commune": "SABADEL LAUZES", "libell_d_acheminement": "SABADEL LAUZES", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46245"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af79a06a33adc3b519c998abcad7542eedc07c90", "fields": {"nom_de_la_commune": "SAIGNES", "libell_d_acheminement": "SAIGNES", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46246"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651bfc5b2093d3b8358ddd60c76f53cd26882f8a", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46250"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94c4428ed6023335143fd55303d03c2a8f95d84", "fields": {"nom_de_la_commune": "ST CERE", "libell_d_acheminement": "ST CERE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46251"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a66557f88dcdb3c69ca2f94fce97d36f1acc88c", "fields": {"nom_de_la_commune": "ST DAUNES", "libell_d_acheminement": "ST DAUNES", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46263"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b8f84663019afa121e9c39dd100cf6677b163b", "fields": {"nom_de_la_commune": "ST DENIS CATUS", "libell_d_acheminement": "ST DENIS CATUS", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46264"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb4cf12d6ee3b16d865787ce1a33fb40fd226bc", "fields": {"nom_de_la_commune": "ST DENIS LES MARTEL", "libell_d_acheminement": "ST DENIS LES MARTEL", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46265"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049dcff1010e02b5b6813a95eb7eb7d76bbcf4f6", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46269"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a82bf2010a837278edeee2341160d799ace8e0", "fields": {"nom_de_la_commune": "ST JEAN DE LAUR", "libell_d_acheminement": "ST JEAN DE LAUR", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46270"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ef80c5a54f83fc355390d24ec038a52eaf68d5", "fields": {"nom_de_la_commune": "ST LAURENT LOLMIE", "libell_d_acheminement": "ST LAURENT LOLMIE", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46274"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bfc5a31a40c570e38ced0b9fb252417ec18aaa1", "fields": {"nom_de_la_commune": "ST PIERRE TOIRAC", "libell_d_acheminement": "ST PIERRE TOIRAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46289"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f857b4311b71c4ef7c0a34414eabd78fc293305", "fields": {"nom_de_la_commune": "ST SOZY", "libell_d_acheminement": "ST SOZY", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46293"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae04b99068496c0f57b65a777f2b5be8d6d2ff74", "fields": {"nom_de_la_commune": "ST VINCENT DU PENDIT", "libell_d_acheminement": "ST VINCENT DU PENDIT", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46295"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b61a6ac6fcdb9b0f8c0540691476f20832926b", "fields": {"nom_de_la_commune": "SAUX", "libell_d_acheminement": "SAUX", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46300"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e23413b495804f971d6fa9f6e513e0fbdfc9c51", "fields": {"nom_de_la_commune": "SAUZET", "libell_d_acheminement": "SAUZET", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46301"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e602ca0cf3fde3b08e1b00c025237a47cd69d7cd", "fields": {"nom_de_la_commune": "SONAC", "libell_d_acheminement": "SONAC", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46306"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64d8434bb081bbf233bb981b46522dda2703d6c", "fields": {"nom_de_la_commune": "SOUCIRAC", "libell_d_acheminement": "SOUCIRAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46308"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27dcec49240e7454bff4354d773b5dc186a6f844", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "LACAM D OURCET", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0f955cb942ae178f148104eccbdfe1f31a937b", "fields": {"nom_de_la_commune": "UZECH", "libell_d_acheminement": "UZECH", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46324"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e437676f0f373e7b5d7f5131b69fd29d5166b73", "fields": {"nom_de_la_commune": "AGEN", "libell_d_acheminement": "AGEN", "code_postal": "47000", "coordonnees_gps": [44.2024127205, 0.625779253608], "code_commune_insee": "47001"}, "geometry": {"type": "Point", "coordinates": [0.625779253608, 44.2024127205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19833c6f296c704111288d38efa59983dd07e761", "fields": {"nom_de_la_commune": "AGNAC", "libell_d_acheminement": "AGNAC", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47003"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818ecb1690261a8f59367abd95672764d119f884", "fields": {"nom_de_la_commune": "AUBIAC", "libell_d_acheminement": "AUBIAC", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47016"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be84a62576d7cd3db5b354d0bce52969894ef734", "fields": {"nom_de_la_commune": "AURADOU", "libell_d_acheminement": "AURADOU", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47017"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de9027347142b1e407ef9262bb098fae691523b1", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47024"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e55bb451ce06668e207e509de18bac7b8224c0", "fields": {"nom_de_la_commune": "BIRAC SUR TREC", "libell_d_acheminement": "BIRAC SUR TREC", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47028"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118f22de22e608ac84d9027d02ee65ad9abc8cdf", "fields": {"nom_de_la_commune": "BLANQUEFORT SUR BRIOLANCE", "libell_d_acheminement": "BLANQUEFORT SUR BRIOLANCE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47029"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e51d97b5ad1f67f959c8043309cf5e3d81d0933", "fields": {"nom_de_la_commune": "BOE", "libell_d_acheminement": "BOE", "code_postal": "47550", "coordonnees_gps": [44.1702951945, 0.64636771159], "code_commune_insee": "47031"}, "geometry": {"type": "Point", "coordinates": [0.64636771159, 44.1702951945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93e5fb7c6884dd96712cdc2c35f174784a26b0ae", "fields": {"nom_de_la_commune": "BON ENCONTRE", "libell_d_acheminement": "BON ENCONTRE", "code_postal": "47240", "coordonnees_gps": [44.1950523774, 0.697905787009], "code_commune_insee": "47032"}, "geometry": {"type": "Point", "coordinates": [0.697905787009, 44.1950523774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99a545e1346243c7a86d1f1ce41c6f5e4aba04e", "fields": {"nom_de_la_commune": "BOURLENS", "libell_d_acheminement": "BOURLENS", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47036"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f8ac82c1051cffd7be2abe850d9376449b2b61", "fields": {"nom_de_la_commune": "BOUSSES", "libell_d_acheminement": "BOUSSES", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47039"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194dd875df1a7133fa8505eb6da2c4a5a00f5412", "fields": {"nom_de_la_commune": "CAHUZAC", "libell_d_acheminement": "CAHUZAC", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47044"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61917c5c0a63e7f4ec276213d795cf5d2d3e8000", "fields": {"nom_de_la_commune": "CHAMESEY", "libell_d_acheminement": "CHAMESEY", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25113"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5317793b72db3fb7b0ffb5b5908693ae536b239a", "fields": {"nom_de_la_commune": "CHAMPOUX", "libell_d_acheminement": "CHAMPOUX", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25117"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2311fea07a18efee506868f59c1aea305fede25a", "fields": {"nom_de_la_commune": "CHAPELLE DES BOIS", "libell_d_acheminement": "CHAPELLE DES BOIS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25121"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549bd5e3c869e9c4be3c4a7484e25e12f335d143", "fields": {"nom_de_la_commune": "CHARMOILLE", "libell_d_acheminement": "CHARMOILLE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25125"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca0605270659bb9c631c3e26e3a47d8c9edde48", "fields": {"nom_de_la_commune": "CHASSAGNE ST DENIS", "libell_d_acheminement": "CHASSAGNE ST DENIS", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25129"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4f76d59c381dd94836b548a30a0db16c25c337", "fields": {"nom_de_la_commune": "CHAUX LES PASSAVANT", "libell_d_acheminement": "CHAUX LES PASSAVANT", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25141"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8318b9e229376051e0f558ab987c31ce5475493", "fields": {"nom_de_la_commune": "LA CHEVILLOTTE", "libell_d_acheminement": "LA CHEVILLOTTE", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25152"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecc50b2b08dec6c693d90c43fd705e3cdb64b77", "fields": {"nom_de_la_commune": "CONSOLATION MAISONNETTES", "libell_d_acheminement": "CONSOLATION MAISONNETTES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25161"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656b2bb7f6c3b602f4dd86710a3cf5d06455f0f2", "fields": {"nom_de_la_commune": "CORCELLE MIESLOT", "libell_d_acheminement": "CORCELLE MIESLOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25163"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374e99643b127dc458549817568f91b8453f2e1b", "fields": {"nom_de_la_commune": "COURCHAPON", "libell_d_acheminement": "COURCHAPON", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25172"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ef26089774d78ed8f6997aa579702512524f67", "fields": {"nom_de_la_commune": "COUR ST MAURICE", "libell_d_acheminement": "COUR ST MAURICE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25173"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef02d6b6f690264e738ee98b6e58d37de42a7ec", "fields": {"nom_de_la_commune": "COURVIERES", "libell_d_acheminement": "COURVIERES", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25176"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c34e3917b8b21d26529427a5d45d30b63e2e280", "fields": {"nom_de_la_commune": "CROSEY LE PETIT", "libell_d_acheminement": "CROSEY LE PETIT", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25178"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c65d6879f0ff38a1d614da145729351392d0fe", "fields": {"nom_de_la_commune": "CASTILLON DE ST MARTORY", "libell_d_acheminement": "CASTILLON DE ST MARTORY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31124"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c14e27b3363c9ade84e9d862ccf266ea8d148a", "fields": {"nom_de_la_commune": "CAZARILH LASPENES", "libell_d_acheminement": "CAZARILH LASPENES", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31129"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b2e042a3addfe8141283251bb530455ed30ee9", "fields": {"nom_de_la_commune": "CHAUM", "libell_d_acheminement": "CHAUM", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31139"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9c752f2376bce982735187dd5e0f03a0737bfb", "fields": {"nom_de_la_commune": "CORRONSAC", "libell_d_acheminement": "CORRONSAC", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31151"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c213f1966e28ec6c716ca53416fde232d250a8", "fields": {"nom_de_la_commune": "ENCAUSSE LES THERMES", "libell_d_acheminement": "ENCAUSSE LES THERMES", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31167"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dfab61eefe29e6a14cd22ef0356c535493c85b9", "fields": {"nom_de_la_commune": "ESTADENS", "libell_d_acheminement": "ESTADENS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31174"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7ff25647d9570ae9e5823774e6627b0be192b0", "fields": {"nom_de_la_commune": "FALGA", "libell_d_acheminement": "FALGA", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31180"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da1f9d8039cefcc09a6ef7f3f87f5579e0d73ad", "fields": {"nom_de_la_commune": "LE FAUGA", "libell_d_acheminement": "LE FAUGA", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31181"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1105012ce3a7f48b06693c5df0ad9ff59d6a654a", "fields": {"nom_de_la_commune": "FOUGARON", "libell_d_acheminement": "FOUGARON", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31191"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b35663c697c32c78f48d137aa1d0d80c3bf40b", "fields": {"nom_de_la_commune": "FRANCAZAL", "libell_d_acheminement": "FRANCAZAL", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31195"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186d4d2019460579173d28bfc4a01eb00d0cee11", "fields": {"nom_de_la_commune": "GAILLAC TOULZA", "libell_d_acheminement": "GAILLAC TOULZA", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31206"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7079faae785e42cd0d2fb02909b43b30439a462e", "fields": {"nom_de_la_commune": "GALIE", "libell_d_acheminement": "GALIE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31207"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6623da37874973083a6b381c13d476ace48192d1", "fields": {"nom_de_la_commune": "GARIN", "libell_d_acheminement": "GARIN", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31213"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0a071d1f0b349d9de1ef3566a5b417493367a0", "fields": {"nom_de_la_commune": "GENSAC DE BOULOGNE", "libell_d_acheminement": "GENSAC DE BOULOGNE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31218"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60805c625cee4deb511695616339c70792fc546e", "fields": {"nom_de_la_commune": "GIBEL", "libell_d_acheminement": "GIBEL", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31220"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fba138d76ff9f8d0f7b4d434cea44bf468d215c", "fields": {"nom_de_la_commune": "GOURDAN POLIGNAN", "libell_d_acheminement": "GOURDAN POLIGNAN", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31224"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36381bbb0de186bff62f94eb65e6f1bbc3218ead", "fields": {"nom_de_la_commune": "GREPIAC", "libell_d_acheminement": "GREPIAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31233"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ca43aad62a81a58a59243b9ad782cf3033018a", "fields": {"nom_de_la_commune": "LE GRES", "libell_d_acheminement": "LE GRES", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31234"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6566e674d8025f75842cf58ed293adb24085040a", "fields": {"nom_de_la_commune": "HERRAN", "libell_d_acheminement": "HERRAN", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31236"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7699f431b7f3803814739d40cea882b30f474e40", "fields": {"nom_de_la_commune": "JUZET DE LUCHON", "libell_d_acheminement": "JUZET DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31244"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61d7c3ea2d125de2791a3af5b6248bce3908de2", "fields": {"nom_de_la_commune": "JUZET D IZAUT", "libell_d_acheminement": "JUZET D IZAUT", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31245"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9667ee55d235751fd99f54593c12c6faadfad4", "fields": {"nom_de_la_commune": "LAGRAULET ST NICOLAS", "libell_d_acheminement": "LAGRAULET ST NICOLAS", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31265"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7b9d2c8eeff3162c8ac5e7415a55b23abcdc97", "fields": {"nom_de_la_commune": "LAPEYROUSE FOSSAT", "libell_d_acheminement": "LAPEYROUSE FOSSAT", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31273"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23bc98dd8839776c537af6b16501eb2bed9a6b1", "fields": {"nom_de_la_commune": "LARCAN", "libell_d_acheminement": "LARCAN", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31274"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea688dd2bc64b518c8806b4937ff05d507e80bfc", "fields": {"nom_de_la_commune": "LAREOLE", "libell_d_acheminement": "LAREOLE", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31275"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d942a5723a566470dded76316e33d36eff1616", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31277"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0956dc188ebe936d050011493648a2fb7e063e40", "fields": {"nom_de_la_commune": "LAUNAGUET", "libell_d_acheminement": "LAUNAGUET", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31282"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d805600c5f50455a007c63ef112bb3fdbaa0431f", "fields": {"nom_de_la_commune": "LAUZERVILLE", "libell_d_acheminement": "LAUZERVILLE", "code_postal": "31650", "coordonnees_gps": [43.5547223319, 1.54753565987], "code_commune_insee": "31284"}, "geometry": {"type": "Point", "coordinates": [1.54753565987, 43.5547223319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900407efb6dc62868949c6bc24d716b87b23e699", "fields": {"nom_de_la_commune": "LAYRAC SUR TARN", "libell_d_acheminement": "LAYRAC SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31288"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da98282ff844ca33a5235a5661c3739c5401216", "fields": {"nom_de_la_commune": "LEZ", "libell_d_acheminement": "LEZ", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31298"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e8356b0f89e96a65f6b157065176326832071f", "fields": {"nom_de_la_commune": "LILHAC", "libell_d_acheminement": "LILHAC", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31301"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ceb72f094d3b68e849e71ef9b81d751a7dbd955", "fields": {"nom_de_la_commune": "LODES", "libell_d_acheminement": "LODES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31302"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17edbfc0ba95c6139ca9a67536965fa75b71a05", "fields": {"nom_de_la_commune": "LUX", "libell_d_acheminement": "LUX", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31310"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a53843b08f4ea9cfd4e562b2c4ddbd3b94023cd", "fields": {"nom_de_la_commune": "MARQUEFAVE", "libell_d_acheminement": "MARQUEFAVE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31320"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6660d513b73d06de2a905f9a294f0b597aac0b5", "fields": {"nom_de_la_commune": "MARTISSERRE", "libell_d_acheminement": "MARTISSERRE", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31322"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918ad70394645fbfba20bc3a7629b0c267464562", "fields": {"nom_de_la_commune": "MAURESSAC", "libell_d_acheminement": "MAURESSAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31330"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d299a4540054747c0b9e233bb009a62df5a422", "fields": {"nom_de_la_commune": "MONCAUP", "libell_d_acheminement": "MONCAUP", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31348"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a66b14f0a6c405d9a7f45ca67dd20bfa01a152b", "fields": {"nom_de_la_commune": "MONTASTRUC SAVES", "libell_d_acheminement": "MONTASTRUC SAVES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31359"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17567205dcf4814d32b296e38331c508d49a2f81", "fields": {"nom_de_la_commune": "MONTAUBAN DE LUCHON", "libell_d_acheminement": "MONTAUBAN DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31360"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecc0299a27ade837f79dcaccce6b45b81b9a885", "fields": {"nom_de_la_commune": "MONTBERNARD", "libell_d_acheminement": "MONTBERNARD", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31363"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c674c3281ee11f4b9dd0e5f6633ed15f5ff11ff", "fields": {"nom_de_la_commune": "MONTCLAR LAURAGAIS", "libell_d_acheminement": "MONTCLAR LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31368"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "088961516fa70aef25719afab88c3f937a63f932", "fields": {"nom_de_la_commune": "MONTGAILLARD LAURAGAIS", "libell_d_acheminement": "MONTGAILLARD LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31377"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d7811563e5f3907b6913c3719ce5d28d42ad2b9", "fields": {"nom_de_la_commune": "MONTGAZIN", "libell_d_acheminement": "MONTGAZIN", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31379"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6344a93acbc98a3f5323412daf5488a5c7954e4c", "fields": {"nom_de_la_commune": "MOUSTAJON", "libell_d_acheminement": "MOUSTAJON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31394"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ead11d19c0344c69ed7f811582d62dca22ab47", "fields": {"nom_de_la_commune": "NENIGAN", "libell_d_acheminement": "NENIGAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31397"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac01664f51baa8a257cfa3a2d6250e1ac1118e1b", "fields": {"nom_de_la_commune": "PIN BALMA", "libell_d_acheminement": "PIN BALMA", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31418"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83efb742d60f2c81ae1e0e957b6ea6bd85e01de2", "fields": {"nom_de_la_commune": "PLAGNE", "libell_d_acheminement": "PLAGNE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31422"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42db5e4d0efc91578bb62899230fbece7b4211a5", "fields": {"nom_de_la_commune": "POINTIS DE RIVIERE", "libell_d_acheminement": "POINTIS DE RIVIERE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31426"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b28b9324ed7c6582c8f56fa7351bfbc6b733778", "fields": {"nom_de_la_commune": "POINTIS INARD", "libell_d_acheminement": "POINTIS INARD", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31427"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "104733a4f28c9ec98730205b8cabd882192f5e22", "fields": {"nom_de_la_commune": "POUZE", "libell_d_acheminement": "POUZE", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31437"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d99a6efd0a42d1a60ffad0de53433e40b765aca", "fields": {"nom_de_la_commune": "PRUNET", "libell_d_acheminement": "PRUNET", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31441"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7790fa5afbb335c16d846ee972b9726ad869149a", "fields": {"nom_de_la_commune": "RAZECUEILLE", "libell_d_acheminement": "RAZECUEILLE", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31447"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f6c8bf9f88e06de94f76fc138404dd614890fb", "fields": {"nom_de_la_commune": "REVEL", "libell_d_acheminement": "REVEL", "code_postal": "31250", "coordonnees_gps": [43.4555954942, 1.99785019175], "code_commune_insee": "31451"}, "geometry": {"type": "Point", "coordinates": [1.99785019175, 43.4555954942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb526a29a4611c3c02ed76f622896e5bf5d969a", "fields": {"nom_de_la_commune": "RIEUMAJOU", "libell_d_acheminement": "RIEUMAJOU", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31453"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c8b0397457e5c8cccd660b8d1a1ab0cff4ad1e", "fields": {"nom_de_la_commune": "ROUEDE", "libell_d_acheminement": "ROUEDE", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31461"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6aae06651baa8d07b99e79eca0c7b2cc084ed6", "fields": {"nom_de_la_commune": "ROUFFIAC TOLOSAN", "libell_d_acheminement": "ROUFFIAC TOLOSAN", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31462"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c4130bf39fb1d59f3d05600ea542ee99b9e5d7", "fields": {"nom_de_la_commune": "ST ALBAN", "libell_d_acheminement": "ST ALBAN", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31467"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8aeebc31abb1353a3f9bc790918eb4e8b8ff49", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31468"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "787a36436fc492e58cfe5478135a1378fe82e830", "fields": {"nom_de_la_commune": "ST BERTRAND DE COMMINGES", "libell_d_acheminement": "ST BERTRAND DE COMMINGES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31472"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeaeff06d87399b994d1482852c0fbc6e5ccb6a0", "fields": {"nom_de_la_commune": "ST CHRISTAUD", "libell_d_acheminement": "ST CHRISTAUD", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31474"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c9ca286fc7f846efd269aaaaeb2d4a2cf94e2a", "fields": {"nom_de_la_commune": "ST CLAR DE RIVIERE", "libell_d_acheminement": "ST CLAR DE RIVIERE", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31475"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3403883458bf989b96f53b212f767c0227ac6a6b", "fields": {"nom_de_la_commune": "ST FRAJOU", "libell_d_acheminement": "ST FRAJOU", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31482"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d8a90a1024817821911bd129ba2147d9735260", "fields": {"nom_de_la_commune": "ST IGNAN", "libell_d_acheminement": "ST IGNAN", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31487"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143d702a02c4b4efc78a93bd77236bb597922e4e", "fields": {"nom_de_la_commune": "ST JEAN", "libell_d_acheminement": "ST JEAN", "code_postal": "31240", "coordonnees_gps": [43.6585008037, 1.49133331309], "code_commune_insee": "31488"}, "geometry": {"type": "Point", "coordinates": [1.49133331309, 43.6585008037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c33aa0d85cba123f03063d4a35d3703dda6012c", "fields": {"nom_de_la_commune": "ST JEAN LHERM", "libell_d_acheminement": "ST JEAN LHERM", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31489"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345ebe46625f5933c37d59d284fa9493c3e17a85", "fields": {"nom_de_la_commune": "ST JORY", "libell_d_acheminement": "ST JORY", "code_postal": "31790", "coordonnees_gps": [43.7425683225, 1.36753439021], "code_commune_insee": "31490"}, "geometry": {"type": "Point", "coordinates": [1.36753439021, 43.7425683225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c032d11567d593c5cf304ccb75a46c80475399df", "fields": {"nom_de_la_commune": "ST LOUP CAMMAS", "libell_d_acheminement": "ST LOUP CAMMAS", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31497"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43d91425ffdc141272da3d795296e1ef4915606", "fields": {"nom_de_la_commune": "ST LOUP EN COMMINGES", "libell_d_acheminement": "ST LOUP EN COMMINGES", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31498"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b43b2e3c99029e3cd133d45e71edc89d8007ac", "fields": {"nom_de_la_commune": "ST MARCET", "libell_d_acheminement": "ST MARCET", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31502"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6af437cc85c5052d12b7fd9eab4de681e4d881", "fields": {"nom_de_la_commune": "ST MARTORY", "libell_d_acheminement": "ST MARTORY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31503"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc67e5ee42233d57f29e682c55b3a0a31948f06c", "fields": {"nom_de_la_commune": "ST PE DELBOSC", "libell_d_acheminement": "ST PE DELBOSC", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31510"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16400383fa6a0aa04ecb6259cba571682f6aea60", "fields": {"nom_de_la_commune": "ST RUSTICE", "libell_d_acheminement": "ST RUSTICE", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31515"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375fe85a75cdd447fa9c489f516154d3738f351b", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "31790", "coordonnees_gps": [43.7425683225, 1.36753439021], "code_commune_insee": "31516"}, "geometry": {"type": "Point", "coordinates": [1.36753439021, 43.7425683225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220de16237a0ca0ac9e06934994e83f81ceb71c9", "fields": {"nom_de_la_commune": "SAJAS", "libell_d_acheminement": "SAJAS", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31520"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e1ab2d529d87c282a0289171171bfca31e53da", "fields": {"nom_de_la_commune": "SAMAN", "libell_d_acheminement": "SAMAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31528"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a764fa9929bf758c51b206a6e3f30fe953e43e", "fields": {"nom_de_la_commune": "SEILHAN", "libell_d_acheminement": "SEILHAN", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31542"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c273bd0085b425d34018d0f4312a8a92244e436", "fields": {"nom_de_la_commune": "SOUEICH", "libell_d_acheminement": "SOUEICH", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31550"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53531a4a7ab6a0696b30a0d178a396c73e2a195", "fields": {"nom_de_la_commune": "TOUILLE", "libell_d_acheminement": "TOUILLE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31554"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f8cb50d49128c60a71f9a9b5ed11828108b3be", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31300", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f449814857f71b5f408c325b7736686ab7c75423", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31500", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1308dc03bbfd514147ee181dc01456c3ab610b5b", "fields": {"nom_de_la_commune": "L UNION", "libell_d_acheminement": "L UNION", "code_postal": "31240", "coordonnees_gps": [43.6585008037, 1.49133331309], "code_commune_insee": "31561"}, "geometry": {"type": "Point", "coordinates": [1.49133331309, 43.6585008037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e86d8473da5fc76f3131c3c22c5b26e1ac8858", "fields": {"nom_de_la_commune": "VACQUIERS", "libell_d_acheminement": "VACQUIERS", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31563"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0724b7e342a1d15843c8737de497ccd2b02c3d70", "fields": {"nom_de_la_commune": "VENERQUE", "libell_d_acheminement": "VENERQUE", "code_postal": "31810", "coordonnees_gps": [43.4392556161, 1.44590848032], "code_commune_insee": "31572"}, "geometry": {"type": "Point", "coordinates": [1.44590848032, 43.4392556161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2438747d938aea74d2c28dcf241a2fdbb8da66fd", "fields": {"nom_de_la_commune": "VIEILLEVIGNE", "libell_d_acheminement": "VIEILLEVIGNE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31576"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd011d765c4a4fa9acf1b5b1e92379de77d79a28", "fields": {"nom_de_la_commune": "VILLARIES", "libell_d_acheminement": "VILLARIES", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31579"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88dac40b83f8535a71250575fbe93d38ba02a0de", "fields": {"nom_de_la_commune": "VILLAUDRIC", "libell_d_acheminement": "VILLAUDRIC", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31581"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7dd8cafd5f8add162d221e0c10faa74e02183e", "fields": {"nom_de_la_commune": "VILLEMATIER", "libell_d_acheminement": "VILLEMATIER", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31583"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbf89da5d8d86d533aef4a13e576ff78a5bd2ea", "fields": {"nom_de_la_commune": "VILLENEUVE LES BOULOC", "libell_d_acheminement": "VILLENEUVE LES BOULOC", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31587"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c874dc5cd5662ef23d992a37ab7e9deacbc233c", "fields": {"nom_de_la_commune": "VILLENEUVE TOLOSANE", "libell_d_acheminement": "VILLENEUVE TOLOSANE", "code_postal": "31270", "coordonnees_gps": [43.5340423568, 1.33486531125], "code_commune_insee": "31588"}, "geometry": {"type": "Point", "coordinates": [1.33486531125, 43.5340423568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa028224bc31f7b36a4d1288f346906d013e3f20", "fields": {"nom_de_la_commune": "ESCOULIS", "libell_d_acheminement": "ESCOULIS", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31591"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8f7429ae68ffcc9bab173c8740492f55d6b140", "fields": {"nom_de_la_commune": "CAZAC", "libell_d_acheminement": "CAZAC", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31593"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2afdfcd472d4d86c5c18e3bc0e59bae59852ae7", "fields": {"nom_de_la_commune": "AIGNAN", "libell_d_acheminement": "AIGNAN", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32001"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ba87bf1a86c1a82778d2fa9ebe6a6977d43cc5", "fields": {"nom_de_la_commune": "AUBIET", "libell_d_acheminement": "AUBIET", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32012"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75678fc0e15a7eba805d3decd2ecc1a7ff7e94eb", "fields": {"nom_de_la_commune": "AURADE", "libell_d_acheminement": "AURADE", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32016"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e855d2cf23026489a915e327328ab8d0ce359f68", "fields": {"nom_de_la_commune": "AVEZAN", "libell_d_acheminement": "AVEZAN", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32023"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76dbf4f79ca602c74fcb6408afcd592267f40f4", "fields": {"nom_de_la_commune": "BARCUGNAN", "libell_d_acheminement": "BARCUGNAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32028"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f80aaeb0bf244eafcc4afcb1a01a587ee3cba5b", "fields": {"nom_de_la_commune": "BEAUCAIRE", "libell_d_acheminement": "BEAUCAIRE", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32035"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc6fa86548c2c8b2d0a4ca051d34dcedbe72f2c", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32037"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140d4fdadafba2c23c15ea9dcc8f2f10bbf39c56", "fields": {"nom_de_la_commune": "BECCAS", "libell_d_acheminement": "BECCAS", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32039"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a146a5cabc3854f92eb4acf113b4af8f35715be7", "fields": {"nom_de_la_commune": "BEDECHAN", "libell_d_acheminement": "BEDECHAN", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32040"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76d5fdc0d8ae04612aa106b92466675648c4ea42", "fields": {"nom_de_la_commune": "LE MARTINET", "libell_d_acheminement": "LE MARTINET", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30159"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda851e55c84dbf3cb353a7978ea7f2183e3ade3", "fields": {"nom_de_la_commune": "MASSILLARGUES ATTUECH", "libell_d_acheminement": "MASSILLARGUES ATTUECH", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30162"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2fdd31985d3af0900d6d70c6f68e2920387b29", "fields": {"nom_de_la_commune": "MEJANNES LE CLAP", "libell_d_acheminement": "MEJANNES LE CLAP", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30164"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbca21e17dfb12a072b22c8956f8735c53a9e9d7", "fields": {"nom_de_la_commune": "MIALET", "libell_d_acheminement": "MIALET", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30168"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f19b2ac096a9fc0032a99637149c7ab565147b4", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30173"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bebf58b703c81bc372557ed93fca13797f6a41", "fields": {"nom_de_la_commune": "MONTAREN ET ST MEDIERS", "libell_d_acheminement": "MONTAREN ET ST MEDIERS", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30174"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254034a031e23a4583320449a37330600f859086", "fields": {"nom_de_la_commune": "MONTCLUS", "libell_d_acheminement": "MONTCLUS", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30175"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d036284e3210f08d0e8e1be1c75a9a4037cd7", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30178"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dbc8b1c52f795b057cba319fe7979996c4a5a5b", "fields": {"nom_de_la_commune": "NIMES", "libell_d_acheminement": "NIMES", "code_postal": "30900", "coordonnees_gps": [43.8446783278, 4.34763990758], "code_commune_insee": "30189"}, "geometry": {"type": "Point", "coordinates": [4.34763990758, 43.8446783278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08406b6cd0103030ba5994a44fa245800c560542", "fields": {"code_postal": "30900", "code_commune_insee": "30189", "libell_d_acheminement": "NIMES", "ligne_5": "ST CESAIRE", "nom_de_la_commune": "NIMES", "coordonnees_gps": [43.8446783278, 4.34763990758]}, "geometry": {"type": "Point", "coordinates": [4.34763990758, 43.8446783278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c876badd3cbd3cdafe5465c22cba4e1e06aee0f5", "fields": {"nom_de_la_commune": "ORTHOUX SERIGNAC QUILHAN", "libell_d_acheminement": "ORTHOUX SERIGNAC QUILHAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30192"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab523e85b43698f82d1d33344fc4e9eb93461088", "fields": {"nom_de_la_commune": "PEYROLLES", "libell_d_acheminement": "PEYROLLES", "code_postal": "30124", "coordonnees_gps": [44.0999030236, 3.79947600086], "code_commune_insee": "30195"}, "geometry": {"type": "Point", "coordinates": [3.79947600086, 44.0999030236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca32549f9c92e35f706132b7fcf66cb721e5b02", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30196"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f340b9a569d3d866771f2d0bbd15fb54515eaea7", "fields": {"nom_de_la_commune": "POUGNADORESSE", "libell_d_acheminement": "POUGNADORESSE", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30205"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1ab5114f0d7b6b70b3b456aef9e362bf928c602", "fields": {"nom_de_la_commune": "RIBAUTE LES TAVERNES", "libell_d_acheminement": "RIBAUTE LES TAVERNES", "code_postal": "30720", "coordonnees_gps": [44.0422106382, 4.08547634071], "code_commune_insee": "30214"}, "geometry": {"type": "Point", "coordinates": [4.08547634071, 44.0422106382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2dc8a7d8b59ff0e2daa676339f17d78bd80070", "fields": {"nom_de_la_commune": "ROBIAC ROCHESSADOULE", "libell_d_acheminement": "ROBIAC ROCHESSADOULE", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30216"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0caccf6f4e86abf89eb8f6c74e5c8f0531db096", "fields": {"nom_de_la_commune": "LA ROQUE SUR CEZE", "libell_d_acheminement": "LA ROQUE SUR CEZE", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30222"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c988da0b3325f570cbd7b5960776a5ba92af62", "fields": {"nom_de_la_commune": "ST BAUZELY", "libell_d_acheminement": "ST BAUZELY", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30233"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38715333706f74c999a457deacc6d8ff9101b64", "fields": {"nom_de_la_commune": "ST BRES", "libell_d_acheminement": "ST BRES", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30237"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7377abd9aac7dc2a47a3a0f1965162d4e2d46b9", "fields": {"nom_de_la_commune": "ST CHRISTOL DE RODIERES", "libell_d_acheminement": "ST CHRISTOL DE RODIERES", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30242"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3af5769beafd694ae571362cf00dadac2b216e", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30244"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99761922b8cd0088c333f2cf117bc0e9505b05e7", "fields": {"nom_de_la_commune": "ST GENIES DE COMOLAS", "libell_d_acheminement": "ST GENIES DE COMOLAS", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30254"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85f0616ba5f37a663b3d117d18efc1c6df8ff5b9", "fields": {"nom_de_la_commune": "ST HIPPOLYTE DE MONTAIGU", "libell_d_acheminement": "ST HIPPOLYTE DE MONTAIGU", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30262"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ccc12127226a5d941f9297794c77744af1f72a", "fields": {"nom_de_la_commune": "ST HIPPOLYTE DU FORT", "libell_d_acheminement": "ST HIPPOLYTE DU FORT", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30263"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c508ed5bd83a9aa9d3a859e57cc5a808c835bd53", "fields": {"nom_de_la_commune": "ST PONS LA CALM", "libell_d_acheminement": "ST PONS LA CALM", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30292"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14d275f6a5617a8bf35e793ec303fac35c18054", "fields": {"nom_de_la_commune": "ST THEODORIT", "libell_d_acheminement": "ST THEODORIT", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30300"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c616a8c04d3e1971a2c1b51f00d9a7e1000591e1", "fields": {"nom_de_la_commune": "ST VICTOR DE MALCAP", "libell_d_acheminement": "ST VICTOR DE MALCAP", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30303"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f05a9a66883c51887ad1356fa31f6cfce66b8d1", "fields": {"nom_de_la_commune": "LES SALLES DU GARDON", "libell_d_acheminement": "LES SALLES DU GARDON", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30307"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0897f82db5a48acc35ea4de044b5d49de765ca", "fields": {"nom_de_la_commune": "SARDAN", "libell_d_acheminement": "SARDAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30309"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52510e9e3194e0307102fa030d33ff83efedb877", "fields": {"nom_de_la_commune": "SAUVE", "libell_d_acheminement": "SAUVE", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30311"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea53c7cca7756dc0ce1ffbb5c14eb576f3f7553f", "fields": {"nom_de_la_commune": "SEYNES", "libell_d_acheminement": "SEYNES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30320"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88dc16de55a650ea748679656c8f6164a7d6c14b", "fields": {"nom_de_la_commune": "TRESQUES", "libell_d_acheminement": "TRESQUES", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30331"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2adf91e6908fe706d90014f2b7598381d14c8f72", "fields": {"nom_de_la_commune": "TREVES", "libell_d_acheminement": "TREVES", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30332"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e687e7d5c1a46c35500f73904269f8f99379626c", "fields": {"nom_de_la_commune": "UCHAUD", "libell_d_acheminement": "UCHAUD", "code_postal": "30620", "coordonnees_gps": [43.7617443706, 4.28868094098], "code_commune_insee": "30333"}, "geometry": {"type": "Point", "coordinates": [4.28868094098, 43.7617443706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf46273dc3da60f9842c4f68e54152039996881a", "fields": {"code_postal": "30570", "code_commune_insee": "30339", "libell_d_acheminement": "VALLERAUGUE", "ligne_5": "L ESPEROU", "nom_de_la_commune": "VALLERAUGUE", "coordonnees_gps": [44.0726659804, 3.64380586054]}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e81ebe01e2bbfe40df6c31a688716ceb53af79", "fields": {"nom_de_la_commune": "LA VERNAREDE", "libell_d_acheminement": "LA VERNAREDE", "code_postal": "30530", "coordonnees_gps": [44.2835677648, 3.99804352323], "code_commune_insee": "30345"}, "geometry": {"type": "Point", "coordinates": [3.99804352323, 44.2835677648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69ee73a79a7edd419caa7c7382ca1d407a6994c", "fields": {"nom_de_la_commune": "LE VIGAN", "libell_d_acheminement": "LE VIGAN", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30350"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e353166e4d0472311f8c137720e5f2026204bc", "fields": {"nom_de_la_commune": "ARNAUD GUILHEM", "libell_d_acheminement": "ARNAUD GUILHEM", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31018"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58df020141ccadddc1102c7d6011d0889ed3abd6", "fields": {"nom_de_la_commune": "AUSSON", "libell_d_acheminement": "AUSSON", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31031"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15e89f21598ca3c811de2719c7f7986efe3d903", "fields": {"nom_de_la_commune": "BAGNERES DE LUCHON", "libell_d_acheminement": "BAGNERES DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31042"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2273e618d4e282c051eb8d2c6ea1f51d0a7a1e29", "fields": {"nom_de_la_commune": "BAREN", "libell_d_acheminement": "BAREN", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31046"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d7c37f6d6397dee6aa51964f8c9b81cbc61582", "fields": {"nom_de_la_commune": "BAX", "libell_d_acheminement": "BAX", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31047"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9facf8801161c4a7a862a0deae043606f2479e", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "31850", "coordonnees_gps": [43.6433615869, 1.54999438189], "code_commune_insee": "31053"}, "geometry": {"type": "Point", "coordinates": [1.54999438189, 43.6433615869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f633ad24cab21336b8679f145fc4f663ad23b5e", "fields": {"nom_de_la_commune": "BEAUVILLE", "libell_d_acheminement": "BEAUVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31055"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25372551cd5b36fad677d326970863f647e3b4e9", "fields": {"nom_de_la_commune": "BOIS DE LA PIERRE", "libell_d_acheminement": "BOIS DE LA PIERRE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31071"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d205326723d12535ac0df9cb393003d9bedef4", "fields": {"nom_de_la_commune": "BORDES DE RIVIERE", "libell_d_acheminement": "BORDES DE RIVIERE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31076"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f336465aca4160fb017552a4739ac6b86a20509", "fields": {"nom_de_la_commune": "BOUDRAC", "libell_d_acheminement": "BOUDRAC", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31078"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3571ad5ff65e10d12ffe432ee2ded4d0822f9e", "fields": {"nom_de_la_commune": "BRAX", "libell_d_acheminement": "BRAX", "code_postal": "31490", "coordonnees_gps": [43.5952608538, 1.22974000355], "code_commune_insee": "31088"}, "geometry": {"type": "Point", "coordinates": [1.22974000355, 43.5952608538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b54d82e59e6919e7a1418435fd4ba4989a387ba", "fields": {"nom_de_la_commune": "BRIGNEMONT", "libell_d_acheminement": "BRIGNEMONT", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31090"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc8279e0d56449848e3e95734a2926252a0ba9f0", "fields": {"nom_de_la_commune": "LE CABANIAL", "libell_d_acheminement": "LE CABANIAL", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31097"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff13097b02eecaacbe90122a32e6322d1b1543f", "fields": {"nom_de_la_commune": "CAIGNAC", "libell_d_acheminement": "CAIGNAC", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31099"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb042edce230ad4ae4dd881c72b54ce3d84716f9", "fields": {"nom_de_la_commune": "CAMBERNARD", "libell_d_acheminement": "CAMBERNARD", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31101"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747d9800206833c5b0bd4716a4bc5df70ef7f8ff", "fields": {"nom_de_la_commune": "CAPENS", "libell_d_acheminement": "CAPENS", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31104"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4784f7c4e15cc83311f762580f0eac536ed24b1c", "fields": {"nom_de_la_commune": "CASTELGAILLARD", "libell_d_acheminement": "CASTELGAILLARD", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31115"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee2ddd18ffc53e857a563d4f14b53fef09b4862", "fields": {"nom_de_la_commune": "CASTIES LABRANDE", "libell_d_acheminement": "CASTIES LABRANDE", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31122"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa16fa78709ccbd2e1bea7b4cf5d58e12b27cc8d", "fields": {"nom_de_la_commune": "CEPET", "libell_d_acheminement": "CEPET", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31136"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c22bb696b274142686ff8750e2a8012739300f", "fields": {"nom_de_la_commune": "CESSALES", "libell_d_acheminement": "CESSALES", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31137"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b1ec5cbb1802aa14f44765119e5cc640e9f669", "fields": {"nom_de_la_commune": "CIER DE LUCHON", "libell_d_acheminement": "CIER DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31142"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dfecb49d55bac5ce0602f5a35af74c92176c255", "fields": {"nom_de_la_commune": "CUGNAUX", "libell_d_acheminement": "CUGNAUX", "code_postal": "31270", "coordonnees_gps": [43.5340423568, 1.33486531125], "code_commune_insee": "31157"}, "geometry": {"type": "Point", "coordinates": [1.33486531125, 43.5340423568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56c0f0fff37c49cd3dd9d32a72da0cd650cb2c2", "fields": {"nom_de_la_commune": "LE CUING", "libell_d_acheminement": "LE CUING", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31159"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee8f85db910291a8a021f67b7d4fd9c51c5f093", "fields": {"nom_de_la_commune": "DAUX", "libell_d_acheminement": "DAUX", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31160"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb2cdacf115cadef85732c86d8bd5e2f740e97c", "fields": {"nom_de_la_commune": "DEYME", "libell_d_acheminement": "DEYME", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31161"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6297f6f23b746c0573be15b6768d5a2cbf0fefc", "fields": {"nom_de_la_commune": "DRUDAS", "libell_d_acheminement": "DRUDAS", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31164"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79406dbeb5d970667e1475c83ad0ca50334f1ed", "fields": {"nom_de_la_commune": "ESCALQUENS", "libell_d_acheminement": "ESCALQUENS", "code_postal": "31750", "coordonnees_gps": [43.5207883419, 1.55234095316], "code_commune_insee": "31169"}, "geometry": {"type": "Point", "coordinates": [1.55234095316, 43.5207883419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8bc3600b812c2227091efbe07706cdc91a2f246", "fields": {"nom_de_la_commune": "ESPANES", "libell_d_acheminement": "ESPANES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31171"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04df112356ddac5906dd3dd6148d586d02ba4de6", "fields": {"nom_de_la_commune": "FLOURENS", "libell_d_acheminement": "FLOURENS", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31184"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a09e507c8bdfd37a3c7dca70a15cceb0ddb5928", "fields": {"nom_de_la_commune": "FORGUES", "libell_d_acheminement": "FORGUES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31189"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b15af951f8fcb29622577e95a81fcc8f73dc13b", "fields": {"nom_de_la_commune": "FRANCARVILLE", "libell_d_acheminement": "FRANCARVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31194"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5cbd629b86f82f225d5c2d3129fd22a1cd9458", "fields": {"nom_de_la_commune": "FRANCON", "libell_d_acheminement": "FRANCON", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31196"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cae8af2e2d02679aafaf2439f6d7af63257414a", "fields": {"nom_de_la_commune": "LE FRECHET", "libell_d_acheminement": "LE FRECHET", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31198"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76122ad79bf408acdd7f05a8ea129c17d61d329", "fields": {"nom_de_la_commune": "FRONTIGNAN SAVES", "libell_d_acheminement": "FRONTIGNAN SAVES", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31201"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c1c6d94c873aeb4cc19b75572253a5fb122c8d", "fields": {"nom_de_la_commune": "GAGNAC SUR GARONNE", "libell_d_acheminement": "GAGNAC SUR GARONNE", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31205"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d60d75c194f348aabd57cd5af7caac304039b9", "fields": {"nom_de_la_commune": "GENSAC SUR GARONNE", "libell_d_acheminement": "GENSAC SUR GARONNE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31219"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0289163212fc54a50e997838b144943c73e8d18a", "fields": {"nom_de_la_commune": "GOUDEX", "libell_d_acheminement": "GOUDEX", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31223"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a0aa0309e9ae98bd59fede3eb55d6092f53957f", "fields": {"nom_de_la_commune": "GOUZENS", "libell_d_acheminement": "GOUZENS", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31226"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf539436f81bdbec2910a2a49e81c2dad06fd2d2", "fields": {"nom_de_la_commune": "GRAGNAGUE", "libell_d_acheminement": "GRAGNAGUE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31228"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98000c9ddf4a1ace67f12a003bcb1cd879e0a281", "fields": {"nom_de_la_commune": "GRATENTOUR", "libell_d_acheminement": "GRATENTOUR", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31230"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8695fbd08b1f5dd93ec4c59976c4ef35c769253f", "fields": {"nom_de_la_commune": "GRENADE", "libell_d_acheminement": "GRENADE", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31232"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4389c14948c2c0fbb2d270c03a89847cad2eb2e", "fields": {"nom_de_la_commune": "L ISLE EN DODON", "libell_d_acheminement": "L ISLE EN DODON", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31239"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f398a287ad062574dd470d5991ec73eb40651002", "fields": {"nom_de_la_commune": "ISSUS", "libell_d_acheminement": "ISSUS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31240"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17965627e078f63409d2f2803f3acb396ac969e", "fields": {"nom_de_la_commune": "IZAUT DE L HOTEL", "libell_d_acheminement": "IZAUT DE L HOTEL", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31241"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6695fb3fb7cda26e33a3f21a0e1da6975a7a591d", "fields": {"nom_de_la_commune": "LABASTIDE BEAUVOIR", "libell_d_acheminement": "LABASTIDE BEAUVOIR", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31249"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cfef525cb757c34599bdffcbd352d169319c66", "fields": {"nom_de_la_commune": "LACAUGNE", "libell_d_acheminement": "LACAUGNE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31258"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aeea2bbcf4c0a0ce8fa6d99f3c4031a734407e3", "fields": {"nom_de_la_commune": "LAFFITE TOUPIERE", "libell_d_acheminement": "LAFFITE TOUPIERE", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31260"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1edaa3d1add9ab10dac3db7328c270a4c3da753", "fields": {"nom_de_la_commune": "LAFITTE VIGORDANE", "libell_d_acheminement": "LAFITTE VIGORDANE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31261"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3e89a45e1aa9e2d2a84537ca10903eb55095ca", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31262"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e740e5c93f3480a80d09879a7bd098f0e65e7f", "fields": {"nom_de_la_commune": "LAUTIGNAC", "libell_d_acheminement": "LAUTIGNAC", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31283"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eaebdf0f04c919a09aa34c1e1ef39a2ed04f41a", "fields": {"nom_de_la_commune": "LUSSAN ADEILHAC", "libell_d_acheminement": "LUSSAN ADEILHAC", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31309"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8756d6c8122ad88d13521260d0cb407e1cdeaf2", "fields": {"nom_de_la_commune": "MALVEZIE", "libell_d_acheminement": "MALVEZIE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31313"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd52fad2aca0a3501d56759e6f7f672cccf83792", "fields": {"nom_de_la_commune": "MARSOULAS", "libell_d_acheminement": "MARSOULAS", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31321"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7598be3a665825d53be28419cb3d0ab4883b0e", "fields": {"nom_de_la_commune": "MASSABRAC", "libell_d_acheminement": "MASSABRAC", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31326"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c53f4ef78b173aaa4e4101f49a2e62e754d3b5", "fields": {"nom_de_la_commune": "MAURENS", "libell_d_acheminement": "MAURENS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31329"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae57f76872aad2254bd2be16c0a3cb4381dbf2f", "fields": {"nom_de_la_commune": "MAUVEZIN", "libell_d_acheminement": "MAUVEZIN", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31333"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33324e62f9207000db922dafbcbe9aa48f438e61", "fields": {"nom_de_la_commune": "MERENVIELLE", "libell_d_acheminement": "MERENVIELLE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31339"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba84503382213d76f3c8708dca65224b029ed3d", "fields": {"nom_de_la_commune": "MIRAMBEAU", "libell_d_acheminement": "MIRAMBEAU", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31343"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8e256930921468949df4bd69777a0850364941", "fields": {"nom_de_la_commune": "MONDAVEZAN", "libell_d_acheminement": "MONDAVEZAN", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31349"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cae1bce7cbe16109b56e68ca4add8e7f0d97cab2", "fields": {"nom_de_la_commune": "MONDONVILLE", "libell_d_acheminement": "MONDONVILLE", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31351"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4842aa2ed4b9de5ef3d7923023ec23c033a1652", "fields": {"nom_de_la_commune": "MONTEGUT BOURJAC", "libell_d_acheminement": "MONTEGUT BOURJAC", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31370"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6d3b15478a12996d2209d41595b02d1cd16f28", "fields": {"nom_de_la_commune": "MONTEGUT LAURAGAIS", "libell_d_acheminement": "MONTEGUT LAURAGAIS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31371"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a48e10bc5ae39ede53d9ca27b12934af5ea1e9", "fields": {"nom_de_la_commune": "MONTESPAN", "libell_d_acheminement": "MONTESPAN", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31372"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919346380d5ff04fe24dfd1cf3f22fdb5908e076", "fields": {"nom_de_la_commune": "MANAURIE", "libell_d_acheminement": "MANAURIE", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24249"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb4bc00090e6be4db7f62b5eef104549d56517b", "fields": {"code_postal": "24150", "code_commune_insee": "24260", "libell_d_acheminement": "MAUZAC ET GRAND CASTANG", "ligne_5": "GRAND CASTANG", "nom_de_la_commune": "MAUZAC ET GRAND CASTANG", "coordonnees_gps": [44.8499844626, 0.730354146465]}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef33dc03d583626010f58b6cff922d55464fbc1", "fields": {"nom_de_la_commune": "MAUZENS ET MIREMONT", "libell_d_acheminement": "MAUZENS ET MIREMONT", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24261"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a671ffe89a6f248d6cbddceb8bbf849c4e627b48", "fields": {"nom_de_la_commune": "MAZEYROLLES", "libell_d_acheminement": "MAZEYROLLES", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24263"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "134a975728b2d60604c483f48e544f96cddae8ef", "fields": {"nom_de_la_commune": "MENSIGNAC", "libell_d_acheminement": "MENSIGNAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24266"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e955f6ef746c2d397625b4bc9173ed394bab30d1", "fields": {"nom_de_la_commune": "MESCOULES", "libell_d_acheminement": "MESCOULES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24267"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5577b1bfaaa4ff3fb3426dc2cd560aea37a41e", "fields": {"nom_de_la_commune": "MONBAZILLAC", "libell_d_acheminement": "MONBAZILLAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24274"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c1c5da49d7711620516a77ccdd4baf38ea6de0", "fields": {"nom_de_la_commune": "MONTAGNAC LA CREMPSE", "libell_d_acheminement": "MONTAGNAC LA CREMPSE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24285"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b7ad6d6c0236c531371daecd6bc406c6c03691", "fields": {"nom_de_la_commune": "MONTCARET", "libell_d_acheminement": "MONTCARET", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24289"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7084c799898e7292168442fbc4eb86e154ab7c", "fields": {"nom_de_la_commune": "MONPLAISANT", "libell_d_acheminement": "MONPLAISANT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24293"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eada454c45e287f0e2ad35f2d9f431dad2abfab1", "fields": {"nom_de_la_commune": "MOULEYDIER", "libell_d_acheminement": "MOULEYDIER", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24296"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d8f3d10d486712e7278c9e105f37df9a8078d1", "fields": {"nom_de_la_commune": "NEGRONDES", "libell_d_acheminement": "NEGRONDES", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24308"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f2d3a83b84ab7b46942abd8280d636203a9d21", "fields": {"nom_de_la_commune": "ORLIAC", "libell_d_acheminement": "ORLIAC", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24313"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c46bd658359c2e91c816d0650ee8334e6a1188", "fields": {"nom_de_la_commune": "PARCOUL CHENAUD", "libell_d_acheminement": "PARCOUL CHENAUD", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24316"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2725287098de0824b5d609612c3cc0fc5afaad", "fields": {"code_postal": "24410", "code_commune_insee": "24316", "libell_d_acheminement": "PARCOUL CHENAUD", "ligne_5": "CHENAUD", "nom_de_la_commune": "PARCOUL CHENAUD", "coordonnees_gps": [45.1753160251, 0.189361331723]}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a71b61a5426581cdc97c9607b507e8472992dd2", "fields": {"nom_de_la_commune": "PAUSSAC ET ST VIVIEN", "libell_d_acheminement": "PAUSSAC ET ST VIVIEN", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24319"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180bfcb45aa26e3088eaf6456774222b1282cef2", "fields": {"nom_de_la_commune": "PEYRIGNAC", "libell_d_acheminement": "PEYRIGNAC", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24324"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660e0c0801041b906abb04c0568dd4b9f0c64ae5", "fields": {"nom_de_la_commune": "PIEGUT PLUVIERS", "libell_d_acheminement": "PIEGUT PLUVIERS", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24328"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886f0e9a3785913d9f5c4d29769224c11b282a3e", "fields": {"nom_de_la_commune": "PORT STE FOY ET PONCHAPT", "libell_d_acheminement": "PORT STE FOY ET PONCHAPT", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "24335"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6afe6d478ffc62c964bcdb7ce6b80f349860375", "fields": {"nom_de_la_commune": "PROISSANS", "libell_d_acheminement": "PROISSANS", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24341"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792d29a91bc09436902a2a8c9846a28ee609ca5c", "fields": {"nom_de_la_commune": "RIBAGNAC", "libell_d_acheminement": "RIBAGNAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24351"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "effbe1e1a07c5dbb6dc5df83767e8f326c41a5ce", "fields": {"nom_de_la_commune": "LA ROCHEBEAUCOURT ET ARGENTINE", "libell_d_acheminement": "LA ROCHEBEAUCOURT ET ARGENTINE", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24353"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e217c815e8013db2d8ae059814a7868f784b767", "fields": {"code_postal": "24490", "code_commune_insee": "24354", "libell_d_acheminement": "LA ROCHE CHALAIS", "ligne_5": "ST MICHEL DE RIVIERE", "nom_de_la_commune": "LA ROCHE CHALAIS", "coordonnees_gps": [45.135601927, 0.0544832948908]}, "geometry": {"type": "Point", "coordinates": [0.0544832948908, 45.135601927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843ebcf190601b99c497e893de61c7783f8878bf", "fields": {"code_postal": "24490", "code_commune_insee": "24354", "libell_d_acheminement": "LA ROCHE CHALAIS", "ligne_5": "ST MICHEL L ECLUSE ET LEPARON", "nom_de_la_commune": "LA ROCHE CHALAIS", "coordonnees_gps": [45.135601927, 0.0544832948908]}, "geometry": {"type": "Point", "coordinates": [0.0544832948908, 45.135601927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef404d8a60ac679f9ceaa282ee2fe2d3672c5a5", "fields": {"nom_de_la_commune": "ST AGNE", "libell_d_acheminement": "ST AGNE", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24361"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e34bf0829103990041082ad07e17d68ad1b8e06", "fields": {"nom_de_la_commune": "STE ALVERE ST LAURENT LES BATONS", "libell_d_acheminement": "STE ALVERE ST LAURENT LES BATONS", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24362"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "164a1a98a5ba4d9f2d63e5fd10da8103c8bb8d10", "fields": {"nom_de_la_commune": "ST ANTOINE DE BREUILH", "libell_d_acheminement": "ST ANTOINE DE BREUILH", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24370"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9854d67ea7759ae4157722027dce73f4de8ad12", "fields": {"nom_de_la_commune": "ST ASTIER", "libell_d_acheminement": "ST ASTIER", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24372"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39900e87929a925eed14fd53a88fc08a85c2646", "fields": {"code_postal": "24410", "code_commune_insee": "24376", "libell_d_acheminement": "ST AULAYE PUYMANGOU", "ligne_5": "PUYMANGOU", "nom_de_la_commune": "ST AULAYE PUYMANGOU", "coordonnees_gps": [45.1753160251, 0.189361331723]}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "400087c121bfb2394f14ec82285478f127d3c538", "fields": {"nom_de_la_commune": "ST AVIT RIVIERE", "libell_d_acheminement": "ST AVIT RIVIERE", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24378"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0988666b2f99a3a9ca86d6bb5179e7d1d38f58b2", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE BUSSIERE", "libell_d_acheminement": "ST BARTHELEMY DE BUSSIERE", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24381"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b82e98c23cf8e54191d4aa64967b3e079ca526b", "fields": {"nom_de_la_commune": "ST CAPRAISE DE LALINDE", "libell_d_acheminement": "ST CAPRAISE DE LALINDE", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24382"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cebe24c6782f7afded6398d67ed0e117054efd", "fields": {"nom_de_la_commune": "ST CERNIN DE LABARDE", "libell_d_acheminement": "ST CERNIN DE LABARDE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24385"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f445f486b0a221c1cd401d780bd980fd1090150e", "fields": {"nom_de_la_commune": "ST CERNIN DE L HERM", "libell_d_acheminement": "ST CERNIN DE L HERM", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24386"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e811f3c7327e01fe9a782197cbbdbd06db0b96d", "fields": {"nom_de_la_commune": "ST CIRQ", "libell_d_acheminement": "ST CIRQ", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24389"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c250f7a603123b75296778b46017bc8dd154ba", "fields": {"nom_de_la_commune": "ST CREPIN DE RICHEMONT", "libell_d_acheminement": "ST CREPIN DE RICHEMONT", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24391"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa13e4c491dbf91183e4a21a82a050736dbc3bb0", "fields": {"nom_de_la_commune": "ST CREPIN ET CARLUCET", "libell_d_acheminement": "ST CREPIN ET CARLUCET", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24392"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9cb112b86d775a5e73a05d929c15d171d92f68", "fields": {"nom_de_la_commune": "ST ESTEPHE", "libell_d_acheminement": "ST ESTEPHE", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24398"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9713879b6d325998d163585e48345cf008ef81", "fields": {"nom_de_la_commune": "ST ETIENNE DE PUYCORBIER", "libell_d_acheminement": "ST ETIENNE DE PUYCORBIER", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24399"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf04db84428a36de03ce910d80adb23d9829130", "fields": {"nom_de_la_commune": "ST FRONT D ALEMPS", "libell_d_acheminement": "ST FRONT D ALEMPS", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24408"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c798c23484c7a9af914d1b4ba7c0bcf3404a8e59", "fields": {"nom_de_la_commune": "ST GERAUD DE CORPS", "libell_d_acheminement": "ST GERAUD DE CORPS", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24415"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2533b0bbe8e8bb94263f110a531ccb51f1169490", "fields": {"nom_de_la_commune": "STE INNOCENCE", "libell_d_acheminement": "STE INNOCENCE", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24423"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e02776607bab5e7fda374c875a56b8bd2f75890", "fields": {"nom_de_la_commune": "ST JULIEN DE CREMPSE", "libell_d_acheminement": "ST JULIEN DE CREMPSE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24431"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c23eae11cf59119d4e758985df12ec6fd961c2b", "fields": {"nom_de_la_commune": "ST JULIEN DE LAMPON", "libell_d_acheminement": "ST JULIEN DE LAMPON", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24432"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7157afd8c05e87fea5d0b1477d3cdb54c1184c52", "fields": {"nom_de_la_commune": "ST LEON D ISSIGEAC", "libell_d_acheminement": "ST LEON D ISSIGEAC", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24441"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7f55e04794a50cafe88e301abdd0a0f996adea", "fields": {"nom_de_la_commune": "ST LEON SUR L ISLE", "libell_d_acheminement": "ST LEON SUR L ISLE", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24442"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9b2e2aa295ee90619fac1b2912eeb5e332c057", "fields": {"nom_de_la_commune": "ST MARTIAL D ALBAREDE", "libell_d_acheminement": "ST MARTIAL D ALBAREDE", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24448"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d0d49c3d29df6a738237e5a6c947850261b95c", "fields": {"nom_de_la_commune": "ST MARTIAL DE VALETTE", "libell_d_acheminement": "ST MARTIAL DE VALETTE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24451"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338fa989e3c6e9fac2ab70fec0f8a1f545857968", "fields": {"nom_de_la_commune": "ST MARTIN DE GURSON", "libell_d_acheminement": "ST MARTIN DE GURSON", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24454"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42be4822a1cdc094b7b4213724b37fe87c1a0156", "fields": {"nom_de_la_commune": "ST MEARD DE GURCON", "libell_d_acheminement": "ST MEARD DE GURCON", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24461"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f034780d35a51c1270fb86014a4548781f9c75", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24464"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083fe72d411c40c59ed4a2b15245c25d03684551", "fields": {"nom_de_la_commune": "ST MICHEL DE DOUBLE", "libell_d_acheminement": "ST MICHEL DE DOUBLE", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24465"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542072c8a268400a9c0fe15308ba8e00d80c68b0", "fields": {"nom_de_la_commune": "STE NATHALENE", "libell_d_acheminement": "STE NATHALENE", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24471"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67f09b425b5e5426081de5ff8834dc0c88cd548", "fields": {"nom_de_la_commune": "ST NEXANS", "libell_d_acheminement": "ST NEXANS", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24472"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7937fec11a77505639e59e57df2a578d7bcf926", "fields": {"nom_de_la_commune": "ST PANTALY D EXCIDEUIL", "libell_d_acheminement": "ST PANTALY D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24476"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b239b5324a6cb808355beaa2741ab49f886b68", "fields": {"nom_de_la_commune": "ST PARDOUX DE DRONE", "libell_d_acheminement": "ST PARDOUX DE DRONE", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24477"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cde85782219f32bdce5e4c9feb4813d0e5b933b", "fields": {"nom_de_la_commune": "ST PARDOUX LA RIVIERE", "libell_d_acheminement": "ST PARDOUX LA RIVIERE", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24479"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f314a0d38a23e6ad804d99a66a173fb3b80261", "fields": {"nom_de_la_commune": "ST RABIER", "libell_d_acheminement": "ST RABIER", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24491"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18238c344041724558daa5fcc9694ab70bf8eaa5", "fields": {"nom_de_la_commune": "ST SULPICE DE MAREUIL", "libell_d_acheminement": "ST SULPICE DE MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24503"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3b97d895fca44e752a54eb1e5c67b660355a8e", "fields": {"nom_de_la_commune": "ST SULPICE DE ROUMAGNAC", "libell_d_acheminement": "ST SULPICE DE ROUMAGNAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24504"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6aad1c7abb2647043be59b96af1e5ff3c6e757", "fields": {"nom_de_la_commune": "STE TRIE", "libell_d_acheminement": "STE TRIE", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24507"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d4f6862ea27e88f2d0f77e52dbd0a7ea9ef9a1", "fields": {"nom_de_la_commune": "ST VINCENT DE COSSE", "libell_d_acheminement": "ST VINCENT DE COSSE", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24510"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcad60dc3abf98803a88b78f3262c364fe5ebaa2", "fields": {"nom_de_la_commune": "ST VIVIEN", "libell_d_acheminement": "ST VIVIEN", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24514"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1abb7d0a6ce59f5e1aae90165891e74a9603e1", "fields": {"nom_de_la_commune": "SALIGNAC EYVIGUES", "libell_d_acheminement": "SALIGNAC EYVIGUES", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24516"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e02a825a9653869e3d799e6c3bf2997b825521a", "fields": {"nom_de_la_commune": "SARRAZAC", "libell_d_acheminement": "SARRAZAC", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24522"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720de9a210ca1ab134f1e3b2476229232f6513a1", "fields": {"nom_de_la_commune": "SAUSSIGNAC", "libell_d_acheminement": "SAUSSIGNAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24523"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b445b3d5e949050b2ba6a6b8d5f8938eae76e224", "fields": {"nom_de_la_commune": "SAVIGNAC LEDRIER", "libell_d_acheminement": "SAVIGNAC LEDRIER", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24526"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4fcbed8614a3592eb72f553b13a47b9f8eefaa", "fields": {"nom_de_la_commune": "SERVANCHES", "libell_d_acheminement": "SERVANCHES", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24533"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c8d1b20775deaacc62ac51043edd7838f789f1", "fields": {"nom_de_la_commune": "SIGOULES", "libell_d_acheminement": "SIGOULES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24534"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be2a2435c1def507b0368f1c892644c7fdeb4bc", "fields": {"nom_de_la_commune": "SIORAC EN PERIGORD", "libell_d_acheminement": "SIORAC EN PERIGORD", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24538"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37c81dc0bafcf6a66114883bc717ddbe81ec0e95", "fields": {"nom_de_la_commune": "TEMPLE LAGUYON", "libell_d_acheminement": "TEMPLE LAGUYON", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24546"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c04b557b97fbbacd02d8b7b52e0acbdb95ac81a2", "fields": {"nom_de_la_commune": "TOCANE ST APRE", "libell_d_acheminement": "TOCANE ST APRE", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24553"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16188d0b4ac0cf625c978a6ed554616a6c3ff1c8", "fields": {"nom_de_la_commune": "VILLAMBLARD", "libell_d_acheminement": "VILLAMBLARD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24581"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bbd1ee0c48043da4e78f390a7a7d0788652ef6", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE LONCHAT", "libell_d_acheminement": "VILLEFRANCHE DE LONCHAT", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24584"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b85378bec17e1c96755351b15576f109404cbb", "fields": {"nom_de_la_commune": "VITRAC", "libell_d_acheminement": "VITRAC", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24587"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd0dd105afac52e4e7fcd8fbbbf6045f2f726e8", "fields": {"nom_de_la_commune": "ADAM LES VERCEL", "libell_d_acheminement": "ADAM LES VERCEL", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25007"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb0a72099bb602a4f44e68585f256be4a657340", "fields": {"nom_de_la_commune": "AIBRE", "libell_d_acheminement": "AIBRE", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25008"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f05b59755fe0241e7130f76626cc6aebf1a999", "fields": {"nom_de_la_commune": "AUDINCOURT", "libell_d_acheminement": "AUDINCOURT", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25031"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8c2510cb3c57f8436ee182fb3724e65c2e78f4", "fields": {"nom_de_la_commune": "BADEVEL", "libell_d_acheminement": "BADEVEL", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25040"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa74085183a933a83868e18ba9e4a290fafcb6b9", "fields": {"nom_de_la_commune": "BAVANS", "libell_d_acheminement": "BAVANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25048"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc1cfed6d218e4cb926fc534e37f936bae91b0f", "fields": {"code_postal": "25380", "code_commune_insee": "25051", "libell_d_acheminement": "BELLEHERBE", "ligne_5": "DROITFONTAINE", "nom_de_la_commune": "BELLEHERBE", "coordonnees_gps": [47.2514656671, 6.66193856736]}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0305be666f58e99ec593f0cd4cf53efe76f503", "fields": {"nom_de_la_commune": "BERTHELANGE", "libell_d_acheminement": "BERTHELANGE", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25055"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389d5829694e40870bc20a47ba2da70b8c41a6f7", "fields": {"nom_de_la_commune": "BIANS LES USIERS", "libell_d_acheminement": "BIANS LES USIERS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25060"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1665d425e53d09002f39a1b6c363542da35c184", "fields": {"nom_de_la_commune": "BIEF", "libell_d_acheminement": "BIEF", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25061"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf7f634eecd307d2fbabefcd8a9f518b4b18a07", "fields": {"nom_de_la_commune": "BLAMONT", "libell_d_acheminement": "BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25063"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68511100ce340001be27aec40a063b3230fe30b", "fields": {"nom_de_la_commune": "BOLANDOZ", "libell_d_acheminement": "BOLANDOZ", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25070"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a997379ee0348cf8ca4a755d5b3890d15f4a7aa", "fields": {"nom_de_la_commune": "LA BOSSE", "libell_d_acheminement": "LA BOSSE", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25077"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059ff7e3fdf49d4871b33f48e210ce7634fe9c2e", "fields": {"nom_de_la_commune": "BOUCLANS", "libell_d_acheminement": "BOUCLANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25078"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb651dc2e1151b45053bea51ecd01427c0f025b8", "fields": {"nom_de_la_commune": "BRERES", "libell_d_acheminement": "BRERES", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25090"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4244f65e4a89371f7173b4606e4bd99c2dde1c12", "fields": {"nom_de_la_commune": "LA BRETENIERE", "libell_d_acheminement": "LA BRETENIERE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25092"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecfa14e5b83e2ac0e88f0cbf23eb55e2622075e", "fields": {"nom_de_la_commune": "CADEMENE", "libell_d_acheminement": "CADEMENE", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25106"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c832c9569a9975c3924ab7b25fad1f255995622", "fields": {"nom_de_la_commune": "CHAFFOIS", "libell_d_acheminement": "CHAFFOIS", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25110"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b84c1a10fa19d3613d1921e497c131f492abc31", "fields": {"nom_de_la_commune": "CHALEZEULE", "libell_d_acheminement": "CHALEZEULE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25112"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad71807237c5f1cb8e0d32b3423589a3df7b3fba", "fields": {"nom_de_la_commune": "CHARBONNIERES LES SAPINS", "libell_d_acheminement": "CHARBONNIERES LES SAPINS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25123"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede20c4348448c1acc7e852f735c0f0fc9762ce8", "fields": {"nom_de_la_commune": "CHATELBLANC", "libell_d_acheminement": "CHATELBLANC", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25131"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16522387ef37a327828c7643dcdd2352be8ff9c7", "fields": {"nom_de_la_commune": "CHATILLON LE DUC", "libell_d_acheminement": "CHATILLON LE DUC", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25133"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b288c56e30a2f03eb6b4c85614ce9cd18c2b97", "fields": {"nom_de_la_commune": "CHATILLON SUR LISON", "libell_d_acheminement": "CHATILLON SUR LISON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25134"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45deb5290d5fab39a352ea9c6b3b9d46bf9dab2a", "fields": {"nom_de_la_commune": "CHAUDEFONTAINE", "libell_d_acheminement": "CHAUDEFONTAINE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25137"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d168ed262057ff3df32472a2a1653031d5ab0b", "fields": {"nom_de_la_commune": "LES TERRES DE CHAUX", "libell_d_acheminement": "LES TERRES DE CHAUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25138"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92d3a12117773e482e1b20601bebc12d031e54b", "fields": {"nom_de_la_commune": "CHAUX LES CLERVAL", "libell_d_acheminement": "CHAUX LES CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25140"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be910cb2f1a6c5442f2146d17bc53b9b5f22aed", "fields": {"nom_de_la_commune": "TOUTENS", "libell_d_acheminement": "TOUTENS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31558"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbbe94f28312c052fc3277254dc8440d9165ff9", "fields": {"nom_de_la_commune": "URAU", "libell_d_acheminement": "URAU", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31562"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f5758e3382778626d6b9d7c7f65e06e1184887", "fields": {"nom_de_la_commune": "VALLEGUE", "libell_d_acheminement": "VALLEGUE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31566"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afd70ac0939dc3d0166c48f3b3575dd45aa97a6", "fields": {"nom_de_la_commune": "VAUDREUILLE", "libell_d_acheminement": "VAUDREUILLE", "code_postal": "31250", "coordonnees_gps": [43.4555954942, 1.99785019175], "code_commune_insee": "31569"}, "geometry": {"type": "Point", "coordinates": [1.99785019175, 43.4555954942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124c208c23ce7118b99fa2145a7c4f9f6e532b9f", "fields": {"nom_de_la_commune": "ARBLADE LE BAS", "libell_d_acheminement": "ARBLADE LE BAS", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32004"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d47e7a313d4683d138a5c9b77dd9190063145369", "fields": {"nom_de_la_commune": "ARROUEDE", "libell_d_acheminement": "ARROUEDE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32010"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e21c97c5da31d31b86218ad961e9c7328683297", "fields": {"nom_de_la_commune": "AUTERIVE", "libell_d_acheminement": "AUTERIVE", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32019"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13b75b48615d2b4025ce6cff5fce2322becc83c", "fields": {"nom_de_la_commune": "AVENSAC", "libell_d_acheminement": "AVENSAC", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32021"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65c49b00568c24a86cb0f9d27aafcd4346d85e73", "fields": {"nom_de_la_commune": "BARCELONNE DU GERS", "libell_d_acheminement": "BARCELONNE DU GERS", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32027"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43bb4332ff3cec7f21ad39a0102f674b1d08b10b", "fields": {"nom_de_la_commune": "BARRAN", "libell_d_acheminement": "BARRAN", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32029"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d08259213e4f9a838ae398c1f4901a5129d73cd", "fields": {"nom_de_la_commune": "BASSOUES", "libell_d_acheminement": "BASSOUES", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32032"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d03a8bd21149d2dc0bd5716d53c1074461ce9b", "fields": {"nom_de_la_commune": "BAZUGUES", "libell_d_acheminement": "BAZUGUES", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32034"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092a300d02d39e437d56922f6f2a111312ad5f95", "fields": {"nom_de_la_commune": "BERRAC", "libell_d_acheminement": "BERRAC", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32047"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3c4346aa189b0c0b24db1746ec7e7eadf64b67", "fields": {"nom_de_la_commune": "BLANQUEFORT", "libell_d_acheminement": "BLANQUEFORT", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32056"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d980816fb5759964a9cf754a1990b38678d6890f", "fields": {"nom_de_la_commune": "BOUCAGNERES", "libell_d_acheminement": "BOUCAGNERES", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32060"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fac7e993b8b62bae2fbd498680f5163a840592", "fields": {"nom_de_la_commune": "BOUZON GELLENAVE", "libell_d_acheminement": "BOUZON GELLENAVE", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32063"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d64f0460a307bb48d5feef9a00097b609adbe29", "fields": {"nom_de_la_commune": "CADEILHAN", "libell_d_acheminement": "CADEILHAN", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32068"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0117553f712c3a98137e8d55a38e7e82d4c1fa8d", "fields": {"nom_de_la_commune": "CADEILLAN", "libell_d_acheminement": "CADEILLAN", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32069"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3b8fd632217b070370202c20f4d24c4fb657ec", "fields": {"nom_de_la_commune": "CAHUZAC SUR ADOUR", "libell_d_acheminement": "CAHUZAC SUR ADOUR", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32070"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb2d4be08beccaad18715a4a229fd0f2041462e", "fields": {"nom_de_la_commune": "CAILLAVET", "libell_d_acheminement": "CAILLAVET", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32071"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e752bf0bb3680fa3299163425d1008cd1941bca7", "fields": {"nom_de_la_commune": "CASTELNAU D ANGLES", "libell_d_acheminement": "CASTELNAU D ANGLES", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32077"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0084ccc6441509fc2d8d3f3329e3928bdf71551b", "fields": {"nom_de_la_commune": "CASTERON", "libell_d_acheminement": "CASTERON", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32084"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5ade59493107cc8d465f65b8813f2a43784df5", "fields": {"nom_de_la_commune": "CLERMONT POUYGUILLES", "libell_d_acheminement": "CLERMONT POUYGUILLES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32104"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1422f629989bd765cba02eef11f8f6da9aa4b03", "fields": {"nom_de_la_commune": "CONDOM", "libell_d_acheminement": "CONDOM", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32107"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71a888807fd2f568ae21a2b5b9849eed6733cf9", "fields": {"nom_de_la_commune": "COULOUME MONDEBAT", "libell_d_acheminement": "COULOUME MONDEBAT", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32109"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940476794a4fb6573d0570e7b9499a593c39c4cb", "fields": {"nom_de_la_commune": "COURTIES", "libell_d_acheminement": "COURTIES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32111"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "696095b1d561cb884d88f5daef0faad65d102c70", "fields": {"nom_de_la_commune": "CRASTES", "libell_d_acheminement": "CRASTES", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32112"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc518f466b57248ae2348a26cc3aa53436f68135", "fields": {"nom_de_la_commune": "CUELAS", "libell_d_acheminement": "CUELAS", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32114"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b38b6ef9f30d9d7761347dbaedf4725dda19b7c", "fields": {"nom_de_la_commune": "DURAN", "libell_d_acheminement": "DURAN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32117"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed648348fec2debfb475197980fae7d62bd54e2", "fields": {"nom_de_la_commune": "EAUZE", "libell_d_acheminement": "EAUZE", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32119"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb71030f154502ad5f580b5e52dc70da8e24ece", "fields": {"nom_de_la_commune": "FAGET ABBATIAL", "libell_d_acheminement": "FAGET ABBATIAL", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32130"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "939b25465474b35d95b70fb963b5c34f6b65f046", "fields": {"nom_de_la_commune": "FOURCES", "libell_d_acheminement": "FOURCES", "code_postal": "32250", "coordonnees_gps": [43.956623436, 0.171871761576], "code_commune_insee": "32133"}, "geometry": {"type": "Point", "coordinates": [0.171871761576, 43.956623436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e7be13d48af0a9372aafa65278aa623ff731c7c", "fields": {"nom_de_la_commune": "GAUJAC", "libell_d_acheminement": "GAUJAC", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32140"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee3a1321fd7887f08ade8ba53e5823c4a8d3ad7", "fields": {"nom_de_la_commune": "GAZAUPOUY", "libell_d_acheminement": "GAZAUPOUY", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32143"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a66aac1c5650b2816fa3c339ffbcd9ac36384e7", "fields": {"nom_de_la_commune": "GOUX", "libell_d_acheminement": "GOUX", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32151"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c406b9d6cfbe1ddd96d377eab23961638da2b9", "fields": {"nom_de_la_commune": "JUSTIAN", "libell_d_acheminement": "JUSTIAN", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32166"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e75d2a52bb6d7bc62f3d2b89080ee71d5bc8cd", "fields": {"nom_de_la_commune": "LAGUIAN MAZOUS", "libell_d_acheminement": "LAGUIAN MAZOUS", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32181"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ec6e088e73e004fd69864bece29ab54034dba34", "fields": {"nom_de_la_commune": "LAHAS", "libell_d_acheminement": "LAHAS", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32182"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac3b8adadaea23f1560db04270d3b417b14d20d8", "fields": {"nom_de_la_commune": "LALANNE", "libell_d_acheminement": "LALANNE", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32184"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fb9387f708c1856bd52d74d36128076e4573f2", "fields": {"nom_de_la_commune": "LANNEMAIGNAN", "libell_d_acheminement": "LANNEMAIGNAN", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32189"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47f936f50606e7bdb94b21c8059238a336c333fb", "fields": {"nom_de_la_commune": "LASSERAN", "libell_d_acheminement": "LASSERAN", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32200"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805fb764625f69eec0eb0042e78740e44d5447a1", "fields": {"nom_de_la_commune": "LAVARDENS", "libell_d_acheminement": "LAVARDENS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32204"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4443584548a2ef031cb7d34d67e6546cf8c4e7c0", "fields": {"nom_de_la_commune": "LAVERAET", "libell_d_acheminement": "LAVERAET", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32205"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88500b3c76d70d6ef1a9760af8567ad5900edf19", "fields": {"nom_de_la_commune": "LIGARDES", "libell_d_acheminement": "LIGARDES", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32212"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2561aad2c0f15e9ffb0efe42dfa540d496f3db2", "fields": {"nom_de_la_commune": "LOUSLITGES", "libell_d_acheminement": "LOUSLITGES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32217"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5dee67b5eb30e1a2675c26faa5fac116111fb5", "fields": {"nom_de_la_commune": "MAGNAS", "libell_d_acheminement": "MAGNAS", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32223"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be1253ca2ecb5da9daccaaa8cd06425966a3b69", "fields": {"nom_de_la_commune": "MANAS BASTANOUS", "libell_d_acheminement": "MANAS BASTANOUS", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32226"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b851094769e291c4d2b8947940203f99e9c1245", "fields": {"nom_de_la_commune": "MANSEMPUY", "libell_d_acheminement": "MANSEMPUY", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32229"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e21a5f261337075259412a820df562ad257b67a", "fields": {"nom_de_la_commune": "MANSENCOME", "libell_d_acheminement": "MANSENCOME", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32230"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49cdfc50329830ec7ad153e0a1833430e55e918f", "fields": {"nom_de_la_commune": "MARESTAING", "libell_d_acheminement": "MARESTAING", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32234"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c1c58a417904bd6ea87f926b968bdaa09dbf8e", "fields": {"nom_de_la_commune": "MARGOUET MEYMES", "libell_d_acheminement": "MARGOUET MEYMES", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32235"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b84d7162bb672e9b38f42a425808f81c4d99e9f", "fields": {"nom_de_la_commune": "MAUROUX", "libell_d_acheminement": "MAUROUX", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32248"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f450483f6aff9f6eeb3ed14a1b0a9b554e84c5a0", "fields": {"nom_de_la_commune": "MAUVEZIN", "libell_d_acheminement": "MAUVEZIN", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32249"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d4c12af5f9a2d1d0dc6a6137ab89ed37386b2a", "fields": {"nom_de_la_commune": "MERENS", "libell_d_acheminement": "MERENS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32251"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d52ae6087d87ef366d63ec8cdbbd4d5a6113829", "fields": {"nom_de_la_commune": "MIRANDE", "libell_d_acheminement": "MIRANDE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32256"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baaee7dfa40944e1ad6de94e2d97f8cc9514ff89", "fields": {"nom_de_la_commune": "MIRANNES", "libell_d_acheminement": "MIRANNES", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32257"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865d41ee27b94210f5743b1c8d40dfc7bfee30d7", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32278"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf444c2746baa48235c9ca94bfb7d82a86433ff", "fields": {"nom_de_la_commune": "MONT DE MARRAST", "libell_d_acheminement": "MONT DE MARRAST", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32281"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b880882f306c03adad647bd5db1c50e683d5a90", "fields": {"nom_de_la_commune": "NOULENS", "libell_d_acheminement": "NOULENS", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32299"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b597ec146487040593263b0bdbb3277a60897e", "fields": {"nom_de_la_commune": "PAUILHAC", "libell_d_acheminement": "PAUILHAC", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32306"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4524877d07e809cfe838cec1566d4abaced1df03", "fields": {"nom_de_la_commune": "POMPIAC", "libell_d_acheminement": "POMPIAC", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32322"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253616d769cae7e40d68d6ffa3544629e433ba3a", "fields": {"nom_de_la_commune": "POUYDRAGUIN", "libell_d_acheminement": "POUYDRAGUIN", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32325"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc3b9f95f41b6729894b3570377d9884e4fe3e6", "fields": {"nom_de_la_commune": "PRECHAC SUR ADOUR", "libell_d_acheminement": "PRECHAC SUR ADOUR", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32330"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9e76b23ea1aa318428e56ad36039f611eab53f", "fields": {"nom_de_la_commune": "PUYCASQUIER", "libell_d_acheminement": "PUYCASQUIER", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32335"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab3ac4fb055672f8dd8a8a19cab55ecf5d818ff", "fields": {"nom_de_la_commune": "ST ANTOINE", "libell_d_acheminement": "ST ANTOINE", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32358"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cdf9525056d51f80c3de9dc0bf69b80985e54e1", "fields": {"nom_de_la_commune": "STE CHRISTIE D ARMAGNAC", "libell_d_acheminement": "STE CHRISTIE D ARMAGNAC", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32369"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6066032481f4022b605b9e32914aec772a9e28ef", "fields": {"nom_de_la_commune": "ST CREAC", "libell_d_acheminement": "ST CREAC", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32371"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d84bacbe147f6b2d10a4a0e0980685d2e8272f9", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32388"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e78fa28e64cf755406ca6b21e342c25c368f3a0b", "fields": {"nom_de_la_commune": "ST MARTIN D ARMAGNAC", "libell_d_acheminement": "ST MARTIN D ARMAGNAC", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32390"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be48e498984d2a388da519c886e1440bca90d411", "fields": {"nom_de_la_commune": "ST MARTIN GIMOIS", "libell_d_acheminement": "ST MARTIN GIMOIS", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32392"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9df4be3d9e595e9eeeb848b949f86451acdd0a", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32394"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c3ba47371cbfae918644ecf9ae94e1fdfc4e0c", "fields": {"nom_de_la_commune": "ST ORENS", "libell_d_acheminement": "ST ORENS", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32399"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9999c5e42beda624767bad4df3d5e39f302f3469", "fields": {"nom_de_la_commune": "ST ORENS POUY PETIT", "libell_d_acheminement": "ST ORENS POUY PETIT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32400"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726cfbdad4308b85a71c93ac28459aa6201d4798", "fields": {"nom_de_la_commune": "ST OST", "libell_d_acheminement": "ST OST", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32401"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0b0a59fb8aeb3646ff66f16d455cb10265262d", "fields": {"nom_de_la_commune": "ST PUY", "libell_d_acheminement": "ST PUY", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32404"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ff68935c2d5bc69c7195617d4578ce355d42af", "fields": {"nom_de_la_commune": "ST SOULAN", "libell_d_acheminement": "ST SOULAN", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32407"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136b50b1f0ce3e87edfc9609f95b4499886237e8", "fields": {"nom_de_la_commune": "SANSAN", "libell_d_acheminement": "SANSAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32411"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bbc8d24e18647c7887f48f7de9626c18a60a95", "fields": {"nom_de_la_commune": "SARRAGACHIES", "libell_d_acheminement": "SARRAGACHIES", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32414"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1048525d816641ca6ec0e8911effddec2caa9c7e", "fields": {"nom_de_la_commune": "SARRAGUZAN", "libell_d_acheminement": "SARRAGUZAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32415"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfeebfdbcd1487e75eff00ce906bb774ea5e2cde", "fields": {"nom_de_la_commune": "SAUVIMONT", "libell_d_acheminement": "SAUVIMONT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32420"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a6267b85b479ff666340c8e335a37a4aa331b7", "fields": {"nom_de_la_commune": "SEAILLES", "libell_d_acheminement": "SEAILLES", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32423"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4416f29c2bd266b749ace93358f5edbfdcef342", "fields": {"nom_de_la_commune": "SEISSAN", "libell_d_acheminement": "SEISSAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32426"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870039d7b7a15698e3a6079d945b79cf613d3e80", "fields": {"nom_de_la_commune": "SEMPESSERRE", "libell_d_acheminement": "SEMPESSERRE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32429"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00a2d7bcc31def0dd8bdd4c9f3261107aacc2b1", "fields": {"nom_de_la_commune": "SION", "libell_d_acheminement": "SION", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32434"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82394e874fc103c562ce9998981c4be3800a9c70", "fields": {"nom_de_la_commune": "SIRAC", "libell_d_acheminement": "SIRAC", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32435"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764fb00712b909c978835833caeed8da27f0a7a3", "fields": {"nom_de_la_commune": "TARSAC", "libell_d_acheminement": "TARSAC", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32439"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decb61b14a33808950f3909b7118af292d9806e5", "fields": {"nom_de_la_commune": "TASQUE", "libell_d_acheminement": "TASQUE", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32440"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fd1d9726b81f03bd89bb124f5d0d6861678713", "fields": {"nom_de_la_commune": "TERMES D ARMAGNAC", "libell_d_acheminement": "TERMES D ARMAGNAC", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32443"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019be947fef452b1d391ae1102bec00e79a8c1ab", "fields": {"nom_de_la_commune": "TIESTE URAGNOUX", "libell_d_acheminement": "TIESTE URAGNOUX", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32445"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0e7b9244797baac010b7f6e5a5c9b0a6f19fe0", "fields": {"nom_de_la_commune": "TILLAC", "libell_d_acheminement": "TILLAC", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32446"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbee25615537f69ca837bbf791c35fb2e394236", "fields": {"nom_de_la_commune": "TOUJOUSE", "libell_d_acheminement": "TOUJOUSE", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32449"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599f13e1b27e51a961c3481487e61787faa5bf1f", "fields": {"nom_de_la_commune": "TOURDUN", "libell_d_acheminement": "TOURDUN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32450"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a09182130cc87be8a3d82c02cca659b646defa1", "fields": {"nom_de_la_commune": "URGOSSE", "libell_d_acheminement": "URGOSSE", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32458"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c8d51420a0e8f585ca6472e3b5b6a2dc30b0fb", "fields": {"nom_de_la_commune": "VIC FEZENSAC", "libell_d_acheminement": "VIC FEZENSAC", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32462"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e6cb2d2eade1b2bf7c96f236ca906b865371e8", "fields": {"nom_de_la_commune": "VIELLA", "libell_d_acheminement": "VIELLA", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32463"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d75ddad014b2f198568feebb34c40b0afe3721", "fields": {"nom_de_la_commune": "ABZAC", "libell_d_acheminement": "ABZAC", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33001"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39930988360aebc6cbdaafb591e05512a0d679bd", "fields": {"nom_de_la_commune": "ARES", "libell_d_acheminement": "ARES", "code_postal": "33740", "coordonnees_gps": [44.7952398157, -1.07874990703], "code_commune_insee": "33011"}, "geometry": {"type": "Point", "coordinates": [-1.07874990703, 44.7952398157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b56a0b5a9e3fecd0f173e8d84bb9ae783dfa78", "fields": {"nom_de_la_commune": "LES ARTIGUES DE LUSSAC", "libell_d_acheminement": "LES ARTIGUES DE LUSSAC", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33014"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cb55b3360eadb129f0a1d0d9c76784550b86ce", "fields": {"code_postal": "33240", "code_commune_insee": "33018", "libell_d_acheminement": "VAL DE VIRVEE", "ligne_5": "SALIGNAC", "nom_de_la_commune": "VAL DE VIRVEE", "coordonnees_gps": [44.9990310815, -0.398251913536]}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05598b02e070781e66e7f4211ac1a727ed6178bd", "fields": {"nom_de_la_commune": "BARSAC", "libell_d_acheminement": "BARSAC", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33030"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941994774e60a0c159bdb47f70c47dedfd0c2fd1", "fields": {"nom_de_la_commune": "LE CROUZET", "libell_d_acheminement": "LE CROUZET", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25179"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfc3d5c31698adcbdc059730b88030e161b188e", "fields": {"nom_de_la_commune": "DAMPJOUX", "libell_d_acheminement": "DAMPJOUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25192"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1a6bc66eb6722c95c7d130450e253b4e72afe9", "fields": {"nom_de_la_commune": "DESANDANS", "libell_d_acheminement": "DESANDANS", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25198"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ebf12d177fbd85ad7a5a916fc4aa59f6dccec2", "fields": {"nom_de_la_commune": "DESERVILLERS", "libell_d_acheminement": "DESERVILLERS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25199"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "520ae942ffe17b6b098f499486d4b96a3adf5710", "fields": {"nom_de_la_commune": "DUNG", "libell_d_acheminement": "DUNG", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25207"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ea712c199c71bc59bb4b1b0da508fc096f70be", "fields": {"nom_de_la_commune": "ECOT", "libell_d_acheminement": "ECOT", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25214"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36953c58bab72a0e689cf39da4776e487fe0daa3", "fields": {"nom_de_la_commune": "L ECOUVOTTE", "libell_d_acheminement": "L ECOUVOTTE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25215"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a753f7ada3c3cd613761b0aa38beae824d75c9b", "fields": {"nom_de_la_commune": "EPENOUSE", "libell_d_acheminement": "EPENOUSE", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25218"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d472835e40a8af650e1469852e7ef6bdd60d73", "fields": {"nom_de_la_commune": "ESNANS", "libell_d_acheminement": "ESNANS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25221"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d342ea3822528a2115a80735a1cd1ab09771f335", "fields": {"nom_de_la_commune": "ETERNOZ", "libell_d_acheminement": "ETERNOZ", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25223"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01dbe0972f58e9161ddd92b157f4d4ffc4beb1c", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "DOULAIZE", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2445a5568880aeaff60056c341dad677f1a5c96c", "fields": {"nom_de_la_commune": "ETRAPPE", "libell_d_acheminement": "ETRAPPE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25226"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0403d22bdac91667ea823ce59f5b16fda55814ac", "fields": {"nom_de_la_commune": "FLAGEY RIGNEY", "libell_d_acheminement": "FLAGEY RIGNEY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25242"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb3851614042eab5767f6070b749706f8f31e78", "fields": {"nom_de_la_commune": "FONTENELLE MONTBY", "libell_d_acheminement": "FONTENELLE MONTBY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25247"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b975341d2183855a57f13335130941f6ba4655", "fields": {"nom_de_la_commune": "FRANEY", "libell_d_acheminement": "FRANEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25257"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a25c6466f171454b99cb9329ad5cafbdae9011", "fields": {"nom_de_la_commune": "FROIDEVAUX", "libell_d_acheminement": "FROIDEVAUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25261"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c034f6fa15ce9cbe2bf4cea822c62de58c47eb65", "fields": {"nom_de_la_commune": "GEMONVAL", "libell_d_acheminement": "GEMONVAL", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25264"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9d18f232c808178e7d19eb60605df9a971665a", "fields": {"nom_de_la_commune": "GOUMOIS", "libell_d_acheminement": "GOUMOIS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25280"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844b95855fd18d052dbe1a90a97426a155376dad", "fields": {"nom_de_la_commune": "GRAND COMBE DES BOIS", "libell_d_acheminement": "GRAND COMBE DES BOIS", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25286"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81536d5217b6a053c23ea5b26d7f88e1af9a2bff", "fields": {"nom_de_la_commune": "GRANDFONTAINE", "libell_d_acheminement": "GRANDFONTAINE", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25287"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f23f9323afbdca9bd1cb20a6b677ddd47c7c0a1", "fields": {"nom_de_la_commune": "LES HOPITAUX NEUFS", "libell_d_acheminement": "LES HOPITAUX NEUFS", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25307"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6a5d245b120cd882faf6fdb4ec4bebc69a7caf", "fields": {"nom_de_la_commune": "HOUTAUD", "libell_d_acheminement": "HOUTAUD", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25309"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a292d00a663bf4d238d8e982bef571e3cd24c2", "fields": {"nom_de_la_commune": "ISSANS", "libell_d_acheminement": "ISSANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25316"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82e0420c458cf919221771d8163ff7a38068487", "fields": {"nom_de_la_commune": "LABERGEMENT STE MARIE", "libell_d_acheminement": "LABERGEMENT STE MARIE", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25320"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c06dbd05caf2c95ab1d8820142ca3133e261c94c", "fields": {"nom_de_la_commune": "LAVAL LE PRIEURE", "libell_d_acheminement": "LAVAL LE PRIEURE", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25329"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52900f9b4d3f3ed48418a2f7f2b01016fadb3388", "fields": {"nom_de_la_commune": "LEVIER", "libell_d_acheminement": "LEVIER", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25334"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bccbc189bdfe9f3ee887740e04d84085817d70df", "fields": {"nom_de_la_commune": "LOMBARD", "libell_d_acheminement": "LOMBARD", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25340"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc07b7f2c681837125c604107a159dfa4a272d43", "fields": {"nom_de_la_commune": "LONGEVELLE LES RUSSEY", "libell_d_acheminement": "LONGEVELLE LES RUSSEY", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25344"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9a80df9b11d8c7c08d6a859f6ecef9392dc29c", "fields": {"nom_de_la_commune": "LONGEVILLE", "libell_d_acheminement": "LONGEVILLE", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25346"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd73036a3514d4104c0c8790f8365efe0abe7591", "fields": {"nom_de_la_commune": "MAGNY CHATELARD", "libell_d_acheminement": "MAGNY CHATELARD", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25355"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5ad02e00803609e6246364cca25478f84bbdb23", "fields": {"nom_de_la_commune": "MAISONS DU BOIS LIEVREMONT", "libell_d_acheminement": "MAISONS DU BOIS LIEVREMONT", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25357"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd40767ca2840aeb0bb0dd826f8694773919450", "fields": {"code_postal": "25650", "code_commune_insee": "25357", "libell_d_acheminement": "MAISONS DU BOIS LIEVREMONT", "ligne_5": "LIEVREMONT", "nom_de_la_commune": "MAISONS DU BOIS LIEVREMONT", "coordonnees_gps": [47.0093520385, 6.45599520386]}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9417998998c9f50ebdca1421c7e9b648d65c9ab7", "fields": {"nom_de_la_commune": "MALBRANS", "libell_d_acheminement": "MALBRANS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25360"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa6f580958429fab166f31b68d008db43b509199", "fields": {"nom_de_la_commune": "MATHAY", "libell_d_acheminement": "MATHAY", "code_postal": "25700", "coordonnees_gps": [47.450787456, 6.79182503855], "code_commune_insee": "25370"}, "geometry": {"type": "Point", "coordinates": [6.79182503855, 47.450787456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af36ce438443e05e0ac2991b9aca50143dc70e09", "fields": {"nom_de_la_commune": "MESMAY", "libell_d_acheminement": "MESMAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25379"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e914d4df8c1a762a0f5b5dfa818564bccb12b659", "fields": {"nom_de_la_commune": "METABIEF", "libell_d_acheminement": "METABIEF", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25380"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec67b753990b554f2f3398fe018cea04973568b8", "fields": {"nom_de_la_commune": "MONCLEY", "libell_d_acheminement": "MONCLEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25383"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b064622b7393e8030d191fb794f53e24662c3720", "fields": {"nom_de_la_commune": "MONDON", "libell_d_acheminement": "MONDON", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25384"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d09329246e0236cb5fd9217e5fbba3c8ea181a19", "fields": {"code_postal": "25680", "code_commune_insee": "25385", "libell_d_acheminement": "MONTAGNEY SERVIGNEY", "ligne_5": "SERVIGNEY", "nom_de_la_commune": "MONTAGNEY SERVIGNEY", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d960db531a9d7a10c0266046ca261ebe3233984", "fields": {"nom_de_la_commune": "MONTANCY", "libell_d_acheminement": "MONTANCY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25386"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522c3c4848670e078aa56fcff895a09e9abe43ec", "fields": {"nom_de_la_commune": "MONTANDON", "libell_d_acheminement": "MONTANDON", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25387"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e18fadaca3a8f1ed29f6de94fdf99f5ae2f97e", "fields": {"nom_de_la_commune": "MONTBELIARD", "libell_d_acheminement": "MONTBELIARD", "code_postal": "25200", "coordonnees_gps": [47.5248285421, 6.80015635102], "code_commune_insee": "25388"}, "geometry": {"type": "Point", "coordinates": [6.80015635102, 47.5248285421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee71fa06191d74015c4787e022b4549fd3c1ce0", "fields": {"nom_de_la_commune": "MONT DE LAVAL", "libell_d_acheminement": "MONT DE LAVAL", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25391"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea19c8a6cecaf49cd5ddd80f63c44d63723d6004", "fields": {"nom_de_la_commune": "MONTLEBON", "libell_d_acheminement": "MONTLEBON", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25403"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572b04beddb101e7a6f104915bd2ac201f268c04", "fields": {"nom_de_la_commune": "MONTROND LE CHATEAU", "libell_d_acheminement": "MONTROND LE CHATEAU", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25406"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1ca860a18a1964b16db9749aa221100255175b", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "ATHOSE", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecdfcbb2e6ae4328bc84d5cc3a062c80d21b6938", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "VANCLANS", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79a040d8509c5825a5d590f8a6ee22382c68644", "fields": {"nom_de_la_commune": "NOVILLARS", "libell_d_acheminement": "NOVILLARS", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25429"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7776528200a7e39ba3794bb03225b33b06302f", "fields": {"nom_de_la_commune": "ONANS", "libell_d_acheminement": "ONANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25431"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947c78156ac9b701d784d0c62ec5eb059218128a", "fields": {"nom_de_la_commune": "OUGNEY DOUVOT", "libell_d_acheminement": "OUGNEY DOUVOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25439"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2ba11de9647b80859e2101fae8804a49906ad3", "fields": {"nom_de_la_commune": "PELOUSEY", "libell_d_acheminement": "PELOUSEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25448"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51991aec167492fad019dea4b9a62c60d787b79e", "fields": {"nom_de_la_commune": "PESEUX", "libell_d_acheminement": "PESEUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25449"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be081731d8fe6fbccc45fb5b91eafd8aa371b50", "fields": {"nom_de_la_commune": "PETITE CHAUX", "libell_d_acheminement": "PETITE CHAUX", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25451"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dcda341ded85993b51440ece374263efca2244", "fields": {"nom_de_la_commune": "PIERREFONTAINE LES BLAMONT", "libell_d_acheminement": "PIERREFONTAINE LES BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25452"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b5ef46dec862de10ba9571bc139fc357adece5", "fields": {"nom_de_la_commune": "PLAIMBOIS VENNES", "libell_d_acheminement": "PLAIMBOIS VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25457"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8216086b954c95d1318c26280f6c3f71e25546", "fields": {"nom_de_la_commune": "LA PLANEE", "libell_d_acheminement": "LA PLANEE", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25459"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3f26e635a8c2e7240b740cbb1c8a75144c6ed8", "fields": {"nom_de_la_commune": "LES PONTETS", "libell_d_acheminement": "LES PONTETS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25464"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ee05149fec73af92472f130e57809d7afa00bf", "fields": {"nom_de_la_commune": "PONT LES MOULINS", "libell_d_acheminement": "PONT LES MOULINS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25465"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea5834fcd400c448c1cda620356e8f94b1779b", "fields": {"nom_de_la_commune": "LE PUY", "libell_d_acheminement": "LE PUY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25474"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de23ad8e4b65ca350d207813b5f40db84beb295", "fields": {"nom_de_la_commune": "RANG", "libell_d_acheminement": "RANG", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25479"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e820eed41a668d0421da4b6a41e105b9a03f430", "fields": {"nom_de_la_commune": "RECULFOZ", "libell_d_acheminement": "RECULFOZ", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25483"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0ade142e4e0640466ae5db8f93ab23d38f0ee5", "fields": {"code_postal": "25150", "code_commune_insee": "25485", "libell_d_acheminement": "REMONDANS VAIVRE", "ligne_5": "VAIVRE", "nom_de_la_commune": "REMONDANS VAIVRE", "coordonnees_gps": [47.3948099665, 6.72943096547]}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d2ea6047ef03c0eac2523b3140d7b7a928efb8", "fields": {"nom_de_la_commune": "RIGNEY", "libell_d_acheminement": "RIGNEY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25490"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6a6dbd6dc71343493d4482b87d24393c1d5978", "fields": {"nom_de_la_commune": "RIGNOSOT", "libell_d_acheminement": "RIGNOSOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25491"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee4a7b45025faf9cb0f489106e623bc0f9b272b5", "fields": {"nom_de_la_commune": "LA RIVIERE DRUGEON", "libell_d_acheminement": "LA RIVIERE DRUGEON", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25493"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752ef866e36b604f5ff6a791622839970f90070c", "fields": {"nom_de_la_commune": "ROSET FLUANS", "libell_d_acheminement": "ROSET FLUANS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25502"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fe7270834f8d08557cbc70926e752cbd934ddd", "fields": {"nom_de_la_commune": "RUFFEY LE CHATEAU", "libell_d_acheminement": "RUFFEY LE CHATEAU", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25510"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486e6070a4293bd64672addd0fdea07fd72840b2", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25518"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6280b169866ab981f9f0b7d7ddff209bc178a9d", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25519"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3c726917c3743d7e828bd354b62d0bdabe15a1", "fields": {"nom_de_la_commune": "ST MAURICE COLOMBIER", "libell_d_acheminement": "ST MAURICE COLOMBIER", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25524"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e8448c38a3d0ba541a277e8f92a22899a51e9f", "fields": {"code_postal": "25410", "code_commune_insee": "25527", "libell_d_acheminement": "ST VIT", "ligne_5": "ANTORPE", "nom_de_la_commune": "ST VIT", "coordonnees_gps": [47.1860285519, 5.82335931135]}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e287c004dee7886e14f7c2e2da7f5739cf98f00", "fields": {"nom_de_la_commune": "SANTOCHE", "libell_d_acheminement": "SANTOCHE", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25531"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785a15703b0b3e64291e05ab715235c11163adad", "fields": {"nom_de_la_commune": "SAONE", "libell_d_acheminement": "SAONE", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25532"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6553c92e9ec27fed165bd64cd0aae29a11b69254", "fields": {"nom_de_la_commune": "SARRAGEOIS", "libell_d_acheminement": "SARRAGEOIS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25534"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a58e2957d1908a0525ecd940afd3f7a286b382", "fields": {"code_postal": "25290", "code_commune_insee": "25537", "libell_d_acheminement": "SCEY MAISIERES", "ligne_5": "MAISIERES NOTRE DAME", "nom_de_la_commune": "SCEY MAISIERES", "coordonnees_gps": [47.1021279633, 6.08388420751]}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60309209a2b673a79005aa3ac562b3b8899437f9", "fields": {"nom_de_la_commune": "SEMONDANS", "libell_d_acheminement": "SEMONDANS", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25540"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc45d6897532101be1dcfe7c74fee787d0b97458", "fields": {"nom_de_la_commune": "SERVIN", "libell_d_acheminement": "SERVIN", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25544"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d068fd67710c96a1701177a31115903f572dc4c2", "fields": {"nom_de_la_commune": "SOURANS", "libell_d_acheminement": "SOURANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25552"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ec51a662880bc9d190061eb9aed57bbd136d18", "fields": {"nom_de_la_commune": "TAILLECOURT", "libell_d_acheminement": "TAILLECOURT", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25555"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a987f63506fcf6f30718af9832927285978a990", "fields": {"nom_de_la_commune": "TALLANS", "libell_d_acheminement": "TALLANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25556"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838b63834c34f5843a7582685f852fd79d91f23a", "fields": {"nom_de_la_commune": "THISE", "libell_d_acheminement": "THISE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25560"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7e83d42789c47e3d727ea114368a764c6d6b85", "fields": {"nom_de_la_commune": "TOUILLON ET LOUTELET", "libell_d_acheminement": "TOUILLON ET LOUTELET", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25565"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90a69b2db3312227ed138f1bffb33046ce492d2", "fields": {"nom_de_la_commune": "TREPOT", "libell_d_acheminement": "TREPOT", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25569"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f99fc08553f7607c0f6c6b92354ac3b6e201a60", "fields": {"nom_de_la_commune": "URTIERE", "libell_d_acheminement": "URTIERE", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25573"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb3bd3a8229c4ef007b6c3902d96fe67017b33f", "fields": {"code_postal": "25220", "code_commune_insee": "25575", "libell_d_acheminement": "VAIRE ARCIER", "ligne_5": "ARCIER", "nom_de_la_commune": "VAIRE ARCIER", "coordonnees_gps": [47.2829032238, 6.12157333697]}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e2a4645ef4ba686bf80de8dc9dc0435b81505a", "fields": {"nom_de_la_commune": "VALOREILLE", "libell_d_acheminement": "VALOREILLE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25584"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39bf90ca8fdb8a73705a119612fbe389784b2e1b", "fields": {"nom_de_la_commune": "VERGRANNE", "libell_d_acheminement": "VERGRANNE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25602"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2687b005b9b621c7a704ec546e2e2d8d8b2c0b", "fields": {"nom_de_la_commune": "LE VERNOY", "libell_d_acheminement": "LE VERNOY", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25608"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33068d59466653a373880db32bffff1acdc1c872", "fields": {"nom_de_la_commune": "VOILLANS", "libell_d_acheminement": "VOILLANS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25629"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6fbac1d03ad2a8bb589d9e18a068867e2b2a48", "fields": {"nom_de_la_commune": "VUILLECIN", "libell_d_acheminement": "VUILLECIN", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25634"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae1b0d92e6c520dcae58ce8422ac6d7dc2a109b", "fields": {"nom_de_la_commune": "VYT LES BELVOIR", "libell_d_acheminement": "VYT LES BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25635"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bf1a4e2fb71d2b3a682cdc8fdc886c3a9ae6de", "fields": {"code_postal": "26150", "code_commune_insee": "26001", "libell_d_acheminement": "SOLAURE EN DIOIS", "ligne_5": "AIX EN DIOIS", "nom_de_la_commune": "SOLAURE EN DIOIS", "coordonnees_gps": [44.7765586622, 5.35143868083]}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be698b0c07b80da64654e9c23b83ac979d61af3", "fields": {"nom_de_la_commune": "ALEYRAC", "libell_d_acheminement": "ALEYRAC", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26003"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35b7c6ed2cf278d7724b4232846f267b45445d3", "fields": {"nom_de_la_commune": "AOUSTE SUR SYE", "libell_d_acheminement": "AOUSTE SUR SYE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26011"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0bfad4356610514d657bd3fde82ba93e59f296", "fields": {"nom_de_la_commune": "ARNAYON", "libell_d_acheminement": "ARNAYON", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26012"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4488803eb51b73ecaba7f131b16283f74a46f3", "fields": {"nom_de_la_commune": "BATHERNAY", "libell_d_acheminement": "BATHERNAY", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26028"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df273dbb52c1e062676bb6934f633cc543ab6e3", "fields": {"nom_de_la_commune": "LA BAUME DE TRANSIT", "libell_d_acheminement": "LA BAUME DE TRANSIT", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26033"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20cecc782f04a4163ce36b39483e2bea3636b495", "fields": {"nom_de_la_commune": "LA BAUME D HOSTUN", "libell_d_acheminement": "LA BAUME D HOSTUN", "code_postal": "26730", "coordonnees_gps": [45.0482944782, 5.20163673449], "code_commune_insee": "26034"}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2876c95feae93dd6d3296e61f816a16f683674fd", "fields": {"nom_de_la_commune": "LA BEGUDE DE MAZENC", "libell_d_acheminement": "LA BEGUDE DE MAZENC", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26045"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff3c96cc858bdad600e3b94a7e667523da06105", "fields": {"nom_de_la_commune": "BELLECOMBE TARENDOL", "libell_d_acheminement": "BELLECOMBE TARENDOL", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26046"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e9798495e16af9eb5f5dfeac16cd28a772b836", "fields": {"nom_de_la_commune": "BELLEGARDE", "libell_d_acheminement": "BELLEGARDE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32041"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcaa70a139ce5c6d5e78e016eea927e0fef79759", "fields": {"nom_de_la_commune": "BELLOC ST CLAMENS", "libell_d_acheminement": "BELLOC ST CLAMENS", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32042"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1456d35714b66510225bdc942101da7facbbd57a", "fields": {"nom_de_la_commune": "BETCAVE AGUIN", "libell_d_acheminement": "BETCAVE AGUIN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32048"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "695395e69b28049189cfc293cb84a4d9f260b63e", "fields": {"nom_de_la_commune": "BEZERIL", "libell_d_acheminement": "BEZERIL", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32051"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a53fc65b88c51fb6d501e6d074975c4bb0d2cd", "fields": {"nom_de_la_commune": "BIRAN", "libell_d_acheminement": "BIRAN", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32054"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eac2b9f2940b2c11cad6b7bd6d97738209eedf1", "fields": {"nom_de_la_commune": "BOURROUILLAN", "libell_d_acheminement": "BOURROUILLAN", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32062"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b139d0bf16cb4dfc954f5e0071fb587c11c411", "fields": {"nom_de_la_commune": "BRETAGNE D ARMAGNAC", "libell_d_acheminement": "BRETAGNE D ARMAGNAC", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32064"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73013635756b5ef6dc6647df3bc1113f0b3d4c14", "fields": {"nom_de_la_commune": "CASTELNAU D AUZAN LABARRERE", "libell_d_acheminement": "CASTELNAU D AUZAN LABARRERE", "code_postal": "32440", "coordonnees_gps": [43.9438759009, 0.101535289851], "code_commune_insee": "32079"}, "geometry": {"type": "Point", "coordinates": [0.101535289851, 43.9438759009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b09c7477c83cdd68e0202ae84dd8eddbdd495973", "fields": {"nom_de_la_commune": "CASTERA LECTOUROIS", "libell_d_acheminement": "CASTERA LECTOUROIS", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32082"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7cd5246f9dcc6e06ead85c05ce634fffea69ba2", "fields": {"nom_de_la_commune": "CASTERA VERDUZAN", "libell_d_acheminement": "CASTERA VERDUZAN", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32083"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0930c868998de6f588de7288db6090968d28fedf", "fields": {"code_postal": "32150", "code_commune_insee": "32096", "libell_d_acheminement": "CAZAUBON", "ligne_5": "BARBOTAN LES THERMES", "nom_de_la_commune": "CAZAUBON", "coordonnees_gps": [43.9190765536, -0.0421545944105]}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3b223c31bb880777972d27362018e0551efb60", "fields": {"nom_de_la_commune": "CAZENEUVE", "libell_d_acheminement": "CAZENEUVE", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32100"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c518006593885607443d68ac4070a6d2adeccff4", "fields": {"nom_de_la_commune": "DUFFORT", "libell_d_acheminement": "DUFFORT", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32116"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "679f2a73797d0e3e5c913922fdd21168ed94dbef", "fields": {"nom_de_la_commune": "DURBAN", "libell_d_acheminement": "DURBAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32118"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a5855f37f95144a00f8d294d6ae2fbea814456", "fields": {"nom_de_la_commune": "ENCAUSSE", "libell_d_acheminement": "ENCAUSSE", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32120"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6977055af3b26d8ad7050af7cde3fd5f1d76981c", "fields": {"nom_de_la_commune": "ESCORNEBOEUF", "libell_d_acheminement": "ESCORNEBOEUF", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32123"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c8674ba800961147bdb2dbcd25a93ee239a318", "fields": {"nom_de_la_commune": "ESTIPOUY", "libell_d_acheminement": "ESTIPOUY", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32128"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7919a1f581283d67028b54cd80e7e612630f4116", "fields": {"nom_de_la_commune": "ESTRAMIAC", "libell_d_acheminement": "ESTRAMIAC", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32129"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a585b11f8f26a3586f1804ca0e94c869749e9cf1", "fields": {"nom_de_la_commune": "FLAMARENS", "libell_d_acheminement": "FLAMARENS", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32131"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab0a34c7d5cbc2457c2d0ce46e7a4c219edd109", "fields": {"nom_de_la_commune": "GARRAVET", "libell_d_acheminement": "GARRAVET", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32138"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c66c40f96d1b458ad0f939b09ade4f5dc3036239", "fields": {"nom_de_la_commune": "GAUDONVILLE", "libell_d_acheminement": "GAUDONVILLE", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32139"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996aab2ef69b7b0968734e015e959079d766fc90", "fields": {"nom_de_la_commune": "GONDRIN", "libell_d_acheminement": "GONDRIN", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32149"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9be64d0697d4e0c2809d3c9da3e72bdf4745f5", "fields": {"nom_de_la_commune": "GOUTZ", "libell_d_acheminement": "GOUTZ", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32150"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ada76c1463e8c57988dbc5bc7445e2411a0ca5a", "fields": {"nom_de_la_commune": "HAULIES", "libell_d_acheminement": "HAULIES", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32153"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1937e06f55451564fc1821567a9237ab08feb8e7", "fields": {"nom_de_la_commune": "HOMPS", "libell_d_acheminement": "HOMPS", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32154"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2d61bf66f5e7bad657141297740b111815fba29", "fields": {"nom_de_la_commune": "L ISLE BOUZON", "libell_d_acheminement": "L ISLE BOUZON", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32158"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00801bbbf105e91e4488396f02d7423d5e142272", "fields": {"nom_de_la_commune": "JUILLAC", "libell_d_acheminement": "JUILLAC", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32164"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7f2e50295bce3dd285ee6f0eb71774b2664c0e", "fields": {"nom_de_la_commune": "LAAS", "libell_d_acheminement": "LAAS", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32167"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f2d8d55a11527829fafe09b88c426e2ceb067e", "fields": {"nom_de_la_commune": "LAGARDE HACHAN", "libell_d_acheminement": "LAGARDE HACHAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32177"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805c984a1b98397e25c72577cc6723986afddf78", "fields": {"code_postal": "02700", "code_commune_insee": "02738", "libell_d_acheminement": "TERGNIER", "ligne_5": "VOUEL", "nom_de_la_commune": "TERGNIER", "coordonnees_gps": [49.6402663387, 3.29629531322]}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159b65c84428e946479abb842f3539bbde01b09d", "fields": {"nom_de_la_commune": "SERY LES MEZIERES", "libell_d_acheminement": "SERY LES MEZIERES", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02717"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f84ee6ea2ee7e015ff2f613122ae6b247fe1f5ea", "fields": {"nom_de_la_commune": "TROSLY LOIRE", "libell_d_acheminement": "TROSLY LOIRE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02750"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6a3d933a2a7c010a16819ae666c60592a6c34e", "fields": {"nom_de_la_commune": "SEBONCOURT", "libell_d_acheminement": "SEBONCOURT", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02703"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de797acfb1d8c4f425211338591535a1c9fd006", "fields": {"nom_de_la_commune": "SOMMELANS", "libell_d_acheminement": "SOMMELANS", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02724"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b442caa03f6ee58bf2eac03cac1f5d292f6d6fa2", "fields": {"nom_de_la_commune": "SEQUEHART", "libell_d_acheminement": "SEQUEHART", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02708"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67549e70eaa8221e64d2f3a4f65f486e4b0e843", "fields": {"nom_de_la_commune": "SISSONNE", "libell_d_acheminement": "SISSONNE", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02720"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "defcbf57c9efd33d765e29e1c53aa65734f688af", "fields": {"nom_de_la_commune": "SOUPIR", "libell_d_acheminement": "SOUPIR", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02730"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56705618c054e1557c61a56f28ea2009f322b61", "fields": {"nom_de_la_commune": "SISSY", "libell_d_acheminement": "SISSY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02721"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49d577c799a601bd8b3b461fc694d0be0dd3eb8", "fields": {"nom_de_la_commune": "SOIZE", "libell_d_acheminement": "SOIZE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02723"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e99dd02f439fbffcdf2b881dd2f100670ac6a2", "fields": {"nom_de_la_commune": "VAUX EN VERMANDOIS", "libell_d_acheminement": "VAUX EN VERMANDOIS", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02772"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d951af74f6031b1b18a9a15ec4d12065f6b96b", "fields": {"nom_de_la_commune": "VEUILLY LA POTERIE", "libell_d_acheminement": "VEUILLY LA POTERIE", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02792"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb62076d783fa4aace5c47de99cad08407a4e39", "fields": {"nom_de_la_commune": "LA VALLEE AU BLE", "libell_d_acheminement": "LA VALLEE AU BLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02759"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac41bc0b54d285d0fb40965c0945a0a8ba577d0", "fields": {"nom_de_la_commune": "VIGNEUX HOCQUET", "libell_d_acheminement": "VIGNEUX HOCQUET", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02801"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13d8491d20c5d6ca19685ab0ed7c2521a836f0b", "fields": {"nom_de_la_commune": "VAUXAILLON", "libell_d_acheminement": "VAUXAILLON", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02768"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd1a3a229ba7baae9d406039a21db23b231a3de", "fields": {"nom_de_la_commune": "VAUDESSON", "libell_d_acheminement": "VAUDESSON", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02766"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9ec3ef2335087507c7445a9700ae01e8f71c5f", "fields": {"nom_de_la_commune": "VEZAPONIN", "libell_d_acheminement": "VEZAPONIN", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02793"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831d6a87ce8d68989b9b4889242854ccb8826bb4", "fields": {"nom_de_la_commune": "VILLERET", "libell_d_acheminement": "VILLERET", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02808"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7403c9e167612f0d394b1d31e2b5b5419dd2c01", "fields": {"nom_de_la_commune": "VEZILLY", "libell_d_acheminement": "VEZILLY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02794"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2353d8f540e36006e27f60351bf27519986b49", "fields": {"nom_de_la_commune": "TUPIGNY", "libell_d_acheminement": "TUPIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02753"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e1122883bf731052aef049ce8d212f98a15ced", "fields": {"nom_de_la_commune": "CHATEAU SUR ALLIER", "libell_d_acheminement": "CHATEAU SUR ALLIER", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03064"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e4f74d8ed61f2ccca96b798047fca639e0f1bf", "fields": {"nom_de_la_commune": "BESSAY SUR ALLIER", "libell_d_acheminement": "BESSAY SUR ALLIER", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03025"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a4625baaacd3175a96dae547f0ca1c26b6ff06", "fields": {"nom_de_la_commune": "BROUT VERNET", "libell_d_acheminement": "BROUT VERNET", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03043"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71869279eb963e4faadc3285379e0aa31b93a25c", "fields": {"nom_de_la_commune": "LA CHABANNE", "libell_d_acheminement": "LA CHABANNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03050"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01818a89a71a923d23ba3528223020e166df1064", "fields": {"nom_de_la_commune": "CERILLY", "libell_d_acheminement": "CERILLY", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03048"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec473ac0653708ba4deae0c183b703fae03e520", "fields": {"nom_de_la_commune": "BEZENET", "libell_d_acheminement": "BEZENET", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03027"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256ff22e1e381f07e27944c363d1773592cbe756", "fields": {"nom_de_la_commune": "CESSET", "libell_d_acheminement": "CESSET", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03049"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "022159fa8b220f4bb61114f18d234d1d40fbe105", "fields": {"nom_de_la_commune": "BUSSET", "libell_d_acheminement": "BUSSET", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03045"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85586e22f6012ed1c6a76089d80dcff75b7e8b5", "fields": {"nom_de_la_commune": "BEGUES", "libell_d_acheminement": "BEGUES", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03021"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ee2a431cd097ecf83d828c17c023467d719a72", "fields": {"nom_de_la_commune": "BILLY", "libell_d_acheminement": "BILLY", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03029"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16d3290d9f594e9091d88d19b866e0f6abdafd1d", "fields": {"nom_de_la_commune": "VILLIERS ST DENIS", "libell_d_acheminement": "VILLIERS ST DENIS", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02818"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361f89f309578e75c893b1cb71b9c844dc6ff793", "fields": {"nom_de_la_commune": "BARRAIS BUSSOLLES", "libell_d_acheminement": "BARRAIS BUSSOLLES", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03017"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72f25d3912bfd59cb072ac34171e081383b4b1d", "fields": {"nom_de_la_commune": "AINAY LE CHATEAU", "libell_d_acheminement": "AINAY LE CHATEAU", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03003"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813e8a548091411ee570194edd2eed5bb62e9ae0", "fields": {"nom_de_la_commune": "VILLERS HELON", "libell_d_acheminement": "VILLERS HELON", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02812"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755a218163622266866b8e3bbcc3f59c92c705a8", "fields": {"nom_de_la_commune": "ANDELAROCHE", "libell_d_acheminement": "ANDELAROCHE", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03004"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313f7efc0defb0d3684a13fca52159205d53aa15", "fields": {"nom_de_la_commune": "ARFEUILLES", "libell_d_acheminement": "ARFEUILLES", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03006"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe4a9134af00ff538c86cd01d43e560e7a26576", "fields": {"nom_de_la_commune": "WIEGE FATY", "libell_d_acheminement": "WIEGE FATY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02832"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b4ace1a039e33130fb4f2351dbdd0cdc3b9520", "fields": {"nom_de_la_commune": "VOULPAIX", "libell_d_acheminement": "VOULPAIX", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02826"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b4e1deb468aa913b61d075881d356cb95249eb", "fields": {"nom_de_la_commune": "BEAULON", "libell_d_acheminement": "BEAULON", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03019"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14287736ee4b1d8b080c1a44e6eb29e1e543576b", "fields": {"nom_de_la_commune": "BAYET", "libell_d_acheminement": "BAYET", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03018"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214af4cd96bdff7e0996ddd486f0ab93bbe67a8c", "fields": {"nom_de_la_commune": "ST MARCEL EN MARCILLAT", "libell_d_acheminement": "ST MARCEL EN MARCILLAT", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03244"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d9471b3bc93acd5c5205fc1c0811ad659e6c8c", "fields": {"nom_de_la_commune": "ST PRIEST D ANDELOT", "libell_d_acheminement": "ST PRIEST D ANDELOT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03255"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c01e0c2d1a2495cf1878674285b8c2fad91a43", "fields": {"nom_de_la_commune": "ST GERAND LE PUY", "libell_d_acheminement": "ST GERAND LE PUY", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03235"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64edf54ae22bd0300ae4df97e9f564a278c33fd8", "fields": {"nom_de_la_commune": "ST ANGEL", "libell_d_acheminement": "ST ANGEL", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03217"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914278f645f9be9b89dbda72626107b1aacad282", "fields": {"nom_de_la_commune": "SAZERET", "libell_d_acheminement": "SAZERET", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03270"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6561fd9e39c85d8d60f288038288371f2c4f4b", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03257"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee25cc87d26944705576fe686084cd95368b06c", "fields": {"nom_de_la_commune": "DOMPIERRE SUR BESBRE", "libell_d_acheminement": "DOMPIERRE SUR BESBRE", "code_postal": "03290", "coordonnees_gps": [46.5135121651, 3.68226349341], "code_commune_insee": "03102"}, "geometry": {"type": "Point", "coordinates": [3.68226349341, 46.5135121651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b092bb7806f58f8ce4455af9db8ef2c325b545e5", "fields": {"nom_de_la_commune": "GARNAT SUR ENGIEVRE", "libell_d_acheminement": "GARNAT SUR ENGIEVRE", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03120"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada8289d3c4ea1a02f45672a5e5a3245ac2a86cf", "fields": {"nom_de_la_commune": "DURDAT LAREQUILLE", "libell_d_acheminement": "DURDAT LAREQUILLE", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03106"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c2b1d79c768c357a2bec340ccb195f6100ec7d", "fields": {"nom_de_la_commune": "ISLE ET BARDAIS", "libell_d_acheminement": "ISLE ET BARDAIS", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03130"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b0fae8772ad893d26b9246ef89e95aa1e67895", "fields": {"nom_de_la_commune": "CHATEL MONTAGNE", "libell_d_acheminement": "CHATEL MONTAGNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03066"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2d2cb16098b49f47b3856449321c19d7c0af6c", "fields": {"nom_de_la_commune": "DEUX CHAISES", "libell_d_acheminement": "DEUX CHAISES", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03099"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45198d8a85f3aae1a3c953ad91cdf7a8eec6c32b", "fields": {"nom_de_la_commune": "COGNAT LYONNE", "libell_d_acheminement": "COGNAT LYONNE", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03080"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd2e2dd71cda24d5191ff429e970d1c82f6ba8b", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03081"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ce5e7b8ee988641f6cdeeacc04ac5ff4d6a972", "fields": {"nom_de_la_commune": "LE DONJON", "libell_d_acheminement": "LE DONJON", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03103"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb2c01c1513b61713e3a4f1448830a8bf1a7282", "fields": {"nom_de_la_commune": "GANNAT", "libell_d_acheminement": "GANNAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03118"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6f1919caa097a4f350c4c51a1533524c8b078b", "fields": {"nom_de_la_commune": "JALIGNY SUR BESBRE", "libell_d_acheminement": "JALIGNY SUR BESBRE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03132"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072fb6c7624844c3f4a5c92ca06efda17d323862", "fields": {"nom_de_la_commune": "LAPALISSE", "libell_d_acheminement": "LAPALISSE", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03138"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e078c52a332ddf9409b4b7dfe151d9c5eb09b76", "fields": {"nom_de_la_commune": "ISSERPENT", "libell_d_acheminement": "ISSERPENT", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03131"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3722e010018a03dbd31b6329e6826b22fc46386", "fields": {"nom_de_la_commune": "LAVOINE", "libell_d_acheminement": "LAVOINE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03141"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c34ce3708565d2f0509a4b4f30ad36afe6723a", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03162"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8de2f6e9b16c162116f9e51b4fed773ec08b972", "fields": {"nom_de_la_commune": "LIMOISE", "libell_d_acheminement": "LIMOISE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03146"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1c6892760f999716b5067148947d166544b4ab", "fields": {"nom_de_la_commune": "LAMAIDS", "libell_d_acheminement": "LAMAIDS", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03136"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13994063fc28ff5ef959fcf962951fb8572b2eef", "fields": {"nom_de_la_commune": "JENZAT", "libell_d_acheminement": "JENZAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03133"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e2e80b397c2295ddeb3c7bc9b0b0dbb61da46e", "fields": {"nom_de_la_commune": "LODDES", "libell_d_acheminement": "LODDES", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03147"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15f9081aee562c4ed5de77da5787a7a05201d1c3", "fields": {"nom_de_la_commune": "MAGNET", "libell_d_acheminement": "MAGNET", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03157"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82602cfbd4e8a900b6b16e281b9ab0349c690fc8", "fields": {"code_postal": "03430", "code_commune_insee": "03315", "libell_d_acheminement": "VILLEFRANCHE D ALLIER", "ligne_5": "NEUVILLE", "nom_de_la_commune": "VILLEFRANCHE D ALLIER", "coordonnees_gps": [46.4484596667, 2.84631497595]}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b070ad7ddc35665db1f8f0adea8887fafd5eb176", "fields": {"nom_de_la_commune": "LE VEURDRE", "libell_d_acheminement": "LE VEURDRE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03309"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9b6bd4c51dd1b7cea9c51933f9f4690fc0a32d", "fields": {"nom_de_la_commune": "SOUVIGNY", "libell_d_acheminement": "SOUVIGNY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03275"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a955be51acb7ee4059646b6fa11c1b993f8de35", "fields": {"nom_de_la_commune": "BEAUJEU", "libell_d_acheminement": "BEAUJEU", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04024"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0635629cad2c5257fd44d2d08341d2603c05430", "fields": {"nom_de_la_commune": "ANGLES", "libell_d_acheminement": "ANGLES", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04007"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89f468ee01b098344c13c20a3d8019da25b2c4d", "fields": {"nom_de_la_commune": "MONTESQUIEU LAURAGAIS", "libell_d_acheminement": "MONTESQUIEU LAURAGAIS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31374"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc0da7a071749b01f84cc20420f1cf9181856640", "fields": {"nom_de_la_commune": "MONTGAILLARD DE SALIES", "libell_d_acheminement": "MONTGAILLARD DE SALIES", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31376"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626b8dc4f8f60929261df230d8a4cd8e0c871c97", "fields": {"nom_de_la_commune": "MONTGISCARD", "libell_d_acheminement": "MONTGISCARD", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31381"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e5ca170eebe1f0dfef4b6a1b54c3b516299420", "fields": {"nom_de_la_commune": "MONTGRAS", "libell_d_acheminement": "MONTGRAS", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31382"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38449b961eb65d01da3d988939aa58d4b6216ea2", "fields": {"nom_de_la_commune": "MONTMAURIN", "libell_d_acheminement": "MONTMAURIN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31385"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aaaab9694f990c8cf35ab0041a799583b01abd1", "fields": {"nom_de_la_commune": "MONTPITOL", "libell_d_acheminement": "MONTPITOL", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31388"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3101b378ca0badefef5ab77c6c8b74a1eb258875", "fields": {"nom_de_la_commune": "MOURVILLES BASSES", "libell_d_acheminement": "MOURVILLES BASSES", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31392"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a5269f458a7229cca80c6c08e5b185acada7cc", "fields": {"nom_de_la_commune": "PAYSSOUS", "libell_d_acheminement": "PAYSSOUS", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31408"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a789646cada03386a83bd20ac5f4a9461578ea", "fields": {"nom_de_la_commune": "PEGUILHAN", "libell_d_acheminement": "PEGUILHAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31412"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf42422bbdd55135987e361a114e3167f4b9701", "fields": {"nom_de_la_commune": "PIBRAC", "libell_d_acheminement": "PIBRAC", "code_postal": "31820", "coordonnees_gps": [43.6275845417, 1.26125738954], "code_commune_insee": "31417"}, "geometry": {"type": "Point", "coordinates": [1.26125738954, 43.6275845417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63104bf64088d2c67ef7be31af1d7cb468d001ea", "fields": {"nom_de_la_commune": "PLAISANCE DU TOUCH", "libell_d_acheminement": "PLAISANCE DU TOUCH", "code_postal": "31830", "coordonnees_gps": [43.5572059678, 1.28546523259], "code_commune_insee": "31424"}, "geometry": {"type": "Point", "coordinates": [1.28546523259, 43.5572059678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7928e9ac2e19503a379a063455a7d1ae74702f3", "fields": {"nom_de_la_commune": "POLASTRON", "libell_d_acheminement": "POLASTRON", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31428"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fde97c6a2e962b87aa05bc778e85eb3624f9805", "fields": {"nom_de_la_commune": "PORTET SUR GARONNE", "libell_d_acheminement": "PORTET SUR GARONNE", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31433"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0e3d980dc340d19bd737553ceb0cbee1b44c98", "fields": {"nom_de_la_commune": "POUCHARRAMET", "libell_d_acheminement": "POUCHARRAMET", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31435"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83dd649f681c87fcdf8a05fc30d9718fa9497c7f", "fields": {"nom_de_la_commune": "QUINT FONSEGRIVES", "libell_d_acheminement": "QUINT FONSEGRIVES", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31445"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2d3fc542b3d9f878165ad27ad1b422c6eeaba0", "fields": {"nom_de_la_commune": "REGADES", "libell_d_acheminement": "REGADES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31449"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80f8d83984424a1fb77f910f7d90d65ad7ba53c8", "fields": {"code_postal": "31250", "code_commune_insee": "31451", "libell_d_acheminement": "REVEL", "ligne_5": "ST FERREOL LE LAC", "nom_de_la_commune": "REVEL", "coordonnees_gps": [43.4555954942, 1.99785019175]}, "geometry": {"type": "Point", "coordinates": [1.99785019175, 43.4555954942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0273e5ef6fd777bf62e6a8670cab97abfe4a6895", "fields": {"nom_de_la_commune": "RIEUX VOLVESTRE", "libell_d_acheminement": "RIEUX VOLVESTRE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31455"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8488d3a360f32aa99fec63bf1339bb17eec180", "fields": {"nom_de_la_commune": "ROQUEFORT SUR GARONNE", "libell_d_acheminement": "ROQUEFORT SUR GARONNE", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31457"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee7afcf384dce11a22a2f684543edaba9097d76", "fields": {"nom_de_la_commune": "SACCOURVIELLE", "libell_d_acheminement": "SACCOURVIELLE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31465"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55da47d3e1bdb4a03e1d72b83964238e356f31f", "fields": {"nom_de_la_commune": "SAIGUEDE", "libell_d_acheminement": "SAIGUEDE", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31466"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd67b50992d23c45075f836db78b00632836bcf", "fields": {"nom_de_la_commune": "ST FELIX LAURAGAIS", "libell_d_acheminement": "ST FELIX LAURAGAIS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31478"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cb3b04cee05425527f6aa3ec1aaa40f4fbbf96", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31485"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c04ffae2991ab26c40fde7eaa7131c25d03a53", "fields": {"nom_de_la_commune": "STE LIVRADE", "libell_d_acheminement": "STE LIVRADE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31496"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30bffc2ff2e37ef7b541420144698760e4837baf", "fields": {"nom_de_la_commune": "ST MAMET", "libell_d_acheminement": "ST MAMET", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31500"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b464d39a134e0a7e02530254418e81050132b4ab", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31505"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd5ff6eda9ce842752ad4a7e3ad67561e9feb57", "fields": {"nom_de_la_commune": "ST PAUL SUR SAVE", "libell_d_acheminement": "ST PAUL SUR SAVE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31507"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f109da6fdbebc209a8c8ba3f50125b34fc5bafb1", "fields": {"nom_de_la_commune": "ST PE D ARDET", "libell_d_acheminement": "ST PE D ARDET", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31509"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7d803cc38353b5450ca3aa5093b75f41d6eaf8", "fields": {"nom_de_la_commune": "ST PLANCARD", "libell_d_acheminement": "ST PLANCARD", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31513"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1011dffc420bec75b513a78226ae71181f418e", "fields": {"nom_de_la_commune": "ST SULPICE SUR LEZE", "libell_d_acheminement": "ST SULPICE SUR LEZE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31517"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ce2f30f09e58cb07d61cb56a24001cb81df5543", "fields": {"nom_de_la_commune": "SALLES ET PRATVIEL", "libell_d_acheminement": "SALLES ET PRATVIEL", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31524"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e2ed3ab3b94e104a66ff05929b28657a28e5ea", "fields": {"nom_de_la_commune": "SALLES SUR GARONNE", "libell_d_acheminement": "SALLES SUR GARONNE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31525"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236954c3fab823e058edfee86cbc6f32e04203a5", "fields": {"nom_de_la_commune": "LA SALVETAT ST GILLES", "libell_d_acheminement": "LA SALVETAT ST GILLES", "code_postal": "31880", "coordonnees_gps": [43.5755374805, 1.26672821688], "code_commune_insee": "31526"}, "geometry": {"type": "Point", "coordinates": [1.26672821688, 43.5755374805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e0e95f2ef2e764277a973d0750d160bcd56f91", "fields": {"nom_de_la_commune": "SANA", "libell_d_acheminement": "SANA", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31530"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d232abf4c6b04b19f8e118280deef51783e44b33", "fields": {"nom_de_la_commune": "SAUX ET POMAREDE", "libell_d_acheminement": "SAUX ET POMAREDE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31536"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f91a8eb9fdc3f820dfa53e6b600f9440e6e1d4", "fields": {"nom_de_la_commune": "SEDEILHAC", "libell_d_acheminement": "SEDEILHAC", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31539"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb59872c4c626c6ef48323f923dfb2fa8ed3173", "fields": {"nom_de_la_commune": "SEGREVILLE", "libell_d_acheminement": "SEGREVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31540"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8fa8bd5bfe37b024df709805205d8ff4838c27e", "fields": {"nom_de_la_commune": "SENGOUAGNET", "libell_d_acheminement": "SENGOUAGNET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31544"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad2c0fb95b90d223d3c1f6080f07670c7318f4b4", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31200", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba37e3b163273fb06047f9f2c869833e342d35e4", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31400", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b600183fb970213ae79b1583f0eed72a73f7c5f7", "fields": {"nom_de_la_commune": "TOURNEFEUILLE", "libell_d_acheminement": "TOURNEFEUILLE", "code_postal": "31170", "coordonnees_gps": [43.5783807869, 1.33491274731], "code_commune_insee": "31557"}, "geometry": {"type": "Point", "coordinates": [1.33491274731, 43.5783807869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345e2df3fe67442cf1c8dd8cb6cc8731dc1debe4", "fields": {"nom_de_la_commune": "TREBONS DE LUCHON", "libell_d_acheminement": "TREBONS DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31559"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f659c059e021993db4c6aeeb233b2bc8c397f88", "fields": {"nom_de_la_commune": "TREBONS SUR LA GRASSE", "libell_d_acheminement": "TREBONS SUR LA GRASSE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31560"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2ea189398845f1e595a899985a1a9f586a9be0", "fields": {"nom_de_la_commune": "VALCABRERE", "libell_d_acheminement": "VALCABRERE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31564"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386927d8339bf6170bcd7bc18b2b8884f8ff8896", "fields": {"nom_de_la_commune": "VALENTINE", "libell_d_acheminement": "VALENTINE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31565"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56444b395bc0b4a76d32846a234d27e89ad2267d", "fields": {"nom_de_la_commune": "VERFEIL", "libell_d_acheminement": "VERFEIL", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31573"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb87e1fd58cfe89079272afab76571d2c5a10900", "fields": {"nom_de_la_commune": "VIEILLE TOULOUSE", "libell_d_acheminement": "VIEILLE TOULOUSE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31575"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76162b19f3cbf37a5a9c0e6cbd626e5c0beaff86", "fields": {"nom_de_la_commune": "VILLATE", "libell_d_acheminement": "VILLATE", "code_postal": "31860", "coordonnees_gps": [43.4654456121, 1.39604999042], "code_commune_insee": "31580"}, "geometry": {"type": "Point", "coordinates": [1.39604999042, 43.4654456121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1906ef54df0dea170b09e216d22c45c7662ea1f", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE LAURAGAIS", "libell_d_acheminement": "VILLEFRANCHE DE LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31582"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0771fab6bdf96622ef2cbe92fce4142af7f33f4", "fields": {"nom_de_la_commune": "VILLEMUR SUR TARN", "libell_d_acheminement": "VILLEMUR SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31584"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07de1b06e1e67ee5588bddd2ddc1c5e2bd97b11a", "fields": {"nom_de_la_commune": "VILLENEUVE DE RIVIERE", "libell_d_acheminement": "VILLENEUVE DE RIVIERE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31585"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce521414b988504210369b90e244bc659a5d2de", "fields": {"nom_de_la_commune": "VILLENEUVE LECUSSAN", "libell_d_acheminement": "VILLENEUVE LECUSSAN", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31586"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2071f0235685ed83bda9219ec48d79cf74a2010", "fields": {"nom_de_la_commune": "BINOS", "libell_d_acheminement": "BINOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31590"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89ff8808a96034534e27ead7b46555aec5a5e517", "fields": {"nom_de_la_commune": "AURENSAN", "libell_d_acheminement": "AURENSAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32017"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a04bf11f240bbc0c1685b0dc9e1912df33d6ba2", "fields": {"nom_de_la_commune": "AYZIEU", "libell_d_acheminement": "AYZIEU", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32025"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7717cca7732db27b64b337d67f3fb9001e716c0e", "fields": {"nom_de_la_commune": "BERAUT", "libell_d_acheminement": "BERAUT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32044"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c163d9b05b4c88f19862127d8cacbb85d447ae5c", "fields": {"nom_de_la_commune": "BETOUS", "libell_d_acheminement": "BETOUS", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32049"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3eea974ffee7e2a60faa5ce386277ff89c8a954", "fields": {"nom_de_la_commune": "BIVES", "libell_d_acheminement": "BIVES", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32055"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e7fd77683eaace0fc65deb7364b856ed894669", "fields": {"nom_de_la_commune": "BLAZIERT", "libell_d_acheminement": "BLAZIERT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32057"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d66e891477120dacd619a47b5adac82bd07abc", "fields": {"nom_de_la_commune": "CABAS LOUMASSES", "libell_d_acheminement": "CABAS LOUMASSES", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32067"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50399ffc9724be9818286be7ff86787a339ea63", "fields": {"nom_de_la_commune": "CALLIAN", "libell_d_acheminement": "CALLIAN", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32072"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4ad22f23041577dea7078db995e88a650245d6", "fields": {"nom_de_la_commune": "CAMPAGNE D ARMAGNAC", "libell_d_acheminement": "CAMPAGNE D ARMAGNAC", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32073"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad825820cae639d9ad2707341a64aadaaa37e53", "fields": {"nom_de_la_commune": "CASTELNAU BARBARENS", "libell_d_acheminement": "CASTELNAU BARBARENS", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32076"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58ac4ad6a61701fb75db2f19292a07aa1b0ebc6", "fields": {"nom_de_la_commune": "CASTILLON MASSAS", "libell_d_acheminement": "CASTILLON MASSAS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32089"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c36a598a9e267058ebc0d8f1c51cb58f17c2ba", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32093"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4e8f46e9086bccb78ded4c2763ffc451ffa9910", "fields": {"nom_de_la_commune": "CAZAUBON", "libell_d_acheminement": "CAZAUBON", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32096"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4775eff9f8ee607cbb7c58cfe08a8861cda578e0", "fields": {"nom_de_la_commune": "CHELAN", "libell_d_acheminement": "CHELAN", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32103"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5386d26f3c68c728eabbaa9a68528e926e5016f3", "fields": {"nom_de_la_commune": "COLOGNE", "libell_d_acheminement": "COLOGNE", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32106"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9ce7958759395cdde3b6e6013f6be0d3ba242d", "fields": {"nom_de_la_commune": "ESPAON", "libell_d_acheminement": "ESPAON", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32124"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637f18f8add7f544375e6e24cd81c2db189a714c", "fields": {"nom_de_la_commune": "FREGOUVILLE", "libell_d_acheminement": "FREGOUVILLE", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32134"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b8582658fbed3b1bd3838e2c3d86246eaba982", "fields": {"nom_de_la_commune": "FUSTEROUAU", "libell_d_acheminement": "FUSTEROUAU", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32135"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24add2a6b34cbbdd86e8b48c57d66c93265a74e", "fields": {"nom_de_la_commune": "GAZAX ET BACCARISSE", "libell_d_acheminement": "GAZAX ET BACCARISSE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32144"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7add67a85f405581bd57109fc4348c86d97620", "fields": {"nom_de_la_commune": "IDRAC RESPAILLES", "libell_d_acheminement": "IDRAC RESPAILLES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32156"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726e0be8732949e58edcaa0b731a231c3f94d8a8", "fields": {"nom_de_la_commune": "L ISLE ARNE", "libell_d_acheminement": "L ISLE ARNE", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32157"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712a2f6d157512f0f5eb3afa1482a3c732b01e3e", "fields": {"nom_de_la_commune": "JUILLES", "libell_d_acheminement": "JUILLES", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32165"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4550422004b0aa4bea070201832e37d8688b781f", "fields": {"nom_de_la_commune": "LABARTHE", "libell_d_acheminement": "LABARTHE", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32169"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79118a7e77adf24a38ae89f0d93418fe5a9af80", "fields": {"nom_de_la_commune": "LABARTHETE", "libell_d_acheminement": "LABARTHETE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32170"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "306ed240843d70de16e7cba722cbc9eb54f1e3c3", "fields": {"nom_de_la_commune": "LABASTIDE SAVES", "libell_d_acheminement": "LABASTIDE SAVES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32171"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9b19e693ec778a5e948f2a1f3c6abaed0711c0", "fields": {"nom_de_la_commune": "LAGRAULET DU GERS", "libell_d_acheminement": "LAGRAULET DU GERS", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32180"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d85c8f360b166f317d2c740c7e75798a355194", "fields": {"nom_de_la_commune": "LAMAGUERE", "libell_d_acheminement": "LAMAGUERE", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32186"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e221392dc87261d7b64467c3f79b5866a12412c6", "fields": {"nom_de_la_commune": "LAMAZERE", "libell_d_acheminement": "LAMAZERE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32187"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e60473eb300401527dcd97f2079bf17382549a", "fields": {"nom_de_la_commune": "LANNEPAX", "libell_d_acheminement": "LANNEPAX", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32190"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135828348dddc3879143af5d9ced79e949ab7233", "fields": {"nom_de_la_commune": "LARROQUE SUR L OSSE", "libell_d_acheminement": "LARROQUE SUR L OSSE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32197"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8362b9bdf478af2cc058904c10dca198e18349d7", "fields": {"nom_de_la_commune": "LASSEUBE PROPRE", "libell_d_acheminement": "LASSEUBE PROPRE", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32201"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074d28971ad7fcb1f90e3c8d96a66fd41f374dba", "fields": {"nom_de_la_commune": "LAURAET", "libell_d_acheminement": "LAURAET", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32203"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fec9dc578fcbc11ae4b75a9bd34c45c60fb8ae7", "fields": {"nom_de_la_commune": "LAYMONT", "libell_d_acheminement": "LAYMONT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32206"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671490c088e7d7d85a8bd8c03993af443dadff49", "fields": {"nom_de_la_commune": "LOMBEZ", "libell_d_acheminement": "LOMBEZ", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32213"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab966af49daa30e2739911be4031893a14fdf5a2", "fields": {"nom_de_la_commune": "LOUBEDAT", "libell_d_acheminement": "LOUBEDAT", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32214"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726e335bbe6fed74653d830aec1a7827d79dac79", "fields": {"nom_de_la_commune": "LUPPE VIOLLES", "libell_d_acheminement": "LUPPE VIOLLES", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32220"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71ff2b3c3665fbc578297fff83453eb988d3b45", "fields": {"nom_de_la_commune": "MANCIET", "libell_d_acheminement": "MANCIET", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32227"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a0694423d8c9f6bdc4d8544f763689747a29e6", "fields": {"nom_de_la_commune": "MARAVAT", "libell_d_acheminement": "MARAVAT", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32232"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df794f8a31da1412cd330b244d59b71c500b6d76", "fields": {"nom_de_la_commune": "MARCIAC", "libell_d_acheminement": "MARCIAC", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32233"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7bb644fa1f5b4b003b6cc5bade7ac51109e090", "fields": {"nom_de_la_commune": "MAULEON D ARMAGNAC", "libell_d_acheminement": "MAULEON D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32243"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f27c96dd8c3f1ec3f18a8d3341aef15a6f4a9d", "fields": {"nom_de_la_commune": "MAULICHERES", "libell_d_acheminement": "MAULICHERES", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32244"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7813a8fb9a29d2e21f6bd6252430a5c5cecff59c", "fields": {"nom_de_la_commune": "MAURENS", "libell_d_acheminement": "MAURENS", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32247"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d473138081298bedae3848abbfb672ba420e4c61", "fields": {"nom_de_la_commune": "MEILHAN", "libell_d_acheminement": "MEILHAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32250"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed00b2ee27241232497eec82e738d475580c59d", "fields": {"nom_de_la_commune": "MIELAN", "libell_d_acheminement": "MIELAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32252"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f33517075c062ea97d2077081ba9cdba1f73b48", "fields": {"nom_de_la_commune": "MIRADOUX", "libell_d_acheminement": "MIRADOUX", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32253"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52c42db12c66ff069e3b050555c6ab3fd6be51d", "fields": {"nom_de_la_commune": "MIREPOIX", "libell_d_acheminement": "MIREPOIX", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32258"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2d8b7fa94425c28282bf63430eb49ba23a8195", "fields": {"nom_de_la_commune": "MONFERRAN PLAVES", "libell_d_acheminement": "MONFERRAN PLAVES", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32267"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b357f7c36c41af244e87ef8a5f7214e3aaa7714", "fields": {"nom_de_la_commune": "CHAUX NEUVE", "libell_d_acheminement": "CHAUX NEUVE", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25142"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb162b3f6a52d883fddf1f5f9383593ad86a0e4d", "fields": {"nom_de_la_commune": "CHEVIGNEY LES VERCEL", "libell_d_acheminement": "CHEVIGNEY LES VERCEL", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25151"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2314faf178292509774d69686e2966dfdabc131d", "fields": {"nom_de_la_commune": "CLERON", "libell_d_acheminement": "CLERON", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25155"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a58fa36338c5118ede5feea278cedf8f95536d0", "fields": {"nom_de_la_commune": "LES COMBES", "libell_d_acheminement": "LES COMBES", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25160"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a2b80e541c307672395cfaa7bf7ec475f012f51", "fields": {"nom_de_la_commune": "COURCELLES LES MONTBELIARD", "libell_d_acheminement": "COURCELLES LES MONTBELIARD", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25170"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66227844b44c5f8d57bca7f3292a9a85e6dd4cd", "fields": {"nom_de_la_commune": "CUBRIAL", "libell_d_acheminement": "CUBRIAL", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25181"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9594f1679f79db97676c5498772b08ef843932", "fields": {"nom_de_la_commune": "CUSANCE", "libell_d_acheminement": "CUSANCE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25183"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02c7261bcbe102ca10772125ebe29c4ff0d6e81", "fields": {"nom_de_la_commune": "DAMPIERRE SUR LE DOUBS", "libell_d_acheminement": "DAMPIERRE SUR LE DOUBS", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25191"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31fb6316d0cce657e0b25f71b0fee4cc4cbb46b3", "fields": {"nom_de_la_commune": "DAMPRICHARD", "libell_d_acheminement": "DAMPRICHARD", "code_postal": "25450", "coordonnees_gps": [47.2381821584, 6.87306416563], "code_commune_insee": "25193"}, "geometry": {"type": "Point", "coordinates": [6.87306416563, 47.2381821584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebcaf0c67531e946587c9b2f368f1a18894e3579", "fields": {"nom_de_la_commune": "DANNEMARIE SUR CRETE", "libell_d_acheminement": "DANNEMARIE SUR CRETE", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25195"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e568cdb11e6a5c868ec214142e85600c6cf5c3", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25201"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c706f66fa8a09b945090af73ec3b2c04b2521fe9", "fields": {"code_postal": "25480", "code_commune_insee": "25212", "libell_d_acheminement": "ECOLE VALENTIN", "ligne_5": "VALENTIN", "nom_de_la_commune": "ECOLE VALENTIN", "coordonnees_gps": [47.2739749265, 5.97316360482]}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f1bd6a15b05ed0059e48f74c71857d4d31ba00", "fields": {"nom_de_la_commune": "EPEUGNEY", "libell_d_acheminement": "EPEUGNEY", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25220"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c99b175f47f4af26bf16caf3df61ec2d24e6726", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "REFRANCHE", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25498bd37c48cfba9fa974aa539dfc9927451a4e", "fields": {"nom_de_la_commune": "ETRAY", "libell_d_acheminement": "ETRAY", "code_postal": "25800", "coordonnees_gps": [47.1494559066, 6.34818353393], "code_commune_insee": "25227"}, "geometry": {"type": "Point", "coordinates": [6.34818353393, 47.1494559066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2963ac8e1d8b924b3a46d4cd7d917256ff90407f", "fields": {"nom_de_la_commune": "ETUPES", "libell_d_acheminement": "ETUPES", "code_postal": "25460", "coordonnees_gps": [47.5060179119, 6.87413361478], "code_commune_insee": "25228"}, "geometry": {"type": "Point", "coordinates": [6.87413361478, 47.5060179119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60f3dc6d2e5a405440da517e4fbc416d7b9e6d1", "fields": {"nom_de_la_commune": "EYSSON", "libell_d_acheminement": "EYSSON", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25231"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421f1ce15dcee69cf24f1cab81024e2240e42d48", "fields": {"nom_de_la_commune": "FLEUREY", "libell_d_acheminement": "FLEUREY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25244"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167045b4d1b38e84d5be4dccb0960e51badcf356", "fields": {"nom_de_la_commune": "FONTENOTTE", "libell_d_acheminement": "FONTENOTTE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25249"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c80be9371651f16139757ae6b7b949c831a3d60", "fields": {"nom_de_la_commune": "FOURBANNE", "libell_d_acheminement": "FOURBANNE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25251"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f37bd24d0208c30a4374e8fbcfdfd9f60d0f2b", "fields": {"nom_de_la_commune": "FRANOIS", "libell_d_acheminement": "FRANOIS", "code_postal": "25770", "coordonnees_gps": [47.2322891241, 5.91617733766], "code_commune_insee": "25258"}, "geometry": {"type": "Point", "coordinates": [5.91617733766, 47.2322891241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3dd03e3e5a3f2b31cae097274188a2f3765581", "fields": {"nom_de_la_commune": "GENEY", "libell_d_acheminement": "GENEY", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25266"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2672bcca00c88e81b05ec060c21fd20bce63b1e", "fields": {"nom_de_la_commune": "GEVRESIN", "libell_d_acheminement": "GEVRESIN", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25270"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857eeb0c78ac190e10e776efabab7399de30cd81", "fields": {"nom_de_la_commune": "GLAMONDANS", "libell_d_acheminement": "GLAMONDANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25273"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b39b9dcee4c734df2bfcf593dce258b10d80a98", "fields": {"code_postal": "25190", "code_commune_insee": "25275", "libell_d_acheminement": "GLERE", "ligne_5": "MONTURSIN", "nom_de_la_commune": "GLERE", "coordonnees_gps": [47.3299526188, 6.81205544169]}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648252eb1c9fc4afacccf0cf71b9fd32d8a5f954", "fields": {"code_postal": "25190", "code_commune_insee": "25275", "libell_d_acheminement": "GLERE", "ligne_5": "VERNOIS LE FOL", "nom_de_la_commune": "GLERE", "coordonnees_gps": [47.3299526188, 6.81205544169]}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fcbb6fdb25cae3a3b8d9b30a51f7483fc644a76", "fields": {"nom_de_la_commune": "GONDENANS LES MOULINS", "libell_d_acheminement": "GONDENANS LES MOULINS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25277"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15ef8c42d0682824bbf69cfb37ea74d9f3d17f6", "fields": {"nom_de_la_commune": "GRAND CHARMONT", "libell_d_acheminement": "GRAND CHARMONT", "code_postal": "25200", "coordonnees_gps": [47.5248285421, 6.80015635102], "code_commune_insee": "25284"}, "geometry": {"type": "Point", "coordinates": [6.80015635102, 47.5248285421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b72de8ffb8bebf131d4a54f7aa282e0c64a099e", "fields": {"nom_de_la_commune": "FOURNETS LUISANS", "libell_d_acheminement": "FOURNETS LUISANS", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25288"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7429224e384574d9cb890218649f38e23aa16242", "fields": {"nom_de_la_commune": "LES GRANGETTES", "libell_d_acheminement": "LES GRANGETTES", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25295"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3158eb2e05de133e3245952c72028e461e0940d", "fields": {"nom_de_la_commune": "GROSBOIS", "libell_d_acheminement": "GROSBOIS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25298"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3704137fc5a2ee78ed1c86fd86876764893f6c11", "fields": {"code_postal": "25110", "code_commune_insee": "25313", "libell_d_acheminement": "HYEVRE PAROISSE", "ligne_5": "BOIS LA VILLE", "nom_de_la_commune": "HYEVRE PAROISSE", "coordonnees_gps": [47.3533733684, 6.36786795727]}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de012bed582a46435c9a1cf780ab10f46af06ba", "fields": {"nom_de_la_commune": "L ISLE SUR LE DOUBS", "libell_d_acheminement": "L ISLE SUR LE DOUBS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25315"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36cb9b924db83581024ee88257cd484ab6c7237c", "fields": {"nom_de_la_commune": "JALLERANGE", "libell_d_acheminement": "JALLERANGE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25317"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d6764b52cb2baba004c021f827e9bdda5892cb", "fields": {"nom_de_la_commune": "VILLERS LE LAC", "libell_d_acheminement": "VILLERS LE LAC", "code_postal": "25130", "coordonnees_gps": [47.0705828779, 6.68960233049], "code_commune_insee": "25321"}, "geometry": {"type": "Point", "coordinates": [6.68960233049, 47.0705828779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08da2de7f19791e67bf41e386ca5153f3fecd5e0", "fields": {"nom_de_la_commune": "LANDRESSE", "libell_d_acheminement": "LANDRESSE", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25325"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148c119189723efe955dee26e914ee60ebe8525d", "fields": {"nom_de_la_commune": "LARNOD", "libell_d_acheminement": "LARNOD", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25328"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd66da79bf5d12b96bf82754b73f770f643c2156", "fields": {"nom_de_la_commune": "LIZINE", "libell_d_acheminement": "LIZINE", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25338"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb72b6a77a3d8f9a5f66ebcd186ae18c065ebc1", "fields": {"nom_de_la_commune": "LOMONT SUR CRETE", "libell_d_acheminement": "LOMONT SUR CRETE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25341"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48eaa25668dbd49f0b480475f5e0fb23c33b0048", "fields": {"nom_de_la_commune": "LONGECHAUX", "libell_d_acheminement": "LONGECHAUX", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25342"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d909575132913bedff77042cdc9d2d52308ce23f", "fields": {"nom_de_la_commune": "LONGEVILLES MONT D OR", "libell_d_acheminement": "LONGEVILLES MONT D OR", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25348"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec14bee7a895f0f2adb1d308f0efb6786adbd9a", "fields": {"nom_de_la_commune": "MALANS", "libell_d_acheminement": "MALANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25359"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3a3067406c235e9d3954d49150be3fc1769f29", "fields": {"code_postal": "25410", "code_commune_insee": "25374", "libell_d_acheminement": "MERCEY LE GRAND", "ligne_5": "COTTIER", "nom_de_la_commune": "MERCEY LE GRAND", "coordonnees_gps": [47.1860285519, 5.82335931135]}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c0147140bf3ec5fe9ec43360d131efed292cebf", "fields": {"nom_de_la_commune": "MONCEY", "libell_d_acheminement": "MONCEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25382"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce866c57a1e5dbae603fa272bc62fc26da68d96b", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25395"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24dbd55fb6f058ef12432e0bedc9960b64a3a9b4", "fields": {"nom_de_la_commune": "MONTFERRAND LE CHATEAU", "libell_d_acheminement": "MONTFERRAND LE CHATEAU", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25397"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364df1cdb81b3cbbb646b46b07973e8704195781", "fields": {"nom_de_la_commune": "MONTFLOVIN", "libell_d_acheminement": "MONTFLOVIN", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25398"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7253fdcc0f224d340dc2728c504ea053fc1e6c3c", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25399"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7adc76f4dc71f7ddc5959360c814053fe8ccdb81", "fields": {"nom_de_la_commune": "MONTIVERNAGE", "libell_d_acheminement": "MONTIVERNAGE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25401"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b894c1d8b99e2dc5d57c73efe2eca5976ef22051", "fields": {"nom_de_la_commune": "MORRE", "libell_d_acheminement": "MORRE", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25410"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ab40ebd036e45092d41a519406d19dbdf38ebe", "fields": {"nom_de_la_commune": "NANS", "libell_d_acheminement": "NANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25419"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4485000890c4cfe066af0da3f7e43af90a92e7", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "NODS", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55fd45ed413f440f100a82e04d09248239f4c69", "fields": {"nom_de_la_commune": "ORCHAMPS VENNES", "libell_d_acheminement": "ORCHAMPS VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25432"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d809666c237f2bcee9f2692a6764e8020709507", "fields": {"code_postal": "25120", "code_commune_insee": "25433", "libell_d_acheminement": "ORGEANS BLANCHEFONTAINE", "ligne_5": "BLANCHEFONTAINE", "nom_de_la_commune": "ORGEANS BLANCHEFONTAINE", "coordonnees_gps": [47.2517789005, 6.78722407898]}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e264a64ad3f82aa9eec2c5146afaa7e4f7d0383", "fields": {"nom_de_la_commune": "ORNANS", "libell_d_acheminement": "ORNANS", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25434"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c6062a919f3dbc3e415723fef147707082af32", "fields": {"nom_de_la_commune": "OSSE", "libell_d_acheminement": "OSSE", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25437"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89987270970887c279ac1a81a88eee86701e324", "fields": {"nom_de_la_commune": "OUHANS", "libell_d_acheminement": "OUHANS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25440"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f26192a1db7f6715f92fe351a24c4eb864e6c303", "fields": {"nom_de_la_commune": "PASSONFONTAINE", "libell_d_acheminement": "PASSONFONTAINE", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25447"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5a1f1a083b49aa2f6c7f1d2db76744ba7260f3", "fields": {"nom_de_la_commune": "PESSANS", "libell_d_acheminement": "PESSANS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25450"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd9e7545c8d522570b5bd95fe9a45c4b723d25f", "fields": {"nom_de_la_commune": "PIREY", "libell_d_acheminement": "PIREY", "code_postal": "25480", "coordonnees_gps": [47.2739749265, 5.97316360482], "code_commune_insee": "25454"}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25d33964c92c3b0488e524149d99534f997a2f1", "fields": {"nom_de_la_commune": "PLAIMBOIS DU MIROIR", "libell_d_acheminement": "PLAIMBOIS DU MIROIR", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25456"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2d507899a00af07458e1f46aa67691ea4fc336", "fields": {"nom_de_la_commune": "LES PLAINS ET GRANDS ESSARTS", "libell_d_acheminement": "LES PLAINS ET GRANDS ESSARTS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25458"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783d17b6312d4cc4ee23f5b8c88e1975088eb290", "fields": {"code_postal": "25640", "code_commune_insee": "25468", "libell_d_acheminement": "POULIGNEY LUSANS", "ligne_5": "LUSANS", "nom_de_la_commune": "POULIGNEY LUSANS", "coordonnees_gps": [47.3580396548, 6.210623361]}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5e44efe4b79df3741456ffb3726485d2922291", "fields": {"nom_de_la_commune": "PUESSANS", "libell_d_acheminement": "PUESSANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25472"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4bba983a2626e85ebdde9f2921516abdb22d52", "fields": {"nom_de_la_commune": "PUGEY", "libell_d_acheminement": "PUGEY", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25473"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2b1361e841a78b51ae4b036c61ef1b5fbf3b85", "fields": {"nom_de_la_commune": "QUINGEY", "libell_d_acheminement": "QUINGEY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25475"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc6156668fd0e976e819197166645d1199e080c", "fields": {"nom_de_la_commune": "RANDEVILLERS", "libell_d_acheminement": "RANDEVILLERS", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25478"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beebe63f1cfb9612bb9c6babba2963554e30971c", "fields": {"nom_de_la_commune": "RAYNANS", "libell_d_acheminement": "RAYNANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25481"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ee5e99a4b55ad23712a4bbe972c055a0e2d38f", "fields": {"nom_de_la_commune": "REMONDANS VAIVRE", "libell_d_acheminement": "REMONDANS VAIVRE", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25485"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b2b42f79681ca4ed83c170dfb53a455aa44483", "fields": {"code_postal": "25160", "code_commune_insee": "25486", "libell_d_acheminement": "REMORAY BOUJEONS", "ligne_5": "BOUJEONS", "nom_de_la_commune": "REMORAY BOUJEONS", "coordonnees_gps": [46.8056943645, 6.28142603625]}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c457695f006d5b58542f355a17d1f16fa27ff5c", "fields": {"nom_de_la_commune": "RENEDALE", "libell_d_acheminement": "RENEDALE", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25487"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd29f3e548a49bbeab507d18a5a9102f044522b5", "fields": {"nom_de_la_commune": "ROCHE LES CLERVAL", "libell_d_acheminement": "ROCHE LES CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25496"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e883362eae03c59af646cb5c20ebfa86a15479", "fields": {"nom_de_la_commune": "RONCHAUX", "libell_d_acheminement": "RONCHAUX", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25500"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a64c28ecd9f22beaaf88e70d92c4fb7fa1aa1db", "fields": {"nom_de_la_commune": "RONDEFONTAINE", "libell_d_acheminement": "RONDEFONTAINE", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25501"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b0573c6b88481213a79380b462fcaabead4ef9", "fields": {"code_postal": "25680", "code_commune_insee": "25505", "libell_d_acheminement": "ROUGEMONT", "ligne_5": "MONTFERNEY", "nom_de_la_commune": "ROUGEMONT", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f424e5f7a4e9684dc29e986fa9e31797994761d", "fields": {"nom_de_la_commune": "ROULANS", "libell_d_acheminement": "ROULANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25508"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fdd7508c8766e4130ce317115177fb9473af26", "fields": {"nom_de_la_commune": "ST VIT", "libell_d_acheminement": "ST VIT", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25527"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b3a5d2ee56c6ff8af6b87f18f900a72a58f090", "fields": {"nom_de_la_commune": "SAMSON", "libell_d_acheminement": "SAMSON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25528"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ba64ac3b2b8e71d25a52653b72d85d1652cdba", "fields": {"nom_de_la_commune": "SANCEY", "libell_d_acheminement": "SANCEY", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25529"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c8c01024e756096b92e6a3e8813f5e147df721", "fields": {"nom_de_la_commune": "SCEY MAISIERES", "libell_d_acheminement": "SCEY MAISIERES", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25537"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5825bd614dca862c52760753e2972864bfc434", "fields": {"nom_de_la_commune": "SELONCOURT", "libell_d_acheminement": "SELONCOURT", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25539"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2311d828229a9b47c7eaa2904b6b9fba4388fc80", "fields": {"nom_de_la_commune": "SOCHAUX", "libell_d_acheminement": "SOCHAUX", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25547"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec4bcdcfbf5c006f1004e8cd32fa3255802e6be7", "fields": {"nom_de_la_commune": "LA SOMMETTE", "libell_d_acheminement": "LA SOMMETTE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25550"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a9b80bf33a62f7b9023b6f6e70ad5ce61df691", "fields": {"nom_de_la_commune": "SOYE", "libell_d_acheminement": "SOYE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25553"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8aa49b47431ff451d139ee1c37ac482bff07f40", "fields": {"nom_de_la_commune": "THORAISE", "libell_d_acheminement": "THORAISE", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25561"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cbbdb8f1b8b63152a064d8e21c74ffe9483930b", "fields": {"nom_de_la_commune": "LA TOUR DE SCAY", "libell_d_acheminement": "LA TOUR DE SCAY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25566"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231c12a07be2df97241bce6dc72de2c6bdda9e2f", "fields": {"nom_de_la_commune": "TOURNANS", "libell_d_acheminement": "TOURNANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25567"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a131bbe0b8d0b9be538e8d6ab0ecc637ae3868", "fields": {"nom_de_la_commune": "TREVILLERS", "libell_d_acheminement": "TREVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25571"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1efd847629d5d8274f5a7b4735ecfff426fab0", "fields": {"nom_de_la_commune": "VAIRE ARCIER", "libell_d_acheminement": "VAIRE ARCIER", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25575"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ded6c84b1997769a2c23947e488a3f82e3aa14", "fields": {"nom_de_la_commune": "VAIRE LE PETIT", "libell_d_acheminement": "VAIRE LE PETIT", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25576"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ff3335f7cd62c60d0e3ec3062d04d0ba6e66cf", "fields": {"nom_de_la_commune": "VALLEROY", "libell_d_acheminement": "VALLEROY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25582"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f6464a56d7c641824ab0f125617cba33de0fb7", "fields": {"nom_de_la_commune": "VAUCLUSE", "libell_d_acheminement": "VAUCLUSE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25588"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b3a85d2592d548a20d38ca40e708dc80c5527b", "fields": {"nom_de_la_commune": "VAUCLUSOTTE", "libell_d_acheminement": "VAUCLUSOTTE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25589"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2f0030de73ff2aeb0745db7642fbe7692ed71c", "fields": {"nom_de_la_commune": "VAUFREY", "libell_d_acheminement": "VAUFREY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25591"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eedf4e7d9c5c225ed7ee05d586cd9931aee34703", "fields": {"nom_de_la_commune": "VERRIERES DU GROSBOIS", "libell_d_acheminement": "VERRIERES DU GROSBOIS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25610"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53725016b42d5b5484129c3ead8236e931752ed3", "fields": {"nom_de_la_commune": "VIETHOREY", "libell_d_acheminement": "VIETHOREY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25613"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1f8f8f226c146b2672bea56e1b98fb9834d039", "fields": {"nom_de_la_commune": "VILLERS CHIEF", "libell_d_acheminement": "VILLERS CHIEF", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25623"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39d14555170812cbf3de16d796d814f45a3c951", "fields": {"nom_de_la_commune": "VILLERS LA COMBE", "libell_d_acheminement": "VILLERS LA COMBE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25625"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813873d57224069bcbec12a45b4b1163478e94a7", "fields": {"nom_de_la_commune": "VUILLAFANS", "libell_d_acheminement": "VUILLAFANS", "code_postal": "25840", "coordonnees_gps": [47.0612985157, 6.21263749078], "code_commune_insee": "25633"}, "geometry": {"type": "Point", "coordinates": [6.21263749078, 47.0612985157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41d3aaafd19b2b20d8ca16218c7f5088e6e9aed", "fields": {"code_postal": "26150", "code_commune_insee": "26001", "libell_d_acheminement": "SOLAURE EN DIOIS", "ligne_5": "MOLIERES GLANDAZ", "nom_de_la_commune": "SOLAURE EN DIOIS", "coordonnees_gps": [44.7765586622, 5.35143868083]}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af15bd9617b3492c154a869297426e972f8b402e", "fields": {"nom_de_la_commune": "BERNOS BEAULAC", "libell_d_acheminement": "BERNOS BEAULAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33046"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d7c0d008de630f51fac3c82161f33b3b7b57262", "fields": {"nom_de_la_commune": "BERSON", "libell_d_acheminement": "BERSON", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33047"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d36d0351f05d4df2511486311cbcb42a68b9e9", "fields": {"nom_de_la_commune": "BERTHEZ", "libell_d_acheminement": "BERTHEZ", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33048"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7902e59c040673048c453e326f1461a81e913b", "fields": {"nom_de_la_commune": "BEYCHAC ET CAILLAU", "libell_d_acheminement": "BEYCHAC ET CAILLAU", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33049"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ef9e115ddec8c6e818c0b6abee4ebc90e8406c", "fields": {"nom_de_la_commune": "BIGANOS", "libell_d_acheminement": "BIGANOS", "code_postal": "33380", "coordonnees_gps": [44.6379766887, -0.903316939902], "code_commune_insee": "33051"}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c2818da8b4bc9c6a2fd530959d985e64789a42", "fields": {"nom_de_la_commune": "BLANQUEFORT", "libell_d_acheminement": "BLANQUEFORT", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33056"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e21bec08dc15bea6c72d833b824726baf255f9", "fields": {"nom_de_la_commune": "BLESIGNAC", "libell_d_acheminement": "BLESIGNAC", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33059"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33607e571b0ee5c6699416a87e19eca0c9a14fa8", "fields": {"nom_de_la_commune": "BONNETAN", "libell_d_acheminement": "BONNETAN", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33061"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc4c96dfe06f45735d6319eb4fc95b02dd93f02", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33300", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e45fda26d5b1a372e8b1f6e759012653a2fa75", "fields": {"nom_de_la_commune": "CABANAC ET VILLAGRAINS", "libell_d_acheminement": "CABANAC ET VILLAGRAINS", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33077"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba09ca3cc5a73bd89fb07d6afb72207ac9b8936", "fields": {"nom_de_la_commune": "CADILLAC EN FRONSADAIS", "libell_d_acheminement": "CADILLAC EN FRONSADAIS", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33082"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11fd885c47867631012f21f9a916c6de3e057dd", "fields": {"nom_de_la_commune": "CAMBLANES ET MEYNAC", "libell_d_acheminement": "CAMBLANES ET MEYNAC", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33085"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15c2f697e3e3a3f7cdff1d9506e31ee5e4eea49", "fields": {"nom_de_la_commune": "CAMIRAN", "libell_d_acheminement": "CAMIRAN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33087"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c62922b0e3bf38c9cb5be246ca123636c28fd90", "fields": {"nom_de_la_commune": "CAPLONG", "libell_d_acheminement": "CAPLONG", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33094"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63804b25052cf029fd3233b01f097fe56838787a", "fields": {"nom_de_la_commune": "CARS", "libell_d_acheminement": "CARS", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33100"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6ef40edee37090e0137c852e7efe0ecfb5b7ed", "fields": {"nom_de_la_commune": "CARTELEGUE", "libell_d_acheminement": "CARTELEGUE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33101"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d3389274e29e19280dc3bb8cdf180114ff41630", "fields": {"nom_de_la_commune": "CASSEUIL", "libell_d_acheminement": "CASSEUIL", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33102"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1020e73a228df113ed57fb03c17cb463b85de72", "fields": {"nom_de_la_commune": "CASTELVIEL", "libell_d_acheminement": "CASTELVIEL", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33105"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7b82663fc5d597d276ce2ee27d2da8fe6208ce", "fields": {"nom_de_la_commune": "CASTILLON DE CASTETS", "libell_d_acheminement": "CASTILLON DE CASTETS", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33107"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e4c1f61406380b38f167494e80d44d51d1fa029", "fields": {"nom_de_la_commune": "CASTILLON LA BATAILLE", "libell_d_acheminement": "CASTILLON LA BATAILLE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33108"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14909ba0c34e586915014178dca166ecb6a3bbd1", "fields": {"nom_de_la_commune": "CAUDROT", "libell_d_acheminement": "CAUDROT", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33111"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf35d091a9685ae08de1c238c8e542410e4f6f87", "fields": {"nom_de_la_commune": "CAUVIGNAC", "libell_d_acheminement": "CAUVIGNAC", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33113"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1dde23531e7674dc861a81b0aa8b8e77500e71", "fields": {"nom_de_la_commune": "CAVIGNAC", "libell_d_acheminement": "CAVIGNAC", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33114"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34a27d68f1b13194045ff0f9571503bc42a52b1", "fields": {"nom_de_la_commune": "CAZATS", "libell_d_acheminement": "CAZATS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33116"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae49548e11a34165da91cae0eab5181f4ee108b0", "fields": {"nom_de_la_commune": "CERONS", "libell_d_acheminement": "CERONS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33120"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee56c853caf32808cc9960ba340953014cc50d32", "fields": {"nom_de_la_commune": "CEZAC", "libell_d_acheminement": "CEZAC", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33123"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d2c8336abd24f9899a3be472af2733e384eaff", "fields": {"nom_de_la_commune": "CIVRAC SUR DORDOGNE", "libell_d_acheminement": "CIVRAC SUR DORDOGNE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33127"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be4be3ab83cd65ab37a976284e6fb8ecc016bd6", "fields": {"nom_de_la_commune": "COIRAC", "libell_d_acheminement": "COIRAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33131"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3babeba86e03a8fe8f541a2ce0f90d0b9f9acb58", "fields": {"nom_de_la_commune": "COURS DE MONSEGUR", "libell_d_acheminement": "COURS DE MONSEGUR", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33136"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0270fcc0c64c78286f2e93346c07f4eb44bc8f3", "fields": {"nom_de_la_commune": "COURS LES BAINS", "libell_d_acheminement": "COURS LES BAINS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33137"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b22a69136198ebf7ed6876119e7fee64c5234bdc", "fields": {"nom_de_la_commune": "COUTRAS", "libell_d_acheminement": "COUTRAS", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33138"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7203b9d711a0042967c5145be96eead033df081", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33139"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a383e804622187a600e464420757ec21d57a3817", "fields": {"nom_de_la_commune": "DONNEZAC", "libell_d_acheminement": "DONNEZAC", "code_postal": "33860", "coordonnees_gps": [45.2443910952, -0.48598346913], "code_commune_insee": "33151"}, "geometry": {"type": "Point", "coordinates": [-0.48598346913, 45.2443910952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77ea95c5fdc273676fd20524ecd1b44c56dae0c", "fields": {"nom_de_la_commune": "FARGUES", "libell_d_acheminement": "FARGUES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33164"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2ff04972f570cfd0bf24518f08cb3d580dd6d6", "fields": {"nom_de_la_commune": "FLAUJAGUES", "libell_d_acheminement": "FLAUJAGUES", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33168"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d72839960cd5717ec92913c0a147d4fc4599544", "fields": {"nom_de_la_commune": "FLOUDES", "libell_d_acheminement": "FLOUDES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33169"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34281a6975c1bbc0e4da846604b8bb10b0616683", "fields": {"nom_de_la_commune": "FRANCS", "libell_d_acheminement": "FRANCS", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33173"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178542f0ee09dbae364a70471972010acb380526", "fields": {"nom_de_la_commune": "GALGON", "libell_d_acheminement": "GALGON", "code_postal": "33133", "coordonnees_gps": [44.9903309477, -0.276557573057], "code_commune_insee": "33179"}, "geometry": {"type": "Point", "coordinates": [-0.276557573057, 44.9903309477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40e6a068f34d8ae334562fe3f906910b934655e", "fields": {"nom_de_la_commune": "GENISSAC", "libell_d_acheminement": "GENISSAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33185"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2675ce6002b54673ca17de2dd7c3bd7b29168c5d", "fields": {"nom_de_la_commune": "GRAYAN ET L HOPITAL", "libell_d_acheminement": "GRAYAN ET L HOPITAL", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33193"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb89b34a826c8ae3b4c852df27b2cdff95fe5e0", "fields": {"nom_de_la_commune": "GUILLAC", "libell_d_acheminement": "GUILLAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33196"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d459b3f3d1d8377308f46c4dd678a621d444c55", "fields": {"nom_de_la_commune": "GUJAN MESTRAS", "libell_d_acheminement": "GUJAN MESTRAS", "code_postal": "33470", "coordonnees_gps": [44.5836668839, -1.04638835904], "code_commune_insee": "33199"}, "geometry": {"type": "Point", "coordinates": [-1.04638835904, 44.5836668839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34d548ec2548f11b6c11254df55a98e34cfdb095", "fields": {"nom_de_la_commune": "HURE", "libell_d_acheminement": "HURE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33204"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175830cb1f9449fcebdabc89b4232c12d37e82c7", "fields": {"nom_de_la_commune": "ISLE ST GEORGES", "libell_d_acheminement": "ISLE ST GEORGES", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33206"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8a409d24329bafe6a8f3012aad0f072ed842f6", "fields": {"nom_de_la_commune": "LADOS", "libell_d_acheminement": "LADOS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33216"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bd128fe696efb8fd0245df03a7ff6cb844d276", "fields": {"nom_de_la_commune": "LALANDE DE POMEROL", "libell_d_acheminement": "LALANDE DE POMEROL", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33222"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec0ca8ec17d2df1d5290b7874120b4c50a58d55", "fields": {"nom_de_la_commune": "LANGON", "libell_d_acheminement": "LANGON", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33227"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12752208e5b1fa6493b3a989409ad56bc8dc19a", "fields": {"code_postal": "33138", "code_commune_insee": "33229", "libell_d_acheminement": "LANTON", "ligne_5": "TAUSSAT", "nom_de_la_commune": "LANTON", "coordonnees_gps": [44.7747400288, -0.9772534872]}, "geometry": {"type": "Point", "coordinates": [-0.9772534872, 44.7747400288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34e9077fe185c5c75cebdbb9718ec15d1877625", "fields": {"nom_de_la_commune": "LAROQUE", "libell_d_acheminement": "LAROQUE", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33231"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957a4fb4c1aa0e85c971be0b4eba970c1c7ce3e7", "fields": {"nom_de_la_commune": "LARTIGUE", "libell_d_acheminement": "LARTIGUE", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33232"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb37f1cc1cb6c74463310fea020ea42d694ced2b", "fields": {"nom_de_la_commune": "LAVAZAN", "libell_d_acheminement": "LAVAZAN", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33235"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b07e9967f198c487fda2f1ee6e8741c9363e79", "fields": {"code_postal": "33950", "code_commune_insee": "33236", "libell_d_acheminement": "LEGE CAP FERRET", "ligne_5": "LE CANON", "nom_de_la_commune": "LEGE CAP FERRET", "coordonnees_gps": [44.7600136809, -1.19365601812]}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c33b6cf1dad338f794b4e8234f758e0da9cd4f", "fields": {"code_postal": "33970", "code_commune_insee": "33236", "libell_d_acheminement": "LEGE CAP FERRET", "ligne_5": "CAP FERRET", "nom_de_la_commune": "LEGE CAP FERRET", "coordonnees_gps": [44.7600136809, -1.19365601812]}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9c2c7b9ef8ae159abfff4cee16f05e46d3c879", "fields": {"nom_de_la_commune": "LEOGNAN", "libell_d_acheminement": "LEOGNAN", "code_postal": "33850", "coordonnees_gps": [44.7191235414, -0.614773168844], "code_commune_insee": "33238"}, "geometry": {"type": "Point", "coordinates": [-0.614773168844, 44.7191235414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c125f99315a7626f5446207079f5aa1a3142897c", "fields": {"nom_de_la_commune": "LIBOURNE", "libell_d_acheminement": "LIBOURNE", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33243"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eba43b00f694c1a55ad8306c6bc5d3a887feb8f", "fields": {"nom_de_la_commune": "LIGUEUX", "libell_d_acheminement": "LIGUEUX", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33246"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981a8f03da9a43d35f3745dd6d3feb6e2d334659", "fields": {"nom_de_la_commune": "LISTRAC DE DUREZE", "libell_d_acheminement": "LISTRAC DE DUREZE", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33247"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844d3913591568348275848f69f347249192fe44", "fields": {"nom_de_la_commune": "MARCENAIS", "libell_d_acheminement": "MARCENAIS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33266"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac910821d568433409438417f62595ecb9e5fb8f", "fields": {"nom_de_la_commune": "MIOS", "libell_d_acheminement": "MIOS", "code_postal": "33380", "coordonnees_gps": [44.6379766887, -0.903316939902], "code_commune_insee": "33284"}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a645a34f4bfffeac789b16268b2d3ed900bd1658", "fields": {"code_postal": "33380", "code_commune_insee": "33284", "libell_d_acheminement": "MIOS", "ligne_5": "CAUDOS", "nom_de_la_commune": "MIOS", "coordonnees_gps": [44.6379766887, -0.903316939902]}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e87ee4faa18a2f12e3f879754029b36288d12d", "fields": {"nom_de_la_commune": "MONTAGNE", "libell_d_acheminement": "MONTAGNE", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33290"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c6dbc1c81421c608983ec85ba2537f2d485758b", "fields": {"nom_de_la_commune": "MONTAGOUDIN", "libell_d_acheminement": "MONTAGOUDIN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33291"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e71840503e0a12ff3c93d293c68aa789c5a2b37", "fields": {"nom_de_la_commune": "NEUFFONS", "libell_d_acheminement": "NEUFFONS", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33304"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7165459feb9f003243ba424a2bf2d4dd1faf03d5", "fields": {"nom_de_la_commune": "LE NIZAN", "libell_d_acheminement": "LE NIZAN", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33305"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ce30dacb2e674dd7233483ea286c224a39f6f9", "fields": {"nom_de_la_commune": "OMET", "libell_d_acheminement": "OMET", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33308"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5ab426f94238a79b1fdc77fe6b97cfc9d40c79", "fields": {"nom_de_la_commune": "PESSAC SUR DORDOGNE", "libell_d_acheminement": "PESSAC SUR DORDOGNE", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33319"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1df158dc4b6f88bebaf58a69f7ad66083f8aeca", "fields": {"nom_de_la_commune": "LE PIAN SUR GARONNE", "libell_d_acheminement": "LE PIAN SUR GARONNE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33323"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb833451c22682a1dd5bde7cd84d1a55052d69c", "fields": {"nom_de_la_commune": "PINEUILH", "libell_d_acheminement": "PINEUILH", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33324"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4bcba31bd5777da007ee0547965a8897e404b7", "fields": {"nom_de_la_commune": "PLASSAC", "libell_d_acheminement": "PLASSAC", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33325"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ac3699f822482cd894695dc106be43218f9344", "fields": {"nom_de_la_commune": "PUGNAC", "libell_d_acheminement": "PUGNAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33341"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be7a72593df439fa039f14400d1ad83544d804c", "fields": {"nom_de_la_commune": "PUJOLS", "libell_d_acheminement": "PUJOLS", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33344"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20cff93ce252fac7371304a35269cbc816f1b8f9", "fields": {"nom_de_la_commune": "SABLONS", "libell_d_acheminement": "SABLONS", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33362"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35994f5afd62f3b3399f6f9dccfae00f560b16f", "fields": {"nom_de_la_commune": "ST ANDRE DE CUBZAC", "libell_d_acheminement": "ST ANDRE DE CUBZAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33366"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b658e7a6cbb9c9e9b6b84f4480e1d76cb535018", "fields": {"nom_de_la_commune": "ST ANDRE ET APPELLES", "libell_d_acheminement": "ST ANDRE ET APPELLES", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33369"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f594b4141b3aea1169bc8367c2e9056323dff17a", "fields": {"nom_de_la_commune": "ST CIERS SUR GIRONDE", "libell_d_acheminement": "ST CIERS SUR GIRONDE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33389"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9069c1015ae80b7c4f4909de11b3a939397eacf7", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33390"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5621d8d551e14705f22b75019e8a8b789d7b2d", "fields": {"nom_de_la_commune": "STE CROIX DU MONT", "libell_d_acheminement": "STE CROIX DU MONT", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33392"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8181f8e610844a1a2819e8075e710a04ffcffaf5", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "33560", "coordonnees_gps": [44.9021503344, -0.484694308207], "code_commune_insee": "33397"}, "geometry": {"type": "Point", "coordinates": [-0.484694308207, 44.9021503344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b976e7a06dfc51af8f5b9d6db61a28a60f574b7", "fields": {"nom_de_la_commune": "STE FLORENCE", "libell_d_acheminement": "STE FLORENCE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33401"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42565e7416485d1900664bc54807153c7ad0eabc", "fields": {"nom_de_la_commune": "ST GERMAIN DE GRAVE", "libell_d_acheminement": "ST GERMAIN DE GRAVE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33411"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1100f0e445ca1d9df82d9d594770c8f03189a9", "fields": {"nom_de_la_commune": "ST HILAIRE DU BOIS", "libell_d_acheminement": "ST HILAIRE DU BOIS", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33419"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06e5e8103f470df9c2bec0c1d3f0a66b022749cf", "fields": {"nom_de_la_commune": "ST JEAN DE BLAIGNAC", "libell_d_acheminement": "ST JEAN DE BLAIGNAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33421"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c190f34e38d729e4d8049a8b3aa8815ee53c03", "fields": {"nom_de_la_commune": "ST JEAN D ILLAC", "libell_d_acheminement": "ST JEAN D ILLAC", "code_postal": "33127", "coordonnees_gps": [44.8025911594, -0.815024099624], "code_commune_insee": "33422"}, "geometry": {"type": "Point", "coordinates": [-0.815024099624, 44.8025911594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fca904c92b83497993796720f8a51bc0873af65", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33431"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8a70e104aaa42f5231ab3c0723115474fc7b33", "fields": {"nom_de_la_commune": "ST MACAIRE", "libell_d_acheminement": "ST MACAIRE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33435"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7733a37af528e878d688a3896da0b75bbd0c4d", "fields": {"nom_de_la_commune": "ST MARIENS", "libell_d_acheminement": "ST MARIENS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33439"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be3cf255dbc265b0cb3f1b8e31720b2f35ac210", "fields": {"nom_de_la_commune": "ST MARTIN DE LAYE", "libell_d_acheminement": "ST MARTIN DE LAYE", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33442"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9eeec23c739d54d81267b3bc5f74300d2edddb1", "fields": {"nom_de_la_commune": "ST MEDARD D EYRANS", "libell_d_acheminement": "ST MEDARD D EYRANS", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33448"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7d548f2545718b89731275b5d7f9eac1ab89d0", "fields": {"nom_de_la_commune": "ST MICHEL DE RIEUFRET", "libell_d_acheminement": "ST MICHEL DE RIEUFRET", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33452"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f4908c111184d20ea0ad3d321e6283080e19e9", "fields": {"nom_de_la_commune": "ST ROMAIN LA VIRVEE", "libell_d_acheminement": "ST ROMAIN LA VIRVEE", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33470"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e857b390a759f265ac0786aac812368cefc3208", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33471"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d42bc4f445dec2efa249cd42005260818dafc559", "fields": {"nom_de_la_commune": "ST SAUVEUR DE PUYNORMAND", "libell_d_acheminement": "ST SAUVEUR DE PUYNORMAND", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33472"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2114a3ff7211959786443299e7856ce626830e83", "fields": {"nom_de_la_commune": "ST SELVE", "libell_d_acheminement": "ST SELVE", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33474"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4868e234e53dd644e23b6457a108b54bc8e9cf8b", "fields": {"nom_de_la_commune": "ST SEURIN DE BOURG", "libell_d_acheminement": "ST SEURIN DE BOURG", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33475"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7148b7a156eb36041ab2ff3c79309c7688b07f73", "fields": {"nom_de_la_commune": "ST SEURIN DE CURSAC", "libell_d_acheminement": "ST SEURIN DE CURSAC", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33477"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df77d1f87c57510e14920ab5eeffab521401531", "fields": {"nom_de_la_commune": "STE TERRE", "libell_d_acheminement": "STE TERRE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33485"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6217c7946d331e856fb051b747d13c35405af03", "fields": {"nom_de_la_commune": "ST VIVIEN DE BLAYE", "libell_d_acheminement": "ST VIVIEN DE BLAYE", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33489"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827634a2701089734bbd5a5a48ebd543cda0e98b", "fields": {"nom_de_la_commune": "SALAUNES", "libell_d_acheminement": "SALAUNES", "code_postal": "33160", "coordonnees_gps": [44.9057111601, -0.79310499686], "code_commune_insee": "33494"}, "geometry": {"type": "Point", "coordinates": [-0.79310499686, 44.9057111601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8941f639c2d79763ef34f20ddd6220abbfb77200", "fields": {"nom_de_la_commune": "SAUCATS", "libell_d_acheminement": "SAUCATS", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33501"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7ec0b9d06ab8252c4eb12a9f7d76b845654557", "fields": {"nom_de_la_commune": "SIGALENS", "libell_d_acheminement": "SIGALENS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33512"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec21e89bd29ac7a47516e46165c3d60362c1057a", "fields": {"nom_de_la_commune": "BESAYES", "libell_d_acheminement": "BESAYES", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26049"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bec136bbed016c53d7407dedd52355d86c0534", "fields": {"nom_de_la_commune": "BESIGNAN", "libell_d_acheminement": "BESIGNAN", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26050"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c529be5db09e1262d9a2031ddc058ca0da9319e0", "fields": {"nom_de_la_commune": "BEZAUDUN SUR BINE", "libell_d_acheminement": "BEZAUDUN SUR BINE", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26051"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb46e4e435eb340f0015ef65124706fc4911c66", "fields": {"nom_de_la_commune": "BOULC", "libell_d_acheminement": "BOULC", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26055"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b95ab4070c90e00be326a3f2371dd327859d359", "fields": {"code_postal": "26410", "code_commune_insee": "26055", "libell_d_acheminement": "BOULC", "ligne_5": "RAVEL ET FERRIERS", "nom_de_la_commune": "BOULC", "coordonnees_gps": [44.6917619163, 5.54713177432]}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8859213aa8d71314e7fbe6730a80bebfd9639e96", "fields": {"nom_de_la_commune": "BOURG DE PEAGE", "libell_d_acheminement": "BOURG DE PEAGE", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26057"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45071d6e3d0d1bad98490bad4d65b256f802212", "fields": {"nom_de_la_commune": "BRETTE", "libell_d_acheminement": "BRETTE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26062"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555a2aa13144eb35c963156de0c1cf20c6e084a2", "fields": {"code_postal": "26120", "code_commune_insee": "26064", "libell_d_acheminement": "CHABEUIL", "ligne_5": "PARLANGES", "nom_de_la_commune": "CHABEUIL", "coordonnees_gps": [44.8732903807, 5.03514249262]}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "170878c057d2522889e8192a99232719ab98b381", "fields": {"nom_de_la_commune": "LE CHAFFAL", "libell_d_acheminement": "LE CHAFFAL", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26066"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "169bb065c26e5a0f094995dc6daa9b036edd5139", "fields": {"nom_de_la_commune": "LA CHARCE", "libell_d_acheminement": "LA CHARCE", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26075"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4f5e31c675813380f2ab185d47075ac3bd7e3a", "fields": {"nom_de_la_commune": "CHAROLS", "libell_d_acheminement": "CHAROLS", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26078"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b421c00d5f6fffcec604bb47d647f8d2c0d3bc5b", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE BORDETTE", "libell_d_acheminement": "CHATEAUNEUF DE BORDETTE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26082"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f2528b81e337db8e09240034e226a77eea5892", "fields": {"nom_de_la_commune": "CHATILLON ST JEAN", "libell_d_acheminement": "CHATILLON ST JEAN", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26087"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e551b262f2d25fae6c3a9fbbd9952c07ec50523", "fields": {"nom_de_la_commune": "CHAUVAC LAUX MONTAUX", "libell_d_acheminement": "CHAUVAC LAUX MONTAUX", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26091"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80dd2aa2991834950ab3f758c621392645454b4a", "fields": {"nom_de_la_commune": "CONDILLAC", "libell_d_acheminement": "CONDILLAC", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26102"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e1e2918dbf678a00ed2513108fb43a9c867cd7", "fields": {"nom_de_la_commune": "CORNILLON SUR L OULE", "libell_d_acheminement": "CORNILLON SUR L OULE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26105"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00b3261c1fbff44deaa0b1ad2c998bb92435d4a8", "fields": {"nom_de_la_commune": "LA COUCOURDE", "libell_d_acheminement": "LA COUCOURDE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26106"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9980dfba52bf9e8b226f6a090c2c130d046baa", "fields": {"nom_de_la_commune": "CREPOL", "libell_d_acheminement": "CREPOL", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26107"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2daf048fa9b1c852ec4337851423fc26ec8d44a", "fields": {"nom_de_la_commune": "CREST", "libell_d_acheminement": "CREST", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26108"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c6c3f42a9071c2cb48332ad18164e9fba6fbc2", "fields": {"nom_de_la_commune": "DIEULEFIT", "libell_d_acheminement": "DIEULEFIT", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26114"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65caa3426c91b27049cb45d2703c38a50441d6b4", "fields": {"nom_de_la_commune": "ETOILE SUR RHONE", "libell_d_acheminement": "ETOILE SUR RHONE", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26124"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad10536ff97c503f751b63b8a9babdf070fef8c", "fields": {"nom_de_la_commune": "EYROLES", "libell_d_acheminement": "EYROLES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26130"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed642ac61118de951b0e03684c0722c21bf8e501", "fields": {"nom_de_la_commune": "FAY LE CLOS", "libell_d_acheminement": "FAY LE CLOS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26133"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dd2f12b2c579d78ddd2343c2cc556276073c60", "fields": {"nom_de_la_commune": "HAUTERIVES", "libell_d_acheminement": "HAUTERIVES", "code_postal": "26390", "coordonnees_gps": [45.2443633051, 5.0335654091], "code_commune_insee": "26148"}, "geometry": {"type": "Point", "coordinates": [5.0335654091, 45.2443633051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae38afd811b0b6131e024aa4620d49067cd92b06", "fields": {"nom_de_la_commune": "LAPEYROUSE MORNAY", "libell_d_acheminement": "LAPEYROUSE MORNAY", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26155"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71296de07227ce6c2fe00d5a0c511f4ef38da242", "fields": {"nom_de_la_commune": "LAVAL D AIX", "libell_d_acheminement": "LAVAL D AIX", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26159"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e40548aa0176654e1650f9264e09bb4366c01db", "fields": {"nom_de_la_commune": "LAVEYRON", "libell_d_acheminement": "LAVEYRON", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26160"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0733c9fe905a17691cc3034a5e1700f2122d5600", "fields": {"nom_de_la_commune": "LUS LA CROIX HAUTE", "libell_d_acheminement": "LUS LA CROIX HAUTE", "code_postal": "26620", "coordonnees_gps": [44.6826261394, 5.72299637857], "code_commune_insee": "26168"}, "geometry": {"type": "Point", "coordinates": [5.72299637857, 44.6826261394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a725660cba69a7f77f7039a18e9c47065ffef17a", "fields": {"nom_de_la_commune": "MALISSARD", "libell_d_acheminement": "MALISSARD", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26170"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc5a8aec1c4f3fa6d8d995a06cd048c2fdf51f81", "fields": {"nom_de_la_commune": "MARIGNAC EN DIOIS", "libell_d_acheminement": "MARIGNAC EN DIOIS", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26175"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087bd0f13fa1b6134603fcab0812ec611ce1199c", "fields": {"nom_de_la_commune": "MONTCHENU", "libell_d_acheminement": "MONTCHENU", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26194"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0ac518352c8d6e4ed5ac47755fa35f2a151682", "fields": {"nom_de_la_commune": "MONTCLAR SUR GERVANNE", "libell_d_acheminement": "MONTCLAR SUR GERVANNE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26195"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c443ae4acf049a7e7f4c54c16efa7e6f97b5c025", "fields": {"nom_de_la_commune": "MONTFERRAND LA FARE", "libell_d_acheminement": "MONTFERRAND LA FARE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26199"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9cdeaf220db2637f15dfbde70bd99a332165d8", "fields": {"nom_de_la_commune": "MONTVENDRE", "libell_d_acheminement": "MONTVENDRE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26212"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe8449546f1e766c37f56dd7a13984456b36d64", "fields": {"nom_de_la_commune": "LA MOTTE CHALANCON", "libell_d_acheminement": "LA MOTTE CHALANCON", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26215"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a75620bbdc8667992397d48fd6185b50168607", "fields": {"nom_de_la_commune": "LA MOTTE FANJAS", "libell_d_acheminement": "LA MOTTE FANJAS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26217"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d014c840957a775b6934eacb19eaebcadbdde379", "fields": {"nom_de_la_commune": "MOURS ST EUSEBE", "libell_d_acheminement": "MOURS ST EUSEBE", "code_postal": "26540", "coordonnees_gps": [45.0708578935, 5.05953269448], "code_commune_insee": "26218"}, "geometry": {"type": "Point", "coordinates": [5.05953269448, 45.0708578935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f31867e301785d2e582b014879469046e425d8", "fields": {"nom_de_la_commune": "ORCINAS", "libell_d_acheminement": "ORCINAS", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26222"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeeb2476960bcc5b9656f64d66547f54622d4a2e", "fields": {"nom_de_la_commune": "OURCHES", "libell_d_acheminement": "OURCHES", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26224"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cd87ee9d07f6d5e6db8b4c7bdce10811b2f3cc", "fields": {"nom_de_la_commune": "PARNANS", "libell_d_acheminement": "PARNANS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26225"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e47aa96b2a314b7ff9eb6249d255be92e81289a", "fields": {"nom_de_la_commune": "PENNES LE SEC", "libell_d_acheminement": "PENNES LE SEC", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26228"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d1f8de96edab9bc9541c16995c17c8f67bdfde", "fields": {"nom_de_la_commune": "LA PENNE SUR L OUVEZE", "libell_d_acheminement": "LA PENNE SUR L OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26229"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b3ecc8fd0eba37548ee2166962213a36027063", "fields": {"nom_de_la_commune": "PEYRUS", "libell_d_acheminement": "PEYRUS", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26232"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ea5bb239f90f14aae4b98258dd1da42fbf1876", "fields": {"nom_de_la_commune": "PIEGROS LA CLASTRE", "libell_d_acheminement": "PIEGROS LA CLASTRE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26234"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430c7aac7fe8a6ba332df46036bb8d5365019bc3", "fields": {"nom_de_la_commune": "PLAISIANS", "libell_d_acheminement": "PLAISIANS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26239"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205a8bf3d56bf81a23327ee71ca38f1d4fecd520", "fields": {"nom_de_la_commune": "PONTAIX", "libell_d_acheminement": "PONTAIX", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26248"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb186493589e4c2f71319b6c4847a40aa5286c4", "fields": {"nom_de_la_commune": "PROPIAC", "libell_d_acheminement": "PROPIAC", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26256"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e65ebd3ba06c062a7817981f24ca04e7e9685d", "fields": {"nom_de_la_commune": "PUYGIRON", "libell_d_acheminement": "PUYGIRON", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26257"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a919de58b789e79afddcd84a267c7a811b713e2", "fields": {"nom_de_la_commune": "ROCHEFORT EN VALDAINE", "libell_d_acheminement": "ROCHEFORT EN VALDAINE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26272"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f23644cf786d672be71b60406a7e6955549c956", "fields": {"code_postal": "26770", "code_commune_insee": "26276", "libell_d_acheminement": "ROCHE ST SECRET BECONNE", "ligne_5": "BECONNE", "nom_de_la_commune": "ROCHE ST SECRET BECONNE", "coordonnees_gps": [44.4552603044, 5.0169388976]}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef02c4cc6dfb5bb842ef633bd45123fae538c51", "fields": {"nom_de_la_commune": "LA ROCHE SUR LE BUIS", "libell_d_acheminement": "LA ROCHE SUR LE BUIS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26278"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1dd4161c418e7033ec3ea987736c77231f0d1d8", "fields": {"nom_de_la_commune": "ROMEYER", "libell_d_acheminement": "ROMEYER", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26282"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718bbf2b113adc781ae6b6f58466fcb854237b8c", "fields": {"nom_de_la_commune": "SAILLANS", "libell_d_acheminement": "SAILLANS", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26289"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e55258523685d52f6f82cfd577cb8b18ed5a98b", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26293"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f6ce2c26ed76d340340ddb3eaf447ff11693f0f", "fields": {"nom_de_la_commune": "ST JULIEN EN VERCORS", "libell_d_acheminement": "ST JULIEN EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26309"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7051c2be57f2308cd607d15eded4923344aa2dc7", "fields": {"nom_de_la_commune": "ST MARTIN LE COLONEL", "libell_d_acheminement": "ST MARTIN LE COLONEL", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26316"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bba3087c08c5670bfe362e84981543b9b80bf7b4", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26333"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede570be9e5bbda6ff3a82947f75fa4895ce06ea", "fields": {"nom_de_la_commune": "SALETTES", "libell_d_acheminement": "SALETTES", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26334"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d656cf6e5f3ee01c3aacb4d22d6fac61e863ce06", "fields": {"code_postal": "26740", "code_commune_insee": "26339", "libell_d_acheminement": "SAVASSE", "ligne_5": "L HOMME D ARMES", "nom_de_la_commune": "SAVASSE", "coordonnees_gps": [44.6175061627, 4.82925969316]}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e252e0760e49199245073d304d3fd6f55b7e52ee", "fields": {"nom_de_la_commune": "SEDERON", "libell_d_acheminement": "SEDERON", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26340"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb15682114e386238d13cafe15e3520257d91263", "fields": {"nom_de_la_commune": "LES TOURRETTES", "libell_d_acheminement": "LES TOURRETTES", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26353"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e40029ad566e1e7e4cb1007ee13e179b4e72e8", "fields": {"code_postal": "26410", "code_commune_insee": "26354", "libell_d_acheminement": "TRESCHENU CREYERS", "ligne_5": "CREYERS", "nom_de_la_commune": "TRESCHENU CREYERS", "coordonnees_gps": [44.6917619163, 5.54713177432]}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "714460ec06e1d35bfb999dab989f58fc34da1bf3", "fields": {"nom_de_la_commune": "UPIE", "libell_d_acheminement": "UPIE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26358"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0e8efc2caba0fdfe7f0b6a3794eb6efb331b57", "fields": {"nom_de_la_commune": "VACHERES EN QUINT", "libell_d_acheminement": "VACHERES EN QUINT", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26359"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d618b993b624d839414ada3147ed015fb77da7b2", "fields": {"nom_de_la_commune": "VAUNAVEYS LA ROCHETTE", "libell_d_acheminement": "VAUNAVEYS LA ROCHETTE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26365"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534156400ad83d968d2a3c43ee6ee0647f2cd49f", "fields": {"code_postal": "26400", "code_commune_insee": "26365", "libell_d_acheminement": "VAUNAVEYS LA ROCHETTE", "ligne_5": "LA ROCHETTE SUR CREST", "nom_de_la_commune": "VAUNAVEYS LA ROCHETTE", "coordonnees_gps": [44.7390283937, 5.06867808375]}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15961b92e59827c4fb26988ee5809a2879cc779e", "fields": {"nom_de_la_commune": "VERCHENY", "libell_d_acheminement": "VERCHENY", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26368"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3e516ee6a47a716aae78255c1103518e705b4e", "fields": {"nom_de_la_commune": "VERONNE", "libell_d_acheminement": "VERONNE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26371"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16607eb67a9d749b8f7f8024fd359c10d92f94e", "fields": {"nom_de_la_commune": "VILLEBOIS LES PINS", "libell_d_acheminement": "VILLEBOIS LES PINS", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "26374"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ffe6af3fb61b1b65c0e9dacf1112cc70e18951", "fields": {"nom_de_la_commune": "VILLEPERDRIX", "libell_d_acheminement": "VILLEPERDRIX", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26376"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e9ed2d36504f303149dd3187ac4ce0e56a1583", "fields": {"nom_de_la_commune": "ANGERVILLE LA CAMPAGNE", "libell_d_acheminement": "ANGERVILLE LA CAMPAGNE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27017"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d8051139e82e31ea76ac44729b376866090f70", "fields": {"nom_de_la_commune": "ASNIERES", "libell_d_acheminement": "ASNIERES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27021"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22443febf7074a03ba1fe35fc64f8dd9ad4425b3", "fields": {"code_postal": "27240", "code_commune_insee": "27032", "libell_d_acheminement": "CHAMBOIS", "ligne_5": "THOMER LA SOGNE", "nom_de_la_commune": "CHAMBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e481902e1785388fe603b3e1c228031343c1f40b", "fields": {"nom_de_la_commune": "BALINES", "libell_d_acheminement": "BALINES", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27036"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e61ff6299f3fb24d26cf23f56a121a643bea08", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "JONQUERETS DE LIVET", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4258a073338f80a8edea47d4326d9973edd55255", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "LANDEPEREUSE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d058135aae616cb71db38f9097dd93657b8db58f", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "ST AUBIN DES HAYES", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526539802fe77f07c4c580702a380ee48c9701e4", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "ST AUBIN LE GUICHARD", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402bba2f092afa3c8b646d73563b155de5bd7a6a", "fields": {"nom_de_la_commune": "BEAUMONTEL", "libell_d_acheminement": "BEAUMONTEL", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27050"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a6efdabe8b0bd486c57aeb0c0a0d6c8da2ff42", "fields": {"nom_de_la_commune": "BEAUMONT LE ROGER", "libell_d_acheminement": "BEAUMONT LE ROGER", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27051"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be4f8d8d063332836b01cfef2a2f7fb28625e39", "fields": {"nom_de_la_commune": "BEMECOURT", "libell_d_acheminement": "BEMECOURT", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27054"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d1e86f56a5c49cffdec72ba06b758acdbdc1ef", "fields": {"nom_de_la_commune": "BERNIERES SUR SEINE", "libell_d_acheminement": "BERNIERES SUR SEINE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27058"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9ccc45b39614cdd181489d9108c479385f190f", "fields": {"nom_de_la_commune": "BERVILLE LA CAMPAGNE", "libell_d_acheminement": "BERVILLE LA CAMPAGNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27063"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715376c62575fc978d453d2d66728d21ef3281a5", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27081"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480fb620094b3fddcea5e5b357de9413c98be789", "fields": {"nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", "libell_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27085"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c351006edf83aad44b44bfa7be15c2ad4ad9151a", "fields": {"nom_de_la_commune": "LE BOSC ROGER EN ROUMOIS", "libell_d_acheminement": "LE BOSC ROGER EN ROUMOIS", "code_postal": "27670", "coordonnees_gps": [49.2917091598, 0.924488601867], "code_commune_insee": "27090"}, "geometry": {"type": "Point", "coordinates": [0.924488601867, 49.2917091598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3240dedf51fe1cfa075768a7599ee5337b144173", "fields": {"nom_de_la_commune": "BOSGOUET", "libell_d_acheminement": "BOSGOUET", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27091"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62514156f9e41af8322333445a4e80c5b66d4eee", "fields": {"nom_de_la_commune": "BOSGUERARD DE MARCOUVILLE", "libell_d_acheminement": "BOSGUERARD DE MARCOUVILLE", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27092"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93896a3207e87f4401c94e2fe48cd55c3647f62c", "fields": {"code_postal": "27250", "code_commune_insee": "27096", "libell_d_acheminement": "LES BOTTEREAUX", "ligne_5": "LES FRETILS", "nom_de_la_commune": "LES BOTTEREAUX", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf209bd548947f86e7bdb52b5285bcd99a0c553", "fields": {"code_postal": "27250", "code_commune_insee": "27096", "libell_d_acheminement": "LES BOTTEREAUX", "ligne_5": "VAUX SUR RISLE", "nom_de_la_commune": "LES BOTTEREAUX", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d780d91c20ca8bc70d798465696fcd5ac8702ffc", "fields": {"nom_de_la_commune": "BOUAFLES", "libell_d_acheminement": "BOUAFLES", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27097"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53811f8a9ed2e884cc1952e6a5c478321a61fb01", "fields": {"nom_de_la_commune": "BOUQUELON", "libell_d_acheminement": "BOUQUELON", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27101"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b97c4ccfef970d1cf5d462152437a621743c648", "fields": {"nom_de_la_commune": "BOURG BEAUDOUIN", "libell_d_acheminement": "BOURG BEAUDOUIN", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27104"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af92ef849314aea904cc70d8803567662c7dc7d4", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "BOSCHERVILLE", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abaac7c09bab3d6cfc502a8d60abc7c248790b77", "fields": {"nom_de_la_commune": "BRAY", "libell_d_acheminement": "BRAY", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27109"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74739c294fabef88e7dfd96a256d9d60ae86d96f", "fields": {"nom_de_la_commune": "BRETAGNOLLES", "libell_d_acheminement": "BRETAGNOLLES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27111"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87616115434e7ab9b83afb61a565d8f8eba17464", "fields": {"nom_de_la_commune": "BRETIGNY", "libell_d_acheminement": "BRETIGNY", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27113"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e492c9f215b86a4ccb05b086f561a6f7bf9e35a4", "fields": {"nom_de_la_commune": "BRIONNE", "libell_d_acheminement": "BRIONNE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27116"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685acbcbb2318cd5a2f3e83b5cd0da98925d86ec", "fields": {"nom_de_la_commune": "BUEIL", "libell_d_acheminement": "BUEIL", "code_postal": "27730", "coordonnees_gps": [48.932997523, 1.41949136051], "code_commune_insee": "27119"}, "geometry": {"type": "Point", "coordinates": [1.41949136051, 48.932997523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f6f434e7b6ee8a84dcceade8291909072307c5", "fields": {"nom_de_la_commune": "BUREY", "libell_d_acheminement": "BUREY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27120"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0222f6f01b6f605e2bdf980ac7197853cb7d30ce", "fields": {"nom_de_la_commune": "BAYONS", "libell_d_acheminement": "BAYONS", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04023"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c2c7a85b716f709a3a7f1b2865835d55ca071e", "fields": {"nom_de_la_commune": "YZEURE", "libell_d_acheminement": "YZEURE", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03321"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f29a14524db9bab32e40f99c9052a31db60106", "fields": {"nom_de_la_commune": "AUTHON", "libell_d_acheminement": "AUTHON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04016"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a43a33b18b62818d05c15480b53746cea44d95cd", "fields": {"code_postal": "04420", "code_commune_insee": "04155", "libell_d_acheminement": "PRADS HAUTE BLEONE", "ligne_5": "BLEGIERS", "nom_de_la_commune": "PRADS HAUTE BLEONE", "coordonnees_gps": [44.1915370123, 6.39634951994]}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a958271c1ca83dd7c1b4a6ce325926e61cc498", "fields": {"code_postal": "04170", "code_commune_insee": "04136", "libell_d_acheminement": "LA MURE ARGENS", "ligne_5": "ARGENS", "nom_de_la_commune": "LA MURE ARGENS", "coordonnees_gps": [44.0283793714, 6.53951156663]}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2fcd288b5437d6b050bbeff02343da82e568cb8", "fields": {"nom_de_la_commune": "LA PALUD SUR VERDON", "libell_d_acheminement": "LA PALUD SUR VERDON", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04144"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b508ce1a18d4b75653a6f5a0cb8e693c41d24208", "fields": {"nom_de_la_commune": "NIOZELLES", "libell_d_acheminement": "NIOZELLES", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04138"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f01fd2a569fd152c0de65037abfb93d4e16c9b1", "fields": {"nom_de_la_commune": "REILLANNE", "libell_d_acheminement": "REILLANNE", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04160"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64587cc376913d42416a4d5cb89c45c7c76a4e72", "fields": {"nom_de_la_commune": "QUINSON", "libell_d_acheminement": "QUINSON", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04158"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af22906aed15147d4e058c1a65a9ba03e5abe630", "fields": {"nom_de_la_commune": "NIBLES", "libell_d_acheminement": "NIBLES", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04137"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6a52ced8614b8350c234c397c35ea9a949ca25", "fields": {"nom_de_la_commune": "LIMANS", "libell_d_acheminement": "LIMANS", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04104"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f38d7f9554a385417ff7f29ee23d2ce79d50988", "fields": {"nom_de_la_commune": "PIEGUT", "libell_d_acheminement": "PIEGUT", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "04150"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3441f6a0802cfc9b5fc1d82f5ca9c387ca2724", "fields": {"nom_de_la_commune": "MEZEL", "libell_d_acheminement": "MEZEL", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04121"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a38a8012d2617f18df708a145414636f8c2ed", "fields": {"code_postal": "04600", "code_commune_insee": "04049", "libell_d_acheminement": "CHATEAU ARNOUX ST AUBAN", "ligne_5": "ST AUBAN", "nom_de_la_commune": "CHATEAU ARNOUX ST AUBAN", "coordonnees_gps": [44.0744156003, 5.97645847949]}, "geometry": {"type": "Point", "coordinates": [5.97645847949, 44.0744156003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a39d5af6b857a6acfd41901f8ee866a8df2de6d", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "CHASTEUIL", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953cd2d2108b0001ecb448d26a853540aadf83b2", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "ROBION", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffbef9b58b901e74fbd66044d2425a9cb78158bd", "fields": {"nom_de_la_commune": "LE CASTELLARD MELAN", "libell_d_acheminement": "LE CASTELLARD MELAN", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04040"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0518bf49731aea344b9d8ad08833a4f4a1142690", "fields": {"nom_de_la_commune": "LE CASTELLET", "libell_d_acheminement": "LE CASTELLET", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04041"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3b3a8b98f316deb8d20cbf0b3009a343843899", "fields": {"nom_de_la_commune": "CLAMENSANE", "libell_d_acheminement": "CLAMENSANE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04057"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae62869e0b96b1eb0eb8975db6ec6a63628e6280", "fields": {"nom_de_la_commune": "BEAUVEZER", "libell_d_acheminement": "BEAUVEZER", "code_postal": "04370", "coordonnees_gps": [44.1743215148, 6.62460542768], "code_commune_insee": "04025"}, "geometry": {"type": "Point", "coordinates": [6.62460542768, 44.1743215148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7dec3b5002b3d8d367b9e3dcf0f1366222bb884", "fields": {"nom_de_la_commune": "LE CAIRE", "libell_d_acheminement": "LE CAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04037"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482352cefe874d469e87572907056ffbd7b61ff2", "fields": {"nom_de_la_commune": "CERESTE", "libell_d_acheminement": "CERESTE", "code_postal": "04280", "coordonnees_gps": [43.8506419191, 5.58975004581], "code_commune_insee": "04045"}, "geometry": {"type": "Point", "coordinates": [5.58975004581, 43.8506419191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3f4275bcd5807bcfb0fecbaefbc176c7bc0b6a", "fields": {"nom_de_la_commune": "CLARET", "libell_d_acheminement": "CLARET", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "04058"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e21794b4bac58f332f108a3faedeffbe981dc76f", "fields": {"nom_de_la_commune": "GREOUX LES BAINS", "libell_d_acheminement": "GREOUX LES BAINS", "code_postal": "04800", "coordonnees_gps": [43.7622916617, 5.91644609387], "code_commune_insee": "04094"}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527c60c94a33a9c9bdd18d61f4ec923507cc0762", "fields": {"nom_de_la_commune": "DIGNE LES BAINS", "libell_d_acheminement": "DIGNE LES BAINS", "code_postal": "04000", "coordonnees_gps": [44.1282802436, 6.25179168531], "code_commune_insee": "04070"}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1027dd6d73633d712310710135f6f64c0346d135", "fields": {"nom_de_la_commune": "LE FUGERET", "libell_d_acheminement": "LE FUGERET", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04090"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7831cf0142a8cf661915a1b15a5ad4dbc5560b2", "fields": {"nom_de_la_commune": "DEMANDOLX", "libell_d_acheminement": "DEMANDOLX", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04069"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026d6b76b5c389d2d8d0e775c62a78914ff60dc2", "fields": {"nom_de_la_commune": "ESTOUBLON", "libell_d_acheminement": "ESTOUBLON", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04084"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132539e65b39bee0a2756e21e712bdb2cad1a83f", "fields": {"nom_de_la_commune": "GANAGOBIE", "libell_d_acheminement": "GANAGOBIE", "code_postal": "04310", "coordonnees_gps": [44.0250031317, 5.92272332026], "code_commune_insee": "04091"}, "geometry": {"type": "Point", "coordinates": [5.92272332026, 44.0250031317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bb1441dbbc1ee2761649d87e47aaa62b69dd97", "fields": {"nom_de_la_commune": "LA GARDE", "libell_d_acheminement": "LA GARDE", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04092"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e997a36082b245a150aee18fd535e1259a2aa402", "fields": {"nom_de_la_commune": "LA JAVIE", "libell_d_acheminement": "LA JAVIE", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04097"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfa6c31833377801a55ad621b38773bae6b2c38", "fields": {"nom_de_la_commune": "L ESCALE", "libell_d_acheminement": "L ESCALE", "code_postal": "04160", "coordonnees_gps": [44.0832938785, 6.01511256781], "code_commune_insee": "04079"}, "geometry": {"type": "Point", "coordinates": [6.01511256781, 44.0832938785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9aea6a6ac3b4b4563f9a53f19e667e7405aeb6", "fields": {"nom_de_la_commune": "CUREL", "libell_d_acheminement": "CUREL", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04067"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77ed4dac997168ebb19c9e537c4a23a9f17fc1e4", "fields": {"code_postal": "04000", "code_commune_insee": "04167", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "ligne_5": "TANARON", "nom_de_la_commune": "LA ROBINE SUR GALABRE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3469a4f51303c88b0f4e3bd98273cb9d5b64244", "fields": {"nom_de_la_commune": "ST LAURENT DU VERDON", "libell_d_acheminement": "ST LAURENT DU VERDON", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04186"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f85976a3311f3f804f64a812147381ab7a9afd7", "fields": {"nom_de_la_commune": "STE CROIX DU VERDON", "libell_d_acheminement": "STE CROIX DU VERDON", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04176"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a21b082665ff1914e4a8b1491f0d11a5cc4114", "fields": {"nom_de_la_commune": "HAUTES DUYES", "libell_d_acheminement": "HAUTES DUYES", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04177"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9abd0fc6636c14077fc922a54c8edaa13c88e3c", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04174"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd0f2b32174ad7e1b8a55b6bfae471d8f28bfe6", "fields": {"code_postal": "04150", "code_commune_insee": "04208", "libell_d_acheminement": "SIMIANE LA ROTONDE", "ligne_5": "CARNIOL", "nom_de_la_commune": "SIMIANE LA ROTONDE", "coordonnees_gps": [44.0485937813, 5.61131710182]}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c347e84243f585ca992109b3322fb6cd5e12db32", "fields": {"nom_de_la_commune": "ST VINCENT SUR JABRON", "libell_d_acheminement": "ST VINCENT SUR JABRON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04199"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3bca576fe9b467376939288b86325a42400897", "fields": {"nom_de_la_commune": "ST MARTIN DE BROMES", "libell_d_acheminement": "ST MARTIN DE BROMES", "code_postal": "04800", "coordonnees_gps": [43.7622916617, 5.91644609387], "code_commune_insee": "04189"}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9106606db2468fd8f0f138143efb4ad04a3b458", "fields": {"nom_de_la_commune": "SEYNE", "libell_d_acheminement": "SEYNE LES ALPES", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04205"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23cda1ac9c64a85ec0bc685f081bcd057e69eb7", "fields": {"nom_de_la_commune": "SOLEILHAS", "libell_d_acheminement": "SOLEILHAS", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04210"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6140d238f6a84a2dbd5cb7cdebdaa9a116b44430", "fields": {"nom_de_la_commune": "TARTONNE", "libell_d_acheminement": "TARTONNE", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04214"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7460626f437df31aee414895d063e5a9ead410ba", "fields": {"nom_de_la_commune": "SELONNET", "libell_d_acheminement": "SELONNET", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04203"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2ce4b7acbcbf69eb9d58d49e0d8a42c97121e6", "fields": {"nom_de_la_commune": "ST MAIME", "libell_d_acheminement": "ST MAIME", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04188"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d79ce20337d7cfc903bff90ca3fae6464375a9", "fields": {"nom_de_la_commune": "SAUMANE", "libell_d_acheminement": "SAUMANE", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04201"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8628b27146ff118feac4491ea9a2c3e4e2525d32", "fields": {"nom_de_la_commune": "SAUSSES", "libell_d_acheminement": "SAUSSES", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04202"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00096cbdb4ff72ad46ff2e1ddafb88e283f87d7", "fields": {"code_postal": "05300", "code_commune_insee": "05053", "libell_d_acheminement": "GARDE COLOMBE", "ligne_5": "EYGUIANS", "nom_de_la_commune": "GARDE COLOMBE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00648ffac78754d2c9b1a5baaba7453403f35671", "fields": {"code_postal": "05300", "code_commune_insee": "05053", "libell_d_acheminement": "GARDE COLOMBE", "ligne_5": "ST GENIS", "nom_de_la_commune": "GARDE COLOMBE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a96b9be16b26434c281e99ae88fb1661be1bc9", "fields": {"nom_de_la_commune": "LA FARE EN CHAMPSAUR", "libell_d_acheminement": "LA FARE EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05054"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50288e803b38a2186862ecc4d046c997e2a28774", "fields": {"nom_de_la_commune": "BARRET SUR MEOUGE", "libell_d_acheminement": "BARRET SUR MEOUGE", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05014"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a0c924ca135a875fe039e0db1c92e3f1451dc7", "fields": {"nom_de_la_commune": "ESPINASSES", "libell_d_acheminement": "ESPINASSES", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05050"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cba4bc47b21692a8d458329d7ce72b9fd54ceb5", "fields": {"nom_de_la_commune": "LA BEAUME", "libell_d_acheminement": "LA BEAUME", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05019"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78763b49ff3e78e0a70d0497de4ee568c65dcb45", "fields": {"nom_de_la_commune": "LE BERSAC", "libell_d_acheminement": "LE BERSAC", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05021"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e763f317284b830ac41689e8c0f1b1c11e0050ff", "fields": {"nom_de_la_commune": "ESPARRON", "libell_d_acheminement": "ESPARRON", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05049"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "154c3bd77829ca2ae32269e199914c7b990a5899", "fields": {"nom_de_la_commune": "CEILLAC", "libell_d_acheminement": "CEILLAC", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05026"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecb3ad9489d53f393cb34d37fd53597b856e4e9", "fields": {"nom_de_la_commune": "L EPINE", "libell_d_acheminement": "L EPINE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05048"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48f9480b98e5ee192234ecb580f864a444d2530", "fields": {"nom_de_la_commune": "ASPRES SUR BUECH", "libell_d_acheminement": "ASPRES SUR BUECH", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05010"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51b0ea6415872a54acceb3ef4929c2d9cb8b103", "fields": {"nom_de_la_commune": "ASPRES LES CORPS", "libell_d_acheminement": "ASPRES LES CORPS", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05009"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f016206254d7262411401c5f38e37f8c574e5f7e", "fields": {"nom_de_la_commune": "THORAME BASSE", "libell_d_acheminement": "THORAME BASSE", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04218"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fbd6d31c463314cc735dda980d60fdb1022dab", "fields": {"nom_de_la_commune": "LES THUILES", "libell_d_acheminement": "LES THUILES", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04220"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2469299fe93f88dd569d6d2317207760fb9d8e1", "fields": {"nom_de_la_commune": "TURRIERS", "libell_d_acheminement": "TURRIERS", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04222"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3bb4833aed7e4cea7a049db60937dc37314e3f7", "fields": {"nom_de_la_commune": "VAUMEILH", "libell_d_acheminement": "VAUMEILH", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04233"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f686f9e19c997c965553e0d0452bc9bb42fc4e83", "fields": {"nom_de_la_commune": "VALBELLE", "libell_d_acheminement": "VALBELLE", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04229"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c56bfa1b095f8cd0e4ee72ee3e804f4c77ef8b", "fields": {"nom_de_la_commune": "VERGONS", "libell_d_acheminement": "VERGONS", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04236"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4477cf93066eee34cb0c9f939c1440f78325b61", "fields": {"nom_de_la_commune": "ARVIEUX", "libell_d_acheminement": "ARVIEUX", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05007"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6287ecf14ea2b8e8c47e481134db6f9704792c78", "fields": {"nom_de_la_commune": "VOLX", "libell_d_acheminement": "VOLX", "code_postal": "04130", "coordonnees_gps": [43.8709997463, 5.83152909097], "code_commune_insee": "04245"}, "geometry": {"type": "Point", "coordinates": [5.83152909097, 43.8709997463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d70a4b4267d7e4fd9f2cd2b6153775f3a6b2912", "fields": {"nom_de_la_commune": "ST MAURICE EN VALGODEMARD", "libell_d_acheminement": "ST MAURICE EN VALGODEMARD", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05152"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591e799aab5ade55cef733997bd9c38da80f24eb", "fields": {"nom_de_la_commune": "ST JULIEN EN CHAMPSAUR", "libell_d_acheminement": "ST JULIEN EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05147"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f8b9269e3903d54594df1227d809862a816e39", "fields": {"nom_de_la_commune": "ST ANDRE DE ROSANS", "libell_d_acheminement": "ST ANDRE DE ROSANS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05129"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1bc667c01247327bbc98a60bb185b2e7592a47", "fields": {"nom_de_la_commune": "ST CHAFFREY", "libell_d_acheminement": "ST CHAFFREY", "code_postal": "05330", "coordonnees_gps": [44.9346582411, 6.6007961866], "code_commune_insee": "05133"}, "geometry": {"type": "Point", "coordinates": [6.6007961866, 44.9346582411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd5f54afac022d77913ef0ec9b0bc4ecf7b8d25", "fields": {"nom_de_la_commune": "LE DEVOLUY", "libell_d_acheminement": "LE DEVOLUY", "code_postal": "05250", "coordonnees_gps": [44.6849532625, 5.89081686523], "code_commune_insee": "05139"}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "640343ff7ea486ec3ef04c34066436ce84ed3d95", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05150"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ac21a5dad3995c2298de85495f7fb34efe858c", "fields": {"code_postal": "06750", "code_commune_insee": "06003", "libell_d_acheminement": "ANDON", "ligne_5": "THORENC", "nom_de_la_commune": "ANDON", "coordonnees_gps": [43.7770802464, 6.7641665855]}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0dd85dc288a3fb98ff13842dff97bc59f381c3", "fields": {"nom_de_la_commune": "LE BAR SUR LOUP", "libell_d_acheminement": "LE BAR SUR LOUP", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06010"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752dcbee9e97a00bd54c644a79f90705d2868623", "fields": {"nom_de_la_commune": "BREIL SUR ROYA", "libell_d_acheminement": "BREIL SUR ROYA", "code_postal": "06540", "coordonnees_gps": [43.9800223211, 7.52586230957], "code_commune_insee": "06023"}, "geometry": {"type": "Point", "coordinates": [7.52586230957, 43.9800223211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9adde4efc532b4310c87f89c09410f2f7281ec8", "fields": {"nom_de_la_commune": "CAGNES SUR MER", "libell_d_acheminement": "CAGNES SUR MER", "code_postal": "06800", "coordonnees_gps": [43.6717115004, 7.15221251149], "code_commune_insee": "06027"}, "geometry": {"type": "Point", "coordinates": [7.15221251149, 43.6717115004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2569c3359bf4618b286ec9cfe846cc194ccde74", "fields": {"nom_de_la_commune": "ASPREMONT", "libell_d_acheminement": "ASPREMONT", "code_postal": "06790", "coordonnees_gps": [43.7755045851, 7.24457971987], "code_commune_insee": "06006"}, "geometry": {"type": "Point", "coordinates": [7.24457971987, 43.7755045851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "451d2c33c538fa704cfa156924bc24e040549e24", "fields": {"nom_de_la_commune": "AIGLUN", "libell_d_acheminement": "AIGLUN", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06001"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebdf6b8bce890bfa81343672669e01c64372c398", "fields": {"nom_de_la_commune": "AMIRAT", "libell_d_acheminement": "AMIRAT", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06002"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4fb32ab12e1760a3682e068a81cd02df6846e2", "fields": {"nom_de_la_commune": "CAILLE", "libell_d_acheminement": "CAILLE", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06028"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777a0f74c915ce493fbab90354bf8e218f3310c7", "fields": {"nom_de_la_commune": "BEUIL", "libell_d_acheminement": "BEUIL", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06016"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b64979723251a4fb280d529037921a01ae0ab3", "fields": {"code_postal": "06130", "code_commune_insee": "06069", "libell_d_acheminement": "GRASSE", "ligne_5": "LE PLAN DE GRASSE", "nom_de_la_commune": "GRASSE", "coordonnees_gps": [43.6557670284, 6.93183304936]}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796fe63f51901c08303ed884c2e9545e76f48d6a", "fields": {"code_postal": "06520", "code_commune_insee": "06069", "libell_d_acheminement": "GRASSE", "ligne_5": "MAGAGNOSC", "nom_de_la_commune": "GRASSE", "coordonnees_gps": [43.6557670284, 6.93183304936]}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18507e3f334669956124a97867fc5f35fac3aff3", "fields": {"nom_de_la_commune": "COLLONGUES", "libell_d_acheminement": "COLLONGUES", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06045"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097551cd0ae9722e9880089dc6e211a92c058469", "fields": {"nom_de_la_commune": "CONSEGUDES", "libell_d_acheminement": "CONSEGUDES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06047"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb8603b45a8b632c5e09d2f67b788d13e75d1ebe", "fields": {"nom_de_la_commune": "CAP D AIL", "libell_d_acheminement": "CAP D AIL", "code_postal": "06320", "coordonnees_gps": [43.7404520537, 7.39846914834], "code_commune_insee": "06032"}, "geometry": {"type": "Point", "coordinates": [7.39846914834, 43.7404520537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7b788007fa36db9e2eff97e9da56e7036abcae", "fields": {"nom_de_la_commune": "COLOMARS", "libell_d_acheminement": "COLOMARS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06046"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed47187a693506fffc6f72b71bbdcff0f5d6ddfe", "fields": {"nom_de_la_commune": "CAUSSOLS", "libell_d_acheminement": "CAUSSOLS", "code_postal": "06460", "coordonnees_gps": [43.715574812, 6.8479951556], "code_commune_insee": "06037"}, "geometry": {"type": "Point", "coordinates": [6.8479951556, 43.715574812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd21365e2d333866917bfbfc04d17434beec9019", "fields": {"nom_de_la_commune": "COURMES", "libell_d_acheminement": "COURMES", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06049"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328f8d8bcc8f22dd690aedb6b6ef09019a96895b", "fields": {"nom_de_la_commune": "DURANUS", "libell_d_acheminement": "DURANUS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06055"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075d6482e5907be301c7ae8e0acd942687b4eabe", "fields": {"nom_de_la_commune": "FONTAN", "libell_d_acheminement": "FONTAN", "code_postal": "06540", "coordonnees_gps": [43.9800223211, 7.52586230957], "code_commune_insee": "06062"}, "geometry": {"type": "Point", "coordinates": [7.52586230957, 43.9800223211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb46a48f28717ad14fdc274c8a2a62051874e9c9", "fields": {"nom_de_la_commune": "ST ETIENNE DE FONTBELLON", "libell_d_acheminement": "ST ETIENNE DE FONTBELLON", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07231"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fddf7be53b053d3280e8e4713a6406d66fef6a9", "fields": {"nom_de_la_commune": "ST ANDRE DE CRUZIERES", "libell_d_acheminement": "ST ANDRE DE CRUZIERES", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07211"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc151b21505271722f641827e8b1a2108ea391f", "fields": {"nom_de_la_commune": "ST ALBAN EN MONTAGNE", "libell_d_acheminement": "ST ALBAN EN MONTAGNE", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07206"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97230ef2a9cc52642a03d85dc8ca994559b6e854", "fields": {"nom_de_la_commune": "ST CIRGUES DE PRADES", "libell_d_acheminement": "ST CIRGUES DE PRADES", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07223"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326f261f8626495da219ad7320297c633731cc3c", "fields": {"nom_de_la_commune": "ROCHECOLOMBE", "libell_d_acheminement": "ROCHECOLOMBE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07190"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f61f405b90259792876ea1f78123cd17618855", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07195"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5509102227b714efdac72212be5a387b619659", "fields": {"nom_de_la_commune": "ST DESIRAT", "libell_d_acheminement": "ST DESIRAT", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07228"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe39c524edc558292ef809f3caec807d3c18ee3c", "fields": {"nom_de_la_commune": "MONPARDIAC", "libell_d_acheminement": "MONPARDIAC", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32275"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab5d78925df478af7e093285771003bf6146b9", "fields": {"nom_de_la_commune": "MONTEGUT ARROS", "libell_d_acheminement": "MONTEGUT ARROS", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32283"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4fbf4bfaaf7dc046775707bbe78db8a420fca0", "fields": {"nom_de_la_commune": "MONTEGUT SAVES", "libell_d_acheminement": "MONTEGUT SAVES", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32284"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c567530bd5e9f5394f2d777f1be6f526138bdeb", "fields": {"nom_de_la_commune": "MONTESQUIOU", "libell_d_acheminement": "MONTESQUIOU", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32285"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed5189c9683d715f14e81cf44436407af0a8db5", "fields": {"nom_de_la_commune": "MONTESTRUC SUR GERS", "libell_d_acheminement": "MONTESTRUC SUR GERS", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32286"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73fd5150210fc79899978c045d735eef3212943", "fields": {"nom_de_la_commune": "MONTPEZAT", "libell_d_acheminement": "MONTPEZAT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32289"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45405e25cd3b9b914fdff59e0bd1d7bfbacecc53", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL DU GERS", "code_postal": "32250", "coordonnees_gps": [43.956623436, 0.171871761576], "code_commune_insee": "32290"}, "geometry": {"type": "Point", "coordinates": [0.171871761576, 43.956623436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4d644cea2fbe486117181cd0643c23e4254195", "fields": {"nom_de_la_commune": "NIZAS", "libell_d_acheminement": "NIZAS", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32295"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94ca05e037b0b94a5980f497c0891efa8aa4b3d", "fields": {"nom_de_la_commune": "PAVIE", "libell_d_acheminement": "PAVIE", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32307"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3786154e73f016ae8ccfc718ff4a9b4a9518bdf6", "fields": {"nom_de_la_commune": "PELLEFIGUE", "libell_d_acheminement": "PELLEFIGUE", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32309"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e9b834aeab3963fa7713a23c40500759f0c5c9", "fields": {"nom_de_la_commune": "PLIEUX", "libell_d_acheminement": "PLIEUX", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32320"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16faadc08a46bd87eabde924951fc74dd274f1a", "fields": {"nom_de_la_commune": "POLASTRON", "libell_d_acheminement": "POLASTRON", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32321"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9edd0b1d61eec13fb182735eef597e8b124570cf", "fields": {"nom_de_la_commune": "LA ROMIEU", "libell_d_acheminement": "LA ROMIEU", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32345"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "055528815563b09be5367fac8c582cfb63cf78ea", "fields": {"nom_de_la_commune": "ROQUEBRUNE", "libell_d_acheminement": "ROQUEBRUNE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32346"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f767f78899b40f1abdb27319703533a9f3821e", "fields": {"nom_de_la_commune": "ROQUELAURE ST AUBIN", "libell_d_acheminement": "ROQUELAURE ST AUBIN", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32349"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693f4c636cd70dc391e02a98f518bcc9036a1876", "fields": {"nom_de_la_commune": "ROQUES", "libell_d_acheminement": "ROQUES", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32351"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58156d1e3410d3c5fd61fe78fe499d95d53a8aca", "fields": {"nom_de_la_commune": "SABAZAN", "libell_d_acheminement": "SABAZAN", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32354"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f9a4e49016e01afb8b4afb39c64e518610bce9", "fields": {"nom_de_la_commune": "STE AURENCE CAZAUX", "libell_d_acheminement": "STE AURENCE CAZAUX", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32363"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adcf059e0b672da3dcd6ed7a9d0cf7e0b2d1da7", "fields": {"nom_de_la_commune": "ST BLANCARD", "libell_d_acheminement": "ST BLANCARD", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32365"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829885de2bb6234282b9e8764a3a092c9e8f9f75", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32377"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12dc9c70b7cc25ae7ff6d704c1e69ade292ab143", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32379"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b026dc974618a4459782e24ac9e15cf2d1c835", "fields": {"nom_de_la_commune": "ST MEZARD", "libell_d_acheminement": "ST MEZARD", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32396"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9854fb7ab574ead0f2313b24686ecb1d0518449a", "fields": {"nom_de_la_commune": "ST MONT", "libell_d_acheminement": "ST MONT", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32398"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b0d3d2d935112a9d436a83ad41c089c90dcaba", "fields": {"nom_de_la_commune": "ST PIERRE D AUBEZIES", "libell_d_acheminement": "ST PIERRE D AUBEZIES", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32403"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa6b3a92aef20be04fc47531b7ecc6c25793231", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32405"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff7a2731ae0f5e4ec98576382ebdf8bf53b9ec4", "fields": {"nom_de_la_commune": "SARAMON", "libell_d_acheminement": "SARAMON", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32412"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a1cc35dfbfeb612c131f705b5d82a034c65e88", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32418"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce87615a2efda62f32ef0dd434bddf50e6b3bb31", "fields": {"nom_de_la_commune": "SEGOUFIELLE", "libell_d_acheminement": "SEGOUFIELLE", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32425"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa206ed62070cad1f19df28340b6dd8784e04dc", "fields": {"nom_de_la_commune": "SEREMPUY", "libell_d_acheminement": "SEREMPUY", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32431"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1820ec24919683ac5a35c34c569dd0eb49a4d3b4", "fields": {"nom_de_la_commune": "TACHOIRES", "libell_d_acheminement": "TACHOIRES", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32438"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e334442bd54bfe78460251b76c6a5133575ddd", "fields": {"nom_de_la_commune": "TERRAUBE", "libell_d_acheminement": "TERRAUBE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32442"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4fcc23ff7f6095b745f4f1aaea50698b4134b05", "fields": {"nom_de_la_commune": "TOUGET", "libell_d_acheminement": "TOUGET", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32448"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4236481b48ef71ba688e6e0f53652025b686e3", "fields": {"nom_de_la_commune": "TRONCENS", "libell_d_acheminement": "TRONCENS", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32455"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91646ea72caf090e3396c70514be16f18ab067d1", "fields": {"nom_de_la_commune": "VILLEFRANCHE", "libell_d_acheminement": "VILLEFRANCHE", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32465"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c808c347a4c60bd4c0142ba62cfa41d5d17b101f", "fields": {"nom_de_la_commune": "VIOZAN", "libell_d_acheminement": "VIOZAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32466"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc23939c68912e193ceced091d74148a2a4844ee", "fields": {"nom_de_la_commune": "AMBARES ET LAGRAVE", "libell_d_acheminement": "AMBARES ET LAGRAVE", "code_postal": "33440", "coordonnees_gps": [44.9552105783, -0.50282224185], "code_commune_insee": "33003"}, "geometry": {"type": "Point", "coordinates": [-0.50282224185, 44.9552105783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5089d66dfc58a5cc1cd031b82427a1be713c61c", "fields": {"nom_de_la_commune": "AMBES", "libell_d_acheminement": "AMBES", "code_postal": "33810", "coordonnees_gps": [45.0120006102, -0.548920469716], "code_commune_insee": "33004"}, "geometry": {"type": "Point", "coordinates": [-0.548920469716, 45.0120006102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fb678e0aad2541e03a7d1563eeebb4051dab70", "fields": {"nom_de_la_commune": "ARBIS", "libell_d_acheminement": "ARBIS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33008"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac9cc2d3deb03bfc9d755b71525d94396f99fd7", "fields": {"nom_de_la_commune": "ARCINS", "libell_d_acheminement": "ARCINS", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33010"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50c03e0ddedb62e0a5fef7fa03097d2d3bde6b9", "fields": {"nom_de_la_commune": "ARTIGUES PRES BORDEAUX", "libell_d_acheminement": "ARTIGUES PRES BORDEAUX", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33013"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90337b80dd60af8f08050e0a40c9f821114c1188", "fields": {"nom_de_la_commune": "AUBIAC", "libell_d_acheminement": "AUBIAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33017"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49a60a6f87184519a3ef7a41ab064c7831e0365", "fields": {"nom_de_la_commune": "AUDENGE", "libell_d_acheminement": "AUDENGE", "code_postal": "33980", "coordonnees_gps": [44.7141991312, -0.944070323515], "code_commune_insee": "33019"}, "geometry": {"type": "Point", "coordinates": [-0.944070323515, 44.7141991312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96adf7588a0a4f930422094bacec066175b30e10", "fields": {"nom_de_la_commune": "AURIOLLES", "libell_d_acheminement": "AURIOLLES", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33020"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379d39a913ec4770a13ce3d27b3ad05f6357345a", "fields": {"nom_de_la_commune": "AUROS", "libell_d_acheminement": "AUROS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33021"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65e38ce3e31d3dc9df6b3d72bd443d22aa38a14", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33028"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9f08ebac24c04717ebe6c79b141d330d690855", "fields": {"nom_de_la_commune": "BASSENS", "libell_d_acheminement": "BASSENS", "code_postal": "33530", "coordonnees_gps": [44.9079628339, -0.525179074019], "code_commune_insee": "33032"}, "geometry": {"type": "Point", "coordinates": [-0.525179074019, 44.9079628339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3bf7b027e8ab2b8868e8d8802f28e57d53c86eb", "fields": {"nom_de_la_commune": "BAYAS", "libell_d_acheminement": "BAYAS", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33034"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f13957bbeb78fea02c50656acbdf02982da3bc", "fields": {"nom_de_la_commune": "BELIN BELIET", "libell_d_acheminement": "BELIN BELIET", "code_postal": "33830", "coordonnees_gps": [44.48117634, -0.823096035056], "code_commune_insee": "33042"}, "geometry": {"type": "Point", "coordinates": [-0.823096035056, 44.48117634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e650d9f5ac5e49777dba7a5e8f0561989dc3664", "fields": {"nom_de_la_commune": "BELLEBAT", "libell_d_acheminement": "BELLEBAT", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33043"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e57972d04e2fe1c396eb68c35516e6e7e06e15", "fields": {"nom_de_la_commune": "BELLEFOND", "libell_d_acheminement": "BELLEFOND", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33044"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc9dd34d7c613a09e3d4aa08e0fc6a34e1d2e1b4", "fields": {"nom_de_la_commune": "LES BILLAUX", "libell_d_acheminement": "LES BILLAUX", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33052"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cae73f909dda34783d53a6f3e87ff524b5bc0ad", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33800", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f356cea64f4454d78b4ce63e8f23e42d826d110", "fields": {"nom_de_la_commune": "LE BOUSCAT", "libell_d_acheminement": "LE BOUSCAT", "code_postal": "33110", "coordonnees_gps": [44.8659375711, -0.603044809188], "code_commune_insee": "33069"}, "geometry": {"type": "Point", "coordinates": [-0.603044809188, 44.8659375711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e194a52f577e9453a0a03d17397d95d3e723d3", "fields": {"nom_de_la_commune": "CAMBES", "libell_d_acheminement": "CAMBES", "code_postal": "33880", "coordonnees_gps": [44.7419112231, -0.437846181859], "code_commune_insee": "33084"}, "geometry": {"type": "Point", "coordinates": [-0.437846181859, 44.7419112231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a1dec1e2326fafa758bbdc01f9e90a545f0844", "fields": {"nom_de_la_commune": "FRAISSE DES CORBIERES", "libell_d_acheminement": "FRAISSE DES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11157"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce52e4cac87690a6c17350fecb11928eeea596d", "fields": {"nom_de_la_commune": "LABASTIDE D ANJOU", "libell_d_acheminement": "LABASTIDE D ANJOU", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11178"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b6fd569983633dcd0d82cec4b8ed76c632fc04", "fields": {"nom_de_la_commune": "FONTIERS CABARDES", "libell_d_acheminement": "FONTIERS CABARDES", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11150"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7713f5a4d341bc3b4017cbeb2f2b40352fb1ac51", "fields": {"nom_de_la_commune": "FOURNES CABARDES", "libell_d_acheminement": "FOURNES CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11154"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09048ecbc1e674a1f48e557c3e207e1fc6f33cb", "fields": {"nom_de_la_commune": "LABASTIDE EN VAL", "libell_d_acheminement": "LABASTIDE EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11179"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aac24d827edcca7e65240c335a78ea620a7ba39", "fields": {"nom_de_la_commune": "GAJA LA SELVE", "libell_d_acheminement": "GAJA LA SELVE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11159"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126c42df21634bc38dd0a74092da1e34a8e40de9", "fields": {"nom_de_la_commune": "GOURVIEILLE", "libell_d_acheminement": "GOURVIEILLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11166"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a67ceec24353960eb4fefe9546863e4f8db690", "fields": {"nom_de_la_commune": "LASTOURS", "libell_d_acheminement": "LASTOURS", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11194"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873f3bbfd57af103bb4a16613083ff2ea5613f1e", "fields": {"nom_de_la_commune": "LA PALME", "libell_d_acheminement": "LA PALME", "code_postal": "11480", "coordonnees_gps": [42.9654203801, 2.99489456678], "code_commune_insee": "11188"}, "geometry": {"type": "Point", "coordinates": [2.99489456678, 42.9654203801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8ee4c309fd0161ffc717ffb18ddfa771103561", "fields": {"nom_de_la_commune": "GRANES", "libell_d_acheminement": "GRANES", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11168"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd510fd44f6ed3565e2c684d625459eeb04a2a4e", "fields": {"nom_de_la_commune": "CONQUES SUR ORBIEL", "libell_d_acheminement": "CONQUES SUR ORBIEL", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11099"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa15da64ba164e45674a40eba54eafb19c6a6f2d", "fields": {"nom_de_la_commune": "ARGENS MINERVOIS", "libell_d_acheminement": "ARGENS MINERVOIS", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11013"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef0dcafb59140bf573034683025629505ced34e", "fields": {"nom_de_la_commune": "CASTELNAU D AUDE", "libell_d_acheminement": "CASTELNAU D AUDE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11077"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d990c6eb4e72d2b166d3c984e080514f95ea997", "fields": {"nom_de_la_commune": "CAMPLONG D AUDE", "libell_d_acheminement": "CAMPLONG D AUDE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11064"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1d5198dfced4f927cc5bcb5e08b98c5459e56c", "fields": {"nom_de_la_commune": "LA CASSAIGNE", "libell_d_acheminement": "LA CASSAIGNE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11072"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812ad410bfb3f6a839b6f1545d9d3f5c8710d5af", "fields": {"nom_de_la_commune": "CARCASSONNE", "libell_d_acheminement": "CARCASSONNE", "code_postal": "11000", "coordonnees_gps": [43.2094356992, 2.34683719247], "code_commune_insee": "11069"}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ad09111f393b9ccb11e1433ad862790d02b0a9", "fields": {"nom_de_la_commune": "CAUDEBRONDE", "libell_d_acheminement": "CAUDEBRONDE", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11079"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de360fd03ac51f23f261e7f0b1f6fb3fbb03e787", "fields": {"nom_de_la_commune": "COUSTOUGE", "libell_d_acheminement": "COUSTOUGE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11110"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e32326a1b274cc57e6e3552d25110754a53bb06", "fields": {"nom_de_la_commune": "LE CLAT", "libell_d_acheminement": "LE CLAT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11093"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e696ea1302cf4331cad3b1a48d34a4d4e3d34c8d", "fields": {"nom_de_la_commune": "CAMURAC", "libell_d_acheminement": "CAMURAC", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11066"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea6f501997f86c74d5d89e2ef899147c15be51ce", "fields": {"nom_de_la_commune": "EMBRES ET CASTELMAURE", "libell_d_acheminement": "EMBRES ET CASTELMAURE", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11125"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e6482a8add4800784686a69767d7665bee3f39", "fields": {"nom_de_la_commune": "DURBAN CORBIERES", "libell_d_acheminement": "DURBAN CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11124"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f1d774ec0e174098a89fcd7bf27223f69e7f4d", "fields": {"nom_de_la_commune": "CUXAC D AUDE", "libell_d_acheminement": "CUXAC D AUDE", "code_postal": "11590", "coordonnees_gps": [43.2767571577, 2.97534639195], "code_commune_insee": "11116"}, "geometry": {"type": "Point", "coordinates": [2.97534639195, 43.2767571577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f7ce4695f58b4c28407447001053b3d7829612", "fields": {"nom_de_la_commune": "ESCOULOUBRE", "libell_d_acheminement": "ESCOULOUBRE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11127"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479d8576edbcae47342dd2f2f76b0fdb75d12221", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY D AUDE", "code_postal": "11560", "coordonnees_gps": [43.2147091577, 3.17586928997], "code_commune_insee": "11145"}, "geometry": {"type": "Point", "coordinates": [3.17586928997, 43.2147091577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70dca613353c3c396056ebe5b9a2e397c9e70756", "fields": {"nom_de_la_commune": "FANJEAUX", "libell_d_acheminement": "FANJEAUX", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11136"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9560507638e329ac77711971929ef40a41339622", "fields": {"nom_de_la_commune": "FABREZAN", "libell_d_acheminement": "FABREZAN", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11132"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1b03761a2e2115fd7b3702374117610cf49f1d", "fields": {"nom_de_la_commune": "DOUZENS", "libell_d_acheminement": "DOUZENS", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11122"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2455412c040c8a814ea28511d7a7f20e6f14924", "fields": {"nom_de_la_commune": "ESCALES", "libell_d_acheminement": "ESCALES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11126"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a826c8d6399ea4a79b68f10a5ba9765b50972f", "fields": {"nom_de_la_commune": "CUMIES", "libell_d_acheminement": "CUMIES", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11114"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd91e330db5d553708c2aa13031c6d1bf25d732a", "fields": {"nom_de_la_commune": "VERNONVILLIERS", "libell_d_acheminement": "VERNONVILLIERS", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10403"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d883953e31559833f25a77f08de4374bf42498", "fields": {"nom_de_la_commune": "VILLEMEREUIL", "libell_d_acheminement": "VILLEMEREUIL", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10416"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d473f7d918fc02679dae8926e26a9c6e89fff91", "fields": {"nom_de_la_commune": "VAUPOISSON", "libell_d_acheminement": "VAUPOISSON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10400"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c843ab4786bca72386d02a12cfa9bbb152fbd39d", "fields": {"nom_de_la_commune": "THIEFFRAIN", "libell_d_acheminement": "THIEFFRAIN", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10376"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29631fdbe6861b102f3445a5542430053c663d96", "fields": {"nom_de_la_commune": "SAVIERES", "libell_d_acheminement": "SAVIERES", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10368"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f34cd76f29ba725ed6db974dc3aaa5a912d070", "fields": {"nom_de_la_commune": "ST USAGE", "libell_d_acheminement": "ST USAGE", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10364"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1037a7064e87151e0836b5bd8d8b93d4ba65fc", "fields": {"nom_de_la_commune": "TRANNES", "libell_d_acheminement": "TRANNES", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10384"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7885303d43933da79674a98fc79095f0a259c17b", "fields": {"nom_de_la_commune": "VAILLY", "libell_d_acheminement": "VAILLY", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10391"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb44188c52093a00c77d618892f6fa5c62deaf2", "fields": {"nom_de_la_commune": "VANLAY", "libell_d_acheminement": "VANLAY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10395"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3bb2355cdd1fcac41037731ea3fbd4cae825dae", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10377"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f86cf573d9aa28eb3cc6ef3a9633af9eb9286326", "fields": {"nom_de_la_commune": "BUGARACH", "libell_d_acheminement": "BUGARACH", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11055"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "978853ea95986588e18346cd255a88840fbba733", "fields": {"nom_de_la_commune": "BERRIAC", "libell_d_acheminement": "BERRIAC", "code_postal": "11000", "coordonnees_gps": [43.2094356992, 2.34683719247], "code_commune_insee": "11037"}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "412dc80f4e39a98b9c1a7c6af35fcbdf73bdda8c", "fields": {"nom_de_la_commune": "CAHUZAC", "libell_d_acheminement": "CAHUZAC", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11057"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92b8c122bde41462976dc85f82df75e144d5448", "fields": {"nom_de_la_commune": "ARQUES", "libell_d_acheminement": "ARQUES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11015"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01533a5f748df16b735422c301188d95aa67894", "fields": {"nom_de_la_commune": "BELVIS", "libell_d_acheminement": "BELVIS", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11036"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1391ca9770edf6f8be5bc47ddfe633bef11d74f0", "fields": {"nom_de_la_commune": "ARZENS", "libell_d_acheminement": "ARZENS", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11018"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ffb2315fe37fa66e7c1d4e476eeaedb54490e3", "fields": {"nom_de_la_commune": "ALLAN", "libell_d_acheminement": "ALLAN", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26005"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7fa655e0177cd779cec9e19e342f1ad02ed9be3", "fields": {"nom_de_la_commune": "ARPAVON", "libell_d_acheminement": "ARPAVON", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26013"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfde0be1a545030d1273895a346701d792feac23", "fields": {"nom_de_la_commune": "BARCELONNE", "libell_d_acheminement": "BARCELONNE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26024"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d88c4666d5289e4ba699522b870d3e71b808ad", "fields": {"nom_de_la_commune": "BARNAVE", "libell_d_acheminement": "BARNAVE", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26025"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdf52832f5d58499f11389c96d859467d9d3bb0f", "fields": {"nom_de_la_commune": "BARRET DE LIOURE", "libell_d_acheminement": "BARRET DE LIOURE", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26026"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6cfd3a68b3bae44f91306045fc8f3f77eeda88", "fields": {"nom_de_la_commune": "BARSAC", "libell_d_acheminement": "BARSAC", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26027"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8099a3a8c7cee7171f112dd301e0e106fe877bbc", "fields": {"nom_de_la_commune": "LA BAUME CORNILLANE", "libell_d_acheminement": "LA BAUME CORNILLANE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26032"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ffbe7d092989d22d4e1f79c6d68549d7610310", "fields": {"nom_de_la_commune": "BEAUFORT SUR GERVANNE", "libell_d_acheminement": "BEAUFORT SUR GERVANNE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26035"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e38889c8a1f270aed90eee37d60ef67316cbdb", "fields": {"nom_de_la_commune": "BEAUREGARD BARET", "libell_d_acheminement": "BEAUREGARD BARET", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26039"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7adb3043e7120d7f329ce12e1ea1f5dbbada669", "fields": {"nom_de_la_commune": "BEAURIERES", "libell_d_acheminement": "BEAURIERES", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26040"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e3e8645ca27ab21aa357f834fb7d4a64489f2e", "fields": {"nom_de_la_commune": "BEAUSEMBLANT", "libell_d_acheminement": "BEAUSEMBLANT", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26041"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0829a6b7ff0d56f09af73887d77504f9d7231c2e", "fields": {"nom_de_la_commune": "BOURG LES VALENCE", "libell_d_acheminement": "BOURG LES VALENCE", "code_postal": "26500", "coordonnees_gps": [44.9652676946, 4.89437585369], "code_commune_insee": "26058"}, "geometry": {"type": "Point", "coordinates": [4.89437585369, 44.9652676946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e779ee7645ad3bb3a4f188b931ba0af994f1c324", "fields": {"nom_de_la_commune": "BOUVANTE", "libell_d_acheminement": "BOUVANTE", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26059"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d796b007e491fd24de12a6ab8cb6c77414108ad", "fields": {"nom_de_la_commune": "CHABRILLAN", "libell_d_acheminement": "CHABRILLAN", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26065"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe735172b9521b17536aa286669be78f93a762f", "fields": {"nom_de_la_commune": "CHARMES SUR L HERBASSE", "libell_d_acheminement": "CHARMES SUR L HERBASSE", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26077"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a8d4093c8fbe7dd2cb99811879fb587c81da80", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE GALAURE", "libell_d_acheminement": "CHATEAUNEUF DE GALAURE", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26083"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476c24ed01132df70f30b7b437c8390dacef3b3a", "fields": {"nom_de_la_commune": "CHAUDEBONNE", "libell_d_acheminement": "CHAUDEBONNE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26089"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b12d78e3ae8cec4fc0632a6e0be99c1d3a4c23", "fields": {"nom_de_la_commune": "LA CHAUDIERE", "libell_d_acheminement": "LA CHAUDIERE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26090"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81676cec60c7e2ae1b3b7b9fba3cdb98983aebf2", "fields": {"nom_de_la_commune": "CLAVEYSON", "libell_d_acheminement": "CLAVEYSON", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26094"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ee018e4c68fce615c817d411823ff41f152081", "fields": {"nom_de_la_commune": "CLEON D ANDRAN", "libell_d_acheminement": "CLEON D ANDRAN", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26095"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea6fbb2f7f1f6574b766cef569b77efe0539730", "fields": {"nom_de_la_commune": "CONDORCET", "libell_d_acheminement": "CONDORCET", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26103"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "489bff5cac32ab7486b34af70b8dc1af209ce95d", "fields": {"nom_de_la_commune": "CURNIER", "libell_d_acheminement": "CURNIER", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26112"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f7bd906419d9c5f16f6090058b13c55bb7d062", "fields": {"nom_de_la_commune": "DIE", "libell_d_acheminement": "DIE", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26113"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a00832af22277ea00fdd3c55deab16e5b99e3c", "fields": {"nom_de_la_commune": "DIVAJEU", "libell_d_acheminement": "DIVAJEU", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26115"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4f2b8c88db737c0a8580a325e118feec3f49a4f", "fields": {"code_postal": "26800", "code_commune_insee": "26124", "libell_d_acheminement": "ETOILE SUR RHONE", "ligne_5": "LA PAILLASSE", "nom_de_la_commune": "ETOILE SUR RHONE", "coordonnees_gps": [44.8326704656, 4.89052463788]}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f64dcdc810f5ee1eb2896ea91c8a8092b43e8f8", "fields": {"nom_de_la_commune": "FRANCILLON SUR ROUBION", "libell_d_acheminement": "FRANCILLON SUR ROUBION", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26137"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d3ecc4f23b6d3e3a9ca1b5a683d2b30f754b76", "fields": {"nom_de_la_commune": "LA GARDE ADHEMAR", "libell_d_acheminement": "LA GARDE ADHEMAR", "code_postal": "26700", "coordonnees_gps": [44.3718503232, 4.71003849979], "code_commune_insee": "26138"}, "geometry": {"type": "Point", "coordinates": [4.71003849979, 44.3718503232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "170b58521e0fcbc0ffa24d2a94783e199b2c2fa3", "fields": {"nom_de_la_commune": "GENISSIEUX", "libell_d_acheminement": "GENISSIEUX", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26139"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d14d001f47c61a4c5b550e9d72d7a577fe29326", "fields": {"nom_de_la_commune": "GIGORS ET LOZERON", "libell_d_acheminement": "GIGORS ET LOZERON", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26141"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a0d03672f2995ebaa1031de3d6e2c2c4dbdeee7", "fields": {"nom_de_la_commune": "HOSTUN", "libell_d_acheminement": "HOSTUN", "code_postal": "26730", "coordonnees_gps": [45.0482944782, 5.20163673449], "code_commune_insee": "26149"}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e12f5c6f1f743ad08538f2e8c6abfc426e8ca87", "fields": {"nom_de_la_commune": "IZON LA BRUISSE", "libell_d_acheminement": "IZON LA BRUISSE", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26150"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe46b0252c58828bb078caa86c11177268d76769", "fields": {"nom_de_la_commune": "LORIOL SUR DROME", "libell_d_acheminement": "LORIOL SUR DROME", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26166"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19646ea455cc0068730ae385018820dad03db1aa", "fields": {"nom_de_la_commune": "MANAS", "libell_d_acheminement": "MANAS", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26171"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5f0e6d324b9f633e32148848ac19d2c1e84a19", "fields": {"nom_de_la_commune": "MARSAZ", "libell_d_acheminement": "MARSAZ", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26177"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d62d2330bc359dcf7c956a5308d7414b596a29", "fields": {"nom_de_la_commune": "MENGLON", "libell_d_acheminement": "MENGLON", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26178"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02b9e1e9a0224571793cdbbcc76ff47aa18a84d", "fields": {"nom_de_la_commune": "MERINDOL LES OLIVIERS", "libell_d_acheminement": "MERINDOL LES OLIVIERS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26180"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761cd3712478ad9dd1ac67af25283e51f8cbfe3f", "fields": {"nom_de_la_commune": "MEVOUILLON", "libell_d_acheminement": "MEVOUILLON", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26181"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8de7f2425a85837a9abae0a83e9fc28b44ae5c2", "fields": {"nom_de_la_commune": "MIRABEL ET BLACONS", "libell_d_acheminement": "MIRABEL ET BLACONS", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26183"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2243c68aa6ee7b75ef00557608bc896fec7aa9", "fields": {"nom_de_la_commune": "MIRIBEL", "libell_d_acheminement": "MIRIBEL", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26184"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4858c0bc15e1cad059de78002b72ad24586b33", "fields": {"nom_de_la_commune": "MONTBRISON SUR LEZ", "libell_d_acheminement": "MONTBRISON SUR LEZ", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26192"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a77cb5f71dcb85b9fc5349131e8450101567eb8", "fields": {"nom_de_la_commune": "MONTBRUN LES BAINS", "libell_d_acheminement": "MONTBRUN LES BAINS", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26193"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bb9ac8a1a851906223d3773b8c8a6b06ceb130", "fields": {"nom_de_la_commune": "MONTGUERS", "libell_d_acheminement": "MONTGUERS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26201"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527dd27ea59550d78851adae2bed0790045d8257", "fields": {"nom_de_la_commune": "MONTLAUR EN DIOIS", "libell_d_acheminement": "MONTLAUR EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26204"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539ecf34695fdcd208085b42f46c726405cfad39", "fields": {"nom_de_la_commune": "MONTMIRAL", "libell_d_acheminement": "MONTMIRAL", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26207"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44c442fceaf4b5df9e8a28020813fe08b97db70", "fields": {"nom_de_la_commune": "LA MOTTE DE GALAURE", "libell_d_acheminement": "LA MOTTE DE GALAURE", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26216"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c88ecc2ed746a4baae171bd0fb90cbeae72d81", "fields": {"nom_de_la_commune": "LE PEGUE", "libell_d_acheminement": "LE PEGUE", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26226"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3df40cdffa746dd8a38e283347d7e784a957d0", "fields": {"nom_de_la_commune": "PELONNE", "libell_d_acheminement": "PELONNE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26227"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6b8e3b99c816cfb48854a437bf8e018883f741", "fields": {"nom_de_la_commune": "PIEGON", "libell_d_acheminement": "PIEGON", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26233"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f1825d03d3909a0c7bc5f8ab9ecb30241a025d", "fields": {"nom_de_la_commune": "PIERRELATTE", "libell_d_acheminement": "PIERRELATTE", "code_postal": "26700", "coordonnees_gps": [44.3718503232, 4.71003849979], "code_commune_insee": "26235"}, "geometry": {"type": "Point", "coordinates": [4.71003849979, 44.3718503232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66dc97d0bab20d39ae587cdc7aa21c4e32592279", "fields": {"nom_de_la_commune": "LES PILLES", "libell_d_acheminement": "LES PILLES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26238"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef5e57c33ca323ffab0bf7a169af0e4038a7ddc", "fields": {"nom_de_la_commune": "LE POET EN PERCIP", "libell_d_acheminement": "LE POET EN PERCIP", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26242"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd1b8616329788e894eeeb4abce5a0e14dd9685", "fields": {"nom_de_la_commune": "PONET ET ST AUBAN", "libell_d_acheminement": "PONET ET ST AUBAN", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26246"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec8ac0a310f43fb7f7efd391be68e2ac879b44d2", "fields": {"nom_de_la_commune": "PONT DE BARRET", "libell_d_acheminement": "PONT DE BARRET", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26249"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a60615fb44e731831fbb4ea96b3cdbe8f0b26b", "fields": {"nom_de_la_commune": "PONT DE L ISERE", "libell_d_acheminement": "PONT DE L ISERE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26250"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29f56fc47913ce49b8fcc2495b734c04aec250b", "fields": {"nom_de_la_commune": "POYOLS", "libell_d_acheminement": "POYOLS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26253"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417ab975e2f5533bc4e1e6049880328dcd720ec1", "fields": {"nom_de_la_commune": "PUY ST MARTIN", "libell_d_acheminement": "PUY ST MARTIN", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26258"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c4973c8fb62f886a0e571bd3d551665e2ab88cf", "fields": {"nom_de_la_commune": "RATIERES", "libell_d_acheminement": "RATIERES", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26259"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4acfbf43ac8f3697a12b0c79f215fb7895c7cd23", "fields": {"code_postal": "26310", "code_commune_insee": "26262", "libell_d_acheminement": "RECOUBEAU JANSAC", "ligne_5": "JANSAC", "nom_de_la_commune": "RECOUBEAU JANSAC", "coordonnees_gps": [44.5689961906, 5.50488176905]}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84792afcb085cb0e23cb1e874cb78cd450fd2df", "fields": {"nom_de_la_commune": "RIMON ET SAVEL", "libell_d_acheminement": "RIMON ET SAVEL", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26266"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686c07e20f7bc4ef1e6d60f1f33eab9eeaffe581", "fields": {"nom_de_la_commune": "RIOMS", "libell_d_acheminement": "RIOMS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26267"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b619036b50c3424d4d88b23d0d5d3856dc0867", "fields": {"nom_de_la_commune": "ROCHEFOURCHAT", "libell_d_acheminement": "ROCHEFOURCHAT", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26274"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca83cf24940588824d09b36e0358a62a667a206", "fields": {"nom_de_la_commune": "ROMANS SUR ISERE", "libell_d_acheminement": "ROMANS SUR ISERE", "code_postal": "26100", "coordonnees_gps": [45.0550040559, 5.03828560506], "code_commune_insee": "26281"}, "geometry": {"type": "Point", "coordinates": [5.03828560506, 45.0550040559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c669ebe15b025eb8e6e29b17ae9f04ddbc76b42e", "fields": {"nom_de_la_commune": "ROUSSET LES VIGNES", "libell_d_acheminement": "ROUSSET LES VIGNES", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26285"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6bc64044e3c892701be804454eda945e93660b", "fields": {"code_postal": "26420", "code_commune_insee": "26290", "libell_d_acheminement": "ST AGNAN EN VERCORS", "ligne_5": "COL DE ROUSSET", "nom_de_la_commune": "ST AGNAN EN VERCORS", "coordonnees_gps": [44.9365927101, 5.42231201851]}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a62678cf12cb628d18a633152943276ab23f5a", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE VALS", "libell_d_acheminement": "ST BARTHELEMY DE VALS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26295"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8031d9b697b7483235dff7441a27381b8b6a7561", "fields": {"nom_de_la_commune": "ST BENOIT EN DIOIS", "libell_d_acheminement": "ST BENOIT EN DIOIS", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26296"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3dc93f6541e7836118f733bd119d17850029ca", "fields": {"nom_de_la_commune": "STE EUPHEMIE SUR OUVEZE", "libell_d_acheminement": "STE EUPHEMIE SUR OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26303"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c2f3b76a462553b98eff91067f3a01e757443a", "fields": {"nom_de_la_commune": "ST JULIEN EN QUINT", "libell_d_acheminement": "ST JULIEN EN QUINT", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26308"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53a4f3864034ea5c599ff47b0ab2b641c6edb45", "fields": {"nom_de_la_commune": "ST MARCEL LES SAUZET", "libell_d_acheminement": "ST MARCEL LES SAUZET", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26312"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57a5163ce280b51e25478374d0584a4e9295834", "fields": {"nom_de_la_commune": "ST MAURICE SUR EYGUES", "libell_d_acheminement": "ST MAURICE SUR EYGUES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26317"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0474bea9c4ecb9e72f970f493e527f6b4ea509ee", "fields": {"nom_de_la_commune": "ST PAUL LES ROMANS", "libell_d_acheminement": "ST PAUL LES ROMANS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26323"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25fb7455c0cf4b26ce09b9b77f6d872ebcfd878d", "fields": {"nom_de_la_commune": "ST RAMBERT D ALBON", "libell_d_acheminement": "ST RAMBERT D ALBON", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26325"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e25ca28ffe5092f8b1a1d05eff6926352ed162a", "fields": {"nom_de_la_commune": "ST SAUVEUR EN DIOIS", "libell_d_acheminement": "ST SAUVEUR EN DIOIS", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26328"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f533f9ea3cd57914aaf419dff0246c7982d611", "fields": {"nom_de_la_commune": "ST SAUVEUR GOUVERNET", "libell_d_acheminement": "ST SAUVEUR GOUVERNET", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26329"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3052ebc599d61b4b7ac6381f5f1e62c847f2f13b", "fields": {"nom_de_la_commune": "ST SORLIN EN VALLOIRE", "libell_d_acheminement": "ST SORLIN EN VALLOIRE", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26330"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87be360fe1516aff28583491ef287239c3d13707", "fields": {"nom_de_la_commune": "ST THOMAS EN ROYANS", "libell_d_acheminement": "ST THOMAS EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26331"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "767b8c5e669e1d8e9cdce84d2bc5a389a516952f", "fields": {"nom_de_la_commune": "SALLES SOUS BOIS", "libell_d_acheminement": "SALLES SOUS BOIS", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26335"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373efab9022c05e2e9fa9204232bda8dd9e9c3bf", "fields": {"nom_de_la_commune": "SAULCE SUR RHONE", "libell_d_acheminement": "SAULCE SUR RHONE", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26337"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860dc492f2a069daf3a0940a96ec0aecc41912b9", "fields": {"nom_de_la_commune": "SERVES SUR RHONE", "libell_d_acheminement": "SERVES SUR RHONE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26341"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977117ca8b566d6d7a711d49976c7e6973399c25", "fields": {"nom_de_la_commune": "LA TOUCHE", "libell_d_acheminement": "LA TOUCHE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26352"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15edaa2ac991043d48c5132cf807b710e3a4aa91", "fields": {"nom_de_la_commune": "TRUINAS", "libell_d_acheminement": "TRUINAS", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26356"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb9dd7725f38a8b1fb46fe9368bc4323724732f", "fields": {"nom_de_la_commune": "VERCOIRAN", "libell_d_acheminement": "VERCOIRAN", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26370"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd1ab2b363090a9bec63b73f468fd54240b5524", "fields": {"nom_de_la_commune": "VESC", "libell_d_acheminement": "VESC", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26373"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2865f99acb3927d574cef83f11eb408c74f82cff", "fields": {"nom_de_la_commune": "VINSOBRES", "libell_d_acheminement": "VINSOBRES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26377"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d493e6fa00d8711c550bfc3bb85035e50af0f7fb", "fields": {"code_postal": "27400", "code_commune_insee": "27003", "libell_d_acheminement": "ACQUIGNY", "ligne_5": "LES PLANCHES", "nom_de_la_commune": "ACQUIGNY", "coordonnees_gps": [49.185538027, 1.1391389969]}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2535c21ef41e62b417c414343734426e53e16fae", "fields": {"nom_de_la_commune": "AIGLEVILLE", "libell_d_acheminement": "AIGLEVILLE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27004"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908dcb2bd762297a400fe211c5d191f5e45006f9", "fields": {"nom_de_la_commune": "AIZIER", "libell_d_acheminement": "AIZIER", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27006"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474ddec4d8ae3604b251562b5aa04d5a836c99fb", "fields": {"nom_de_la_commune": "AMFREVILLE ST AMAND", "libell_d_acheminement": "AMFREVILLE ST AMAND", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27011"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66601ac0d5f9a35af1d0af7ff1229a00468797f", "fields": {"code_postal": "27370", "code_commune_insee": "27011", "libell_d_acheminement": "AMFREVILLE ST AMAND", "ligne_5": "ST AMAND DES HAUTES TERRES", "nom_de_la_commune": "AMFREVILLE ST AMAND", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875422ac26b85c00e846de6b004d1529ad389718", "fields": {"nom_de_la_commune": "APPEVILLE ANNEBAULT", "libell_d_acheminement": "APPEVILLE ANNEBAULT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27018"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ee96696b20d9f23d9025edf9ae2e9f5b9a39ff", "fields": {"nom_de_la_commune": "ARMENTIERES SUR AVRE", "libell_d_acheminement": "ARMENTIERES SUR AVRE", "code_postal": "27820", "coordonnees_gps": [48.6910585643, 0.801324463794], "code_commune_insee": "27019"}, "geometry": {"type": "Point", "coordinates": [0.801324463794, 48.6910585643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276a48a5aeac6fb7a129341e68c5978da78d7cd8", "fields": {"code_postal": "27600", "code_commune_insee": "27022", "libell_d_acheminement": "LE VAL D HAZEY", "ligne_5": "VIEUX VILLEZ", "nom_de_la_commune": "LE VAL D HAZEY", "coordonnees_gps": [49.1557980805, 1.30618945985]}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02655d92ce139a5184928497d3f67626bd80a9a6", "fields": {"code_postal": "27940", "code_commune_insee": "27022", "libell_d_acheminement": "LE VAL D HAZEY", "ligne_5": "AUBEVOYE", "nom_de_la_commune": "LE VAL D HAZEY", "coordonnees_gps": [49.1799104876, 1.36654248146]}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66c55e64995df26338d58a89ee5ef51a97dfd1cb", "fields": {"nom_de_la_commune": "AUTHEUIL AUTHOUILLET", "libell_d_acheminement": "AUTHEUIL AUTHOUILLET", "code_postal": "27490", "coordonnees_gps": [49.1112180044, 1.26339750484], "code_commune_insee": "27025"}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf116155eef5a3f598c32cb75f2f6723c0f5f9ac", "fields": {"code_postal": "27490", "code_commune_insee": "27025", "libell_d_acheminement": "AUTHEUIL AUTHOUILLET", "ligne_5": "AUTHOUILLET", "nom_de_la_commune": "AUTHEUIL AUTHOUILLET", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128903b5b78febad8dfd6de858b96dbceb126bb0", "fields": {"nom_de_la_commune": "LES AUTHIEUX", "libell_d_acheminement": "LES AUTHIEUX", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27027"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dc39152430b765b389ef25d01c24d4ff4c5bb85", "fields": {"nom_de_la_commune": "AUTHOU", "libell_d_acheminement": "AUTHOU", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27028"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b8c667d14ada6c3b7bd88d7c10a146cd3c0d8d", "fields": {"nom_de_la_commune": "LES BARILS", "libell_d_acheminement": "LES BARILS", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27038"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8a1934fdaa1ae294c8cbb6efcd43593737629f5", "fields": {"nom_de_la_commune": "BARNEVILLE SUR SEINE", "libell_d_acheminement": "BARNEVILLE SUR SEINE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27039"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cce29a510819c88edd8d3dc50c7f2ed313e2d5d", "fields": {"nom_de_la_commune": "BARVILLE", "libell_d_acheminement": "BARVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27042"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200a7bb8215205ab31d779388f71c97d5614aaa5", "fields": {"nom_de_la_commune": "SOUSSANS", "libell_d_acheminement": "SOUSSANS", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33517"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2751ab2db5b75a3f0e2aec148beae627e43ce95a", "fields": {"nom_de_la_commune": "TAILLECAVAT", "libell_d_acheminement": "TAILLECAVAT", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33520"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d219fadb9fd6222a0ce993c27499fa92ab379e08", "fields": {"nom_de_la_commune": "TARNES", "libell_d_acheminement": "TARNES", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33524"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5462f3d76a636b40772045e2c76833b4c56e08dd", "fields": {"nom_de_la_commune": "TAYAC", "libell_d_acheminement": "TAYAC", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33526"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55649c873860e7bea25e12e89e9c4917bbfa47b", "fields": {"nom_de_la_commune": "TIZAC DE CURTON", "libell_d_acheminement": "TIZAC DE CURTON", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33531"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c1b5cafc07a76676a51ab717bf4e5d99f3070a", "fields": {"nom_de_la_commune": "LE TOURNE", "libell_d_acheminement": "LE TOURNE", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33534"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f818f67e291587f7cad81e6f186f76fb4c3d3e3", "fields": {"nom_de_la_commune": "TRESSES", "libell_d_acheminement": "TRESSES", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33535"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4775b10a66084c8f964313c492b1fb9918ba46a8", "fields": {"nom_de_la_commune": "VILLENAVE DE RIONS", "libell_d_acheminement": "VILLENAVE DE RIONS", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33549"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c432f6df83348ccc7ae4f64e1279b075c1250d", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33551"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534fcd9b013f6aa8c7eeda88852980779beb42fe", "fields": {"nom_de_la_commune": "ANIANE", "libell_d_acheminement": "ANIANE", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34010"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef58a8c9df666fdc0b530144824c549ab2f21709", "fields": {"nom_de_la_commune": "AUMELAS", "libell_d_acheminement": "AUMELAS", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34016"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4962bcc446cffc84d86c55c8d8dfe77bba976049", "fields": {"nom_de_la_commune": "AUTIGNAC", "libell_d_acheminement": "AUTIGNAC", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34018"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973d6549f6ea22d5587cbb33950781aa03371500", "fields": {"nom_de_la_commune": "AVENE", "libell_d_acheminement": "AVENE", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34019"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5825b4cbffc902142e34e4eab4ce45c2f22a03bb", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34027"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6a0e0538c6427cc21189c7ec58e5286dd4410b3", "fields": {"nom_de_la_commune": "BRENAS", "libell_d_acheminement": "BRENAS", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34040"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9399969783ebc32063479d1daa1ce23b046e848a", "fields": {"nom_de_la_commune": "BUZIGNARGUES", "libell_d_acheminement": "BUZIGNARGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34043"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936400c4d234d73c0f5ece1e16595889c07ede98", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34048"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc35fed5e4c95841f714a61c5a9b5ace64a52755", "fields": {"nom_de_la_commune": "CASSAGNOLES", "libell_d_acheminement": "CASSAGNOLES", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34054"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19056e4596a53d06b8f8037c86ce77501041444a", "fields": {"nom_de_la_commune": "CAUSSES ET VEYRAN", "libell_d_acheminement": "CAUSSES ET VEYRAN", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34061"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a89d2ed9893b709dfae4650f3c95833935dd59", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34072"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47405ecc3537791585d31b3ca2782fe1ef17ecf8", "fields": {"nom_de_la_commune": "COURNIOU", "libell_d_acheminement": "COURNIOU", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34086"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0449bcb4f380a0f7ed82d753b525596a4d2cec", "fields": {"nom_de_la_commune": "FERRALS LES MONTAGNES", "libell_d_acheminement": "FERRALS LES MONTAGNES", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34098"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4445d64eba6344194953decd2d9d4fd2f0ce57b6", "fields": {"nom_de_la_commune": "FOS", "libell_d_acheminement": "FOS", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34104"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69e812e2b671b92686bd09031886794557bcbad", "fields": {"nom_de_la_commune": "FRAISSE SUR AGOUT", "libell_d_acheminement": "FRAISSE SUR AGOUT", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34107"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749709650bf3e78818799fdb9363e49bc29e1c22", "fields": {"nom_de_la_commune": "GANGES", "libell_d_acheminement": "GANGES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34111"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743de6909d49c1bcb04f964fe856c6fcee2dc25d", "fields": {"nom_de_la_commune": "JACOU", "libell_d_acheminement": "JACOU", "code_postal": "34830", "coordonnees_gps": [43.6624822527, 3.89381826906], "code_commune_insee": "34120"}, "geometry": {"type": "Point", "coordinates": [3.89381826906, 43.6624822527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f6d1a8d3035ebccbfa08e4d86522d462aafdb6", "fields": {"nom_de_la_commune": "LANSARGUES", "libell_d_acheminement": "LANSARGUES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34127"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f46f5ff3c1794959e6271d2eb031556b5cb8dfc", "fields": {"nom_de_la_commune": "LODEVE", "libell_d_acheminement": "LODEVE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34142"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36aacc98102353932ffe3b6890ec20c69aa4b8af", "fields": {"nom_de_la_commune": "MAGALAS", "libell_d_acheminement": "MAGALAS", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34147"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9929a32ee1ab2faad91ef76b522c11408680d34", "fields": {"code_postal": "34340", "code_commune_insee": "34150", "libell_d_acheminement": "MARSEILLAN", "ligne_5": "MARSEILLAN PLAGE", "nom_de_la_commune": "MARSEILLAN", "coordonnees_gps": [43.3603485719, 3.54723138046]}, "geometry": {"type": "Point", "coordinates": [3.54723138046, 43.3603485719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af554225877cc61b36f2938e84d309cbe746f619", "fields": {"nom_de_la_commune": "MONTESQUIEU", "libell_d_acheminement": "MONTESQUIEU", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34168"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa3954124c3e6277f13a5d641c6754c19d9fd6d7", "fields": {"nom_de_la_commune": "MOULES ET BAUCELS", "libell_d_acheminement": "MOULES ET BAUCELS", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34174"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba1588f860da84f2fc30fd3472ff15e7b518dcb", "fields": {"nom_de_la_commune": "MOUREZE", "libell_d_acheminement": "MOUREZE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34175"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29b495388d93eed42701173900aab06683eba16", "fields": {"nom_de_la_commune": "MUDAISON", "libell_d_acheminement": "MUDAISON", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34176"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef481f518ffe0eddd477db8af4649f8595116bef", "fields": {"nom_de_la_commune": "MURVIEL LES BEZIERS", "libell_d_acheminement": "MURVIEL LES BEZIERS", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34178"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce112861ace686b683d0af5edf6926a4fa666f55", "fields": {"nom_de_la_commune": "NEBIAN", "libell_d_acheminement": "NEBIAN", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34180"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac70775297e33f8f26a645062329631011015cf", "fields": {"nom_de_la_commune": "NOTRE DAME DE LONDRES", "libell_d_acheminement": "NOTRE DAME DE LONDRES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34185"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d9b649d6da290e02d730463077494a069f0548", "fields": {"nom_de_la_commune": "OLONZAC", "libell_d_acheminement": "OLONZAC", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34189"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec8b316a6df095b5bbf47e0b5350029517fa428", "fields": {"nom_de_la_commune": "OUPIA", "libell_d_acheminement": "OUPIA", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34190"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c899ed6474c7817a0cbb6282dbb58186369e37b", "fields": {"nom_de_la_commune": "PEROLS", "libell_d_acheminement": "PEROLS", "code_postal": "34470", "coordonnees_gps": [43.5615092757, 3.95243919427], "code_commune_insee": "34198"}, "geometry": {"type": "Point", "coordinates": [3.95243919427, 43.5615092757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0e141d46f671f01ac1417557ece0d0eb709244", "fields": {"nom_de_la_commune": "PEZENES LES MINES", "libell_d_acheminement": "PEZENES LES MINES", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34200"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3679362144807a3cb635393306960be0209da61d", "fields": {"nom_de_la_commune": "PIGNAN", "libell_d_acheminement": "PIGNAN", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34202"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a077d56b617a0767fe1bf5d95980868cea7839", "fields": {"nom_de_la_commune": "LES PLANS", "libell_d_acheminement": "LES PLANS", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34205"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a444adc351239e27418683b54e6ffbc15ccf77", "fields": {"nom_de_la_commune": "LE POUGET", "libell_d_acheminement": "LE POUGET", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34210"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07fa871d76045cc767c8dc646c0bd789ace02037", "fields": {"nom_de_la_commune": "LE PRADAL", "libell_d_acheminement": "LE PRADAL", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34216"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2b93e839700e856c5446d14525bcbf0d0b853c", "fields": {"nom_de_la_commune": "LE PUECH", "libell_d_acheminement": "LE PUECH", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34220"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddabdf4bb3deb0179f6d3f48ad6dff0f9a89a969", "fields": {"nom_de_la_commune": "PUILACHER", "libell_d_acheminement": "PUILACHER", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34222"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd92d06f42e7ba795c8e870c949ea338af9182f", "fields": {"nom_de_la_commune": "LES RIVES", "libell_d_acheminement": "LES RIVES", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34230"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97bb28181566acaf5dd53c57df695edab3bda924", "fields": {"nom_de_la_commune": "ROQUEBRUN", "libell_d_acheminement": "ROQUEBRUN", "code_postal": "34460", "coordonnees_gps": [43.4734338181, 3.02585092661], "code_commune_insee": "34232"}, "geometry": {"type": "Point", "coordinates": [3.02585092661, 43.4734338181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f381b1ca505d85a40f7c59029d337dfc26f5d01c", "fields": {"nom_de_la_commune": "ROUET", "libell_d_acheminement": "LE ROUET", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34236"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f1d258468e33f7d4e1337dab9f43e88aa50fdc", "fields": {"nom_de_la_commune": "ST AUNES", "libell_d_acheminement": "ST AUNES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34240"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561dec7a6fd737219768c2f1d19b24f7b0bc8d05", "fields": {"nom_de_la_commune": "ST CHRISTOL", "libell_d_acheminement": "ST CHRISTOL", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34246"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68fc81d12790ea27a1e62918fada9d8845765645", "fields": {"nom_de_la_commune": "ST CLEMENT DE RIVIERE", "libell_d_acheminement": "ST CLEMENT DE RIVIERE", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34247"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3cd206490d7a9abca54cf203d0d7547c3751ae", "fields": {"nom_de_la_commune": "ST ETIENNE DE GOURGAS", "libell_d_acheminement": "ST ETIENNE DE GOURGAS", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34251"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c943eb4f514e9c6f788112c339abc9a4973d79", "fields": {"nom_de_la_commune": "ST FELIX DE LODEZ", "libell_d_acheminement": "ST FELIX DE LODEZ", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34254"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3a00fffec703ca1390eec8e52eac114ed430aa", "fields": {"nom_de_la_commune": "ST GUILHEM LE DESERT", "libell_d_acheminement": "ST GUILHEM LE DESERT", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34261"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2dda7a86df2a1bb12400e32630da6c28dad8a07", "fields": {"nom_de_la_commune": "ST JEAN DE BUEGES", "libell_d_acheminement": "ST JEAN DE BUEGES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34264"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ea6e4576274141fc3bf718338cee65c920a61a", "fields": {"nom_de_la_commune": "ST MARTIN DE LONDRES", "libell_d_acheminement": "ST MARTIN DE LONDRES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34274"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fedb186bcc4cbabb7d558761071918efe0f63f9", "fields": {"nom_de_la_commune": "ST NAZAIRE DE LADAREZ", "libell_d_acheminement": "ST NAZAIRE DE LADAREZ", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34279"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d5d754728a3805745501d1280101747ab2c200", "fields": {"nom_de_la_commune": "ST SATURNIN DE LUCIAN", "libell_d_acheminement": "ST SATURNIN DE LUCIAN", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34287"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7691bf7df46ab388a8b549ad32f86ae971840bba", "fields": {"nom_de_la_commune": "SERIGNAN", "libell_d_acheminement": "SERIGNAN", "code_postal": "34410", "coordonnees_gps": [43.2791365014, 3.28311467845], "code_commune_insee": "34299"}, "geometry": {"type": "Point", "coordinates": [3.28311467845, 43.2791365014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0912e03a912823a087648a4915db11dd10548003", "fields": {"nom_de_la_commune": "SOUBES", "libell_d_acheminement": "SOUBES", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34304"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10a9142dae1fe633e1562fee78279524450527d", "fields": {"nom_de_la_commune": "TRESSAN", "libell_d_acheminement": "TRESSAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34313"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c443cfb92b565f30ecec564aaae8fcb98d198e21", "fields": {"nom_de_la_commune": "VENDARGUES", "libell_d_acheminement": "VENDARGUES", "code_postal": "34740", "coordonnees_gps": [43.6606538021, 3.96320236293], "code_commune_insee": "34327"}, "geometry": {"type": "Point", "coordinates": [3.96320236293, 43.6606538021]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1985a5b5b56321b1670cec74cae6104ef960597d", "fields": {"nom_de_la_commune": "VIOLS LE FORT", "libell_d_acheminement": "VIOLS LE FORT", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34343"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f394536674324dbd04f54e5519991d3b1a0ecf", "fields": {"nom_de_la_commune": "ACIGNE", "libell_d_acheminement": "ACIGNE", "code_postal": "35690", "coordonnees_gps": [48.1465947957, -1.51895898717], "code_commune_insee": "35001"}, "geometry": {"type": "Point", "coordinates": [-1.51895898717, 48.1465947957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b95461251d59ae202a48cc6a95eec7be54ea4fe", "fields": {"nom_de_la_commune": "AMANLIS", "libell_d_acheminement": "AMANLIS", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35002"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f01e4c69da76fc18702ac1a170e9333c02895a7", "fields": {"nom_de_la_commune": "ANDOUILLE NEUVILLE", "libell_d_acheminement": "ANDOUILLE NEUVILLE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35003"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0eecd92efd7d95e926098099d661672d66fda5", "fields": {"nom_de_la_commune": "AUBIGNE", "libell_d_acheminement": "AUBIGNE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35007"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba8dffb85291572f00f394f4d813a7b0988c756", "fields": {"nom_de_la_commune": "BAULON", "libell_d_acheminement": "BAULON", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35016"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "670e98c50779bcd22b9bc2dd7e4d0c7e1f7cc5a6", "fields": {"nom_de_la_commune": "BILLE", "libell_d_acheminement": "BILLE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35025"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7263aa5be84a68dd38417909afacf35b20ff4070", "fields": {"nom_de_la_commune": "BLERUAIS", "libell_d_acheminement": "BLERUAIS", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35026"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da790e5f04ed37105692c31185de76277af221d", "fields": {"nom_de_la_commune": "BOISGERVILLY", "libell_d_acheminement": "BOISGERVILLY", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35027"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010e5e2244d9b3a8895e92443051d9a2038da96b", "fields": {"nom_de_la_commune": "BONNEMAIN", "libell_d_acheminement": "BONNEMAIN", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35029"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6411560e3e2dfeb4a6f8079b3b24e81a041621", "fields": {"nom_de_la_commune": "LA BOUEXIERE", "libell_d_acheminement": "LA BOUEXIERE", "code_postal": "35340", "coordonnees_gps": [48.199281564, -1.48595491187], "code_commune_insee": "35031"}, "geometry": {"type": "Point", "coordinates": [-1.48595491187, 48.199281564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8efae91960f641ff729282ea3fdc8b427f4a410", "fields": {"nom_de_la_commune": "BREAL SOUS MONTFORT", "libell_d_acheminement": "BREAL SOUS MONTFORT", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35037"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417481ae3576624f47cb11aed4c7bfddb7d4d66f", "fields": {"nom_de_la_commune": "BREAL SOUS VITRE", "libell_d_acheminement": "BREAL SOUS VITRE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35038"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24943ed5da84276716974d3fcd554ea45d6945e5", "fields": {"nom_de_la_commune": "BRETEIL", "libell_d_acheminement": "BRETEIL", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35040"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ee6d560c07c4cbfb5b86b5ffff071018a37d9a", "fields": {"code_postal": "35170", "code_commune_insee": "35047", "libell_d_acheminement": "BRUZ", "ligne_5": "PONT REAN", "nom_de_la_commune": "BRUZ", "coordonnees_gps": [48.0258206706, -1.74865477283]}, "geometry": {"type": "Point", "coordinates": [-1.74865477283, 48.0258206706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122c972212ab852652f26298fbab1001b0c778ee", "fields": {"nom_de_la_commune": "CAMPEL", "libell_d_acheminement": "CAMPEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35048"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2bb9ca1b1e5f400fe7ed96f00a277ff9b9e9c57", "fields": {"nom_de_la_commune": "CHANCE", "libell_d_acheminement": "CHANCE", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35053"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73b98d0850caf8fce1dc30b147771a25be16213", "fields": {"code_postal": "35360", "code_commune_insee": "35060", "libell_d_acheminement": "LA CHAPELLE DU LOU DU LAC", "ligne_5": "LE LOU DU LAC", "nom_de_la_commune": "LA CHAPELLE DU LOU DU LAC", "coordonnees_gps": [48.2178300809, -2.05491742866]}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8189ea4124b51540af994a19de9eb307c928998", "fields": {"nom_de_la_commune": "LA CHAPELLE ST AUBERT", "libell_d_acheminement": "LA CHAPELLE ST AUBERT", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35063"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0651d260fea051f544497465235e8745aa3acdfa", "fields": {"nom_de_la_commune": "CHASNE SUR ILLET", "libell_d_acheminement": "CHASNE SUR ILLET", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35067"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f104e4b97e4da86ce63f1402d7d0e3990cc26799", "fields": {"code_postal": "35220", "code_commune_insee": "35068", "libell_d_acheminement": "CHATEAUBOURG", "ligne_5": "BROONS SUR VILAINE", "nom_de_la_commune": "CHATEAUBOURG", "coordonnees_gps": [48.1189448859, -1.37446219817]}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6112b0c40cf24cc29ca06ef22c54485bb33ba95", "fields": {"nom_de_la_commune": "CHAVAGNE", "libell_d_acheminement": "CHAVAGNE", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35076"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade2308333281d2d4357df00f9832098dfc4e970", "fields": {"nom_de_la_commune": "COGLES", "libell_d_acheminement": "COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35083"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a72c06d9ff5c90d4ac84d274ba69f62c207e8d", "fields": {"nom_de_la_commune": "COMBOURTILLE", "libell_d_acheminement": "COMBOURTILLE", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35086"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d68c9ba8ee070976dc90b579cad765b6c9282e", "fields": {"nom_de_la_commune": "LA COUYERE", "libell_d_acheminement": "LA COUYERE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35089"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de04f194424e2da25922c9b7cbef6458ddda6056", "fields": {"nom_de_la_commune": "DINGE", "libell_d_acheminement": "DINGE", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35094"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7a990db84bcad62c6281670c16d4726c993f3e", "fields": {"nom_de_la_commune": "DOMLOUP", "libell_d_acheminement": "DOMLOUP", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35099"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c571ded096fb0471438523eff3f0f68647e039", "fields": {"nom_de_la_commune": "FEINS", "libell_d_acheminement": "FEINS", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35110"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1d9d64c358335740fd8882360a1e1eaf41b869", "fields": {"nom_de_la_commune": "LE FERRE", "libell_d_acheminement": "LE FERRE", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35111"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a36f72040280a35377106dfa54b136616710be4", "fields": {"nom_de_la_commune": "GAHARD", "libell_d_acheminement": "GAHARD", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35118"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9818c57c1acaf48ed59ac93a54fb074c65437f", "fields": {"nom_de_la_commune": "LA GOUESNIERE", "libell_d_acheminement": "LA GOUESNIERE", "code_postal": "35350", "coordonnees_gps": [48.645566435, -1.90776582617], "code_commune_insee": "35122"}, "geometry": {"type": "Point", "coordinates": [-1.90776582617, 48.645566435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60023d066d902bb40d02fd68a664241bb26aa55b", "fields": {"nom_de_la_commune": "GOVEN", "libell_d_acheminement": "GOVEN", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35123"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6502e0c520600c860b84c72a54692dc0d64df528", "fields": {"code_postal": "35580", "code_commune_insee": "35126", "libell_d_acheminement": "GUICHEN", "ligne_5": "PONT REAN", "nom_de_la_commune": "GUICHEN", "coordonnees_gps": [47.9620542944, -1.8429715247]}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf8d893afe48ba4dd39ccc32119fe7e621bc9b1", "fields": {"nom_de_la_commune": "L HERMITAGE", "libell_d_acheminement": "L HERMITAGE", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35131"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e812035083373fbbb57c16666d361d88bb0822", "fields": {"nom_de_la_commune": "LIEURON", "libell_d_acheminement": "LIEURON", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35151"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9fea0a3d0245985d1d7a4d935d6bd22787ff259", "fields": {"nom_de_la_commune": "LIVRE SUR CHANGEON", "libell_d_acheminement": "LIVRE SUR CHANGEON", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35154"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d2caa67ae9e15286153542e5f2dd60f9d98367", "fields": {"code_postal": "27300", "code_commune_insee": "27129", "libell_d_acheminement": "CAORCHES ST NICOLAS", "ligne_5": "ST NICOLAS DU BOSC L ABBE", "nom_de_la_commune": "CAORCHES ST NICOLAS", "coordonnees_gps": [49.1002170392, 0.597556299077]}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d290451e5ef187d1ec305f6a27f158ea6c5ec7af", "fields": {"nom_de_la_commune": "CHAMBLAC", "libell_d_acheminement": "CHAMBLAC", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27138"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66f4d7410cb63604d0c8ddec425464f4de32e04", "fields": {"nom_de_la_commune": "CHAMPENARD", "libell_d_acheminement": "CHAMPENARD", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27142"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7c9dd5709ad40ab7ab3a80408dc9b35c0ee202", "fields": {"nom_de_la_commune": "CHAMPIGNY LA FUTELAYE", "libell_d_acheminement": "CHAMPIGNY LA FUTELAYE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27144"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d1e397c00c6f60b74f3d7bd165a0c202e54b39", "fields": {"code_postal": "27160", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "LE CHESNE", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a021244c255aef99270eeae2b721fff1db148426", "fields": {"nom_de_la_commune": "COLLANDRES QUINCARNON", "libell_d_acheminement": "COLLANDRES QUINCARNON", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27162"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e80bed5ddbb43df42aa727eb7d0d09c2da2901", "fields": {"nom_de_la_commune": "CORNEVILLE SUR RISLE", "libell_d_acheminement": "CORNEVILLE SUR RISLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27174"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c047c5e8402659ce812c094b8f45cfc79c9913e0", "fields": {"nom_de_la_commune": "COUDRES", "libell_d_acheminement": "COUDRES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27177"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2969532c4b375562c4269e861b9f1ea0df8757", "fields": {"nom_de_la_commune": "COURBEPINE", "libell_d_acheminement": "COURBEPINE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27179"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac35fb6f6ccfdd3f42118833070a2af3750fcf28", "fields": {"code_postal": "27490", "code_commune_insee": "27191", "libell_d_acheminement": "CLEF VALLEE D EURE", "ligne_5": "LA CROIX ST LEUFROY", "nom_de_la_commune": "CLEF VALLEE D EURE", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdcc3edd9cbd9769f5c1bdf250bde45b91cf858", "fields": {"nom_de_la_commune": "CROSVILLE LA VIEILLE", "libell_d_acheminement": "CROSVILLE LA VIEILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27192"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2c3a757fef88d3b506390d7b70c97878cc593d", "fields": {"nom_de_la_commune": "LES DAMPS", "libell_d_acheminement": "LES DAMPS", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27196"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f3b038168104625be38e232aa6e07d3b9c73cf", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LE RONCENAY AUTHENAY", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6834716512d2ded770773aee0faed2500d4068", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "MANTHELON", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4748569e1afd02153f122698ea5f5b08a5e45180", "fields": {"nom_de_la_commune": "DROISY", "libell_d_acheminement": "DROISY", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27206"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ecabcb3d95e7cfedb1ceb8407597cc67bae7f6e", "fields": {"nom_de_la_commune": "ECAQUELON", "libell_d_acheminement": "ECAQUELON", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27209"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c79e35c27dda5ae4610df8c2ac195a4a536f3b4", "fields": {"nom_de_la_commune": "ECAUVILLE", "libell_d_acheminement": "ECAUVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27212"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df875caf4c9c8e19d4d54c0e38e3306e952bfaab", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FONTENAY EN VEXIN", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a833ddfef99e83199ccdedf2fa8b6187658f66dc", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "BUS ST REMY", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded4524b8ab5f1723fc2523645a25eb618e9e6c7", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FOURS EN VEXIN", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7dbde3a46870672b59e60be9a02c373e07748b6", "fields": {"nom_de_la_commune": "ETURQUERAYE", "libell_d_acheminement": "ETURQUERAYE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27228"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d4a1ac838f1c4e38e0756a2879271d3e9f2d55", "fields": {"code_postal": "27000", "code_commune_insee": "27229", "libell_d_acheminement": "EVREUX", "ligne_5": "LA MADELEINE", "nom_de_la_commune": "EVREUX", "coordonnees_gps": [49.0199173611, 1.14145974873]}, "geometry": {"type": "Point", "coordinates": [1.14145974873, 49.0199173611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff97385b1a22ca447c260924237ca641f4260d05", "fields": {"nom_de_la_commune": "FATOUVILLE GRESTAIN", "libell_d_acheminement": "FATOUVILLE GRESTAIN", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27233"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cf42776ae0602ccc3047c702c17629acb8a229", "fields": {"nom_de_la_commune": "LE FAVRIL", "libell_d_acheminement": "LE FAVRIL", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27237"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f38592fab057995fb0f05a525a352139efb878e", "fields": {"nom_de_la_commune": "FLEURY SUR ANDELLE", "libell_d_acheminement": "FLEURY SUR ANDELLE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27246"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f7c90665eadfb8825479af139b763aa20e33f4", "fields": {"nom_de_la_commune": "FONTAINE BELLENGER", "libell_d_acheminement": "FONTAINE BELLENGER", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27249"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53cc8a8ecd88da10f8626f5ceec72208152d0b6", "fields": {"nom_de_la_commune": "FONTAINE L ABBE", "libell_d_acheminement": "FONTAINE L ABBE", "code_postal": "27470", "coordonnees_gps": [49.1014259839, 0.700715090149], "code_commune_insee": "27251"}, "geometry": {"type": "Point", "coordinates": [0.700715090149, 49.1014259839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cea41e25ff11873ec5306b66a0b56bf53a8eea6", "fields": {"nom_de_la_commune": "FONTAINE SOUS JOUY", "libell_d_acheminement": "FONTAINE SOUS JOUY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27254"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7768acd16b61030026afc081faa798bc0ff64a", "fields": {"nom_de_la_commune": "LE FRESNE", "libell_d_acheminement": "LE FRESNE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27268"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb72f38d6b1d22eef9f6372364993fdd89e0eb0", "fields": {"nom_de_la_commune": "GADENCOURT", "libell_d_acheminement": "GADENCOURT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27273"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e28d93d08e1230834356b9cbd6bc3c1f3cf731", "fields": {"nom_de_la_commune": "GAILLON", "libell_d_acheminement": "GAILLON", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27275"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf0f493557bc747dbbb96e716c2ed9c1968cbae", "fields": {"nom_de_la_commune": "GAMACHES EN VEXIN", "libell_d_acheminement": "GAMACHES EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27276"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba10320c7bcac3fab71f5e8bd65cc9ed4a898925", "fields": {"nom_de_la_commune": "GASNY", "libell_d_acheminement": "GASNY", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27279"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e461cf757a2bd5ad76329888a0b8993ec556ebd", "fields": {"nom_de_la_commune": "GAUDREVILLE LA RIVIERE", "libell_d_acheminement": "GAUDREVILLE LA RIVIERE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27281"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7291cca7cf96faab2dbaf219396cba8fe9d3760", "fields": {"nom_de_la_commune": "GAUVILLE LA CAMPAGNE", "libell_d_acheminement": "GAUVILLE LA CAMPAGNE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27282"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7878368043006ce2f52347de96bbb6a63c3e57", "fields": {"nom_de_la_commune": "GOURNAY LE GUERIN", "libell_d_acheminement": "GOURNAY LE GUERIN", "code_postal": "27580", "coordonnees_gps": [48.7461126337, 0.787797028241], "code_commune_insee": "27291"}, "geometry": {"type": "Point", "coordinates": [0.787797028241, 48.7461126337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef86a82a9406193b8315de233a442cab618912f2", "fields": {"nom_de_la_commune": "GRAINVILLE", "libell_d_acheminement": "GRAINVILLE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27294"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c09dfdbb8fbf683f25dc0687a0052e6db3b7305", "fields": {"nom_de_la_commune": "GRANDVILLIERS", "libell_d_acheminement": "GRANDVILLIERS", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27297"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccca738eca51ba1feddae73b8340c1e85a03327", "fields": {"nom_de_la_commune": "GROSLEY SUR RISLE", "libell_d_acheminement": "GROSLEY SUR RISLE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27300"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a0e873fa16f0ec45571a64850954bf59cbe086", "fields": {"nom_de_la_commune": "HARQUENCY", "libell_d_acheminement": "HARQUENCY", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27315"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c3cb34148d172732833f9c7948c4a57f172994", "fields": {"nom_de_la_commune": "LA HAYE AUBREE", "libell_d_acheminement": "LA HAYE AUBREE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27317"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ebec2ed8aff6876a8c3c4c71eac55baa5f3a13", "fields": {"nom_de_la_commune": "LA HAYE DU THEIL", "libell_d_acheminement": "LA HAYE DU THEIL", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27320"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cdb7965a69997fc4e2c0e65e9dda07168104825", "fields": {"code_postal": "27630", "code_commune_insee": "27331", "libell_d_acheminement": "HEUBECOURT HARICOURT", "ligne_5": "HEUBECOURT", "nom_de_la_commune": "HEUBECOURT HARICOURT", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275e9e414f315ef3da0814c9d4cc3a32913d8153", "fields": {"nom_de_la_commune": "HEUDEBOUVILLE", "libell_d_acheminement": "HEUDEBOUVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27332"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7ce9b42b6c2d90555a8209c9baa886fae3d58b", "fields": {"nom_de_la_commune": "HEUDREVILLE EN LIEUVIN", "libell_d_acheminement": "HEUDREVILLE EN LIEUVIN", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27334"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ffd958e0a3a5b42299dd4b7806d272364b5ba05", "fields": {"nom_de_la_commune": "HEUQUEVILLE", "libell_d_acheminement": "HEUQUEVILLE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27337"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90000cdf45c967112d3897d01817521c67062c6e", "fields": {"nom_de_la_commune": "HONDOUVILLE", "libell_d_acheminement": "HONDOUVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27339"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe38725200173642fa4ddad6d5c2e3d3f004bf1f", "fields": {"nom_de_la_commune": "HOUVILLE EN VEXIN", "libell_d_acheminement": "HOUVILLE EN VEXIN", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27346"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dd9915d8744bfcf1b91e9af8b9c6403f403e34", "fields": {"nom_de_la_commune": "IVILLE", "libell_d_acheminement": "IVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27354"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44561ce128546d07761ccee3c9d2a10fe113a206", "fields": {"nom_de_la_commune": "LOUYE", "libell_d_acheminement": "LOUYE", "code_postal": "27650", "coordonnees_gps": [48.7821743197, 1.31343473217], "code_commune_insee": "27376"}, "geometry": {"type": "Point", "coordinates": [1.31343473217, 48.7821743197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597d419e7056fa5dd10c6bb7915243548c4dcb67", "fields": {"nom_de_la_commune": "MANDEVILLE", "libell_d_acheminement": "MANDEVILLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27382"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9a940d9fb085f39d1843cc513270c990c403c6", "fields": {"nom_de_la_commune": "MARTAGNY", "libell_d_acheminement": "MARTAGNY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27392"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab763e6378b043df730978349b6419fed0fb47b2", "fields": {"nom_de_la_commune": "MEREY", "libell_d_acheminement": "MEREY", "code_postal": "27640", "coordonnees_gps": [48.9602482824, 1.4448225375], "code_commune_insee": "27400"}, "geometry": {"type": "Point", "coordinates": [1.4448225375, 48.9602482824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f9d641fdc7e828bacd9bcf496bc78fed8a5118", "fields": {"nom_de_la_commune": "LE MESNIL FUGUET", "libell_d_acheminement": "LE MESNIL FUGUET", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27401"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3501f9a6461c093fb33f622b399d24098e77e16", "fields": {"nom_de_la_commune": "MISEREY", "libell_d_acheminement": "MISEREY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27410"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191a18f47c9ca8c8ee4e1b6c95be60116a73de2e", "fields": {"nom_de_la_commune": "MONTFORT SUR RISLE", "libell_d_acheminement": "MONTFORT SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27413"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5bc6268066f9533f410cf7c7fabf86e193fb9b", "fields": {"nom_de_la_commune": "MONTREUIL L ARGILLE", "libell_d_acheminement": "MONTREUIL L ARGILLE", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27414"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3097c7b6e0573606ef500ed008ece9950a5af3d3", "fields": {"code_postal": "27390", "code_commune_insee": "27414", "libell_d_acheminement": "MONTREUIL L ARGILLE", "ligne_5": "ST AQUILIN D AUGERONS", "nom_de_la_commune": "MONTREUIL L ARGILLE", "coordonnees_gps": [48.9214064933, 0.481488505214]}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a7e0b390b7746ef105df97e24e1ac883a8ecfe0", "fields": {"code_postal": "27260", "code_commune_insee": "27415", "libell_d_acheminement": "MORAINVILLE JOUVEAUX", "ligne_5": "JOUVEAUX", "nom_de_la_commune": "MORAINVILLE JOUVEAUX", "coordonnees_gps": [49.2428669826, 0.422894250852]}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f240161a5d975b232b267bf707064de721d4a0d", "fields": {"nom_de_la_commune": "MOUETTES", "libell_d_acheminement": "MOUETTES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27419"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40217b98f1fb40e80ad1691e41946607350ad2cb", "fields": {"nom_de_la_commune": "MUIDS", "libell_d_acheminement": "MUIDS", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27422"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa45ea56873d4c80e89b696a9cb358d0479b4d9", "fields": {"code_postal": "27250", "code_commune_insee": "27427", "libell_d_acheminement": "NEAUFLES AUVERGNY", "ligne_5": "AUVERGNY", "nom_de_la_commune": "NEAUFLES AUVERGNY", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9105a3640e38e0ba478aded7379ecb040a74e738", "fields": {"code_postal": "27250", "code_commune_insee": "27427", "libell_d_acheminement": "NEAUFLES AUVERGNY", "ligne_5": "NEAUFLES SUR RISLE", "nom_de_la_commune": "NEAUFLES AUVERGNY", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725a32955bc214740fca39089bc6a3bb3eac701a", "fields": {"nom_de_la_commune": "LA NEUVE GRANGE", "libell_d_acheminement": "LA NEUVE GRANGE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27430"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f70f24f4185429f5ea7d1d2d1ca75af4a128b", "fields": {"nom_de_la_commune": "NOJEON EN VEXIN", "libell_d_acheminement": "NOJEON EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27437"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f01279ef4941d991a4077c8355ed8fe9f4095d", "fields": {"nom_de_la_commune": "NOTRE DAME DE L ISLE", "libell_d_acheminement": "NOTRE DAME DE L ISLE", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27440"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095e25c249fe274a43914c3fd0d4ad976e1a40b6", "fields": {"nom_de_la_commune": "NOTRE DAME D EPINE", "libell_d_acheminement": "NOTRE DAME D EPINE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27441"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3def8b34e433e35ede699884da06a15d496dfa4", "fields": {"nom_de_la_commune": "PISEUX", "libell_d_acheminement": "PISEUX", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27457"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc35f4fc91f66d54f63a17c7574e2f82b6ce5d77", "fields": {"nom_de_la_commune": "LES PLACES", "libell_d_acheminement": "LES PLACES", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27459"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b025b68aff905260d492dfef746866de05e75f4f", "fields": {"nom_de_la_commune": "LE PLANQUAY", "libell_d_acheminement": "LE PLANQUAY", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27462"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770a67b78fccd666db32246a67384905096dfd24", "fields": {"nom_de_la_commune": "LA PYLE", "libell_d_acheminement": "LA PYLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27482"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db017cf1b7eb213c12134fa53c2ffdb8649d737", "fields": {"nom_de_la_commune": "QUATREMARE", "libell_d_acheminement": "QUATREMARE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27483"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a21935fa7621bb7ff5dbb7a620e84d663f936f", "fields": {"nom_de_la_commune": "QUILLEBEUF SUR SEINE", "libell_d_acheminement": "QUILLEBEUF SUR SEINE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27485"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d89e2e950a92cd2b5ad44814dbf2cc75b6d2f2", "fields": {"nom_de_la_commune": "ST AQUILIN DE PACY", "libell_d_acheminement": "ST AQUILIN DE PACY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27510"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ed38f3749cc46a2e01075c7ed0ca249d493813", "fields": {"nom_de_la_commune": "ST DENIS LE FERMENT", "libell_d_acheminement": "ST DENIS LE FERMENT", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27533"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e76d83d8cd4eb1af1f08fd1eeabd7c2b22c68e", "fields": {"nom_de_la_commune": "ST DIDIER DES BOIS", "libell_d_acheminement": "ST DIDIER DES BOIS", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27534"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f1d280d1a18b2f6cf3e9f60417981f39198cca", "fields": {"nom_de_la_commune": "ST ELIER", "libell_d_acheminement": "ST ELIER", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27535"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d8b07feda0546ee936a69b44d4d28357e49f00", "fields": {"nom_de_la_commune": "ST ELOI DE FOURQUES", "libell_d_acheminement": "ST ELOI DE FOURQUES", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27536"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc57235bc1d90c3fa7af2cd2fa01260d40eff8ed", "fields": {"nom_de_la_commune": "ST GERMAIN VILLAGE", "libell_d_acheminement": "ST GERMAIN VILLAGE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27549"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802a98ca09b8226cb50149f2e4447c09fd17fa8c", "fields": {"nom_de_la_commune": "ST GREGOIRE DU VIEVRE", "libell_d_acheminement": "ST GREGOIRE DU VIEVRE", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27550"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdeaba9b31abd42e95b3e7ae6cbd10f794d7994d", "fields": {"nom_de_la_commune": "ST JEAN DE LA LEQUERAYE", "libell_d_acheminement": "ST JEAN DE LA LEQUERAYE", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27551"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5fa572ec50d4968a485b34f78d33bd9ac6f19d", "fields": {"nom_de_la_commune": "ST MACLOU", "libell_d_acheminement": "ST MACLOU", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27561"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904b029a84d68557a95ed4117ad2f54fcc46f6b1", "fields": {"nom_de_la_commune": "ST MARDS DE FRESNE", "libell_d_acheminement": "ST MARDS DE FRESNE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27564"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b2686a777a244d5c4bf936c60d4a29987c583c", "fields": {"code_postal": "27160", "code_commune_insee": "27565", "libell_d_acheminement": "LE LESME", "ligne_5": "GUERNANVILLE", "nom_de_la_commune": "LE LESME", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d18f2b309d011e9cd415de1d1d7cd0139336ea", "fields": {"code_postal": "27160", "code_commune_insee": "27565", "libell_d_acheminement": "LE LESME", "ligne_5": "STE MARGUERITE DE L AUTEL", "nom_de_la_commune": "LE LESME", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a1b306b86b19b4f1125e0d4706a25f49c01214", "fields": {"nom_de_la_commune": "CALONGES", "libell_d_acheminement": "CALONGES", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47046"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1bcf1e62ab79eb18b1290dac95d8f91af08c12", "fields": {"nom_de_la_commune": "CASSENEUIL", "libell_d_acheminement": "CASSENEUIL", "code_postal": "47440", "coordonnees_gps": [44.4570555688, 0.630745271337], "code_commune_insee": "47049"}, "geometry": {"type": "Point", "coordinates": [0.630745271337, 44.4570555688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f9dd1689fdcc973bb4ac6a9381f5c80bc8214a", "fields": {"nom_de_la_commune": "CASSIGNAS", "libell_d_acheminement": "CASSIGNAS", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47050"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a9a671133aa1b527a7f83255011818c6899266", "fields": {"nom_de_la_commune": "CAUBEYRES", "libell_d_acheminement": "CAUBEYRES", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47058"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b68f8b946f1ddd10ec6fbdc969ba453f0e2d54", "fields": {"nom_de_la_commune": "CUQ", "libell_d_acheminement": "CUQ", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47076"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8cd413109d24ba9825d2821532392528a6d06a4", "fields": {"nom_de_la_commune": "DOUZAINS", "libell_d_acheminement": "DOUZAINS", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47084"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a435ba974423ff368c98b68727525f9c8621741a", "fields": {"nom_de_la_commune": "DURAS", "libell_d_acheminement": "DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47086"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057ac0b4a332cefcb0865b75987d43f9cc20af35", "fields": {"nom_de_la_commune": "ESTILLAC", "libell_d_acheminement": "ESTILLAC", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47091"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3b7366be39139cf124a537ea8c6df911c24782", "fields": {"nom_de_la_commune": "FALS", "libell_d_acheminement": "FALS", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47092"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf5fbc59379036125da7c8cfcc45eab8d719492", "fields": {"nom_de_la_commune": "FARGUES SUR OURBISE", "libell_d_acheminement": "FARGUES SUR OURBISE", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47093"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d57f15bb784c1db998b0dd8e12120a7fd4a84b", "fields": {"nom_de_la_commune": "FUMEL", "libell_d_acheminement": "FUMEL", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47106"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd6c5951c25633a5b5a64bcd47942d886a3159a", "fields": {"nom_de_la_commune": "GALAPIAN", "libell_d_acheminement": "GALAPIAN", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47107"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89386ae3b7a3154cf4fac17b0fc51cd30cb435fb", "fields": {"nom_de_la_commune": "GONTAUD DE NOGARET", "libell_d_acheminement": "GONTAUD DE NOGARET", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47110"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a0891e77975235c8f76020a6d3ae44a4af5f62", "fields": {"nom_de_la_commune": "GRATELOUP ST GAYRAND", "libell_d_acheminement": "GRATELOUP ST GAYRAND", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47112"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a3fed769b37c9496828beaa48377be7e91a0c1", "fields": {"code_postal": "47400", "code_commune_insee": "47112", "libell_d_acheminement": "GRATELOUP ST GAYRAND", "ligne_5": "ST GAYRAND", "nom_de_la_commune": "GRATELOUP ST GAYRAND", "coordonnees_gps": [44.4196424813, 0.319074824961]}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f18c688471fab12eed839bb5ad521e8136573b6", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07225"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b294a61ad275f01706a588bdaabe3b395c100d", "fields": {"nom_de_la_commune": "ST SAUVEUR SUR TINEE", "libell_d_acheminement": "ST SAUVEUR SUR TINEE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06129"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf0d07db2f1960469deb37fd88a6aada111d72e", "fields": {"nom_de_la_commune": "TOUET DE L ESCARENE", "libell_d_acheminement": "TOUET DE L ESCARENE", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06142"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e4d476c4dd8656181fcb9d29613050010c1d89", "fields": {"nom_de_la_commune": "ST VALLIER DE THIEY", "libell_d_acheminement": "ST VALLIER DE THIEY", "code_postal": "06460", "coordonnees_gps": [43.715574812, 6.8479951556], "code_commune_insee": "06130"}, "geometry": {"type": "Point", "coordinates": [6.8479951556, 43.715574812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef5b4aac0b8cebc8dccbfcccf9e1a0bce630b76", "fields": {"nom_de_la_commune": "ST PAUL DE VENCE", "libell_d_acheminement": "ST PAUL DE VENCE", "code_postal": "06570", "coordonnees_gps": [43.6959078389, 7.12090388438], "code_commune_insee": "06128"}, "geometry": {"type": "Point", "coordinates": [7.12090388438, 43.6959078389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f002fa8166075edabaa3969085779bc1e4666e3", "fields": {"nom_de_la_commune": "TOUET SUR VAR", "libell_d_acheminement": "TOUET SUR VAR", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06143"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcbe63bdccda8cc91ceed1ad5787a60b322306dc", "fields": {"nom_de_la_commune": "SALLAGRIFFON", "libell_d_acheminement": "SALLAGRIFFON", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06131"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5352366119f303c364f54a2abc5841d6bce114db", "fields": {"nom_de_la_commune": "ST ANTONIN", "libell_d_acheminement": "ST ANTONIN", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06115"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2373b440716bcad73029fa85eaf1dc9fb29925", "fields": {"nom_de_la_commune": "ST JEANNET", "libell_d_acheminement": "ST JEANNET", "code_postal": "06640", "coordonnees_gps": [43.7589250938, 7.14075677755], "code_commune_insee": "06122"}, "geometry": {"type": "Point", "coordinates": [7.14075677755, 43.7589250938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd684e7c1d6ed6b8bbd9fc9700e4786cda87b3a9", "fields": {"nom_de_la_commune": "ACCONS", "libell_d_acheminement": "ACCONS", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07001"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035923d2264000c8a29db7de2bdb46470038ed68", "fields": {"nom_de_la_commune": "VENCE", "libell_d_acheminement": "VENCE", "code_postal": "06140", "coordonnees_gps": [43.7526765774, 7.06029224738], "code_commune_insee": "06157"}, "geometry": {"type": "Point", "coordinates": [7.06029224738, 43.7526765774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "724286d30790a1dc9741b002944bff3c04641fc5", "fields": {"code_postal": "06470", "code_commune_insee": "06094", "libell_d_acheminement": "PEONE", "ligne_5": "VALBERG", "nom_de_la_commune": "PEONE", "coordonnees_gps": [44.1262277999, 6.84545324437]}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abeeb793e28103f684db8cd4b242219fe7afc087", "fields": {"nom_de_la_commune": "LA ROQUE EN PROVENCE", "libell_d_acheminement": "LA ROQUE EN PROVENCE", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06107"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a68412d0f5dc1e3fd0bb31695c67c0ec3453db", "fields": {"nom_de_la_commune": "GREOLIERES", "libell_d_acheminement": "GREOLIERES", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06070"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c4ee766f9dac353940f0a5f0a5c332201208f0", "fields": {"nom_de_la_commune": "GUILLAUMES", "libell_d_acheminement": "GUILLAUMES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06071"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd68dd533fae0405744bc0fc7752bd38911a18b9", "fields": {"nom_de_la_commune": "PEYMEINADE", "libell_d_acheminement": "PEYMEINADE", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06095"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a7afd7d89b8aef8f63a1d255a58f24c9cc14d23", "fields": {"nom_de_la_commune": "MALAUSSENE", "libell_d_acheminement": "MALAUSSENE", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06078"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db4b3ae25b0b354a8e142ddbc108ae823e708d1", "fields": {"nom_de_la_commune": "LE MAS", "libell_d_acheminement": "LE MAS", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06081"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5500329a3a23fd9ce7b9d6e58b3c12a02a1a71", "fields": {"nom_de_la_commune": "MENTON", "libell_d_acheminement": "MENTON", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06083"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f70c571ef45450a553f69a9a5a63c45c7b633a", "fields": {"nom_de_la_commune": "PEILLE", "libell_d_acheminement": "PEILLE", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06091"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da60f0b73930aef6075c82fa56eb8db3112b349e", "fields": {"nom_de_la_commune": "OPIO", "libell_d_acheminement": "OPIO", "code_postal": "06650", "coordonnees_gps": [43.6665802809, 7.00909977966], "code_commune_insee": "06089"}, "geometry": {"type": "Point", "coordinates": [7.00909977966, 43.6665802809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6072bfd04518470f593e302d9c37c31d2fe0ed89", "fields": {"nom_de_la_commune": "BOULIEU LES ANNONAY", "libell_d_acheminement": "BOULIEU LES ANNONAY", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07041"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469be74a6af76f7a43436a6531653b0ea2145b15", "fields": {"nom_de_la_commune": "ARRAS SUR RHONE", "libell_d_acheminement": "ARRAS SUR RHONE", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07015"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a62be108371280037781a778ffe8fa87c8a807", "fields": {"nom_de_la_commune": "BOURG ST ANDEOL", "libell_d_acheminement": "BOURG ST ANDEOL", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07042"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36cccbcbfd4ade8aba77e7f05539173bbf1faa5", "fields": {"nom_de_la_commune": "ALBOUSSIERE", "libell_d_acheminement": "ALBOUSSIERE", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07007"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd453c673a9c59e7c2e6d215ffa8350282bf61b", "fields": {"nom_de_la_commune": "CHASSIERS", "libell_d_acheminement": "CHASSIERS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07058"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07580438ad6c45a04d2cf0b134062b4534a4fbd6", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07028"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf3657bb76506775ffeac757ed504b51156cff1b", "fields": {"nom_de_la_commune": "BALAZUC", "libell_d_acheminement": "BALAZUC", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07023"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d8d2749191b120c73c171e30c8c77d82038694", "fields": {"nom_de_la_commune": "CHANEAC", "libell_d_acheminement": "CHANEAC", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07054"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8746788e126d0e0f988b37f1943c3bdf576ebba", "fields": {"nom_de_la_commune": "CHARNAS", "libell_d_acheminement": "CHARNAS", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07056"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2cfad11b1c5c4756e4444aa3fd30631ff623c0", "fields": {"nom_de_la_commune": "ARCENS", "libell_d_acheminement": "ARCENS", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07012"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d418bf68e985f2186db1d324f11ff5a6cb0c2b", "fields": {"nom_de_la_commune": "DUNIERE SUR EYRIEUX", "libell_d_acheminement": "DUNIERE SUR EYRIEUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07083"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226903649f7bb57833741b05efbeafa8016a7ceb", "fields": {"nom_de_la_commune": "LE CRESTET", "libell_d_acheminement": "LE CRESTET", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07073"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce43db5962dfe1954df5ba915b068fd67d23b2d", "fields": {"nom_de_la_commune": "DESAIGNES", "libell_d_acheminement": "DESAIGNES", "code_postal": "07570", "coordonnees_gps": [44.9988716933, 4.49981967346], "code_commune_insee": "07079"}, "geometry": {"type": "Point", "coordinates": [4.49981967346, 44.9988716933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a0c0d809ff279bdd066e611a8220c4e1e7dbc0", "fields": {"nom_de_la_commune": "CHEMINAS", "libell_d_acheminement": "CHEMINAS", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07063"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a4d2b68565db0d300c2e78aa898d4c5b090d05", "fields": {"nom_de_la_commune": "CHAZEAUX", "libell_d_acheminement": "CHAZEAUX", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07062"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43af9993abca35537888792408a235b4b54ebc1a", "fields": {"nom_de_la_commune": "FLAVIAC", "libell_d_acheminement": "FLAVIAC", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07090"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e7b717b56f700d800571d9ee5699df6a4255eb", "fields": {"nom_de_la_commune": "CORNAS", "libell_d_acheminement": "CORNAS", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07070"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d8a6174d7e3f97c60d619c7732c7d0fc47b681", "fields": {"nom_de_la_commune": "FABRAS", "libell_d_acheminement": "FABRAS", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07087"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5987c4ecd53dda18276036a9c91113c5ba6d28b4", "fields": {"nom_de_la_commune": "CRUAS", "libell_d_acheminement": "CRUAS", "code_postal": "07350", "coordonnees_gps": [44.6563301975, 4.7560674147], "code_commune_insee": "07076"}, "geometry": {"type": "Point", "coordinates": [4.7560674147, 44.6563301975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ccb8f0e8b2a897ce362a37cd78cc43aee34c1db", "fields": {"nom_de_la_commune": "GLUN", "libell_d_acheminement": "GLUN", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07097"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d93f5c7c5e02441f157176ffa5c8f7543ee6d14", "fields": {"nom_de_la_commune": "ST MARCEL LES ANNONAY", "libell_d_acheminement": "ST MARCEL LES ANNONAY", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07265"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9bbd3108d38e0bdacd5111d2e09ed4f74e2e5c", "fields": {"nom_de_la_commune": "ST LAURENT LES BAINS", "libell_d_acheminement": "ST LAURENT LES BAINS", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07262"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522f6aba4af9e7cf0f3f47e6fa7ff4f3d5e90d99", "fields": {"nom_de_la_commune": "ST MARTIN D ARDECHE", "libell_d_acheminement": "ST MARTIN D ARDECHE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07268"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feec8803e2295346476bbbcd92a0b709ba64bd8c", "fields": {"nom_de_la_commune": "ST JUST D ARDECHE", "libell_d_acheminement": "ST JUST D ARDECHE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07259"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4118bc1724c4f5e3a67a4b87c94c9fdb521d5e9", "fields": {"nom_de_la_commune": "ST JEAN CHAMBRE", "libell_d_acheminement": "ST JEAN CHAMBRE", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07244"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2b0e97a6b70dc70e3c7f60ce747bfd98c8c4f42", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07267"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5254c96debfe99c3ce4b988b644ac6a19c94464d", "fields": {"nom_de_la_commune": "LABASTIDE SUR BESORGUES", "libell_d_acheminement": "LABASTIDE SUR BESORGUES", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07112"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3c31c3f55f4474b9f7e1c76bcbc08e99aa15544", "fields": {"nom_de_la_commune": "LALEVADE D ARDECHE", "libell_d_acheminement": "LALEVADE D ARDECHE", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07127"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb20661ee2d3704efc27f3c34594f85e35ddf390", "fields": {"nom_de_la_commune": "GUILHERAND GRANGES", "libell_d_acheminement": "GUILHERAND GRANGES", "code_postal": "07500", "coordonnees_gps": [44.9303487505, 4.86624054251], "code_commune_insee": "07102"}, "geometry": {"type": "Point", "coordinates": [4.86624054251, 44.9303487505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6e38fbdafaaffcca1ceaac656dfc92767eb7bc", "fields": {"nom_de_la_commune": "LABASTIDE DE VIRAC", "libell_d_acheminement": "LABASTIDE DE VIRAC", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07113"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5368449b3b4bed05bbab91de8ea652d099b02e89", "fields": {"nom_de_la_commune": "LABATIE D ANDAURE", "libell_d_acheminement": "LABATIE D ANDAURE", "code_postal": "07570", "coordonnees_gps": [44.9988716933, 4.49981967346], "code_commune_insee": "07114"}, "geometry": {"type": "Point", "coordinates": [4.49981967346, 44.9988716933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6180970694a558ee2c8c8569892e3f30011441", "fields": {"nom_de_la_commune": "GROSPIERRES", "libell_d_acheminement": "GROSPIERRES", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07101"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb55c39c5f736c278bd576e372dfd59389f3195", "fields": {"nom_de_la_commune": "LABLACHERE", "libell_d_acheminement": "LABLACHERE", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07117"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7df31fe81b3be33271daefbb00076ccd89482b3", "fields": {"nom_de_la_commune": "GRAVIERES", "libell_d_acheminement": "GRAVIERES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07100"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a408cf8843d6ca9015a5bff3ec17667d29a07d", "fields": {"nom_de_la_commune": "LABEAUME", "libell_d_acheminement": "LABEAUME", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07115"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbbae5456b38b9e85821003435b42c3f4dd0c12", "fields": {"nom_de_la_commune": "JOYEUSE", "libell_d_acheminement": "JOYEUSE", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07110"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d178f1bf415f92f5de888a8c4a5e6204a23b4cc4", "fields": {"nom_de_la_commune": "ST MICHEL DE CHABRILLANOUX", "libell_d_acheminement": "ST MICHEL DE CHABRILLANOUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07278"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0508e10c72d4207019f62e1da6a522d3e7227c", "fields": {"nom_de_la_commune": "ST SAUVEUR DE CRUZIERES", "libell_d_acheminement": "ST SAUVEUR DE CRUZIERES", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07294"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4cc8f332e65613b6bb11d18395e93ae646f98b9", "fields": {"nom_de_la_commune": "ST PIERRE DE COLOMBIER", "libell_d_acheminement": "ST PIERRE DE COLOMBIER", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07282"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956425fafa8d801b65b119c6a03b5af55f29e35e", "fields": {"nom_de_la_commune": "ST VINCENT DE DURFORT", "libell_d_acheminement": "ST VINCENT DE DURFORT", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07303"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87dbf3150e0b9fcdd67fc8e12595f49521fc6b1", "fields": {"nom_de_la_commune": "ST SAUVEUR DE MONTAGUT", "libell_d_acheminement": "ST SAUVEUR DE MONTAGUT", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07295"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fee3b0d6b55fe48c9d2f91ee6d363fbc5c28b10", "fields": {"nom_de_la_commune": "ST ROMAIN DE LERPS", "libell_d_acheminement": "ST ROMAIN DE LERPS", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07293"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a88320d72e21a7da113e03d0068d0b3ffadf41", "fields": {"nom_de_la_commune": "ST MAURICE D IBIE", "libell_d_acheminement": "ST MAURICE D IBIE", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07273"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7de4fda37d02b5e317c76a01c9d8860fd26df0", "fields": {"nom_de_la_commune": "ST MONTAN", "libell_d_acheminement": "ST MONTAN", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07279"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "221c354713d79667be34c7fa6e9b16baba720ba0", "fields": {"nom_de_la_commune": "VANOSC", "libell_d_acheminement": "VANOSC", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07333"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "018423633c55e9c09ce2a2fc795f0da32cc1d42c", "fields": {"code_postal": "08240", "code_commune_insee": "08057", "libell_d_acheminement": "BELLEVILLE ET CHATILLON SUR BAR", "ligne_5": "CHATILLON SUR BAR", "nom_de_la_commune": "BELLEVILLE ET CHATILLON SUR BAR", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e401a20ac5438c10ba68684ae6f7ec727faca432", "fields": {"code_postal": "08290", "code_commune_insee": "08069", "libell_d_acheminement": "BLANCHEFOSSE ET BAY", "ligne_5": "BAY", "nom_de_la_commune": "BLANCHEFOSSE ET BAY", "coordonnees_gps": [49.7819854475, 4.29783858253]}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75143c85f43dd0b20b0a5aee2a5d277e2cbadb3d", "fields": {"nom_de_la_commune": "LE CHATELET SUR SORMONNE", "libell_d_acheminement": "LE CHATELET SUR SORMONNE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08110"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f995aa31fa1dc6f5659a9b47f29b9901aca66da", "fields": {"nom_de_la_commune": "CHAUMONT PORCIEN", "libell_d_acheminement": "CHAUMONT PORCIEN", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08113"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9ff7783708ac4d106e76b85a40daf98eb56c3b", "fields": {"nom_de_la_commune": "CHALANDRY ELAIRE", "libell_d_acheminement": "CHALANDRY ELAIRE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08096"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77ba3f07f840440ee575a21f8fdb7307f34bf6d8", "fields": {"nom_de_la_commune": "BOULT AUX BOIS", "libell_d_acheminement": "BOULT AUX BOIS", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08075"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8cda3bb9b185ff5610ccb9384d9d307b28c35c", "fields": {"nom_de_la_commune": "BOURG FIDELE", "libell_d_acheminement": "BOURG FIDELE", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08078"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc25d38ac28195fe6059e78dd28bcca48b8ed50", "fields": {"nom_de_la_commune": "LA BESACE", "libell_d_acheminement": "LA BESACE", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08063"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543e4f5bbf99945757fe38f01c949670e17d5daf", "fields": {"nom_de_la_commune": "CERNION", "libell_d_acheminement": "CERNION", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08094"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f569892128067fe49fd6d4c0d150a339dec9c64", "fields": {"nom_de_la_commune": "BARBY", "libell_d_acheminement": "BARBY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08048"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f319c61e299ed84bf2c46cf1ff7679eb796cd96c", "fields": {"nom_de_la_commune": "LES PETITES ARMOISES", "libell_d_acheminement": "LES PETITES ARMOISES", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08020"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b959c3c9aed55dd5b1f9704c860bf21e066c66aa", "fields": {"nom_de_la_commune": "AUVILLERS LES FORGES", "libell_d_acheminement": "AUVILLERS LES FORGES", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08037"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2ccb187b3a9a76024b32eb6c9d4cbbdc2c62fa", "fields": {"nom_de_la_commune": "AUBONCOURT VAUZELLES", "libell_d_acheminement": "AUBONCOURT VAUZELLES", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08027"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3f003a26c43657a943c9b2e766f07bea5ca5bc", "fields": {"nom_de_la_commune": "VILLEVOCANCE", "libell_d_acheminement": "VILLEVOCANCE", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07342"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70eed23803d5dc784d54270183a1c6127e95c732", "fields": {"nom_de_la_commune": "VAUDEVANT", "libell_d_acheminement": "VAUDEVANT", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07335"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b957a124689d9f812eb02e592f2d2a5a654b675f", "fields": {"nom_de_la_commune": "AIGLEMONT", "libell_d_acheminement": "AIGLEMONT", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08003"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3adf173dac7e6c524ceb319ff21fd121853891", "fields": {"nom_de_la_commune": "AUFLANCE", "libell_d_acheminement": "AUFLANCE", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08029"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc70f562fd0eb497a09a3cd44373c9642f5c61f", "fields": {"nom_de_la_commune": "VESSEAUX", "libell_d_acheminement": "VESSEAUX", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07339"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f68412485a6405d1d0c6d68a5254425033cedcc", "fields": {"nom_de_la_commune": "AMAGNE", "libell_d_acheminement": "AMAGNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08008"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b27fe4faf58789d3db7da67b210446e91a3959", "fields": {"nom_de_la_commune": "VOGUE", "libell_d_acheminement": "VOGUE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07348"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b318d31f734ba8ce3531ab745bf0d4d7b41d21", "fields": {"code_postal": "08390", "code_commune_insee": "08116", "libell_d_acheminement": "BAIRON ET SES ENVIRONS", "ligne_5": "LE CHESNE", "nom_de_la_commune": "BAIRON ET SES ENVIRONS", "coordonnees_gps": [49.5311407275, 4.82165471787]}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad33321b7cff9bb67be9a67c0be6347194c6be9e", "fields": {"code_postal": "08450", "code_commune_insee": "08115", "libell_d_acheminement": "CHEMERY CHEHERY", "ligne_5": "CONNAGE", "nom_de_la_commune": "CHEMERY CHEHERY", "coordonnees_gps": [49.6051172684, 4.92625814673]}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814bb3ab2e4131241074d446aff10d64b766aeb4", "fields": {"code_postal": "08350", "code_commune_insee": "08115", "libell_d_acheminement": "CHEMERY CHEHERY", "ligne_5": "CHEHERY", "nom_de_la_commune": "CHEMERY CHEHERY", "coordonnees_gps": [49.6865527767, 4.88064716793]}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0002fc2eac1af6073acf69d845e37295dd4982", "fields": {"nom_de_la_commune": "CONDE LES HERPY", "libell_d_acheminement": "CONDE LES HERPY", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08126"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19bc7eb2f61699aad68f0be647e304bf610c26f9", "fields": {"nom_de_la_commune": "CLAVY WARBY", "libell_d_acheminement": "CLAVY WARBY", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08124"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8063e7239320467c1debaaeaea2eb121f072f66", "fields": {"code_postal": "08150", "code_commune_insee": "08370", "libell_d_acheminement": "ROUVROY SUR AUDRY", "ligne_5": "SERVION", "nom_de_la_commune": "ROUVROY SUR AUDRY", "coordonnees_gps": [49.8122244724, 4.52545242673]}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52cdddc90e87bc27c7b291fc851d9f402c2d7fd", "fields": {"code_postal": "08220", "code_commune_insee": "08366", "libell_d_acheminement": "ROCQUIGNY", "ligne_5": "LA HARDOYE", "nom_de_la_commune": "ROCQUIGNY", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce30edd3f8f7557422df73b1040417f377264eb", "fields": {"nom_de_la_commune": "RUBECOURT ET LAMECOURT", "libell_d_acheminement": "RUBECOURT ET LAMECOURT", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08371"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee022c8e0deb78f5c9a2119a58f0e8724213cc55", "fields": {"nom_de_la_commune": "ST ETIENNE A ARNES", "libell_d_acheminement": "ST ETIENNE A ARNES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08379"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502e7ab5a052174e556b71120025963e3781fb4c", "fields": {"nom_de_la_commune": "ST JEAN AUX BOIS", "libell_d_acheminement": "ST JEAN AUX BOIS", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08382"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d9474d4fba32d57e9187a6062d16e776a151db", "fields": {"nom_de_la_commune": "ST LOUP TERRIER", "libell_d_acheminement": "ST LOUP TERRIER", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08387"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d26650ec3ece4a45489f33e38d571b22203b294", "fields": {"nom_de_la_commune": "ST GERMAINMONT", "libell_d_acheminement": "ST GERMAINMONT", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08381"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3df0539e2908030bb6d2f7b4468e01ec4491d9", "fields": {"nom_de_la_commune": "RIMOGNE", "libell_d_acheminement": "RIMOGNE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08365"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9aaed00b9c70b8c1036b6b3b6d826baba391b0", "fields": {"nom_de_la_commune": "RETHEL", "libell_d_acheminement": "RETHEL", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08362"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bed283e18ca6c36ae020d7ede041676be97287", "fields": {"nom_de_la_commune": "VINETS", "libell_d_acheminement": "VINETS", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10436"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f78611ba974896a1502a180d4344e3e2b6eeca0", "fields": {"nom_de_la_commune": "AIROUX", "libell_d_acheminement": "AIROUX", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11002"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57389fc5c1ec8703283474b95e7f9cb82e07ac5", "fields": {"nom_de_la_commune": "AUNAT", "libell_d_acheminement": "AUNAT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11019"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb6ddfbfe46daaf9341e0b9315d8831b8a64590", "fields": {"nom_de_la_commune": "BRAM", "libell_d_acheminement": "BRAM", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11049"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0031af70a394d34dc7f17b04f145c4bfcd82013d", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "MONTLEGUN", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dce8e5a61229d69917c5138f8315c49484e30b0", "fields": {"nom_de_la_commune": "BOURISP", "libell_d_acheminement": "BOURISP", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65106"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada2dfc4d59e365d8c84d1daaac27433f6110545", "fields": {"nom_de_la_commune": "BOURS", "libell_d_acheminement": "BOURS", "code_postal": "65460", "coordonnees_gps": [43.2812999777, 0.0852833295183], "code_commune_insee": "65108"}, "geometry": {"type": "Point", "coordinates": [0.0852833295183, 43.2812999777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d845c90dcf0f7096bd822a9ca4649466805bebce", "fields": {"nom_de_la_commune": "CABANAC", "libell_d_acheminement": "CABANAC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65115"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5551c2f4d5584db71fcdc244738135eef66ad61", "fields": {"nom_de_la_commune": "CADEILHAN TRACHERE", "libell_d_acheminement": "CADEILHAN TRACHERE", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65117"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155f294ce20b9010f10e3da9af47cb9770577c4b", "fields": {"nom_de_la_commune": "CAMALES", "libell_d_acheminement": "CAMALES", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65121"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1381c93763fa391ef43ae3dc82c8a9e6b3af33c5", "fields": {"nom_de_la_commune": "CAMPAN", "libell_d_acheminement": "CAMPAN", "code_postal": "65710", "coordonnees_gps": [42.9707906298, 0.166937174771], "code_commune_insee": "65123"}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ea7e9f2ffe6274d781465825886e41a7862802", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "STE MARIE DE CAMPAN", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b7f908fbd6760f68893159ac3347e387af2a9e", "fields": {"nom_de_la_commune": "CAUTERETS", "libell_d_acheminement": "CAUTERETS", "code_postal": "65110", "coordonnees_gps": [42.851971691, -0.126897135719], "code_commune_insee": "65138"}, "geometry": {"type": "Point", "coordinates": [-0.126897135719, 42.851971691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb8b8ef2a440b3d06323f3ea64506a85296aba2", "fields": {"nom_de_la_commune": "CAZAUX DEBAT", "libell_d_acheminement": "CAZAUX DEBAT", "code_postal": "65590", "coordonnees_gps": [42.8710607597, 0.412551570718], "code_commune_insee": "65140"}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6a8252c5277c828bfc75885dba3ea426ccb916", "fields": {"code_postal": "65240", "code_commune_insee": "65141", "libell_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", "ligne_5": "ANERAN CAMORS", "nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483d44444008436d2dac1518ecd735cc94594c03", "fields": {"nom_de_la_commune": "CHIS", "libell_d_acheminement": "CHIS", "code_postal": "65800", "coordonnees_gps": [43.2687329702, 0.110735154449], "code_commune_insee": "65146"}, "geometry": {"type": "Point", "coordinates": [0.110735154449, 43.2687329702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d2737809e3190c579d4f2bdd3228d7481edc61", "fields": {"nom_de_la_commune": "DOURS", "libell_d_acheminement": "DOURS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65156"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d18ccfdc4b8d66580adcc448423ec14f15789e7", "fields": {"nom_de_la_commune": "ENS", "libell_d_acheminement": "ENS", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65157"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae562039b18996076b58283b9b284759a443020b", "fields": {"nom_de_la_commune": "ESCONNETS", "libell_d_acheminement": "ESCONNETS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65162"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945f2656e7f2aa43ea836458c1a17d67b3341bc7", "fields": {"nom_de_la_commune": "ESCOTS", "libell_d_acheminement": "ESCOTS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65163"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88924ee4565439562886381d6f74fe303270e484", "fields": {"nom_de_la_commune": "ESPARROS", "libell_d_acheminement": "ESPARROS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65165"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56d7f90e18c6e160f332a44e6f6eefee35f41ab", "fields": {"nom_de_la_commune": "ESTERRE", "libell_d_acheminement": "ESTERRE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65173"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2228dde2eb5187e083ff1f38d9aff0ea29f7f0f0", "fields": {"nom_de_la_commune": "FRECHEDE", "libell_d_acheminement": "FRECHEDE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65178"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45036227bbc7e7da537a7b6199e94d09499fce7a", "fields": {"code_postal": "65120", "code_commune_insee": "65192", "libell_d_acheminement": "GAVARNIE GEDRE", "ligne_5": "GAVARNIE", "nom_de_la_commune": "GAVARNIE GEDRE", "coordonnees_gps": [42.8310164277, 0.0356881047595]}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32e5aa5bc175b9ae699cdc2619df87c62d6df88f", "fields": {"nom_de_la_commune": "GOUDON", "libell_d_acheminement": "GOUDON", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65206"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28294d01a18729d026be7250b586a576a8f8e495", "fields": {"nom_de_la_commune": "GRAILHEN", "libell_d_acheminement": "GRAILHEN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65208"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed7e7caf133d54eace74e1bf2d15a8fcd99931f", "fields": {"nom_de_la_commune": "HECHES", "libell_d_acheminement": "HECHES", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65218"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecc0fe987d2cf5f08ca1fbfca36f1b8369acbbc", "fields": {"nom_de_la_commune": "HOUEYDETS", "libell_d_acheminement": "HOUEYDETS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65224"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acce3857d9f99fa3c6772890fb1462efe0216e2", "fields": {"nom_de_la_commune": "HOURC", "libell_d_acheminement": "HOURC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65225"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725a6e62063774cb631069836a9b7a68f06d4d4f", "fields": {"nom_de_la_commune": "ILHEU", "libell_d_acheminement": "ILHEU", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65229"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e31376737554c315de3a2fb71b01783d8653f64", "fields": {"nom_de_la_commune": "LABASTIDE", "libell_d_acheminement": "LABASTIDE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65239"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975a21436d64b299f9dc6306900002bfc3258cb6", "fields": {"nom_de_la_commune": "LAFITOLE", "libell_d_acheminement": "LAFITOLE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65243"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dea64e70750992f89ba350e2df8d1866d4b6a0d", "fields": {"nom_de_la_commune": "LAHITTE TOUPIERE", "libell_d_acheminement": "LAHITTE TOUPIERE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65248"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "970fa5f9114c433dfdeca9c90a79154d766ddacd", "fields": {"nom_de_la_commune": "LALANNE TRIE", "libell_d_acheminement": "LALANNE TRIE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65250"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdd146ca605f6835e4a47ed363d1d8416b26fea", "fields": {"nom_de_la_commune": "LALOUBERE", "libell_d_acheminement": "LALOUBERE", "code_postal": "65310", "coordonnees_gps": [43.1967929202, 0.0668474057462], "code_commune_insee": "65251"}, "geometry": {"type": "Point", "coordinates": [0.0668474057462, 43.1967929202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a014ec622801bf979fe58547833a0cbc3e8eaf", "fields": {"nom_de_la_commune": "LAMARQUE RUSTAING", "libell_d_acheminement": "LAMARQUE RUSTAING", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65253"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf638299446fabe5d1f4614ae5f9ff554bf4d52f", "fields": {"nom_de_la_commune": "LARAN", "libell_d_acheminement": "LARAN", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65261"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b548b832d6104fa151d298a28bf1bedb8a2507d", "fields": {"nom_de_la_commune": "LARROQUE", "libell_d_acheminement": "LARROQUE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65263"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3a012a98cf4ae389caa2a31f156b9351b681c3", "fields": {"nom_de_la_commune": "LASCAZERES", "libell_d_acheminement": "LASCAZERES", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65264"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75333a2a9a212d71559dc70140c41a014a2e6793", "fields": {"nom_de_la_commune": "LASLADES", "libell_d_acheminement": "LASLADES", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65265"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6b03d86eb20f02f3d6a2919f723135b29b0e96", "fields": {"nom_de_la_commune": "LESCURRY", "libell_d_acheminement": "LESCURRY", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65269"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362f99cc20ec1cc5678ce2fcff36ff4307a62916", "fields": {"nom_de_la_commune": "MOLERE", "libell_d_acheminement": "MOLERE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65312"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab76c51d8aecc72378064e632cb59080f8fe4b7", "fields": {"nom_de_la_commune": "MOMERES", "libell_d_acheminement": "MOMERES", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65313"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03a62f27f78e5ab78f1622a62f348405546af1c", "fields": {"nom_de_la_commune": "MONTOUSSE", "libell_d_acheminement": "MONTOUSSE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65322"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c749498ef3c697912a8767a7cc31f19422e27dd", "fields": {"nom_de_la_commune": "MOUMOULOUS", "libell_d_acheminement": "MOUMOULOUS", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65325"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1171f9454732ce8f3281723bec0c1a55b6633b0c", "fields": {"nom_de_la_commune": "MUN", "libell_d_acheminement": "MUN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65326"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70d5c1766bdfe82550e038a929c21402fb833b7", "fields": {"nom_de_la_commune": "NEUILH", "libell_d_acheminement": "NEUILH", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65328"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d0915925a3addcfb8b0375837d4abd3450fe3cd", "fields": {"nom_de_la_commune": "ODOS", "libell_d_acheminement": "ODOS", "code_postal": "65310", "coordonnees_gps": [43.1967929202, 0.0668474057462], "code_commune_insee": "65331"}, "geometry": {"type": "Point", "coordinates": [0.0668474057462, 43.1967929202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4850430a634deafbbb925769241bbce0bb41a8a7", "fields": {"nom_de_la_commune": "ORINCLES", "libell_d_acheminement": "ORINCLES", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65339"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5915ced8a5583e395abd4fb8f7536dbd24ce7d4b", "fields": {"nom_de_la_commune": "OSMETS", "libell_d_acheminement": "OSMETS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65342"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e7c71316d6e955aff4a92f74fbf1420e5b6ffe", "fields": {"nom_de_la_commune": "OURDIS COTDOUSSAN", "libell_d_acheminement": "OURDIS COTDOUSSAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65348"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b518a3c30165a03af68cebecf763edfd945a71ad", "fields": {"nom_de_la_commune": "OUSTE", "libell_d_acheminement": "OUSTE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65351"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a09c75e685da560763cef05cf58eabb1942372b", "fields": {"nom_de_la_commune": "OUZOUS", "libell_d_acheminement": "OUZOUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65352"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992eff7271d16869c0210928fdfb76def0cad1f8", "fields": {"nom_de_la_commune": "PAILHAC", "libell_d_acheminement": "PAILHAC", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65354"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d5d7ca7d9fa7ee84825fa974c140d24b0885bb", "fields": {"nom_de_la_commune": "PEYROUSE", "libell_d_acheminement": "PEYROUSE", "code_postal": "65270", "coordonnees_gps": [43.0865540375, -0.153402154406], "code_commune_insee": "65360"}, "geometry": {"type": "Point", "coordinates": [-0.153402154406, 43.0865540375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de624f376ac71f23dd485167a8c7dc97d045212", "fields": {"nom_de_la_commune": "PRECHAC", "libell_d_acheminement": "PRECHAC", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65371"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77369cfa1c9eec858455b326a0569b2eb628918", "fields": {"nom_de_la_commune": "RECURT", "libell_d_acheminement": "RECURT", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65376"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a5943db273aaa5f25e704989083f3bede02dd5", "fields": {"nom_de_la_commune": "REJAUMONT", "libell_d_acheminement": "REJAUMONT", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65377"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bca717f8a71a62931ed5243ef2463db99f522d3", "fields": {"nom_de_la_commune": "SABALOS", "libell_d_acheminement": "SABALOS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65380"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d42da273ea26145503990da2633fc599b057df", "fields": {"nom_de_la_commune": "SACOUE", "libell_d_acheminement": "SACOUE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65382"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9757fad3c1077f4cff718a68eeaf67c5e34325d", "fields": {"nom_de_la_commune": "ST CREAC", "libell_d_acheminement": "ST CREAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65386"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79bf6be0d121527b608d446943cdb7550c5ec93a", "fields": {"nom_de_la_commune": "ST LARY SOULAN", "libell_d_acheminement": "ST LARY SOULAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65388"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d7c88be9954bb2a48304e2caed0a545d5b268d", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65391"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a7ca8b52d7c4c080461dcb0c6a6019144dda45d", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65394"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4d4651b5e7c96d80992512365c669698724d84", "fields": {"nom_de_la_commune": "ST SEVER DE RUSTAN", "libell_d_acheminement": "ST SEVER DE RUSTAN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65397"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e900726cbf8acedac7353e2ad4081b689537cec", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65400"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9dc44e09c978e3126a807e8fa4f422668b03252", "fields": {"nom_de_la_commune": "SALLES ADOUR", "libell_d_acheminement": "SALLES ADOUR", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65401"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13db26488c07cc0281d6d751127aae47b142efea", "fields": {"nom_de_la_commune": "SARIAC MAGNOAC", "libell_d_acheminement": "SARIAC MAGNOAC", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65404"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2512b28167840cd44e445cc18a1ed8fccebb371f", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65412"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000b52edc07ac5da59e920a4c036eeaf9551ecdf", "fields": {"nom_de_la_commune": "SEMEAC", "libell_d_acheminement": "SEMEAC", "code_postal": "65600", "coordonnees_gps": [43.2273906132, 0.117609350526], "code_commune_insee": "65417"}, "geometry": {"type": "Point", "coordinates": [0.117609350526, 43.2273906132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88f2df2083196f167a4aebea713c5face789e73", "fields": {"nom_de_la_commune": "SOUYEAUX", "libell_d_acheminement": "SOUYEAUX", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65436"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a167b31723964e544c16e896136e1d566257f49a", "fields": {"nom_de_la_commune": "TARASTEIX", "libell_d_acheminement": "TARASTEIX", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65439"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0125bc28810cadb272540253bcfec15846d5af97", "fields": {"nom_de_la_commune": "THEBE", "libell_d_acheminement": "THEBE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65441"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e92195b81c5dbff013a8f313fb071bd861f38ee", "fields": {"nom_de_la_commune": "THERMES MAGNOAC", "libell_d_acheminement": "THERMES MAGNOAC", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65442"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24d268438b105b44ff76a3ec26fda463aef01a9", "fields": {"nom_de_la_commune": "TOURNAY", "libell_d_acheminement": "TOURNAY", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65447"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea92467e7953cb43d17b971e81766c8aa6cc9603", "fields": {"nom_de_la_commune": "TRAMEZAIGUES", "libell_d_acheminement": "TRAMEZAIGUES", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65450"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c850b775f7490ef249a74207adb5934948086569", "fields": {"nom_de_la_commune": "TRIE SUR BAISE", "libell_d_acheminement": "TRIE SUR BAISE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65452"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536355c8b4bae09c89015bf8ec1938fdbb272383", "fields": {"nom_de_la_commune": "VIC EN BIGORRE", "libell_d_acheminement": "VIC EN BIGORRE", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65460"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566fad53bf63b19c1e644cb173a9b18fa9ddd610", "fields": {"nom_de_la_commune": "VIEY", "libell_d_acheminement": "VIEY", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65469"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3772823bd9a5924834ba512fe902bfbbb65fffbc", "fields": {"nom_de_la_commune": "LES ANGLES", "libell_d_acheminement": "LES ANGLES", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66004"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab2ee65d23dd073dd13919c9cd8e5e156744c06", "fields": {"nom_de_la_commune": "ARGELES SUR MER", "libell_d_acheminement": "ARGELES SUR MER", "code_postal": "66700", "coordonnees_gps": [42.5348887985, 3.02437222273], "code_commune_insee": "66008"}, "geometry": {"type": "Point", "coordinates": [3.02437222273, 42.5348887985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1453c2d2819041f92f46ad2b6232a5860306a773", "fields": {"code_postal": "66360", "code_commune_insee": "66010", "libell_d_acheminement": "AYGUATEBIA TALAU", "ligne_5": "TALAU", "nom_de_la_commune": "AYGUATEBIA TALAU", "coordonnees_gps": [42.5209354388, 2.25593024652]}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45b11246341fc6ebe64ec0b4452406313a2a45ef", "fields": {"nom_de_la_commune": "BAILLESTAVY", "libell_d_acheminement": "BAILLESTAVY", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66013"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407a7d69a17ac5ff5a4f8cb6715f3cf50b57a011", "fields": {"nom_de_la_commune": "BOULE D AMONT", "libell_d_acheminement": "BOULE D AMONT", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66022"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c42bd66c6fb526f655b470c67f5085d1f78363eb", "fields": {"nom_de_la_commune": "BROUILLA", "libell_d_acheminement": "BROUILLA", "code_postal": "66620", "coordonnees_gps": [42.5750209747, 2.8946967291], "code_commune_insee": "66026"}, "geometry": {"type": "Point", "coordinates": [2.8946967291, 42.5750209747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6196abb16d7c0ecbca300001c7d4d56ee1f17e16", "fields": {"nom_de_la_commune": "CABESTANY", "libell_d_acheminement": "CABESTANY", "code_postal": "66330", "coordonnees_gps": [42.6790922841, 2.94584272247], "code_commune_insee": "66028"}, "geometry": {"type": "Point", "coordinates": [2.94584272247, 42.6790922841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5e626ed73447bd2d6169c4981dd163835b81d8", "fields": {"nom_de_la_commune": "CALCE", "libell_d_acheminement": "CALCE", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66030"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f75720efa9bee3a1071d733b864a7d5db4258b4", "fields": {"code_postal": "66140", "code_commune_insee": "66037", "libell_d_acheminement": "CANET EN ROUSSILLON", "ligne_5": "CANET PLAGE", "nom_de_la_commune": "CANET EN ROUSSILLON", "coordonnees_gps": [42.6840532629, 3.01103032321]}, "geometry": {"type": "Point", "coordinates": [3.01103032321, 42.6840532629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0aad4782b3595a3bd19886865c3ffe956e5a39", "fields": {"nom_de_la_commune": "CASES DE PENE", "libell_d_acheminement": "CASES DE PENE", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66041"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f21306cfc404f5204e2647cb9e187341881a730c", "fields": {"nom_de_la_commune": "CASSAGNES", "libell_d_acheminement": "CASSAGNES", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66042"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35c4e00a038f383cf5a64de3208d8a1dfa49bcb", "fields": {"nom_de_la_commune": "CASTELNOU", "libell_d_acheminement": "CASTELNOU", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66044"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10e19ef81b829da154fef65a66fec014abde22a", "fields": {"nom_de_la_commune": "CLARA", "libell_d_acheminement": "CLARA", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66051"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3ae57c455bfe10bda37b5792f3678179690c79", "fields": {"nom_de_la_commune": "CONAT", "libell_d_acheminement": "CONAT", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66054"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2b3e3c24a207dd7bb2ad30cbd38c6b90c273f2", "fields": {"nom_de_la_commune": "CORBERE", "libell_d_acheminement": "CORBERE", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66055"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c5abe6e1243c048bf4937e84e747e97d0cfcac", "fields": {"nom_de_la_commune": "CORNEILLA DE CONFLENT", "libell_d_acheminement": "CORNEILLA DE CONFLENT", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66057"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25eea7bf721b7b5a662686823e8d4a7efddab62e", "fields": {"nom_de_la_commune": "CORNEILLA DEL VERCOL", "libell_d_acheminement": "CORNEILLA DEL VERCOL", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66059"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d95c71ed61a7418ee1a9480747eaf3e2bf591c", "fields": {"nom_de_la_commune": "CORSAVY", "libell_d_acheminement": "CORSAVY", "code_postal": "66150", "coordonnees_gps": [42.4639953782, 2.57094475406], "code_commune_insee": "66060"}, "geometry": {"type": "Point", "coordinates": [2.57094475406, 42.4639953782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a387eece91dc6d38da87f3460eaeef798b83f6d", "fields": {"nom_de_la_commune": "COUSTOUGES", "libell_d_acheminement": "COUSTOUGES", "code_postal": "66260", "coordonnees_gps": [42.3859400236, 2.62616972995], "code_commune_insee": "66061"}, "geometry": {"type": "Point", "coordinates": [2.62616972995, 42.3859400236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd382ded0716c15a47edf0f7252b878a277b735e", "fields": {"nom_de_la_commune": "DORRES", "libell_d_acheminement": "DORRES", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66062"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db792b236efc9e6aaa898ba7eb38e154dcc793ed", "fields": {"nom_de_la_commune": "LES CLUSES", "libell_d_acheminement": "LES CLUSES", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66063"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fe8c7e01085425a1683c5c55d0452cc50b06edb", "fields": {"nom_de_la_commune": "LES BAUX STE CROIX", "libell_d_acheminement": "LES BAUX STE CROIX", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27044"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3284ee3171ef22bfdaeefa3fa3a0ed85031b2aba", "fields": {"nom_de_la_commune": "BAZOQUES", "libell_d_acheminement": "BAZOQUES", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27046"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2222ec98d03aa851405d297a865a78e9e611042f", "fields": {"code_postal": "27270", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "LA ROUSSIERE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0109875811, 0.530997676834]}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732d3454c6a01c865d4372cb7e8b884bbc0361c5", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "EPINAY", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598a9b1d3bf43a3a1a3e28421e26c9d4cccc8f9f", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "LA BARRE EN OUCHE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e856d10da233d86c11230d9239a7dfcb0e34e9", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "AJOU", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76fba945762158bf112c8e52b062c4038e71e6c2", "fields": {"nom_de_la_commune": "LE BEC THOMAS", "libell_d_acheminement": "LE BEC THOMAS", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27053"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4564b8b4b4698ec8b0a6ed8bb3227892cddfebc2", "fields": {"nom_de_la_commune": "BERNAY", "libell_d_acheminement": "BERNAY", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27056"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2862b65dbb089f0fc72aeed87af92262da7940", "fields": {"nom_de_la_commune": "BEZU ST ELOI", "libell_d_acheminement": "BEZU ST ELOI", "code_postal": "27660", "coordonnees_gps": [49.299213116, 1.68011773724], "code_commune_insee": "27067"}, "geometry": {"type": "Point", "coordinates": [1.68011773724, 49.299213116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87743cfc51f484e5ca610fc9b074c1d7f760bbed", "fields": {"nom_de_la_commune": "BOIS ARNAULT", "libell_d_acheminement": "BOIS ARNAULT", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27069"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef05dca20d84fdea6aa8e01166ffcb7c8a157d85", "fields": {"nom_de_la_commune": "BOISNEY", "libell_d_acheminement": "BOISNEY", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27074"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f6822e04f896523669d3dae507dc8463207a26", "fields": {"nom_de_la_commune": "BOISSY LAMBERVILLE", "libell_d_acheminement": "BOISSY LAMBERVILLE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27079"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0477bcd68214e3647b7d2b16e92b672c878bf2d1", "fields": {"nom_de_la_commune": "LES BOTTEREAUX", "libell_d_acheminement": "LES BOTTEREAUX", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27096"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f049db90203eca786617446e9184f362315bee", "fields": {"nom_de_la_commune": "BOUCHEVILLIERS", "libell_d_acheminement": "BOUCHEVILLIERS", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27098"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "171a5eb5a3f4db4da8d608bd4ae3b1d63a13b3d9", "fields": {"code_postal": "27210", "code_commune_insee": "27100", "libell_d_acheminement": "BOULLEVILLE", "ligne_5": "LA LANDE", "nom_de_la_commune": "BOULLEVILLE", "coordonnees_gps": [49.3651599552, 0.371153081403]}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607e3e5cf3ebc710f95483b1dadbcdbe6757427d", "fields": {"nom_de_la_commune": "BOUQUETOT", "libell_d_acheminement": "BOUQUETOT", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27102"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac79376aba18ed28aef840581841845af01e8ce", "fields": {"nom_de_la_commune": "BOURNEVILLE STE CROIX", "libell_d_acheminement": "BOURNEVILLE STE CROIX", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27107"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab0c5a0f618e7e9d6a7e4a9fd5b0761e13ab004", "fields": {"code_postal": "27500", "code_commune_insee": "27107", "libell_d_acheminement": "BOURNEVILLE STE CROIX", "ligne_5": "STE CROIX SUR AIZIER", "nom_de_la_commune": "BOURNEVILLE STE CROIX", "coordonnees_gps": [49.3519408405, 0.530523220775]}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebfbc70014e6268da9cf00e114f13e908e9b602", "fields": {"nom_de_la_commune": "BOURTH", "libell_d_acheminement": "BOURTH", "code_postal": "27580", "coordonnees_gps": [48.7461126337, 0.787797028241], "code_commune_insee": "27108"}, "geometry": {"type": "Point", "coordinates": [0.787797028241, 48.7461126337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94e80009a3b5ee87eaefc2d279f8c4293e7198e", "fields": {"nom_de_la_commune": "BRETEUIL", "libell_d_acheminement": "BRETEUIL", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27112"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8f8de43b7f5bc40b0d0aaed72576bab04ab2c7", "fields": {"code_postal": "27160", "code_commune_insee": "27112", "libell_d_acheminement": "BRETEUIL", "ligne_5": "LA GUEROULDE", "nom_de_la_commune": "BRETEUIL", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a152b22163b6dc0bc525679874fd069366a490", "fields": {"nom_de_la_commune": "BROSVILLE", "libell_d_acheminement": "BROSVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27118"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4a6ac5bbd3cd01a4c7d779443968854bd235f3", "fields": {"nom_de_la_commune": "CAILLOUET ORGEVILLE", "libell_d_acheminement": "CAILLOUET ORGEVILLE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27123"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942c8ace7e2acab577947335af2636c23de34b50", "fields": {"nom_de_la_commune": "CHAISE DIEU DU THEIL", "libell_d_acheminement": "CHAISE DIEU DU THEIL", "code_postal": "27580", "coordonnees_gps": [48.7461126337, 0.787797028241], "code_commune_insee": "27137"}, "geometry": {"type": "Point", "coordinates": [0.787797028241, 48.7461126337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625ce9e01274aa1bd4cd8eb9fe4fc9a8b75b78eb", "fields": {"nom_de_la_commune": "CHAMBRAY", "libell_d_acheminement": "CHAMBRAY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27140"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3810539091d0c19f81c17dae34dbef8945e5a629", "fields": {"nom_de_la_commune": "CHAMP DOLENT", "libell_d_acheminement": "CHAMP DOLENT", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27141"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4eff3bf5de7270b1fb989fe57e1a44f1df427dd", "fields": {"nom_de_la_commune": "LA CHAPELLE HARENG", "libell_d_acheminement": "LA CHAPELLE HARENG", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27149"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e88f239ed3a5cc5ca5fbeaf0f1f9e87944055e", "fields": {"nom_de_la_commune": "CHAVIGNY BAILLEUL", "libell_d_acheminement": "CHAVIGNY BAILLEUL", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27154"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c440e16fca1095c2ac86395fe45bea944ffc503", "fields": {"nom_de_la_commune": "CHENNEBRUN", "libell_d_acheminement": "CHENNEBRUN", "code_postal": "27820", "coordonnees_gps": [48.6910585643, 0.801324463794], "code_commune_insee": "27155"}, "geometry": {"type": "Point", "coordinates": [0.801324463794, 48.6910585643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06937982553cb0c641551969131c24a3e80ee1ca", "fields": {"nom_de_la_commune": "COLLETOT", "libell_d_acheminement": "COLLETOT", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27163"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f96425c46faeac02471cca7f932277d16539d5", "fields": {"nom_de_la_commune": "COMBON", "libell_d_acheminement": "COMBON", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27164"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa99355f8d8bc80d9694de03e30dbed557786bc0", "fields": {"nom_de_la_commune": "CONCHES EN OUCHE", "libell_d_acheminement": "CONCHES EN OUCHE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27165"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b66e3b4b37ef7c4badab261b2f939fcb1935f8d", "fields": {"nom_de_la_commune": "COURDEMANCHE", "libell_d_acheminement": "COURDEMANCHE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27181"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625c1dc2a8e9b73c894a1641adc2d0c832dcc8d4", "fields": {"nom_de_la_commune": "LA COUTURE BOUSSEY", "libell_d_acheminement": "LA COUTURE BOUSSEY", "code_postal": "27750", "coordonnees_gps": [48.9018917237, 1.39711841747], "code_commune_insee": "27183"}, "geometry": {"type": "Point", "coordinates": [1.39711841747, 48.9018917237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df141824612869eed39d46758b82119c6f6da4f7", "fields": {"nom_de_la_commune": "CRASVILLE", "libell_d_acheminement": "CRASVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27184"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4715a3bb160a90be053d857a610dac07427e69f", "fields": {"nom_de_la_commune": "CRIQUEBEUF LA CAMPAGNE", "libell_d_acheminement": "CRIQUEBEUF LA CAMPAGNE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27187"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70edfc8719a02c199c61ea0987d80631861883fb", "fields": {"nom_de_la_commune": "CROISY SUR EURE", "libell_d_acheminement": "CROISY SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27190"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69bf478b421e7aa9757025d819094ea8dbf26d36", "fields": {"nom_de_la_commune": "CROTH", "libell_d_acheminement": "CROTH", "code_postal": "27530", "coordonnees_gps": [48.8601800798, 1.38794601132], "code_commune_insee": "27193"}, "geometry": {"type": "Point", "coordinates": [1.38794601132, 48.8601800798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1221218b751c3ce7e93bdda44f3460df7e78940", "fields": {"code_postal": "27160", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "CONDE SUR ITON", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7a03786c957aa1ebd254a8272fb07b4f5d79bb", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "DAMVILLE", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba139841791969fe111b257a0c069c19df27198", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "GOUVILLE", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d181187e38cfa836bdf26d7b6bf56eb84c9fb3", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LE SACQ", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a01a06892c090c75fddf4c832fb73cb7e7bc36", "fields": {"nom_de_la_commune": "DANGU", "libell_d_acheminement": "DANGU", "code_postal": "27720", "coordonnees_gps": [49.2458400494, 1.68182274332], "code_commune_insee": "27199"}, "geometry": {"type": "Point", "coordinates": [1.68182274332, 49.2458400494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc50d341ff72ed06a319b81f3d621c8691316754", "fields": {"nom_de_la_commune": "DAUBEUF PRES VATTEVILLE", "libell_d_acheminement": "DAUBEUF PRES VATTEVILLE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27202"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2988997a8d165555b3aa8268f96aade5a919c79", "fields": {"nom_de_la_commune": "DRUCOURT", "libell_d_acheminement": "DRUCOURT", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27207"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffeee15b695ff51e84149fe17ae02b323f691b33", "fields": {"nom_de_la_commune": "DURANVILLE", "libell_d_acheminement": "DURANVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27208"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de566a0f75f20f5dc45baea4d4640b06891723a2", "fields": {"code_postal": "27420", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "CANTIERS", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.2104555744, 1.59282946064]}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd903274e47ff933ab51db263750b73e7e46bd7", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FORET LA FOLIE", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831f1fd525fc0bd246c7134e713bccd7d420c1d6", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "PANILLEUSE", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672ad3f64e05a0f3a9f5b53f137fa910c1da56a3", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "CIVIERES", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440e2be65e0556b20050e7644c94beff8ce189e7", "fields": {"nom_de_la_commune": "EPAIGNES", "libell_d_acheminement": "EPAIGNES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27218"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "036fb5024e198fd2cbd3c8f3db2f6a5db1ec18c1", "fields": {"nom_de_la_commune": "EPEGARD", "libell_d_acheminement": "EPEGARD", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27219"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e0a93db8c28e981e3417ddc79a749f9b0fc5c0", "fields": {"nom_de_la_commune": "FERRIERES HAUT CLOCHER", "libell_d_acheminement": "FERRIERES HAUT CLOCHER", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27238"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd50e50ba75a0f3c6904bc1536900c0a1a2b83c4", "fields": {"nom_de_la_commune": "FONTAINE LA SORET", "libell_d_acheminement": "FONTAINE LA SORET", "code_postal": "27550", "coordonnees_gps": [49.1415842432, 0.718795364074], "code_commune_insee": "27253"}, "geometry": {"type": "Point", "coordinates": [0.718795364074, 49.1415842432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9ba2feef9a373177e6ecac42b0cf6d07a6d271", "fields": {"nom_de_la_commune": "FOUQUEVILLE", "libell_d_acheminement": "FOUQUEVILLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27261"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa373e58af546e87273a2148e14e9e313469ecb2", "fields": {"nom_de_la_commune": "FRESNEY", "libell_d_acheminement": "FRESNEY", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27271"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0690352d2799421befdb85acd455522080b123", "fields": {"nom_de_la_commune": "GLISOLLES", "libell_d_acheminement": "GLISOLLES", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27287"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96d9b78178a1d7465b0f57ca9137a88a999d45f0", "fields": {"nom_de_la_commune": "GRAND CAMP", "libell_d_acheminement": "GRAND CAMP", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27295"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c471ed6e4950f2501bbdde07bbb8ee1c4f755e77", "fields": {"code_postal": "27370", "code_commune_insee": "27302", "libell_d_acheminement": "LE BOSC DU THEIL", "ligne_5": "ST NICOLAS DU BOSC", "nom_de_la_commune": "LE BOSC DU THEIL", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ef7e6bd1ef1932e81c67864fc2b5dbc49c41a3", "fields": {"nom_de_la_commune": "HACQUEVILLE", "libell_d_acheminement": "HACQUEVILLE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27310"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da615e75b4b922fb30e30e3078d5005be26c253", "fields": {"nom_de_la_commune": "HARDENCOURT COCHEREL", "libell_d_acheminement": "HARDENCOURT COCHEREL", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27312"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "299d2fd2f615495493de047484ece642e6542cf5", "fields": {"nom_de_la_commune": "LA HARENGERE", "libell_d_acheminement": "LA HARENGERE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27313"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52f695c3c75b89200a5978f243c1641e69117c5", "fields": {"nom_de_la_commune": "LA HAYE ST SYLVESTRE", "libell_d_acheminement": "LA HAYE ST SYLVESTRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27323"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16afc591c19b18aeb903e04501b53ea182e5f6b2", "fields": {"nom_de_la_commune": "HERQUEVILLE", "libell_d_acheminement": "HERQUEVILLE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27330"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0fd344cc0f373e65b982e78b63979d7c403fb5", "fields": {"nom_de_la_commune": "HEUBECOURT HARICOURT", "libell_d_acheminement": "HEUBECOURT HARICOURT", "code_postal": "27630", "coordonnees_gps": [49.1418584824, 1.58250649278], "code_commune_insee": "27331"}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b05cc9ec15913d8d885c7c4136ab007c20861a8", "fields": {"code_postal": "27630", "code_commune_insee": "27331", "libell_d_acheminement": "HEUBECOURT HARICOURT", "ligne_5": "HARICOURT", "nom_de_la_commune": "HEUBECOURT HARICOURT", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fdb9703cbc58f370d4c49a766f5a572eae31bb", "fields": {"nom_de_la_commune": "HEUDREVILLE SUR EURE", "libell_d_acheminement": "HEUDREVILLE SUR EURE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27335"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1443f9cc64b6a997f7835b6e0086cd36d0f8c56e", "fields": {"nom_de_la_commune": "HONGUEMARE GUENOUVILLE", "libell_d_acheminement": "HONGUEMARE GUENOUVILLE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27340"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854da86c8ad76ecacc3ee2a8a2308258fe387d9f", "fields": {"nom_de_la_commune": "HOUETTEVILLE", "libell_d_acheminement": "HOUETTEVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27342"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cffa9fc04e67b075d73187ba6c1d3ad7fb2870", "fields": {"nom_de_la_commune": "LA HOUSSAYE", "libell_d_acheminement": "LA HOUSSAYE", "code_postal": "27410", "coordonnees_gps": [49.0064963225, 0.739265680908], "code_commune_insee": "27345"}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab54a95e4f8358ebd059fc6a71d6fd697917876", "fields": {"nom_de_la_commune": "ILLEVILLE SUR MONTFORT", "libell_d_acheminement": "ILLEVILLE SUR MONTFORT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27349"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895e27ad004bd77558d10933836371c18afb72e4", "fields": {"nom_de_la_commune": "JUMELLES", "libell_d_acheminement": "JUMELLES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27360"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac5a9d16881a1a0677ee65745a02ad77a8b7354", "fields": {"nom_de_la_commune": "LAUNAY", "libell_d_acheminement": "LAUNAY", "code_postal": "27470", "coordonnees_gps": [49.1014259839, 0.700715090149], "code_commune_insee": "27364"}, "geometry": {"type": "Point", "coordinates": [0.700715090149, 49.1014259839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9c489ed856d74f5fc05fddb030a8160ec75754", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27368"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0436f1d0d3c47e31f07a1cfc28cd853da3d0059d", "fields": {"nom_de_la_commune": "LILLY", "libell_d_acheminement": "LILLY", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27369"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9236ab0d317055853cf6d54c1c1e4dd627eccc6b", "fields": {"nom_de_la_commune": "LISORS", "libell_d_acheminement": "LISORS", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27370"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b5bdcd9603a35fb88c64b6a07991c9627ec92a", "fields": {"nom_de_la_commune": "LIVET SUR AUTHOU", "libell_d_acheminement": "LIVET SUR AUTHOU", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27371"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db446e8a5a500388fa8b95eafb3dd9676a52298", "fields": {"nom_de_la_commune": "LONGCHAMPS", "libell_d_acheminement": "LONGCHAMPS", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27372"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c43c774f9a1fc21ee2097261328e256e4ed9839", "fields": {"nom_de_la_commune": "LOUVIERS", "libell_d_acheminement": "LOUVIERS", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27375"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e020bd32025d2284154b9b18ddcc5c3f9dd6b297", "fields": {"nom_de_la_commune": "LA MADELEINE DE NONANCOURT", "libell_d_acheminement": "LA MADELEINE DE NONANCOURT", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27378"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e05cf57ce3eb2e1d618a6efd395a360c401e63", "fields": {"nom_de_la_commune": "MANDRES", "libell_d_acheminement": "MANDRES", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27383"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be75f543211e0eaec857e97c98c76e10cf89e0e7", "fields": {"nom_de_la_commune": "MANNEVILLE SUR RISLE", "libell_d_acheminement": "MANNEVILLE SUR RISLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27385"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b99d30c3342a1c3b4ae65ae2abc01aa0509ef0", "fields": {"nom_de_la_commune": "MARCILLY LA CAMPAGNE", "libell_d_acheminement": "MARCILLY LA CAMPAGNE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27390"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5760a64fe31a865fcbf380ec94f190ed92674e14", "fields": {"nom_de_la_commune": "MENESQUEVILLE", "libell_d_acheminement": "MENESQUEVILLE", "code_postal": "27850", "coordonnees_gps": [49.3580042596, 1.40713015705], "code_commune_insee": "27396"}, "geometry": {"type": "Point", "coordinates": [1.40713015705, 49.3580042596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27ca1ec112b89e21a3853640e31907a75515876", "fields": {"nom_de_la_commune": "MERCEY", "libell_d_acheminement": "MERCEY", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27399"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3077c3b9b04f34324164f288aeee5a55fe6de23b", "fields": {"nom_de_la_commune": "MESNIL ROUSSET", "libell_d_acheminement": "MESNIL ROUSSET", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27404"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415dd2a7e49b2690a238310054d6f8721481b297", "fields": {"nom_de_la_commune": "MORAINVILLE JOUVEAUX", "libell_d_acheminement": "MORAINVILLE JOUVEAUX", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27415"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea69e2a3398eca6db6b962c135bbbfa7675a04c", "fields": {"code_postal": "27240", "code_commune_insee": "27416", "libell_d_acheminement": "BUIS SUR DAMVILLE", "ligne_5": "BOISSY SUR DAMVILLE", "nom_de_la_commune": "BUIS SUR DAMVILLE", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad5abd1df207cefe07bc0d83c9323fedf626cd3", "fields": {"nom_de_la_commune": "MORGNY", "libell_d_acheminement": "MORGNY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27417"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19c8d27e7f8d414a9de51c815274748f292bb38", "fields": {"nom_de_la_commune": "MOUSSEAUX NEUVILLE", "libell_d_acheminement": "MOUSSEAUX NEUVILLE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27421"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf6a5eaa2794ece8a7e0039f8f0a29f1306d489", "fields": {"nom_de_la_commune": "MUZY", "libell_d_acheminement": "MUZY", "code_postal": "27650", "coordonnees_gps": [48.7821743197, 1.31343473217], "code_commune_insee": "27423"}, "geometry": {"type": "Point", "coordinates": [1.31343473217, 48.7821743197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986483d00092e54e95b13db0cc3d1535c8c1008c", "fields": {"nom_de_la_commune": "NASSANDRES", "libell_d_acheminement": "NASSANDRES", "code_postal": "27550", "coordonnees_gps": [49.1415842432, 0.718795364074], "code_commune_insee": "27425"}, "geometry": {"type": "Point", "coordinates": [0.718795364074, 49.1415842432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70e7e127345f5c39603bf2d00fdf77373232998", "fields": {"nom_de_la_commune": "NEAUFLES ST MARTIN", "libell_d_acheminement": "NEAUFLES ST MARTIN", "code_postal": "27830", "coordonnees_gps": [49.2776034229, 1.72677228781], "code_commune_insee": "27426"}, "geometry": {"type": "Point", "coordinates": [1.72677228781, 49.2776034229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "463bf5736459ce2868a875c76c5ff6c6c66f254a", "fields": {"nom_de_la_commune": "LE NEUBOURG", "libell_d_acheminement": "LE NEUBOURG", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27428"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b0140aadb2d82718f86fad74d8570c5d1e0076", "fields": {"nom_de_la_commune": "NORMANVILLE", "libell_d_acheminement": "NORMANVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27439"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a618815ccd89f8d19d29c3161986a8759fdedb8a", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "27720", "coordonnees_gps": [49.2458400494, 1.68182274332], "code_commune_insee": "27445"}, "geometry": {"type": "Point", "coordinates": [1.68182274332, 49.2458400494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dc5f313df078719d5cedcd2d6c8d66da0f3b66", "fields": {"nom_de_la_commune": "PACY SUR EURE", "libell_d_acheminement": "PACY SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27448"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f196fcfb1f8a0c23cca8b58eecf7e0c52e633cb4", "fields": {"nom_de_la_commune": "PLAINVILLE", "libell_d_acheminement": "PLAINVILLE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27460"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fa3d373b2827364738264048704a2a9011ee23", "fields": {"nom_de_la_commune": "LE PLESSIS GROHAN", "libell_d_acheminement": "LE PLESSIS GROHAN", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27464"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285f9ec99eabfd725f0b588c61b01a72b8b88ac7", "fields": {"nom_de_la_commune": "LE PLESSIS STE OPPORTUNE", "libell_d_acheminement": "LE PLESSIS STE OPPORTUNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27466"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272c225fdc02084e1e7418466e8ad6fb6a48be62", "fields": {"nom_de_la_commune": "LOUVIGNE DE BAIS", "libell_d_acheminement": "LOUVIGNE DE BAIS", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35161"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212968686329b44d1790d8e1b11a6a39ba87e67b", "fields": {"nom_de_la_commune": "LUITRE", "libell_d_acheminement": "LUITRE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35163"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08ca08f23e8f20deb28e45927296d2c23725e13", "fields": {"nom_de_la_commune": "MARCILLE RAOUL", "libell_d_acheminement": "MARCILLE RAOUL", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35164"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9a9099640947563517c977d4f3fcec7637bbaf", "fields": {"nom_de_la_commune": "MARPIRE", "libell_d_acheminement": "MARPIRE", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35166"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e44988f9a55a022bb9ddd5c4f95e2718e6d150a", "fields": {"nom_de_la_commune": "GUIPRY MESSAC", "libell_d_acheminement": "GUIPRY MESSAC", "code_postal": "35480", "coordonnees_gps": [47.8244409976, -1.80170067957], "code_commune_insee": "35176"}, "geometry": {"type": "Point", "coordinates": [-1.80170067957, 47.8244409976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d7c58a005dba2335477bb7005a5c099f2e6c41", "fields": {"nom_de_la_commune": "LA MEZIERE", "libell_d_acheminement": "LA MEZIERE", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35177"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1c70cfd5b372a07b7a33e96ea9153b041e6f8a", "fields": {"nom_de_la_commune": "MINIAC MORVAN", "libell_d_acheminement": "MINIAC MORVAN", "code_postal": "35540", "coordonnees_gps": [48.5204175583, -1.86964225248], "code_commune_insee": "35179"}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ba1e2ddc60d1c045285b3845332104ed4eb6cc", "fields": {"code_postal": "35540", "code_commune_insee": "35179", "libell_d_acheminement": "MINIAC MORVAN", "ligne_5": "VIEUX BOURG", "nom_de_la_commune": "MINIAC MORVAN", "coordonnees_gps": [48.5204175583, -1.86964225248]}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761dede002fb012e9b818203e6bae02503fee9a3", "fields": {"nom_de_la_commune": "MONDEVERT", "libell_d_acheminement": "MONDEVERT", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35183"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6715e2c2eb804cf7cadf12a9015a60f88bb24de6", "fields": {"nom_de_la_commune": "MONTFORT SUR MEU", "libell_d_acheminement": "MONTFORT SUR MEU", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35188"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5aaedf1ed723969faa7763f6b7b08913e13667", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35200"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64994fa1056c4be4c3b8ac0eeaa70470e66485d8", "fields": {"nom_de_la_commune": "NOUVOITOU", "libell_d_acheminement": "NOUVOITOU", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35204"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82799426637ed3d3c80d130cecb9dd6dc842c86e", "fields": {"nom_de_la_commune": "NOYAL SUR VILAINE", "libell_d_acheminement": "NOYAL SUR VILAINE", "code_postal": "35530", "coordonnees_gps": [48.1023169795, -1.48929089789], "code_commune_insee": "35207"}, "geometry": {"type": "Point", "coordinates": [-1.48929089789, 48.1023169795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e65a520dd43211a629c75d739ce1631a9224083", "fields": {"nom_de_la_commune": "PARCE", "libell_d_acheminement": "PARCE", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35214"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a8a5ab0bba6e922f8757c33afcd32b285619d8", "fields": {"nom_de_la_commune": "PARIGNE", "libell_d_acheminement": "PARIGNE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35215"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c643976e0759ce3854fa459cbf0eee14cad0b56", "fields": {"code_postal": "35470", "code_commune_insee": "35221", "libell_d_acheminement": "PLECHATEL", "ligne_5": "LE CHATELLIER", "nom_de_la_commune": "PLECHATEL", "coordonnees_gps": [47.8366270433, -1.70588612819]}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542fa03b1741056313351f44c6b25fdd218c220b", "fields": {"nom_de_la_commune": "PLEINE FOUGERES", "libell_d_acheminement": "PLEINE FOUGERES", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35222"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f76b3ad27963a7de908f87457466755605c19f", "fields": {"nom_de_la_commune": "POCE LES BOIS", "libell_d_acheminement": "POCE LES BOIS", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35229"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73b3d12dee6bef598765e6cd5d77ec6ce115dba", "fields": {"nom_de_la_commune": "POILLEY", "libell_d_acheminement": "POILLEY", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35230"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c520f83872dda15bf0dd2d7e484a94a9e24f20", "fields": {"nom_de_la_commune": "POLIGNE", "libell_d_acheminement": "POLIGNE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35231"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d0dccfa9ec8c0431fd9d6a2a02367f35c7dab8", "fields": {"nom_de_la_commune": "QUEDILLAC", "libell_d_acheminement": "QUEDILLAC", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35234"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaef09466d78abe5a8cea387acf2c227fdb5b7b6", "fields": {"nom_de_la_commune": "RANNEE", "libell_d_acheminement": "RANNEE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35235"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ce129476e147e19175fddc57150879e653b9b9", "fields": {"nom_de_la_commune": "RENNES", "libell_d_acheminement": "RENNES", "code_postal": "35000", "coordonnees_gps": [48.1116364246, -1.6816378334], "code_commune_insee": "35238"}, "geometry": {"type": "Point", "coordinates": [-1.6816378334, 48.1116364246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa1b63ca1b81ff35e487f7db3c2c8fe2402842ae", "fields": {"nom_de_la_commune": "LE RHEU", "libell_d_acheminement": "LE RHEU", "code_postal": "35650", "coordonnees_gps": [48.0975609665, -1.78120048308], "code_commune_insee": "35240"}, "geometry": {"type": "Point", "coordinates": [-1.78120048308, 48.0975609665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59901300c4dfdb666bea914840a4dfe468addf7c", "fields": {"nom_de_la_commune": "ROZ LANDRIEUX", "libell_d_acheminement": "ROZ LANDRIEUX", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35246"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed11129599ee265ff40805c6048cfa24daccf21d", "fields": {"nom_de_la_commune": "SAINS", "libell_d_acheminement": "SAINS", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35248"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa01253d186cab7f3d06b25f0e0dc60aed98f36", "fields": {"nom_de_la_commune": "ST AUBIN DU CORMIER", "libell_d_acheminement": "ST AUBIN DU CORMIER", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35253"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956b15b690570bd153c32c4ccc6fa607b990a429", "fields": {"nom_de_la_commune": "ST BRIAC SUR MER", "libell_d_acheminement": "ST BRIAC SUR MER", "code_postal": "35800", "coordonnees_gps": [48.6199242257, -2.09542699517], "code_commune_insee": "35256"}, "geometry": {"type": "Point", "coordinates": [-2.09542699517, 48.6199242257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "213ffdc0bdc0d8a8692c3f58521cf59e8d352d8b", "fields": {"nom_de_la_commune": "ST ETIENNE EN COGLES", "libell_d_acheminement": "ST ETIENNE EN COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35267"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46564a5a1906a9dd3ab641cde049e23cec0c5c2", "fields": {"nom_de_la_commune": "ST GANTON", "libell_d_acheminement": "ST GANTON", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35268"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cee4de4c68eaf9ece12946bc891ff653a61bb75", "fields": {"nom_de_la_commune": "ST GEORGES DE GREHAIGNE", "libell_d_acheminement": "ST GEORGES DE GREHAIGNE", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35270"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d361c94ff5b18e2c66c566f0701c2ac4c0afd769", "fields": {"nom_de_la_commune": "ST GERMAIN DU PINEL", "libell_d_acheminement": "ST GERMAIN DU PINEL", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35272"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "340817a6b74944a1a208b616439060b1858abc9c", "fields": {"nom_de_la_commune": "ST GERMAIN SUR ILLE", "libell_d_acheminement": "ST GERMAIN SUR ILLE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35274"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ec5fab062b118d9b677a8f4a32e4698e39f499", "fields": {"nom_de_la_commune": "ST GONDRAN", "libell_d_acheminement": "ST GONDRAN", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35276"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de46b837d1dcb1fe765a807fe37b417f263b3d6", "fields": {"nom_de_la_commune": "ST GONLAY", "libell_d_acheminement": "ST GONLAY", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35277"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b288bd9360f0461bdf43edfad83d8eb969fc43", "fields": {"nom_de_la_commune": "ST GUINOUX", "libell_d_acheminement": "ST GUINOUX", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35279"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a07de86441ab40ca8713e73b77cd4ff170fdba", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35285"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7aeecc98a1d45411d351ad14193c281da17973", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "PARAME", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd132ebac7c5e60d80ff52adc66fd098153fa46", "fields": {"nom_de_la_commune": "ST MARCAN", "libell_d_acheminement": "ST MARCAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35291"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb7f38538436efa50e8e3e215d8108a2dbcfc412", "fields": {"nom_de_la_commune": "ST SENOUX", "libell_d_acheminement": "ST SENOUX", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35312"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776f52f6b987aa3ae097a0a2b6fe5a1e5fdab232", "fields": {"nom_de_la_commune": "ST SULIAC", "libell_d_acheminement": "ST SULIAC", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35314"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715892bf597f8f9ec61046ce9a6cd8d02c43a40e", "fields": {"nom_de_la_commune": "ST SULPICE DES LANDES", "libell_d_acheminement": "ST SULPICE DES LANDES", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35316"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29af778f1d1c5460bc17254a65a591a7d1464983", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35317"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffad0b80ec48ac2cac5d484ef7ca24b00276390b", "fields": {"nom_de_la_commune": "TAILLIS", "libell_d_acheminement": "TAILLIS", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35330"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff2e9cfa1faa661a5a5c6e546c5371c3e02efb1", "fields": {"nom_de_la_commune": "TEILLAY", "libell_d_acheminement": "TEILLAY", "code_postal": "35620", "coordonnees_gps": [47.8136960211, -1.5585601765], "code_commune_insee": "35332"}, "geometry": {"type": "Point", "coordinates": [-1.5585601765, 47.8136960211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2f7f874b3df89be84f29281b953c099eeb8d5a", "fields": {"nom_de_la_commune": "LE TIERCENT", "libell_d_acheminement": "LE TIERCENT", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35336"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0acc0dc8eba4dcae0af21d2b4382c0d2e3be051", "fields": {"nom_de_la_commune": "TINTENIAC", "libell_d_acheminement": "TINTENIAC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35337"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c58727ad8bea339ec0e291f43bc633e366fa00", "fields": {"nom_de_la_commune": "LE VERGER", "libell_d_acheminement": "LE VERGER", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35351"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ee9e7127cd73ce12ba6fd6f65cdf8d9d4a2405", "fields": {"nom_de_la_commune": "VERN SUR SEICHE", "libell_d_acheminement": "VERN SUR SEICHE", "code_postal": "35770", "coordonnees_gps": [48.0528724341, -1.60539250036], "code_commune_insee": "35352"}, "geometry": {"type": "Point", "coordinates": [-1.60539250036, 48.0528724341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7824eaa08a39d3666c8091c1b727bbc4e97573c4", "fields": {"nom_de_la_commune": "VEZIN LE COQUET", "libell_d_acheminement": "VEZIN LE COQUET", "code_postal": "35132", "coordonnees_gps": [48.1177261674, -1.74902615874], "code_commune_insee": "35353"}, "geometry": {"type": "Point", "coordinates": [-1.74902615874, 48.1177261674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f851e42dd64911f33cd1304b40bade3fa81d103", "fields": {"nom_de_la_commune": "VIEUX VY SUR COUESNON", "libell_d_acheminement": "VIEUX VY SUR COUESNON", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35355"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77215b8369d47b32fa99c16bcd948812f7261e72", "fields": {"nom_de_la_commune": "LA VILLE ES NONAIS", "libell_d_acheminement": "LA VILLE ES NONAIS", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35358"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08135bbeabf539c8a2dba67bc56acdf8bc69c20", "fields": {"nom_de_la_commune": "ARGENTON SUR CREUSE", "libell_d_acheminement": "ARGENTON SUR CREUSE", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36006"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee22925d021da73d921925608375089cea2e0fc7", "fields": {"nom_de_la_commune": "ARTHON", "libell_d_acheminement": "ARTHON", "code_postal": "36330", "coordonnees_gps": [46.7140693988, 1.6861822855], "code_commune_insee": "36009"}, "geometry": {"type": "Point", "coordinates": [1.6861822855, 46.7140693988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bead8c06c93a7e241aac042ebd2ad53f39235b2f", "fields": {"nom_de_la_commune": "AZAY LE FERRON", "libell_d_acheminement": "AZAY LE FERRON", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36010"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee620effd2beba95bfd542250988d866c73fdcb", "fields": {"nom_de_la_commune": "BAUDRES", "libell_d_acheminement": "BAUDRES", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36013"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f054e3e40cd40bd8abf6b1c3aeeef20665c020", "fields": {"nom_de_la_commune": "BELABRE", "libell_d_acheminement": "BELABRE", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36016"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e16aaed30abc2976348e1579c9773a5a0c09c17", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36021"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c6781dd5e9da8503769c4ba1956928f8c90410", "fields": {"nom_de_la_commune": "BOUESSE", "libell_d_acheminement": "BOUESSE", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36022"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "499b82c28e52d77d2c1f4cfd3b34a23aca9ab751", "fields": {"nom_de_la_commune": "BRETAGNE", "libell_d_acheminement": "BRETAGNE", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36024"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b07f42b0fd4822848b60a0f794b38fa767f9b7", "fields": {"nom_de_la_commune": "BRIVES", "libell_d_acheminement": "BRIVES", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36027"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "771aa5bcfbf1fdd875aaa4f7d8231fc2a5a64c5a", "fields": {"nom_de_la_commune": "BUXEUIL", "libell_d_acheminement": "BUXEUIL", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36029"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e34b8f06d63dbaf3c112e825b323eb1d568e37", "fields": {"nom_de_la_commune": "BUXIERES D AILLAC", "libell_d_acheminement": "BUXIERES D AILLAC", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36030"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1bd661c5b789f88442f71b667ed8fa2cfa7097", "fields": {"nom_de_la_commune": "BUZANCAIS", "libell_d_acheminement": "BUZANCAIS", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36031"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69c6334eba30779ad20c1790d2e6dd731899780", "fields": {"nom_de_la_commune": "CHAMPILLET", "libell_d_acheminement": "CHAMPILLET", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36038"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5c7da7a5869e0a93563adea4fc6ef4848d3eba", "fields": {"nom_de_la_commune": "CHASSENEUIL", "libell_d_acheminement": "CHASSENEUIL", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36042"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5b2e1d77e422440f3c051054c52548386b948b", "fields": {"nom_de_la_commune": "LA CHATRE", "libell_d_acheminement": "LA CHATRE", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36046"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffc0d3463b6cdf700fd3c183ad72384baf17e9f", "fields": {"nom_de_la_commune": "CHAZELET", "libell_d_acheminement": "CHAZELET", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36049"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5070f948ecf7b88a0fa9f3a37cd328797e211d60", "fields": {"nom_de_la_commune": "CHOUDAY", "libell_d_acheminement": "CHOUDAY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36052"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91745be60cb5d9e771c2484f597a3eb36af7bdc", "fields": {"nom_de_la_commune": "CLION", "libell_d_acheminement": "CLION", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36055"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1a854dd3a690ba396c33d9814c1888a0a2122e", "fields": {"nom_de_la_commune": "CREVANT", "libell_d_acheminement": "CREVANT", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36060"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7194a98c90dc2bde1a8e5cb071c98f48beb43bc3", "fields": {"nom_de_la_commune": "CROZON SUR VAUVRE", "libell_d_acheminement": "CROZON SUR VAUVRE", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36061"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776d0369ba93f85a77edf2d6720f40d9a97afe15", "fields": {"nom_de_la_commune": "DIORS", "libell_d_acheminement": "DIORS", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36064"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548ae1510ff200dda87a3fa91ad170c7673a420b", "fields": {"nom_de_la_commune": "DIOU", "libell_d_acheminement": "DIOU", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36065"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92662e4daea8ff7639cb2880a7cbde5840f733df", "fields": {"nom_de_la_commune": "ECUEILLE", "libell_d_acheminement": "ECUEILLE", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36069"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8ca9f4d1bce0098e4c2b3bccf3533110ccab58", "fields": {"nom_de_la_commune": "EGUZON CHANTOME", "libell_d_acheminement": "EGUZON CHANTOME", "code_postal": "36270", "coordonnees_gps": [46.4580307735, 1.55896815313], "code_commune_insee": "36070"}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ffb8edde71cf9b363217ecc0272910f356e56c", "fields": {"nom_de_la_commune": "GEHEE", "libell_d_acheminement": "GEHEE", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36082"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5432b2924de8524d4ef49a72624a51d3902c7c37", "fields": {"nom_de_la_commune": "HEUGNES", "libell_d_acheminement": "HEUGNES", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36086"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2292c29abf5f348f7a53df1099b981b520a3e645", "fields": {"nom_de_la_commune": "JEU LES BOIS", "libell_d_acheminement": "JEU LES BOIS", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36089"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dd93b67751fa61518c45422983483e05d8ca3b", "fields": {"nom_de_la_commune": "JEU MALOCHES", "libell_d_acheminement": "JEU MALOCHES", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36090"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfb8186a876ce781d0ca59317dfe7902342f73c", "fields": {"nom_de_la_commune": "LANGE", "libell_d_acheminement": "LANGE", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36092"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb07d50b5ad22f2c82a9d266bfa1ce3430cffa8d", "fields": {"nom_de_la_commune": "LIGNAC", "libell_d_acheminement": "LIGNAC", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36094"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a177f481d63ba995b33bbd02c146d511694486", "fields": {"nom_de_la_commune": "LUANT", "libell_d_acheminement": "LUANT", "code_postal": "36350", "coordonnees_gps": [46.720531376, 1.54304656727], "code_commune_insee": "36101"}, "geometry": {"type": "Point", "coordinates": [1.54304656727, 46.720531376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8ea61b9822b84bd546bc64211b48a24cc52832", "fields": {"nom_de_la_commune": "LURAIS", "libell_d_acheminement": "LURAIS", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36104"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56f41a3dd55d63a1b36122f09a11fa35abdb4b5", "fields": {"nom_de_la_commune": "LYE", "libell_d_acheminement": "LYE", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36107"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8911661d65d8c886aca4929b0e98f64970ccf11e", "fields": {"nom_de_la_commune": "MIGNY", "libell_d_acheminement": "MIGNY", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36125"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1caf8382085de5fb9313c756a7c782ffab53041", "fields": {"nom_de_la_commune": "MONTIPOURET", "libell_d_acheminement": "MONTIPOURET", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36129"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb993735e7b471c9075bce1fe8b4f23ee7202bb", "fields": {"nom_de_la_commune": "MOUHET", "libell_d_acheminement": "MOUHET", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36134"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "face6d211f8add716f006fefe7a5e3d60666baac", "fields": {"nom_de_la_commune": "MOULINS SUR CEPHONS", "libell_d_acheminement": "MOULINS SUR CEPHONS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36135"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e143a2e3b7509ac6f5669bd427e750608f0af7a1", "fields": {"nom_de_la_commune": "PAULNAY", "libell_d_acheminement": "PAULNAY", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36153"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6dcbf9a5c81245004d3fd2626f913aa6c07ffb", "fields": {"nom_de_la_commune": "BADECON LE PIN", "libell_d_acheminement": "BADECON LE PIN", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36158"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db695a78737d55fe69653f3df4aa0d80986cb225", "fields": {"nom_de_la_commune": "REBOURSIN", "libell_d_acheminement": "REBOURSIN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36170"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d388cf521655c4b362a4e5dc34cd6e743c89693", "fields": {"nom_de_la_commune": "RUFFEC", "libell_d_acheminement": "RUFFEC", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36176"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59b0035f4a78082c8dd78704c6b27a62566e9e0", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36181"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b86287272287e0764cd20d0aa43a8cceb6b1744", "fields": {"nom_de_la_commune": "ST CHARTIER", "libell_d_acheminement": "ST CHARTIER", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36184"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e55b929ad7f3f435668d39dde688fd30acebb9", "fields": {"nom_de_la_commune": "ST FLORENTIN", "libell_d_acheminement": "ST FLORENTIN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36191"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76ae90842b558e7f2dc717c41fce7fef3b7ee8b", "fields": {"nom_de_la_commune": "ST GENOU", "libell_d_acheminement": "ST GENOU", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36194"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6abdfbf17a1106e3c1e749fbd3d1a6da54f1b408", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36196"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3480295c361f4ae4d59521a72202d65de45e13c", "fields": {"nom_de_la_commune": "SARZAY", "libell_d_acheminement": "SARZAY", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36210"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fd91faac18fc04c7c9ec2601c029ec1c7534a2", "fields": {"nom_de_la_commune": "SAULNAY", "libell_d_acheminement": "SAULNAY", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36212"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd784659d466b4ebd992e88030b75e799403616", "fields": {"nom_de_la_commune": "GUERIN", "libell_d_acheminement": "GUERIN", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47115"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008bb177a15080cfbbec0e8ab7a5cb959218f62d", "fields": {"nom_de_la_commune": "HOUEILLES", "libell_d_acheminement": "HOUEILLES", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47119"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e009a2b53e6126c6cf332e4b920541c9dbf335", "fields": {"nom_de_la_commune": "LAGRUERE", "libell_d_acheminement": "LAGRUERE", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47130"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c4754fdc805835fbe3638c7d7ed73a2a25ea0e2", "fields": {"nom_de_la_commune": "LAPARADE", "libell_d_acheminement": "LAPARADE", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47135"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82e840b9f769997aa660ad4a2a82e3821a56748", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47139"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa4e0c07eeb464760ef099d7f49d3439d07fca8", "fields": {"nom_de_la_commune": "LAUZUN", "libell_d_acheminement": "LAUZUN", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47142"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507ba150dbfeb2b4ebbda6dc241c882f4ee10dc2", "fields": {"nom_de_la_commune": "LAVARDAC", "libell_d_acheminement": "LAVARDAC", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47143"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfcc2cb66484b2779b7a4f75c98f775378d243f", "fields": {"nom_de_la_commune": "LOUBES BERNAC", "libell_d_acheminement": "LOUBES BERNAC", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47151"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4127e3fe70bb1bf01ba517cf1c5972ac1d687e96", "fields": {"nom_de_la_commune": "MOIRAX", "libell_d_acheminement": "MOIRAX", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47169"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8869b691046758929f0f4e1dd76e50f0046c5bf6", "fields": {"nom_de_la_commune": "MONBAHUS", "libell_d_acheminement": "MONBAHUS", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47170"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e5963636106432408e5e493aea3dbc7cbe09b6", "fields": {"nom_de_la_commune": "MONBALEN", "libell_d_acheminement": "MONBALEN", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47171"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a0ff98d8269204462feecd370e8025ff6d7d0b", "fields": {"nom_de_la_commune": "MONTAYRAL", "libell_d_acheminement": "MONTAYRAL", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47185"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dad6c5ff47994176d97b7f743a0119e8ab9921b", "fields": {"nom_de_la_commune": "MONVIEL", "libell_d_acheminement": "MONVIEL", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47192"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd4b7a5158b499dc6c1fcc38b8e06144fdb356e", "fields": {"nom_de_la_commune": "MOUSTIER", "libell_d_acheminement": "MOUSTIER", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47194"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4d9c0db5e846baab9451b7f0e89170bb6dad72", "fields": {"nom_de_la_commune": "PARRANQUET", "libell_d_acheminement": "PARRANQUET", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47200"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc22d0f59d4b0b4644ff1cbfc133308a1376b687", "fields": {"nom_de_la_commune": "PAULHIAC", "libell_d_acheminement": "PAULHIAC", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47202"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0f19e51eb2833af672ed8c0cd532d5f1dca61c", "fields": {"nom_de_la_commune": "PUYSSERAMPION", "libell_d_acheminement": "PUYSSERAMPION", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47218"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "809caab0c528a75217b6e21b7b1a8ae7b1667033", "fields": {"nom_de_la_commune": "ROQUEFORT", "libell_d_acheminement": "ROQUEFORT", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47225"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee0e3b13fa84fff3151f85c28a3281a132dd972", "fields": {"nom_de_la_commune": "ST ANTOINE DE FICALBA", "libell_d_acheminement": "ST ANTOINE DE FICALBA", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47228"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b596d2040924e628edbf5b401be8f26fbae089df", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47231"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a90aea723d3d41bee0d416f192935d9d315a91", "fields": {"nom_de_la_commune": "ST CAPRAIS DE LERM", "libell_d_acheminement": "ST CAPRAIS DE LERM", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47234"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f790042dbb95ec6978cdd30dcb9e963c634ec5fc", "fields": {"nom_de_la_commune": "ST COLOMB DE LAUZUN", "libell_d_acheminement": "ST COLOMB DE LAUZUN", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47235"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40a6fbf3d5064dd7ab43f63777c31162db3ebfff", "fields": {"nom_de_la_commune": "STE COLOMBE DE VILLENEUVE", "libell_d_acheminement": "STE COLOMBE DE VILLENEUVE", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47237"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b5296b87525266b88ae17b6ab6663e87c3f6e8", "fields": {"nom_de_la_commune": "STE GEMME MARTAILLAC", "libell_d_acheminement": "STE GEMME MARTAILLAC", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47244"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5236aea6114095baceb2139e0b9f7dcfaef4ae92", "fields": {"nom_de_la_commune": "ST GERAUD", "libell_d_acheminement": "ST GERAUD", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47245"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254d945acaf0353513366a3208694ee8a689ad94", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47249"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896c6eeb66c94f54f1ea1bf4736d9056c5b7368c", "fields": {"nom_de_la_commune": "ST MARTIN DE BEAUVILLE", "libell_d_acheminement": "ST MARTIN DE BEAUVILLE", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47255"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4861dc60d9a1747993972f4076d67496cf180180", "fields": {"nom_de_la_commune": "ST MARTIN DE VILLEREAL", "libell_d_acheminement": "ST MARTIN DE VILLEREAL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47256"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b2e825ac8f35360fdd33f15275124e01031237", "fields": {"nom_de_la_commune": "ST MARTIN PETIT", "libell_d_acheminement": "ST MARTIN PETIT", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47257"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58925a156012cd6334339e4e05450f642ac956be", "fields": {"nom_de_la_commune": "ST PARDOUX ISAAC", "libell_d_acheminement": "ST PARDOUX ISAAC", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47264"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96567f8452e7af188e82c28aa96aaed482d0df01", "fields": {"nom_de_la_commune": "ST QUENTIN DU DROPT", "libell_d_acheminement": "ST QUENTIN DU DROPT", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47272"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe08ed71cd4aee2cbefece34c8891a252e595bf", "fields": {"nom_de_la_commune": "ST ROMAIN LE NOBLE", "libell_d_acheminement": "ST ROMAIN LE NOBLE", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47274"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "489caf86af36248c630bfb3a13c4292aff934901", "fields": {"nom_de_la_commune": "ST VINCENT DE LAMONTJOIE", "libell_d_acheminement": "ST VINCENT DE LAMONTJOIE", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47282"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9dc9a2ccd90a5392113b2ecd4133a3d13a23b1", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47284"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d771304cf3921fc3df22fc8be3c640413ce0c088", "fields": {"nom_de_la_commune": "TAILLEBOURG", "libell_d_acheminement": "TAILLEBOURG", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47304"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be38fb0b76fd60d4cc163e5962b75606005fb941", "fields": {"nom_de_la_commune": "TAYRAC", "libell_d_acheminement": "TAYRAC", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47305"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad4be829e643da8f045891bd632596b34c586f0", "fields": {"nom_de_la_commune": "THOUARS SUR GARONNE", "libell_d_acheminement": "THOUARS SUR GARONNE", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47308"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8b693408a05c945c4a7ddba77a39876e9d2baf", "fields": {"nom_de_la_commune": "TOMBEBOEUF", "libell_d_acheminement": "TOMBEBOEUF", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47309"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0c033772c32c71d92717e49155215dbfff2ffd", "fields": {"nom_de_la_commune": "TOURTRES", "libell_d_acheminement": "TOURTRES", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47313"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5a3fa6c895bed29652438663c91e7861564b85c", "fields": {"nom_de_la_commune": "VIANNE", "libell_d_acheminement": "VIANNE", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47318"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d86473ee6aae84ef079aa3688f7d6930c76e378", "fields": {"nom_de_la_commune": "VILLENEUVE DE DURAS", "libell_d_acheminement": "VILLENEUVE DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47321"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "563761beac72c18f47c756ce7021f900a2db0a23", "fields": {"nom_de_la_commune": "VILLEREAL", "libell_d_acheminement": "VILLEREAL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47324"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "853793574fac82866e562768fa445724960ddf5b", "fields": {"code_postal": "48200", "code_commune_insee": "48002", "libell_d_acheminement": "ALBARET STE MARIE", "ligne_5": "LA GARDE", "nom_de_la_commune": "ALBARET STE MARIE", "coordonnees_gps": [44.8172105635, 3.26915609563]}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44cf7a3a19b846b878d0625e33b8e1b8ccc3fefc", "fields": {"nom_de_la_commune": "BAGNOLS LES BAINS", "libell_d_acheminement": "BAGNOLS LES BAINS", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48014"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e2c7cc5a518f9f50a0b523851c7df5a6e574bc", "fields": {"nom_de_la_commune": "BANASSAC CANILHAC", "libell_d_acheminement": "BANASSAC CANILHAC", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48017"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2656377eb0cbc31f80810043186566be656f2a8c", "fields": {"nom_de_la_commune": "LES BESSONS", "libell_d_acheminement": "LES BESSONS", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48025"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b14826c9eadfd04a7e5e9e86d97dfb089731036c", "fields": {"nom_de_la_commune": "BLAVIGNAC", "libell_d_acheminement": "BLAVIGNAC", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48026"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246e9b78101b5eecc9ad7518ea7e2144b1a02fd8", "fields": {"nom_de_la_commune": "LE BUISSON", "libell_d_acheminement": "LE BUISSON", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48032"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d13f25870019ddb5b430bb67427f23ec3efa1c1", "fields": {"code_postal": "48500", "code_commune_insee": "48034", "libell_d_acheminement": "LA CANOURGUE", "ligne_5": "LA CAPELLE", "nom_de_la_commune": "LA CANOURGUE", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43395c47c190041faf08f800f56fa986c27ba5f3", "fields": {"nom_de_la_commune": "CASSAGNAS", "libell_d_acheminement": "CASSAGNAS", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48036"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7168813ff7aaeb2dd93dc06d5e5ff4c8a38cfcd9", "fields": {"nom_de_la_commune": "CHASTEL NOUVEL", "libell_d_acheminement": "CHASTEL NOUVEL", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48042"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5ef25bec1df84d97da4c89a89eba35f19a7a45", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE RANDON", "libell_d_acheminement": "CHATEAUNEUF DE RANDON", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48043"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf80267325f193fbe512a6c97182df2c46bc206", "fields": {"nom_de_la_commune": "CHEYLARD L EVEQUE", "libell_d_acheminement": "CHEYLARD L EVEQUE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48048"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7891e26148c96fc997a8ddf9c45253bee921a9e6", "fields": {"code_postal": "48400", "code_commune_insee": "48050", "libell_d_acheminement": "BEDOUES COCURES", "ligne_5": "BEDOUES", "nom_de_la_commune": "BEDOUES COCURES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab7067f34308bb5759429ec0309ba3e62f1bc16", "fields": {"nom_de_la_commune": "LE COLLET DE DEZE", "libell_d_acheminement": "LE COLLET DE DEZE", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48051"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d563b82974ab0cb8c4413d71684b1a6ad1fcb3d2", "fields": {"code_postal": "48400", "code_commune_insee": "48061", "libell_d_acheminement": "FLORAC TROIS RIVIERES", "ligne_5": "LA SALLE PRUNET", "nom_de_la_commune": "FLORAC TROIS RIVIERES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882419805587f9d4a5a16986b62299d0a49304bf", "fields": {"nom_de_la_commune": "GABRIAC", "libell_d_acheminement": "GABRIAC", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48067"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a0f6c76b73f3d3350a20d45753599ffdd0079c", "fields": {"nom_de_la_commune": "GATUZIERES", "libell_d_acheminement": "GATUZIERES", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48069"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06db45e9e037e1113e014f02622bec4f3a7bb688", "fields": {"nom_de_la_commune": "GRANDVALS", "libell_d_acheminement": "GRANDVALS", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48071"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525e3803af423776ebf3b36bf548bf401c3b8700", "fields": {"nom_de_la_commune": "HURES LA PARADE", "libell_d_acheminement": "HURES LA PARADE", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48074"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7641057120f249f603e41e1af43c2e807630f0c6", "fields": {"nom_de_la_commune": "LANGOGNE", "libell_d_acheminement": "LANGOGNE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48080"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c19ade3839b328ba64ec188b490add8c87b715d", "fields": {"nom_de_la_commune": "LAUBERT", "libell_d_acheminement": "LAUBERT", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48082"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb65bbea2f06ee5f67e419569ebb07068f4008c", "fields": {"nom_de_la_commune": "LAVAL ATGER", "libell_d_acheminement": "LAVAL ATGER", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48084"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6004fe95feb8855391ca8173262019a73a7ba3", "fields": {"nom_de_la_commune": "MARCHASTEL", "libell_d_acheminement": "MARCHASTEL", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48091"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e73acba862ef3581f67c603458c046a852ad0b", "fields": {"code_postal": "48100", "code_commune_insee": "48099", "libell_d_acheminement": "BOURGS SUR COLAGNE", "ligne_5": "CHIRAC", "nom_de_la_commune": "BOURGS SUR COLAGNE", "coordonnees_gps": [44.5866860441, 3.24770669701]}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49150981d4aa0755eee9d5123600d41917d31177", "fields": {"nom_de_la_commune": "PAULHAC EN MARGERIDE", "libell_d_acheminement": "PAULHAC EN MARGERIDE", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48110"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7f3a6d41611988f755bc5d8736539f7ccb44aa", "fields": {"code_postal": "48220", "code_commune_insee": "48116", "libell_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", "ligne_5": "LE PONT DE MONTVERT", "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", "coordonnees_gps": [44.3629471664, 3.81136680024]}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b9c43cf8b31a0e55182fb7be29b03e6f65e06c", "fields": {"nom_de_la_commune": "PREVENCHERES", "libell_d_acheminement": "PREVENCHERES", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48119"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "593b3348808f3110dd43084196a258881027a015", "fields": {"code_postal": "48320", "code_commune_insee": "48122", "libell_d_acheminement": "QUEZAC", "ligne_5": "BLAJOUX", "nom_de_la_commune": "QUEZAC", "coordonnees_gps": [44.3839235672, 3.52688734054]}, "geometry": {"type": "Point", "coordinates": [3.52688734054, 44.3839235672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5800fbee4678c201331abcd8c8346ba91cd348ff", "fields": {"nom_de_la_commune": "RECOULES D AUBRAC", "libell_d_acheminement": "RECOULES D AUBRAC", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48123"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c1d9a3aa4de161db75cce540f85dc5ba98f7f6", "fields": {"nom_de_la_commune": "RIMEIZE", "libell_d_acheminement": "RIMEIZE", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48128"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6000ad3858a5e4ec6436cc54b6b1a50208c44060", "fields": {"nom_de_la_commune": "ROCLES", "libell_d_acheminement": "ROCLES", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48129"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1bf414fa6f66bd3cec232389edca9c8bf0491f", "fields": {"nom_de_la_commune": "ST BAUZILE", "libell_d_acheminement": "ST BAUZILE", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48137"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9e3df8b6917fb1128ebd94341ed711e341f436", "fields": {"nom_de_la_commune": "ST BONNET DE MONTAUROUX", "libell_d_acheminement": "ST BONNET DE MONTAUROUX", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48139"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5417b637c34f072aab6765370bad47b820d961", "fields": {"nom_de_la_commune": "ST ETIENNE DU VALDONNEZ", "libell_d_acheminement": "ST ETIENNE DU VALDONNEZ", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48147"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30741c48905f26eea2360809f0ffcc29cce60ec", "fields": {"code_postal": "48240", "code_commune_insee": "48152", "libell_d_acheminement": "VENTALON EN CEVENNES", "ligne_5": "ST FREZAL DE VENTALON", "nom_de_la_commune": "VENTALON EN CEVENNES", "coordonnees_gps": [44.2838225075, 3.82458328852]}, "geometry": {"type": "Point", "coordinates": [3.82458328852, 44.2838225075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2d683a10a413e18b0f552a47d051ad289544d2", "fields": {"nom_de_la_commune": "ST JUERY", "libell_d_acheminement": "ST JUERY", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48161"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba0fd8b8d807ad7e195ae013d1a579846234a73", "fields": {"nom_de_la_commune": "ST MARTIN DE BOUBAUX", "libell_d_acheminement": "ST MARTIN DE BOUBAUX", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48170"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dba57f7edf59e889e422c338992796cb11f2dd", "fields": {"nom_de_la_commune": "ST PIERRE DE NOGARET", "libell_d_acheminement": "ST PIERRE DE NOGARET", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48175"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "432d27b8206d6c25bf9a0833f8717f6a40ab56ff", "fields": {"nom_de_la_commune": "ST PRIVAT DU FAU", "libell_d_acheminement": "ST PRIVAT DU FAU", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48179"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58528a619ce7c50829bf55eb2e80db5b702b9cf9", "fields": {"nom_de_la_commune": "ST SAUVEUR DE GINESTOUX", "libell_d_acheminement": "ST SAUVEUR DE GINESTOUX", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48182"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d439d56ee543ef71d480daac67384f23fc32cf10", "fields": {"nom_de_la_commune": "LA TIEULE", "libell_d_acheminement": "LA TIEULE", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48191"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0f24638d69d227d85f6f60f6519f0c345caba73", "fields": {"code_postal": "48800", "code_commune_insee": "48198", "libell_d_acheminement": "VILLEFORT", "ligne_5": "MAS DE LA BARQUE", "nom_de_la_commune": "VILLEFORT", "coordonnees_gps": [44.4744037088, 3.906783441]}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c5f4ac8a7d41a2afdece2e3d0958f222524496", "fields": {"nom_de_la_commune": "ALLONNES", "libell_d_acheminement": "ALLONNES", "code_postal": "49650", "coordonnees_gps": [47.3050801952, 0.0400351360047], "code_commune_insee": "49002"}, "geometry": {"type": "Point", "coordinates": [0.0400351360047, 47.3050801952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed71aa0ce385a7f096d694f81123f5aabd876ce", "fields": {"nom_de_la_commune": "ARMAILLE", "libell_d_acheminement": "ARMAILLE", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49010"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75fc3f1bc373aece9e826742ec84398619480718", "fields": {"code_postal": "49510", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LA POITEVINIERE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2126550508, -0.983267587264]}, "geometry": {"type": "Point", "coordinates": [-0.983267587264, 47.2126550508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ffbb62e6a3d604202934b1c1de820f615ea19e", "fields": {"nom_de_la_commune": "BEAUPREAU EN MAUGES", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "code_postal": "49600", "coordonnees_gps": [47.2158259627, -0.988419647755], "code_commune_insee": "49023"}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9390dc16d314c5da4643f476923e0af70adc9f6", "fields": {"nom_de_la_commune": "BLAISON ST SULPICE", "libell_d_acheminement": "BLAISON ST SULPICE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49029"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05faebbacf5aee47032674fd0ea6f47d76439e4b", "fields": {"nom_de_la_commune": "BOURG L EVEQUE", "libell_d_acheminement": "BOURG L EVEQUE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49038"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71b3b3d6fcfe2fa2e7640fbb92857c785a7757e", "fields": {"nom_de_la_commune": "BREZE", "libell_d_acheminement": "BREZE", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49046"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5168b291692334189decd708d2d7097a6ce074e4", "fields": {"nom_de_la_commune": "BROC", "libell_d_acheminement": "BROC", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49052"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaffa851ce92991e9f22bc0b420ad7150cbb2c9e", "fields": {"nom_de_la_commune": "CHALONNES SOUS LE LUDE", "libell_d_acheminement": "CHALONNES SOUS LE LUDE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49062"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4589efd64d64c129af56e104464601db17dd03e8", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA CHAPELLE ROUSSELIN", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0d1a8c2123b401729265d791cb0b4ffc02fefe", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "NEUVY EN MAUGES", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12693076368c3cea24b3eb30ecf05085deb10d4b", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "ST GEORGES DES GARDES", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96bfcaa4bab0878d5946d90ffaa8fc3744b64fe", "fields": {"nom_de_la_commune": "DENEZE SOUS LE LUDE", "libell_d_acheminement": "DENEZE SOUS LE LUDE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49122"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0335ce55bdb4617ed1a0e2413a5f266f456a1d", "fields": {"nom_de_la_commune": "ECOUFLANT", "libell_d_acheminement": "ECOUFLANT", "code_postal": "49000", "coordonnees_gps": [47.4914905977, -0.545029996891], "code_commune_insee": "49129"}, "geometry": {"type": "Point", "coordinates": [-0.545029996891, 47.4914905977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d817519a0ea29a5760d36e6524b72b73a54aa4c4", "fields": {"nom_de_la_commune": "FONTEVRAUD L ABBAYE", "libell_d_acheminement": "FONTEVRAUD L ABBAYE", "code_postal": "49590", "coordonnees_gps": [47.1842709819, 0.0347512370897], "code_commune_insee": "49140"}, "geometry": {"type": "Point", "coordinates": [0.0347512370897, 47.1842709819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6add1704ae8eab96b79b49e922f86182e3b2b4", "fields": {"code_postal": "49320", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "GREZILLE", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e378d9f7048594014f0ec384bc69ea24fceee7", "fields": {"nom_de_la_commune": "GENNES VAL DE LOIRE", "libell_d_acheminement": "GENNES VAL DE LOIRE", "code_postal": "49350", "coordonnees_gps": [47.3419898447, -0.231335175854], "code_commune_insee": "49149"}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d48a39092ae6ae48fb0e9f63267245f00f5015", "fields": {"code_postal": "08270", "code_commune_insee": "08329", "libell_d_acheminement": "NOVION PORCIEN", "ligne_5": "PROVISY", "nom_de_la_commune": "NOVION PORCIEN", "coordonnees_gps": [49.6013662608, 4.45102282302]}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343ebcdc8a0c0d8e1bd7d45c2c36f073a8a9affc", "fields": {"nom_de_la_commune": "LA NEUVILLE LES WASIGNY", "libell_d_acheminement": "LA NEUVILLE LES WASIGNY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08323"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc05d9dcdc9fc793558c98f60e1aff0ae44554b", "fields": {"nom_de_la_commune": "MAISONCELLE ET VILLERS", "libell_d_acheminement": "MAISONCELLE ET VILLERS", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08268"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25a4f792ebd05f86a5646e542af4a0a99f2269b", "fields": {"nom_de_la_commune": "MONT ST REMY", "libell_d_acheminement": "MONT ST REMY", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08309"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b222c18f2fa5e8c67b057ff913ada9316dd6ea8", "fields": {"nom_de_la_commune": "MESSINCOURT", "libell_d_acheminement": "MESSINCOURT", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08289"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebd248ec7229d9245d45dae2085f5a4456a2e06", "fields": {"nom_de_la_commune": "NEUFMANIL", "libell_d_acheminement": "NEUFMANIL", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08316"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44f8947708c41f6204901815175161f15b461aa", "fields": {"nom_de_la_commune": "NEUFLIZE", "libell_d_acheminement": "NEUFLIZE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08314"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f03f8374f735f8a98f0621d01dd92264a0a658", "fields": {"nom_de_la_commune": "MACHAULT", "libell_d_acheminement": "MACHAULT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08264"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee13c1f03baa2d2a2e7b253417916793eeb91943", "fields": {"nom_de_la_commune": "MARGUT", "libell_d_acheminement": "MARGUT", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08276"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04346a3f4c324fe787dfd2c81af5fd16cd25a02b", "fields": {"nom_de_la_commune": "MOGUES", "libell_d_acheminement": "MOGUES", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08291"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc28f6c07eb183d52d4cfc5b468debd35fca7315", "fields": {"nom_de_la_commune": "LANDRES ET ST GEORGES", "libell_d_acheminement": "LANDRES ET ST GEORGES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08246"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a2f12492bd2de868af1716be8cabe674a923561", "fields": {"nom_de_la_commune": "LES HAUTES RIVIERES", "libell_d_acheminement": "LES HAUTES RIVIERES", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08218"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2f9809933a16201a2e8335926bbad416780026", "fields": {"nom_de_la_commune": "LEPRON LES VALLEES", "libell_d_acheminement": "LEPRON LES VALLEES", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08251"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23684fab6909fc4a5b258b595eeba33de8669bf4", "fields": {"nom_de_la_commune": "HANNOGNE ST MARTIN", "libell_d_acheminement": "HANNOGNE ST MARTIN", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08209"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c2d9bfaf075afa2ece60f137236cae4e3809755", "fields": {"nom_de_la_commune": "HOULDIZY", "libell_d_acheminement": "HOULDIZY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08230"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d7bbadc510381a665994da97a1825166724c6b", "fields": {"nom_de_la_commune": "HIERGES", "libell_d_acheminement": "HIERGES", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08226"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e4a6e8dd2e25e444ded2d075e109a2866ae6b2b", "fields": {"nom_de_la_commune": "LETANNE", "libell_d_acheminement": "LETANNE", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08252"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9bc9ba7c8ab9747931e7db8f194b2cc8cffb2d", "fields": {"nom_de_la_commune": "LALOBBE", "libell_d_acheminement": "LALOBBE", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08243"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb04087ff82b2992387ad67cd743bf784c657d5", "fields": {"nom_de_la_commune": "LIART", "libell_d_acheminement": "LIART", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08254"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cb4b9a2fe57f003b6e049b27ccb9a6cb28a92c", "fields": {"nom_de_la_commune": "LINAY", "libell_d_acheminement": "LINAY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08255"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0f64826f6e06833076f3642ee3b0babc4f14e9c", "fields": {"nom_de_la_commune": "FLAIGNES HAVYS", "libell_d_acheminement": "FLAIGNES HAVYS", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08169"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5ce762973fd33e62b3779b9d0d665a0c928a08", "fields": {"nom_de_la_commune": "GESPUNSART", "libell_d_acheminement": "GESPUNSART", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08188"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03fd4cfb743af52c8d2f7b91c305adb809beb692", "fields": {"nom_de_la_commune": "GUINCOURT", "libell_d_acheminement": "GUINCOURT", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08204"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d5d03e080cb0bc5f0dbd92572fc1a9b36f4cb3", "fields": {"nom_de_la_commune": "HANNAPPES", "libell_d_acheminement": "HANNAPPES", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08208"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc00b314787ec8c5c18e90190d1c22537af47c56", "fields": {"nom_de_la_commune": "GERNELLE", "libell_d_acheminement": "GERNELLE", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08187"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f97f901b7b6dd3c99802679946efe739d4655bf2", "fields": {"nom_de_la_commune": "ECORDAL", "libell_d_acheminement": "ECORDAL", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08151"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b22c1a84f896e6e95d035d3ff44a8939ac5cdf01", "fields": {"nom_de_la_commune": "GIVONNE", "libell_d_acheminement": "GIVONNE", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08191"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ca561da7f01a28598344b78ec5a5998acee528", "fields": {"nom_de_la_commune": "DRAIZE", "libell_d_acheminement": "DRAIZE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08146"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c86b8c35842d1635eb98ce34b37c45f303608424", "fields": {"nom_de_la_commune": "GIVRON", "libell_d_acheminement": "GIVRON", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08192"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3744dee3134807a1925eb31165d7f85947d56121", "fields": {"nom_de_la_commune": "GOMONT", "libell_d_acheminement": "GOMONT", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08195"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a541a72a00d22c23d1496394e65e3a9e2c4cd34", "fields": {"nom_de_la_commune": "SAULCES CHAMPENOISES", "libell_d_acheminement": "SAULCES CHAMPENOISES", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08401"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9953f0a2866d05da6e2194e5b879b0858205ded", "fields": {"nom_de_la_commune": "ST PIERRE SUR VENCE", "libell_d_acheminement": "ST PIERRE SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08395"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374b5ed9e31255eb1f2c1b707059f45386c17661", "fields": {"nom_de_la_commune": "SIGNY LE PETIT", "libell_d_acheminement": "SIGNY LE PETIT", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08420"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05359e3030d27829e85087654f696e63554d2e5", "fields": {"nom_de_la_commune": "STE VAUBOURG", "libell_d_acheminement": "STE VAUBOURG", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08398"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22374c818089ab16b50616f3f659957fa993bc4", "fields": {"nom_de_la_commune": "ST PIERREMONT", "libell_d_acheminement": "ST PIERREMONT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08394"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e74baa42a07f93fed4c2fe38f33efd1f10c78d", "fields": {"nom_de_la_commune": "SORMONNE", "libell_d_acheminement": "SORMONNE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08429"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbed3d5538e0eed9b7cfc197d1d359f7475c8222", "fields": {"nom_de_la_commune": "ARRIEN EN BETHMALE", "libell_d_acheminement": "ARRIEN EN BETHMALE", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09017"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5745c017ec07cb7a548083a42097cbe889654d7c", "fields": {"nom_de_la_commune": "BEDEILLE", "libell_d_acheminement": "BEDEILLE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09046"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb656271f8afb65b5a42e9807ce61e73d250c98d", "fields": {"nom_de_la_commune": "ARABAUX", "libell_d_acheminement": "ARABAUX", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09013"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76aee7073b781f6d139aaef1e7ac3b245ea53136", "fields": {"nom_de_la_commune": "ARTIGAT", "libell_d_acheminement": "ARTIGAT", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09019"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41a868b2e249f59572d52b9408087e4260d1d7d", "fields": {"nom_de_la_commune": "ANTRAS", "libell_d_acheminement": "ANTRAS", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09011"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d8f14cade68b6d4830a03a35ba14cba4974847", "fields": {"nom_de_la_commune": "ALLIAT", "libell_d_acheminement": "ALLIAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09006"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee908d244e60f0d7371000625387ca78f7bfbfbe", "fields": {"nom_de_la_commune": "ARNAVE", "libell_d_acheminement": "ARNAVE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09016"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b25e3a190409aad0554a72bf79900c8b71b76ba", "fields": {"nom_de_la_commune": "ALBIES", "libell_d_acheminement": "ALBIES", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09004"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e476b4c39e631c7080789b211f32a4aef3490e", "fields": {"nom_de_la_commune": "APPY", "libell_d_acheminement": "APPY", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09012"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76325c3888ae18aa02d6c7a3b2bc6338366b4d6d", "fields": {"code_postal": "10220", "code_commune_insee": "10019", "libell_d_acheminement": "VAL D AUZON", "ligne_5": "VILLEHARDOUIN", "nom_de_la_commune": "VAL D AUZON", "coordonnees_gps": [48.3496514843, 4.3203044052]}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24a076916e181ebe931ae01b47f3749ca93102f", "fields": {"nom_de_la_commune": "AVANT LES MARCILLY", "libell_d_acheminement": "AVANT LES MARCILLY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10020"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b73f0b54feb4ff641f3f64e304cc5dce50a01d5", "fields": {"nom_de_la_commune": "LES BORDES AUMONT", "libell_d_acheminement": "LES BORDES AUMONT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10049"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8667f3112e121eb8fa98b92dbde19d1ed47df8", "fields": {"nom_de_la_commune": "BAGNEUX LA FOSSE", "libell_d_acheminement": "BAGNEUX LA FOSSE", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10025"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88cf8abf427852bf11deb0ad830e7dbd815d4967", "fields": {"nom_de_la_commune": "BOUY LUXEMBOURG", "libell_d_acheminement": "BOUY LUXEMBOURG", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10056"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417c7ffd8133d119a887c2e1ee4493cbe082321a", "fields": {"nom_de_la_commune": "BOURGUIGNONS", "libell_d_acheminement": "BOURGUIGNONS", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10055"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e76ef7b40d9f549e85638ea158c8535184257", "fields": {"nom_de_la_commune": "BLIGNICOURT", "libell_d_acheminement": "BLIGNICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10047"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1096fae829f0a93a75f9fcc4d566118b069522b4", "fields": {"nom_de_la_commune": "BLIGNY", "libell_d_acheminement": "BLIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10048"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be0b680682b000237696928e7b98927f94a9991", "fields": {"nom_de_la_commune": "BERNON", "libell_d_acheminement": "BERNON", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10040"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941ab667eab7ef8a02dc2f8dd4f37874a9869ffd", "fields": {"nom_de_la_commune": "AULNAY", "libell_d_acheminement": "AULNAY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10017"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ada749b13c0382718867b3c736a6853fccb5446", "fields": {"code_postal": "10200", "code_commune_insee": "10113", "libell_d_acheminement": "COUVIGNON", "ligne_5": "VAL PERDU", "nom_de_la_commune": "COUVIGNON", "coordonnees_gps": [48.2425292795, 4.71148061919]}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53b09e1864962c6a7cd8ff6dfb1a697913daa35", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LUC", "libell_d_acheminement": "LA CHAPELLE ST LUC", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10081"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711be605d212e3f0b58c6b9b9e268fb1fb656754", "fields": {"nom_de_la_commune": "CHALETTE SUR VOIRE", "libell_d_acheminement": "CHALETTE SUR VOIRE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10073"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb93e14c379ca1dd58ce118ac4ab739d04514ab", "fields": {"nom_de_la_commune": "CHAMP SUR BARSE", "libell_d_acheminement": "CHAMP SUR BARSE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10078"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea1ca9d59fa7beea003758e2a49e228edaa0f90", "fields": {"nom_de_la_commune": "COURTAOULT", "libell_d_acheminement": "COURTAOULT", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10108"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10a1003aa9276ca9b9f432bced95b87f0bd44e2", "fields": {"nom_de_la_commune": "COURTERON", "libell_d_acheminement": "COURTERON", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10111"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b610b7533deeccfa6727b10b971ee37fcce7bc", "fields": {"nom_de_la_commune": "LA CHAISE", "libell_d_acheminement": "LA CHAISE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10072"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e742de62f4c2edde6bf9d6a6870f47dbbdeb2a2", "fields": {"nom_de_la_commune": "CHAOURCE", "libell_d_acheminement": "CHAOURCE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10080"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9d2ea0dc560c99bc7f7be45de7a8b3ab764f92", "fields": {"nom_de_la_commune": "CHACENAY", "libell_d_acheminement": "CHACENAY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10071"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e796ea1d94769076d333d8fd16581ef86a6373", "fields": {"nom_de_la_commune": "BRAUX", "libell_d_acheminement": "BRAUX", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10059"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e989a7523bdf5277b91367a34f374364fcda077", "fields": {"nom_de_la_commune": "RABAT LES TROIS SEIGNEURS", "libell_d_acheminement": "RABAT LES TROIS SEIGNEURS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09241"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452e3cf40169000e34137411607b25d66e53d618", "fields": {"nom_de_la_commune": "SAVIGNAC LES ORMEAUX", "libell_d_acheminement": "SAVIGNAC LES ORMEAUX", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09283"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2803ee1fc6f601554a8a3f9752960fd38540c0b3", "fields": {"nom_de_la_commune": "ST JEAN DE VERGES", "libell_d_acheminement": "ST JEAN DE VERGES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09264"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d9a84ed8e9a5ab37f1c3b0c40d8d493edfcb3d", "fields": {"nom_de_la_commune": "ST MARTIN D OYDES", "libell_d_acheminement": "ST MARTIN D OYDES", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09270"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1dae52f0202980efb75e04927e99708053409af", "fields": {"nom_de_la_commune": "ROQUEFIXADE", "libell_d_acheminement": "ROQUEFIXADE", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09249"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c54f098ab69084f8eee3103eea7e77844f94d4", "fields": {"nom_de_la_commune": "SAVERDUN", "libell_d_acheminement": "SAVERDUN", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09282"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5997f35b4f2ca3138728c2da6bc7dbf5c1524629", "fields": {"nom_de_la_commune": "ST LARY", "libell_d_acheminement": "ST LARY", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09267"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38388e644e45d2480ed614402142f7621cdec300", "fields": {"nom_de_la_commune": "STE FOI", "libell_d_acheminement": "STE FOI", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09260"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87ec69740a0601d91ce84bf6cba0b4b209198f8", "fields": {"nom_de_la_commune": "RIMONT", "libell_d_acheminement": "RIMONT", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09246"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47175fc39b7145d07842b76bc9f03aa657965d38", "fields": {"nom_de_la_commune": "SEM", "libell_d_acheminement": "SEM", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09286"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c93d4fffe8b8d98381f35f1407fd75e4be60ad6", "fields": {"nom_de_la_commune": "EGUILLY SOUS BOIS", "libell_d_acheminement": "EGUILLY SOUS BOIS", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10136"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218ecc64d8fe2c90c8e57b3c1785e4b5968effaa", "fields": {"nom_de_la_commune": "DROUPT STE MARIE", "libell_d_acheminement": "DROUPT STE MARIE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10132"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9169f9e812521daa3ebfbe8be5d1136a37c050", "fields": {"nom_de_la_commune": "DROUPT ST BASLE", "libell_d_acheminement": "DROUPT ST BASLE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10131"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3578162be9905992193eaf7924f97a9c4831a83", "fields": {"nom_de_la_commune": "DONNEMENT", "libell_d_acheminement": "DONNEMENT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10128"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa33b355dbe9f22e3d639e8c6a241410059cffe1", "fields": {"nom_de_la_commune": "ECLANCE", "libell_d_acheminement": "ECLANCE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10135"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1906761f482f988feffa03d735838ae190bdee3d", "fields": {"nom_de_la_commune": "DOSCHES", "libell_d_acheminement": "DOSCHES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10129"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf247934a7b7963c388d94c974b61017eab7b340", "fields": {"code_postal": "10430", "code_commune_insee": "10325", "libell_d_acheminement": "ROSIERES PRES TROYES", "ligne_5": "VIELAINES", "nom_de_la_commune": "ROSIERES PRES TROYES", "coordonnees_gps": [48.2625722664, 4.06313476584]}, "geometry": {"type": "Point", "coordinates": [4.06313476584, 48.2625722664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "481dc63664521ee35326fb97ac01f179b9de31fa", "fields": {"nom_de_la_commune": "PONT STE MARIE", "libell_d_acheminement": "PONT STE MARIE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10297"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f86e5ed87b9d1595bae3687c108045cdc377d7", "fields": {"nom_de_la_commune": "RILLY STE SYRE", "libell_d_acheminement": "RILLY STE SYRE", "code_postal": "10280", "coordonnees_gps": [48.434575792, 3.91881606144], "code_commune_insee": "10320"}, "geometry": {"type": "Point", "coordinates": [3.91881606144, 48.434575792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e284f5e3df5d35ee24ea6b2d4e1e30363044d147", "fields": {"nom_de_la_commune": "RADONVILLIERS", "libell_d_acheminement": "RADONVILLIERS", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10313"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382645322f3044087020a0d185f6d5f7158f2b47", "fields": {"nom_de_la_commune": "PETIT MESNIL", "libell_d_acheminement": "PETIT MESNIL", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10286"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f18cf641cb35199baa314464f82bf7f17352085", "fields": {"nom_de_la_commune": "PROVERVILLE", "libell_d_acheminement": "PROVERVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10306"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc88280c2e88eacd2a25343851c4ae80b2c72cb", "fields": {"nom_de_la_commune": "PEL ET DER", "libell_d_acheminement": "PEL ET DER", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10283"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02eda9348eb9fb371d7e8b6246523639e489c09", "fields": {"nom_de_la_commune": "RONCENAY", "libell_d_acheminement": "RONCENAY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10324"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbc58de797b058ea087d91542b857306968eba8", "fields": {"nom_de_la_commune": "POLISOT", "libell_d_acheminement": "POLISOT", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10295"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965e3f1421cd0adc9a6dc3269b91990d7ca8916f", "fields": {"nom_de_la_commune": "RHEGES", "libell_d_acheminement": "RHEGES", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10316"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98eeb1f6a56d92e9ed9e1a8ebb48c0279fd8a60f", "fields": {"nom_de_la_commune": "MAIZIERES LA GRANDE PAROISSE", "libell_d_acheminement": "MAIZIERES LA GRANDE PAROISSE", "code_postal": "10510", "coordonnees_gps": [48.4879809815, 3.8003478172], "code_commune_insee": "10220"}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4acb6b27715d8dfd28f37fe9187b2ff6ac1e564", "fields": {"nom_de_la_commune": "LA LOGE AUX CHEVRES", "libell_d_acheminement": "LA LOGE AUX CHEVRES", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10200"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ef70fb0c19f0fe3de4cb36a1d4c4f977a3222c", "fields": {"nom_de_la_commune": "MONTCEAUX LES VAUDES", "libell_d_acheminement": "MONTCEAUX LES VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10246"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77dae127eea9c5d4e848e148950dc5c0c319c7cc", "fields": {"nom_de_la_commune": "LES LOGES MARGUERON", "libell_d_acheminement": "LES LOGES MARGUERON", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10202"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421b568543a3fbeb24f8bdea5b0a3ffad51d42a3", "fields": {"nom_de_la_commune": "MARCILLY LE HAYER", "libell_d_acheminement": "MARCILLY LE HAYER", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10223"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957992791e15e8d55c985258d6b9bfd1300f4d15", "fields": {"nom_de_la_commune": "LOCHES SUR OURCE", "libell_d_acheminement": "LOCHES SUR OURCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10199"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c12ecba5827b6451d3863655e936c9e07f4070", "fields": {"nom_de_la_commune": "LENTILLES", "libell_d_acheminement": "LENTILLES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10192"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386cba7bc18fb8276a017d2a766407d55e315174", "fields": {"nom_de_la_commune": "MONTGUEUX", "libell_d_acheminement": "MONTGUEUX", "code_postal": "10300", "coordonnees_gps": [48.3017985875, 3.94562270532], "code_commune_insee": "10248"}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fccdedc80e7ef87e5b7f8677d801b7ec51188d", "fields": {"nom_de_la_commune": "LESMONT", "libell_d_acheminement": "LESMONT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10193"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a506d930f3a0459dc76e80aca03d14969c3c2f", "fields": {"nom_de_la_commune": "ERR", "libell_d_acheminement": "ERR", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66067"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6e76246d471f1501f8ec421a60a368fbebdfea", "fields": {"nom_de_la_commune": "ESCARO", "libell_d_acheminement": "ESCARO", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66068"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a925ddc88763f84a47f30540f244397c826705", "fields": {"nom_de_la_commune": "ESPIRA DE L AGLY", "libell_d_acheminement": "ESPIRA DE L AGLY", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66069"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05e072d49e1313038eae6a58f14081f2d5061bc", "fields": {"nom_de_la_commune": "ESPIRA DE CONFLENT", "libell_d_acheminement": "ESPIRA DE CONFLENT", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66070"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea6460231aadece1b852beede294fc93f567e6b", "fields": {"nom_de_la_commune": "EUS", "libell_d_acheminement": "EUS", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66074"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d972ce0c5fd9bdc935f4618140ec3ea639b6e6b8", "fields": {"nom_de_la_commune": "FOURQUES", "libell_d_acheminement": "FOURQUES", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66084"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f230c5860ca52dc22c4f64ef292972be463b1ede", "fields": {"nom_de_la_commune": "LAROQUE DES ALBERES", "libell_d_acheminement": "LAROQUE DES ALBERES", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66093"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e06e089097d94d68e2729da2064cf09e133f2d", "fields": {"nom_de_la_commune": "LLAURO", "libell_d_acheminement": "LLAURO", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66099"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798a3093ed59f6899e5f45455de16e7383e98b8e", "fields": {"nom_de_la_commune": "MILLAS", "libell_d_acheminement": "MILLAS", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66108"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b2443bb616eaac2c58764c5f349bb5bf726c7c", "fields": {"nom_de_la_commune": "MONTBOLO", "libell_d_acheminement": "MONTBOLO", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66113"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66be4fd8c9a2b465571c27e3b53912c7b11fb2b6", "fields": {"nom_de_la_commune": "MONTFERRER", "libell_d_acheminement": "MONTFERRER", "code_postal": "66150", "coordonnees_gps": [42.4639953782, 2.57094475406], "code_commune_insee": "66116"}, "geometry": {"type": "Point", "coordinates": [2.57094475406, 42.4639953782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57b817245e3e309e6df50e220d017647a1a2ea1", "fields": {"nom_de_la_commune": "FONT ROMEU ODEILLO VIA", "libell_d_acheminement": "FONT ROMEU ODEILLO VIA", "code_postal": "66120", "coordonnees_gps": [42.5100577993, 2.01893656435], "code_commune_insee": "66124"}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da505d3ce77aa63c577176d5aa785dcd9480e0b1", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66149"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e150cee24762656e027ddf02e748e884ed226eb", "fields": {"nom_de_la_commune": "REAL", "libell_d_acheminement": "REAL", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66159"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2960ac96736198baeb5b5b3865a97c8e897ab66a", "fields": {"nom_de_la_commune": "REYNES", "libell_d_acheminement": "REYNES", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66160"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f000bf2646dc346db3418efd786413de110bf6f2", "fields": {"nom_de_la_commune": "RODES", "libell_d_acheminement": "RODES", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66165"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cf37f8431c3a1f26295ecba2a06a5acdc445bd", "fields": {"nom_de_la_commune": "SAHORRE", "libell_d_acheminement": "SAHORRE", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66166"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df51ae8749617f338ad96478300e14b343aefe2d", "fields": {"nom_de_la_commune": "ST ARNAC", "libell_d_acheminement": "ST ARNAC", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66169"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708af20e9b720bf3c65c95beb7a530cc1cbb1107", "fields": {"code_postal": "66750", "code_commune_insee": "66171", "libell_d_acheminement": "ST CYPRIEN", "ligne_5": "ST CYPRIEN PLAGE", "nom_de_la_commune": "ST CYPRIEN", "coordonnees_gps": [42.6215443808, 3.01628317328]}, "geometry": {"type": "Point", "coordinates": [3.01628317328, 42.6215443808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4682388322a49be941fe1edcfc0a32e4bc40582", "fields": {"nom_de_la_commune": "ST ESTEVE", "libell_d_acheminement": "ST ESTEVE", "code_postal": "66240", "coordonnees_gps": [42.7153320362, 2.84595060447], "code_commune_insee": "66172"}, "geometry": {"type": "Point", "coordinates": [2.84595060447, 42.7153320362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3da1b26d600b15b9eb9b95b11b2c4201fbf588b", "fields": {"nom_de_la_commune": "ST GENIS DES FONTAINES", "libell_d_acheminement": "ST GENIS DES FONTAINES", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66175"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181bb5aa6572d22d3daf350bc623c4664c4f72af", "fields": {"nom_de_la_commune": "ST JEAN PLA DE CORTS", "libell_d_acheminement": "ST JEAN PLA DE CORTS", "code_postal": "66490", "coordonnees_gps": [42.5223497938, 2.78118948745], "code_commune_insee": "66178"}, "geometry": {"type": "Point", "coordinates": [2.78118948745, 42.5223497938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2a1c8d4193b8a49fad3bc46c119101e9eae556", "fields": {"nom_de_la_commune": "STE LEOCADIE", "libell_d_acheminement": "STE LEOCADIE", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66181"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7166b80d1676bc127c01aa096801e82ad95ee80b", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE LA MER", "code_postal": "66470", "coordonnees_gps": [42.7263139951, 3.01721940799], "code_commune_insee": "66182"}, "geometry": {"type": "Point", "coordinates": [3.01721940799, 42.7263139951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9a0b292e12ce4066692e1204374924623ba351f", "fields": {"nom_de_la_commune": "ST MARSAL", "libell_d_acheminement": "ST MARSAL", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66183"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207644500f1c172bd8bbb5b3034da77855cc6f1a", "fields": {"nom_de_la_commune": "ST MICHEL DE LLOTES", "libell_d_acheminement": "ST MICHEL DE LLOTES", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66185"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3775bc5a1cad668985accfaae788e0c89680eac4", "fields": {"nom_de_la_commune": "ST NAZAIRE", "libell_d_acheminement": "ST NAZAIRE", "code_postal": "66570", "coordonnees_gps": [42.6622045643, 2.98700685998], "code_commune_insee": "66186"}, "geometry": {"type": "Point", "coordinates": [2.98700685998, 42.6622045643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1369e951fd6a3864195808749c02da518984349", "fields": {"nom_de_la_commune": "SERDINYA", "libell_d_acheminement": "SERDINYA", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66193"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c859e6593fdd4969e56b857184bd0e0f54f8e1f9", "fields": {"nom_de_la_commune": "LE SOLER", "libell_d_acheminement": "LE SOLER", "code_postal": "66270", "coordonnees_gps": [42.6772604386, 2.79440876599], "code_commune_insee": "66195"}, "geometry": {"type": "Point", "coordinates": [2.79440876599, 42.6772604386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fda8299d8df1862679cf19aa7f36c2ed2e531c", "fields": {"nom_de_la_commune": "TARERACH", "libell_d_acheminement": "TARERACH", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66201"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4499efe997615746c92e74874b9b60dbc37ee475", "fields": {"nom_de_la_commune": "THUES ENTRE VALLS", "libell_d_acheminement": "THUES ENTRE VALLS", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66209"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a941c00e37f7dd345f5bc8755da336d3e5767370", "fields": {"nom_de_la_commune": "TORDERES", "libell_d_acheminement": "TORDERES", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66211"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80381ef9cb47a0d76cd46822f3705923665b489", "fields": {"nom_de_la_commune": "TORREILLES", "libell_d_acheminement": "TORREILLES", "code_postal": "66440", "coordonnees_gps": [42.7537997311, 3.00843144299], "code_commune_insee": "66212"}, "geometry": {"type": "Point", "coordinates": [3.00843144299, 42.7537997311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fd6c963416502ee9274160b9138079ec64f436", "fields": {"nom_de_la_commune": "TREVILLACH", "libell_d_acheminement": "TREVILLACH", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66215"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49755ce832b1ceb8344b38cd421758676ca1192", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE CONFLENT", "libell_d_acheminement": "VILLEFRANCHE DE CONFLENT", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66223"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9c5ffbc79889c3c43d2f39a8426b5edcbde7d8", "fields": {"nom_de_la_commune": "LE VIVIER", "libell_d_acheminement": "LE VIVIER", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66234"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381251ecda3fd63877d683f272d3571dc8f66d58", "fields": {"code_postal": "67310", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "ALLENWILLER", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.6178840196, 7.42141185001]}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edba5010428638033ffe7063b9b9dc85e9f1dcc0", "fields": {"code_postal": "67440", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "SALENTHAL", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9b145168db70eea260d0338265e85219bc4743", "fields": {"nom_de_la_commune": "ALTWILLER", "libell_d_acheminement": "ALTWILLER", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67009"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d32bbe8c182e82388c2b5d4220df4f1b3f45c06", "fields": {"nom_de_la_commune": "BAREMBACH", "libell_d_acheminement": "BAREMBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67020"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56cd026c8c53c041a262456e543429afa48d751", "fields": {"nom_de_la_commune": "BEINHEIM", "libell_d_acheminement": "BEINHEIM", "code_postal": "67930", "coordonnees_gps": [48.8645701824, 8.0807216154], "code_commune_insee": "67025"}, "geometry": {"type": "Point", "coordinates": [8.0807216154, 48.8645701824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19c4ebf9525d5c0c23f19866f029c0c7bfbaecc", "fields": {"nom_de_la_commune": "BELLEFOSSE", "libell_d_acheminement": "BELLEFOSSE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67026"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf2ea2f442ec8fec073a28c609fd910ccd1f9bf", "fields": {"nom_de_la_commune": "BERNARDVILLE", "libell_d_acheminement": "BERNARDVILLE", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67032"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40147d6c599e6633b398a68fd802da14b54b198", "fields": {"nom_de_la_commune": "BETTWILLER", "libell_d_acheminement": "BETTWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67036"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b22e44dc4f575c3cf38771b62e49b8fafd9282c", "fields": {"nom_de_la_commune": "BINDERNHEIM", "libell_d_acheminement": "BINDERNHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67040"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93018d53e1701e5bcab801b0b4ba31ecd8d464fc", "fields": {"nom_de_la_commune": "BISCHHEIM", "libell_d_acheminement": "BISCHHEIM", "code_postal": "67800", "coordonnees_gps": [48.6226822047, 7.75647923551], "code_commune_insee": "67043"}, "geometry": {"type": "Point", "coordinates": [7.75647923551, 48.6226822047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491e4e24d16e67835192be0633086105bcc76402", "fields": {"nom_de_la_commune": "BLIENSCHWILLER", "libell_d_acheminement": "BLIENSCHWILLER", "code_postal": "67650", "coordonnees_gps": [48.324457641, 7.42491338071], "code_commune_insee": "67051"}, "geometry": {"type": "Point", "coordinates": [7.42491338071, 48.324457641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18dc61ff0e48baa5ff36a6d805bc8a1d158f3cc", "fields": {"nom_de_la_commune": "BOOTZHEIM", "libell_d_acheminement": "BOOTZHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67056"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10084eecdd17735c4c378b849e386de4792edbdf", "fields": {"nom_de_la_commune": "BOURG BRUCHE", "libell_d_acheminement": "BOURG BRUCHE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67059"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633a9f72c2b3fd890ba831c189f40e75a5b41ed8", "fields": {"code_postal": "67330", "code_commune_insee": "67061", "libell_d_acheminement": "BOUXWILLER", "ligne_5": "RIEDHEIM", "nom_de_la_commune": "BOUXWILLER", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc2956c9d16e8084ec19d0b132608d6c27dd98c", "fields": {"nom_de_la_commune": "LA BROQUE", "libell_d_acheminement": "LA BROQUE", "code_postal": "67570", "coordonnees_gps": [48.4582864667, 7.17805256783], "code_commune_insee": "67066"}, "geometry": {"type": "Point", "coordinates": [7.17805256783, 48.4582864667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117a5023e5c19881ac3508c75164ea63369be801", "fields": {"nom_de_la_commune": "BUHL", "libell_d_acheminement": "BUHL", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67069"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c830b122919ee01e0d67cb4271c64ac28a7e4bab", "fields": {"nom_de_la_commune": "COSSWILLER", "libell_d_acheminement": "COSSWILLER", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67077"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf1c98df63da78b04830d0adbe5409177f8bb18", "fields": {"nom_de_la_commune": "DAHLENHEIM", "libell_d_acheminement": "DAHLENHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67081"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e43f603eefc8c08744b1fa7629db205e35ff646", "fields": {"code_postal": "67350", "code_commune_insee": "67087", "libell_d_acheminement": "DAUENDORF", "ligne_5": "NEUBOURG", "nom_de_la_commune": "DAUENDORF", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e925e2cd4a62ee4bd04d5ad2c0089ae8a9e7194", "fields": {"nom_de_la_commune": "EBERSHEIM", "libell_d_acheminement": "EBERSHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67115"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a6aeb3a33a2523f118cff8b54f97962aecb5ff", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "ENGENTHAL", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62802b82ab8d2f31336660af6429e6ed1f126ec", "fields": {"nom_de_la_commune": "ERNOLSHEIM LES SAVERNE", "libell_d_acheminement": "ERNOLSHEIM LES SAVERNE", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67129"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb067061f70aafc3becf8fd15f6ff63351704f38", "fields": {"nom_de_la_commune": "ESCHBOURG", "libell_d_acheminement": "ESCHBOURG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67133"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "858f7fefc5f6c5618a7d5dba60cedfaf7a950423", "fields": {"nom_de_la_commune": "FORSTFELD", "libell_d_acheminement": "FORSTFELD", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67140"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cf27bf463386dc5d8fdc399c0a8787d1128672", "fields": {"nom_de_la_commune": "FROHMUHL", "libell_d_acheminement": "FROHMUHL", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67148"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7547de122fb790f7c18ce7f02547c5aac2c2b26b", "fields": {"nom_de_la_commune": "GEISPOLSHEIM", "libell_d_acheminement": "GEISPOLSHEIM", "code_postal": "67118", "coordonnees_gps": [48.5147050971, 7.65866735736], "code_commune_insee": "67152"}, "geometry": {"type": "Point", "coordinates": [7.65866735736, 48.5147050971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bed3e74aecc4e5930c1cac97c47174baffdb301", "fields": {"nom_de_la_commune": "GERSTHEIM", "libell_d_acheminement": "GERSTHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67154"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea30db888ebe1d640d652c9b0869375ebe552829", "fields": {"nom_de_la_commune": "GOTTENHOUSE", "libell_d_acheminement": "GOTTENHOUSE", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67161"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8387fcea335f011c2f91b1c663df0d48337bea4", "fields": {"nom_de_la_commune": "GRENDELBRUCH", "libell_d_acheminement": "GRENDELBRUCH", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67167"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce3156a2be4e4907a48f29343a316b0264f2de4", "fields": {"nom_de_la_commune": "GRESSWILLER", "libell_d_acheminement": "GRESSWILLER", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67168"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472febe7cda587ddad6e3854330a2bf3c044fe42", "fields": {"nom_de_la_commune": "GRIESHEIM SUR SOUFFEL", "libell_d_acheminement": "GRIESHEIM SUR SOUFFEL", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67173"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e82e177332caec099cf170be6b580cc4656dc0", "fields": {"code_postal": "67110", "code_commune_insee": "67176", "libell_d_acheminement": "GUNDERSHOFFEN", "ligne_5": "SCHIRLENHOF", "nom_de_la_commune": "GUNDERSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42210054fe91ecb4dc2def20d123082794c93cc0", "fields": {"nom_de_la_commune": "HAEGEN", "libell_d_acheminement": "HAEGEN", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67179"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6952ef33ae250d74b1d47f1175a56a3f5169cfba", "fields": {"code_postal": "67500", "code_commune_insee": "67180", "libell_d_acheminement": "HAGUENAU", "ligne_5": "HARTHOUSE", "nom_de_la_commune": "HAGUENAU", "coordonnees_gps": [48.83252193, 7.82037649522]}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbef24acbcbd8cb07b4243f05c8b6fb3aa112fc6", "fields": {"nom_de_la_commune": "HANDSCHUHEIM", "libell_d_acheminement": "HANDSCHUHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67181"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9306751e13c694f894d1fa2daab366a15115db24", "fields": {"nom_de_la_commune": "HEILIGENBERG", "libell_d_acheminement": "HEILIGENBERG", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67188"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca04c2058850a28810c0448b5a004be6f5b26207", "fields": {"nom_de_la_commune": "HILSENHEIM", "libell_d_acheminement": "HILSENHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67196"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285ce44eda4593761ef04e9f34300cef743856a6", "fields": {"nom_de_la_commune": "HIPSHEIM", "libell_d_acheminement": "HIPSHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67200"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17411b86b052ead9f77ef4730674b2c3bac7541", "fields": {"code_postal": "67250", "code_commune_insee": "67206", "libell_d_acheminement": "HOFFEN", "ligne_5": "HERMERSWILLER", "nom_de_la_commune": "HOFFEN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64b4b488bb61d4d430180ae8a209f926579a54c", "fields": {"nom_de_la_commune": "HOHENGOEFT", "libell_d_acheminement": "HOHENGOEFT", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67208"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8c7332621838766f8c47464e05fbd4586fb944", "fields": {"nom_de_la_commune": "HOHFRANKENHEIM", "libell_d_acheminement": "HOHFRANKENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67209"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f66feaa0d764c3cc8cc5fedce7f6cf9f07215c2", "fields": {"nom_de_la_commune": "HURTIGHEIM", "libell_d_acheminement": "HURTIGHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67214"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1651916c30d46d51002de8b6d1c50b8aefe3343e", "fields": {"nom_de_la_commune": "ILLKIRCH GRAFFENSTADEN", "libell_d_acheminement": "ILLKIRCH GRAFFENSTADEN", "code_postal": "67400", "coordonnees_gps": [48.5200121498, 7.73167425411], "code_commune_insee": "67218"}, "geometry": {"type": "Point", "coordinates": [7.73167425411, 48.5200121498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd16da71169de90c58400852d96cc4d02f2b1f12", "fields": {"nom_de_la_commune": "INGENHEIM", "libell_d_acheminement": "INGENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67220"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8149bdb14cf28941a2715e0510134f84c9427380", "fields": {"nom_de_la_commune": "ISSENHAUSEN", "libell_d_acheminement": "ISSENHAUSEN", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67225"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f48debe49ae0d12f159776c4b687679c5f39d6ef", "fields": {"code_postal": "67370", "code_commune_insee": "67228", "libell_d_acheminement": "NEUGARTHEIM ITTLENHEIM", "ligne_5": "ITTLENHEIM", "nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ab0ab778ff423abaec21722c194e07b8483228", "fields": {"nom_de_la_commune": "KESKASTEL", "libell_d_acheminement": "KESKASTEL", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67234"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20fe852217580f0c27ca04473de5cfddc73f2b19", "fields": {"nom_de_la_commune": "KLEINGOEFT", "libell_d_acheminement": "KLEINGOEFT", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67244"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5c97cb3b9bac65b2dfa7debdf1f90f031c5d96", "fields": {"nom_de_la_commune": "KOLBSHEIM", "libell_d_acheminement": "KOLBSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67247"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cea0f52af772514baa8e9703caedaddb49d2b6", "fields": {"nom_de_la_commune": "LAUTERBOURG", "libell_d_acheminement": "LAUTERBOURG", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67261"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef8e51f1d1d6d89c734b412f716d16a303567c4", "fields": {"nom_de_la_commune": "LEMBACH", "libell_d_acheminement": "LEMBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67263"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47df387a3fe4c0f37e68e9417ae7173fb6520c7", "fields": {"nom_de_la_commune": "LEUTENHEIM", "libell_d_acheminement": "LEUTENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67264"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b6c1d361ee157454c0944fedb3de7751b428d5", "fields": {"nom_de_la_commune": "LITTENHEIM", "libell_d_acheminement": "LITTENHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67269"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c3109955e1dbc737f4726c5b03661a85557274", "fields": {"nom_de_la_commune": "LOBSANN", "libell_d_acheminement": "LOBSANN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67271"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca1c274af5b67788d6e147305f37623b3b3977e", "fields": {"code_postal": "67220", "code_commune_insee": "67280", "libell_d_acheminement": "MAISONSGOUTTE", "ligne_5": "WAGENBACH", "nom_de_la_commune": "MAISONSGOUTTE", "coordonnees_gps": [48.3397350207, 7.28306516568]}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49acadafd8e1909995fb80157e1bc79f8dde1f2b", "fields": {"nom_de_la_commune": "MEISTRATZHEIM", "libell_d_acheminement": "MEISTRATZHEIM", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67286"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55e04065df6700b56b461eab8c7adca36715e39", "fields": {"nom_de_la_commune": "MELSHEIM", "libell_d_acheminement": "MELSHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67287"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0759da197eb9ad770e37452a08efad84de168a85", "fields": {"nom_de_la_commune": "MERTZWILLER", "libell_d_acheminement": "MERTZWILLER", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67291"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2340167430543722a76fb8431119f1ffa0a1121b", "fields": {"nom_de_la_commune": "MINVERSHEIM", "libell_d_acheminement": "MINVERSHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67293"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbfd13632ebc5d07c9d64d668987d83fde81b7e", "fields": {"nom_de_la_commune": "MITTELHAUSBERGEN", "libell_d_acheminement": "MITTELHAUSBERGEN", "code_postal": "67206", "coordonnees_gps": [48.6140224807, 7.69436507656], "code_commune_insee": "67296"}, "geometry": {"type": "Point", "coordinates": [7.69436507656, 48.6140224807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6432447a3ba23428143977dd6999a0ed9a09ae54", "fields": {"nom_de_la_commune": "MITTELSCHAEFFOLSHEIM", "libell_d_acheminement": "MITTELSCHAEFFOLSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67298"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7391128f27156ac5a4548aa0ca4d28fa52c13cfc", "fields": {"nom_de_la_commune": "MUSSIG", "libell_d_acheminement": "MUSSIG", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67310"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0512f54bcb1b4f44dd10e8b48146b85be9c5463", "fields": {"code_postal": "67600", "code_commune_insee": "67311", "libell_d_acheminement": "MUTTERSHOLTZ", "ligne_5": "EHNWIHR", "nom_de_la_commune": "MUTTERSHOLTZ", "coordonnees_gps": [48.2649373964, 7.48992697623]}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af4cf4b3d5cdc3ffb4a4b15a9e2f7a6bd7651af0", "fields": {"nom_de_la_commune": "NEUHAEUSEL", "libell_d_acheminement": "NEUHAEUSEL", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67319"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6779ed1dcbe2a1180764c3e1f70da91922ae01", "fields": {"code_postal": "27500", "code_commune_insee": "27467", "libell_d_acheminement": "PONT AUDEMER", "ligne_5": "ST PAUL SUR RISLE", "nom_de_la_commune": "PONT AUDEMER", "coordonnees_gps": [49.3519408405, 0.530523220775]}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf1571aacf0efd2ad509f1ef3feba3f8abf3140", "fields": {"nom_de_la_commune": "PONT AUTHOU", "libell_d_acheminement": "PONT AUTHOU", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27468"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a14efc417b34ed581cbd2f891295c1203f61f53", "fields": {"nom_de_la_commune": "PONT ST PIERRE", "libell_d_acheminement": "PONT ST PIERRE", "code_postal": "27360", "coordonnees_gps": [49.3420863627, 1.28766015944], "code_commune_insee": "27470"}, "geometry": {"type": "Point", "coordinates": [1.28766015944, 49.3420863627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bcc50a9133740d993ceab90da5dda7c7d983918", "fields": {"nom_de_la_commune": "LES PREAUX", "libell_d_acheminement": "LES PREAUX", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27476"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5361b25c74dbc4b9e1fb2594e0508d883b6f54", "fields": {"nom_de_la_commune": "PREY", "libell_d_acheminement": "PREY", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27478"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b6a2a1e52b67a17ebd2c48d65cecf7a717979d", "fields": {"nom_de_la_commune": "QUITTEBEUF", "libell_d_acheminement": "QUITTEBEUF", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27486"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd28ba5a8f8f4ac0f2e74c72c00826b9886e5616", "fields": {"nom_de_la_commune": "REUILLY", "libell_d_acheminement": "REUILLY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27489"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823901139727bb00cca2fcdf54b80604f12a7d9f", "fields": {"nom_de_la_commune": "RICHEVILLE", "libell_d_acheminement": "RICHEVILLE", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27490"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fad3c1e39d2e18fabb7d5ff0ca2aa01e7d9083", "fields": {"nom_de_la_commune": "ROSAY SUR LIEURE", "libell_d_acheminement": "ROSAY SUR LIEURE", "code_postal": "27790", "coordonnees_gps": [49.3745608553, 1.42880157488], "code_commune_insee": "27496"}, "geometry": {"type": "Point", "coordinates": [1.42880157488, 49.3745608553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4cc5b856bb3579483c0760cd9a7f69b9c321a2", "fields": {"nom_de_la_commune": "ROUGE PERRIERS", "libell_d_acheminement": "ROUGE PERRIERS", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27498"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1061653067606a8cfbd90f3d2acf711dcf9f64d3", "fields": {"nom_de_la_commune": "ST ANTONIN DE SOMMAIRE", "libell_d_acheminement": "ST ANTONIN DE SOMMAIRE", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27508"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0acc829ddbb5ba673b20cd4c2b070960b06c2de6", "fields": {"nom_de_la_commune": "ST AUBIN D ECROSVILLE", "libell_d_acheminement": "ST AUBIN D ECROSVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27511"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2884fc707db161c17eed9cc8b1e088b5f5fad460", "fields": {"nom_de_la_commune": "ST BENOIT DES OMBRES", "libell_d_acheminement": "ST BENOIT DES OMBRES", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27520"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2767c2f65c938d8488b00a77f131c93bf8d57f", "fields": {"nom_de_la_commune": "ST CYR DE SALERNE", "libell_d_acheminement": "ST CYR DE SALERNE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27527"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42d39199f6397ce3a9d60cc206c283eee4772f2", "fields": {"nom_de_la_commune": "LE VAUDREUIL", "libell_d_acheminement": "LE VAUDREUIL", "code_postal": "27100", "coordonnees_gps": [49.2628287582, 1.2134503663], "code_commune_insee": "27528"}, "geometry": {"type": "Point", "coordinates": [1.2134503663, 49.2628287582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f26198b6c8e1f513f628c913a3c8a437dc7fa05", "fields": {"nom_de_la_commune": "ST CYR LA CAMPAGNE", "libell_d_acheminement": "ST CYR LA CAMPAGNE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27529"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f725daf8a5a02912c7b2ba2ce2a1d3554ac4fd", "fields": {"nom_de_la_commune": "ST DENIS DES MONTS", "libell_d_acheminement": "ST DENIS DES MONTS", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27531"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b51f357f8a2c1fe8ad6f30243841dea6bb3822a", "fields": {"nom_de_la_commune": "ST ETIENNE SOUS BAILLEUL", "libell_d_acheminement": "ST ETIENNE SOUS BAILLEUL", "code_postal": "27920", "coordonnees_gps": [49.1220332709, 1.39197763752], "code_commune_insee": "27539"}, "geometry": {"type": "Point", "coordinates": [1.39197763752, 49.1220332709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3af35c1aa6caa380fafd5b14f0ee3c5ff4a4e4f", "fields": {"nom_de_la_commune": "ST LAURENT DU TENCEMENT", "libell_d_acheminement": "ST LAURENT DU TENCEMENT", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27556"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05469252a34bac47c4b871f93f2310468d5eab7c", "fields": {"nom_de_la_commune": "ST LEGER DE ROTES", "libell_d_acheminement": "ST LEGER DE ROTES", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27557"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85262e3ae10a4ffd8fd06685be539a40f600074", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27562"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3851e198dea9ac05e48d881b3d1becd306dcdc17", "fields": {"code_postal": "27160", "code_commune_insee": "27578", "libell_d_acheminement": "STE MARIE D ATTEZ", "ligne_5": "ST NICOLAS D ATTEZ", "nom_de_la_commune": "STE MARIE D ATTEZ", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87becb1a06481786a38267840eba9fa6e4c1ce31", "fields": {"nom_de_la_commune": "ST PIERRE DE SALERNE", "libell_d_acheminement": "ST PIERRE DE SALERNE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27592"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd66f878c8181795c9bfa91335205a64cd2f165", "fields": {"nom_de_la_commune": "ST PIERRE LA GARENNE", "libell_d_acheminement": "ST PIERRE LA GARENNE", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27599"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cda3f211de19634cc9be230c758eab44afdf204", "fields": {"nom_de_la_commune": "ST SULPICE DE GRIMBOUVILLE", "libell_d_acheminement": "ST SULPICE DE GRIMBOUVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27604"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754a986c536d072b00e5ad6479045bef12ce7269", "fields": {"nom_de_la_commune": "ST VICTOR SUR AVRE", "libell_d_acheminement": "ST VICTOR SUR AVRE", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27610"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693019430c7d5482750ac131162f9102a6d3a453", "fields": {"nom_de_la_commune": "SUZAY", "libell_d_acheminement": "SUZAY", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27625"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0dfc8ca9ee7a44e3ffb48913f1bbb2f690a1f6", "fields": {"nom_de_la_commune": "LE THEIL NOLENT", "libell_d_acheminement": "LE THEIL NOLENT", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27627"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1767ff86704429a8405dc31a671d0fc367389ad", "fields": {"nom_de_la_commune": "THIBERVILLE", "libell_d_acheminement": "THIBERVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27629"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2a9fb56887f41672b15d2bf345488260851377", "fields": {"nom_de_la_commune": "LE TILLEUL LAMBERT", "libell_d_acheminement": "LE TILLEUL LAMBERT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27641"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af20737681d149dac509e82a7afd9ce2df580762", "fields": {"nom_de_la_commune": "TILLY", "libell_d_acheminement": "TILLY", "code_postal": "27510", "coordonnees_gps": [49.1509982632, 1.53002426085], "code_commune_insee": "27644"}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca6779aeea275854d5dc9814436a495308f14dd", "fields": {"nom_de_la_commune": "LE TORPT", "libell_d_acheminement": "LE TORPT", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27646"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeeb2c227f25b3a27e7d2ebd648e202b34f9e846", "fields": {"nom_de_la_commune": "TOSNY", "libell_d_acheminement": "TOSNY", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27647"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "451788b6f96d51adb11a7cef3afa37723f649537", "fields": {"nom_de_la_commune": "TOSTES", "libell_d_acheminement": "TOSTES", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27648"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eece3f472f926dd135ae50d8a74b6e5347a51341", "fields": {"nom_de_la_commune": "TOURNEDOS BOIS HUBERT", "libell_d_acheminement": "TOURNEDOS BOIS HUBERT", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27650"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d67255acb6e879818ff3873cfe9f2ae9cf26a49", "fields": {"nom_de_la_commune": "TOUVILLE", "libell_d_acheminement": "TOUVILLE SUR MONTFORT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27657"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f4d62800437f23332782494876a2af90f88533", "fields": {"nom_de_la_commune": "LA TRINITE DE THOUBERVILLE", "libell_d_acheminement": "LA TRINITE DE THOUBERVILLE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27661"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8522a70cd670f91aa6502bc13bf340ae85ad5b", "fields": {"nom_de_la_commune": "LE VAL DAVID", "libell_d_acheminement": "LE VAL DAVID", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27668"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d4596eee5bcebe87182f6b595705df4e727738", "fields": {"nom_de_la_commune": "VATTEVILLE", "libell_d_acheminement": "VATTEVILLE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27673"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40db76bbc40f0a531f1ea88ddc64cae9bcb4cb1d", "fields": {"nom_de_la_commune": "VIEUX PORT", "libell_d_acheminement": "VIEUX PORT", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27686"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98211ccb32d6c7e3eedfd92aa04ca766e0d14f48", "fields": {"nom_de_la_commune": "SYLVAINS LES MOULINS", "libell_d_acheminement": "SYLVAINS LES MOULINS", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27693"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ec5bd3d1d67deb061c00ec82e804a6f5e683e7", "fields": {"nom_de_la_commune": "VILLEZ SOUS BAILLEUL", "libell_d_acheminement": "VILLEZ SOUS BAILLEUL", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27694"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e64c37b2c4fc754d3209a9093322265e71795f1", "fields": {"nom_de_la_commune": "VIRONVAY", "libell_d_acheminement": "VIRONVAY", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27697"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89551698514d77660ba98e5e806c392dd001ebde", "fields": {"nom_de_la_commune": "ABONDANT", "libell_d_acheminement": "ABONDANT", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28001"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8715c3d56442ec849cac3aa7161a65ee02fc5974", "fields": {"nom_de_la_commune": "ALLAINVILLE", "libell_d_acheminement": "ALLAINVILLE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28003"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208b1c8723f18ba45c805b6c7cae97fb935f15d4", "fields": {"nom_de_la_commune": "ALLUYES", "libell_d_acheminement": "ALLUYES", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28005"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287171de421f992de7d5e565b5f8e9c21f36b387", "fields": {"nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", "libell_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28015"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c746a67c11927a999dd0109db2024a385b53db82", "fields": {"nom_de_la_commune": "BARJOUVILLE", "libell_d_acheminement": "BARJOUVILLE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28024"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116de7f5959664a03a64fb0e4833f965e388498d", "fields": {"nom_de_la_commune": "BELHOMERT GUEHOUVILLE", "libell_d_acheminement": "BELHOMERT GUEHOUVILLE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28033"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f60d65f3a84f6a116491877dfa060e49ff7763", "fields": {"nom_de_la_commune": "BERCHERES LES PIERRES", "libell_d_acheminement": "BERCHERES LES PIERRES", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28035"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c681980ac33ae2f181fd08c7d58e8dc7190880", "fields": {"nom_de_la_commune": "LE BOULLAY THIERRY", "libell_d_acheminement": "LE BOULLAY THIERRY", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28055"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7795694ed7405f1538d8d09dd918479ba6097771", "fields": {"nom_de_la_commune": "BRICONVILLE", "libell_d_acheminement": "BRICONVILLE", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28060"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c6870b1c6dd4651f452fc4ca5a9c2e2f0e83d8", "fields": {"nom_de_la_commune": "CHALLET", "libell_d_acheminement": "CHALLET", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28068"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f65272591d39dca525083b0d14f7c5cf6f036c", "fields": {"nom_de_la_commune": "CHAMPROND EN PERCHET", "libell_d_acheminement": "CHAMPROND EN PERCHET", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28072"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4dd7fae5cf6383da42dae1a5a5c9b32e6e7842", "fields": {"nom_de_la_commune": "LES CHATELLIERS NOTRE DAME", "libell_d_acheminement": "LES CHATELLIERS NOTRE DAME", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28091"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cab75df64f12b815c2e3182398def9eee25dd61", "fields": {"nom_de_la_commune": "CHUISNES", "libell_d_acheminement": "CHUISNES", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28099"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a44728ead5772722c03e7b8185affd9147ca40e", "fields": {"nom_de_la_commune": "CLEVILLIERS", "libell_d_acheminement": "CLEVILLIERS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28102"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313a54de79ff322c9fbc3520eee68c280ffacc3e", "fields": {"nom_de_la_commune": "CONIE MOLITARD", "libell_d_acheminement": "CONIE MOLITARD", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28106"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b2e2e20669402803680902bb2bccbb4c074e49", "fields": {"code_postal": "28270", "code_commune_insee": "28120", "libell_d_acheminement": "CRUCEY VILLAGES", "ligne_5": "VITRAY SOUS BREZOLLES", "nom_de_la_commune": "CRUCEY VILLAGES", "coordonnees_gps": [48.6934411697, 1.0846058718]}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324d81a38e565433470f856cedcedd41e76168f6", "fields": {"nom_de_la_commune": "DAMBRON", "libell_d_acheminement": "DAMBRON", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28121"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801c6208d97050ddbb0bab3b18229e6db8e531ac", "fields": {"nom_de_la_commune": "EPEAUTROLLES", "libell_d_acheminement": "EPEAUTROLLES", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28139"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f3b652d0381342eb7fa487af001d10a877d117", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28147"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f489cee9f5294d4ff479c49a47d855f224c6ed", "fields": {"nom_de_la_commune": "FRESNAY LE COMTE", "libell_d_acheminement": "FRESNAY LE COMTE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28162"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69cdedbd7f399253af45a9d8fa93aae4ef761e3", "fields": {"nom_de_la_commune": "FRETIGNY", "libell_d_acheminement": "FRETIGNY", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28165"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2334d144544fb29fc6475b298749cde3a4757b13", "fields": {"nom_de_la_commune": "GARANCIERES EN DROUAIS", "libell_d_acheminement": "GARANCIERES EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28170"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bcb0592974700cf83f0121296b9a674e8da16a", "fields": {"nom_de_la_commune": "GERMAINVILLE", "libell_d_acheminement": "GERMAINVILLE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28178"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6171a32daf4798e4e566107bafa166bf60e16ea2", "fields": {"code_postal": "28310", "code_commune_insee": "28183", "libell_d_acheminement": "GOMMERVILLE", "ligne_5": "GRANDVILLE GAUDREVILLE", "nom_de_la_commune": "GOMMERVILLE", "coordonnees_gps": [48.2536557069, 1.88422826059]}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6c0c04e93f76bcecbace82062a8027776e3a79", "fields": {"nom_de_la_commune": "GUAINVILLE", "libell_d_acheminement": "GUAINVILLE", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28187"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63184b9800ad6af2648f4964ca433c00e9ac5d23", "fields": {"nom_de_la_commune": "ILLIERS COMBRAY", "libell_d_acheminement": "ILLIERS COMBRAY", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28196"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb965aacc48e78cebef575e6876f89194beaefc8", "fields": {"nom_de_la_commune": "JOUY", "libell_d_acheminement": "JOUY", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28201"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a3a3e3159a0575d6ef9993ce10497e92dbcda2", "fields": {"nom_de_la_commune": "LAMBLORE", "libell_d_acheminement": "LAMBLORE", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28202"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d328ad019ab5863017af8d3bdf61837ef0c464", "fields": {"nom_de_la_commune": "LANDELLES", "libell_d_acheminement": "LANDELLES", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28203"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc74dd817560c2982ad0a0669bd764f748ef543", "fields": {"nom_de_la_commune": "LANGEY", "libell_d_acheminement": "LANGEY", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28204"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed0124689eef03d19abe5ef946540b83d97311b", "fields": {"nom_de_la_commune": "LOGRON", "libell_d_acheminement": "LOGRON", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28211"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23f2e54134f76370f9d8298c23f98bbd1d2b69d", "fields": {"nom_de_la_commune": "LOUVILLE LA CHENARD", "libell_d_acheminement": "LOUVILLE LA CHENARD", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28215"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fc538adedd944044d85dcff0bad2e8e0a02455", "fields": {"nom_de_la_commune": "LUISANT", "libell_d_acheminement": "LUISANT", "code_postal": "28600", "coordonnees_gps": [48.4231291259, 1.46854492401], "code_commune_insee": "28220"}, "geometry": {"type": "Point", "coordinates": [1.46854492401, 48.4231291259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5d1e3ae924415ea27a9003664893a89adab197", "fields": {"code_postal": "28170", "code_commune_insee": "28226", "libell_d_acheminement": "MAILLEBOIS", "ligne_5": "DAMPIERRE SUR BLEVY", "nom_de_la_commune": "MAILLEBOIS", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1783d17520e5c402ce3cb00b78bd071d21f057d8", "fields": {"nom_de_la_commune": "MARGON", "libell_d_acheminement": "MARGON", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28236"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382017a49d7b179effd8d508d90fb0dbb8563a4c", "fields": {"nom_de_la_commune": "MAROLLES LES BUIS", "libell_d_acheminement": "MAROLLES LES BUIS", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28237"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10edd58d6ee952e42cbf9128a7714bcf02ce61e", "fields": {"nom_de_la_commune": "LE MEE", "libell_d_acheminement": "LE MEE", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28241"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7731e3e389d59067231095d2caa3a3d9c0f335b", "fields": {"nom_de_la_commune": "MESLAY LE GRENET", "libell_d_acheminement": "MESLAY LE GRENET", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28245"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d480a1a7c916c733adfc7eb87cfbd21d53dba81", "fields": {"nom_de_la_commune": "MESLAY LE VIDAME", "libell_d_acheminement": "MESLAY LE VIDAME", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28246"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9940a063a4b3a553520f4e0805233e7d7cb53229", "fields": {"nom_de_la_commune": "LE MESNIL SIMON", "libell_d_acheminement": "LE MESNIL SIMON", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28247"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf5000f8e4f62325b2bea86ca3b74bab90b6f7c", "fields": {"nom_de_la_commune": "MITTAINVILLIERS VERIGNY", "libell_d_acheminement": "MITTAINVILLIERS VERIGNY", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28254"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c514a1c4393db84de92aff91382661d8994b1f", "fields": {"code_postal": "28190", "code_commune_insee": "28254", "libell_d_acheminement": "MITTAINVILLIERS VERIGNY", "ligne_5": "VERIGNY", "nom_de_la_commune": "MITTAINVILLIERS VERIGNY", "coordonnees_gps": [48.4570416765, 1.23084818739]}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecaeb29a63f26a9709a91ff807f0c63d73a11c55", "fields": {"nom_de_la_commune": "MOINVILLE LA JEULIN", "libell_d_acheminement": "MOINVILLE LA JEULIN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28255"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68aead29c08b104dc264407bdb1c26f07119e91", "fields": {"nom_de_la_commune": "MONTIGNY LE GANNELON", "libell_d_acheminement": "MONTIGNY LE GANNELON", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28262"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6750be561a5fa4aa27f762614affa5705d6b67", "fields": {"nom_de_la_commune": "MONTIREAU", "libell_d_acheminement": "MONTIREAU", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28264"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649eac3dabaafba8f1ffb1d711e146b066cfcc85", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28267"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d45380043a36916f04a793f80d444ec2b30f2e", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28274"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b681acb73037980719f9c842ae1f85237d232cff", "fields": {"nom_de_la_commune": "NEUVY EN DUNOIS", "libell_d_acheminement": "NEUVY EN DUNOIS", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28277"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f557490cab1887711ce5ae271cbd529f51e491", "fields": {"nom_de_la_commune": "OLLE", "libell_d_acheminement": "OLLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28286"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6eadb05dbd6426c98426e0a631e97ea3ad4acb3", "fields": {"nom_de_la_commune": "OULINS", "libell_d_acheminement": "OULINS", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28293"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c4240abaf12096f46ab4ab081cba166b8802a2", "fields": {"nom_de_la_commune": "PERONVILLE", "libell_d_acheminement": "PERONVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28296"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6074213e2049bf74cd68dbcc6c08ce78d5322af", "fields": {"nom_de_la_commune": "PONTGOUIN", "libell_d_acheminement": "PONTGOUIN", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28302"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f578d32139d4b9b48f75f5aa08e90f557e62471", "fields": {"nom_de_la_commune": "POUPRY", "libell_d_acheminement": "POUPRY", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28303"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8afdee9143b5a4d5b78e0ed22136f8c865113f", "fields": {"nom_de_la_commune": "ST AVIT LES GUESPIERES", "libell_d_acheminement": "ST AVIT LES GUESPIERES", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28326"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588e88a9eab9b9d8115c3d928e56f10a78a3a957", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28329"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7007f1b179af6a8812d9ed3097c7060e7167f26", "fields": {"nom_de_la_commune": "ST EMAN", "libell_d_acheminement": "ST EMAN", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28336"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9cb1c61663a211b4ea2d3667ee25cb45743d8d1", "fields": {"nom_de_la_commune": "ST HILAIRE SUR YERRE", "libell_d_acheminement": "ST HILAIRE SUR YERRE", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28340"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7379054f3fc51606a84fb46f224cd0a656e82e7", "fields": {"nom_de_la_commune": "SAUZELLES", "libell_d_acheminement": "SAUZELLES", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36213"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9d2af051b00e7c5d96032b9625005d76b9c47e", "fields": {"nom_de_la_commune": "SOUGE", "libell_d_acheminement": "SOUGE", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36218"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd7d6418b76338db332f124ebe35bf9b44ca96c", "fields": {"nom_de_la_commune": "LE TRANGER", "libell_d_acheminement": "LE TRANGER", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36225"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273461edf0d849433d7d1445fc17009a51d8eb3f", "fields": {"nom_de_la_commune": "URCIERS", "libell_d_acheminement": "URCIERS", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36227"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef641ae9874f9890d00e1c8db48998d70f2f0067", "fields": {"code_postal": "36210", "code_commune_insee": "36229", "libell_d_acheminement": "VAL FOUZON", "ligne_5": "VARENNES SUR FOUZON", "nom_de_la_commune": "VAL FOUZON", "coordonnees_gps": [47.1964381478, 1.69756497046]}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f8857fec2b98a5a64c49df12748352707763f5", "fields": {"nom_de_la_commune": "VELLES", "libell_d_acheminement": "VELLES", "code_postal": "36330", "coordonnees_gps": [46.7140693988, 1.6861822855], "code_commune_insee": "36231"}, "geometry": {"type": "Point", "coordinates": [1.6861822855, 46.7140693988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cf0f9f2b86c75703423b074bfea230a076b05d", "fields": {"nom_de_la_commune": "VEUIL", "libell_d_acheminement": "VEUIL", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36235"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e66bd344f35d28ddb8acdeb94c80c5bbffc087c", "fields": {"nom_de_la_commune": "VIGOULANT", "libell_d_acheminement": "VIGOULANT", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36238"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8432a4b876167a849231ba481f5febdf71d09c", "fields": {"nom_de_la_commune": "VILLIERS", "libell_d_acheminement": "VILLIERS", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36246"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f0f279cb6d4c400e2f25c735b835df2a12aca8", "fields": {"nom_de_la_commune": "VOUILLON", "libell_d_acheminement": "VOUILLON", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36248"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55cdb16c303c0ca5fe6015f807ba82b97ca931ce", "fields": {"nom_de_la_commune": "AUTRECHE", "libell_d_acheminement": "AUTRECHE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37009"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faf80da6425aff9e2547415e3b8b2f13473e9aa", "fields": {"nom_de_la_commune": "AVON LES ROCHES", "libell_d_acheminement": "AVON LES ROCHES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37012"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534f6594f991428acdc80b335c2edd2dce997766", "fields": {"nom_de_la_commune": "AVRILLE LES PONCEAUX", "libell_d_acheminement": "AVRILLE LES PONCEAUX", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37013"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478b1429b19c18a2644cf2ff1f2ea21d5d339c19", "fields": {"nom_de_la_commune": "AZAY LE RIDEAU", "libell_d_acheminement": "AZAY LE RIDEAU", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37014"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daccc4d180000db3a9f09e6b6301aa33e2a92fa3", "fields": {"nom_de_la_commune": "BARROU", "libell_d_acheminement": "BARROU", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37019"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f96e31576189341051fbe65b261401baeb888aa8", "fields": {"nom_de_la_commune": "BETZ LE CHATEAU", "libell_d_acheminement": "BETZ LE CHATEAU", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37026"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a87a1f133ce571a26a699032a7b520f45b9a18b", "fields": {"nom_de_la_commune": "BOSSAY SUR CLAISE", "libell_d_acheminement": "BOSSAY SUR CLAISE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37028"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ceeec8e9ce17179a5a8d9da8d0483da411e315b", "fields": {"nom_de_la_commune": "BOUSSAY", "libell_d_acheminement": "BOUSSAY", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37033"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6591f3bce09083a010d70710b83213efe99f97f1", "fields": {"nom_de_la_commune": "CANDES ST MARTIN", "libell_d_acheminement": "CANDES ST MARTIN", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37042"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a268030a1ec62baaf428c8cbf5d0249a63acb", "fields": {"nom_de_la_commune": "CANGEY", "libell_d_acheminement": "CANGEY", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37043"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e26cbdf02faf10b59f4d224f87492e1c8a366ea", "fields": {"nom_de_la_commune": "CERE LA RONDE", "libell_d_acheminement": "CERE LA RONDE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37046"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9748c2c0f3ab018724308b0bd1ed98917d1701", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37048"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5038e63683ecafe2dcd7ab95f5cac056b7be666", "fields": {"nom_de_la_commune": "CHAMBOURG SUR INDRE", "libell_d_acheminement": "CHAMBOURG SUR INDRE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37049"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947ec2ff33f8f1e99f27dfe0c7e0bac9b804223e", "fields": {"nom_de_la_commune": "CHANCEAUX SUR CHOISILLE", "libell_d_acheminement": "CHANCEAUX SUR CHOISILLE", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37054"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f63dfdd7774fd7f17d47fef784fb6411dc3c1dd", "fields": {"nom_de_la_commune": "CHANNAY SUR LATHAN", "libell_d_acheminement": "CHANNAY SUR LATHAN", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37055"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e104d0bade6e33983fe7102dfc64b33df61085aa", "fields": {"nom_de_la_commune": "LA CHAPELLE BLANCHE ST MARTIN", "libell_d_acheminement": "LA CHAPELLE BLANCHE ST MARTIN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37057"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b62614d646d078f06da9ecdb8cabc46583076fd9", "fields": {"nom_de_la_commune": "CHATEAU LA VALLIERE", "libell_d_acheminement": "CHATEAU LA VALLIERE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37062"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b660e3f487631da5fad0462c0067e6ebb22d7a7", "fields": {"nom_de_la_commune": "CHENONCEAUX", "libell_d_acheminement": "CHENONCEAUX", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37070"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2ff0e8986547b7c47d36c598a5369fb14b7f16", "fields": {"nom_de_la_commune": "CHEZELLES", "libell_d_acheminement": "CHEZELLES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37071"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cfb1a7482fef5581591c10f2573e04ea6fc2f0", "fields": {"nom_de_la_commune": "CLERE LES PINS", "libell_d_acheminement": "CLERE LES PINS", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37081"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a690cee335b988847952da483f6d21497d47811", "fields": {"nom_de_la_commune": "CONTINVOIR", "libell_d_acheminement": "CONTINVOIR", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37082"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d247e29cb93b5247478f205c7b1b06d6727d423c", "fields": {"nom_de_la_commune": "CRISSAY SUR MANSE", "libell_d_acheminement": "CRISSAY SUR MANSE", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37090"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251ad93d59a7945d6489047a2f2012f6a305eaf1", "fields": {"nom_de_la_commune": "CROTELLES", "libell_d_acheminement": "CROTELLES", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37092"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69882ac5f8707ac1a9aa8d81819f69f7273a0fb", "fields": {"nom_de_la_commune": "DAME MARIE LES BOIS", "libell_d_acheminement": "DAME MARIE LES BOIS", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37095"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b719620a22327fb8cf89fd4d311bab08198acf4", "fields": {"nom_de_la_commune": "FAYE LA VINEUSE", "libell_d_acheminement": "FAYE LA VINEUSE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37105"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbc6b13170724555a6b1c15dd9187eb3c11ac5f", "fields": {"nom_de_la_commune": "LA FERRIERE", "libell_d_acheminement": "LA FERRIERE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37106"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e1879aef785b1e701c91c01539bbfea2a4281fb", "fields": {"nom_de_la_commune": "LA GUERCHE", "libell_d_acheminement": "LA GUERCHE", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37114"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb58626811ec4b618e45cbd66ad740c60336935b", "fields": {"nom_de_la_commune": "DESCARTES", "libell_d_acheminement": "DESCARTES", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37115"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed12b44b5ff0d206d245457ae97551ac10084940", "fields": {"nom_de_la_commune": "HUISMES", "libell_d_acheminement": "HUISMES", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37118"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52fc53774e20480f9428894ab14d57a42b6bd4d", "fields": {"nom_de_la_commune": "LARCAY", "libell_d_acheminement": "LARCAY", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37124"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ea6af21aa59c7c9c404b71977dc20626cda2d2", "fields": {"nom_de_la_commune": "LOCHE SUR INDROIS", "libell_d_acheminement": "LOCHE SUR INDROIS", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37133"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6b027773ac3b1334b2dbe6f60c7a8f640e9983", "fields": {"nom_de_la_commune": "LUZILLE", "libell_d_acheminement": "LUZILLE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37141"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68bfe2b1053fd1c3cf257182fb8f0d352fa0b9fd", "fields": {"nom_de_la_commune": "METTRAY", "libell_d_acheminement": "METTRAY", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37152"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c52b7963b54cef8b491e076cd4bc9406af881af", "fields": {"nom_de_la_commune": "MONTHODON", "libell_d_acheminement": "MONTHODON", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37155"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e79fb2a70e7720cce8bf2d7a5976adfdce5fd3", "fields": {"nom_de_la_commune": "NOTRE DAME D OE", "libell_d_acheminement": "NOTRE DAME D OE", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37172"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7783aa8ea280e3c4d745301ddf386fbe4244339e", "fields": {"nom_de_la_commune": "NOUANS LES FONTAINES", "libell_d_acheminement": "NOUANS LES FONTAINES", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37173"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1719c4a09e2fa2bc31335fbccb3f79bd5d05c475", "fields": {"nom_de_la_commune": "NOYANT DE TOURAINE", "libell_d_acheminement": "NOYANT DE TOURAINE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37176"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "151f556961f8e80c0344353e7f99faeddf37d0ed", "fields": {"nom_de_la_commune": "PARCAY MESLAY", "libell_d_acheminement": "PARCAY MESLAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37179"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9b34ddd5933ff5a7f024e3cc285f09997b6ce4", "fields": {"nom_de_la_commune": "RICHELIEU", "libell_d_acheminement": "RICHELIEU", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37196"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "678b475b71414985b9232018136b4fcaa0afb92b", "fields": {"nom_de_la_commune": "RILLY SUR VIENNE", "libell_d_acheminement": "RILLY SUR VIENNE", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37199"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acffdbadc6a7731db0597678a6f1a490191cef1", "fields": {"nom_de_la_commune": "ST BAULD", "libell_d_acheminement": "ST BAULD", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37209"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d47c736e9127077180955cb9f47cbf7c3763931f", "fields": {"nom_de_la_commune": "ST LAURENT DE LIN", "libell_d_acheminement": "ST LAURENT DE LIN", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37223"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7c56eb038f56946f0dab147c9a7092e2285a68", "fields": {"nom_de_la_commune": "ST NICOLAS DE BOURGUEIL", "libell_d_acheminement": "ST NICOLAS DE BOURGUEIL", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37228"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3056ce4c7ee04b47a165417235adf1f6fb9d80", "fields": {"nom_de_la_commune": "ST NICOLAS DES MOTETS", "libell_d_acheminement": "ST NICOLAS DES MOTETS", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37229"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35b4ae40151008747010e75d313537e2c5e18be", "fields": {"nom_de_la_commune": "ST SENOCH", "libell_d_acheminement": "ST SENOCH", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37238"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a47db32e4632c94ff0cc990619fcd26c5abfa6", "fields": {"nom_de_la_commune": "SAUNAY", "libell_d_acheminement": "SAUNAY", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37240"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c1445b84933297c7e8727c58616535ec6cf2c3", "fields": {"nom_de_la_commune": "SEMBLANCAY", "libell_d_acheminement": "SEMBLANCAY", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37245"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62b122aeddf182642ca72b8821a75e5e42f5572", "fields": {"nom_de_la_commune": "SOUVIGNE", "libell_d_acheminement": "SOUVIGNE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37251"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eac47e20bf15b236f0ddad96711b1e797d6fe31", "fields": {"nom_de_la_commune": "SUBLAINES", "libell_d_acheminement": "SUBLAINES", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37253"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98052ee200e9fd24e75622e70723c6d90a94d7cf", "fields": {"nom_de_la_commune": "LA TOUR ST GELIN", "libell_d_acheminement": "LA TOUR ST GELIN", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37260"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b974c388dad9455bb1ca43bc6cb05beda3e9da5e", "fields": {"nom_de_la_commune": "TOURS", "libell_d_acheminement": "TOURS", "code_postal": "37100", "coordonnees_gps": [47.3979724257, 0.696297496341], "code_commune_insee": "37261"}, "geometry": {"type": "Point", "coordinates": [0.696297496341, 47.3979724257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835f08a6d1a1bb2af7bc3304493a50ae098e712d", "fields": {"nom_de_la_commune": "TOURS", "libell_d_acheminement": "TOURS", "code_postal": "37200", "coordonnees_gps": [47.3979724257, 0.696297496341], "code_commune_insee": "37261"}, "geometry": {"type": "Point", "coordinates": [0.696297496341, 47.3979724257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794b5310576a358dd33dec3060ca9197d05a8c10", "fields": {"nom_de_la_commune": "TROGUES", "libell_d_acheminement": "TROGUES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37262"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a89331c5be09072a972634fd5f169e31a6e078d5", "fields": {"nom_de_la_commune": "VEIGNE", "libell_d_acheminement": "VEIGNE", "code_postal": "37250", "coordonnees_gps": [47.2559000067, 0.703996574131], "code_commune_insee": "37266"}, "geometry": {"type": "Point", "coordinates": [0.703996574131, 47.2559000067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c57201571b7251f90687cb6e952f766f538c9c", "fields": {"nom_de_la_commune": "VERETZ", "libell_d_acheminement": "VERETZ", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37267"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f190f6b85d4f8af4d5a3b72cf9f4aa07c12be1", "fields": {"nom_de_la_commune": "VERNOU SUR BRENNE", "libell_d_acheminement": "VERNOU SUR BRENNE", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37270"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b547914df748b60638468c15f1c82bef3cb32090", "fields": {"nom_de_la_commune": "VILLEBOURG", "libell_d_acheminement": "VILLEBOURG", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37274"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db82e2551055bed945e9293a0fa14a310d93d8fd", "fields": {"nom_de_la_commune": "VILLELOIN COULANGE", "libell_d_acheminement": "VILLELOIN COULANGE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37277"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26c74685ebd5215eaf9521fed78bf92cba1109a", "fields": {"nom_de_la_commune": "VOUVRAY", "libell_d_acheminement": "VOUVRAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37281"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637110bb931b4f13b06624319f6a30e09c6278d3", "fields": {"nom_de_la_commune": "AGNIN", "libell_d_acheminement": "AGNIN", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38003"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2a0672c5236e1fe01dc424e9278d93623755f7", "fields": {"nom_de_la_commune": "ALLEVARD", "libell_d_acheminement": "ALLEVARD", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38006"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a7ec0bfd3ef221575f75c53816d307ba40c1ab", "fields": {"code_postal": "38140", "code_commune_insee": "38013", "libell_d_acheminement": "APPRIEU", "ligne_5": "LE RIVIER", "nom_de_la_commune": "APPRIEU", "coordonnees_gps": [45.3572541571, 5.48017908305]}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91eab891fb4847b3048391007aff1be0bf6a61e6", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38034"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4529a42c0156bb864be6276738cb66872a26836a", "fields": {"nom_de_la_commune": "BEAUVOIR EN ROYANS", "libell_d_acheminement": "BEAUVOIR EN ROYANS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38036"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5fae3d712e6ecc87c9367d5c98cd6e1407625b", "fields": {"nom_de_la_commune": "BIVIERS", "libell_d_acheminement": "BIVIERS", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38045"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9567cd472c717ad9adc022db6661a9cc5ac2a8b", "fields": {"nom_de_la_commune": "BOSSIEU", "libell_d_acheminement": "BOSSIEU", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38049"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f45cfe80d083952655a4ed419d8cc7a6a97e13a", "fields": {"nom_de_la_commune": "BOUGE CHAMBALUD", "libell_d_acheminement": "BOUGE CHAMBALUD", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38051"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c23c30d6929ea55214ce334000cde80d54fe4adb", "fields": {"nom_de_la_commune": "BRESSIEUX", "libell_d_acheminement": "BRESSIEUX", "code_postal": "38870", "coordonnees_gps": [45.3123965448, 5.28339736788], "code_commune_insee": "38056"}, "geometry": {"type": "Point", "coordinates": [5.28339736788, 45.3123965448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7f77a689cdebac8b17f9c79a3bfb5f8fe74df4", "fields": {"nom_de_la_commune": "BREZINS", "libell_d_acheminement": "BREZINS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38058"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb39b27f4793bdf69f8d61f53fba6dfdd655ffec", "fields": {"nom_de_la_commune": "BRIE ET ANGONNES", "libell_d_acheminement": "BRIE ET ANGONNES", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38059"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826388ba0415551731d2352dc2b70a2ebf4fe47c", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38060"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97cd2f9a58dd5bfc6c84b9ca7bde7773ee8fe88", "fields": {"nom_de_la_commune": "LA BUISSIERE", "libell_d_acheminement": "LA BUISSIERE", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38062"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250d8f75e86f232c2f287f4cf22fd14e3a04246d", "fields": {"nom_de_la_commune": "BURCIN", "libell_d_acheminement": "BURCIN", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38063"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c3b9540a8002e3a9a8ba6333ac0adb38ae6a4f", "fields": {"nom_de_la_commune": "CHANTESSE", "libell_d_acheminement": "CHANTESSE", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38074"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec01cf4905289bf1839bdba99ccf11010d32cb5", "fields": {"nom_de_la_commune": "CHARANTONNAY", "libell_d_acheminement": "CHARANTONNAY", "code_postal": "38790", "coordonnees_gps": [45.5630185121, 5.09029489838], "code_commune_insee": "38081"}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c38a73ea3a10dc80bbaf0abd57b7247404dadc7", "fields": {"nom_de_la_commune": "CHASSELAY", "libell_d_acheminement": "CHASSELAY", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38086"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567f9974bab359c1d791092a5db790f14604a41a", "fields": {"nom_de_la_commune": "CHASSE SUR RHONE", "libell_d_acheminement": "CHASSE SUR RHONE", "code_postal": "38670", "coordonnees_gps": [45.5794312598, 4.81422598198], "code_commune_insee": "38087"}, "geometry": {"type": "Point", "coordinates": [4.81422598198, 45.5794312598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b01e7beb29c9e44346e1eb1c6efd7d5b9576a9", "fields": {"nom_de_la_commune": "CHAVANOZ", "libell_d_acheminement": "CHAVANOZ", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38097"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b750fdaf4fa117ff11e6507281e0cb2ceab70977", "fields": {"nom_de_la_commune": "CHELIEU", "libell_d_acheminement": "CHELIEU", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38098"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4570df9f2658105a5e3214833ad58abbe6da043c", "fields": {"nom_de_la_commune": "CHORANCHE", "libell_d_acheminement": "CHORANCHE", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38108"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5278db1f6daf7607e5ce1d219e9cf08493868469", "fields": {"nom_de_la_commune": "CLAVANS EN HAUT OISANS", "libell_d_acheminement": "CLAVANS EN HAUT OISANS", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38112"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d40ecb1813923ebf1ababd35391008e95f3f8c", "fields": {"nom_de_la_commune": "COGNET", "libell_d_acheminement": "COGNET", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38116"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9895e9e537ecbf7debc90889680dbbc5e5c4b750", "fields": {"nom_de_la_commune": "LA COMBE DE LANCEY", "libell_d_acheminement": "LA COMBE DE LANCEY", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38120"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82f640633838db2b43e4538f260c271f707197a", "fields": {"nom_de_la_commune": "COMMELLE", "libell_d_acheminement": "COMMELLE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38121"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc763d4db3e13fe2a9b9090cab2b1b122fc848a", "fields": {"nom_de_la_commune": "CORENC", "libell_d_acheminement": "CORENC", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38126"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae3e57a93b45c1f70d0628906f3bd36d7675910", "fields": {"nom_de_la_commune": "CRACHIER", "libell_d_acheminement": "CRACHIER", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38136"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a184528b0ae259c244dd67d73acdad8824b70039", "fields": {"nom_de_la_commune": "CRAS", "libell_d_acheminement": "CRAS", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38137"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b67b8d313c9ecb323231af0181aebba24276257", "fields": {"nom_de_la_commune": "CULIN", "libell_d_acheminement": "CULIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38141"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6242478ed4251d0e8ad869507604046204f9eb", "fields": {"nom_de_la_commune": "DOMARIN", "libell_d_acheminement": "DOMARIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38149"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e685ad477923a1eba3bdefdd323996df51ea04c", "fields": {"nom_de_la_commune": "DOMENE", "libell_d_acheminement": "DOMENE", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38150"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8434a1a8fe326276e7467262761656bcbd224073", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "CHENEHUTTE TREVES CUNAULT", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a7492ff09e804bd888d36692ff60ca1f0b1d36", "fields": {"code_postal": "49140", "code_commune_insee": "49163", "libell_d_acheminement": "JARZE VILLAGES", "ligne_5": "BEAUVAU", "nom_de_la_commune": "JARZE VILLAGES", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28b082823c35f7bc54b5cf591905a298414ea80", "fields": {"nom_de_la_commune": "LEZIGNE", "libell_d_acheminement": "LEZIGNE", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49174"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14c36e9fb55a2e70ac9512f75e9adf8ccf63a2c6", "fields": {"nom_de_la_commune": "LINIERES BOUTON", "libell_d_acheminement": "LINIERES BOUTON", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49175"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebcbbe800d8bd29401238db07dc42ccd007f46e", "fields": {"nom_de_la_commune": "LE LION D ANGERS", "libell_d_acheminement": "LE LION D ANGERS", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49176"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed3ae085f416b88cc3e1140eea37294b317391a", "fields": {"nom_de_la_commune": "LONGUE JUMELLES", "libell_d_acheminement": "LONGUE JUMELLES", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49180"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8ce9614def7e317fca6ed1e569ab1792525bed", "fields": {"nom_de_la_commune": "MEIGNE", "libell_d_acheminement": "MEIGNE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49198"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c721cea16f5b235f212f2b33eb9740921096c5c8", "fields": {"code_postal": "49770", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "LA MEIGNANNE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.5603869664, -0.682921091412]}, "geometry": {"type": "Point", "coordinates": [-0.682921091412, 47.5603869664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06e4bed38ae4b09d2694124a78b8b3cd015106", "fields": {"nom_de_la_commune": "LA MENITRE", "libell_d_acheminement": "LA MENITRE", "code_postal": "49250", "coordonnees_gps": [47.4313983805, -0.244193438131], "code_commune_insee": "49201"}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044dab5ea9ee5b7bc71a9166ccc9cdb5d7ee23fc", "fields": {"nom_de_la_commune": "MONTREUIL JUIGNE", "libell_d_acheminement": "MONTREUIL JUIGNE", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49214"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b09ee04c47c486b0f67a032f26c773d0b7e51beb", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "CHAUDRON EN MAUGES", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29ca23bdf97bc31de7381c90d6586614aa66b98", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "ST QUENTIN EN MAUGES", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76425763a16f4f0404f1e98abeb661f4ca796e2d", "fields": {"nom_de_la_commune": "MOULIHERNE", "libell_d_acheminement": "MOULIHERNE", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49221"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4faf03da5d280aae03b6c9bed890aa95253e3f", "fields": {"nom_de_la_commune": "MURS ERIGNE", "libell_d_acheminement": "MURS ERIGNE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49223"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e2c1cb2052a8d463da8c47424181c6e2bfed56", "fields": {"nom_de_la_commune": "NOTRE DAME D ALLENCON", "libell_d_acheminement": "NOTRE DAME D ALLENCON", "code_postal": "49380", "coordonnees_gps": [47.275621339, -0.477027666042], "code_commune_insee": "49227"}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057a539a9d51949e770fb358920624e4070677b4", "fields": {"nom_de_la_commune": "NYOISEAU", "libell_d_acheminement": "NYOISEAU", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49233"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0172c0778532f617f509048a26cb160dfad10a1d", "fields": {"nom_de_la_commune": "LE PLESSIS GRAMMOIRE", "libell_d_acheminement": "LE PLESSIS GRAMMOIRE", "code_postal": "49124", "coordonnees_gps": [47.4813328465, -0.46591896303], "code_commune_insee": "49241"}, "geometry": {"type": "Point", "coordinates": [-0.46591896303, 47.4813328465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f46db9b48a45dde864151739bab324b0e452d2b5", "fields": {"code_postal": "49110", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "BOTZ EN MAUGES", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeba582fae67b0e35a54ca6257e4e5a857bcee35", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "BEAUSSE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e612bcd047bd226d8579d68a445946507657bd59", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LA CHAPELLE ST FLORENT", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44914ff5ddc64b43d751e76b83935456145be3b5", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LE MESNIL EN VALLEE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e10b8984e6b23c3fe56c532dfb858a2f6aaf33", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "ST LAURENT DU MOTTAY", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3c854a227e9cd3b06789d2403770c25994eb36", "fields": {"nom_de_la_commune": "LA PREVIERE", "libell_d_acheminement": "LA PREVIERE", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49250"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f97ba8953a8ed7c20a89d10954ec204a021a1dff", "fields": {"nom_de_la_commune": "LE PUY NOTRE DAME", "libell_d_acheminement": "LE PUY NOTRE DAME", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49253"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091034ec234c10fe99dd04f7fd1596dfc4d2d4b0", "fields": {"nom_de_la_commune": "LES ROSIERS SUR LOIRE", "libell_d_acheminement": "LES ROSIERS SUR LOIRE", "code_postal": "49350", "coordonnees_gps": [47.3419898447, -0.231335175854], "code_commune_insee": "49261"}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09f0d6b59346cab1cfe9cf625625d8f13e18281b", "fields": {"nom_de_la_commune": "ST BARTHELEMY D ANJOU", "libell_d_acheminement": "ST BARTHELEMY D ANJOU", "code_postal": "49124", "coordonnees_gps": [47.4813328465, -0.46591896303], "code_commune_insee": "49267"}, "geometry": {"type": "Point", "coordinates": [-0.46591896303, 47.4813328465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8004297811325b906c1991473b69679180fb6da", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU BOIS", "libell_d_acheminement": "ST CHRISTOPHE DU BOIS", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49269"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84708671ae3b492a6ecaad7fd71f69a92ad6bdb2", "fields": {"code_postal": "49710", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "LE LONGERON", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62173afc08fd54788761883a84a6e68fd36fcbae", "fields": {"nom_de_la_commune": "ST MARTIN DU FOUILLOUX", "libell_d_acheminement": "ST MARTIN DU FOUILLOUX", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49306"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6412c3276695893d63f2397c5e68e16c85f5672", "fields": {"code_postal": "49140", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "BAUNE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "432f48610bc0bc390480dfc999e5d7590423ff45", "fields": {"nom_de_la_commune": "ST MICHEL ET CHANVEAUX", "libell_d_acheminement": "ST MICHEL ET CHANVEAUX", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49309"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e5f9d075c658dd718acdfd301d38c344ba9354", "fields": {"nom_de_la_commune": "ST SATURNIN SUR LOIRE", "libell_d_acheminement": "ST SATURNIN SUR LOIRE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49318"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d39fe56eab54851ea230d2871e75f45408d466", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "BAGNEUX", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4d707ba8cac3a31e6c16a886f978e61184eb61", "fields": {"nom_de_la_commune": "LA SEGUINIERE", "libell_d_acheminement": "LA SEGUINIERE", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49332"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722cce1eb1362d945746660f9a409eeb3be3779a", "fields": {"nom_de_la_commune": "SOUZAY CHAMPIGNY", "libell_d_acheminement": "SOUZAY CHAMPIGNY", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49341"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1397aca9e378bebeeca1d93271016f0edf98373e", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "FAVERAYE MACHELLES", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60c45a1f45c1dd6cd4ae7d24ee1f6b0ef753d9a", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "THOUARCE", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3fdef9ee8c4bef15ff9c13efa01bdae7b8220f", "fields": {"nom_de_la_commune": "LES ULMES", "libell_d_acheminement": "LES ULMES", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49359"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768fafa3c88c5d9b3ad19fcfda0a016405e9abe6", "fields": {"nom_de_la_commune": "VAUDELNAY", "libell_d_acheminement": "VAUDELNAY", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49364"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fd7401b895f42a9be666e558e76f12c053216a", "fields": {"nom_de_la_commune": "VEZINS", "libell_d_acheminement": "VEZINS", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49371"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5197833d973aff12679358ce99744fddf75507c6", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "ST HILAIRE DU BOIS", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e24f2369d1fbbeb036bf029bbc28d031305deb", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "VIHIERS", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbe7c9af40d6acd15ef6af7c26997b10fb41f8e6", "fields": {"nom_de_la_commune": "VILLEMOISAN", "libell_d_acheminement": "VILLEMOISAN", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49376"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d2c46c7973c390edd8d599fb6d13461b7155d6", "fields": {"nom_de_la_commune": "AIREL", "libell_d_acheminement": "AIREL", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50004"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da4f2ac2aa6a5cb81ecda6fa82191c87fe47fa0", "fields": {"nom_de_la_commune": "BACILLY", "libell_d_acheminement": "BACILLY", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50027"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121025bb4f1581e7aeb6a5f4ea9d7163c3815d50", "fields": {"nom_de_la_commune": "BAUDRE", "libell_d_acheminement": "BAUDRE", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50034"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db217b94d80371b2e48af7fc79214c7b86199f9", "fields": {"nom_de_la_commune": "BEAUCOUDRAY", "libell_d_acheminement": "BEAUCOUDRAY", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50039"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6609e0ed6dd50a50de8d3c479fa4f583599a1db0", "fields": {"nom_de_la_commune": "BEAUFICEL", "libell_d_acheminement": "BEAUFICEL", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50040"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1bdf50dd25117edf6dca2ac87e3a330151e6aa", "fields": {"nom_de_la_commune": "BEAUMONT HAGUE", "libell_d_acheminement": "BEAUMONT HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50041"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c7ad4c36b1f8447337187afead84f985a262ed", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50043"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5c8af20dd58f3961660e7564fcd15e61789b03", "fields": {"nom_de_la_commune": "BENOITVILLE", "libell_d_acheminement": "BENOITVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50045"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57d6af090c500056534f28664a12ba4c7e18fe1", "fields": {"nom_de_la_commune": "BEUVRIGNY", "libell_d_acheminement": "BEUVRIGNY", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50050"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f083abd99b565ca1be73c4ae90492925cacd00b7", "fields": {"nom_de_la_commune": "LA BONNEVILLE", "libell_d_acheminement": "LA BONNEVILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50064"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6201ce74c65c9e7269b5f592df6fad339c690d4", "fields": {"code_postal": "50610", "code_commune_insee": "50066", "libell_d_acheminement": "JULLOUVILLE", "ligne_5": "ST MICHEL DES LOUPS", "nom_de_la_commune": "JULLOUVILLE", "coordonnees_gps": [48.7634707089, -1.52774338084]}, "geometry": {"type": "Point", "coordinates": [-1.52774338084, 48.7634707089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3609d4a1138b130a22257e48f73b182a8ab9c4", "fields": {"nom_de_la_commune": "BOURGUENOLLES", "libell_d_acheminement": "BOURGUENOLLES", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50069"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cd5b626f81ef42a5928eec11da1eef4ef2c7a83", "fields": {"nom_de_la_commune": "BOUTTEVILLE", "libell_d_acheminement": "BOUTTEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50070"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402e55f2d7431c5e0696dfe89b45a10344f90375", "fields": {"nom_de_la_commune": "BRETTEVILLE", "libell_d_acheminement": "BRETTEVILLE", "code_postal": "50110", "coordonnees_gps": [49.6236287204, -1.56289409844], "code_commune_insee": "50077"}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48df2b5cea6ba1940bbb83b2bb6ed91dc6efbab", "fields": {"nom_de_la_commune": "BREVANDS", "libell_d_acheminement": "BREVANDS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50080"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "435de619268b19b518f4bf6b697c57fe1c31ae38", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "QUETTETOT", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30fd64d990f48efdb1f419f6412c36b10ad6048", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "ST MARTIN LE HEBERT", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6545adb6a9fd5bb2fd6c6e6d7eac46bc439fda8", "fields": {"nom_de_la_commune": "BUAIS LES MONTS", "libell_d_acheminement": "BUAIS LES MONTS", "code_postal": "50640", "coordonnees_gps": [48.5293564364, -0.941843015494], "code_commune_insee": "50090"}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a086c36fabf365a5b40a1019840c17679fcd01", "fields": {"nom_de_la_commune": "CANISY", "libell_d_acheminement": "CANISY", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50095"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf73dea5676fe8a1ae1ff251cad4ef6f4d15662", "fields": {"code_postal": "50480", "code_commune_insee": "50099", "libell_d_acheminement": "CARENTAN LES MARAIS", "ligne_5": "HOUESVILLE", "nom_de_la_commune": "CARENTAN LES MARAIS", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb63c0b5313cebfa257d59392d5b24495c1be34d", "fields": {"nom_de_la_commune": "CEAUX", "libell_d_acheminement": "CEAUX", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50108"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67d73f1a44b1fee6a0a275a2d4c13ed083a8307", "fields": {"code_postal": "50320", "code_commune_insee": "50115", "libell_d_acheminement": "LE GRIPPON", "ligne_5": "LES CHAMBRES", "nom_de_la_commune": "LE GRIPPON", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08af30b95e400948378be2dfe1890acb09806d66", "fields": {"nom_de_la_commune": "CONDE SUR VIRE", "libell_d_acheminement": "CONDE SUR VIRE", "code_postal": "50890", "coordonnees_gps": [49.0542998216, -1.0242338737], "code_commune_insee": "50139"}, "geometry": {"type": "Point", "coordinates": [-1.0242338737, 49.0542998216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24bacc48233159941398d777f5011befb5d6fed", "fields": {"nom_de_la_commune": "COUTANCES", "libell_d_acheminement": "COUTANCES", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50147"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92da5b59a6c81a049b7d470dda975fb1e1917e29", "fields": {"nom_de_la_commune": "CRASVILLE", "libell_d_acheminement": "CRASVILLE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50150"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db15ad74eeeb45e0460076269d44efcf7f91eea", "fields": {"nom_de_la_commune": "CREANCES", "libell_d_acheminement": "CREANCES", "code_postal": "50710", "coordonnees_gps": [49.1994615529, -1.56119809168], "code_commune_insee": "50151"}, "geometry": {"type": "Point", "coordinates": [-1.56119809168, 49.1994615529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8155308441b6f71d0544a7e11e4b74a8713a168b", "fields": {"nom_de_la_commune": "CROLLON", "libell_d_acheminement": "CROLLON", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50155"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c544b328ab2c39a74dc5dcc7f5aa4d639f4c48", "fields": {"nom_de_la_commune": "CUVES", "libell_d_acheminement": "CUVES", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50158"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee24187261cb58962b0dc77bdb982748a07bb997", "fields": {"code_postal": "50530", "code_commune_insee": "50167", "libell_d_acheminement": "DRAGEY RONTHON", "ligne_5": "RONTHON", "nom_de_la_commune": "DRAGEY RONTHON", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa13513a4ed427361696151989b196c6592f123", "fields": {"nom_de_la_commune": "DUCEY LES CHERIS", "libell_d_acheminement": "DUCEY LES CHERIS", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50168"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2dc82f214d87933edc1040d12472f11189949bb", "fields": {"nom_de_la_commune": "ECAUSSEVILLE", "libell_d_acheminement": "ECAUSSEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50169"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90f3277038f82d2bee9d2564e92ad37746f9548", "fields": {"nom_de_la_commune": "EMONDEVILLE", "libell_d_acheminement": "EMONDEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50172"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1210c0bff90ce0a0ca76a61ce3b7ca399af82192", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50185"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f67ec7b119226f13efa4946361ad7f2adfc5597", "fields": {"nom_de_la_commune": "FLOTTEMANVILLE", "libell_d_acheminement": "FLOTTEMANVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50186"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c519209ac2cc34346dd56c8b31a12e7ea77f22f", "fields": {"nom_de_la_commune": "FONTENAY SUR MER", "libell_d_acheminement": "FONTENAY SUR MER", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50190"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff37eb5019b563ff3a738780e4ac66472bb39c41", "fields": {"nom_de_la_commune": "GEFFOSSES", "libell_d_acheminement": "GEFFOSSES", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50198"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bb97d6228cee01f3403e4f2fea3a8f5193ad89", "fields": {"nom_de_la_commune": "LA GOHANNIERE", "libell_d_acheminement": "LA GOHANNIERE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50206"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b8d60898b58c254bacba6a7fd20764b487b0cb", "fields": {"code_postal": "50620", "code_commune_insee": "50216", "libell_d_acheminement": "GRAIGNES MESNIL ANGOT", "ligne_5": "LE MESNIL ANGOT", "nom_de_la_commune": "GRAIGNES MESNIL ANGOT", "coordonnees_gps": [49.2231117427, -1.17413821779]}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad2a41e97816ef760382ad18a071fb08b0fe375d", "fields": {"nom_de_la_commune": "GRATOT", "libell_d_acheminement": "GRATOT", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50219"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "004714118cbf69f4c0722499ff7fabb4eee5a2bb", "fields": {"nom_de_la_commune": "HAUTTEVILLE BOCAGE", "libell_d_acheminement": "HAUTTEVILLE BOCAGE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50233"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684a648bf2ca0fe10b664670299b2724a49af98b", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "BOLLEVILLE", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62c169f20f6bcbbb5350c8d9f8d181b4f71913e", "fields": {"nom_de_la_commune": "HEUGUEVILLE SUR SIENNE", "libell_d_acheminement": "HEUGUEVILLE SUR SIENNE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50243"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4e5996e47227a9cedfe4f8f862ddde942047bdf", "fields": {"nom_de_la_commune": "JUVIGNY LE TERTRE", "libell_d_acheminement": "JUVIGNY LE TERTRE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50260"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af71a72737553139ce5e48045d960aca5602f560", "fields": {"nom_de_la_commune": "LESSAY", "libell_d_acheminement": "LESSAY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50267"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f392eaf8a5f75c87b6ab5eb22dc70c4f14816579", "fields": {"nom_de_la_commune": "LINGREVILLE", "libell_d_acheminement": "LINGREVILLE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50272"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0552043c5735c713ffc9490691ee65b83704eebe", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "STE SUZANNE EN BAUPTOIS", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2194f701f9fd707b2f84c0d5565174713c2dba64", "fields": {"nom_de_la_commune": "LE LOREUR", "libell_d_acheminement": "LE LOREUR", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50278"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c0dde072c9c239ae47785ea4c69645f0bab2ff", "fields": {"nom_de_la_commune": "LA LUCERNE D OUTREMER", "libell_d_acheminement": "LA LUCERNE D OUTREMER", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50281"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4934c15588176248f7cd053e5433002927db906d", "fields": {"nom_de_la_commune": "MARGUERAY", "libell_d_acheminement": "MARGUERAY", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50291"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e70fffbd7f3f16693c8be8b84044e45a3fb652", "fields": {"nom_de_la_commune": "MAUPERTUIS", "libell_d_acheminement": "MAUPERTUIS", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50295"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c78eb35cf0f112053addce6ee12634cbae7c94", "fields": {"nom_de_la_commune": "LA MEAUFFE", "libell_d_acheminement": "LA MEAUFFE", "code_postal": "50880", "coordonnees_gps": [49.1662165631, -1.12970537087], "code_commune_insee": "50297"}, "geometry": {"type": "Point", "coordinates": [-1.12970537087, 49.1662165631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b1ca8389b16e65e406b0d8a9c31e6cb23daebb", "fields": {"nom_de_la_commune": "LE MESNIL EURY", "libell_d_acheminement": "LE MESNIL EURY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50310"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4125b2639bc06448d5ce5780f610e0ef6b412d0e", "fields": {"nom_de_la_commune": "LE MESNIL OZENNE", "libell_d_acheminement": "LE MESNIL OZENNE", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50317"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0105ebfdb405c548262bd182529fc24c20a1628f", "fields": {"nom_de_la_commune": "LE MESNIL ROUXELIN", "libell_d_acheminement": "LE MESNIL ROUXELIN", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50321"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8232062abd91c283b7c200aeb6cdb4ebf7fde0", "fields": {"nom_de_la_commune": "LE MESNIL TOVE", "libell_d_acheminement": "LE MESNIL TOVE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50323"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47aab3874fead16af27d4c97d771d16349b4785", "fields": {"nom_de_la_commune": "LE MESNIL VENERON", "libell_d_acheminement": "LE MESNIL VENERON", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50324"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f34e731a82b6044f862fd7ea0d7e974e34c4b79", "fields": {"nom_de_la_commune": "LE MESNIL VIGOT", "libell_d_acheminement": "LE MESNIL VIGOT", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50325"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70053ce9a79609551544e48f0acdc4225cb6aa5", "fields": {"nom_de_la_commune": "LEVIGNY", "libell_d_acheminement": "LEVIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10194"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d30f40dbd8913638ee76ed88bea5aa8e590ca4", "fields": {"nom_de_la_commune": "NEUVILLE SUR SEINE", "libell_d_acheminement": "NEUVILLE SUR SEINE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10262"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99e2b98c18d070c60fa923294f3c778145bf653", "fields": {"nom_de_la_commune": "MONTIER EN L ISLE", "libell_d_acheminement": "MONTIER EN L ISLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10250"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae683ed30abdb1943a2ab6532d46c582d397c6b2", "fields": {"nom_de_la_commune": "NOGENT EN OTHE", "libell_d_acheminement": "NOGENT EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10266"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb125f999e17c7687905045c1ec5ef38762817a", "fields": {"nom_de_la_commune": "ORIGNY LE SEC", "libell_d_acheminement": "ORIGNY LE SEC", "code_postal": "10510", "coordonnees_gps": [48.4879809815, 3.8003478172], "code_commune_insee": "10271"}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6265f0bae562c4a042c84711b57d0d296f0ece0b", "fields": {"nom_de_la_commune": "MORVILLIERS", "libell_d_acheminement": "MORVILLIERS", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10258"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c977b093d00353773fe9d5242024e1339ded00", "fields": {"nom_de_la_commune": "MONTIERAMEY", "libell_d_acheminement": "MONTIERAMEY", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10249"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0230afd48f9e6454d508d6760c987dc5609c0eef", "fields": {"nom_de_la_commune": "MONTPOTHIER", "libell_d_acheminement": "MONTPOTHIER", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10254"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039b933a8451e8ee77c840ef65428a4526b1476c", "fields": {"nom_de_la_commune": "MOREMBERT", "libell_d_acheminement": "MOREMBERT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10257"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54e91cc5e6c0ab5527dbcca965658f88d77af28", "fields": {"nom_de_la_commune": "PARGUES", "libell_d_acheminement": "PARGUES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10278"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7f01e1a139967dcef0534fb95cdf23b862947e", "fields": {"nom_de_la_commune": "ONJON", "libell_d_acheminement": "ONJON", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10270"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58139158765a5c89656d6c217941028f6c046a0", "fields": {"code_postal": "10190", "code_commune_insee": "10142", "libell_d_acheminement": "ESTISSAC", "ligne_5": "THUISY", "nom_de_la_commune": "ESTISSAC", "coordonnees_gps": [48.249510935, 3.83670117751]}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8282b14984571e1181f418d6ccc3c1427409ceec", "fields": {"code_postal": "10150", "code_commune_insee": "10191", "libell_d_acheminement": "LAVAU", "ligne_5": "LA VALLOTE", "nom_de_la_commune": "LAVAU", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5422424fe97e482b894fc8e10c007305a14a7c7", "fields": {"nom_de_la_commune": "JONCREUIL", "libell_d_acheminement": "JONCREUIL", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10180"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c50e58a6b8279797c041ace17405cfeb7c5bb6", "fields": {"nom_de_la_commune": "JAVERNANT", "libell_d_acheminement": "JAVERNANT", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10177"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3473ce53da4667991720e1174371c08795688686", "fields": {"nom_de_la_commune": "HAMPIGNY", "libell_d_acheminement": "HAMPIGNY", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10171"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e69606cbce9d98763766cc707ea7a6d99946a2a", "fields": {"nom_de_la_commune": "FOUCHERES", "libell_d_acheminement": "FOUCHERES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10158"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193938dc090b07c37d85979a687e6fbb13c1616b", "fields": {"nom_de_la_commune": "LANTAGES", "libell_d_acheminement": "LANTAGES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10188"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db7eafbeb069830ce5db8b471ac66fd27b5f67d", "fields": {"nom_de_la_commune": "ESTISSAC", "libell_d_acheminement": "ESTISSAC", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10142"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2503ce8fcecf1cb64861209a4dbb46d470739a0f", "fields": {"nom_de_la_commune": "FRESNAY", "libell_d_acheminement": "FRESNAY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10161"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c6f482ca5f87efe28ac633ffec46b31789f19ec", "fields": {"nom_de_la_commune": "LAGESSE", "libell_d_acheminement": "LAGESSE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10185"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9e5bb893041bfd7d74d4a30688cfdd817f4b1a", "fields": {"nom_de_la_commune": "CAUNETTE SUR LAUQUET", "libell_d_acheminement": "CAUNETTE SUR LAUQUET", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11082"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1a4c351729173f14124e7a1c21f380bd597b9d", "fields": {"nom_de_la_commune": "CLERMONT SUR LAUQUET", "libell_d_acheminement": "CLERMONT SUR LAUQUET", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11094"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc200e3aa3e0e2c5fa3bd50f1261b9abaff8d7c9", "fields": {"nom_de_la_commune": "COUFFOULENS", "libell_d_acheminement": "COUFFOULENS", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11102"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b300f9f1834297045d85674a19472b84796a385", "fields": {"nom_de_la_commune": "CAVANAC", "libell_d_acheminement": "CAVANAC", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11085"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ab65d6d022a14ebd5727a23735970d5d7017eb", "fields": {"nom_de_la_commune": "COUDONS", "libell_d_acheminement": "COUDONS", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11101"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c74a27b81c1fb8a4dd6f963284a30158b91de6", "fields": {"nom_de_la_commune": "LE PONDY", "libell_d_acheminement": "LE PONDY", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18183"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc03efff1ae564d9cd2279756185500121e99549", "fields": {"nom_de_la_commune": "RAYMOND", "libell_d_acheminement": "RAYMOND", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18191"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4aed737390b2d82b468d6475219a201e33c6c3", "fields": {"nom_de_la_commune": "ST AMAND MONTROND", "libell_d_acheminement": "ST AMAND MONTROND", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18197"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31813ba0b1069f6d5b5107932592b82783b19ffa", "fields": {"nom_de_la_commune": "STE GEMME EN SANCERROIS", "libell_d_acheminement": "STE GEMME EN SANCERROIS", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18208"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b9a480660a6cca9349ee7e888132590584d58ed", "fields": {"nom_de_la_commune": "ST GEORGES SUR LA PREE", "libell_d_acheminement": "ST GEORGES SUR LA PREE", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18210"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ba7afe93237fd97ea642d648bb883c805abb39", "fields": {"nom_de_la_commune": "STE LUNAISE", "libell_d_acheminement": "STE LUNAISE", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18222"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24a5c8d66b5dce2f02c2d900de082827580632e", "fields": {"nom_de_la_commune": "ST OUTRILLE", "libell_d_acheminement": "ST OUTRILLE", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18228"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545848f91a83b48d78158af8495dc5add12fcaa9", "fields": {"nom_de_la_commune": "ST PRIEST LA MARCHE", "libell_d_acheminement": "ST PRIEST LA MARCHE", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18232"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474b26190a2287e4f4b960e43c291de8831a2d3c", "fields": {"nom_de_la_commune": "SAVIGNY EN SANCERRE", "libell_d_acheminement": "SAVIGNY EN SANCERRE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18246"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1688bff31810a8ea0e05769149bfffad16b123c3", "fields": {"nom_de_la_commune": "SOYE EN SEPTAINE", "libell_d_acheminement": "SOYE EN SEPTAINE", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18254"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bff6919e1c5d51d3a3ea09338308532102d721", "fields": {"nom_de_la_commune": "SURY ES BOIS", "libell_d_acheminement": "SURY ES BOIS", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18259"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7747beaa5335685763ca77473655556bb2c7b0a7", "fields": {"nom_de_la_commune": "THAUMIERS", "libell_d_acheminement": "THAUMIERS", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18261"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8965e89036855eb332e4a5bbd6d37bd4557ca552", "fields": {"nom_de_la_commune": "VALLENAY", "libell_d_acheminement": "VALLENAY", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18270"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5716003f260363a61cf66bdc089172ef6a4e7b", "fields": {"nom_de_la_commune": "VASSELAY", "libell_d_acheminement": "VASSELAY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18271"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155f42d3513d6855228abe7b1ee2e011ee3b78e4", "fields": {"nom_de_la_commune": "VIERZON", "libell_d_acheminement": "VIERZON", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18279"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9dfca17fd179d4d3a63f461097b4c1823792eb", "fields": {"nom_de_la_commune": "VINON", "libell_d_acheminement": "VINON", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18287"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e10c01554cf35ec34b55ac2500370e96a5eaef", "fields": {"nom_de_la_commune": "ALBUSSAC", "libell_d_acheminement": "ALBUSSAC", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19004"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4771bfd14778b4aab1cf8cd45565842fb3478ea", "fields": {"nom_de_la_commune": "ALTILLAC", "libell_d_acheminement": "ALTILLAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19007"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a73c1b656ceacad568a6cc41bccf113ecba97c", "fields": {"nom_de_la_commune": "AMBRUGEAT", "libell_d_acheminement": "AMBRUGEAT", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19008"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3e6fb10feb7fbca97fb73027025177926cbcb3", "fields": {"nom_de_la_commune": "ARNAC POMPADOUR", "libell_d_acheminement": "ARNAC POMPADOUR", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19011"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a9bc5ff8203fc71dadc9c6a92fce0a92b66ddb", "fields": {"nom_de_la_commune": "BAR", "libell_d_acheminement": "BAR", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19016"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957c1bf25015e3419daf7c7251faa0179648d7f7", "fields": {"nom_de_la_commune": "BASSIGNAC LE HAUT", "libell_d_acheminement": "BASSIGNAC LE HAUT", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19018"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26bd43d2ab582047f2c1e120e02afea8362bab2c", "fields": {"nom_de_la_commune": "BEAULIEU SUR DORDOGNE", "libell_d_acheminement": "BEAULIEU SUR DORDOGNE", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19019"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e4ba1c0512f112241fc476c3cb8e0a5a31d9f1", "fields": {"nom_de_la_commune": "BEYSSENAC", "libell_d_acheminement": "BEYSSENAC", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19025"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb861496c21cc31cfacd11687318860f0448f9f", "fields": {"nom_de_la_commune": "BONNEFOND", "libell_d_acheminement": "BONNEFOND", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19027"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b49ce659067dcd6fa78ba9ca7482434d671930", "fields": {"nom_de_la_commune": "CHABRIGNAC", "libell_d_acheminement": "CHABRIGNAC", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19035"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4a7df8e1119cf4a60665854befcc8f2969b629", "fields": {"nom_de_la_commune": "CHAMPAGNAC LA PRUNE", "libell_d_acheminement": "CHAMPAGNAC LA PRUNE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19040"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b14d6206d4516def8732f4cde3022d5f59ce0c0", "fields": {"nom_de_la_commune": "CHANTEIX", "libell_d_acheminement": "CHANTEIX", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19042"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af58be2c9ab3755b2d491816c784dac33357d49", "fields": {"nom_de_la_commune": "CHIRAC BELLEVUE", "libell_d_acheminement": "CHIRAC BELLEVUE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19055"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7569976f1f92cac5bb282f8f31a20d00c6b86225", "fields": {"nom_de_la_commune": "COLLONGES LA ROUGE", "libell_d_acheminement": "COLLONGES LA ROUGE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19057"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a275678624c3d3e7490f86cf27888c36d8968979", "fields": {"nom_de_la_commune": "CONCEZE", "libell_d_acheminement": "CONCEZE", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19059"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464d3fed7b3113aeae22c15ca6d339d4ef3d52a8", "fields": {"nom_de_la_commune": "DARNETS", "libell_d_acheminement": "DARNETS", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19070"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19fae333ae5924211b20aa73e096025c239b8b9b", "fields": {"nom_de_la_commune": "EGLETONS", "libell_d_acheminement": "EGLETONS", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19073"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7766c97bfe7d56e80f07a474b8711a9b48098f33", "fields": {"nom_de_la_commune": "ESTIVALS", "libell_d_acheminement": "ESTIVALS", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19077"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c87a97969232acead765e9fea0451eaa68dd727", "fields": {"nom_de_la_commune": "EYBURIE", "libell_d_acheminement": "EYBURIE", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19079"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60604f15c23068af5594db9864452e5c7477a976", "fields": {"nom_de_la_commune": "GOURDON MURAT", "libell_d_acheminement": "GOURDON MURAT", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19087"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c893016772d145f96d1ea6fb6d9c64632bcbb58", "fields": {"nom_de_la_commune": "GRANDSAIGNE", "libell_d_acheminement": "GRANDSAIGNE", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19088"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2969c324bc62eb69e4832daa73d5c3c8074c434", "fields": {"nom_de_la_commune": "JUILLAC", "libell_d_acheminement": "JUILLAC", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19094"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc459f0848590b082183e193e6c623571b93477", "fields": {"nom_de_la_commune": "LAGARDE ENVAL", "libell_d_acheminement": "LAGARDE ENVAL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19098"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2d28ded6064c176f7c26e4e1634be94dcd8c85", "fields": {"nom_de_la_commune": "LAMAZIERE HAUTE", "libell_d_acheminement": "LAMAZIERE HAUTE", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19103"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa260199bd0f1e0aea27e2181505fa887020f57f", "fields": {"nom_de_la_commune": "LANTEUIL", "libell_d_acheminement": "LANTEUIL", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19105"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b376532c1f09d8a04df26528928603d9f00b5f2a", "fields": {"nom_de_la_commune": "MADRANGES", "libell_d_acheminement": "MADRANGES", "code_postal": "19470", "coordonnees_gps": [45.4692753573, 1.7476592385], "code_commune_insee": "19122"}, "geometry": {"type": "Point", "coordinates": [1.7476592385, 45.4692753573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85103725846a15e6d4a89d6064bb9c8b74f99bcf", "fields": {"nom_de_la_commune": "MALEMORT", "libell_d_acheminement": "MALEMORT", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19123"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8066c060764ed8e75494bdacba02d0c39c09e3", "fields": {"nom_de_la_commune": "MEILHARDS", "libell_d_acheminement": "MEILHARDS", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19131"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95dacaea0ebba091a1051ba99b05a8d0bdedb385", "fields": {"nom_de_la_commune": "MONESTIER PORT DIEU", "libell_d_acheminement": "MONESTIER PORT DIEU", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19142"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff671d9cca101c8478f718af5b1dd983b6728d5", "fields": {"nom_de_la_commune": "ORLIAC DE BAR", "libell_d_acheminement": "ORLIAC DE BAR", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19155"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1241b8c43e33d1911575a6675d1e14f15b9bd4", "fields": {"nom_de_la_commune": "PALISSE", "libell_d_acheminement": "PALISSE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19157"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed1c9342bd3ee0137394d60bcd215421f14878b6", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "19450", "coordonnees_gps": [45.4271584984, 1.69945008096], "code_commune_insee": "19166"}, "geometry": {"type": "Point", "coordinates": [1.69945008096, 45.4271584984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22e5947cb95cc72eb50ce6fd52ac77daf118820", "fields": {"nom_de_la_commune": "REYGADE", "libell_d_acheminement": "REYGADE", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19171"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec09ccd8a14ef9c29805bf2311c7e63e85b6852", "fields": {"nom_de_la_commune": "RILHAC XAINTRIE", "libell_d_acheminement": "RILHAC XAINTRIE", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19173"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eed1d1376c1238cfbfed46d683a1f9448f1d788", "fields": {"nom_de_la_commune": "ST BAZILE DE MEYSSAC", "libell_d_acheminement": "ST BAZILE DE MEYSSAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19184"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f761e9aedba57010889cdc432bb0f8f44dc63b", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19194"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6677ad33dcff6c43cde756f36bc16bb95f1002c", "fields": {"nom_de_la_commune": "ST EXUPERY LES ROCHES", "libell_d_acheminement": "ST EXUPERY LES ROCHES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19201"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9703b236fe190dd7f662a8342de65ef76cd0f0a3", "fields": {"nom_de_la_commune": "ST GERMAIN LAVOLPS", "libell_d_acheminement": "ST GERMAIN LAVOLPS", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19206"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee19dabed066b0dbdfd039a22517e3b7c159e502", "fields": {"nom_de_la_commune": "ST HILAIRE LES COURBES", "libell_d_acheminement": "ST HILAIRE LES COURBES", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19209"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28995fc59a09a7042fca9041adc1564f03cf92d", "fields": {"nom_de_la_commune": "ST MEXANT", "libell_d_acheminement": "ST MEXANT", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19227"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8d6db9219a2670c57cdc6c85f5e8809868ab08", "fields": {"nom_de_la_commune": "ST SALVADOUR", "libell_d_acheminement": "ST SALVADOUR", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19240"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4d0ce3810f690b42745146a10240ca483e03e9", "fields": {"nom_de_la_commune": "SALON LA TOUR", "libell_d_acheminement": "SALON LA TOUR", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19250"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ab044dce91d5b54c2279a3f9a9e571c31e01a9", "fields": {"nom_de_la_commune": "SARROUX", "libell_d_acheminement": "SARROUX", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19252"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d586156a646a869639aa372b7dbaa04481ca40", "fields": {"nom_de_la_commune": "USSAC", "libell_d_acheminement": "USSAC", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19274"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136a1295dd688dd588642d2a31d521318cb9c82e", "fields": {"nom_de_la_commune": "VEGENNES", "libell_d_acheminement": "VEGENNES", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19280"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5102faf29cd732f55ea3518d9a5c8533059b82a8", "fields": {"nom_de_la_commune": "VIAM", "libell_d_acheminement": "VIAM", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19284"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc06370158793a49b1009a859fb86e66575ef18", "fields": {"nom_de_la_commune": "VIGNOLS", "libell_d_acheminement": "VIGNOLS", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19286"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7835f1222092869487bef58213037e2a04646e17", "fields": {"nom_de_la_commune": "AISEREY", "libell_d_acheminement": "AISEREY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21005"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010c2411cb18564ebde998406ead5e1b7ac0f7cb", "fields": {"nom_de_la_commune": "ARCENANT", "libell_d_acheminement": "ARCENANT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21017"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5313b910ae508963a991948314bf7f8d071717", "fields": {"nom_de_la_commune": "ARNAY SOUS VITTEAUX", "libell_d_acheminement": "ARNAY SOUS VITTEAUX", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21024"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91336e64f925d9840b82500b557295b9d6d0dbe5", "fields": {"nom_de_la_commune": "AUBAINE", "libell_d_acheminement": "AUBAINE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21030"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c102a5d35f7695bcff99049cfcce890a6c780946", "fields": {"nom_de_la_commune": "AVELANGES", "libell_d_acheminement": "AVELANGES", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21039"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5013c0da061fee9546a8deafe78ea05cee33a182", "fields": {"nom_de_la_commune": "BALOT", "libell_d_acheminement": "BALOT", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21044"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904b3ad466b75def003f3be7e829b5fd7b287df7", "fields": {"nom_de_la_commune": "BARBIREY SUR OUCHE", "libell_d_acheminement": "BARBIREY SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21045"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44fe6077cd8018e2da469d0384f1dafcf3fe80bc", "fields": {"nom_de_la_commune": "BARGES", "libell_d_acheminement": "BARGES", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21048"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd6bdc95b85aff2c8a3b4b97fa2954682254101", "fields": {"nom_de_la_commune": "BARJON", "libell_d_acheminement": "BARJON", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21049"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9505085ef8023940c307538a86c2cde893862d53", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21052"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d04e55c6f4979ab3bcf85483ee900126425c86a", "fields": {"nom_de_la_commune": "BEAUMONT SUR VINGEANNE", "libell_d_acheminement": "BEAUMONT SUR VINGEANNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21053"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16f2c346908da28a971bc52f2d5e526cd2bc4e9", "fields": {"nom_de_la_commune": "NEUVE EGLISE", "libell_d_acheminement": "NEUVE EGLISE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67320"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7cde974477bb42cbe19539ef54a7d0a27aaa097", "fields": {"nom_de_la_commune": "NIEDERNAI", "libell_d_acheminement": "NIEDERNAI", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67329"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5afbe1e47d1794b97cee99f5289bebab047b00f7", "fields": {"code_postal": "67660", "code_commune_insee": "67339", "libell_d_acheminement": "BETSCHDORF", "ligne_5": "KUHLENDORF", "nom_de_la_commune": "BETSCHDORF", "coordonnees_gps": [48.8932955893, 7.92442100196]}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01e776d373d30d75c0f4cbfaf3d61c684654c11", "fields": {"nom_de_la_commune": "OBERSOULTZBACH", "libell_d_acheminement": "OBERSOULTZBACH", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67352"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b116db0c11e35c596b6648a71283782b47f91b", "fields": {"nom_de_la_commune": "OHNENHEIM", "libell_d_acheminement": "OHNENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67360"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c97e7366980226e52270ddfdef73fee13437490b", "fields": {"nom_de_la_commune": "OSTHOUSE", "libell_d_acheminement": "OSTHOUSE", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67364"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6750c02cea00b94c4707d8af2eddcbd94a18659c", "fields": {"code_postal": "67350", "code_commune_insee": "67372", "libell_d_acheminement": "VAL DE MODER", "ligne_5": "PFAFFENHOFFEN", "nom_de_la_commune": "VAL DE MODER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517e880e97edfa173f98b3e8a3aac7de4241dfe7", "fields": {"nom_de_la_commune": "PFALZWEYER", "libell_d_acheminement": "PFALZWEYER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67373"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f501c129ba72ee9997f6f27498edfc9b7b0cfbb", "fields": {"nom_de_la_commune": "PLOBSHEIM", "libell_d_acheminement": "PLOBSHEIM", "code_postal": "67115", "coordonnees_gps": [48.4609496057, 7.73518197002], "code_commune_insee": "67378"}, "geometry": {"type": "Point", "coordinates": [7.73518197002, 48.4609496057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "550428f50d27388b882766639c02d6962bc1cde4", "fields": {"nom_de_la_commune": "RATZWILLER", "libell_d_acheminement": "RATZWILLER", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67385"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e968627cbc1247809e540bb8b4279397531f9622", "fields": {"nom_de_la_commune": "REICHSFELD", "libell_d_acheminement": "REICHSFELD", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67387"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02de1984b77e48124c79fdeace525e402c15ed1", "fields": {"nom_de_la_commune": "RETSCHWILLER", "libell_d_acheminement": "RETSCHWILLER", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67394"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af059c9c172be8148b3a90189569583cf433638", "fields": {"nom_de_la_commune": "RINGENDORF", "libell_d_acheminement": "RINGENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67403"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d8e2bb6db58f9fcb30aa1eaaf1daaa3bfb60b6", "fields": {"nom_de_la_commune": "ROHRWILLER", "libell_d_acheminement": "ROHRWILLER", "code_postal": "67410", "coordonnees_gps": [48.7592655798, 7.93844896639], "code_commune_insee": "67407"}, "geometry": {"type": "Point", "coordinates": [7.93844896639, 48.7592655798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343f68e1cdeda35ebac9b47ca5e16747252bb567", "fields": {"nom_de_la_commune": "ROSTEIG", "libell_d_acheminement": "ROSTEIG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67413"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a31c0b9b084d6567fdbcf4d0d1e48e781ef79148", "fields": {"nom_de_la_commune": "ROTTELSHEIM", "libell_d_acheminement": "ROTTELSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67417"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f961f601ed663cbdf890922ece03138ee996b9f7", "fields": {"nom_de_la_commune": "ROUNTZENHEIM", "libell_d_acheminement": "ROUNTZENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67418"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b14218f6321661506e2986d45a9a75cb693e25c", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67426"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef621c74263eb190941003ed0d73f2d8d109b9e", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67427"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51d9547897f2b37972eb8d1a4abc1093316b8b7", "fields": {"code_postal": "67260", "code_commune_insee": "67435", "libell_d_acheminement": "SARREWERDEN", "ligne_5": "BISCHTROFF SUR SARRE", "nom_de_la_commune": "SARREWERDEN", "coordonnees_gps": [48.9452664459, 7.05902340111]}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd848ccef7888d2e0783c438535638e5d490147", "fields": {"code_postal": "67260", "code_commune_insee": "67435", "libell_d_acheminement": "SARREWERDEN", "ligne_5": "ZOLLINGEN", "nom_de_la_commune": "SARREWERDEN", "coordonnees_gps": [48.9452664459, 7.05902340111]}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4545dfc4f4d325fb441b12a460c0d378223ce5f", "fields": {"nom_de_la_commune": "SAVERNE", "libell_d_acheminement": "SAVERNE", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67437"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a7c54b19e71a7fbe2125187c9aa3603ebc1e1e", "fields": {"code_postal": "67700", "code_commune_insee": "67437", "libell_d_acheminement": "SAVERNE", "ligne_5": "ZORNTHAL", "nom_de_la_commune": "SAVERNE", "coordonnees_gps": [48.7358014882, 7.35473600973]}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f46a85888788eae946416fa3cfc23b336971ff", "fields": {"nom_de_la_commune": "SCHARRACHBERGHEIM IRMSTETT", "libell_d_acheminement": "SCHARRACHBERGHEIM IRMSTETT", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67442"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b51747f43045b8c7e15b24344be1c8017d386364", "fields": {"code_postal": "67310", "code_commune_insee": "67442", "libell_d_acheminement": "SCHARRACHBERGHEIM IRMSTETT", "ligne_5": "IRMSTETT", "nom_de_la_commune": "SCHARRACHBERGHEIM IRMSTETT", "coordonnees_gps": [48.6178840196, 7.42141185001]}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8018017df3d26016385d61a9d5aa7c626cbfb1", "fields": {"nom_de_la_commune": "SCHERWILLER", "libell_d_acheminement": "SCHERWILLER", "code_postal": "67750", "coordonnees_gps": [48.2953571364, 7.41534118393], "code_commune_insee": "67445"}, "geometry": {"type": "Point", "coordinates": [7.41534118393, 48.2953571364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c6c5261cb323ce94ca4bdb8a68c490af2b7bee", "fields": {"nom_de_la_commune": "SCHILLERSDORF", "libell_d_acheminement": "SCHILLERSDORF", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67446"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e4c0c090e989ff29c42973b0c40dcba2489816", "fields": {"nom_de_la_commune": "SCHIRRHEIN", "libell_d_acheminement": "SCHIRRHEIN", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67449"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d169b20ed15d5e30547b3996313256d534d23790", "fields": {"nom_de_la_commune": "SCHNERSHEIM", "libell_d_acheminement": "SCHNERSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67452"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dddfbc70ae56fe324fec80f3c538f1340a41009", "fields": {"nom_de_la_commune": "SCHOENAU", "libell_d_acheminement": "SCHOENAU", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67453"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b0cced79bd96754fa5441e169aee4ac7f7657f7", "fields": {"nom_de_la_commune": "SOUFFELWEYERSHEIM", "libell_d_acheminement": "SOUFFELWEYERSHEIM", "code_postal": "67460", "coordonnees_gps": [48.6325071723, 7.74062079006], "code_commune_insee": "67471"}, "geometry": {"type": "Point", "coordinates": [7.74062079006, 48.6325071723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7597c4935ed110eaed039cdbe386300f8d17f22", "fields": {"nom_de_la_commune": "SOUFFLENHEIM", "libell_d_acheminement": "SOUFFLENHEIM", "code_postal": "67620", "coordonnees_gps": [48.8088729378, 7.95624007787], "code_commune_insee": "67472"}, "geometry": {"type": "Point", "coordinates": [7.95624007787, 48.8088729378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e544e1db4ce511d8e90d8afcaae19c95cea040b", "fields": {"nom_de_la_commune": "SOULTZ SOUS FORETS", "libell_d_acheminement": "SOULTZ SOUS FORETS", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67474"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075743b6587f567ff947d471f7e17b3ac1b21b62", "fields": {"code_postal": "67250", "code_commune_insee": "67474", "libell_d_acheminement": "SOULTZ SOUS FORETS", "ligne_5": "HOHWILLER", "nom_de_la_commune": "SOULTZ SOUS FORETS", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0627c87c25ab003c7df801f5415fdc34a98ca0", "fields": {"nom_de_la_commune": "SPARSBACH", "libell_d_acheminement": "SPARSBACH", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67475"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "907c8f2e67f8233f8b85ce7b0ef3f4b824a15839", "fields": {"nom_de_la_commune": "STATTMATTEN", "libell_d_acheminement": "STATTMATTEN", "code_postal": "67770", "coordonnees_gps": [48.786400847, 7.99175996988], "code_commune_insee": "67476"}, "geometry": {"type": "Point", "coordinates": [7.99175996988, 48.786400847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd00751186a0170f963d941bec81185987fe9e72", "fields": {"nom_de_la_commune": "STRASBOURG", "libell_d_acheminement": "STRASBOURG", "code_postal": "67200", "coordonnees_gps": [48.5716222333, 7.76768232804], "code_commune_insee": "67482"}, "geometry": {"type": "Point", "coordinates": [7.76768232804, 48.5716222333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430ed52aa3207ffa51d5664d11eccbdcdf14d1e2", "fields": {"code_postal": "67370", "code_commune_insee": "67485", "libell_d_acheminement": "STUTZHEIM OFFENHEIM", "ligne_5": "OFFENHEIM", "nom_de_la_commune": "STUTZHEIM OFFENHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a65770d5129716dc4b97dd1671c31fbc997b33", "fields": {"nom_de_la_commune": "THAL MARMOUTIER", "libell_d_acheminement": "THAL MARMOUTIER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67489"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0303c4e50e5375d49f63137cf92753bb9bd0559b", "fields": {"nom_de_la_commune": "TRUCHTERSHEIM", "libell_d_acheminement": "TRUCHTERSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67495"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3889f88e23bf99c0bc54ca0858e27f3fd543af3", "fields": {"code_postal": "67370", "code_commune_insee": "67495", "libell_d_acheminement": "TRUCHTERSHEIM", "ligne_5": "BEHLENHEIM", "nom_de_la_commune": "TRUCHTERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1332fa4876e8a10fd343c57c65bdeb673be0ca", "fields": {"nom_de_la_commune": "VENDENHEIM", "libell_d_acheminement": "VENDENHEIM", "code_postal": "67550", "coordonnees_gps": [48.6731828077, 7.72554052263], "code_commune_insee": "67506"}, "geometry": {"type": "Point", "coordinates": [7.72554052263, 48.6731828077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6e24d11774934e484761d64fec824767c43155", "fields": {"nom_de_la_commune": "VOLKSBERG", "libell_d_acheminement": "VOLKSBERG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67509"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93dbf2e1c26b239883dc46f38084cbf056226fce", "fields": {"nom_de_la_commune": "WAHLENHEIM", "libell_d_acheminement": "WAHLENHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67510"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6365e5ac90741abb732541be6dc3b17cee6b0f4", "fields": {"nom_de_la_commune": "WASSELONNE", "libell_d_acheminement": "WASSELONNE", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67520"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d3b65ed4628b6c4b20cd52c90363ffcb07a599", "fields": {"nom_de_la_commune": "WEYERSHEIM", "libell_d_acheminement": "WEYERSHEIM", "code_postal": "67720", "coordonnees_gps": [48.7056122798, 7.80812947302], "code_commune_insee": "67529"}, "geometry": {"type": "Point", "coordinates": [7.80812947302, 48.7056122798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "634feda1b29c1df1b960fed1f9996bfd48ab94aa", "fields": {"code_postal": "67270", "code_commune_insee": "67530", "libell_d_acheminement": "WICKERSHEIM WILSHAUSEN", "ligne_5": "WILSHAUSEN", "nom_de_la_commune": "WICKERSHEIM WILSHAUSEN", "coordonnees_gps": [48.7485075734, 7.5652768188]}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c548c4744361d1e469604173e8737bf0b6fead0a", "fields": {"nom_de_la_commune": "WILDERSBACH", "libell_d_acheminement": "WILDERSBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67531"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bb983091c43ad0cb04e46daed3fddf971d97f1", "fields": {"nom_de_la_commune": "WILLGOTTHEIM", "libell_d_acheminement": "WILLGOTTHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67532"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d6f059a52dbc01c25324369bbb2b697e43dff1", "fields": {"nom_de_la_commune": "WILWISHEIM", "libell_d_acheminement": "WILWISHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67534"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a671eeaa8dd23f265eca1dc3ef5f7c18541be9", "fields": {"code_postal": "67110", "code_commune_insee": "67536", "libell_d_acheminement": "WINDSTEIN", "ligne_5": "JAEGERTHAL", "nom_de_la_commune": "WINDSTEIN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad673973c7adbb3bdafebfd4fb4bf11e268b1e40", "fields": {"code_postal": "67160", "code_commune_insee": "67544", "libell_d_acheminement": "WISSEMBOURG", "ligne_5": "ALTENSTADT", "nom_de_la_commune": "WISSEMBOURG", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae2db1270b834dd70686df691882e0d0cba355c", "fields": {"nom_de_la_commune": "WOERTH", "libell_d_acheminement": "WOERTH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67550"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aefc9b0ce6de89e32e1eed1583627fe61b41ab4", "fields": {"nom_de_la_commune": "WOLFISHEIM", "libell_d_acheminement": "WOLFISHEIM", "code_postal": "67202", "coordonnees_gps": [48.5874318667, 7.66423179027], "code_commune_insee": "67551"}, "geometry": {"type": "Point", "coordinates": [7.66423179027, 48.5874318667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b08a8a32cf1850d345b7ece94ca21140350e22", "fields": {"nom_de_la_commune": "WOLSCHHEIM", "libell_d_acheminement": "WOLSCHHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67553"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d2c8d4a075303a2ed1b06e9d32a09f2ebe8a76", "fields": {"nom_de_la_commune": "ZINSWILLER", "libell_d_acheminement": "ZINSWILLER", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67558"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f634bfb8ab0e2c8d29a55ca62f6e5dab3e549625", "fields": {"code_postal": "68210", "code_commune_insee": "68018", "libell_d_acheminement": "BALSCHWILLER", "ligne_5": "UEBERKUMEN", "nom_de_la_commune": "BALSCHWILLER", "coordonnees_gps": [47.6465535695, 7.10668724533]}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca19a856a1e57e85be8e20606c16a51f752c818", "fields": {"nom_de_la_commune": "BATTENHEIM", "libell_d_acheminement": "BATTENHEIM", "code_postal": "68390", "coordonnees_gps": [47.7997453022, 7.41007777982], "code_commune_insee": "68022"}, "geometry": {"type": "Point", "coordinates": [7.41007777982, 47.7997453022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110a05b9a4fb52dd6d60edd94676a05251a009df", "fields": {"code_postal": "68126", "code_commune_insee": "68026", "libell_d_acheminement": "BENNWIHR MITTELWIHR", "ligne_5": "BENNWIHR GARE", "nom_de_la_commune": "BENNWIHR", "coordonnees_gps": [48.1390641361, 7.34074664228]}, "geometry": {"type": "Point", "coordinates": [7.34074664228, 48.1390641361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4b665978dfff5201fbc0f0f873c15ebe1184eb", "fields": {"nom_de_la_commune": "BETTLACH", "libell_d_acheminement": "BETTLACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68034"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f12064e5435f457b59a1abbb595a8eafa98bb1d", "fields": {"nom_de_la_commune": "BOURBACH LE HAUT", "libell_d_acheminement": "BOURBACH LE HAUT", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68046"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dadadbd54a3da81d2de701bbcf4168f3cc165a", "fields": {"nom_de_la_commune": "BRUNSTATT DIDENHEIM", "libell_d_acheminement": "BRUNSTATT DIDENHEIM", "code_postal": "68350", "coordonnees_gps": [47.7154887071, 7.32709033441], "code_commune_insee": "68056"}, "geometry": {"type": "Point", "coordinates": [7.32709033441, 47.7154887071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6de5efd9c4b366a27925c1afa75641756b0a7a", "fields": {"nom_de_la_commune": "DIETWILLER", "libell_d_acheminement": "DIETWILLER", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68072"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5f11292c110f2becdc7515184254b90e22a56d", "fields": {"nom_de_la_commune": "DOLLEREN", "libell_d_acheminement": "DOLLEREN", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68073"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea79fb22426b0b6f0f396f88959bfe8a857401b", "fields": {"nom_de_la_commune": "EGLINGEN", "libell_d_acheminement": "EGLINGEN", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68077"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "563f76f915101d1bc65dca53eab41daf8bfae9f8", "fields": {"nom_de_la_commune": "ESCHBACH AU VAL", "libell_d_acheminement": "ESCHBACH AU VAL", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68083"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92bb3936d9a298ded64ff52f5efa1201f523c0b", "fields": {"nom_de_la_commune": "FELDBACH", "libell_d_acheminement": "FELDBACH", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68087"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1942282a88c90ffd0541ddac90c4e71ca3034d5d", "fields": {"nom_de_la_commune": "FELLERING", "libell_d_acheminement": "FELLERING", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68089"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f09c57d4ccb5508ba2e652944133292a665f4b", "fields": {"nom_de_la_commune": "FRIESEN", "libell_d_acheminement": "FRIESEN", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68098"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df6d2d9562a5fc4c53c9a62d254d4cd241f75479", "fields": {"nom_de_la_commune": "FULLEREN", "libell_d_acheminement": "FULLEREN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68100"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926c33f24a5e0e85604670793f7080605546e825", "fields": {"nom_de_la_commune": "GILDWILLER", "libell_d_acheminement": "GILDWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68105"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb8af513139c3316d43f4d1fd0aa5bec1db795e2", "fields": {"nom_de_la_commune": "GUEBERSCHWIHR", "libell_d_acheminement": "GUEBERSCHWIHR", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68111"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886a1230613df726823c60d910a6022fe893e592", "fields": {"nom_de_la_commune": "GUEWENHEIM", "libell_d_acheminement": "GUEWENHEIM", "code_postal": "68116", "coordonnees_gps": [47.7496633187, 7.09103107073], "code_commune_insee": "68115"}, "geometry": {"type": "Point", "coordinates": [7.09103107073, 47.7496633187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a389933d958edddd92a96c4d07676cdac630589e", "fields": {"nom_de_la_commune": "GUNSBACH", "libell_d_acheminement": "GUNSBACH", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68117"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b66c8b71600db81c7e686ff9905caf08d14fcba", "fields": {"nom_de_la_commune": "HAGENTHAL LE BAS", "libell_d_acheminement": "HAGENTHAL LE BAS", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68120"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97db0fe595ab3d1bd2e0c61677700c8c8ae68edc", "fields": {"nom_de_la_commune": "HARTMANNSWILLER", "libell_d_acheminement": "HARTMANNSWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68122"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd61b035157081b465accb4c4671cbff315f61fb", "fields": {"nom_de_la_commune": "HEIMERSDORF", "libell_d_acheminement": "HEIMERSDORF", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68128"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec7748273e1eac93e6a23c4d2d506f4c8719314", "fields": {"nom_de_la_commune": "HETTENSCHLAG", "libell_d_acheminement": "HETTENSCHLAG", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68136"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00235acad284cb13331d8f359c6b670a02e8bf07", "fields": {"nom_de_la_commune": "HUSSEREN LES CHATEAUX", "libell_d_acheminement": "HUSSEREN LES CHATEAUX", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68150"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d187e7e7fff9e33b34a3452a5d8c52b70b2c1fda", "fields": {"nom_de_la_commune": "ILLFURTH", "libell_d_acheminement": "ILLFURTH", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68152"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc1570809c3a39dcda150b0a66c345fe05aad0a", "fields": {"nom_de_la_commune": "ILLZACH", "libell_d_acheminement": "ILLZACH", "code_postal": "68110", "coordonnees_gps": [47.773734571, 7.35942151957], "code_commune_insee": "68154"}, "geometry": {"type": "Point", "coordinates": [7.35942151957, 47.773734571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe87582d9cca09ff24f3382f8da674203725489b", "fields": {"code_postal": "68110", "code_commune_insee": "68154", "libell_d_acheminement": "ILLZACH", "ligne_5": "MODENHEIM", "nom_de_la_commune": "ILLZACH", "coordonnees_gps": [47.773734571, 7.35942151957]}, "geometry": {"type": "Point", "coordinates": [7.35942151957, 47.773734571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5f10056e8491596bf35ccf0e39e14929604e4d", "fields": {"nom_de_la_commune": "JETTINGEN", "libell_d_acheminement": "JETTINGEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68158"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "758a8e526bc099ca3b944ddd7dbc2bac1d05aead", "fields": {"nom_de_la_commune": "KATZENTHAL", "libell_d_acheminement": "KATZENTHAL", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68161"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d09e1a2085a55714c116efe50e7c4c60a75ecf0", "fields": {"code_postal": "68240", "code_commune_insee": "68162", "libell_d_acheminement": "KAYSERSBERG VIGNOBLE", "ligne_5": "KIENTZHEIM", "nom_de_la_commune": "KAYSERSBERG VIGNOBLE", "coordonnees_gps": [48.1678355817, 7.21603176483]}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea028544ae1104db83e9a4e09c1d5cbfc33ae56", "fields": {"nom_de_la_commune": "KEMBS", "libell_d_acheminement": "KEMBS", "code_postal": "68680", "coordonnees_gps": [47.692052435, 7.4996914336], "code_commune_insee": "68163"}, "geometry": {"type": "Point", "coordinates": [7.4996914336, 47.692052435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a031975023b70675f0c0b5867b9e7eb353a44d", "fields": {"nom_de_la_commune": "KINGERSHEIM", "libell_d_acheminement": "KINGERSHEIM", "code_postal": "68260", "coordonnees_gps": [47.7894503648, 7.32186890284], "code_commune_insee": "68166"}, "geometry": {"type": "Point", "coordinates": [7.32186890284, 47.7894503648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb2c9d36c9b9b965d3efe4423fe3a6bfa245ad8", "fields": {"nom_de_la_commune": "LAPOUTROIE", "libell_d_acheminement": "LAPOUTROIE", "code_postal": "68650", "coordonnees_gps": [48.1617407345, 7.12836272368], "code_commune_insee": "68175"}, "geometry": {"type": "Point", "coordinates": [7.12836272368, 48.1617407345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a208696124d5c42a391135764f492f16f1fb60", "fields": {"nom_de_la_commune": "LAUTENBACH", "libell_d_acheminement": "LAUTENBACH", "code_postal": "68610", "coordonnees_gps": [47.9413913563, 7.11100776725], "code_commune_insee": "68177"}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994c7c1a9038752458bb2794b7e2eeccf5e735aa", "fields": {"code_postal": "68610", "code_commune_insee": "68177", "libell_d_acheminement": "LAUTENBACH", "ligne_5": "SCHWEIGHOUSE", "nom_de_la_commune": "LAUTENBACH", "coordonnees_gps": [47.9413913563, 7.11100776725]}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc93e25cb0df5e7f1dd07ba669e8d00251cda62", "fields": {"nom_de_la_commune": "LUEMSCHWILLER", "libell_d_acheminement": "LUEMSCHWILLER", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68191"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed46050fa1ca66634871552e71c5d2969c2d2e6", "fields": {"nom_de_la_commune": "LUTTERBACH", "libell_d_acheminement": "LUTTERBACH", "code_postal": "68460", "coordonnees_gps": [47.7609352358, 7.27225594013], "code_commune_insee": "68195"}, "geometry": {"type": "Point", "coordinates": [7.27225594013, 47.7609352358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a241232f3e5c1242ebc8c233af01ab48f6e5c8", "fields": {"nom_de_la_commune": "MERTZEN", "libell_d_acheminement": "MERTZEN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68202"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de71e221c7a27824246fba2ce26033b9a677ac5d", "fields": {"nom_de_la_commune": "MERXHEIM", "libell_d_acheminement": "MERXHEIM", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68203"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67eb1526f3efdb76865b25336241b1b7db76b44", "fields": {"nom_de_la_commune": "MICHELBACH LE BAS", "libell_d_acheminement": "MICHELBACH LE BAS", "code_postal": "68730", "coordonnees_gps": [47.5988584111, 7.47970961294], "code_commune_insee": "68207"}, "geometry": {"type": "Point", "coordinates": [7.47970961294, 47.5988584111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa9eadb57ce6e543d70a355b705de12517513b8", "fields": {"nom_de_la_commune": "MOOSCH", "libell_d_acheminement": "MOOSCH", "code_postal": "68690", "coordonnees_gps": [47.8604403288, 7.04290512633], "code_commune_insee": "68217"}, "geometry": {"type": "Point", "coordinates": [7.04290512633, 47.8604403288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5facb1cbb3c400824db28fba6c8df6bc1c29bc04", "fields": {"code_postal": "68780", "code_commune_insee": "68219", "libell_d_acheminement": "LE HAUT SOULTZBACH", "ligne_5": "MORTZWILLER", "nom_de_la_commune": "LE HAUT SOULTZBACH", "coordonnees_gps": [47.7234740275, 7.06962991753]}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8392a02797d5618eb9975e487cbb5633d214283", "fields": {"nom_de_la_commune": "MUESPACH LE HAUT", "libell_d_acheminement": "MUESPACH LE HAUT", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68222"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8463a4a5cecc71542f404b2ef2e1fde97bc0636", "fields": {"code_postal": "68200", "code_commune_insee": "68224", "libell_d_acheminement": "MULHOUSE", "ligne_5": "BOURTZWILLER", "nom_de_la_commune": "MULHOUSE", "coordonnees_gps": [47.7494423807, 7.32540160105]}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9855bb8d2b0930a86177f4eba460b311cf470b2b", "fields": {"nom_de_la_commune": "MUNSTER", "libell_d_acheminement": "MUNSTER", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68226"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8179e131d4dd06ff694ad0fe1bfb861d0e4237d9", "fields": {"nom_de_la_commune": "ST JEAN PIERRE FIXTE", "libell_d_acheminement": "ST JEAN PIERRE FIXTE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28342"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ee01840f30d6dfb190e5212bc2590ccbf545f", "fields": {"nom_de_la_commune": "ST LAURENT LA GATINE", "libell_d_acheminement": "ST LAURENT LA GATINE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28343"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79d38f119566981affba8aeecbf11c9c24c7fad", "fields": {"nom_de_la_commune": "ST LEGER DES AUBEES", "libell_d_acheminement": "ST LEGER DES AUBEES", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28344"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf0889e6e05cbb2bd2749a3f43ff260c064c2a1", "fields": {"nom_de_la_commune": "ST LUCIEN", "libell_d_acheminement": "ST LUCIEN", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28349"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f1db218e7994bd562b15e6db5de2bab2d86c94", "fields": {"nom_de_la_commune": "ST LUPERCE", "libell_d_acheminement": "ST LUPERCE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28350"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f84a246def7850c3a7415522a9432305bb6f913", "fields": {"nom_de_la_commune": "ST PELLERIN", "libell_d_acheminement": "ST PELLERIN", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28356"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c6bf746eaf5915896d4df826b5c2eedd7161692", "fields": {"nom_de_la_commune": "ST REMY SUR AVRE", "libell_d_acheminement": "ST REMY SUR AVRE", "code_postal": "28380", "coordonnees_gps": [48.7492338701, 1.23741165273], "code_commune_insee": "28359"}, "geometry": {"type": "Point", "coordinates": [1.23741165273, 48.7492338701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b7cc29c112ef9056a1a75788fe60ca7afed267", "fields": {"nom_de_la_commune": "ST SAUVEUR MARVILLE", "libell_d_acheminement": "ST SAUVEUR MARVILLE", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28360"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c738814ce0a235382245c84f304cbf4472f3975", "fields": {"nom_de_la_commune": "SANTEUIL", "libell_d_acheminement": "SANTEUIL", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28366"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676b4dbf774b08f71159741ec35fbc357fae8079", "fields": {"nom_de_la_commune": "SAUMERAY", "libell_d_acheminement": "SAUMERAY", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28370"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcff4e9bd54a5772153430761be93b9eff1f2ea0", "fields": {"code_postal": "28250", "code_commune_insee": "28373", "libell_d_acheminement": "SENONCHES", "ligne_5": "LA VILLE AUX NONAINS", "nom_de_la_commune": "SENONCHES", "coordonnees_gps": [48.5729617229, 1.05761026517]}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d963642005faba842e650c254e6e1b377605de", "fields": {"code_postal": "28250", "code_commune_insee": "28373", "libell_d_acheminement": "SENONCHES", "ligne_5": "TARDAIS", "nom_de_la_commune": "SENONCHES", "coordonnees_gps": [48.5729617229, 1.05761026517]}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a037c709e59f6cef1ee6dce63c9ec0a50e6268c", "fields": {"nom_de_la_commune": "SERVILLE", "libell_d_acheminement": "SERVILLE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28375"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f3dd30186a7e9159dd33e428afa9f3a2e8c274", "fields": {"nom_de_la_commune": "SOIZE", "libell_d_acheminement": "SOIZE", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28376"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684b80e5027f70e970dd1ea0081568e8dc2057fa", "fields": {"nom_de_la_commune": "TREMBLAY LES VILLAGES", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28393"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96f13709226ccdb50ffe3969a2e16d2f36ff2d6", "fields": {"nom_de_la_commune": "TRIZAY COUTRETOT ST SERGE", "libell_d_acheminement": "TRIZAY COUTRETOT ST SERGE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28395"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b923460d91fc7108e5d766d92459e68948f80e6f", "fields": {"code_postal": "28140", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "GERMIGNONVILLE", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.126624104, 1.68210405162]}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd017dd8a82ef081f1184cc118b88c850b172c59", "fields": {"code_postal": "28150", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "BAIGNOLET", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7435e1205db201f9f3dbc648d276096c3913634b", "fields": {"code_postal": "28150", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "FAINS LA FOLIE", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bc2e4eafd7a22bb25531689777d46647e4c1295", "fields": {"nom_de_la_commune": "VIERVILLE", "libell_d_acheminement": "VIERVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28408"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e40e1e3007aa8b7185b33879178bf7e760d878", "fields": {"nom_de_la_commune": "VIEUVICQ", "libell_d_acheminement": "VIEUVICQ", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28409"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d7cec5836eefc2218cd527eee818cb2f40ba30", "fields": {"nom_de_la_commune": "VILLAMPUY", "libell_d_acheminement": "VILLAMPUY", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28410"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55851f8cd5087c2f615d2308072bdf96bde0848", "fields": {"nom_de_la_commune": "VILLEAU", "libell_d_acheminement": "VILLEAU", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28412"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b573e6cebdfeaafc596c9e23e8dd6b7ee76f2d", "fields": {"nom_de_la_commune": "VILLIERS LE MORHIER", "libell_d_acheminement": "VILLIERS LE MORHIER", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28417"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb41d813a5c170eaf94e2ec75c00e3da9473d22", "fields": {"nom_de_la_commune": "VOISE", "libell_d_acheminement": "VOISE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28421"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa56af34458733cd113e7ea9fe29a27cf7e3f6a", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "MONTAINVILLE", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e312a9d1d1a11a17db5ffa8af53525aff104466", "fields": {"nom_de_la_commune": "ARGOL", "libell_d_acheminement": "ARGOL", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29001"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371771786ed606afa9ce67ffd1d1424896ee0060", "fields": {"nom_de_la_commune": "BENODET", "libell_d_acheminement": "BENODET", "code_postal": "29950", "coordonnees_gps": [47.9011430985, -4.09292071146], "code_commune_insee": "29006"}, "geometry": {"type": "Point", "coordinates": [-4.09292071146, 47.9011430985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3ad817c17a9a0b8e9ad154c1852407fba77dfe", "fields": {"nom_de_la_commune": "BOURG BLANC", "libell_d_acheminement": "BOURG BLANC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29015"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d3a1af3d867ffe2f0682fd6cdac373cd19efa6", "fields": {"nom_de_la_commune": "BRIGNOGAN PLAGE", "libell_d_acheminement": "BRIGNOGAN PLAGE", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29021"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5266fc0b2be4a0ca9ed797742e990a555cd57c", "fields": {"nom_de_la_commune": "CARANTEC", "libell_d_acheminement": "CARANTEC", "code_postal": "29660", "coordonnees_gps": [48.6546757356, -3.91403159766], "code_commune_insee": "29023"}, "geometry": {"type": "Point", "coordinates": [-3.91403159766, 48.6546757356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c60c245da2a714a9d5c5013c519c1651b73749", "fields": {"nom_de_la_commune": "CLOHARS FOUESNANT", "libell_d_acheminement": "CLOHARS FOUESNANT", "code_postal": "29950", "coordonnees_gps": [47.9011430985, -4.09292071146], "code_commune_insee": "29032"}, "geometry": {"type": "Point", "coordinates": [-4.09292071146, 47.9011430985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2575d89cfd5002d67e193ac3611d986aef6d09ff", "fields": {"nom_de_la_commune": "COMBRIT", "libell_d_acheminement": "COMBRIT", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29037"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b19f8f754e655a738f67fc0d36ea98fef5954a9", "fields": {"nom_de_la_commune": "DAOULAS", "libell_d_acheminement": "DAOULAS", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29043"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d165f9391a12e4e2e44d9b57ed7d5b873ddd52bc", "fields": {"nom_de_la_commune": "LE DRENNEC", "libell_d_acheminement": "LE DRENNEC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29047"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b77be77fa97b2a6c015da904383f2a64da807f", "fields": {"nom_de_la_commune": "ERGUE GABERIC", "libell_d_acheminement": "ERGUE GABERIC", "code_postal": "29500", "coordonnees_gps": [48.0121324679, -4.00796418885], "code_commune_insee": "29051"}, "geometry": {"type": "Point", "coordinates": [-4.00796418885, 48.0121324679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b86045eb1541b6ab707c6ba51a8b76e08a3abf3", "fields": {"nom_de_la_commune": "LA FORET FOUESNANT", "libell_d_acheminement": "LA FORET FOUESNANT", "code_postal": "29940", "coordonnees_gps": [47.9209192878, -3.96779654051], "code_commune_insee": "29057"}, "geometry": {"type": "Point", "coordinates": [-3.96779654051, 47.9209192878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d2ac219e4f48157cc9a7d75cb4896ff9574fb2", "fields": {"nom_de_la_commune": "GOULVEN", "libell_d_acheminement": "GOULVEN", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29064"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f88e4ab8a03a1bacb228891a93a6f247cfdf83", "fields": {"nom_de_la_commune": "GUENGAT", "libell_d_acheminement": "GUENGAT", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29066"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54e298e32588424830a786d1cb5b77dd951cd7e", "fields": {"nom_de_la_commune": "GUICLAN", "libell_d_acheminement": "GUICLAN", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29068"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed41dd1952860f88ab230ec031df1c1b3702eb65", "fields": {"nom_de_la_commune": "GUILLIGOMARC H", "libell_d_acheminement": "GUILLIGOMARC H", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29071"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8fde5033274537c0f4a84020c539cbae01d83e", "fields": {"nom_de_la_commune": "GUIPAVAS", "libell_d_acheminement": "GUIPAVAS", "code_postal": "29490", "coordonnees_gps": [48.4303731707, -4.39660494341], "code_commune_insee": "29075"}, "geometry": {"type": "Point", "coordinates": [-4.39660494341, 48.4303731707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8785925f28e126ebb20982f56a0de90449d2a19", "fields": {"nom_de_la_commune": "HOPITAL CAMFROUT", "libell_d_acheminement": "L HOPITAL CAMFROUT", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29080"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993ecd6349091729c3ffc48a495802714cb6a2e7", "fields": {"nom_de_la_commune": "ILE MOLENE", "libell_d_acheminement": "ILE MOLENE", "code_postal": "29259", "coordonnees_gps": [48.3953471284, -4.96008472882], "code_commune_insee": "29084"}, "geometry": {"type": "Point", "coordinates": [-4.96008472882, 48.3953471284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3c48382791646e0b8748432a2fbd3a4cd63bef", "fields": {"nom_de_la_commune": "KERNILIS", "libell_d_acheminement": "KERNILIS", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29093"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f2cc0e6573abcc67a67fcf91b7281fe208653c", "fields": {"nom_de_la_commune": "LANDEDA", "libell_d_acheminement": "LANDEDA", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29101"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed415928cd62d9c9be372c698f7f8309f86f712", "fields": {"nom_de_la_commune": "LANDUDEC", "libell_d_acheminement": "LANDUDEC", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29108"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49f4d3b00419c3f57f60a81becd63c4cbe90afc", "fields": {"nom_de_la_commune": "LANILDUT", "libell_d_acheminement": "LANILDUT", "code_postal": "29840", "coordonnees_gps": [48.5120330691, -4.73920454797], "code_commune_insee": "29112"}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f026c2b9e5770d7d49845b2b4d2da3bf9ff099", "fields": {"nom_de_la_commune": "LANNEUFFRET", "libell_d_acheminement": "LANNEUFFRET", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29116"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7418cf5e270666ddfca61493b6e01fc64a94e46", "fields": {"nom_de_la_commune": "LANVEOC", "libell_d_acheminement": "LANVEOC", "code_postal": "29160", "coordonnees_gps": [48.2509456374, -4.48250403015], "code_commune_insee": "29120"}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5883849217193e7dbb095a19b6b0634c7fc23fc4", "fields": {"nom_de_la_commune": "LOC BREVALAIRE", "libell_d_acheminement": "LOC BREVALAIRE", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29126"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747a46b3ae5507a5f051bf55fdf34dde3a6a00df", "fields": {"nom_de_la_commune": "LOCMARIA BERRIEN", "libell_d_acheminement": "LOCMARIA BERRIEN", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29129"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53844a75afffff5978d669b34c6450388089f443", "fields": {"nom_de_la_commune": "CONFORT MEILARS", "libell_d_acheminement": "CONFORT MEILARS", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29145"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "640cda0ec5061c832fcb9e9124aebbdbabb86b4d", "fields": {"nom_de_la_commune": "MELGVEN", "libell_d_acheminement": "MELGVEN", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29146"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d90b24f1aaed93fa129c3a60be6857d7c9be96", "fields": {"nom_de_la_commune": "PENCRAN", "libell_d_acheminement": "PENCRAN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29156"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cabf6429f80bc4203a3a1bd5a1254dd561412d6", "fields": {"nom_de_la_commune": "PLEYBER CHRIST", "libell_d_acheminement": "PLEYBER CHRIST", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29163"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5ccbbff9974508386bd72ec885e633d2dc6804", "fields": {"nom_de_la_commune": "PLOGONNEC", "libell_d_acheminement": "PLOGONNEC", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29169"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219c6f942443afa4d8b3246c8d1af659d75cb010", "fields": {"nom_de_la_commune": "PLONEIS", "libell_d_acheminement": "PLONEIS", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29173"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5284933c6957e3421fe4f7221dc9ec64e61fad9a", "fields": {"nom_de_la_commune": "PLOUDALMEZEAU", "libell_d_acheminement": "PLOUDALMEZEAU", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29178"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf623d7fe6e0cfba9cfef581c74f51385ce5343", "fields": {"code_postal": "29830", "code_commune_insee": "29178", "libell_d_acheminement": "PLOUDALMEZEAU", "ligne_5": "PORTSALL", "nom_de_la_commune": "PLOUDALMEZEAU", "coordonnees_gps": [48.5288495464, -4.64332809681]}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b38748eb80c48e8680f2ac56f30987e759be00", "fields": {"nom_de_la_commune": "PLOUGASTEL DAOULAS", "libell_d_acheminement": "PLOUGASTEL DAOULAS", "code_postal": "29470", "coordonnees_gps": [48.3674331518, -4.36175367065], "code_commune_insee": "29189"}, "geometry": {"type": "Point", "coordinates": [-4.36175367065, 48.3674331518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a2b72b85fb87f072990a449570862d6137f568", "fields": {"nom_de_la_commune": "PLOUGOURVEST", "libell_d_acheminement": "PLOUGOURVEST", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29193"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9fcd2f00dda367e64165649ac8955895fc86da", "fields": {"nom_de_la_commune": "PLOUGUERNEAU", "libell_d_acheminement": "PLOUGUERNEAU", "code_postal": "29880", "coordonnees_gps": [48.6082093608, -4.46096917427], "code_commune_insee": "29195"}, "geometry": {"type": "Point", "coordinates": [-4.46096917427, 48.6082093608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1bd058ad538590654b14c9a6481b5f681f0d0ce", "fields": {"nom_de_la_commune": "PLOUIGNEAU", "libell_d_acheminement": "PLOUIGNEAU", "code_postal": "29610", "coordonnees_gps": [48.5789578669, -3.7146289967], "code_commune_insee": "29199"}, "geometry": {"type": "Point", "coordinates": [-3.7146289967, 48.5789578669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "939557740e19765d30cb8ba294e8a030e5e63674", "fields": {"nom_de_la_commune": "PLOUNEOUR TREZ", "libell_d_acheminement": "PLOUNEOUR TREZ", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29203"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0497aa0f74718581bebc8e463d7f00e9bf3e8fc", "fields": {"nom_de_la_commune": "PLOUVIEN", "libell_d_acheminement": "PLOUVIEN", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29209"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62c04ba31e0fb8f7677f14c072664f10db93c57", "fields": {"nom_de_la_commune": "PLOVAN", "libell_d_acheminement": "PLOVAN", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29214"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4106cdd04b7a37fefa29a2b585b91955abaf576", "fields": {"nom_de_la_commune": "PLUGUFFAN", "libell_d_acheminement": "PLUGUFFAN", "code_postal": "29700", "coordonnees_gps": [47.9557228551, -4.17033368764], "code_commune_insee": "29216"}, "geometry": {"type": "Point", "coordinates": [-4.17033368764, 47.9557228551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77e042c8e9979ac5fe00dfc466ceee43d760d895", "fields": {"nom_de_la_commune": "LE PONTHOU", "libell_d_acheminement": "LE PONTHOU", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29219"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "611832ae513fc474cea7e47a102f92fa27b3d4cc", "fields": {"nom_de_la_commune": "PORT LAUNAY", "libell_d_acheminement": "PORT LAUNAY", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29222"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26fa2a6f43e5e123bc3a4d2b959d0d8cbf8ac0ae", "fields": {"nom_de_la_commune": "POULDREUZIC", "libell_d_acheminement": "POULDREUZIC", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29225"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dcee43ec932f5ac7cd6cf5ee67d1c5080ac3b8", "fields": {"nom_de_la_commune": "QUEMENEVEN", "libell_d_acheminement": "QUEMENEVEN", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29229"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4c772f92cd841b8af84af34acaac617e4d1e85", "fields": {"nom_de_la_commune": "ROSPORDEN", "libell_d_acheminement": "ROSPORDEN", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29241"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a7c4273a72d5322f9245b5dafe03747ac52acd", "fields": {"code_postal": "29140", "code_commune_insee": "29241", "libell_d_acheminement": "ROSPORDEN", "ligne_5": "KERNEVEL", "nom_de_la_commune": "ROSPORDEN", "coordonnees_gps": [47.9522669314, -3.84121638089]}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f999deea8837a80b5ce3574233b8aea9bc4189", "fields": {"nom_de_la_commune": "ST COULITZ", "libell_d_acheminement": "ST COULITZ", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29243"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76010a7120be600e07778f136b10aeeada5f91ee", "fields": {"nom_de_la_commune": "ST EVARZEC", "libell_d_acheminement": "ST EVARZEC", "code_postal": "29170", "coordonnees_gps": [47.912618887, -4.02039306441], "code_commune_insee": "29247"}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d463dbb922d6c50f477f24e02b5aeab26ac1e39", "fields": {"nom_de_la_commune": "ST HERNIN", "libell_d_acheminement": "ST HERNIN", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29250"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0997decdce37b4033200386c7df40519f6be1cc", "fields": {"nom_de_la_commune": "ST JEAN DU DOIGT", "libell_d_acheminement": "ST JEAN DU DOIGT", "code_postal": "29630", "coordonnees_gps": [48.6746083543, -3.7940474751], "code_commune_insee": "29251"}, "geometry": {"type": "Point", "coordinates": [-3.7940474751, 48.6746083543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96eb34beacf0012a1cda63f7dcc587802afd0ff4", "fields": {"nom_de_la_commune": "ST MEEN", "libell_d_acheminement": "ST MEEN", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29255"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f8b947f97a4de9e6e8ff54ee6986f2b20d95bf", "fields": {"nom_de_la_commune": "ST NIC", "libell_d_acheminement": "ST NIC", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29256"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643d9d32ad362ef2a73ce361cdc1fb0542a7dac9", "fields": {"nom_de_la_commune": "ST RIVOAL", "libell_d_acheminement": "ST RIVOAL", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29261"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc31a097a4fe550ec014ba075b035e163636fa99", "fields": {"nom_de_la_commune": "SIZUN", "libell_d_acheminement": "SIZUN", "code_postal": "29450", "coordonnees_gps": [48.3997146924, -4.03661538866], "code_commune_insee": "29277"}, "geometry": {"type": "Point", "coordinates": [-4.03661538866, 48.3997146924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff72ad03980d7bdd47853913e37aebac98b944d", "fields": {"nom_de_la_commune": "TREFFIAGAT", "libell_d_acheminement": "TREFFIAGAT", "code_postal": "29730", "coordonnees_gps": [47.80414483, -4.26610695], "code_commune_insee": "29284"}, "geometry": {"type": "Point", "coordinates": [-4.26610695, 47.80414483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f20eff56646408c8b985e92de0d0d112097137ba", "fields": {"nom_de_la_commune": "TREFLAOUENAN", "libell_d_acheminement": "TREFLAOUENAN", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29285"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62703e776d56da90c74fce45ee43ba9748d6b469", "fields": {"nom_de_la_commune": "TREFLEZ", "libell_d_acheminement": "TREFLEZ", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29287"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7805abe721ad14fea267f42c250eb293867474df", "fields": {"nom_de_la_commune": "TREGOUREZ", "libell_d_acheminement": "TREGOUREZ", "code_postal": "29970", "coordonnees_gps": [48.1055063701, -3.87100493419], "code_commune_insee": "29291"}, "geometry": {"type": "Point", "coordinates": [-3.87100493419, 48.1055063701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35b7c0e23f9e75afd9cbe21e638b7fda68bdd503", "fields": {"nom_de_la_commune": "TREGUENNEC", "libell_d_acheminement": "TREGUENNEC", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29292"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3744e0332c913af50d9bc6ab7a906f92d6a2fca4", "fields": {"nom_de_la_commune": "TREMAOUEZAN", "libell_d_acheminement": "TREMAOUEZAN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29295"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f5dfdf470ffdf38bccfa145829819b30ff9ec8", "fields": {"nom_de_la_commune": "ALES", "libell_d_acheminement": "ALES", "code_postal": "30100", "coordonnees_gps": [44.1254083661, 4.08875764258], "code_commune_insee": "30007"}, "geometry": {"type": "Point", "coordinates": [4.08875764258, 44.1254083661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a1990775e5f684fa448e2f6f61e1261553a550", "fields": {"nom_de_la_commune": "ANDUZE", "libell_d_acheminement": "ANDUZE", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30010"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1482d4c9af84c2bc11fa0d279f9bc59989e5a57", "fields": {"nom_de_la_commune": "ARGILLIERS", "libell_d_acheminement": "ARGILLIERS", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30013"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ea32f1c33cfbd78ffb3f805a1b1820bb3c7bc0", "fields": {"nom_de_la_commune": "ARPHY", "libell_d_acheminement": "ARPHY", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30015"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5b59e23110cee960bc50717d7b36df716d9e28", "fields": {"nom_de_la_commune": "AUBORD", "libell_d_acheminement": "AUBORD", "code_postal": "30620", "coordonnees_gps": [43.7617443706, 4.28868094098], "code_commune_insee": "30020"}, "geometry": {"type": "Point", "coordinates": [4.28868094098, 43.7617443706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb44802b211769be80a324908e33c87d18197ff", "fields": {"nom_de_la_commune": "AUJAC", "libell_d_acheminement": "AUJAC", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30022"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1cf15df015b590ed142ed241b00a568480a42a", "fields": {"nom_de_la_commune": "AUMESSAS", "libell_d_acheminement": "AUMESSAS", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30025"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "398888e24a8c4c3a2750ef3963ee6d8d2c75ba43", "fields": {"nom_de_la_commune": "AVEZE", "libell_d_acheminement": "AVEZE", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30026"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955bf3043cb7405971e9284e712b91d5315bdb92", "fields": {"nom_de_la_commune": "BAGARD", "libell_d_acheminement": "BAGARD", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30027"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05bdd41b7b79c1e7edc6d00d52cb59490849514", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30030"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d3d7057967fa4ce4eab449e6c525f87476f96d", "fields": {"nom_de_la_commune": "BEAUCAIRE", "libell_d_acheminement": "BEAUCAIRE", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30032"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7694cced4389ecdd3cc1194157997b5fa84c06e8", "fields": {"nom_de_la_commune": "BEAUVOISIN", "libell_d_acheminement": "BEAUVOISIN", "code_postal": "30640", "coordonnees_gps": [43.6958928961, 4.32221754971], "code_commune_insee": "30033"}, "geometry": {"type": "Point", "coordinates": [4.32221754971, 43.6958928961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7d3522864369e59a0ce51313efd7396d0c8aca", "fields": {"nom_de_la_commune": "ECHIROLLES", "libell_d_acheminement": "ECHIROLLES", "code_postal": "38130", "coordonnees_gps": [45.1470306485, 5.71547524245], "code_commune_insee": "38151"}, "geometry": {"type": "Point", "coordinates": [5.71547524245, 45.1470306485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "098670ced621c49dba1584e7011b626a7aa6ac71", "fields": {"nom_de_la_commune": "ENTRAIGUES", "libell_d_acheminement": "ENTRAIGUES", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38154"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa565ec3160496688d7b2c63d33ab126a1f87f96", "fields": {"nom_de_la_commune": "LA GARDE", "libell_d_acheminement": "LA GARDE", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38177"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064851771c3ba8d6f8e5812d556ac57f6f5d758c", "fields": {"nom_de_la_commune": "GILLONNAY", "libell_d_acheminement": "GILLONNAY", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38180"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b47acc7fcb11b85d85dcb0372859ccb82f6eaf6", "fields": {"nom_de_la_commune": "LE GRAND LEMPS", "libell_d_acheminement": "LE GRAND LEMPS", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38182"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ef8772a8e401625bd9542af04099340b32ebb2", "fields": {"nom_de_la_commune": "GRENOBLE", "libell_d_acheminement": "GRENOBLE", "code_postal": "38000", "coordonnees_gps": [45.182155682, 5.72079920349], "code_commune_insee": "38185"}, "geometry": {"type": "Point", "coordinates": [5.72079920349, 45.182155682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5942b766faaca2646824958afc6d0b1275b5cbcf", "fields": {"nom_de_la_commune": "HURTIERES", "libell_d_acheminement": "HURTIERES", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38192"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c32be04a827f1e2e455071130060513a0c137f62", "fields": {"nom_de_la_commune": "JARCIEU", "libell_d_acheminement": "JARCIEU", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38198"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4f1b7dfd62af689d6c40eec548522581f3b5be", "fields": {"nom_de_la_commune": "JARDIN", "libell_d_acheminement": "JARDIN", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38199"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a83d61903ac67a08060203ae0bd008845e3d46", "fields": {"nom_de_la_commune": "JARRIE", "libell_d_acheminement": "JARRIE", "code_postal": "38560", "coordonnees_gps": [45.0939836913, 5.7392474721], "code_commune_insee": "38200"}, "geometry": {"type": "Point", "coordinates": [5.7392474721, 45.0939836913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e35af56d20e22411ae08f2a85c40d3903cbc7e", "fields": {"nom_de_la_commune": "LEYRIEU", "libell_d_acheminement": "LEYRIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38210"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60d985721d8c1969e9e6f19604283281d2f99a5", "fields": {"code_postal": "38220", "code_commune_insee": "38212", "libell_d_acheminement": "LIVET ET GAVET", "ligne_5": "LIVET", "nom_de_la_commune": "LIVET ET GAVET", "coordonnees_gps": [45.0661676194, 5.84675560183]}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91906fefea1ab4fd298e082fc185013e20b7ac31", "fields": {"nom_de_la_commune": "MARCOLLIN", "libell_d_acheminement": "MARCOLLIN", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38219"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d467a4363f726adfe613c699b1fb1c64ab388511", "fields": {"nom_de_la_commune": "MARNANS", "libell_d_acheminement": "MARNANS", "code_postal": "38980", "coordonnees_gps": [45.3053476338, 5.21305858038], "code_commune_insee": "38221"}, "geometry": {"type": "Point", "coordinates": [5.21305858038, 45.3053476338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ce0a232047c4a41d56c887967770805e0dcdeb", "fields": {"nom_de_la_commune": "MAUBEC", "libell_d_acheminement": "MAUBEC", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38223"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb5113fe371c877a3c9fc2cb94e2b9511c71a3f", "fields": {"nom_de_la_commune": "MAYRES SAVEL", "libell_d_acheminement": "MAYRES SAVEL", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38224"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c65371fd7f2e0f056d9ff017594a6c9ca99fb45", "fields": {"code_postal": "38880", "code_commune_insee": "38225", "libell_d_acheminement": "AUTRANS MEAUDRE EN VERCORS", "ligne_5": "AUTRANS", "nom_de_la_commune": "AUTRANS MEAUDRE EN VERCORS", "coordonnees_gps": [45.1320619265, 5.52782413596]}, "geometry": {"type": "Point", "coordinates": [5.52782413596, 45.1320619265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4532dc9df70ce93fe3476fd2bee8a9f6e6d2b831", "fields": {"nom_de_la_commune": "MENS", "libell_d_acheminement": "MENS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38226"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e885cca05007373c0677d11b0aa943286390b1", "fields": {"code_postal": "38710", "code_commune_insee": "38226", "libell_d_acheminement": "MENS", "ligne_5": "ST GENIS", "nom_de_la_commune": "MENS", "coordonnees_gps": [44.7990424398, 5.76552735745]}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9140557be5d801516b1d60ac1652a686510a0f", "fields": {"nom_de_la_commune": "MEYRIE", "libell_d_acheminement": "MEYRIE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38230"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf29c4de3b6a340495addb3ab9920310f718e18d", "fields": {"nom_de_la_commune": "MIRIBEL LANCHATRE", "libell_d_acheminement": "MIRIBEL LANCHATRE", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38235"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ccad9628a1a1e2bcfc6813d5e01ae5e4f94103", "fields": {"nom_de_la_commune": "MONTREVEL", "libell_d_acheminement": "MONTREVEL", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38257"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f58944a3b109f89495ff87cbcee413cd82b4bd", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38258"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cabd78f654e30976e23a8b79b2390f3f0025212a", "fields": {"nom_de_la_commune": "MORESTEL", "libell_d_acheminement": "MORESTEL", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38261"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fa37b831a7982514d6d838a691c4e1c0fd8b44", "fields": {"nom_de_la_commune": "LA MOTTE D AVEILLANS", "libell_d_acheminement": "LA MOTTE D AVEILLANS", "code_postal": "38770", "coordonnees_gps": [44.9592629252, 5.7197167385], "code_commune_insee": "38265"}, "geometry": {"type": "Point", "coordinates": [5.7197167385, 44.9592629252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "966eb10c5110d91760aee511f4701a551c24870c", "fields": {"nom_de_la_commune": "MURINAIS", "libell_d_acheminement": "MURINAIS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38272"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e342d193395bb288769ec85e71e21272499e53f4", "fields": {"nom_de_la_commune": "NANTES EN RATIER", "libell_d_acheminement": "NANTES EN RATIER", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38273"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ab4d0a5843021fceb19af12904b511b8d83daa", "fields": {"nom_de_la_commune": "NOTRE DAME DE COMMIERS", "libell_d_acheminement": "NOTRE DAME DE COMMIERS", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38277"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbaf2894a98421b8c7ffff6a0e38cf0c621b3e16", "fields": {"nom_de_la_commune": "NOTRE DAME DE MESAGE", "libell_d_acheminement": "NOTRE DAME DE MESAGE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38279"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bad4847e77638cf9a1d440ceb09c9b05f2eba8e", "fields": {"nom_de_la_commune": "OULLES", "libell_d_acheminement": "OULLES", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38286"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8723667bf3989db795461b6b2b39b3a9baf18da6", "fields": {"nom_de_la_commune": "OYTIER ST OBLAS", "libell_d_acheminement": "OYTIER ST OBLAS", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38288"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83fcf40e61dbd13165a8e4b648d4dfbb8369005c", "fields": {"nom_de_la_commune": "PANOSSAS", "libell_d_acheminement": "PANOSSAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38294"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b606b7a43bedfa22f8c9fd8ef44441a2340e0d5", "fields": {"nom_de_la_commune": "PARMILIEU", "libell_d_acheminement": "PARMILIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38295"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ba106f3fa963f3b09e8a693d4033277d292419", "fields": {"nom_de_la_commune": "PIERRE CHATEL", "libell_d_acheminement": "PIERRE CHATEL", "code_postal": "38119", "coordonnees_gps": [44.9763278291, 5.79332397715], "code_commune_insee": "38304"}, "geometry": {"type": "Point", "coordinates": [5.79332397715, 44.9763278291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f740d4a5bce301c03fe3fa04041b1df87ecb9c6", "fields": {"nom_de_la_commune": "PONTCHARRA", "libell_d_acheminement": "PONTCHARRA", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38314"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb611ef2af0d9d2da6aed9e5cdee9490adbd4b6", "fields": {"nom_de_la_commune": "PORCIEU AMBLAGNIEU", "libell_d_acheminement": "PORCIEU AMBLAGNIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38320"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5146e3a08cae54db754d18643e5db86e03546a52", "fields": {"nom_de_la_commune": "PREBOIS", "libell_d_acheminement": "PREBOIS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38321"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c193f3dc2c6a9130d4eac151b684e1bf13a1cef", "fields": {"nom_de_la_commune": "QUAIX EN CHARTREUSE", "libell_d_acheminement": "QUAIX EN CHARTREUSE", "code_postal": "38950", "coordonnees_gps": [45.2439623267, 5.72553344189], "code_commune_insee": "38328"}, "geometry": {"type": "Point", "coordinates": [5.72553344189, 45.2439623267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8360238d7e75563798fee81cde363a60314a3a55", "fields": {"nom_de_la_commune": "REVEL", "libell_d_acheminement": "REVEL", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38334"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aec25a3b918f0227e11f291c1fe501ada783d68", "fields": {"nom_de_la_commune": "REVEL TOURDAN", "libell_d_acheminement": "REVEL TOURDAN", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38335"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87080efddbe48a3c3b67a021b2d188a95535b606", "fields": {"nom_de_la_commune": "ROCHE", "libell_d_acheminement": "ROCHE", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38339"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb662cfbb46a51bcfa8fb530c42b1711f734dc2", "fields": {"nom_de_la_commune": "ROCHETOIRIN", "libell_d_acheminement": "ROCHETOIRIN", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38341"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2b73e94a4af3ac8dfceca304eaaf80f1221f57", "fields": {"nom_de_la_commune": "ROMAGNIEU", "libell_d_acheminement": "ROMAGNIEU", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38343"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331e6b8b2f3860541e20cfd466bb4ab3fde20c16", "fields": {"nom_de_la_commune": "ROYBON", "libell_d_acheminement": "ROYBON", "code_postal": "38940", "coordonnees_gps": [45.2530241738, 5.22613793096], "code_commune_insee": "38347"}, "geometry": {"type": "Point", "coordinates": [5.22613793096, 45.2530241738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68201ce02c5bf356e095d40ef534af9f143a9a8a", "fields": {"nom_de_la_commune": "STE AGNES", "libell_d_acheminement": "STE AGNES", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38350"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc39725552cbab266c2bad6f2a818cc1075bd66e", "fields": {"nom_de_la_commune": "ST ALBAN DE ROCHE", "libell_d_acheminement": "ST ALBAN DE ROCHE", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38352"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81486b743346b257b4ab52ad3f6cae35b6502b0", "fields": {"nom_de_la_commune": "ST ANDRE LE GAZ", "libell_d_acheminement": "ST ANDRE LE GAZ", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38357"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea47d8a9f148706e7fb16edfa413f39aa3faf6b2", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY DE BEAUREPAIRE", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38363"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf6fcb1c0077744137eceffeee830ec3cf85252d", "fields": {"nom_de_la_commune": "ST BAUDILLE ET PIPET", "libell_d_acheminement": "ST BAUDILLE ET PIPET", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38366"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61b7755606814c56c021957fbc0cf3497744d448", "fields": {"nom_de_la_commune": "ST BLAISE DU BUIS", "libell_d_acheminement": "ST BLAISE DU BUIS", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38368"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ba0645f0a51e53fc8d6ccc398422cdd51717f6", "fields": {"nom_de_la_commune": "ST BONNET DE CHAVAGNE", "libell_d_acheminement": "ST BONNET DE CHAVAGNE", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38370"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5906c1da98ad5617c1346a6124bb03994a146544", "fields": {"nom_de_la_commune": "ST CLAIR DE LA TOUR", "libell_d_acheminement": "ST CLAIR DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38377"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff65141e16174eee3a2313916b6081b3795fbff6", "fields": {"code_postal": "38790", "code_commune_insee": "38389", "libell_d_acheminement": "ST GEORGES D ESPERANCHE", "ligne_5": "COMBE ROUSSE", "nom_de_la_commune": "ST GEORGES D ESPERANCHE", "coordonnees_gps": [45.5630185121, 5.09029489838]}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60cb37fdfde195508966cce3206cb70b756caa52", "fields": {"nom_de_la_commune": "ST GUILLAUME", "libell_d_acheminement": "ST GUILLAUME", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38391"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f6e44d03bafc5cd49d96a408a0d2bc8ae0c7f50", "fields": {"nom_de_la_commune": "ST HILAIRE DE LA COTE", "libell_d_acheminement": "ST HILAIRE DE LA COTE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38393"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d98ad10b118452d7f1d3c5d40a80c7f40f03bf", "fields": {"nom_de_la_commune": "ST JEAN DE BOURNAY", "libell_d_acheminement": "ST JEAN DE BOURNAY", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38399"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea01b9ce877d0e702e4ca93e4f199bd4425a10d", "fields": {"nom_de_la_commune": "ST JEAN LE VIEUX", "libell_d_acheminement": "ST JEAN LE VIEUX", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38404"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4afc355b43c68b17ed1b20631c810e1dc9b85e", "fields": {"nom_de_la_commune": "ST LAURENT DU PONT", "libell_d_acheminement": "ST LAURENT DU PONT", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38412"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feef08b3d1dff2db3d7df84e709a14a6f4e40923", "fields": {"nom_de_la_commune": "ST MARTIN D HERES", "libell_d_acheminement": "ST MARTIN D HERES", "code_postal": "38400", "coordonnees_gps": [45.1753929584, 5.76533745797], "code_commune_insee": "38421"}, "geometry": {"type": "Point", "coordinates": [5.76533745797, 45.1753929584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f9bfd120c256f4cf1587d28dd3ef778172439a", "fields": {"nom_de_la_commune": "ST MARTIN LE VINOUX", "libell_d_acheminement": "ST MARTIN LE VINOUX", "code_postal": "38950", "coordonnees_gps": [45.2439623267, 5.72553344189], "code_commune_insee": "38423"}, "geometry": {"type": "Point", "coordinates": [5.72553344189, 45.2439623267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ba33bd865e709e33d90111b83a15fb8d291c7b", "fields": {"nom_de_la_commune": "ST MAURICE EN TRIEVES", "libell_d_acheminement": "ST MAURICE EN TRIEVES", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38424"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f98e0ad0911d6169b6ab182c216122184d35da4", "fields": {"nom_de_la_commune": "ST MAXIMIN", "libell_d_acheminement": "ST MAXIMIN", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38426"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c6aa31589c1ea38731fd0ccfd160ed30b1b35d", "fields": {"nom_de_la_commune": "ST PIERRE DE BRESSIEUX", "libell_d_acheminement": "ST PIERRE DE BRESSIEUX", "code_postal": "38870", "coordonnees_gps": [45.3123965448, 5.28339736788], "code_commune_insee": "38440"}, "geometry": {"type": "Point", "coordinates": [5.28339736788, 45.3123965448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce33b8628199960393565158534a43f1c849636", "fields": {"nom_de_la_commune": "ST PIERRE DE MESAGE", "libell_d_acheminement": "ST PIERRE DE MESAGE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38445"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cafa734ddc45bbad35941d2630f2b569eb3be5", "fields": {"nom_de_la_commune": "ST ROMAIN DE JALIONAS", "libell_d_acheminement": "ST ROMAIN DE JALIONAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38451"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f058447015f7bbc03b54d2d9453a2cbfb151c02b", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38455"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a623a6ea14a03bb32497ec7f94af9bda589e3787", "fields": {"nom_de_la_commune": "SALAISE SUR SANNE", "libell_d_acheminement": "SALAISE SUR SANNE", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38468"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0c441c55c55a9706f3404a36abba913239ecea", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "HAUT DE BONCE", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99068a549582f5c488ed7e43dbfe4419802b1e10", "fields": {"nom_de_la_commune": "SEREZIN DE LA TOUR", "libell_d_acheminement": "SEREZIN DE LA TOUR", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38481"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0334fed4b064cc1c2eeb4203d366881883574b6", "fields": {"nom_de_la_commune": "SERMERIEU", "libell_d_acheminement": "SERMERIEU", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38483"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4d16dd6e7db3fe3252eb87906b42587b126b72", "fields": {"nom_de_la_commune": "SERPAIZE", "libell_d_acheminement": "SERPAIZE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38484"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d30589c2e1a4a731ad853f1d6e0b18537e7228c", "fields": {"nom_de_la_commune": "SEYSSINS", "libell_d_acheminement": "SEYSSINS", "code_postal": "38180", "coordonnees_gps": [45.1549187647, 5.67516106421], "code_commune_insee": "38486"}, "geometry": {"type": "Point", "coordinates": [5.67516106421, 45.1549187647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a1c3523b8fe2642e685e082cb5400808b95c73f", "fields": {"nom_de_la_commune": "SIEVOZ", "libell_d_acheminement": "SIEVOZ", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38489"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a4f9b75f1f602359488bf7149f18c47d93db65a", "fields": {"nom_de_la_commune": "TENCIN", "libell_d_acheminement": "TENCIN", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38501"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5b0bfe74b412d6e861549665a801195b0bdedf", "fields": {"nom_de_la_commune": "LA TERRASSE", "libell_d_acheminement": "LA TERRASSE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38503"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86b30a394cf447e9dd31d08eee0ddde106b7ab8", "fields": {"nom_de_la_commune": "THODURE", "libell_d_acheminement": "THODURE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38505"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b65475748d06fcd35b8bdb17ff011b321c1729ee", "fields": {"nom_de_la_commune": "LA TRONCHE", "libell_d_acheminement": "LA TRONCHE", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38516"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecb6d116b1d05582158964ce0ae830c03cad521", "fields": {"nom_de_la_commune": "VALBONNAIS", "libell_d_acheminement": "VALBONNAIS", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38518"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d341e98ea052f2bedc6206e2932d0d7791a1b38e", "fields": {"nom_de_la_commune": "VALENCIN", "libell_d_acheminement": "VALENCIN", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38519"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd162297eca6a5352414652a080eeef1f6cfaf7c", "fields": {"nom_de_la_commune": "VERNIOZ", "libell_d_acheminement": "VERNIOZ", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38536"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed674a2339bd7c78886d1a4fcf0fb703d2988d1", "fields": {"nom_de_la_commune": "LA VERPILLIERE", "libell_d_acheminement": "LA VERPILLIERE", "code_postal": "38290", "coordonnees_gps": [45.6634032734, 5.1509887973], "code_commune_insee": "38537"}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945281b4ad8bbca74f9ff6e8b4a3385620dfeedf", "fields": {"nom_de_la_commune": "VEZERONCE CURTIN", "libell_d_acheminement": "VEZERONCE CURTIN", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38543"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911d2335331000ecf7be93bb64ce957274bbc995", "fields": {"nom_de_la_commune": "VIENNE", "libell_d_acheminement": "VIENNE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38544"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5b4f63990e8a99276b43fca894f6e9d05b7e63", "fields": {"code_postal": "38190", "code_commune_insee": "38547", "libell_d_acheminement": "VILLARD BONNOT", "ligne_5": "LANCEY", "nom_de_la_commune": "VILLARD BONNOT", "coordonnees_gps": [45.2307367976, 5.94776788691]}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc0e4f91448e45f6a6e9edecb9c4bfd9023f87be", "fields": {"nom_de_la_commune": "VILLEMOIRIEU", "libell_d_acheminement": "VILLEMOIRIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38554"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e0a0f885595b4cae7799dee3defe251c67ea4b", "fields": {"nom_de_la_commune": "VILLENEUVE DE MARC", "libell_d_acheminement": "VILLENEUVE DE MARC", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38555"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b30920ace5558dd351e7ca2cc366ae54a6544299", "fields": {"nom_de_la_commune": "VILLE SOUS ANJOU", "libell_d_acheminement": "VILLE SOUS ANJOU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38556"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1730967bc23f03b7511d05540a6b941ab301fcd6", "fields": {"nom_de_la_commune": "VIZILLE", "libell_d_acheminement": "VIZILLE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38562"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b428266e5f390222daa2ec2fb2e2169d5d1afc6c", "fields": {"nom_de_la_commune": "VOISSANT", "libell_d_acheminement": "VOISSANT", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38564"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e08fe6829fa5027e70703989feabea9bad19f9d", "fields": {"nom_de_la_commune": "CHAMROUSSE", "libell_d_acheminement": "CHAMROUSSE", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38567"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d6b6a1491ecc78b362a9dbf09cbe4f13573dc7", "fields": {"code_postal": "39320", "code_commune_insee": "39010", "libell_d_acheminement": "ANDELOT MORVAL", "ligne_5": "MORVAL", "nom_de_la_commune": "ANDELOT MORVAL", "coordonnees_gps": [46.4076971476, 5.45325429562]}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aadb98a2a472aeae41f3d8ea3108f9fc2036bbe", "fields": {"nom_de_la_commune": "ARDON", "libell_d_acheminement": "ARDON", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39015"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfde80d6067e7c2d810138b38adc4d1b2f3b9ca", "fields": {"nom_de_la_commune": "ARINTHOD", "libell_d_acheminement": "ARINTHOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39016"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff9a0fe2cef42cffb0c4923490c0e092f26df9b", "fields": {"nom_de_la_commune": "ARLAY", "libell_d_acheminement": "ARLAY", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39017"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1a6b769beaebd7806e94027fcab28a48562e33", "fields": {"nom_de_la_commune": "LES ARSURES", "libell_d_acheminement": "LES ARSURES", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39019"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e11b1ca9892334cbf368a20311eb0a386038f9", "fields": {"nom_de_la_commune": "ARSURE ARSURETTE", "libell_d_acheminement": "ARSURE ARSURETTE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39020"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4115960b29bd7623ebf10f91b8387bc2a3326500", "fields": {"code_postal": "39570", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "ST LAURENT LA ROCHE", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79062d9090c5d8ccf9cc043b97d081c978f1ed88", "fields": {"nom_de_la_commune": "AUGEA", "libell_d_acheminement": "AUGEA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39025"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d229686d8813de59f20c2fcf41ac69948f2efaef", "fields": {"nom_de_la_commune": "BALAISEAUX", "libell_d_acheminement": "BALAISEAUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39034"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8acb40db521274e0dcf9ee572bb30de71e7622", "fields": {"nom_de_la_commune": "BANS", "libell_d_acheminement": "BANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39037"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d85cff477ede00a02357c76e5725eaeb34cc3c7", "fields": {"nom_de_la_commune": "LES MOITIERS D ALLONNE", "libell_d_acheminement": "LES MOITIERS D ALLONNE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50332"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5251af45491a6c8c66b79e34e66b01c6167790df", "fields": {"nom_de_la_commune": "MONTHUCHON", "libell_d_acheminement": "MONTHUCHON", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50345"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96aead81a8e257fb52085a32b7ba92a0cf6a148", "fields": {"nom_de_la_commune": "MOYON VILLAGES", "libell_d_acheminement": "MOYON VILLAGES", "code_postal": "50860", "coordonnees_gps": [48.9943738714, -1.13617599319], "code_commune_insee": "50363"}, "geometry": {"type": "Point", "coordinates": [-1.13617599319, 48.9943738714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07369f30f1f88c6ff0f424056b56c21fbed5cb20", "fields": {"code_postal": "50860", "code_commune_insee": "50363", "libell_d_acheminement": "MOYON VILLAGES", "ligne_5": "LE MESNIL OPAC", "nom_de_la_commune": "MOYON VILLAGES", "coordonnees_gps": [48.9943738714, -1.13617599319]}, "geometry": {"type": "Point", "coordinates": [-1.13617599319, 48.9943738714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0bf0bf36b55aa9191f3b6a222397354d49f50d", "fields": {"nom_de_la_commune": "NEHOU", "libell_d_acheminement": "NEHOU", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50370"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c174bd13ecf928185eca1be252f19b5298820d2", "fields": {"nom_de_la_commune": "NICORPS", "libell_d_acheminement": "NICORPS", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50376"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57241be2a696b8023912b71faa92a0dc4ab5adac", "fields": {"nom_de_la_commune": "OZEVILLE", "libell_d_acheminement": "OZEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50390"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5465364e5db933f3319692e3b40606220f0f810", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "CHEVREVILLE", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506d71f7e31489745216e6c1784eb620bf087ae5", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "MARTIGNY", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e3e7712817e0e907fb5470a4fea598380dd177d", "fields": {"code_postal": "50410", "code_commune_insee": "50393", "libell_d_acheminement": "PERCY EN NORMANDIE", "ligne_5": "LE CHEFRESNE", "nom_de_la_commune": "PERCY EN NORMANDIE", "coordonnees_gps": [48.9223606769, -1.16803884291]}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603f133a94fe61539e495c4fbcdbf5faa9a8d6cf", "fields": {"code_postal": "50250", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "VINDEFONTAINE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607b4319217eaa605ea87be0410529f16722ab90", "fields": {"nom_de_la_commune": "PIERREVILLE", "libell_d_acheminement": "PIERREVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50401"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5710dc01b5a2f47da91f24fa3979345ccaa9971a", "fields": {"nom_de_la_commune": "QUETTREVILLE SUR SIENNE", "libell_d_acheminement": "QUETTREVILLE SUR SIENNE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50419"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6779e412b2332b5b42721a97fbf88948c6d26906", "fields": {"nom_de_la_commune": "REFFUVEILLE", "libell_d_acheminement": "REFFUVEILLE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50428"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547699026fb7edec912983abcab6c348f692aa24", "fields": {"nom_de_la_commune": "REVILLE", "libell_d_acheminement": "REVILLE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50433"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797fee76dcddd44d1f3fafa9b3b3e2fc7674d6d6", "fields": {"nom_de_la_commune": "RONCEY", "libell_d_acheminement": "RONCEY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50437"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c42c18befdd0bdbc2a7538ef9c15949d7b7fcab7", "fields": {"nom_de_la_commune": "LA RONDE HAYE", "libell_d_acheminement": "LA RONDE HAYE", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50438"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1807f3b29895373ba702ad7fac4e96cc64afcc", "fields": {"nom_de_la_commune": "LE ROZEL", "libell_d_acheminement": "LE ROZEL", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50442"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6b0a5c48f28331df294f625057a11667d6ef2f", "fields": {"code_postal": "50160", "code_commune_insee": "50444", "libell_d_acheminement": "ST AMAND", "ligne_5": "ST SYMPHORIEN LES BUTTES", "nom_de_la_commune": "ST AMAND", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aec8817c61d6e10bbe5697ef2702c9c99d030f8", "fields": {"nom_de_la_commune": "ST AUBIN DES PREAUX", "libell_d_acheminement": "ST AUBIN DES PREAUX", "code_postal": "50380", "coordonnees_gps": [48.8042249102, -1.53020237954], "code_commune_insee": "50447"}, "geometry": {"type": "Point", "coordinates": [-1.53020237954, 48.8042249102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4b5034b16fb2f80cdaf89ac5eafe68f802819d", "fields": {"nom_de_la_commune": "STE CECILE", "libell_d_acheminement": "STE CECILE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50453"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd2a6a7f3676a72f614d18dd2048135d9db1dbff", "fields": {"nom_de_la_commune": "ST DENIS LE VETU", "libell_d_acheminement": "ST DENIS LE VETU", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50464"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ef357c93e51d19e39aa2085e170686d884a0d0", "fields": {"nom_de_la_commune": "ST GEORGES D ELLE", "libell_d_acheminement": "ST GEORGES D ELLE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50473"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4ec59668a54b15d7c59bb73f3c7e15ff23e7b5", "fields": {"nom_de_la_commune": "ST GERMAIN DE TOURNEBUT", "libell_d_acheminement": "ST GERMAIN DE TOURNEBUT", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50478"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497e841d37f4f913eec3386fef2fa30697278209", "fields": {"nom_de_la_commune": "ST GERMAIN LE GAILLARD", "libell_d_acheminement": "ST GERMAIN LE GAILLARD", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50480"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f8195f0170a715c15cc3c91df83c2210a72999b", "fields": {"nom_de_la_commune": "ST JEAN LE THOMAS", "libell_d_acheminement": "ST JEAN LE THOMAS", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50496"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee0b9c0a75a5f19c66bd8c19345a15efac30281", "fields": {"nom_de_la_commune": "ST LAURENT DE CUVES", "libell_d_acheminement": "ST LAURENT DE CUVES", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50499"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430c36dcaeb083d6a008b102767255170ad6c5e9", "fields": {"nom_de_la_commune": "ST LAURENT DE TERREGATTE", "libell_d_acheminement": "ST LAURENT DE TERREGATTE", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50500"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed5e780b336d8ace653443a1bd0e0155810128f", "fields": {"nom_de_la_commune": "ST MALO DE LA LANDE", "libell_d_acheminement": "ST MALO DE LA LANDE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50506"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa23ee6a0d4d3177ab98b4885d18c7d5b38c6c0c", "fields": {"nom_de_la_commune": "ST MARCOUF", "libell_d_acheminement": "ST MARCOUF", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50507"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93df57dc9980cd258eb659177c2c61a8f4081c99", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50516"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18a806c805d79a95112a35ad30d90388a9976c8", "fields": {"nom_de_la_commune": "ST MAUR DES BOIS", "libell_d_acheminement": "ST MAUR DES BOIS", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50521"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ac3281de1c2a92fd1c2372487668e20c85ac49", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "FOUCARVILLE", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4771424b1b28383c839e0af2942e40aa888ed7", "fields": {"nom_de_la_commune": "ST MICHEL DE MONTJOIE", "libell_d_acheminement": "ST MICHEL DE MONTJOIE", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50525"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa6c404a55bf8109718f5931068c00d306468fc8", "fields": {"nom_de_la_commune": "ST PAIR SUR MER", "libell_d_acheminement": "ST PAIR SUR MER", "code_postal": "50380", "coordonnees_gps": [48.8042249102, -1.53020237954], "code_commune_insee": "50532"}, "geometry": {"type": "Point", "coordinates": [-1.53020237954, 48.8042249102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db82d41c13361188aee5c2f4fb3925c768e97aa", "fields": {"code_postal": "50870", "code_commune_insee": "50535", "libell_d_acheminement": "LE PARC", "ligne_5": "STE PIENCE", "nom_de_la_commune": "LE PARC", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb80d4b9d3fe29f9fc09601a9a3b538efeb2d72", "fields": {"nom_de_la_commune": "ST PIERRE D ARTHEGLISE", "libell_d_acheminement": "ST PIERRE D ARTHEGLISE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50536"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f00a38bf1b4da4e6398a5966af8bb1648bea42", "fields": {"nom_de_la_commune": "ST PIERRE DE COUTANCES", "libell_d_acheminement": "ST PIERRE DE COUTANCES", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50537"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed05e4f4a27ec61aa27b4ac1cecff2c6caa1c16", "fields": {"nom_de_la_commune": "ST QUENTIN SUR LE HOMME", "libell_d_acheminement": "ST QUENTIN SUR LE HOMME", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50543"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2f1628bcecdfc3921db3b7eca3bf05d801d1cd", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "ST ROMPHAIRE", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee0059dd3c91222cbc5ab37d8d9d589d45933e5", "fields": {"nom_de_la_commune": "ST SAUVEUR DE PIERREPONT", "libell_d_acheminement": "ST SAUVEUR DE PIERREPONT", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50548"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95391796368ce9aaec64b205898677dddbb05335", "fields": {"code_postal": "50500", "code_commune_insee": "50564", "libell_d_acheminement": "TERRE ET MARAIS", "ligne_5": "ST GEORGES DE BOHON", "nom_de_la_commune": "TERRE ET MARAIS", "coordonnees_gps": [49.2869249451, -1.26541021444]}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "233863ff2c45f3731fe1bc4130a8d5e0d06a8b7c", "fields": {"nom_de_la_commune": "SAUSSEY", "libell_d_acheminement": "SAUSSEY", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50568"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440170a571e776c921b41fe180be1ff1286b812f", "fields": {"nom_de_la_commune": "SIDEVILLE", "libell_d_acheminement": "SIDEVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50575"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5316841d824f055d0d4e21391e4f475abef74cfe", "fields": {"nom_de_la_commune": "SORTOSVILLE", "libell_d_acheminement": "SORTOSVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50578"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239620f023eebe100496a89302be5bdc955351cf", "fields": {"code_postal": "50150", "code_commune_insee": "50582", "libell_d_acheminement": "SOURDEVAL", "ligne_5": "VENGEONS", "nom_de_la_commune": "SOURDEVAL", "coordonnees_gps": [48.7316763227, -0.921013476497]}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67e10082bc1ae62e223784b8e6c8fd7620b220d8", "fields": {"nom_de_la_commune": "SOURDEVAL LES BOIS", "libell_d_acheminement": "SOURDEVAL LES BOIS", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50583"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d01dd538473afaab58bc79af6ad428fab5add3a", "fields": {"nom_de_la_commune": "TIREPIED", "libell_d_acheminement": "TIREPIED", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50597"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca21aed21248298089c1265e8645560f0b6a1a8a", "fields": {"nom_de_la_commune": "TOLLEVAST", "libell_d_acheminement": "TOLLEVAST", "code_postal": "50470", "coordonnees_gps": [49.608906015, -1.62204254981], "code_commune_insee": "50599"}, "geometry": {"type": "Point", "coordinates": [-1.62204254981, 49.608906015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcad10fe7942468091d228157100ad482fa5f6d1", "fields": {"nom_de_la_commune": "TREAUVILLE", "libell_d_acheminement": "TREAUVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50604"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3b0732262d7a253caa6513f2a24edc0c15acf9", "fields": {"nom_de_la_commune": "TRIBEHOU", "libell_d_acheminement": "TRIBEHOU", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50606"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e204b898fe55e3c73a73a0cfb1433a760b3dae6", "fields": {"nom_de_la_commune": "URVILLE NACQUEVILLE", "libell_d_acheminement": "URVILLE NACQUEVILLE", "code_postal": "50460", "coordonnees_gps": [49.6466043222, -1.6849502548], "code_commune_insee": "50611"}, "geometry": {"type": "Point", "coordinates": [-1.6849502548, 49.6466043222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b7f35f32f91108147fc6ded1ecd274a8507eb7", "fields": {"nom_de_la_commune": "VAINS", "libell_d_acheminement": "VAINS", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50612"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44643e406396b90f52a7e7746d1b8ee19f16e4a2", "fields": {"nom_de_la_commune": "LE VAST", "libell_d_acheminement": "LE VAST", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50619"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b378c6249e2ef2546fda941d35136ebe7510b30f", "fields": {"nom_de_la_commune": "VER", "libell_d_acheminement": "VER", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50626"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181a56acd64da8f8c20ed1e0f24dd9fdbadd71aa", "fields": {"code_postal": "03190", "code_commune_insee": "03158", "libell_d_acheminement": "HAUT BOCAGE", "ligne_5": "GIVARLAIS", "nom_de_la_commune": "HAUT BOCAGE", "coordonnees_gps": [46.4826080397, 2.65647600079]}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8700a3511172bdb712cda329758a0f4340c3ea", "fields": {"nom_de_la_commune": "DENEUILLE LES MINES", "libell_d_acheminement": "DENEUILLE LES MINES", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03097"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe9ec4a8ca07abb63af7e832df426782898a3ab", "fields": {"nom_de_la_commune": "ECHASSIERES", "libell_d_acheminement": "ECHASSIERES", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03108"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c46136237bc636f94c241dbf5aa9e792e29ec51", "fields": {"nom_de_la_commune": "DESERTINES", "libell_d_acheminement": "DESERTINES", "code_postal": "03630", "coordonnees_gps": [46.3568435387, 2.62727394368], "code_commune_insee": "03098"}, "geometry": {"type": "Point", "coordinates": [2.62727394368, 46.3568435387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f458a40f71aadab3803ffa5385c9fa7ec1dd3cbe", "fields": {"nom_de_la_commune": "ESCUROLLES", "libell_d_acheminement": "ESCUROLLES", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03109"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebd7d7ade9713f2229db53f2f736b8ed5e77bce", "fields": {"nom_de_la_commune": "LIERNOLLES", "libell_d_acheminement": "LIERNOLLES", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03144"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6132f8ccaf3907611e1609bdfe471dcbf26aaa09", "fields": {"nom_de_la_commune": "HAUTERIVE", "libell_d_acheminement": "HAUTERIVE", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03126"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855a64bb49896423ad1f62d19982e0ee40dce361", "fields": {"nom_de_la_commune": "DOMERAT", "libell_d_acheminement": "DOMERAT", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03101"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab73ef1e035ad489032b3fd6c4acd104dbe39ea2", "fields": {"nom_de_la_commune": "DOYET", "libell_d_acheminement": "DOYET", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03104"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0a0be83d1853aae20aeae38478b6e3b958b390", "fields": {"nom_de_la_commune": "DIOU", "libell_d_acheminement": "DIOU", "code_postal": "03290", "coordonnees_gps": [46.5135121651, 3.68226349341], "code_commune_insee": "03100"}, "geometry": {"type": "Point", "coordinates": [3.68226349341, 46.5135121651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89810a1c12579a059bcd501855a9651878b63e1a", "fields": {"nom_de_la_commune": "LA VILLE AUX BOIS LES DIZY", "libell_d_acheminement": "LA VILLE AUX BOIS LES DIZY", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02802"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544b9ebe452e2a730c348bd216bd304be0518606", "fields": {"nom_de_la_commune": "VILLENEUVE ST GERMAIN", "libell_d_acheminement": "VILLENEUVE ST GERMAIN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02805"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "392e51bed3f148d3247c7be5e562c3f363ceb776", "fields": {"nom_de_la_commune": "VILLERS AGRON AIGUIZY", "libell_d_acheminement": "VILLERS AGRON AIGUIZY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02809"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0fde8c918f33095436e2feb60c62f20f870f17", "fields": {"nom_de_la_commune": "VERNEUIL SUR SERRE", "libell_d_acheminement": "VERNEUIL SUR SERRE", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02787"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58923113fe5b0c8267685364b98290ce0fa4658a", "fields": {"nom_de_la_commune": "VICHEL NANTEUIL", "libell_d_acheminement": "VICHEL NANTEUIL", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02796"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75909c604b799e4bcb75102ff697ffcb0ad16c9b", "fields": {"nom_de_la_commune": "VIC SUR AISNE", "libell_d_acheminement": "VIC SUR AISNE", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02795"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531d8327c9a39ce9275e2f2c2e002762fe6c94cd", "fields": {"nom_de_la_commune": "VERSIGNY", "libell_d_acheminement": "VERSIGNY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02788"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82b5c80010e10657ef5ec076f0fd38c0c1567b8", "fields": {"nom_de_la_commune": "VERVINS", "libell_d_acheminement": "VERVINS", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02789"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25136d5bea5cc72425c0aafdf481211c70cd0d8", "fields": {"nom_de_la_commune": "VIERZY", "libell_d_acheminement": "VIERZY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02799"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8398ea491aaa962c5769b15a7428a355a8cfac", "fields": {"nom_de_la_commune": "VESLUD", "libell_d_acheminement": "VESLUD", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02791"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7258c787553ba1c7578cdf4fec9be1b8f38cd7b3", "fields": {"nom_de_la_commune": "LA VALLEE MULATRE", "libell_d_acheminement": "LA VALLEE MULATRE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02760"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b201947d626854854a10a7b57d73eb00551e66", "fields": {"nom_de_la_commune": "SONS ET RONCHERES", "libell_d_acheminement": "SONS ET RONCHERES", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02727"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a539af48ab0856f362fac5bc70cc79effa3b8c7", "fields": {"nom_de_la_commune": "TRELOU SUR MARNE", "libell_d_acheminement": "TRELOU SUR MARNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02748"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a39e49171dce2c1b56ec3078aacf8defea0f2", "fields": {"nom_de_la_commune": "TAILLEFONTAINE", "libell_d_acheminement": "TAILLEFONTAINE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02734"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd81ff579913d509928efb30872195d23e67379c", "fields": {"nom_de_la_commune": "VENEROLLES", "libell_d_acheminement": "VENEROLLES", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02779"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f182aed80684ebcad5b96bcd8f8089c46edcc584", "fields": {"nom_de_la_commune": "THENELLES", "libell_d_acheminement": "THENELLES", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02741"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646b06bff18999b71a6755e39235ef0cd624ec44", "fields": {"nom_de_la_commune": "VENDHUILE", "libell_d_acheminement": "VENDHUILE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02776"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f4b9ca464522eb54a463c3f464e554dfc59c2a", "fields": {"nom_de_la_commune": "VENDEUIL", "libell_d_acheminement": "VENDEUIL", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02775"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40285bf7d1f87ccc1206b42d1c657ab2eeca293c", "fields": {"nom_de_la_commune": "VAUXTIN", "libell_d_acheminement": "VAUXTIN", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02773"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4763c6cf7aa73f630e7670360ee1a8611423d96", "fields": {"nom_de_la_commune": "SUZY", "libell_d_acheminement": "SUZY", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02733"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59dfeed107f0f252e81455d92e6589a8570dcda", "fields": {"nom_de_la_commune": "DENEUILLE LES CHANTELLE", "libell_d_acheminement": "DENEUILLE LES CHANTELLE", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03096"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bc236695136281ea404ce47b42ee903f0f44d0", "fields": {"nom_de_la_commune": "BOURBON L ARCHAMBAULT", "libell_d_acheminement": "BOURBON L ARCHAMBAULT", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03036"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d57a57556dd531403729fd497a0b47623109a9a", "fields": {"nom_de_la_commune": "CHIRAT L EGLISE", "libell_d_acheminement": "CHIRAT L EGLISE", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03077"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9fbf73fed5855d855b79908c7b0cf2471c2288", "fields": {"nom_de_la_commune": "LA CHAPELAUDE", "libell_d_acheminement": "LA CHAPELAUDE", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03055"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3b3b244396c4595d4c1f7b869873dafd6b6352", "fields": {"nom_de_la_commune": "COUTANSOUZE", "libell_d_acheminement": "COUTANSOUZE", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03089"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1deda49dcc08e68c3eb166fc8cb3712a8fa600ee", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03056"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18973258bda1bbfb49c13ae2dce90ab64ca5e4f4", "fields": {"nom_de_la_commune": "COULANGES", "libell_d_acheminement": "COULANGES", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03086"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a05a2816b5c0b1a2757cb2fb11236ec1cee238a", "fields": {"nom_de_la_commune": "CHEMILLY", "libell_d_acheminement": "CHEMILLY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03073"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547d5b8488cb0df3b420e0bc355204b088dfcfb7", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03058"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9ae1086824a23cc0c727a8e62fc111dc922601", "fields": {"nom_de_la_commune": "CRECHY", "libell_d_acheminement": "CRECHY", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03091"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0370cc8cab0db9b5e35d4d2dd7ac3473938c5f", "fields": {"nom_de_la_commune": "SERAUCOURT LE GRAND", "libell_d_acheminement": "SERAUCOURT LE GRAND", "code_postal": "02790", "coordonnees_gps": [49.7805766566, 3.21766127424], "code_commune_insee": "02710"}, "geometry": {"type": "Point", "coordinates": [3.21766127424, 49.7805766566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e95bf50a41b9b8b85ca61698f198fb78fb6a6249", "fields": {"nom_de_la_commune": "ST PAUL AUX BOIS", "libell_d_acheminement": "ST PAUL AUX BOIS", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02686"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344086606fe312e5d033ed132639a19f03f5c2c5", "fields": {"nom_de_la_commune": "RIBEAUVILLE", "libell_d_acheminement": "RIBEAUVILLE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02647"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cae65f581d93c8c3280ee2b793da30fdeb71c77", "fields": {"nom_de_la_commune": "SEPTMONTS", "libell_d_acheminement": "SEPTMONTS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02706"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049f434dd50b59b8e7f1c66e9b3fbe1e486a88f3", "fields": {"nom_de_la_commune": "ST GOBAIN", "libell_d_acheminement": "ST GOBAIN", "code_postal": "02410", "coordonnees_gps": [49.5909068066, 3.39907207955], "code_commune_insee": "02680"}, "geometry": {"type": "Point", "coordinates": [3.39907207955, 49.5909068066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9cbac7b58590229477b7d1c577b95e0242937cd", "fields": {"nom_de_la_commune": "BEZE", "libell_d_acheminement": "BEZE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21071"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33fcfb4bb2a5bdc45632c298bfa86bf3c3de39f", "fields": {"nom_de_la_commune": "BEZOUOTTE", "libell_d_acheminement": "BEZOUOTTE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21072"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a58ec0dabbc041b70a9a3d9a57bde06b507f0c", "fields": {"nom_de_la_commune": "BLAISY BAS", "libell_d_acheminement": "BLAISY BAS", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21080"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4041268092849d922dade22cd4e87e649a9ebe", "fields": {"nom_de_la_commune": "BLAISY HAUT", "libell_d_acheminement": "BLAISY HAUT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21081"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37b20e15b0bc09f55805cdb1aafad09a2da5ea8d", "fields": {"nom_de_la_commune": "BONCOURT LE BOIS", "libell_d_acheminement": "BONCOURT LE BOIS", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21088"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63e0ecfc51cde31b464288174d1356422213dc25", "fields": {"nom_de_la_commune": "BOUDREVILLE", "libell_d_acheminement": "BOUDREVILLE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21090"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53120fbced971cae92228c4abe567de94e8303a0", "fields": {"nom_de_la_commune": "BOUILLAND", "libell_d_acheminement": "BOUILLAND", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21092"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39bdfa3400a0707cbf213acc22589250f98bac45", "fields": {"nom_de_la_commune": "BOUIX", "libell_d_acheminement": "BOUIX", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21093"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de2ad23b063a4865b65af809a79a6a79ad5ee5c", "fields": {"nom_de_la_commune": "BREMUR ET VAUROIS", "libell_d_acheminement": "BREMUR ET VAUROIS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21104"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e4bda762f861b26e39669d5ed3c56942b2fcef", "fields": {"nom_de_la_commune": "BRETENIERE", "libell_d_acheminement": "BRETENIERE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21106"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a97e97b6d2abcae09c96f479b41911bd3c85d6b", "fields": {"nom_de_la_commune": "BUFFON", "libell_d_acheminement": "BUFFON", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21114"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c1c2f3c2e04f3707f89522821f206131a2c096", "fields": {"nom_de_la_commune": "LA BUSSIERE SUR OUCHE", "libell_d_acheminement": "LA BUSSIERE SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21120"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88ed5703156802074eea869c0624e4996605649", "fields": {"nom_de_la_commune": "BUSSY LA PESLE", "libell_d_acheminement": "BUSSY LA PESLE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21121"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6179a08ef0635490265746c866384bef51500ce0", "fields": {"nom_de_la_commune": "BUSSY LE GRAND", "libell_d_acheminement": "BUSSY LE GRAND", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21122"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe2136493e62999bab84495bfd8c83bbe28cae3", "fields": {"nom_de_la_commune": "BUXEROLLES", "libell_d_acheminement": "BUXEROLLES", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21123"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3869c276e71f5275cb4a1272e2e9ef425daaf9e", "fields": {"nom_de_la_commune": "CESSEY SUR TILLE", "libell_d_acheminement": "CESSEY SUR TILLE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21126"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744937aecd5213364e685befe28d5e791dac8690", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR VINGEANNE", "libell_d_acheminement": "CHAMPAGNE SUR VINGEANNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21135"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba9d59155f57677a64b36c8d78e38c91beb0853", "fields": {"nom_de_la_commune": "CHAMPAGNY", "libell_d_acheminement": "CHAMPAGNY", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21136"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20917db0807bc2df016e1f3c365010092f59611", "fields": {"nom_de_la_commune": "CHAMPDOTRE", "libell_d_acheminement": "CHAMPDOTRE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21138"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f152c82b9358f9bc200644660c5034aa287e34c9", "fields": {"nom_de_la_commune": "CHAMPIGNOLLES", "libell_d_acheminement": "CHAMPIGNOLLES", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21140"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b504729ba3226a0b17fb694db205d5fe0f53b0", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21152"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c99dadc2a04b7f7669cee950eab677c4a1f5d33", "fields": {"nom_de_la_commune": "CHATILLON SUR SEINE", "libell_d_acheminement": "CHATILLON SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21154"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbf103ae26ced61ce5101f9df370a06ad0c66d8", "fields": {"nom_de_la_commune": "CHAUDENAY LA VILLE", "libell_d_acheminement": "CHAUDENAY LA VILLE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21155"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0f7df6a3b121655f829ad2da3951629f037dbb", "fields": {"nom_de_la_commune": "CHAUGEY", "libell_d_acheminement": "CHAUGEY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21157"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2471b935fdc7238666d9f53b7db52d2bd7015673", "fields": {"nom_de_la_commune": "CHEUGE", "libell_d_acheminement": "CHEUGE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21167"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7ea5b514d17c32fba63337ae83f7b2e953002c", "fields": {"nom_de_la_commune": "CHEVANNAY", "libell_d_acheminement": "CHEVANNAY", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21168"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d5295c5b576c025146df950c947c3fde0e86b4e", "fields": {"nom_de_la_commune": "CIVRY EN MONTAGNE", "libell_d_acheminement": "CIVRY EN MONTAGNE", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21176"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8f122da48c5054cfd86e60eadb6e1d3dae7d89", "fields": {"nom_de_la_commune": "CLEMENCEY", "libell_d_acheminement": "CLEMENCEY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21178"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c53643dab73153b4ca82d56b753e0f9e59dd0f", "fields": {"nom_de_la_commune": "COMBERTAULT", "libell_d_acheminement": "COMBERTAULT", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21185"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c67ffb9af643d498b6453ecaf8987165e9e63e7", "fields": {"nom_de_la_commune": "CORCELLES LES CITEAUX", "libell_d_acheminement": "CORCELLES LES CITEAUX", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21191"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ea254eaa72fb7bb10328ec986a94a714cf4655", "fields": {"nom_de_la_commune": "COULMIER LE SEC", "libell_d_acheminement": "COULMIER LE SEC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21201"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35954684a1bb23a1f94dddeb0976f1e7bd50930a", "fields": {"nom_de_la_commune": "COUTERNON", "libell_d_acheminement": "COUTERNON", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21209"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea33d56fc59dac62a0c43155a9a090d07cb4024", "fields": {"nom_de_la_commune": "CURLEY", "libell_d_acheminement": "CURLEY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21217"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05cddaed16b7ba2b398d99c76fff9bba419e42c7", "fields": {"nom_de_la_commune": "DAIX", "libell_d_acheminement": "DAIX", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21223"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d0a428755fd5eeb569873c9218a96b71cb7c59", "fields": {"nom_de_la_commune": "DARCEY", "libell_d_acheminement": "DARCEY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21226"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576e33aa32dacbc1844a968b920acf1b2cbfdf61", "fields": {"nom_de_la_commune": "ECHANNAY", "libell_d_acheminement": "ECHANNAY", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21238"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a1f6ce6e5509c097c359b9bc3ca4507a950659", "fields": {"nom_de_la_commune": "ECUTIGNY", "libell_d_acheminement": "ECUTIGNY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21243"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8ab664ee218643e728ee1161d7b2f0d426f5e2", "fields": {"nom_de_la_commune": "ESSEY", "libell_d_acheminement": "ESSEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21251"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3973d75257cf61b5df64eb8fea4cbfb2961fc36c", "fields": {"nom_de_la_commune": "FIXIN", "libell_d_acheminement": "FIXIN", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21265"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1666a7807313224827a9de774ff42dc2e5fa69", "fields": {"nom_de_la_commune": "FLAVIGNEROT", "libell_d_acheminement": "FLAVIGNEROT", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21270"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7ed985c98174a0999f36dcd82299a8c5ea4bd5", "fields": {"nom_de_la_commune": "FLEE", "libell_d_acheminement": "FLEE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21272"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659b2bf4173ad15b74e45e886d173764e12e91a6", "fields": {"nom_de_la_commune": "FONTAINE LES DIJON", "libell_d_acheminement": "FONTAINE LES DIJON", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21278"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288bebd93e84027b67f394fc4e818a5fee70cf19", "fields": {"nom_de_la_commune": "FONTANGY", "libell_d_acheminement": "FONTANGY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21280"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14b23292c7d50cec1668cb62b6b05bf7c6632e7", "fields": {"nom_de_la_commune": "FONTENELLE", "libell_d_acheminement": "FONTENELLE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21281"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf056124dbd5c55d3f6def319261b83c6e77fec", "fields": {"nom_de_la_commune": "FRAIGNOT ET VESVROTTE", "libell_d_acheminement": "FRAIGNOT ET VESVROTTE", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21283"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72d4a140361236f53f694c8fe95cc7067d2a840", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21284"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61923a3ffb37215dea4af2255cea40ba833a3002", "fields": {"nom_de_la_commune": "GEMEAUX", "libell_d_acheminement": "GEMEAUX", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21290"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420eb15488c44afcf6c4f9a5b162d11a17ef6852", "fields": {"nom_de_la_commune": "GENLIS", "libell_d_acheminement": "GENLIS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21292"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df68c3ae7f8e4535359ffce4551fe36bf856c1b1", "fields": {"nom_de_la_commune": "GEVREY CHAMBERTIN", "libell_d_acheminement": "GEVREY CHAMBERTIN", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21295"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d8690ef46835939f14603bf277da8fb80a7b37", "fields": {"nom_de_la_commune": "LES GOULLES", "libell_d_acheminement": "LES GOULLES", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21303"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fcd8493f3a801e00f57c414d72e35351c7d4d30", "fields": {"nom_de_la_commune": "GURGY LE CHATEAU", "libell_d_acheminement": "GURGY LE CHATEAU", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21313"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b0218bee215de085506600784ece64faaf337ec", "fields": {"nom_de_la_commune": "JAILLY LES MOULINS", "libell_d_acheminement": "JAILLY LES MOULINS", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21321"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2024e27f5707900bf55be769c623a406df5691ef", "fields": {"nom_de_la_commune": "JALLANGES", "libell_d_acheminement": "JALLANGES", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21322"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22707c186f6c32a3ff9ab8e8b5ca56100daffdbe", "fields": {"nom_de_la_commune": "JEUX LES BARD", "libell_d_acheminement": "JEUX LES BARD", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21324"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc29ec2ea53befcc74d708233bafbb420309aca", "fields": {"code_postal": "21340", "code_commune_insee": "21327", "libell_d_acheminement": "VAL MONT", "ligne_5": "JOURS EN VAUX", "nom_de_la_commune": "VAL MONT", "coordonnees_gps": [46.9889799591, 4.61638229862]}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee55a294267e33fd93e0deadb8657adf29af3ee0", "fields": {"nom_de_la_commune": "LANTILLY", "libell_d_acheminement": "LANTILLY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21341"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b789dd2452a1dfdef6f76e660484bae04f240ea5", "fields": {"nom_de_la_commune": "LERY", "libell_d_acheminement": "LERY", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21345"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e83aa3955f1b5841aa1ec131a305e7d50227f0f8", "fields": {"nom_de_la_commune": "LEUGLAY", "libell_d_acheminement": "LEUGLAY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21346"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c19a0d52e09b8676df0c0669100ef13e6a84910", "fields": {"nom_de_la_commune": "LONGECOURT EN PLAINE", "libell_d_acheminement": "LONGECOURT EN PLAINE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21353"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba4b012fed6bb5cb36bb00778d4b0b532c64e41", "fields": {"nom_de_la_commune": "LONGECOURT LES CULETRE", "libell_d_acheminement": "LONGECOURT LES CULETRE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21354"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93eea2f31920599d2f3c08a769cf006c07e9a921", "fields": {"nom_de_la_commune": "LUSIGNY SUR OUCHE", "libell_d_acheminement": "LUSIGNY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21360"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1561b2aad3a42b40577a2e6dd061827ee32f02e", "fields": {"nom_de_la_commune": "MAGNIEN", "libell_d_acheminement": "MAGNIEN", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21363"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b4b5e0933d3934ee4e1979da16201e74921532c", "fields": {"nom_de_la_commune": "MAGNY LES AUBIGNY", "libell_d_acheminement": "MAGNY LES AUBIGNY", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21366"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d22cd29437f90b379dc594d2a006b3905033a28", "fields": {"nom_de_la_commune": "MAGNY MONTARLOT", "libell_d_acheminement": "MAGNY MONTARLOT", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21367"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5049b0a93fdf0907d8669b062ae47fad78801c", "fields": {"nom_de_la_commune": "MAGNY LES VILLERS", "libell_d_acheminement": "MAGNY LES VILLERS", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21368"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6740d862cfd9d8285b57f29d7ec7348d3e8b8c2", "fields": {"nom_de_la_commune": "MARCHESEUIL", "libell_d_acheminement": "MARCHESEUIL", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21379"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39a5599d20959323a57a0a4a901229379953c27", "fields": {"nom_de_la_commune": "MARCILLY OGNY", "libell_d_acheminement": "MARCILLY OGNY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21382"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa65a668171953a93d29fff576d78322aff30aa4", "fields": {"nom_de_la_commune": "MARLIENS", "libell_d_acheminement": "MARLIENS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21388"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ae16aaaab087dccbce8d77f1c2c745e2390e810", "fields": {"nom_de_la_commune": "MARSANNAY LA COTE", "libell_d_acheminement": "MARSANNAY LA COTE", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21390"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1393d8906c3dad99c21b2807eb77c3530f716003", "fields": {"nom_de_la_commune": "MARSANNAY LE BOIS", "libell_d_acheminement": "MARSANNAY LE BOIS", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21391"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf32f3b1f984b9cae26e21f7f7c8b1a28b0110a", "fields": {"nom_de_la_commune": "MASSINGY LES VITTEAUX", "libell_d_acheminement": "MASSINGY LES VITTEAUX", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21395"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4ed95ea1981be8ea81fd4504c433d9636e5813", "fields": {"nom_de_la_commune": "MAXILLY SUR SAONE", "libell_d_acheminement": "MAXILLY SUR SAONE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21398"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91bb7ca472da34fc3f9fb328b47d79f597e3c94d", "fields": {"nom_de_la_commune": "LE MEIX", "libell_d_acheminement": "LE MEIX", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21400"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6862413abaf6d4c8c84d547955bb79727aa2d93", "fields": {"nom_de_la_commune": "MEULSON", "libell_d_acheminement": "MEULSON", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21410"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb8e68d042f4b4948716681c1eb4973c4e6ade1", "fields": {"nom_de_la_commune": "MILLERY", "libell_d_acheminement": "MILLERY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21413"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdf53786cd755bdeb8537c7bab446dac88b5fa5f", "fields": {"nom_de_la_commune": "MOITRON", "libell_d_acheminement": "MOITRON", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21418"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603e712b782817a857895a95d2de9b843615bbec", "fields": {"nom_de_la_commune": "MONTAGNY LES BEAUNE", "libell_d_acheminement": "MONTAGNY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21423"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692a8c0b78670e5838dc818a656db195b700c417", "fields": {"nom_de_la_commune": "MONTLAY EN AUXOIS", "libell_d_acheminement": "MONTLAY EN AUXOIS", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21434"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38cc0d4a9ed0e1a13dfa83430e2c7e2d2712abf6", "fields": {"nom_de_la_commune": "MONTMANCON", "libell_d_acheminement": "MONTMANCON", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21437"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff78dc43c34e5028ce32f52a56110a048bf011e6", "fields": {"nom_de_la_commune": "MOSSON", "libell_d_acheminement": "MOSSON", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21444"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1127e9b4cdac812c2e862518d28d5aa6033d39fc", "fields": {"nom_de_la_commune": "MUSIGNY", "libell_d_acheminement": "MUSIGNY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21447"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eade26132605f31c1e21c231bbbe26f775774aa3", "fields": {"nom_de_la_commune": "NESLE ET MASSOULT", "libell_d_acheminement": "NESLE ET MASSOULT", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21451"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd9370805064c3273aaa4464bd61fcad3a8b0f9", "fields": {"nom_de_la_commune": "NOIRON SOUS GEVREY", "libell_d_acheminement": "NOIRON SOUS GEVREY", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21458"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3803e6aae1321ff488a3cff3ffc6741540d537a", "fields": {"nom_de_la_commune": "NOLAY", "libell_d_acheminement": "NOLAY", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21461"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a7173b90a51cb58aad78d6f42c52e6dc3d59a91", "fields": {"nom_de_la_commune": "NORMIER", "libell_d_acheminement": "NORMIER", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21463"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb74687811f10f7cdbca69f4593b3efd345c59ce", "fields": {"nom_de_la_commune": "OBTREE", "libell_d_acheminement": "OBTREE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21465"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de03a2f3329be35370fff15b9abb05e8b2d1546e", "fields": {"nom_de_la_commune": "ORAIN", "libell_d_acheminement": "ORAIN", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21468"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465af546128778140d67cc9d9eacdc18689e5c72", "fields": {"nom_de_la_commune": "ORGEUX", "libell_d_acheminement": "ORGEUX", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21469"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6efa88b924bf48698ec764c3aba60419290491", "fields": {"nom_de_la_commune": "PAGNY LE CHATEAU", "libell_d_acheminement": "PAGNY LE CHATEAU", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21475"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf95032d1f2464c9b7c87bb3665525bbece3038", "fields": {"nom_de_la_commune": "PLANAY", "libell_d_acheminement": "PLANAY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21484"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1699711251a42ccf952e4cb9690258ec8b1305", "fields": {"nom_de_la_commune": "PLOMBIERES LES DIJON", "libell_d_acheminement": "PLOMBIERES LES DIJON", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21485"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee23f37825117333ea6c0cc82eb3a1a94dbc289", "fields": {"nom_de_la_commune": "PLUVAULT", "libell_d_acheminement": "PLUVAULT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21486"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a85a341815a2aa0b37f9e00b43095ab8e07db13", "fields": {"nom_de_la_commune": "PLUVET", "libell_d_acheminement": "PLUVET", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21487"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0616ee2bc81fe05e1506b5cadac5fa7e565dd924", "fields": {"nom_de_la_commune": "POISEUL LA GRANGE", "libell_d_acheminement": "POISEUL LA GRANGE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21489"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56fbf50e3fe712b993942f0269da106806ec5a2", "fields": {"nom_de_la_commune": "POISEUL LES SAULX", "libell_d_acheminement": "POISEUL LES SAULX", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21491"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725e5c736e117648a5f353ba5d6f41bf75eef64d", "fields": {"nom_de_la_commune": "POUILLY EN AUXOIS", "libell_d_acheminement": "POUILLY EN AUXOIS", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21501"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d5393fc68a99d8459ba6977fbe6aa1c5391724", "fields": {"nom_de_la_commune": "PULIGNY MONTRACHET", "libell_d_acheminement": "PULIGNY MONTRACHET", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21512"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8effa67e5ad3ef18dabcdd013c78c39243a8e20e", "fields": {"nom_de_la_commune": "LA ROCHE EN BRENIL", "libell_d_acheminement": "LA ROCHE EN BRENIL", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21525"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c5d1a468866bd5fb2e341b76ab04730ad45397", "fields": {"nom_de_la_commune": "ROUVRAY", "libell_d_acheminement": "ROUVRAY", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21531"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a59db45347ae9dec5d5c58b95b9ff27f2bb08c", "fields": {"nom_de_la_commune": "STE COLOMBE EN AUXOIS", "libell_d_acheminement": "STE COLOMBE EN AUXOIS", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21544"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3185c4e1d8c13f771751126a3528c38ae85e8d63", "fields": {"nom_de_la_commune": "MURBACH", "libell_d_acheminement": "MURBACH", "code_postal": "68530", "coordonnees_gps": [47.9213082038, 7.15976445089], "code_commune_insee": "68229"}, "geometry": {"type": "Point", "coordinates": [7.15976445089, 47.9213082038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38d8017a821bdaa8584d133eb71c9c6e79c866a5", "fields": {"nom_de_la_commune": "NIEDERENTZEN", "libell_d_acheminement": "NIEDERENTZEN", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68234"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5609eed0391539e944a98399ac392922aa2d31b0", "fields": {"code_postal": "68960", "code_commune_insee": "68240", "libell_d_acheminement": "ILLTAL", "ligne_5": "GRENTZINGEN", "nom_de_la_commune": "ILLTAL", "coordonnees_gps": [47.5717118449, 7.32148674865]}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf613ebeec0e2d2b60c8183f6355ecd5ad310bc", "fields": {"nom_de_la_commune": "OBERLARG", "libell_d_acheminement": "OBERLARG", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68243"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f9e92609f53a68d623590a1421a2a64a7c8901", "fields": {"nom_de_la_commune": "OSENBACH", "libell_d_acheminement": "OSENBACH", "code_postal": "68570", "coordonnees_gps": [47.9749178852, 7.21383132729], "code_commune_insee": "68251"}, "geometry": {"type": "Point", "coordinates": [7.21383132729, 47.9749178852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c72751294c900e0a4980fbc41dc50abcf4b464", "fields": {"nom_de_la_commune": "OSTHEIM", "libell_d_acheminement": "OSTHEIM", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68252"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd6f6d9fcb5baad1c26bd8f7b23f557a47396e2", "fields": {"nom_de_la_commune": "PETIT LANDAU", "libell_d_acheminement": "PETIT LANDAU", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68254"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4874b886ae481f7eb863a6db1747aa2f0a64406a", "fields": {"nom_de_la_commune": "RANSPACH", "libell_d_acheminement": "RANSPACH", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68262"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fb362fb0221ea8c31d067260c2baa494ca3b2a0", "fields": {"nom_de_la_commune": "RETZWILLER", "libell_d_acheminement": "RETZWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68268"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aadc64b5f50199491523853af07f951af30fd48", "fields": {"nom_de_la_commune": "RIBEAUVILLE", "libell_d_acheminement": "RIBEAUVILLE", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68269"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9741305d28658b7277cee700235692a1f73d8f25", "fields": {"nom_de_la_commune": "RODEREN", "libell_d_acheminement": "RODEREN", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68279"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81360c727b08470125c0df6ce3cc3bc5b37728e", "fields": {"nom_de_la_commune": "RORSCHWIHR", "libell_d_acheminement": "RORSCHWIHR", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68285"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58edddc7951427601359592cb389571664ca9079", "fields": {"nom_de_la_commune": "RUEDERBACH", "libell_d_acheminement": "RUEDERBACH", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68288"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15aefd858c9dfc273151546aafbeb167d4b2b837", "fields": {"nom_de_la_commune": "ST AMARIN", "libell_d_acheminement": "ST AMARIN", "code_postal": "68550", "coordonnees_gps": [47.8832667116, 7.03896446399], "code_commune_insee": "68292"}, "geometry": {"type": "Point", "coordinates": [7.03896446399, 47.8832667116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5167866e77e67d04cb30f5d9ad36a895aaf4b236", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68296"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd58b8585e5124604b57fb0a0ebb7267e1c138b3", "fields": {"nom_de_la_commune": "ST ULRICH", "libell_d_acheminement": "ST ULRICH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68299"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de69a867785b570b5f18c118e3b5765b758118de", "fields": {"nom_de_la_commune": "SEPPOIS LE HAUT", "libell_d_acheminement": "SEPPOIS LE HAUT", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68306"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179932c9a1aae252b5c948d3321fed8c049b9f51", "fields": {"nom_de_la_commune": "SIERENTZ", "libell_d_acheminement": "SIERENTZ", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68309"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb2163f8cda55b63c96876ae28effb3a2ef2a41", "fields": {"nom_de_la_commune": "SOPPE LE BAS", "libell_d_acheminement": "SOPPE LE BAS", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68313"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5baad32679868a5b5691a802878fe0353d878e97", "fields": {"nom_de_la_commune": "SOULTZ HAUT RHIN", "libell_d_acheminement": "SOULTZ HAUT RHIN", "code_postal": "68360", "coordonnees_gps": [47.8825452094, 7.17912076707], "code_commune_insee": "68315"}, "geometry": {"type": "Point", "coordinates": [7.17912076707, 47.8825452094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adae8bec33822ccb124d14677c884dd33f58a6b7", "fields": {"code_postal": "68570", "code_commune_insee": "68318", "libell_d_acheminement": "SOULTZMATT", "ligne_5": "WINTZFELDEN", "nom_de_la_commune": "SOULTZMATT", "coordonnees_gps": [47.9749178852, 7.21383132729]}, "geometry": {"type": "Point", "coordinates": [7.21383132729, 47.9749178852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10f174eb89cdd68f06fcc3f90717788b66bc475", "fields": {"nom_de_la_commune": "STAFFELFELDEN", "libell_d_acheminement": "STAFFELFELDEN", "code_postal": "68850", "coordonnees_gps": [47.8270625679, 7.25276882915], "code_commune_insee": "68321"}, "geometry": {"type": "Point", "coordinates": [7.25276882915, 47.8270625679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad521d66b1c53e2916565779f52469bf5f88f6e", "fields": {"nom_de_la_commune": "STERNENBERG", "libell_d_acheminement": "STERNENBERG", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68326"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77a73545f6e3cd2ae47a8d69ee5b35529519e423", "fields": {"nom_de_la_commune": "STETTEN", "libell_d_acheminement": "STETTEN", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68327"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9719359a0570abe7f3c77b8d6a26c4e3ef431caa", "fields": {"nom_de_la_commune": "STRUETH", "libell_d_acheminement": "STRUETH", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68330"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5249662a8b5743c9449c3e5fa9e975749e4a7d85", "fields": {"nom_de_la_commune": "SUNDHOFFEN", "libell_d_acheminement": "SUNDHOFFEN", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68331"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9850b3e02b65b6db85cd1b0f1a4c004237139a", "fields": {"nom_de_la_commune": "THANNENKIRCH", "libell_d_acheminement": "THANNENKIRCH", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68335"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738b19a7518679f3d65b0424cb00f039cb931cf5", "fields": {"nom_de_la_commune": "UNGERSHEIM", "libell_d_acheminement": "UNGERSHEIM", "code_postal": "68190", "coordonnees_gps": [47.8612458222, 7.34670995091], "code_commune_insee": "68343"}, "geometry": {"type": "Point", "coordinates": [7.34670995091, 47.8612458222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81347fd1a9fe3af9f29b042f1efeaab1cc1e05bc", "fields": {"nom_de_la_commune": "URSCHENHEIM", "libell_d_acheminement": "URSCHENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68345"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a305db3dbe9639add284f8eff515e018db6058", "fields": {"nom_de_la_commune": "VIEUX FERRETTE", "libell_d_acheminement": "VIEUX FERRETTE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68347"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad0e8366973ac902574b9c15074cbe10d3225d", "fields": {"nom_de_la_commune": "VOGELGRUN", "libell_d_acheminement": "VOGELGRUN", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68351"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d837da853d929408f8c8a40e8baa1f182d2ed8", "fields": {"nom_de_la_commune": "VOLGELSHEIM", "libell_d_acheminement": "VOLGELSHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68352"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661f46c8019ec452d5a686d28c5b44f52ab31481", "fields": {"nom_de_la_commune": "WALBACH", "libell_d_acheminement": "WALBACH", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68354"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac14d4de2e9511b909a208475a3e1accb9c3dbe1", "fields": {"nom_de_la_commune": "WALHEIM", "libell_d_acheminement": "WALHEIM", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68356"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d15bf471fb99461cee8a7874d7cb5c02d927708", "fields": {"nom_de_la_commune": "WECKOLSHEIM", "libell_d_acheminement": "WECKOLSHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68360"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5393bb39dc50119120753cec883f9b79fbb8d3f2", "fields": {"nom_de_la_commune": "WERENTZHOUSE", "libell_d_acheminement": "WERENTZHOUSE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68363"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e050f5aa92a6a71ef4175fe1b583c440a331066e", "fields": {"nom_de_la_commune": "WIHR AU VAL", "libell_d_acheminement": "WIHR AU VAL", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68368"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a845a7a1ceef7b3087f113a151da62145769fa", "fields": {"nom_de_la_commune": "WINTZENHEIM", "libell_d_acheminement": "WINTZENHEIM", "code_postal": "68920", "coordonnees_gps": [48.0596682305, 7.28277674315], "code_commune_insee": "68374"}, "geometry": {"type": "Point", "coordinates": [7.28277674315, 48.0596682305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057a82a3f98f8b44090998e39e71e880051f00b3", "fields": {"nom_de_la_commune": "WITTENHEIM", "libell_d_acheminement": "WITTENHEIM", "code_postal": "68270", "coordonnees_gps": [47.8139348594, 7.32361311446], "code_commune_insee": "68376"}, "geometry": {"type": "Point", "coordinates": [7.32361311446, 47.8139348594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb61db748625759b2d3fae20b5324db6de483581", "fields": {"nom_de_la_commune": "ZIMMERSHEIM", "libell_d_acheminement": "ZIMMERSHEIM", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68386"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f58549ec8c928ebb265722b85339d0a507f5833", "fields": {"nom_de_la_commune": "AIGUEPERSE", "libell_d_acheminement": "AIGUEPERSE", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69002"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc65ee9cdc0f20ba86e3b74ff912ed75a58cb5b", "fields": {"code_postal": "69550", "code_commune_insee": "69006", "libell_d_acheminement": "AMPLEPUIS", "ligne_5": "ROCHEFORT", "nom_de_la_commune": "AMPLEPUIS", "coordonnees_gps": [45.9921852831, 4.36092903246]}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f10f6867a001feff8f295570e0f57f60315fb83d", "fields": {"nom_de_la_commune": "ANSE", "libell_d_acheminement": "ANSE", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69009"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d5e89b5b42295eb454c6c71b7d9b08c4636813", "fields": {"nom_de_la_commune": "L ARBRESLE", "libell_d_acheminement": "L ARBRESLE", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69010"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d08abd91d04ab1d5d0fa104f8ed6e083294d1b", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LA GIRAUDIERE", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128516a49b6631d10b8fff9304794bb78c2ebbf0", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LURCIEUX", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b88dd7ad120353ffbfebdeb1ae49ea89c7f50a03", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "POMERIEUX", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3446a0e5ef0bbcbb7415baa63884f5d67341dd", "fields": {"nom_de_la_commune": "BLACE", "libell_d_acheminement": "BLACE", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69023"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07f3934227dba31164d87d6a99a49f857cdc772", "fields": {"code_postal": "69530", "code_commune_insee": "69027", "libell_d_acheminement": "BRIGNAIS", "ligne_5": "SEPT CHEMINS", "nom_de_la_commune": "BRIGNAIS", "coordonnees_gps": [45.6692860968, 4.73618397789]}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5434c12b28ddcf190e285e54fa29e7914edaf8", "fields": {"nom_de_la_commune": "BRULLIOLES", "libell_d_acheminement": "BRULLIOLES", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69030"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f09e743358a4978dc5bf1f51f0637f8a0841ad8", "fields": {"nom_de_la_commune": "CALUIRE ET CUIRE", "libell_d_acheminement": "CALUIRE ET CUIRE", "code_postal": "69300", "coordonnees_gps": [45.7973384596, 4.85199601768], "code_commune_insee": "69034"}, "geometry": {"type": "Point", "coordinates": [4.85199601768, 45.7973384596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f66ced75a079ab29afbd1c499940af5cc926f2f", "fields": {"nom_de_la_commune": "CHARLY", "libell_d_acheminement": "CHARLY", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69046"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a7bb7d5d78243c587413981718d7b7c698053e", "fields": {"nom_de_la_commune": "CHARNAY", "libell_d_acheminement": "CHARNAY", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69047"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f39239c752f7d14d899366433f1e3f476b40c7", "fields": {"nom_de_la_commune": "CHAUSSAN", "libell_d_acheminement": "CHAUSSAN", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69051"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2250e5ba1b6bb4cfe0199a0d07000c9cddf843", "fields": {"nom_de_la_commune": "CHESSY", "libell_d_acheminement": "CHESSY", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69056"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b63d961bda0b4e95ad4fda80097f327c1c5f0d", "fields": {"nom_de_la_commune": "CONDRIEU", "libell_d_acheminement": "CONDRIEU", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69064"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888bae24af2d23885ed59097a1945d90047d6ee1", "fields": {"code_postal": "69240", "code_commune_insee": "69066", "libell_d_acheminement": "COURS", "ligne_5": "PONT TRAMBOUZE", "nom_de_la_commune": "COURS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39d0468a6139136dc404334dfdaa12b74323f682", "fields": {"code_postal": "69470", "code_commune_insee": "69066", "libell_d_acheminement": "COURS", "ligne_5": "THEL", "nom_de_la_commune": "COURS", "coordonnees_gps": [46.1151639398, 4.3657661109]}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6d755f030ea5e7a24681c0a74fc6534d696251", "fields": {"nom_de_la_commune": "CRAPONNE", "libell_d_acheminement": "CRAPONNE", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69069"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d8e60b960851c7b4c3be9e8e24eed1de19792a", "fields": {"nom_de_la_commune": "DARDILLY", "libell_d_acheminement": "DARDILLY", "code_postal": "69570", "coordonnees_gps": [45.8121343221, 4.74664425664], "code_commune_insee": "69072"}, "geometry": {"type": "Point", "coordinates": [4.74664425664, 45.8121343221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c95d3802c043f22b881cdd7b25ec6aa4ec331e6b", "fields": {"nom_de_la_commune": "DIEME", "libell_d_acheminement": "DIEME", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69075"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a96536f5c9a35b76add528e210db15538f958f", "fields": {"code_postal": "69700", "code_commune_insee": "69080", "libell_d_acheminement": "ECHALAS", "ligne_5": "LA RODIERE", "nom_de_la_commune": "ECHALAS", "coordonnees_gps": [45.5741550977, 4.73818709302]}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a58e9238371321d83758e2f91d6ae3419011d4", "fields": {"nom_de_la_commune": "EMERINGES", "libell_d_acheminement": "EMERINGES", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69082"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b3894b14dce9f4b6c52ea3bdb2e2ce76164435", "fields": {"nom_de_la_commune": "FLEURIEU SUR SAONE", "libell_d_acheminement": "FLEURIEU SUR SAONE", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69085"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb8fa52ec5eab89afd9527d0046504cad2c341f", "fields": {"nom_de_la_commune": "GRANDRIS", "libell_d_acheminement": "GRANDRIS", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69093"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930681ba3d71e67f2a48fd08e96195d52c7efc69", "fields": {"nom_de_la_commune": "GREZIEU LE MARCHE", "libell_d_acheminement": "GREZIEU LE MARCHE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69095"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b182568525aeba4ce16aefe9903eaa2a7f59c92", "fields": {"nom_de_la_commune": "JARNIOUX", "libell_d_acheminement": "JARNIOUX", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69101"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096e1272a5b35a64960238129510c59beac8782b", "fields": {"nom_de_la_commune": "LACENAS", "libell_d_acheminement": "LACENAS", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69105"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851f063001cfadffc5746ba79ef0312ab51261d6", "fields": {"nom_de_la_commune": "LACHASSAGNE", "libell_d_acheminement": "LACHASSAGNE", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69106"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8221d9ba01cfe8129141944bc5fc39408f482a", "fields": {"nom_de_la_commune": "LIERGUES", "libell_d_acheminement": "LIERGUES", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69114"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5faf9f91d61c938f76a723eb4b84647ea2bf48f", "fields": {"nom_de_la_commune": "LOZANNE", "libell_d_acheminement": "LOZANNE", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69121"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ce8d8c9abac018e23d61ceb181c1e2c90310c9", "fields": {"nom_de_la_commune": "MARCHAMPT", "libell_d_acheminement": "MARCHAMPT", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69124"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "163a258ce1c58c4122ab0b2dc29c41feea1e65c1", "fields": {"nom_de_la_commune": "MESSIMY", "libell_d_acheminement": "MESSIMY", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69131"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbbc8d06cfe02f7083ea6026437232d8f961ee9", "fields": {"code_postal": "69700", "code_commune_insee": "69136", "libell_d_acheminement": "MONTAGNY", "ligne_5": "SOURZY", "nom_de_la_commune": "MONTAGNY", "coordonnees_gps": [45.5741550977, 4.73818709302]}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ba5084a7926458d602f2f9c0669d7733a98886", "fields": {"nom_de_la_commune": "MONTROMANT", "libell_d_acheminement": "MONTROMANT", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69138"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae43f4d7f69e195d48e7af60b811382659385484", "fields": {"nom_de_la_commune": "ORLIENAS", "libell_d_acheminement": "ORLIENAS", "code_postal": "69530", "coordonnees_gps": [45.6692860968, 4.73618397789], "code_commune_insee": "69148"}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8de09a2b291e0e95226bb4f612d620aff13ca59", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69156"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e77a9d11058c453ebb738ff90f9be03491ee06", "fields": {"nom_de_la_commune": "PONTCHARRA SUR TURDINE", "libell_d_acheminement": "PONTCHARRA SUR TURDINE", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69157"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c881b680540e97c6780404f33b122c65898096ea", "fields": {"code_postal": "69870", "code_commune_insee": "69160", "libell_d_acheminement": "POULE LES ECHARMEAUX", "ligne_5": "LES ECHARMEAUX", "nom_de_la_commune": "POULE LES ECHARMEAUX", "coordonnees_gps": [46.0726954495, 4.47616279948]}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29da06f5494c50ae0b694761e41a5f5fd582892d", "fields": {"nom_de_la_commune": "PROPIERES", "libell_d_acheminement": "PROPIERES", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69161"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043f7531d8894d8f105a05aa86825c4bf0202ecb", "fields": {"nom_de_la_commune": "QUINCIE EN BEAUJOLAIS", "libell_d_acheminement": "QUINCIE EN BEAUJOLAIS", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69162"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83cb5fc9bc869b272ac8783e2dac9269b9714cd", "fields": {"nom_de_la_commune": "QUINCIEUX", "libell_d_acheminement": "QUINCIEUX", "code_postal": "69650", "coordonnees_gps": [45.9066632168, 4.77988649685], "code_commune_insee": "69163"}, "geometry": {"type": "Point", "coordinates": [4.77988649685, 45.9066632168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d9485edc9a110de2296fed4fab11eec9eacf9b", "fields": {"nom_de_la_commune": "REGNIE DURETTE", "libell_d_acheminement": "REGNIE DURETTE", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69165"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e8ebf8035781640a92e4c3c2c8ceabedb11577", "fields": {"code_postal": "69430", "code_commune_insee": "69165", "libell_d_acheminement": "REGNIE DURETTE", "ligne_5": "DURETTE", "nom_de_la_commune": "REGNIE DURETTE", "coordonnees_gps": [46.1511962743, 4.57003815415]}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f5b2e290493b66c94f867cf6364fbff75e449a", "fields": {"code_postal": "69460", "code_commune_insee": "69172", "libell_d_acheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", "ligne_5": "ARBUISSONNAS", "nom_de_la_commune": "SALLES ARBUISSONNAS EN BEAUJOLAIS", "coordonnees_gps": [46.0598992865, 4.61285199176]}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f31eb6bf558df8dc2fc522f268804c49674efbe8", "fields": {"code_postal": "69440", "code_commune_insee": "69184", "libell_d_acheminement": "STE CATHERINE", "ligne_5": "LA FLACHERE", "nom_de_la_commune": "STE CATHERINE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c1e8618db820185d45b3bac22b6b6e05d7ccdc", "fields": {"nom_de_la_commune": "ST DIDIER SUR BEAUJEU", "libell_d_acheminement": "ST DIDIER SUR BEAUJEU", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69196"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dec2b7f4dd0df3da8fbfcc2e9d24ac7a8a68784", "fields": {"nom_de_la_commune": "ST FONS", "libell_d_acheminement": "ST FONS", "code_postal": "69190", "coordonnees_gps": [45.7014463321, 4.85044216198], "code_commune_insee": "69199"}, "geometry": {"type": "Point", "coordinates": [4.85044216198, 45.7014463321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e27e09f8ae2d55cdce1a645e1177167d8be265", "fields": {"code_postal": "69210", "code_commune_insee": "69208", "libell_d_acheminement": "ST GERMAIN NUELLES", "ligne_5": "NUELLES", "nom_de_la_commune": "ST GERMAIN NUELLES", "coordonnees_gps": [45.8200332859, 4.61385272872]}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b9aace0a9238eb64a3d5953e14cbc8d78c0a26", "fields": {"nom_de_la_commune": "ST JACQUES DES ARRETS", "libell_d_acheminement": "ST JACQUES DES ARRETS", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69210"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb935bfd8931bc032183ea65ab6188ed10dda29", "fields": {"nom_de_la_commune": "ST JEAN D ARDIERES", "libell_d_acheminement": "ST JEAN D ARDIERES", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69211"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d3e28764c981fa5b88bd03dee61a7a362a315b7", "fields": {"nom_de_la_commune": "ST JEAN DES VIGNES", "libell_d_acheminement": "ST JEAN DES VIGNES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69212"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a2d9c8076e12440fe8a9b798af32fc8f787656", "fields": {"code_postal": "69640", "code_commune_insee": "69215", "libell_d_acheminement": "ST JULIEN", "ligne_5": "LA ROCHE", "nom_de_la_commune": "ST JULIEN", "coordonnees_gps": [45.9971718546, 4.6146387877]}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "816148659ceb372489adda794cfa3500e5ca03e0", "fields": {"nom_de_la_commune": "ST LAURENT DE CHAMOUSSET", "libell_d_acheminement": "ST LAURENT DE CHAMOUSSET", "code_postal": "69930", "coordonnees_gps": [45.7453041401, 4.44630555022], "code_commune_insee": "69220"}, "geometry": {"type": "Point", "coordinates": [4.44630555022, 45.7453041401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2564c4f7f7419767de955bb9679c7946ff53a107", "fields": {"nom_de_la_commune": "ST LAURENT D OINGT", "libell_d_acheminement": "ST LAURENT D OINGT", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69222"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceaa7402a7baddea4d18917e6140d51b42aaba2c", "fields": {"nom_de_la_commune": "ST MAMERT", "libell_d_acheminement": "ST MAMERT", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69224"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6e36911ce725828c9eb4db5778b4bcd80caaf3", "fields": {"nom_de_la_commune": "ST NIZIER D AZERGUES", "libell_d_acheminement": "ST NIZIER D AZERGUES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69229"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86d89dfbb96f096accbdec7010ae1728aede4607", "fields": {"nom_de_la_commune": "STE PAULE", "libell_d_acheminement": "STE PAULE", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69230"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf3a33a3fb57436903c4580a064fe6005e45349", "fields": {"nom_de_la_commune": "ST PIERRE LA PALUD", "libell_d_acheminement": "ST PIERRE LA PALUD", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69231"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19520c62009eb179965be420afea964ec095e32", "fields": {"nom_de_la_commune": "ST SORLIN", "libell_d_acheminement": "ST SORLIN", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69237"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b6e4fb4e0422d221e566869fe557dcb58962d53", "fields": {"nom_de_la_commune": "BLANDAS", "libell_d_acheminement": "BLANDAS", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30040"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01dedf70d9e7ef69b97e514625561c59dadb19a9", "fields": {"nom_de_la_commune": "BOISSIERES", "libell_d_acheminement": "BOISSIERES", "code_postal": "30114", "coordonnees_gps": [43.7816107719, 4.23187621337], "code_commune_insee": "30043"}, "geometry": {"type": "Point", "coordinates": [4.23187621337, 43.7816107719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8247981a90f13499c3c65375d3ca5df7ca5494a2", "fields": {"nom_de_la_commune": "BOUILLARGUES", "libell_d_acheminement": "BOUILLARGUES", "code_postal": "30230", "coordonnees_gps": [43.8071223757, 4.43456661825], "code_commune_insee": "30047"}, "geometry": {"type": "Point", "coordinates": [4.43456661825, 43.8071223757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259bd93459c914eb54d1135c6803c33bdaebddcb", "fields": {"nom_de_la_commune": "BOUQUET", "libell_d_acheminement": "BOUQUET", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30048"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a088b6e8c43ab3ecd44a0ecb23562d5013a8947a", "fields": {"nom_de_la_commune": "LA CAPELLE ET MASMOLENE", "libell_d_acheminement": "LA CAPELLE ET MASMOLENE", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30067"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6ed73ac7f657e8e6f86d94b5cb7718b25bbc93", "fields": {"nom_de_la_commune": "CARNAS", "libell_d_acheminement": "CARNAS", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30069"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dff492a85052e8586a47b982484905ec2c2252c", "fields": {"nom_de_la_commune": "CARSAN", "libell_d_acheminement": "CARSAN", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30070"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7eabc91dc266bcdecec407534543f71078fa6d6", "fields": {"nom_de_la_commune": "CASTELNAU VALENCE", "libell_d_acheminement": "CASTELNAU VALENCE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30072"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e75463f98be450ba22e207eab779e63ce3f6e0", "fields": {"nom_de_la_commune": "CAUSSE BEGON", "libell_d_acheminement": "CAUSSE BEGON", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30074"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d9b7b0a0cdc5ef4980c6cc66b0bb1f2490b736", "fields": {"nom_de_la_commune": "CODOLET", "libell_d_acheminement": "CODOLET", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30084"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69925a874dedd0afe5dce586d3006c52a0b3e982", "fields": {"nom_de_la_commune": "CORBES", "libell_d_acheminement": "CORBES", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30094"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fb2fcc0098cda2ce6da25ff2106f99ca5f7cd3", "fields": {"nom_de_la_commune": "CORCONNE", "libell_d_acheminement": "CORCONNE", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30095"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f08cfbe95a04f926769dcb18460f5435871b8d", "fields": {"nom_de_la_commune": "COURRY", "libell_d_acheminement": "COURRY", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30097"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf893c161bb5e07dfd3ba5647305b586a360f4d", "fields": {"nom_de_la_commune": "DOMAZAN", "libell_d_acheminement": "DOMAZAN", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30103"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "691d9a94d2368760a09f18c91d59deea9c3ee809", "fields": {"nom_de_la_commune": "DOURBIES", "libell_d_acheminement": "DOURBIES", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30105"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fac46870453cc42b75bbb7a7779b9f60a97b7c8", "fields": {"nom_de_la_commune": "FOISSAC", "libell_d_acheminement": "FOISSAC", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30111"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409c495ae917732381fd4039bfa1565cf1ffb32d", "fields": {"nom_de_la_commune": "FONTARECHES", "libell_d_acheminement": "FONTARECHES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30115"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca80f57ff947c871d9d6406d60ed87a4a4aa894e", "fields": {"nom_de_la_commune": "GAILHAN", "libell_d_acheminement": "GAILHAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30121"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79790fde19ffccfde2fb3dfcd99a46fd9224e47", "fields": {"nom_de_la_commune": "GALLARGUES LE MONTUEUX", "libell_d_acheminement": "GALLARGUES LE MONTUEUX", "code_postal": "30660", "coordonnees_gps": [43.716841754, 4.17186706419], "code_commune_insee": "30123"}, "geometry": {"type": "Point", "coordinates": [4.17186706419, 43.716841754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bd37e2d539442d36728e7682af9582b9a1bb02", "fields": {"nom_de_la_commune": "LE GARN", "libell_d_acheminement": "LE GARN", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30124"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a63c2586e9d2cab231f0f9d389219be7d3b345", "fields": {"nom_de_la_commune": "GAUJAC", "libell_d_acheminement": "GAUJAC", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30127"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de3e8e38af49b3dd3aef9d8e9ff98671ade24ec", "fields": {"code_postal": "30110", "code_commune_insee": "30132", "libell_d_acheminement": "LA GRAND COMBE", "ligne_5": "LA LEVADE", "nom_de_la_commune": "LA GRAND COMBE", "coordonnees_gps": [44.216874821, 4.00813829551]}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c18fec7631f0bdb51e4ec007de65ff7b21c87f2", "fields": {"nom_de_la_commune": "JUNAS", "libell_d_acheminement": "JUNAS", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30136"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270bd1494eec8485b9418464ccfa3e793fd5129c", "fields": {"nom_de_la_commune": "LAVAL PRADEL", "libell_d_acheminement": "LAVAL PRADEL", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30142"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e0f28677a45e9f6bd9589276852c2b40edc981", "fields": {"nom_de_la_commune": "LAVAL ST ROMAN", "libell_d_acheminement": "LAVAL ST ROMAN", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30143"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda7cfd1124a5711f26a1ed285cb1e6e19a9d819", "fields": {"nom_de_la_commune": "LEDENON", "libell_d_acheminement": "LEDENON", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30145"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4653dd87907748efdbf747da3604bd5893975d", "fields": {"nom_de_la_commune": "LUSSAN", "libell_d_acheminement": "LUSSAN", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30151"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0325ab12f87d6d32a852d9a11432b4a6734e01e9", "fields": {"nom_de_la_commune": "MANDAGOUT", "libell_d_acheminement": "MANDAGOUT", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30154"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fff427b34830feba0559371830bc6546b52a2d5", "fields": {"nom_de_la_commune": "MANDUEL", "libell_d_acheminement": "MANDUEL", "code_postal": "30129", "coordonnees_gps": [43.8162096592, 4.49752945444], "code_commune_insee": "30155"}, "geometry": {"type": "Point", "coordinates": [4.49752945444, 43.8162096592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2f8a1c8b5f7f08fe0c30657c5083b47f51766d", "fields": {"nom_de_la_commune": "MARS", "libell_d_acheminement": "MARS", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30157"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b849d28947d00fafb05c62a646fd80da4851408", "fields": {"nom_de_la_commune": "MARUEJOLS LES GARDON", "libell_d_acheminement": "MARUEJOLS LES GARDON", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30160"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37e40d54c1e132c403ea64084d5aaa903c50350", "fields": {"nom_de_la_commune": "MOLIERES SUR CEZE", "libell_d_acheminement": "MOLIERES SUR CEZE", "code_postal": "30410", "coordonnees_gps": [44.2684552462, 4.15312879608], "code_commune_insee": "30171"}, "geometry": {"type": "Point", "coordinates": [4.15312879608, 44.2684552462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15c128efb51a512ec5fa9e953589e2f0ed7ba0a", "fields": {"nom_de_la_commune": "MONTFRIN", "libell_d_acheminement": "MONTFRIN", "code_postal": "30490", "coordonnees_gps": [43.8751825691, 4.59187679529], "code_commune_insee": "30179"}, "geometry": {"type": "Point", "coordinates": [4.59187679529, 43.8751825691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f79b3698deb3f0e15d5b784cf90bfb7d36184c0", "fields": {"nom_de_la_commune": "MONTPEZAT", "libell_d_acheminement": "MONTPEZAT", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30182"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cc053f8db327c0a55ff7fd4df314f2bccc19a4", "fields": {"nom_de_la_commune": "MUS", "libell_d_acheminement": "MUS", "code_postal": "30121", "coordonnees_gps": [43.7368668465, 4.2022674573], "code_commune_insee": "30185"}, "geometry": {"type": "Point", "coordinates": [4.2022674573, 43.7368668465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14850c9df08db41b3aa091e90ae8160b9f5235a", "fields": {"nom_de_la_commune": "NAGES ET SOLORGUES", "libell_d_acheminement": "NAGES ET SOLORGUES", "code_postal": "30114", "coordonnees_gps": [43.7816107719, 4.23187621337], "code_commune_insee": "30186"}, "geometry": {"type": "Point", "coordinates": [4.23187621337, 43.7816107719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71208c36e152eb66785b7768c54b9122e84d075", "fields": {"nom_de_la_commune": "PEYREMALE", "libell_d_acheminement": "PEYREMALE", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30194"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe533443d18aa95150415b58247b5c24f0071581", "fields": {"nom_de_la_commune": "LES PLANTIERS", "libell_d_acheminement": "LES PLANTIERS", "code_postal": "30122", "coordonnees_gps": [44.1081445505, 3.71317003756], "code_commune_insee": "30198"}, "geometry": {"type": "Point", "coordinates": [3.71317003756, 44.1081445505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2f49fa3af0467e940133a7834c7b9483ccda09", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30199"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75858b2e80ba22b6411cdb1a17f593609484b15", "fields": {"nom_de_la_commune": "PONTEILS ET BRESIS", "libell_d_acheminement": "PONTEILS ET BRESIS", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30201"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453793f657acf7fb74b77f3c1628d0e43c667cfa", "fields": {"nom_de_la_commune": "PORTES", "libell_d_acheminement": "PORTES", "code_postal": "30530", "coordonnees_gps": [44.2835677648, 3.99804352323], "code_commune_insee": "30203"}, "geometry": {"type": "Point", "coordinates": [3.99804352323, 44.2835677648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ce35c5b7e8510d44cbeb4974c5198975eb0ef1", "fields": {"nom_de_la_commune": "REVENS", "libell_d_acheminement": "REVENS", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30213"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02c558b9c290dfca9c073db59bf3c4f789d3abc", "fields": {"nom_de_la_commune": "ROGUES", "libell_d_acheminement": "ROGUES", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30219"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b837fbbfea5127b9d7a716b3018027d8cf93f97", "fields": {"nom_de_la_commune": "ROQUEDUR", "libell_d_acheminement": "ROQUEDUR", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30220"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2fe2cf6b68d49b2b5e890d8486858918fb24150", "fields": {"nom_de_la_commune": "STE ANASTASIE", "libell_d_acheminement": "STE ANASTASIE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30228"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f5ddbb89a885be511ac7b39db1b3a04a394777", "fields": {"nom_de_la_commune": "ST BENEZET", "libell_d_acheminement": "ST BENEZET", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30234"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2832b4ab42a803ec082e919845abd4db2f630296", "fields": {"nom_de_la_commune": "ST BRESSON", "libell_d_acheminement": "ST BRESSON", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30238"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14141d4d625cd1a7355d32be442111e527841d1e", "fields": {"nom_de_la_commune": "ST CHRISTOL LES ALES", "libell_d_acheminement": "ST CHRISTOL LES ALES", "code_postal": "30380", "coordonnees_gps": [44.0840579112, 4.07627961526], "code_commune_insee": "30243"}, "geometry": {"type": "Point", "coordinates": [4.07627961526, 44.0840579112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea797d8f70bf730395c7d46416b50bb3b3ded4df", "fields": {"nom_de_la_commune": "ST COME ET MARUEJOLS", "libell_d_acheminement": "ST COME ET MARUEJOLS", "code_postal": "30870", "coordonnees_gps": [43.8342757187, 4.20744229546], "code_commune_insee": "30245"}, "geometry": {"type": "Point", "coordinates": [4.20744229546, 43.8342757187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb0d491fa93a9ec85c2a5b075ff6616dbdc8304", "fields": {"nom_de_la_commune": "ST DIONISY", "libell_d_acheminement": "ST DIONISY", "code_postal": "30980", "coordonnees_gps": [43.8042643595, 4.24666861732], "code_commune_insee": "30249"}, "geometry": {"type": "Point", "coordinates": [4.24666861732, 43.8042643595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989edb919388579811ae661b223bfec65918cf11", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30256"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6831522ccc7452cd91198f4fbf43d487d59f6e58", "fields": {"nom_de_la_commune": "ST JEAN DE VALERISCLE", "libell_d_acheminement": "ST JEAN DE VALERISCLE", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30268"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b304791d2802d4976e3e204c752328da75b66324", "fields": {"nom_de_la_commune": "ST JEAN DU PIN", "libell_d_acheminement": "ST JEAN DU PIN", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30270"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e2d10fb7ffca480bcdbcac1e9d2c3e96139168", "fields": {"nom_de_la_commune": "ST JULIEN DE PEYROLAS", "libell_d_acheminement": "ST JULIEN DE PEYROLAS", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30273"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36efb8da3a407ef81b815652b9e0284bd6804af4", "fields": {"nom_de_la_commune": "ST JULIEN LES ROSIERS", "libell_d_acheminement": "ST JULIEN LES ROSIERS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30274"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a9f9f52a42e2414f7c6b0bc177622a03bad011", "fields": {"nom_de_la_commune": "ST JUST ET VACQUIERES", "libell_d_acheminement": "ST JUST ET VACQUIERES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30275"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71481638259c0e5aa7eada9ccb2abc8c1cb4ce65", "fields": {"nom_de_la_commune": "ST LAURENT D AIGOUZE", "libell_d_acheminement": "ST LAURENT D AIGOUZE", "code_postal": "30220", "coordonnees_gps": [43.5627760713, 4.22023448009], "code_commune_insee": "30276"}, "geometry": {"type": "Point", "coordinates": [4.22023448009, 43.5627760713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12842dc56448c794a031c7fde615e81e4923302", "fields": {"nom_de_la_commune": "ST MAMERT DU GARD", "libell_d_acheminement": "ST MAMERT DU GARD", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30281"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae15067b7ef136d52553604b139cf69e22bc98c", "fields": {"nom_de_la_commune": "ST MAURICE DE CAZEVIEILLE", "libell_d_acheminement": "ST MAURICE DE CAZEVIEILLE", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30285"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84df13917e3122c4aca9e986be97541cd447c058", "fields": {"nom_de_la_commune": "ST MICHEL D EUZET", "libell_d_acheminement": "ST MICHEL D EUZET", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30287"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5863565e83d2cd43345a102731938be5b652b4a0", "fields": {"nom_de_la_commune": "ST NAZAIRE", "libell_d_acheminement": "ST NAZAIRE", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30288"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0de3aab8c80df2002f0cc95e8df23f1d96c27f3", "fields": {"nom_de_la_commune": "ST QUENTIN LA POTERIE", "libell_d_acheminement": "ST QUENTIN LA POTERIE", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30295"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcb9276f9116019e5ff52230c950248c5d2ed10", "fields": {"nom_de_la_commune": "ST SAUVEUR CAMPRIEU", "libell_d_acheminement": "ST SAUVEUR CAMPRIEU", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30297"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6890d874d7b0fc038d4959b488a9fb27a08ada86", "fields": {"code_postal": "30750", "code_commune_insee": "30297", "libell_d_acheminement": "ST SAUVEUR CAMPRIEU", "ligne_5": "CAMPRIEU", "nom_de_la_commune": "ST SAUVEUR CAMPRIEU", "coordonnees_gps": [44.0925479958, 3.41838052673]}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a214a1b35dbc3ec5d0696adfdd317410c5347fc", "fields": {"nom_de_la_commune": "SALINELLES", "libell_d_acheminement": "SALINELLES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30306"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f711bb1a80b00744ea2bcfe2608e663021f38e63", "fields": {"nom_de_la_commune": "SENECHAS", "libell_d_acheminement": "SENECHAS", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30316"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736c88e73e6dfc18688b68f58c064afb26191c4a", "fields": {"nom_de_la_commune": "SERVAS", "libell_d_acheminement": "SERVAS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30318"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53afd10c32b44399f462228a89b49685e2c4fb3f", "fields": {"nom_de_la_commune": "SERVIERS ET LABAUME", "libell_d_acheminement": "SERVIERS ET LABAUME", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30319"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3908a58afbf7eb7ffd10087fbf64cdcfedd49cf2", "fields": {"nom_de_la_commune": "SOMMIERES", "libell_d_acheminement": "SOMMIERES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30321"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba73db874cba7d253a9ebe08326b89f349db1074", "fields": {"nom_de_la_commune": "SOUSTELLE", "libell_d_acheminement": "SOUSTELLE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30323"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f329591ba43491be42c662cb0d873767d5ee6091", "fields": {"nom_de_la_commune": "SUMENE", "libell_d_acheminement": "SUMENE", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30325"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e739dd42fe09b0425a3253ab4243098f1659916", "fields": {"nom_de_la_commune": "THARAUX", "libell_d_acheminement": "THARAUX", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30327"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2384aeb49eac46332535b2e95698610594d9e339", "fields": {"nom_de_la_commune": "THEZIERS", "libell_d_acheminement": "THEZIERS", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30328"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5315fb031e94986e4c9bf74dcc7e6326336ec6", "fields": {"nom_de_la_commune": "TORNAC", "libell_d_acheminement": "TORNAC", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30330"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "642b60282a010fbeb7ef5a3be5d219ba53ffbc1d", "fields": {"nom_de_la_commune": "VABRES", "libell_d_acheminement": "VABRES", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30335"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21996fe6f4eeda7cd9a97aa2a82843a06fbb9736", "fields": {"code_postal": "30600", "code_commune_insee": "30341", "libell_d_acheminement": "VAUVERT", "ligne_5": "MONTCALM", "nom_de_la_commune": "VAUVERT", "coordonnees_gps": [43.6360200976, 4.3019597877]}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe90711856c7ec92b5955b80d384903569fface", "fields": {"nom_de_la_commune": "VEZENOBRES", "libell_d_acheminement": "VEZENOBRES", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30348"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e651c7c3b979c15dbbbe1a4257fe65944bcaa257", "fields": {"nom_de_la_commune": "VILLEVIEILLE", "libell_d_acheminement": "VILLEVIEILLE", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30352"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4415b0574ae99d277ccab8c4424a3cf25c6ee07", "fields": {"nom_de_la_commune": "ST PAUL LES FONTS", "libell_d_acheminement": "ST PAUL LES FONTS", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30355"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469efeceb0db56c00b3f4f45c5b126a4ad6dcf71", "fields": {"nom_de_la_commune": "AYGUESVIVES", "libell_d_acheminement": "AYGUESVIVES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31004"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00782fda050a72dbe0b27db276cf81f7bae80fb", "fields": {"nom_de_la_commune": "ARBAS", "libell_d_acheminement": "ARBAS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31011"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3ff15a438c05bc21d96b607b18647a1ad56a9a", "fields": {"nom_de_la_commune": "ARDIEGE", "libell_d_acheminement": "ARDIEGE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31013"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799c90e353b1609589dc187f161f6c21d685142a", "fields": {"nom_de_la_commune": "AURIN", "libell_d_acheminement": "AURIN", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31029"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa6c9c737794e5eccf867d7a249f7bc6c1408df", "fields": {"nom_de_la_commune": "AUSSONNE", "libell_d_acheminement": "AUSSONNE", "code_postal": "31840", "coordonnees_gps": [43.6853114113, 1.33718819111], "code_commune_insee": "31032"}, "geometry": {"type": "Point", "coordinates": [1.33718819111, 43.6853114113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4746439107b70ae4eb07c2c65bcea86b8c1f6d01", "fields": {"nom_de_la_commune": "AUZIELLE", "libell_d_acheminement": "AUZIELLE", "code_postal": "31650", "coordonnees_gps": [43.5547223319, 1.54753565987], "code_commune_insee": "31036"}, "geometry": {"type": "Point", "coordinates": [1.54753565987, 43.5547223319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d6e967b3ef047d6b7af40502d3a44ec0aab5b1", "fields": {"nom_de_la_commune": "BAGIRY", "libell_d_acheminement": "BAGIRY", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31041"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e74888d198a195bc656afa3bae5fea2b1708a5", "fields": {"nom_de_la_commune": "BEAUZELLE", "libell_d_acheminement": "BEAUZELLE", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31056"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236d8c840f4de0862a4465e221352ee6b8b9c2d9", "fields": {"nom_de_la_commune": "BELBERAUD", "libell_d_acheminement": "BELBERAUD", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31057"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94fd64828f24aca352f2275cdfa003ddc68c3acb", "fields": {"nom_de_la_commune": "BELBEZE EN COMMINGES", "libell_d_acheminement": "BELBEZE EN COMMINGES", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31059"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9a810c789475342e9e274949620ebc5e815f8f", "fields": {"nom_de_la_commune": "BILLIERE", "libell_d_acheminement": "BILLIERE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31068"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaf397531f32b401a52afaa33fdc4557f5f4c9e", "fields": {"nom_de_la_commune": "BOUSSENS", "libell_d_acheminement": "BOUSSENS", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31084"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3327be6716cffcaaae501034ac658fd75535d166", "fields": {"nom_de_la_commune": "BRAGAYRAC", "libell_d_acheminement": "BRAGAYRAC", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31087"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29fccd6bca6b1e67bd8049450ef2b7b473ebccd", "fields": {"nom_de_la_commune": "CAMBIAC", "libell_d_acheminement": "CAMBIAC", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31102"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c201a85f6f494f81c3cb3482011815b85034316a", "fields": {"nom_de_la_commune": "CANENS", "libell_d_acheminement": "CANENS", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31103"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "423eb8203c0c272091d2b38b92cb0d759a363e7b", "fields": {"nom_de_la_commune": "CARDEILHAC", "libell_d_acheminement": "CARDEILHAC", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31108"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276ba4cb165d7b6cad02fdae73bc40871d745247", "fields": {"nom_de_la_commune": "CASTELGINEST", "libell_d_acheminement": "CASTELGINEST", "code_postal": "31780", "coordonnees_gps": [43.6972106027, 1.43522045164], "code_commune_insee": "31116"}, "geometry": {"type": "Point", "coordinates": [1.43522045164, 43.6972106027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5960902b3ceb2cc5a33f847ccc1e48494dab010", "fields": {"nom_de_la_commune": "CASTERA VIGNOLES", "libell_d_acheminement": "CASTERA VIGNOLES", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31121"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f80675a699476dfced5c31f2bc74f187d32b93", "fields": {"nom_de_la_commune": "CAUBOUS", "libell_d_acheminement": "CAUBOUS", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31127"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ee5251b400eb9e3079126e182a4e2c37b8784a", "fields": {"nom_de_la_commune": "CAUJAC", "libell_d_acheminement": "CAUJAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31128"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ed542a38be3b4e37ddf1b43954e764994d813f", "fields": {"nom_de_la_commune": "CAZAUX LAYRISSE", "libell_d_acheminement": "CAZAUX LAYRISSE", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31132"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df54e98ce2d30d61c99a442ee65cb72d8b5469ba", "fields": {"nom_de_la_commune": "BEFFIA", "libell_d_acheminement": "BEFFIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39045"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccdffacacfea639026e06af3dddb5b5c7a5ee792", "fields": {"nom_de_la_commune": "BELLECOMBE", "libell_d_acheminement": "BELLECOMBE", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39046"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f43a025f58aaa867ee7cde2eb4ada46d0e0c6f", "fields": {"nom_de_la_commune": "BESAIN", "libell_d_acheminement": "BESAIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39050"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caff72a5dd172b8b2174f86554106b919d8a4148", "fields": {"nom_de_la_commune": "BIEF DU FOURG", "libell_d_acheminement": "BIEF DU FOURG", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39053"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015274a154f8529f89fc7027daf3993aa10336f0", "fields": {"nom_de_la_commune": "BOIS D AMONT", "libell_d_acheminement": "BOIS D AMONT", "code_postal": "39220", "coordonnees_gps": [46.4870347389, 6.06467102901], "code_commune_insee": "39059"}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609a2603331a226e07ba94501a470378aff5554c", "fields": {"nom_de_la_commune": "LA BRETENIERE", "libell_d_acheminement": "LA BRETENIERE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39076"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92c0a050b886aa23d97c3b790a60bec71efc5eb", "fields": {"nom_de_la_commune": "BRETENIERES", "libell_d_acheminement": "BRETENIERES", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39077"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693f2ac8eb15cebad2a0f562644d6f1f98931ab2", "fields": {"nom_de_la_commune": "BREVANS", "libell_d_acheminement": "BREVANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39078"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a426fc403a6ff78c7884fa2c363f41334a1cdb", "fields": {"nom_de_la_commune": "BUVILLY", "libell_d_acheminement": "BUVILLY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39081"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadc2ee44a6e03ade2399093301a355490f864c1", "fields": {"code_postal": "39240", "code_commune_insee": "39086", "libell_d_acheminement": "CERNON", "ligne_5": "VIREMONT", "nom_de_la_commune": "CERNON", "coordonnees_gps": [46.3647092141, 5.55936987641]}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1829bd10de4c8b52876af8a0ca702abc599a637", "fields": {"nom_de_la_commune": "CHAINEE DES COUPIS", "libell_d_acheminement": "CHAINEE DES COUPIS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39090"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eacf3955d619bac9ec8af3aa15e08fd74089475d", "fields": {"nom_de_la_commune": "CHAMBERIA", "libell_d_acheminement": "CHAMBERIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39092"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68415d5c9345f8f3da5894724b54f6fc93390680", "fields": {"nom_de_la_commune": "CHARNOD", "libell_d_acheminement": "CHARNOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39111"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09fad38dbba0c1214e50ee8c4f9b870a80d1ba1d", "fields": {"nom_de_la_commune": "CHATELAY", "libell_d_acheminement": "CHATELAY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39117"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649afe17e9375b5d0a1ac0e2a28affd6d0d46fd3", "fields": {"nom_de_la_commune": "LA CHAUMUSSE", "libell_d_acheminement": "LA CHAUMUSSE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39126"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7453c232b1fc0ba479a16c1cd7f4b46a24ef7c9a", "fields": {"nom_de_la_commune": "CHAUSSIN", "libell_d_acheminement": "CHAUSSIN", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39128"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26afe650cf0c030ee8cf22c75a671df319b272c", "fields": {"nom_de_la_commune": "LA CHAUX DU DOMBIEF", "libell_d_acheminement": "CHAUX DU DOMBIEF", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39131"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc28b709ada011bc2bbfa805d212a958ce449b0", "fields": {"nom_de_la_commune": "CHILLE", "libell_d_acheminement": "CHILLE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39145"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ccbdd89fa77b9c2d2d8fa2af394f3c7559b005", "fields": {"nom_de_la_commune": "COURBOUZON", "libell_d_acheminement": "COURBOUZON", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39169"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54bd8b8a7098dd6a8da456c3cf0cba3ff870ffe", "fields": {"code_postal": "39570", "code_commune_insee": "39177", "libell_d_acheminement": "HAUTEROCHE", "ligne_5": "MIREBEL", "nom_de_la_commune": "HAUTEROCHE", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45d6455f06a957596df425717735799a74a061a", "fields": {"nom_de_la_commune": "LES CROZETS", "libell_d_acheminement": "LES CROZETS", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39184"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad62076789130edb512307369dea40ba9d385c3", "fields": {"nom_de_la_commune": "CUISIA", "libell_d_acheminement": "CUISIA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39185"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f52e597439fd5f2be9d59ac7cc9d1904c73617", "fields": {"nom_de_la_commune": "DAMPARIS", "libell_d_acheminement": "DAMPARIS", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39189"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43fdbe549adc391dfaf476fbd355aacd32e72272", "fields": {"code_postal": "39700", "code_commune_insee": "39190", "libell_d_acheminement": "DAMPIERRE", "ligne_5": "CHATEAUNEUF", "nom_de_la_commune": "DAMPIERRE", "coordonnees_gps": [47.1360717956, 5.65800012561]}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ae73df58af764e8f15b5fc928d6812fb4134f9", "fields": {"code_postal": "39100", "code_commune_insee": "39198", "libell_d_acheminement": "DOLE", "ligne_5": "ST YLIE", "nom_de_la_commune": "DOLE", "coordonnees_gps": [47.081657682, 5.47646341998]}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fa1d096fe70c06bc61664d60998f0035c1cd27", "fields": {"nom_de_la_commune": "DOUCIER", "libell_d_acheminement": "DOUCIER", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39201"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc9fda900482f8fa70818440968f1d3c84927f4", "fields": {"nom_de_la_commune": "DOURNON", "libell_d_acheminement": "DOURNON", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39202"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6acfc09a10b1f9f5377d05004e468bed70a49455", "fields": {"code_postal": "39700", "code_commune_insee": "39205", "libell_d_acheminement": "ECLANS NENON", "ligne_5": "NENON", "nom_de_la_commune": "ECLANS NENON", "coordonnees_gps": [47.1360717956, 5.65800012561]}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a56ab747ec2dbbf5b3bef5a12b6aced740c1036", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "EPY LANERIA", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8051a5d17e0d421afc78cbf8afc8d8f19b31a841", "fields": {"nom_de_la_commune": "LES ESSARDS TAIGNEVAUX", "libell_d_acheminement": "LES ESSARDS TAIGNEVAUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39211"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0d8ae7e59dc43de34cf31de77bb3a4e9b6b109", "fields": {"nom_de_la_commune": "ESSERVAL TARTRE", "libell_d_acheminement": "ESSERVAL TARTRE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39214"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af17197d3b88c78da1e78dd412068a9bc41fb3c9", "fields": {"nom_de_la_commune": "ETREPIGNEY", "libell_d_acheminement": "ETREPIGNEY", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39218"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad77640791af61b7a0397d7f188dbc63fa4bb58b", "fields": {"nom_de_la_commune": "FALLETANS", "libell_d_acheminement": "FALLETANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39220"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0747b0ff8aa38668309d2005f7ebf0e487338445", "fields": {"nom_de_la_commune": "LE FIED", "libell_d_acheminement": "LE FIED", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39225"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83003caf4d67b7406bd4a5036a7dc8687d10b5c0", "fields": {"nom_de_la_commune": "FONTENU", "libell_d_acheminement": "FONTENU", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39230"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a414928f5e0c9a72d036f2d3c4337a3f1c6537d", "fields": {"nom_de_la_commune": "FORT DU PLASNE", "libell_d_acheminement": "FORT DU PLASNE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39232"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6daf3d208c78e33cbd9ab714695c19def6ca185", "fields": {"nom_de_la_commune": "FRAROZ", "libell_d_acheminement": "FRAROZ", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39237"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb64660d6552fb8eb9240dbc20324e81c85a969", "fields": {"nom_de_la_commune": "GERMIGNEY", "libell_d_acheminement": "GERMIGNEY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39249"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9edaa942b11beb8a7cac9983628cd9ac19b13144", "fields": {"nom_de_la_commune": "GEVRY", "libell_d_acheminement": "GEVRY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39252"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d27f4a4da82a656b4355f1555ca87af3848e01e", "fields": {"nom_de_la_commune": "GRANDE RIVIERE", "libell_d_acheminement": "GRANDE RIVIERE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39258"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d378796feb977f61a0eb3dd733370db0474c54", "fields": {"nom_de_la_commune": "GRAYE ET CHARNAY", "libell_d_acheminement": "GRAYE ET CHARNAY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39261"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c984e21d8dfea0bcaa1e4c1d0f78f40d22e6b2", "fields": {"nom_de_la_commune": "GRUSSE", "libell_d_acheminement": "GRUSSE", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39264"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806af930fe46b5078b597557d00ad312c708a9b7", "fields": {"nom_de_la_commune": "LARNAUD", "libell_d_acheminement": "LARNAUD", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39279"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e506aa085a1ab6a172fbe895b943c51b19247054", "fields": {"nom_de_la_commune": "LE LATET", "libell_d_acheminement": "LE LATET", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39281"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab4f7efb69d9cfa690a47f2250cf4248459de8c", "fields": {"nom_de_la_commune": "LAVANCIA EPERCY", "libell_d_acheminement": "LAVANCIA EPERCY", "code_postal": "01590", "coordonnees_gps": [46.3238684456, 5.65548376535], "code_commune_insee": "39283"}, "geometry": {"type": "Point", "coordinates": [5.65548376535, 46.3238684456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "082a2af27f00b11ddcab61db1fd63994939d4f83", "fields": {"code_postal": "39170", "code_commune_insee": "39286", "libell_d_acheminement": "LAVANS LES ST CLAUDE", "ligne_5": "LIZON", "nom_de_la_commune": "LAVANS LES ST CLAUDE", "coordonnees_gps": [46.4122748444, 5.79038088139]}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1d88cc725a1e0f0ec65e631005636698c703e1", "fields": {"nom_de_la_commune": "LAVANS SUR VALOUSE", "libell_d_acheminement": "LAVANS SUR VALOUSE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39287"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca23869d8a526d8b7f79afa96d25c02c32106b58", "fields": {"nom_de_la_commune": "LECT", "libell_d_acheminement": "LECT", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39289"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8720a0204e65c153f7c04d4bc521021e23cd7671", "fields": {"nom_de_la_commune": "LENT", "libell_d_acheminement": "LENT", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39292"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebeb713915b28047ba13af2ad177425338b4afd", "fields": {"nom_de_la_commune": "LESCHERES", "libell_d_acheminement": "LESCHERES", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39293"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56feb22a7d3eb3d25d29de3094e67076f83a2bd7", "fields": {"nom_de_la_commune": "LOISIA", "libell_d_acheminement": "LOISIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39295"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8e026c0ef11b3f4b5d22287a70fe35f4caeffe", "fields": {"nom_de_la_commune": "LOMBARD", "libell_d_acheminement": "LOMBARD", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39296"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6e5d8a520ffc8f907e6e5fac1fdbd665cf5746", "fields": {"nom_de_la_commune": "LONS LE SAUNIER", "libell_d_acheminement": "LONS LE SAUNIER", "code_postal": "39000", "coordonnees_gps": [46.6748423385, 5.55797705223], "code_commune_insee": "39300"}, "geometry": {"type": "Point", "coordinates": [5.55797705223, 46.6748423385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d59aeecc94288f5796d0338f1367e0893f094d99", "fields": {"nom_de_la_commune": "LE LOUVEROT", "libell_d_acheminement": "LE LOUVEROT", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39304"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2e2628a88f3c28916cff8065d0bd37c1f113ab", "fields": {"nom_de_la_commune": "LA LOYE", "libell_d_acheminement": "LA LOYE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39305"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71158ddc5ff11077f398c161bcc0db43218591ee", "fields": {"nom_de_la_commune": "MARTIGNA", "libell_d_acheminement": "MARTIGNA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39318"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7d4499aae89b1b3e4433956cc1b68eb09bcbc0", "fields": {"nom_de_la_commune": "MAYNAL", "libell_d_acheminement": "MAYNAL", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39320"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5606c9b91bc82974496bdb6b52767dddbe7fc5bc", "fields": {"nom_de_la_commune": "MENETRUX EN JOUX", "libell_d_acheminement": "MENETRUX EN JOUX", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39322"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ac3708e9894b86a6ede83779400fe2f7a2b548", "fields": {"code_postal": "39250", "code_commune_insee": "39329", "libell_d_acheminement": "MIEGES", "ligne_5": "MOLPRE", "nom_de_la_commune": "MIEGES", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffb4079849af8d568d78c675713f5c0b297cb4b", "fields": {"nom_de_la_commune": "MOIRANS EN MONTAGNE", "libell_d_acheminement": "MOIRANS EN MONTAGNE", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39333"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4f488469dff8cdd9afa56f14e6e91778c3b4f7", "fields": {"nom_de_la_commune": "MOLAIN", "libell_d_acheminement": "MOLAIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39336"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2943c7db2631ec2c8b66605731c74869109c49a", "fields": {"nom_de_la_commune": "MOLAY", "libell_d_acheminement": "MOLAY", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39338"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aa3428401900ae1649e730ed9c8d5352d098e8", "fields": {"nom_de_la_commune": "MONNET LA VILLE", "libell_d_acheminement": "MONNET LA VILLE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39344"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f943561982fcb6c0fbb4bcaa586883eb4dc9a0cb", "fields": {"nom_de_la_commune": "MONNIERES", "libell_d_acheminement": "MONNIERES", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39345"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c129e45be57ad4171867ef1d63050fa1062e952", "fields": {"nom_de_la_commune": "MONTAIGU", "libell_d_acheminement": "MONTAIGU", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39348"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d807b41b7fb933344554ac7fa7588f3ed357638", "fields": {"nom_de_la_commune": "MONTEPLAIN", "libell_d_acheminement": "MONTEPLAIN", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39352"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fa8b6cb91edc67a849d42768fc619a9e404235", "fields": {"nom_de_la_commune": "MONTIGNY LES ARSURES", "libell_d_acheminement": "MONTIGNY LES ARSURES", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39355"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde25f7462156951d363fc4b18dcd445fca3a19f", "fields": {"nom_de_la_commune": "MONTMOROT", "libell_d_acheminement": "MONTMOROT", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39362"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d76fd0f5f5357774b759965f2d744c16985e4e", "fields": {"nom_de_la_commune": "MORBIER", "libell_d_acheminement": "MORBIER", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39367"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c2dddf1a0145c5511a21f2129e53d84f3173af", "fields": {"nom_de_la_commune": "MOUCHARD", "libell_d_acheminement": "MOUCHARD", "code_postal": "39330", "coordonnees_gps": [46.9882126425, 5.81136152584], "code_commune_insee": "39370"}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf92809d08397426f8d5d65c56b1c2b28912c720", "fields": {"code_postal": "39160", "code_commune_insee": "39378", "libell_d_acheminement": "LES TROIS CHATEAUX", "ligne_5": "L AUBEPIN", "nom_de_la_commune": "LES TROIS CHATEAUX", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0331e75f9e5f81d24afc00bc35e994fa4f6b43e2", "fields": {"nom_de_la_commune": "NANCE", "libell_d_acheminement": "NANCE", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39379"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ffe00abeac9b6483d8051eb9c4ba8f903d9e1a", "fields": {"nom_de_la_commune": "ORGELET", "libell_d_acheminement": "ORGELET", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39397"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ee1c7796500dc1dd496f6f33f29af524aab4f8", "fields": {"nom_de_la_commune": "OUR", "libell_d_acheminement": "OUR", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39400"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb44e888a94f07dc6d71e9cd8d30133239bfee5f", "fields": {"nom_de_la_commune": "PAGNOZ", "libell_d_acheminement": "PAGNOZ", "code_postal": "39330", "coordonnees_gps": [46.9882126425, 5.81136152584], "code_commune_insee": "39403"}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81fcc541b50f04b1438d353f04563cbc32e429f", "fields": {"nom_de_la_commune": "PARCEY", "libell_d_acheminement": "PARCEY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39405"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff571f83981ec75b4f15107cfb93590630183ef", "fields": {"nom_de_la_commune": "PASSENANS", "libell_d_acheminement": "PASSENANS", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39407"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e34f25f6397bfe2616d07210e1d89615fcc769", "fields": {"nom_de_la_commune": "PATORNAY", "libell_d_acheminement": "PATORNAY", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39408"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b66e43d8e36a0fed380c3b54f9bbc2826a13f75", "fields": {"nom_de_la_commune": "LE PETIT MERCEY", "libell_d_acheminement": "LE PETIT MERCEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39414"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def45ea35f40b5ff79354bec8d9f43c4da1bb2bd", "fields": {"nom_de_la_commune": "PETIT NOIR", "libell_d_acheminement": "PETIT NOIR", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39415"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91eb02c3fd5942d66aaf9d82a83cf5462d0036de", "fields": {"nom_de_la_commune": "PILLEMOINE", "libell_d_acheminement": "PILLEMOINE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39419"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e90d01bbd14d7385de9a9be943e5a8045984fc1", "fields": {"code_postal": "39150", "code_commune_insee": "39424", "libell_d_acheminement": "LES PLANCHES EN MONTAGNE", "ligne_5": "LA PERRENA", "nom_de_la_commune": "LES PLANCHES EN MONTAGNE", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e07c01ddb82b9bb8f1bc2ee3311a6af1e4c4c45", "fields": {"nom_de_la_commune": "POINTRE", "libell_d_acheminement": "POINTRE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39432"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8600221916457d6de41d4fbb51ea31a634d27917", "fields": {"nom_de_la_commune": "PONT D HERY", "libell_d_acheminement": "PONT D HERY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39436"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98889f5e1ddf758faa997f66e5e97e6a8c83dadd", "fields": {"nom_de_la_commune": "PONT DU NAVOY", "libell_d_acheminement": "PONT DU NAVOY", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39437"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91b790937880987ab11826377ef9307b6a8c2755", "fields": {"nom_de_la_commune": "PORT LESNEY", "libell_d_acheminement": "PORT LESNEY", "code_postal": "39330", "coordonnees_gps": [46.9882126425, 5.81136152584], "code_commune_insee": "39439"}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547e8fde042273f82b46ba4d1a1520978466427e", "fields": {"code_postal": "39400", "code_commune_insee": "39441", "libell_d_acheminement": "PREMANON", "ligne_5": "LA DOYE", "nom_de_la_commune": "PREMANON", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e082ad0abe95a30847524fa8f9147f1b14eeb6d", "fields": {"nom_de_la_commune": "PUBLY", "libell_d_acheminement": "PUBLY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39445"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd5c8b5ec0e45af00840c9c6fa7f51ec741ba690", "fields": {"nom_de_la_commune": "RAINANS", "libell_d_acheminement": "RAINANS", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39449"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1eb80aa6f74a5f9d9340d7290ab0a49f5c4a77", "fields": {"nom_de_la_commune": "RECANOZ", "libell_d_acheminement": "RECANOZ", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39454"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd43546205c9827b2b6aa50af10f38615c354476", "fields": {"nom_de_la_commune": "ROGNA", "libell_d_acheminement": "ROGNA", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39463"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e9f446401ea6480016853307aace0962d0ef60", "fields": {"nom_de_la_commune": "ROSAY", "libell_d_acheminement": "ROSAY", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39466"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1411b7fd8267a2869124ebe39a91c830d8a5eb", "fields": {"nom_de_la_commune": "ROUFFANGE", "libell_d_acheminement": "ROUFFANGE", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39469"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc9faba39072105854ef13ef86a735fd68fc585", "fields": {"nom_de_la_commune": "LES ROUSSES", "libell_d_acheminement": "LES ROUSSES", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39470"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66d4403b819aad8a6c319d84c69ae22bf757629", "fields": {"nom_de_la_commune": "ST HYMETIERE", "libell_d_acheminement": "ST HYMETIERE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39483"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6eb1c1a2d09d11b991edfee63b53731b7ae0c2", "fields": {"nom_de_la_commune": "ST JEAN D ETREUX", "libell_d_acheminement": "ST JEAN D ETREUX", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39484"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60b65439ddfbbe8a50ac9eb8195d9e5042bf972", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39492"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad2a6e4c3b3959f4e82abcd1e4b4213009c0923", "fields": {"nom_de_la_commune": "SALINS LES BAINS", "libell_d_acheminement": "SALINS LES BAINS", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39500"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68956a3cbacf8a93f9a91dcb35efa27fe7c937d2", "fields": {"nom_de_la_commune": "SANTANS", "libell_d_acheminement": "SANTANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39502"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62dcccb75b7d73139e43816ed1a1b2c546e064e9", "fields": {"nom_de_la_commune": "SARROGNA", "libell_d_acheminement": "SARROGNA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39504"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a79f5ad44a5d238ab44abfb04a3f085f297379", "fields": {"nom_de_la_commune": "ST GOBERT", "libell_d_acheminement": "ST GOBERT", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02681"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41eba82cc31b6aa4a36dd4c8bed4c797fd00cb2f", "fields": {"nom_de_la_commune": "ST THOMAS", "libell_d_acheminement": "ST THOMAS", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02696"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f677c168f3bb6022a7f340b9163118c9c311c8", "fields": {"nom_de_la_commune": "SAMOUSSY", "libell_d_acheminement": "SAMOUSSY", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02697"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c61a7cdef6c07eebcb799d2903fda8b890f3da", "fields": {"nom_de_la_commune": "SOMMERON", "libell_d_acheminement": "SOMMERON", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02725"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e01a6649335b202adb2778fbbd871d37f0ae1b4", "fields": {"nom_de_la_commune": "SERGY", "libell_d_acheminement": "SERGY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02712"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d02b159371720d58947180980b1ecfcdf589464", "fields": {"nom_de_la_commune": "VILLERS SUR FERE", "libell_d_acheminement": "VILLERS SUR FERE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02816"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba5f6d4cebaa2fb9de8cdf1c55a7cc421ed128d", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02813"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd59bd3854f24af947ea85fd11d9df9b9b316f28", "fields": {"nom_de_la_commune": "VILLE SAVOYE", "libell_d_acheminement": "VILLE SAVOYE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02817"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4af5c6f6d6b65fa8f6c83d056f34d31ff0bf55", "fields": {"nom_de_la_commune": "VUILLERY", "libell_d_acheminement": "VUILLERY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02829"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa33589774cc264a8f47db53cbb71ccfcd9de561", "fields": {"nom_de_la_commune": "WASSIGNY", "libell_d_acheminement": "WASSIGNY", "code_postal": "02630", "coordonnees_gps": [49.9922293283, 3.57095592896], "code_commune_insee": "02830"}, "geometry": {"type": "Point", "coordinates": [3.57095592896, 49.9922293283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4328c0f5588b098332736448f7c3709543222341", "fields": {"nom_de_la_commune": "AUROUER", "libell_d_acheminement": "AUROUER", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03011"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9288ac1e27e76e5195e29220d9dee142c6884ef5", "fields": {"nom_de_la_commune": "VIVAISE", "libell_d_acheminement": "VIVAISE", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02821"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358099ddfdb8240419afc370ed02464cb86ab05a", "fields": {"nom_de_la_commune": "BESSON", "libell_d_acheminement": "BESSON", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03026"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8621daad43a423c308ddc39d842ca316ba70c34f", "fields": {"nom_de_la_commune": "BOST", "libell_d_acheminement": "BOST", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03033"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ca39e8cb389d2b558b1e2bc6837fa2b1bc000b", "fields": {"nom_de_la_commune": "BERT", "libell_d_acheminement": "BERT", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03024"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31eba1f1f99f1c3c0d910fed8c44330a625a9856", "fields": {"nom_de_la_commune": "NOYANT D ALLIER", "libell_d_acheminement": "NOYANT D ALLIER", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03202"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765577049112fa29af215d152d407683afb25f11", "fields": {"nom_de_la_commune": "PARAY LE FRESIL", "libell_d_acheminement": "PARAY LE FRESIL", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03203"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "944649cb6c57183ae90ae5f01f7d5da2cc1664c2", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03208"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b115c472327c0663d96587a3e4740daff4814679", "fields": {"nom_de_la_commune": "NEURE", "libell_d_acheminement": "NEURE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03198"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686503680b67d8f3dab9f596affa67dea1030906", "fields": {"code_postal": "04530", "code_commune_insee": "04062", "libell_d_acheminement": "LA CONDAMINE CHATELARD", "ligne_5": "STE ANNE", "nom_de_la_commune": "LA CONDAMINE CHATELARD", "coordonnees_gps": [44.529721781, 6.79644418503]}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da09efe33061a8fdef58be4b4264dfec8423c5cc", "fields": {"code_postal": "04400", "code_commune_insee": "04073", "libell_d_acheminement": "ENCHASTRAYES", "ligne_5": "LE SAUZE", "nom_de_la_commune": "ENCHASTRAYES", "coordonnees_gps": [44.3554624604, 6.65679459978]}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c59d76ac9086878b32deb74cab44869e54c5a7", "fields": {"code_postal": "04270", "code_commune_insee": "04074", "libell_d_acheminement": "ENTRAGES", "ligne_5": "CHABRIERES", "nom_de_la_commune": "ENTRAGES", "coordonnees_gps": [43.9535232378, 6.23179869809]}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2912ddbcd5030fcad13545826c7875eeb39453cf", "fields": {"nom_de_la_commune": "CHATEAUNEUF VAL ST DONAT", "libell_d_acheminement": "CHATEAUNEUF VAL ST DONAT", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04053"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "022c90b9f55b6f54651a7fc4b0944a78a0432709", "fields": {"nom_de_la_commune": "CHATEAUNEUF MIRAVAIL", "libell_d_acheminement": "CHATEAUNEUF MIRAVAIL", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04051"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e7116a2caa3d7e9c23b35973e11b9c28b9cc7e", "fields": {"nom_de_la_commune": "VAL DE CHALVAGNE", "libell_d_acheminement": "VAL DE CHALVAGNE", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04043"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d393b3c3056f59bab605fd02b2e87fe171b227", "fields": {"nom_de_la_commune": "COLMARS", "libell_d_acheminement": "COLMARS LES ALPES", "code_postal": "04370", "coordonnees_gps": [44.1743215148, 6.62460542768], "code_commune_insee": "04061"}, "geometry": {"type": "Point", "coordinates": [6.62460542768, 44.1743215148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1e44a14c775967e14fc4634e180e0ab288b471", "fields": {"nom_de_la_commune": "ENTREPIERRES", "libell_d_acheminement": "ENTREPIERRES", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04075"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0548a53ddf76f9ee967dfaf84e8dca37270112b8", "fields": {"nom_de_la_commune": "CORBIERES", "libell_d_acheminement": "CORBIERES", "code_postal": "04220", "coordonnees_gps": [43.7711056931, 5.75846047346], "code_commune_insee": "04063"}, "geometry": {"type": "Point", "coordinates": [5.75846047346, 43.7711056931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e807038dd9c89c48e46f3ad591562012be6f4a", "fields": {"nom_de_la_commune": "ENTRAGES", "libell_d_acheminement": "ENTRAGES", "code_postal": "04000", "coordonnees_gps": [44.1282802436, 6.25179168531], "code_commune_insee": "04074"}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8060e9f2f1376cd7ad956bad81979a00a821ba8", "fields": {"nom_de_la_commune": "ST POURCAIN SUR BESBRE", "libell_d_acheminement": "ST POURCAIN SUR BESBRE", "code_postal": "03290", "coordonnees_gps": [46.5135121651, 3.68226349341], "code_commune_insee": "03253"}, "geometry": {"type": "Point", "coordinates": [3.68226349341, 46.5135121651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03946e7e20a1e88137e0bb2d45da9be0d589186b", "fields": {"nom_de_la_commune": "ST GERAND DE VAUX", "libell_d_acheminement": "ST GERAND DE VAUX", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03234"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455f16d9da73d409caf88ffebdae03f7eadaf29e", "fields": {"nom_de_la_commune": "ST REMY EN ROLLAT", "libell_d_acheminement": "ST REMY EN ROLLAT", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03258"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55851af9c556899b692c4a23d10e74ce8c5805f0", "fields": {"nom_de_la_commune": "ST ELOY D ALLIER", "libell_d_acheminement": "ST ELOY D ALLIER", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03228"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fdfb782a4b750cf062a4bd65b05bf06c0ff437e", "fields": {"nom_de_la_commune": "ST PIERRE LAVAL", "libell_d_acheminement": "ST PIERRE LAVAL", "code_postal": "42620", "coordonnees_gps": [46.2033046771, 3.79612534085], "code_commune_insee": "03250"}, "geometry": {"type": "Point", "coordinates": [3.79612534085, 46.2033046771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791e2a54aa22eda622b8c3f1ad687b873898ddf8", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03224"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a523103616e97cf476ee735da1294cf1d206bef", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03249"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5749ada177ae01966765eec8853dd02840721062", "fields": {"nom_de_la_commune": "ST YORRE", "libell_d_acheminement": "ST YORRE", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03264"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98b4203c5e77e4177df45d6347d0ec8c61f3898", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03242"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c505228194df61af641f0b9a9fa2d52b18c3ab15", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03240"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0943662dd6892a5bcf2203618a65ba11bf3a960c", "fields": {"code_postal": "04250", "code_commune_insee": "04023", "libell_d_acheminement": "BAYONS", "ligne_5": "REYNIER", "nom_de_la_commune": "BAYONS", "coordonnees_gps": [44.3409779854, 6.11647395481]}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0fae7c4c278b1e1b6d5d493d78b1e36b52f5b97", "fields": {"code_postal": "04250", "code_commune_insee": "04023", "libell_d_acheminement": "BAYONS", "ligne_5": "ASTOIN", "nom_de_la_commune": "BAYONS", "coordonnees_gps": [44.3409779854, 6.11647395481]}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225fd2c84a2784edb468ff8c5ecbe66a420142e9", "fields": {"nom_de_la_commune": "CASTELLANE", "libell_d_acheminement": "CASTELLANE", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04039"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6b982176c3f3cd7fdd666e0cf9ab90788cb69f", "fields": {"nom_de_la_commune": "AUBIGNOSC", "libell_d_acheminement": "AUBIGNOSC", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04013"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee88bf65fb24cb4175641a69632d0a5b3d034bb8", "fields": {"nom_de_la_commune": "BARREME", "libell_d_acheminement": "BARREME", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04022"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c406811449cf8102193d96c03220941f18d559df", "fields": {"nom_de_la_commune": "VITRAY", "libell_d_acheminement": "VITRAY", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03318"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd845ba9973c7f6c9f0446982eed6b76d43b158", "fields": {"nom_de_la_commune": "AIGLUN", "libell_d_acheminement": "AIGLUN", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04001"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1be6e3ee314041994b967f314e787650d4d45f", "fields": {"nom_de_la_commune": "ALLONS", "libell_d_acheminement": "ALLONS", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04005"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e829cb3dd5ccb3b368673ef03d3bb409559091", "fields": {"nom_de_la_commune": "BARLES", "libell_d_acheminement": "BARLES", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04020"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4b76cc4ced7559af9302abcdf783752fbe6205", "fields": {"nom_de_la_commune": "AUZET", "libell_d_acheminement": "AUZET", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04017"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca4d25aee981308635633953b814fab21f11196", "fields": {"nom_de_la_commune": "VILLEFRANCHE D ALLIER", "libell_d_acheminement": "VILLEFRANCHE D ALLIER", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03315"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a154812c92c789a933ce475f602598684bcc2cc8", "fields": {"nom_de_la_commune": "TOULON SUR ALLIER", "libell_d_acheminement": "TOULON SUR ALLIER", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03286"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5b6ce9b33c9419763d3b4b79bc95b114efa9ec", "fields": {"nom_de_la_commune": "TORTEZAIS", "libell_d_acheminement": "TORTEZAIS", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03285"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8aeb5a0c5733e2e8c8d3971cd6a47a908288173", "fields": {"nom_de_la_commune": "VILLEBRET", "libell_d_acheminement": "VILLEBRET", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03314"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d859dc65a036336c746e27c6921abe0333a147ce", "fields": {"nom_de_la_commune": "LE THEIL", "libell_d_acheminement": "LE THEIL", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03281"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f1b6cf041621f6e1fbd267af50ed6ef9ec56d2", "fields": {"nom_de_la_commune": "SANSSAT", "libell_d_acheminement": "SANSSAT", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03266"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b45b4b0c296b1b8429bce9d0711a2a9cb6000f", "fields": {"nom_de_la_commune": "THIONNE", "libell_d_acheminement": "THIONNE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03284"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27af731d1fbc7dff7429380816ddc8e8fa4affac", "fields": {"nom_de_la_commune": "TREBAN", "libell_d_acheminement": "TREBAN", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03287"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3506b45eb4d345c87bbd57757640da566027ca", "fields": {"nom_de_la_commune": "VIEURE", "libell_d_acheminement": "VIEURE", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03312"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04f0aaffce4da97745abdeb40e52929b1c917b7", "fields": {"nom_de_la_commune": "VAUMAS", "libell_d_acheminement": "VAUMAS", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03300"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fefc2530821a20cb3efed61cddf20b097c9329ea", "fields": {"code_postal": "04200", "code_commune_insee": "04145", "libell_d_acheminement": "PEIPIN", "ligne_5": "LES BONS ENFANTS", "nom_de_la_commune": "PEIPIN", "coordonnees_gps": [44.2004441719, 5.9040305038]}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6add26400d39e60940165a66488dd8d1030fd7", "fields": {"nom_de_la_commune": "LA MOTTE DU CAIRE", "libell_d_acheminement": "LA MOTTE DU CAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04134"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfdb2607e611711e5bc540f9c5a089f83d9cdfd8", "fields": {"nom_de_la_commune": "LES OMERGUES", "libell_d_acheminement": "LES OMERGUES", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04140"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6149f9112e7271b398bbd4d5ba507db2c4d98c", "fields": {"nom_de_la_commune": "MONTLAUX", "libell_d_acheminement": "MONTLAUX", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04130"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775a68b00518ecbae01014d4f1de960dc402f23b", "fields": {"nom_de_la_commune": "OPPEDETTE", "libell_d_acheminement": "OPPEDETTE", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04142"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536c2412228034a6dc23706501942b8e4fbee9c9", "fields": {"nom_de_la_commune": "ONGLES", "libell_d_acheminement": "ONGLES", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04141"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117563d3539f14ab1504f63786beb7ecf62b560f", "fields": {"code_postal": "04270", "code_commune_insee": "04084", "libell_d_acheminement": "ESTOUBLON", "ligne_5": "TREVANS", "nom_de_la_commune": "ESTOUBLON", "coordonnees_gps": [43.9535232378, 6.23179869809]}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe2dd9242bd6c183d28b9d66ac482a032515779a", "fields": {"nom_de_la_commune": "FAUCON DE BARCELONNETTE", "libell_d_acheminement": "FAUCON DE BARCELONNETTE", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04086"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c45890a3c2ad59a304df07bbd8ded5dd9abfa640", "fields": {"nom_de_la_commune": "LE LAUZET UBAYE", "libell_d_acheminement": "LE LAUZET UBAYE", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04102"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd7d2c87b698743e607b8b21f51cd47f81dea74", "fields": {"nom_de_la_commune": "ENTREVENNES", "libell_d_acheminement": "ENTREVENNES", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04077"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36306ec137ec5f5b5deaa011cdc3e28682ab52aa", "fields": {"nom_de_la_commune": "FORCALQUIER", "libell_d_acheminement": "FORCALQUIER", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04088"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec317750a6c36e84bfca7435a98e9bc77b3b716", "fields": {"nom_de_la_commune": "MIRABEAU", "libell_d_acheminement": "MIRABEAU", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04122"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3daf8c5848a9e1576d76ea44ecc9791960fea4d", "fields": {"nom_de_la_commune": "MEAILLES", "libell_d_acheminement": "MEAILLES", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04115"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5bca6b12b8725e560156622e3ccea3ce2b2f08", "fields": {"nom_de_la_commune": "MALIJAI", "libell_d_acheminement": "MALIJAI", "code_postal": "04350", "coordonnees_gps": [44.0338981069, 6.05079344905], "code_commune_insee": "04108"}, "geometry": {"type": "Point", "coordinates": [6.05079344905, 44.0338981069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a843fc05c67afa0906632793bc22833afe5feee", "fields": {"nom_de_la_commune": "GIGORS", "libell_d_acheminement": "GIGORS", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04093"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff45809716755ac05ec66c4484af46918b5d1a4", "fields": {"nom_de_la_commune": "LURS", "libell_d_acheminement": "LURS", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04106"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d087b86ddfbe975d975116d938d590d2b9f1d3", "fields": {"code_postal": "04000", "code_commune_insee": "04167", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "ligne_5": "AINAC", "nom_de_la_commune": "LA ROBINE SUR GALABRE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7745f708584cec8e892a6a98b966649d5edc507", "fields": {"nom_de_la_commune": "ST ETIENNE LES ORGUES", "libell_d_acheminement": "ST ETIENNE LES ORGUES", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04178"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64dbe75e3a7ebecb577618d563c48aeca1497639", "fields": {"nom_de_la_commune": "STE CROIX A LAUZE", "libell_d_acheminement": "STE CROIX A LAUZE", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04175"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4652f3fd5d1ff99240d1cb8fc73a48bbada832c5", "fields": {"nom_de_la_commune": "REVEST ST MARTIN", "libell_d_acheminement": "REVEST ST MARTIN", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04164"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3905ba565ec9797ab750999628cb3cc64cb46970", "fields": {"nom_de_la_commune": "REVEST DU BION", "libell_d_acheminement": "REVEST DU BION", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04163"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29eae17a4c0acb6320ba22c4bc747fcdc646f4ab", "fields": {"nom_de_la_commune": "MEOLANS REVEL", "libell_d_acheminement": "MEOLANS REVEL", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04161"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb881c409834bccfb25609aee5ac549ae32a480", "fields": {"nom_de_la_commune": "PUIMICHEL", "libell_d_acheminement": "PUIMICHEL", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04156"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "435a9b2b5548a0b5150133789293192856ce502b", "fields": {"code_postal": "05300", "code_commune_insee": "05053", "libell_d_acheminement": "GARDE COLOMBE", "ligne_5": "LAGRAND", "nom_de_la_commune": "GARDE COLOMBE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f39585ab020807ae31b57fa7d95bbd7c4f5401fa", "fields": {"code_postal": "05170", "code_commune_insee": "05096", "libell_d_acheminement": "ORCIERES", "ligne_5": "MERLETTE", "nom_de_la_commune": "ORCIERES", "coordonnees_gps": [44.6838701785, 6.34860583609]}, "geometry": {"type": "Point", "coordinates": [6.34860583609, 44.6838701785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a031026f203af22dcf8b241b678f43ba4a779cf", "fields": {"nom_de_la_commune": "LARAGNE MONTEGLIN", "libell_d_acheminement": "LARAGNE MONTEGLIN", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05070"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6b5caf49d51a0a461426613c0a8a09019b6455", "fields": {"nom_de_la_commune": "FOREST ST JULIEN", "libell_d_acheminement": "FOREST ST JULIEN", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05056"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f178d0643d02ae9cdeb43261c6a9ce4bcb166e", "fields": {"nom_de_la_commune": "LE GLAIZIL", "libell_d_acheminement": "LE GLAIZIL", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05062"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "404fc84ae68c4d94634fcbac7bc255b10bba1ebe", "fields": {"nom_de_la_commune": "MONTBRAND", "libell_d_acheminement": "MONTBRAND", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05080"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6f15f01cf4276628a32329e0c0e39ccb341e59", "fields": {"nom_de_la_commune": "MONTCLUS", "libell_d_acheminement": "MONTCLUS", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05081"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb574b1671f4dcd82fd6f31f954905e8c60c92ee", "fields": {"nom_de_la_commune": "LES ORRES", "libell_d_acheminement": "LES ORRES", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05098"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff38eec6b94c5cd53eee3fe9a2b47c88ea386851", "fields": {"nom_de_la_commune": "LETTRET", "libell_d_acheminement": "LETTRET", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05074"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310884d0fe57f6208f05dc62683e4cd9b4e46137", "fields": {"nom_de_la_commune": "CROTS", "libell_d_acheminement": "CROTS", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05045"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04ecee53378ec6b616b748580e4b4b5b9e67ddf9", "fields": {"code_postal": "05500", "code_commune_insee": "05132", "libell_d_acheminement": "ST BONNET EN CHAMPSAUR", "ligne_5": "LES INFOURNAS", "nom_de_la_commune": "ST BONNET EN CHAMPSAUR", "coordonnees_gps": [44.7016544828, 6.08603823073]}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86b4b91e7125a6b5945dda0ed999a247ee753c9", "fields": {"nom_de_la_commune": "ST BONNET EN CHAMPSAUR", "libell_d_acheminement": "ST BONNET EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05132"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33941d49eac1e5fa47913656ee5ec176d0f379b3", "fields": {"nom_de_la_commune": "ST ETIENNE LE LAUS", "libell_d_acheminement": "ST ETIENNE LE LAUS", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05140"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ea7ecf2c8198c9ef86d5c1e5c76189669d9696", "fields": {"nom_de_la_commune": "PUY ST PIERRE", "libell_d_acheminement": "PUY ST PIERRE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05109"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6797b1bf988c7faa6b61c73aec19eacc5de3c3c", "fields": {"nom_de_la_commune": "LA PIARRE", "libell_d_acheminement": "LA PIARRE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05102"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863950567651aebbd7cd286eff96778ebd433940", "fields": {"nom_de_la_commune": "PRUNIERES", "libell_d_acheminement": "PRUNIERES", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05106"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8564c60881784708144056d67327c480012afee7", "fields": {"nom_de_la_commune": "REMOLLON", "libell_d_acheminement": "REMOLLON", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05115"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf5c9aae9a96385e907464489e5ec197f574c3b7", "fields": {"nom_de_la_commune": "RIBEYRET", "libell_d_acheminement": "RIBEYRET", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05117"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416c3519832415a5c02303b1d312577a63635d43", "fields": {"nom_de_la_commune": "STE COLOMBE SUR SEINE", "libell_d_acheminement": "STE COLOMBE SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21545"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bc2aca2ef3c9953cf96263494549f832aad4c1a", "fields": {"nom_de_la_commune": "ST EUPHRONE", "libell_d_acheminement": "ST EUPHRONE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21547"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828012e7325ee60fec8095225fbda327187b6419", "fields": {"nom_de_la_commune": "ST JEAN DE LOSNE", "libell_d_acheminement": "ST JEAN DE LOSNE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21554"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e21af06fb8575952348433b3ba6c69b62373ec1", "fields": {"nom_de_la_commune": "ST LEGER TRIEY", "libell_d_acheminement": "ST LEGER TRIEY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21556"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b49816537820c76d0f501651ea0c12bd05edde", "fields": {"nom_de_la_commune": "STE MARIE LA BLANCHE", "libell_d_acheminement": "STE MARIE LA BLANCHE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21558"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39003c288efac3545889cef3722b7ee56d3a12e5", "fields": {"nom_de_la_commune": "ST PRIX LES ARNAY", "libell_d_acheminement": "ST PRIX LES ARNAY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21567"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23ea7012c755688515bffd463700fdb0851c3b3", "fields": {"nom_de_la_commune": "ST VICTOR SUR OUCHE", "libell_d_acheminement": "ST VICTOR SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21578"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17adeed986b741bd6c3e6b4eaa412c6aebda5e44", "fields": {"nom_de_la_commune": "SALIVES", "libell_d_acheminement": "SALIVES", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21579"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f314bb0be7f48a7afa35444f16276d74f0687110", "fields": {"nom_de_la_commune": "SELONGEY", "libell_d_acheminement": "SELONGEY", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21599"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82a5eaa7e39cf2e26290c95e178c9af58d80065", "fields": {"nom_de_la_commune": "SENNECEY LES DIJON", "libell_d_acheminement": "SENNECEY LES DIJON", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21605"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a1fc314d2785c40cd95dba6f51882a68e2e3c2", "fields": {"nom_de_la_commune": "SOISSONS SUR NACEY", "libell_d_acheminement": "SOISSONS SUR NACEY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21610"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1133836c9700da9641e255fe9dfd2c3332ec93", "fields": {"nom_de_la_commune": "SOUHEY", "libell_d_acheminement": "SOUHEY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21612"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa7ab845f948c0de1220160d43d534141af3da7", "fields": {"nom_de_la_commune": "SPOY", "libell_d_acheminement": "SPOY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21614"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f27e6d5835e91cdcf8d6f357b58aa31b65bb1d3b", "fields": {"nom_de_la_commune": "TANAY", "libell_d_acheminement": "TANAY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21619"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6519701c0e28508ed1c0f25187035eedee77a6", "fields": {"nom_de_la_commune": "TART L ABBAYE", "libell_d_acheminement": "TART L ABBAYE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21621"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76a5e9ef35cd459ba73c0c787cd30a79593815b", "fields": {"nom_de_la_commune": "THOISY LE DESERT", "libell_d_acheminement": "THOISY LE DESERT", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21630"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734637c0c80fe34b875d810b4802eed6915971e7", "fields": {"nom_de_la_commune": "THURY", "libell_d_acheminement": "THURY", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21636"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41466e5400426458eef14cc34a6cc50ad25fcf94", "fields": {"nom_de_la_commune": "TIL CHATEL", "libell_d_acheminement": "TIL CHATEL", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21638"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8150d3423a58c69cf095f93c58744e8551b4dd2", "fields": {"nom_de_la_commune": "TILLENAY", "libell_d_acheminement": "TILLENAY", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21639"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d7b11f41a4e888711b7bad8c476cedfc113558", "fields": {"nom_de_la_commune": "TRECLUN", "libell_d_acheminement": "TRECLUN", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21643"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7956ab5465d90860d7eb10b6748c5d9c9f70514a", "fields": {"nom_de_la_commune": "UNCEY LE FRANC", "libell_d_acheminement": "UNCEY LE FRANC", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21649"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa820bec83593c49471a422070df0437d1776531", "fields": {"nom_de_la_commune": "VAROIS ET CHAIGNOT", "libell_d_acheminement": "VAROIS ET CHAIGNOT", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21657"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a7a9a91497c4ee65bf700b45dd41f545237244", "fields": {"nom_de_la_commune": "VAUX SAULES", "libell_d_acheminement": "VAUX SAULES", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21659"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9cb1fce8f1b7ecdb7c808c4690b69e64e26026", "fields": {"nom_de_la_commune": "VERDONNET", "libell_d_acheminement": "VERDONNET", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21664"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226c30f850cba6d830d3e17b05251469c6c8a272", "fields": {"nom_de_la_commune": "VIANGES", "libell_d_acheminement": "VIANGES", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21675"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e2098aabdb36b61a418b298ea7848695776602", "fields": {"nom_de_la_commune": "VIC DE CHASSENAY", "libell_d_acheminement": "VIC DE CHASSENAY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21676"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6e3fc96c3127a3a996f52e4408149ab3f0f602", "fields": {"nom_de_la_commune": "VIC DES PRES", "libell_d_acheminement": "VIC DES PRES", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21677"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9703e12fbd2f63ab1e30ffbcf30499f88533b09b", "fields": {"nom_de_la_commune": "VIELVERGE", "libell_d_acheminement": "VIELVERGE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21680"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4486bf7820f87aafd1a1493fef9e934cef2b9401", "fields": {"nom_de_la_commune": "VIEUX CHATEAU", "libell_d_acheminement": "VIEUX CHATEAU", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21681"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0592d55b2b98a6a5e1a811a165a3d16e45ce70", "fields": {"nom_de_la_commune": "VILLEDIEU", "libell_d_acheminement": "VILLEDIEU", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21693"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be095a5052c7ec57f5214b100753921efd4049eb", "fields": {"nom_de_la_commune": "VILLERS PATRAS", "libell_d_acheminement": "VILLERS PATRAS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21700"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b7aa7b3cfea804d41a8d12204f7b796b7c1b71", "fields": {"nom_de_la_commune": "VILLERS ROTIN", "libell_d_acheminement": "VILLERS ROTIN", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21701"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5891b49d4878e93e97488e8d424cefea3a6cb7e9", "fields": {"nom_de_la_commune": "VILLEY SUR TILLE", "libell_d_acheminement": "VILLEY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21702"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23abda2aa616dae0ad14771c472c4ed4f68fd8aa", "fields": {"nom_de_la_commune": "VILLIERS EN MORVAN", "libell_d_acheminement": "VILLIERS EN MORVAN", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21703"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11b6a4fb5283c87a46c42245fbfb05920827bb7", "fields": {"nom_de_la_commune": "VISERNY", "libell_d_acheminement": "VISERNY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21709"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7744714d13be19911d5774df03ac22a9e92d369d", "fields": {"nom_de_la_commune": "VONGES", "libell_d_acheminement": "VONGES", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21713"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52924e5089c1e9336e1edc72b246a2cb209efa7", "fields": {"nom_de_la_commune": "BEGARD", "libell_d_acheminement": "BEGARD", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22004"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08ab4a0b2c28e815551d88d619fd1e0bb01dfffc", "fields": {"nom_de_la_commune": "BELLE ISLE EN TERRE", "libell_d_acheminement": "BELLE ISLE EN TERRE", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22005"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827a33a663d99560b938b94ff69bf7225c42d52c", "fields": {"nom_de_la_commune": "BOQUEHO", "libell_d_acheminement": "BOQUEHO", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22011"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531f622bd02c79d4a5cb3734e25099313540aec0", "fields": {"nom_de_la_commune": "LA BOUILLIE", "libell_d_acheminement": "LA BOUILLIE", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22012"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf6750f4ae8fd70ff03aa8eda755458c74cc990c", "fields": {"nom_de_la_commune": "BREHAND", "libell_d_acheminement": "BREHAND", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22015"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfcc035cee07baa479bc5c4f160d22b965787b7", "fields": {"nom_de_la_commune": "CALLAC", "libell_d_acheminement": "CALLAC DE BRETAGNE", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22025"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab3a9d7d3de30d2db4e3eba376d7445e7097d105", "fields": {"nom_de_la_commune": "CALORGUEN", "libell_d_acheminement": "CALORGUEN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22026"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb5698aa8acaccaa141646df8a9604601404780", "fields": {"nom_de_la_commune": "CAMLEZ", "libell_d_acheminement": "CAMLEZ", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22028"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15769a2633319fd79feb3d3af140d3388ec3a393", "fields": {"nom_de_la_commune": "CAOUENNEC LANVEZEAC", "libell_d_acheminement": "CAOUENNEC LANVEZEAC", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22030"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0780247749243a0fadb70a3095a8f56fd560955", "fields": {"nom_de_la_commune": "CAULNES", "libell_d_acheminement": "CAULNES", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22032"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eefc9f9feb58cf7bba621ad1505b799bf4f2e63d", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "LANGOURLA", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3d5eabf724f2ac26e8a2665fdbcd1c132758c9", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "LE GOURAY", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030db981f9a17a7a854a5bb74950898006dea00a", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "PLESSALA", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62ca464a516a095ee25071353b2207619bbf5d3", "fields": {"nom_de_la_commune": "CORLAY", "libell_d_acheminement": "CORLAY", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22047"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce98fe751c0f3511c6a7873fceee7ac1576b1033", "fields": {"nom_de_la_commune": "EREAC", "libell_d_acheminement": "EREAC", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22053"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913852123089956a5b5b26192548ad74ab218b12", "fields": {"code_postal": "22520", "code_commune_insee": "22055", "libell_d_acheminement": "BINIC ETABLES SUR MER", "ligne_5": "BINIC", "nom_de_la_commune": "BINIC ETABLES SUR MER", "coordonnees_gps": [48.6253671156, -2.8412181683]}, "geometry": {"type": "Point", "coordinates": [-2.8412181683, 48.6253671156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5127d17aa332ca8cba88f16ea3632e54eab9da", "fields": {"nom_de_la_commune": "GOUDELIN", "libell_d_acheminement": "GOUDELIN", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22065"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0aef10dd2c7fd4abe5184012616f50c624640da", "fields": {"nom_de_la_commune": "HEMONSTOIR", "libell_d_acheminement": "HEMONSTOIR", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22075"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600c0f15b7aca8e8edde60693064e0fa141cfdb1", "fields": {"nom_de_la_commune": "HENON", "libell_d_acheminement": "HENON", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22079"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d88c30bd2ff72ba3b3ccbd8e5836668b17f224", "fields": {"code_postal": "22270", "code_commune_insee": "22084", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "ligne_5": "DOLO", "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "coordonnees_gps": [48.4388729687, -2.34282802999]}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80765452da5903aa756c3b97d3a68a2aa90282f6", "fields": {"nom_de_la_commune": "KERMARIA SULARD", "libell_d_acheminement": "KERMARIA SULARD", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22090"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b27103f4d3d5a1e6f3815acb06ffc862a39c7d1", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "LA POTERIE", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa01cbb787f0aa4d21a942f7d56c6f540c6c14eb", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "MESLIN", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8c6c8eb312cd041bc83a830d6985e2dc89ded8", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "ST AARON", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c33b0aac6d7323d6fe99ad4124402554241373", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "TREGOMAR", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b73d1b752e44d1671b515fc19bc32b365a6b40", "fields": {"nom_de_la_commune": "LANCIEUX", "libell_d_acheminement": "LANCIEUX", "code_postal": "22770", "coordonnees_gps": [48.6009740772, -2.14784206483], "code_commune_insee": "22094"}, "geometry": {"type": "Point", "coordinates": [-2.14784206483, 48.6009740772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e56e2ce1bcd9f1a63ace183b2df2522339c9e9d", "fields": {"nom_de_la_commune": "LANGUEDIAS", "libell_d_acheminement": "LANGUEDIAS", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22104"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b60fd472e1ae388966fc4d54d611102638d3d92", "fields": {"nom_de_la_commune": "LANLOUP", "libell_d_acheminement": "LANLOUP", "code_postal": "22580", "coordonnees_gps": [48.6838185781, -2.93369249044], "code_commune_insee": "22109"}, "geometry": {"type": "Point", "coordinates": [-2.93369249044, 48.6838185781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cc953bb7abddf4372b5ef1bb1c8964bcfd3548", "fields": {"nom_de_la_commune": "LANMERIN", "libell_d_acheminement": "LANMERIN", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22110"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e713414aa6e41ef574eb92f4f3bc04d75d56859", "fields": {"nom_de_la_commune": "LANNION", "libell_d_acheminement": "LANNION", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22113"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44f9a889126f179b8c35ced94197c9ae9bd6822", "fields": {"code_postal": "22410", "code_commune_insee": "22117", "libell_d_acheminement": "LANTIC", "ligne_5": "NOTRE DAME DE LA COUR", "nom_de_la_commune": "LANTIC", "coordonnees_gps": [48.627965542, -2.88359302537]}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b56d022c938ad753bfd280c2a62c1b84677dea8", "fields": {"nom_de_la_commune": "LANVALLAY", "libell_d_acheminement": "LANVALLAY", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22118"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e551cc62d4bd0fa734a6bc2d017a5062ca9dc19", "fields": {"nom_de_la_commune": "LANVOLLON", "libell_d_acheminement": "LANVOLLON", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22121"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5346a84350eea0d88f9c9a283509a95ced9247", "fields": {"nom_de_la_commune": "LESCOUET GOUAREC", "libell_d_acheminement": "LESCOUET GOUAREC", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22124"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873c59c293e5937f8199365ecc4c65f77f587c28", "fields": {"nom_de_la_commune": "LEZARDRIEUX", "libell_d_acheminement": "LEZARDRIEUX", "code_postal": "22740", "coordonnees_gps": [48.7862156131, -3.14241829352], "code_commune_insee": "22127"}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f76a5b0f93a0336edb0ca8617b2cb21e42504df", "fields": {"code_postal": "22740", "code_commune_insee": "22127", "libell_d_acheminement": "LEZARDRIEUX", "ligne_5": "KERMOUSTER", "nom_de_la_commune": "LEZARDRIEUX", "coordonnees_gps": [48.7862156131, -3.14241829352]}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc210bc5d9eb355682bfcf401795553da162680f", "fields": {"nom_de_la_commune": "LOCARN", "libell_d_acheminement": "LOCARN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22128"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c1a5d3ae00c8bb767ed07f701583021f2c20fc", "fields": {"nom_de_la_commune": "LOHUEC", "libell_d_acheminement": "LOHUEC", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22132"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b913c1236a7e542eb843bc9526ddca8cc5d713", "fields": {"nom_de_la_commune": "LOUANNEC", "libell_d_acheminement": "LOUANNEC", "code_postal": "22700", "coordonnees_gps": [48.7941225989, -3.4412963824], "code_commune_insee": "22134"}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135d6d6537f2874e56034a720ee3f43950c2e7fd", "fields": {"nom_de_la_commune": "MAGOAR", "libell_d_acheminement": "MAGOAR", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22139"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f757a2d20a5165c4fa99656f0bdff6e34d359328", "fields": {"nom_de_la_commune": "LE MERZER", "libell_d_acheminement": "LE MERZER", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22150"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b9d0bcb16561fa2752a87264943567d527037d0", "fields": {"nom_de_la_commune": "MORIEUX", "libell_d_acheminement": "MORIEUX", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22154"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c467a28e9ae76125ab4dc662bc13981f0b0ae69e", "fields": {"nom_de_la_commune": "LE MOUSTOIR", "libell_d_acheminement": "LE MOUSTOIR", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22157"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a75b421a1d762ca3f9782a6092c4c42900d29e3", "fields": {"nom_de_la_commune": "NOYAL", "libell_d_acheminement": "NOYAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22160"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc4862d280d3e38da392c49d652871c7315e83e4", "fields": {"nom_de_la_commune": "PLANCOET", "libell_d_acheminement": "PLANCOET", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22172"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794b00938ecb51b7092d82427e5791055b55c540", "fields": {"code_postal": "22400", "code_commune_insee": "22173", "libell_d_acheminement": "PLANGUENOUAL", "ligne_5": "LA COTENTIN PLANGUENOUAL", "nom_de_la_commune": "PLANGUENOUAL", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35e2dd47311026056aaa27be4954ae2c1877a02c", "fields": {"nom_de_la_commune": "PLEDELIAC", "libell_d_acheminement": "PLEDELIAC", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22175"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672ca0cac636497f73393ea0e7ef4094401a5251", "fields": {"nom_de_la_commune": "PLEHEDEL", "libell_d_acheminement": "PLEHEDEL", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22178"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c996016957434b3885d3438546f26b8abffd6f94", "fields": {"code_postal": "22210", "code_commune_insee": "22183", "libell_d_acheminement": "LES MOULINS", "ligne_5": "LA FERRIERE", "nom_de_la_commune": "LES MOULINS", "coordonnees_gps": [48.1328117448, -2.60089281473]}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7fa42a05b61abc195220b5641dc8403e2b352d", "fields": {"code_postal": "22210", "code_commune_insee": "22183", "libell_d_acheminement": "LES MOULINS", "ligne_5": "PLEMET", "nom_de_la_commune": "LES MOULINS", "coordonnees_gps": [48.1328117448, -2.60089281473]}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4073140bafe7d2c86cf9adec90f0fd14bace04a3", "fields": {"nom_de_la_commune": "PLEMY", "libell_d_acheminement": "PLEMY", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22184"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b039245fdffb1f22d01c2830940815b69df78b", "fields": {"nom_de_la_commune": "PLENEE JUGON", "libell_d_acheminement": "PLENEE JUGON", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22185"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380163360213c399718d999da644ddb4355e5ba4", "fields": {"code_postal": "22190", "code_commune_insee": "22187", "libell_d_acheminement": "PLERIN", "ligne_5": "LES ROSAIRES", "nom_de_la_commune": "PLERIN", "coordonnees_gps": [48.5437270249, -2.77055983387]}, "geometry": {"type": "Point", "coordinates": [-2.77055983387, 48.5437270249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00aa7f3bddc66380ed3d496afe423e9c33061d0f", "fields": {"nom_de_la_commune": "PLEUBIAN", "libell_d_acheminement": "PLEUBIAN", "code_postal": "22610", "coordonnees_gps": [48.8387667808, -3.14072269056], "code_commune_insee": "22195"}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa33907182f7e13194265284657564c89696b261", "fields": {"nom_de_la_commune": "PLEUDANIEL", "libell_d_acheminement": "PLEUDANIEL", "code_postal": "22740", "coordonnees_gps": [48.7862156131, -3.14241829352], "code_commune_insee": "22196"}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04225b37852e06cbfe4a5b678ef58c5f32415455", "fields": {"code_postal": "22560", "code_commune_insee": "22198", "libell_d_acheminement": "PLEUMEUR BODOU", "ligne_5": "ILE GRANDE", "nom_de_la_commune": "PLEUMEUR BODOU", "coordonnees_gps": [48.7801847576, -3.53025413579]}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca743ca1394bc0f74c5587119d111842753ff040", "fields": {"nom_de_la_commune": "PLEVIN", "libell_d_acheminement": "PLEVIN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22202"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7877102475e19d5c36acfa7275e1b03a2b4c33ac", "fields": {"code_postal": "22470", "code_commune_insee": "22214", "libell_d_acheminement": "PLOUEZEC", "ligne_5": "LE QUESTEL", "nom_de_la_commune": "PLOUEZEC", "coordonnees_gps": [48.7387311378, -2.97896349388]}, "geometry": {"type": "Point", "coordinates": [-2.97896349388, 48.7387311378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae9956856f7167d1cb12567a31058587304430c", "fields": {"nom_de_la_commune": "PLOUGONVER", "libell_d_acheminement": "PLOUGONVER", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22216"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa6c25e44b4b6a5a74fb04fcee847a10a61a705", "fields": {"nom_de_la_commune": "PLOUNEVEZ QUINTIN", "libell_d_acheminement": "PLOUNEVEZ QUINTIN", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22229"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b15190f418a81ae7cbcc29e4d6551d9526561f", "fields": {"nom_de_la_commune": "PLUMAUDAN", "libell_d_acheminement": "PLUMAUDAN", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22239"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c588d16f7b2876ed456580b7fd71b13d5c81c0db", "fields": {"nom_de_la_commune": "PONT MELVEZ", "libell_d_acheminement": "PONT MELVEZ", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22249"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f504b86a9de249322b70be9a41b0af4f9b2d20f", "fields": {"code_postal": "22590", "code_commune_insee": "22251", "libell_d_acheminement": "PORDIC", "ligne_5": "TREMELOIR", "nom_de_la_commune": "PORDIC", "coordonnees_gps": [48.5695461938, -2.84144566596]}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6b618b7126445e62222646122ae4726f7d7082", "fields": {"nom_de_la_commune": "LE QUILLIO", "libell_d_acheminement": "LE QUILLIO", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22260"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb8b19d608b6c79f7aa2c390d406f530b25136a", "fields": {"nom_de_la_commune": "TALUYERS", "libell_d_acheminement": "TALUYERS", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69241"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dfb4d28a0b6696da2759a05c6c47a6b6bb9eb9c", "fields": {"nom_de_la_commune": "TASSIN LA DEMI LUNE", "libell_d_acheminement": "TASSIN LA DEMI LUNE", "code_postal": "69160", "coordonnees_gps": [45.7629979582, 4.75499430189], "code_commune_insee": "69244"}, "geometry": {"type": "Point", "coordinates": [4.75499430189, 45.7629979582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebfa68334139c6ddc6fcd9810bb92d9d6b82ad6", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "LA CHAPELLE DE MARDORE", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e799ab3fdf19ff45415d921bc301bf70703ea97c", "fields": {"nom_de_la_commune": "VAULX EN VELIN", "libell_d_acheminement": "VAULX EN VELIN", "code_postal": "69120", "coordonnees_gps": [45.7859071347, 4.92682507441], "code_commune_insee": "69256"}, "geometry": {"type": "Point", "coordinates": [4.92682507441, 45.7859071347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b1de6b8f76a1599cf85aa4493cf62c595437215", "fields": {"nom_de_la_commune": "VAUX EN BEAUJOLAIS", "libell_d_acheminement": "VAUX EN BEAUJOLAIS", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69257"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b055769d2227175d22d529acab6236feec0120a5", "fields": {"nom_de_la_commune": "VENISSIEUX", "libell_d_acheminement": "VENISSIEUX", "code_postal": "69200", "coordonnees_gps": [45.7040491197, 4.88102892999], "code_commune_insee": "69259"}, "geometry": {"type": "Point", "coordinates": [4.88102892999, 45.7040491197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562d7b2c56d95ac16da9b78d5aeff00c855e32d8", "fields": {"nom_de_la_commune": "VERNAISON", "libell_d_acheminement": "VERNAISON", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69260"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17be337fdf4ebd3bd6657d4046ea3440716b570", "fields": {"nom_de_la_commune": "CHASSIEU", "libell_d_acheminement": "CHASSIEU", "code_postal": "69680", "coordonnees_gps": [45.7380935989, 4.96225946451], "code_commune_insee": "69271"}, "geometry": {"type": "Point", "coordinates": [4.96225946451, 45.7380935989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f635c7b12af839f382ce67360fd60678fa2f6a16", "fields": {"nom_de_la_commune": "COLOMBIER SAUGNIEU", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "code_postal": "69124", "coordonnees_gps": [45.7180247923, 5.10320927277], "code_commune_insee": "69299"}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc529a0adbb0781de4b9b52bb5457fdfcd8146ce", "fields": {"nom_de_la_commune": "LYON 05", "libell_d_acheminement": "LYON", "code_postal": "69005", "coordonnees_gps": [45.7565908412, 4.80289812145], "code_commune_insee": "69385"}, "geometry": {"type": "Point", "coordinates": [4.80289812145, 45.7565908412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe04245d2bd275d30bb5d1d7098d8693a2228e2", "fields": {"nom_de_la_commune": "LYON 07", "libell_d_acheminement": "LYON", "code_postal": "69007", "coordonnees_gps": [45.733324111, 4.83731002266], "code_commune_insee": "69387"}, "geometry": {"type": "Point", "coordinates": [4.83731002266, 45.733324111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed2eba8c009639b2a256fcf942e1f333fe1cad5", "fields": {"nom_de_la_commune": "ADELANS ET LE VAL DE BITHAINE", "libell_d_acheminement": "ADELANS ET LE VAL DE BITHAINE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70004"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a6ea050b3f33904347ccdb9ed48ec2aded28fe", "fields": {"nom_de_la_commune": "ALAINCOURT", "libell_d_acheminement": "ALAINCOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70010"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf667fa0661247d8af25d5d49bd2c650c85320dc", "fields": {"nom_de_la_commune": "ANDORNAY", "libell_d_acheminement": "ANDORNAY", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70021"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1d5400e8635a69b1dc6a4235c35979d310693f", "fields": {"nom_de_la_commune": "ANJEUX", "libell_d_acheminement": "ANJEUX", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70023"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7505f32d53f10fa29b37c9bd82b650a1f9514703", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70024"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "147952e28b3249c6d58f023fab64b59dcb514779", "fields": {"nom_de_la_commune": "LAURAGUEL", "libell_d_acheminement": "LAURAGUEL", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11197"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4855b267bb558168d92a10ed2c6fc0e368ceea9", "fields": {"nom_de_la_commune": "LIGNAIROLLES", "libell_d_acheminement": "LIGNAIROLLES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11204"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ce843fa2e1038f3cd17f8910b10dba22d1144c", "fields": {"nom_de_la_commune": "LIMOUX", "libell_d_acheminement": "LIMOUX", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11206"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3fb79e85a4522df2422c80a256b72649cf98e1", "fields": {"nom_de_la_commune": "MAGRIE", "libell_d_acheminement": "MAGRIE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11211"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd37c0dce50213b6adaa5b31fd83206a5cc3a65", "fields": {"nom_de_la_commune": "MARCORIGNAN", "libell_d_acheminement": "MARCORIGNAN", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11217"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e0b5d794c5f91569d324c54a5825fda39e06df", "fields": {"nom_de_la_commune": "MARSA", "libell_d_acheminement": "MARSA", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11219"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc16e90786b2da35a3efd0321866fd0875c79db", "fields": {"nom_de_la_commune": "MAZEROLLES DU RAZES", "libell_d_acheminement": "MAZEROLLES DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11228"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5375a142e40565fc66182544e4cbe3a870a5539f", "fields": {"nom_de_la_commune": "MAZUBY", "libell_d_acheminement": "MAZUBY", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11229"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69616fb34b6f9e51cb52c2e4633cb2e6bfaa444", "fields": {"nom_de_la_commune": "MIRAVAL CABARDES", "libell_d_acheminement": "MIRAVAL CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11232"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e1193b206db8c54b726fb1b09f27b48dbd8f3b", "fields": {"nom_de_la_commune": "MIREVAL LAURAGAIS", "libell_d_acheminement": "MIREVAL LAURAGAIS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11234"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f1904287d1e3853045c16a51634e14a3ab692a", "fields": {"nom_de_la_commune": "MONTJARDIN", "libell_d_acheminement": "MONTJARDIN", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11249"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328293f195a0bab657b13b32b7cbbc82dd566d4a", "fields": {"nom_de_la_commune": "MONTOLIEU", "libell_d_acheminement": "MONTOLIEU", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11253"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7294013b3ad63d0baafeca7cb1f72fe917e39b", "fields": {"nom_de_la_commune": "MOUSSAN", "libell_d_acheminement": "MOUSSAN", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11258"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a1622c1dd0142976487b81a4ac78ecde989e0f", "fields": {"nom_de_la_commune": "MOUX", "libell_d_acheminement": "MOUX", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11261"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "905d3a4ac9a9add0db5d6e4135f78370b48fe4d1", "fields": {"nom_de_la_commune": "PARAZA", "libell_d_acheminement": "PARAZA", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11273"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86640bea0f7df1297938edeac0bf8298f0386678", "fields": {"nom_de_la_commune": "PAZIOLS", "libell_d_acheminement": "PAZIOLS", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11276"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbb794f7ad1e14b202e10ffc85a5f24a58c80a4", "fields": {"nom_de_la_commune": "PECHARIC ET LE PY", "libell_d_acheminement": "PECHARIC ET LE PY", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11277"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75fea4d32b61779d799c1ef2433581826b1cf06", "fields": {"nom_de_la_commune": "PEYRIAC MINERVOIS", "libell_d_acheminement": "PEYRIAC MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11286"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5958db74464005b46ad101edf3512d9f29bb0cc", "fields": {"nom_de_la_commune": "PEYROLLES", "libell_d_acheminement": "PEYROLLES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11287"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79cb759858843064dbcfeed00c7565627ed9877", "fields": {"nom_de_la_commune": "PLAVILLA", "libell_d_acheminement": "PLAVILLA", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11291"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cccc501f4a4ca2b4242ae8ec8cec0aa1cf0576", "fields": {"nom_de_la_commune": "PORTEL DES CORBIERES", "libell_d_acheminement": "PORTEL DES CORBIERES", "code_postal": "11490", "coordonnees_gps": [43.0518718321, 2.90610520516], "code_commune_insee": "11295"}, "geometry": {"type": "Point", "coordinates": [2.90610520516, 43.0518718321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44eccc2baa8bd6f6cf0e800803fadc44de2958fa", "fields": {"nom_de_la_commune": "PUICHERIC", "libell_d_acheminement": "PUICHERIC", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11301"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31262658ff9ffb83cd03050f9cc915808c05889", "fields": {"nom_de_la_commune": "PUIVERT", "libell_d_acheminement": "PUIVERT", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11303"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c92ba4f39b3ee6354682d2c6539dd7892bc283", "fields": {"nom_de_la_commune": "RAISSAC D AUDE", "libell_d_acheminement": "RAISSAC D AUDE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11307"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6928cb594cee8b0d6a4304a120dd40c809c4221", "fields": {"nom_de_la_commune": "RIEUX MINERVOIS", "libell_d_acheminement": "RIEUX MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11315"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8203354c919eb4097c22da5c57cefa46347f47f8", "fields": {"nom_de_la_commune": "RIVEL", "libell_d_acheminement": "RIVEL", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11316"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63536b66252d223a3cacf2a224a39c7a646da173", "fields": {"nom_de_la_commune": "ROULLENS", "libell_d_acheminement": "ROULLENS", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11327"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c914f13e2a5af44d069178279a2bde5b588f849f", "fields": {"nom_de_la_commune": "ST AMANS", "libell_d_acheminement": "ST AMANS", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11331"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0816320ce0778ba6d53b9c42c3ef6ccdcc4d4cd", "fields": {"nom_de_la_commune": "STE CAMELLE", "libell_d_acheminement": "STE CAMELLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11334"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0d2d4fbb902eaf558d2c1135c273b75de84b24", "fields": {"nom_de_la_commune": "ST COUAT D AUDE", "libell_d_acheminement": "ST COUAT D AUDE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11337"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba494375a6c327c962e64a3cefc4585639a4f1ff", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11340"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d5b62e560f9111050ff9a3417ada5011c31053", "fields": {"nom_de_la_commune": "ST FERRIOL", "libell_d_acheminement": "ST FERRIOL", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11341"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290242b36668013709e92330d850efc1dff0c739", "fields": {"nom_de_la_commune": "ST GAUDERIC", "libell_d_acheminement": "ST GAUDERIC", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11343"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ad7de96f6fabdc819adbdbb36991fa4c64c8c9", "fields": {"nom_de_la_commune": "ST JULIEN DE BRIOLA", "libell_d_acheminement": "ST JULIEN DE BRIOLA", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11348"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc719b30f31e4fc5fc82fcb44b531bbe141325f9", "fields": {"nom_de_la_commune": "ST LOUIS ET PARAHOU", "libell_d_acheminement": "ST LOUIS ET PARAHOU", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11352"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118d27901077fd201e2d8e8d240501294c3e1ea6", "fields": {"nom_de_la_commune": "ST MARCEL SUR AUDE", "libell_d_acheminement": "ST MARCEL SUR AUDE", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11353"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77379dd8bed29165d3c1cd0bc6aea5bbaa0ab663", "fields": {"nom_de_la_commune": "ST MARTIN DES PUITS", "libell_d_acheminement": "ST MARTIN DES PUITS", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11354"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f137787a0305bf8bc6722d7e4da191d2d136d42b", "fields": {"nom_de_la_commune": "ST MARTIN LALANDE", "libell_d_acheminement": "ST MARTIN LALANDE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11356"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c6f5b765c4aaa029bb1ebad3a4da325cdf2abdf", "fields": {"nom_de_la_commune": "ST MARTIN LYS", "libell_d_acheminement": "ST MARTIN LYS", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11358"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67025e93866a99dca712dd068fd1a1b85d9f9cd6", "fields": {"nom_de_la_commune": "SALLELES CABARDES", "libell_d_acheminement": "SALLELES CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11368"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999e504b13acfef3da5630014139e7c34e916e20", "fields": {"nom_de_la_commune": "SALLES SUR L HERS", "libell_d_acheminement": "SALLES SUR L HERS", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11371"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139347ca8fa926f689cafc64322b6920f29fc455", "fields": {"nom_de_la_commune": "SALZA", "libell_d_acheminement": "SALZA", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11374"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec93ac56c55f2da46dd5122022738988d8a4a0fb", "fields": {"nom_de_la_commune": "SIGEAN", "libell_d_acheminement": "SIGEAN", "code_postal": "11130", "coordonnees_gps": [43.0395447996, 2.98099575454], "code_commune_insee": "11379"}, "geometry": {"type": "Point", "coordinates": [2.98099575454, 43.0395447996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a9ce25ef155d0208aa197bf1bde5acedce3248", "fields": {"nom_de_la_commune": "SOUGRAIGNE", "libell_d_acheminement": "SOUGRAIGNE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11381"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ba89423cd7dd726179e04a6795ea08b5693d67", "fields": {"nom_de_la_commune": "TRASSANEL", "libell_d_acheminement": "TRASSANEL", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11395"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14340394201bcd91b9b1df03f6b984c12d57a24", "fields": {"nom_de_la_commune": "VENTENAC EN MINERVOIS", "libell_d_acheminement": "VENTENAC EN MINERVOIS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11405"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81721f3b4f918b3e8fa4631ba698d75cddd1b55c", "fields": {"nom_de_la_commune": "VILLANIERE", "libell_d_acheminement": "VILLANIERE", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11411"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206771eec00f723072b1e7bc70a224f1c46055fa", "fields": {"nom_de_la_commune": "VILLAR ST ANSELME", "libell_d_acheminement": "VILLAR ST ANSELME", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11415"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561e31fb5e9b8f8dcc7830567c4b74240284840b", "fields": {"nom_de_la_commune": "VILLARZEL CABARDES", "libell_d_acheminement": "VILLARZEL CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11416"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04344984d9ca8cd5e6c771d126ec662d0c27c46c", "fields": {"nom_de_la_commune": "VILLAUTOU", "libell_d_acheminement": "VILLAUTOU", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11419"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a061a9d941622569763abf9530062759ae31de3", "fields": {"nom_de_la_commune": "VILLEFLOURE", "libell_d_acheminement": "VILLEFLOURE", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11423"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49fc5e06a3174f9686a169bd9f885fa34a9e230", "fields": {"nom_de_la_commune": "VILLEFORT", "libell_d_acheminement": "VILLEFORT", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11424"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bbe95f58944ba5caf8781d3b61a4e5233a425e", "fields": {"nom_de_la_commune": "VILLEMAGNE", "libell_d_acheminement": "VILLEMAGNE", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11428"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4344ebc7eaa257eaf9aefb6db2a68c50f08143c1", "fields": {"nom_de_la_commune": "VILLENEUVE LA COMPTAL", "libell_d_acheminement": "VILLENEUVE LA COMPTAL", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11430"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80229ecd630e9f408b1b1b2f7384f35c28ce06f7", "fields": {"nom_de_la_commune": "VILLENEUVE MINERVOIS", "libell_d_acheminement": "VILLENEUVE MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11433"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ef8cbaeccdb74a98371368ff83afbc11ac1acc", "fields": {"nom_de_la_commune": "VILLEROUGE TERMENES", "libell_d_acheminement": "VILLEROUGE TERMENES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11435"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1185d4d132f91fd5da62fbf76d2092589b5aa1b", "fields": {"nom_de_la_commune": "VILLESPY", "libell_d_acheminement": "VILLESPY", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11439"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a07a520068694871e76935a56355206ef5b222", "fields": {"nom_de_la_commune": "VILLETRITOULS", "libell_d_acheminement": "VILLETRITOULS", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11440"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1d38a455b31d527cbcbadbcc240ceecad67347", "fields": {"nom_de_la_commune": "VINASSAN", "libell_d_acheminement": "VINASSAN", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11441"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370a5381c075a6f995e7669eb9d1d5a7acf16bd9", "fields": {"nom_de_la_commune": "ALMONT LES JUNIES", "libell_d_acheminement": "ALMONT LES JUNIES", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12004"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc54e018f43c4bd9a30e1725b9dff91bf61db4d0", "fields": {"nom_de_la_commune": "ANGLARS ST FELIX", "libell_d_acheminement": "ANGLARS ST FELIX", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12008"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a11552c91743e26818ceda6a07d810f271970956", "fields": {"nom_de_la_commune": "AUBIN", "libell_d_acheminement": "AUBIN", "code_postal": "12110", "coordonnees_gps": [44.5334610269, 2.25593564519], "code_commune_insee": "12013"}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbeef881e92e483224df61ac8c1b3b159d295a32", "fields": {"code_postal": "12110", "code_commune_insee": "12013", "libell_d_acheminement": "AUBIN", "ligne_5": "COMBES", "nom_de_la_commune": "AUBIN", "coordonnees_gps": [44.5334610269, 2.25593564519]}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f304091fed27f313cc756a90fbe55acf3af2a3b", "fields": {"code_postal": "12110", "code_commune_insee": "12013", "libell_d_acheminement": "AUBIN", "ligne_5": "LE GUA", "nom_de_la_commune": "AUBIN", "coordonnees_gps": [44.5334610269, 2.25593564519]}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "237c67f314488722e7b25480f9a395795a85b3fe", "fields": {"nom_de_la_commune": "AYSSENES", "libell_d_acheminement": "AYSSENES", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12017"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e590132cf20b780d339da32f807c548563b1b626", "fields": {"nom_de_la_commune": "BALSAC", "libell_d_acheminement": "BALSAC", "code_postal": "12510", "coordonnees_gps": [44.3662936551, 2.48525711851], "code_commune_insee": "12020"}, "geometry": {"type": "Point", "coordinates": [2.48525711851, 44.3662936551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b2819c02573296f2c0e126b09f05b2f89303692", "fields": {"code_postal": "12200", "code_commune_insee": "12021", "libell_d_acheminement": "LE BAS SEGALA", "ligne_5": "ST SALVADOU", "nom_de_la_commune": "LE BAS SEGALA", "coordonnees_gps": [44.334435824, 2.00795550071]}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff734b3a66b511a9fd5d0162ca877375b4c7c403", "fields": {"nom_de_la_commune": "BRANDONNET", "libell_d_acheminement": "BRANDONNET", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12034"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75027755b4b4d59eb5616f5fd6a611bbc2267fb", "fields": {"nom_de_la_commune": "BRASC", "libell_d_acheminement": "BRASC", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12035"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "881ade14d963e3c291b6a9d18f0cbe0456ab730b", "fields": {"nom_de_la_commune": "CALMELS ET LE VIALA", "libell_d_acheminement": "CALMELS ET LE VIALA", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12042"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b16e117fcd8e8de2b5dc32ea7924b067f6341bc", "fields": {"nom_de_la_commune": "LA CAPELLE BONANCE", "libell_d_acheminement": "LA CAPELLE BONANCE", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12055"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddc9640f71968c172f670124c8bfbda819408cd", "fields": {"nom_de_la_commune": "CASTELNAU DE MANDAILLES", "libell_d_acheminement": "CASTELNAU DE MANDAILLES", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12061"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37f7d5a863b0000d9b1546c8886f9a6035bdb26", "fields": {"nom_de_la_commune": "CASTELNAU PEGAYROLS", "libell_d_acheminement": "CASTELNAU PEGAYROLS", "code_postal": "12620", "coordonnees_gps": [44.1639182272, 2.94123371794], "code_commune_insee": "12062"}, "geometry": {"type": "Point", "coordinates": [2.94123371794, 44.1639182272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4496d8fdf8c3a087f5df80d0dbd8b912519da3fd", "fields": {"nom_de_la_commune": "CLAIRVAUX D AVEYRON", "libell_d_acheminement": "CLAIRVAUX D AVEYRON", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12066"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca3d71b46b7054e1f67c174da87e227226f5073", "fields": {"nom_de_la_commune": "COLOMBIES", "libell_d_acheminement": "COLOMBIES", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12068"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501a6bae35f20aa9cdafed27fcf06156ca209e23", "fields": {"nom_de_la_commune": "COMBRET", "libell_d_acheminement": "COMBRET", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12069"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0dff26241684e26d4d7f6aaa3ed155a0e10944e", "fields": {"nom_de_la_commune": "CONDOM D AUBRAC", "libell_d_acheminement": "CONDOM D AUBRAC", "code_postal": "12470", "coordonnees_gps": [44.5816447424, 2.9350498797], "code_commune_insee": "12074"}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa5b7893ba69ba8cb4af544140ccbc72021a7b5", "fields": {"nom_de_la_commune": "CONNAC", "libell_d_acheminement": "CONNAC", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12075"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0d164d6b9f27c35eddf97a190ce25c9105c3fb7", "fields": {"nom_de_la_commune": "CONQUES EN ROUERGUE", "libell_d_acheminement": "CONQUES EN ROUERGUE", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12076"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6a7fc41970f536c742893eb548cc00ba3bd036", "fields": {"nom_de_la_commune": "CURIERES", "libell_d_acheminement": "CURIERES", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12088"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ec18842223a66185ecb5e4f6cc6ff0c19a2ca1", "fields": {"nom_de_la_commune": "DRULHE", "libell_d_acheminement": "DRULHE", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12091"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b314850e8d7b70ce7bf0852e67cb45d326d7afec", "fields": {"nom_de_la_commune": "DURENQUE", "libell_d_acheminement": "DURENQUE", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12092"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a27e28bcfda33cf85e400b87b66907bd3b3b19d9", "fields": {"nom_de_la_commune": "GABRIAC", "libell_d_acheminement": "GABRIAC", "code_postal": "12340", "coordonnees_gps": [44.4656002773, 2.70710459278], "code_commune_insee": "12106"}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4370a39d507da9ca6a90620c4d8c9990da3f48", "fields": {"nom_de_la_commune": "GAILLAC D AVEYRON", "libell_d_acheminement": "GAILLAC D AVEYRON", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12107"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d136028bc31e6f26ab0d3a8a6b01c1091604910", "fields": {"nom_de_la_commune": "CIADOUX", "libell_d_acheminement": "CIADOUX", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31141"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925b78cafc79215469fcca8006484e4b7a54c031", "fields": {"nom_de_la_commune": "CLERMONT LE FORT", "libell_d_acheminement": "CLERMONT LE FORT", "code_postal": "31810", "coordonnees_gps": [43.4392556161, 1.44590848032], "code_commune_insee": "31148"}, "geometry": {"type": "Point", "coordinates": [1.44590848032, 43.4392556161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc45c6fdd8edd7c824a229815bf2834c5ce7e00", "fields": {"nom_de_la_commune": "COULADERE", "libell_d_acheminement": "COULADERE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31153"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01b0886e61eca8a5cb54a42e935fde60be74972", "fields": {"nom_de_la_commune": "COX", "libell_d_acheminement": "COX", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31156"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d028ad78ddc6247f879e38d796a0f962ec63cc55", "fields": {"nom_de_la_commune": "EMPEAUX", "libell_d_acheminement": "EMPEAUX", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31166"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02139c6b48d04c4c0e0143a5e3c10d994cab09fd", "fields": {"nom_de_la_commune": "ESPERCE", "libell_d_acheminement": "ESPERCE", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31173"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5032ebe4202326f54399792c2489d26add9f6a60", "fields": {"nom_de_la_commune": "ESTANCARBON", "libell_d_acheminement": "ESTANCARBON", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31175"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5e656b295118a821ef02fff1ac611c1ab7042b", "fields": {"nom_de_la_commune": "EUP", "libell_d_acheminement": "EUP", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31177"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02aa9ccebcb5e9a97773bbbca1607a8aa1f2f23", "fields": {"nom_de_la_commune": "FABAS", "libell_d_acheminement": "FABAS", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31178"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b39c5c1bf13c38accd7f176d2dfebaafb590ef", "fields": {"nom_de_la_commune": "FONBEAUZARD", "libell_d_acheminement": "FONBEAUZARD", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31186"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07196b14ce6ea8094369f826f324849013c28265", "fields": {"nom_de_la_commune": "FONTENILLES", "libell_d_acheminement": "FONTENILLES", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31188"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c702336282886746e9acc517850248c424443b", "fields": {"nom_de_la_commune": "LE FOUSSERET", "libell_d_acheminement": "LE FOUSSERET", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31193"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a42e65eb08b85fc8b232d04bf7ed6d37b869a4b", "fields": {"nom_de_la_commune": "FRONSAC", "libell_d_acheminement": "FRONSAC", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31199"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e78b785e2d7b7a954b98b00629febdbdd33eb81d", "fields": {"nom_de_la_commune": "GARAC", "libell_d_acheminement": "GARAC", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31209"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1137c2a6ea33ea092e73992fed1fd40e60093a6c", "fields": {"nom_de_la_commune": "GARIDECH", "libell_d_acheminement": "GARIDECH", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31212"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507b8e2b16be5d223f533286af2af7a4760139e4", "fields": {"nom_de_la_commune": "GRAZAC", "libell_d_acheminement": "GRAZAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31231"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6faf705a34934003f59bd286158c4266b4138b5", "fields": {"nom_de_la_commune": "HIS", "libell_d_acheminement": "HIS", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31237"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb0b05da879006de17acb99227093c78da22941", "fields": {"nom_de_la_commune": "JUZES", "libell_d_acheminement": "JUZES", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31243"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e7065748940eb5bb8bbe522c82ceed6a8a0276", "fields": {"nom_de_la_commune": "LABARTHE INARD", "libell_d_acheminement": "LABARTHE INARD", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31246"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47f26488a1ed3eba7561140f176dc495f1b51045", "fields": {"nom_de_la_commune": "LABARTHE RIVIERE", "libell_d_acheminement": "LABARTHE RIVIERE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31247"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d71813ef28222134e3d07d0e9d4c410489eb324", "fields": {"nom_de_la_commune": "LABARTHE SUR LEZE", "libell_d_acheminement": "LABARTHE SUR LEZE", "code_postal": "31860", "coordonnees_gps": [43.4654456121, 1.39604999042], "code_commune_insee": "31248"}, "geometry": {"type": "Point", "coordinates": [1.39604999042, 43.4654456121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db402032530b5f3ab2136605522784e9df743f1a", "fields": {"nom_de_la_commune": "LABASTIDE CLERMONT", "libell_d_acheminement": "LABASTIDE CLERMONT", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31250"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2608c10cf44b9969178378da09fc731c8f6cea47", "fields": {"nom_de_la_commune": "LABASTIDE PAUMES", "libell_d_acheminement": "LABASTIDE PAUMES", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31251"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209524f67a5b295a09b83ea7a1ffc81fce8d681d", "fields": {"nom_de_la_commune": "LABASTIDE ST SERNIN", "libell_d_acheminement": "LABASTIDE ST SERNIN", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31252"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dddeb5082e550ee52ff6036b0c398b011a0b13f", "fields": {"nom_de_la_commune": "LABRUYERE DORSA", "libell_d_acheminement": "LABRUYERE DORSA", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31256"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421e3d9ceddc0d9a8c3525bcc49b4d242eed6ea3", "fields": {"nom_de_la_commune": "LAGARDELLE SUR LEZE", "libell_d_acheminement": "LAGARDELLE SUR LEZE", "code_postal": "31870", "coordonnees_gps": [43.3914758658, 1.36906768586], "code_commune_insee": "31263"}, "geometry": {"type": "Point", "coordinates": [1.36906768586, 43.3914758658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9740d885a9b7b0f2c907a52bed9196fc3b7389", "fields": {"nom_de_la_commune": "LAGRACE DIEU", "libell_d_acheminement": "LAGRACE DIEU", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31264"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680499f957c93b27dfd53ab3c4496a781446e5ba", "fields": {"nom_de_la_commune": "LAHITERE", "libell_d_acheminement": "LAHITERE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31267"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd169747de6837009bf445bd3ec013acf37593f", "fields": {"nom_de_la_commune": "LALOURET LAFFITEAU", "libell_d_acheminement": "LALOURET LAFFITEAU", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31268"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f954abced8d461dd660674a8e1876c79a90ea06a", "fields": {"nom_de_la_commune": "LANDORTHE", "libell_d_acheminement": "LANDORTHE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31270"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de886013929ee839f3fad5a039fe01c16316574e", "fields": {"nom_de_la_commune": "LARROQUE", "libell_d_acheminement": "LARROQUE", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31276"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5fad744edd22160f59dd43c73a9e65bfd5d6efe", "fields": {"nom_de_la_commune": "LATOUE", "libell_d_acheminement": "LATOUE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31278"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feea2f778ccb728961693cd63af8b8afcd11f146", "fields": {"nom_de_la_commune": "LESPINASSE", "libell_d_acheminement": "LESPINASSE", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31293"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925d6ecdd7bf9f46bbe9a80f4e33ea6e37caa521", "fields": {"nom_de_la_commune": "LESPITEAU", "libell_d_acheminement": "LESPITEAU", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31294"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46e6eb93eaa3e0b5814e460d85a1405b16fee91", "fields": {"nom_de_la_commune": "LESPUGUE", "libell_d_acheminement": "LESPUGUE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31295"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7843f9c612ebff3faf7f874a52619a0e717780", "fields": {"nom_de_la_commune": "LEVIGNAC", "libell_d_acheminement": "LEVIGNAC", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31297"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5855cd736eb1999f9e47e0f53062a7d4f7ea5d", "fields": {"nom_de_la_commune": "LIEOUX", "libell_d_acheminement": "LIEOUX", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31300"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0e0d5f42e5492b57709f074523725e331aa298d", "fields": {"nom_de_la_commune": "LOUDET", "libell_d_acheminement": "LOUDET", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31305"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf1e2c83a9b881d89b287a021a444731335fe36", "fields": {"nom_de_la_commune": "MANCIOUX", "libell_d_acheminement": "MANCIOUX", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31314"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc785f7189c51fe0f26a4e8d73a54455683e9518", "fields": {"nom_de_la_commune": "MARIGNAC LASCLARES", "libell_d_acheminement": "MARIGNAC LASCLARES", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31317"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70c533e2ea2239f147721bcf2437c3c3f46c050", "fields": {"nom_de_la_commune": "MARLIAC", "libell_d_acheminement": "MARLIAC", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31319"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b885f18f024bda11adf21dd337456926cb0c2d1", "fields": {"nom_de_la_commune": "MERVILLA", "libell_d_acheminement": "MERVILLA", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31340"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910fa41f02469c12f3e13243c26fcd39bcd08766", "fields": {"nom_de_la_commune": "MIREPOIX SUR TARN", "libell_d_acheminement": "MIREPOIX SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31346"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96abadf0aa0002476d9bedfe6a7eace583297333", "fields": {"nom_de_la_commune": "MOLAS", "libell_d_acheminement": "MOLAS", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31347"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36be3f729526f01eba1719307e90c65b96f3ccfb", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "31280", "coordonnees_gps": [43.5930942522, 1.59070902866], "code_commune_insee": "31355"}, "geometry": {"type": "Point", "coordinates": [1.59070902866, 43.5930942522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124806dac9e4cc4230566d792499c00146ffa4e2", "fields": {"nom_de_la_commune": "MONTASTRUC LA CONSEILLERE", "libell_d_acheminement": "MONTASTRUC LA CONSEILLERE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31358"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a5f4e16e9136f777052af7782f944584aacf9a", "fields": {"nom_de_la_commune": "MONTBERAUD", "libell_d_acheminement": "MONTBERAUD", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31362"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca44dc9699fc06e303c737127ed46ffb6b58409", "fields": {"nom_de_la_commune": "MONTBRUN LAURAGAIS", "libell_d_acheminement": "MONTBRUN LAURAGAIS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31366"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbfb407d4586b24383fa0f688f07a47e6f32f9b5", "fields": {"nom_de_la_commune": "MONTCLAR DE COMMINGES", "libell_d_acheminement": "MONTCLAR DE COMMINGES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31367"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59af4928290cfe3d195f78c210341dffa99147b0", "fields": {"nom_de_la_commune": "MONTESQUIEU VOLVESTRE", "libell_d_acheminement": "MONTESQUIEU VOLVESTRE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31375"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d0ec20b34bfe6d6c32e42090d9c561395c89e0c", "fields": {"nom_de_la_commune": "MONTGAILLARD SUR SAVE", "libell_d_acheminement": "MONTGAILLARD SUR SAVE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31378"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd4b428bf9d9db7acf46d6ec01fab95ce218bb8", "fields": {"nom_de_la_commune": "MONTOULIEU ST BERNARD", "libell_d_acheminement": "MONTOULIEU ST BERNARD", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31386"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e9c21b1a1a5e83878f197a4df6f8ecf542012f", "fields": {"nom_de_la_commune": "MONTRABE", "libell_d_acheminement": "MONTRABE", "code_postal": "31850", "coordonnees_gps": [43.6433615869, 1.54999438189], "code_commune_insee": "31389"}, "geometry": {"type": "Point", "coordinates": [1.54999438189, 43.6433615869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6255f802abe50e00393d4ebb58c36ab57a899fa6", "fields": {"nom_de_la_commune": "MURET", "libell_d_acheminement": "MURET", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31395"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b0ed829d37b1b2d358330baa9a88b751e524198", "fields": {"nom_de_la_commune": "NAILLOUX", "libell_d_acheminement": "NAILLOUX", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31396"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6490c18d0ee65849976412e59778a9772abcb9", "fields": {"nom_de_la_commune": "NOUEILLES", "libell_d_acheminement": "NOUEILLES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31401"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9db239868c26ccee6097955cb65425b7f358b7", "fields": {"nom_de_la_commune": "ODARS", "libell_d_acheminement": "ODARS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31402"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d5562a1b780c17436096a9172a23c235b728de", "fields": {"nom_de_la_commune": "ONDES", "libell_d_acheminement": "ONDES", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31403"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04c1e5f6080b1b56bf879f63404d2403a46d18c", "fields": {"nom_de_la_commune": "PECHBUSQUE", "libell_d_acheminement": "PECHBUSQUE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31411"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a409a366562d68b059d14e1c05af118484426088", "fields": {"nom_de_la_commune": "PEYRISSAS", "libell_d_acheminement": "PEYRISSAS", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31414"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24009597400c7c3ce9df2fe5e26bda0e2fe1562", "fields": {"nom_de_la_commune": "PEYROUZET", "libell_d_acheminement": "PEYROUZET", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31415"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6c90de9c32af1c209235c0889b04fdaf3590a8", "fields": {"nom_de_la_commune": "LE PIN MURELET", "libell_d_acheminement": "LE PIN MURELET", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31419"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff06255cf36ef950831a47d44f062c5c07d687b", "fields": {"nom_de_la_commune": "PINS JUSTARET", "libell_d_acheminement": "PINS JUSTARET", "code_postal": "31860", "coordonnees_gps": [43.4654456121, 1.39604999042], "code_commune_insee": "31421"}, "geometry": {"type": "Point", "coordinates": [1.39604999042, 43.4654456121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57c05864519aaa89a633ef7fd54114936d9a1d5", "fields": {"nom_de_la_commune": "LE PLAN", "libell_d_acheminement": "LE PLAN", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31425"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af82eb5af2b229c5d78f0dd699c4d592f6927859", "fields": {"nom_de_la_commune": "POUY DE TOUGES", "libell_d_acheminement": "POUY DE TOUGES", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31436"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3eb701cdf3f26e02e53b85b91f32b988eff88a", "fields": {"nom_de_la_commune": "PRESERVILLE", "libell_d_acheminement": "PRESERVILLE", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31439"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c2703761a2bb31cffc9dfcbda8528c5948a0f3", "fields": {"nom_de_la_commune": "PROUPIARY", "libell_d_acheminement": "PROUPIARY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31440"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6743f33a00968d5192baeae7153b25cff07b3446", "fields": {"nom_de_la_commune": "PUYDANIEL", "libell_d_acheminement": "PUYDANIEL", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31442"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baca79d26471a0d6e6c57f1a8eadfe3ac622f251", "fields": {"nom_de_la_commune": "PUYMAURIN", "libell_d_acheminement": "PUYMAURIN", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31443"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39bd76e5be79be6475d7f5eaac6679e847c385a", "fields": {"nom_de_la_commune": "PUYSSEGUR", "libell_d_acheminement": "PUYSSEGUR", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31444"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566813871733907c4ba2628c051271ceea476fd3", "fields": {"nom_de_la_commune": "RAMONVILLE ST AGNE", "libell_d_acheminement": "RAMONVILLE ST AGNE", "code_postal": "31520", "coordonnees_gps": [43.5440367892, 1.47752432498], "code_commune_insee": "31446"}, "geometry": {"type": "Point", "coordinates": [1.47752432498, 43.5440367892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0060669565cb1cf0fbaf2aed9ae72ed3b1a0f04e", "fields": {"nom_de_la_commune": "RIEUMES", "libell_d_acheminement": "RIEUMES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31454"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3316fddcb30f52deb15dd2c14d63d0b2c1a8ca", "fields": {"nom_de_la_commune": "RIOLAS", "libell_d_acheminement": "RIOLAS", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31456"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4696140999ff78de38d35adbd28ee8bac19a5d2c", "fields": {"nom_de_la_commune": "ROQUESERIERE", "libell_d_acheminement": "ROQUESERIERE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31459"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f45945856a3a038586abb0f41c5d5048850d442", "fields": {"nom_de_la_commune": "ROQUETTES", "libell_d_acheminement": "ROQUETTES", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31460"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "013cc7c5664eebc5e2a8a143e01013a39c2a46c3", "fields": {"nom_de_la_commune": "ST CEZERT", "libell_d_acheminement": "ST CEZERT", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31473"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234bc2fd8a73d0ce8eed20af37f931619235c582", "fields": {"nom_de_la_commune": "ST ELIX LE CHATEAU", "libell_d_acheminement": "ST ELIX LE CHATEAU", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31476"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373faee747c0701417e6216f85a558d1adaeb04c", "fields": {"nom_de_la_commune": "ST ELIX SEGLAN", "libell_d_acheminement": "ST ELIX SEGLAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31477"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0eabd6492f3accd559e1ab6106cc1516a36a49e", "fields": {"nom_de_la_commune": "ST GAUDENS", "libell_d_acheminement": "ST GAUDENS", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31483"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16be06a92aa8eb666b131b1de8e3d0b2b98d5243", "fields": {"nom_de_la_commune": "ST GENIES BELLEVUE", "libell_d_acheminement": "ST GENIES BELLEVUE", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31484"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057cbe069c3a38e76e5163bc441621fa98cdc063", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31486"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd7b0e82d8b0880a9010ef416c6d56122db071d", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31495"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40530b282f061fffd55dd293f69dd54b2b7b207", "fields": {"nom_de_la_commune": "ST PIERRE DE LAGES", "libell_d_acheminement": "ST PIERRE DE LAGES", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31512"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "003b8c647e109d69db79227dd0755559b24a820c", "fields": {"nom_de_la_commune": "ST THOMAS", "libell_d_acheminement": "ST THOMAS", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31518"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951499e42638f49eac7fdf2cf4c03b6bff357435", "fields": {"nom_de_la_commune": "SALEICH", "libell_d_acheminement": "SALEICH", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31521"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ed41fa58758829d77bf6f3410a239cf923a8a39", "fields": {"nom_de_la_commune": "LA SALVETAT LAURAGAIS", "libell_d_acheminement": "LA SALVETAT LAURAGAIS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31527"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828f9e35fd3f9162d1f1c09b334d5ee0baed2542", "fields": {"nom_de_la_commune": "SARRECAVE", "libell_d_acheminement": "SARRECAVE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31531"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2230a1675501d3c087debb15faf32cc3b9bb72", "fields": {"nom_de_la_commune": "SARREMEZAN", "libell_d_acheminement": "SARREMEZAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31532"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebc1c32cdc7c00dccd29e75348d0c244e217ec2", "fields": {"nom_de_la_commune": "SAUSSENS", "libell_d_acheminement": "SAUSSENS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31534"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef1575830789c5ae5f754d2c621c0c20b28fdc9", "fields": {"nom_de_la_commune": "SENARENS", "libell_d_acheminement": "SENARENS", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31543"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466dab4241b28d496a62974a469f20ac8c6f2f4c", "fields": {"nom_de_la_commune": "SEYSSES", "libell_d_acheminement": "SEYSSES", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31547"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cad0dcc0f1701b7424669b44fffec0edc259e9", "fields": {"nom_de_la_commune": "TARABEL", "libell_d_acheminement": "TARABEL", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31551"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "247bed4d79b770622a10559807f3e375b8d9a49a", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31000", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be4435b9ca74f7a5d6bbc961d5ce46f78394838", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31100", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54726692299d40c69d5de4e66747f5cd51b16f49", "fields": {"nom_de_la_commune": "LES TOURREILLES", "libell_d_acheminement": "LES TOURREILLES", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31556"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465a882a5758b49172e2fe321f7edf4acd483e6f", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31570"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7337dc6b8e32e622f7da706875233e984f701b", "fields": {"nom_de_la_commune": "VENDINE", "libell_d_acheminement": "VENDINE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31571"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab93a42b6bd3fde981d3042af91d7ae6f07f253", "fields": {"nom_de_la_commune": "LARRA", "libell_d_acheminement": "LARRA", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31592"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a6ad9b56829fdd097b732f3639e5b633e36f6b1", "fields": {"nom_de_la_commune": "ANTRAS", "libell_d_acheminement": "ANTRAS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32003"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92477866edc7f3eb2ab29a2371bc6556568a7d0", "fields": {"nom_de_la_commune": "ARBLADE LE HAUT", "libell_d_acheminement": "ARBLADE LE HAUT", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32005"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac98a00e1317142372b5e45dfd49153a7469e65", "fields": {"nom_de_la_commune": "SAUGEOT", "libell_d_acheminement": "SAUGEOT", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39505"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d402c47e63af90c47d4abdeb29329ebc6b6a2077", "fields": {"nom_de_la_commune": "SERGENAUX", "libell_d_acheminement": "SERGENAUX", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39511"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9594b9c0ab62cdfb677d4677e30d497b2ea7e2e", "fields": {"code_postal": "39300", "code_commune_insee": "39517", "libell_d_acheminement": "SIROD", "ligne_5": "TREFFAY", "nom_de_la_commune": "SIROD", "coordonnees_gps": [46.7556867768, 5.90281733737]}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318b99923d197b9a75d75b8bbd4f9cd4663ba8f9", "fields": {"nom_de_la_commune": "SONGESON", "libell_d_acheminement": "SONGESON", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39518"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5623516e919e777a3f91dbad00494389025280", "fields": {"nom_de_la_commune": "TAXENNE", "libell_d_acheminement": "TAXENNE", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39527"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "642c7c3e8a00f082723927abedc13819997b959a", "fields": {"nom_de_la_commune": "THOIRETTE", "libell_d_acheminement": "THOIRETTE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39530"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16c1b2342679b916cf884e8eb2384d8903056bb", "fields": {"nom_de_la_commune": "THOIRIA", "libell_d_acheminement": "THOIRIA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39531"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa5a4afaf4e509d1ea1a90b86efdb9b36af5434", "fields": {"nom_de_la_commune": "TOULOUSE LE CHATEAU", "libell_d_acheminement": "TOULOUSE LE CHATEAU", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39533"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f844708ca85ed855ae03a7244a4ac8dcf4eedb6", "fields": {"nom_de_la_commune": "TOURMONT", "libell_d_acheminement": "TOURMONT", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39535"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311b9c86609d596b1f256731ceda7b37bafb1991", "fields": {"nom_de_la_commune": "UXELLES", "libell_d_acheminement": "UXELLES", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39538"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38e7912943b6c01d34fb3489aa8423adb3d1761", "fields": {"nom_de_la_commune": "VALEMPOULIERES", "libell_d_acheminement": "VALEMPOULIERES", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39540"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ecd1c755a9f31318a4d22a332992f7de16816d", "fields": {"nom_de_la_commune": "VANNOZ", "libell_d_acheminement": "VANNOZ", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39543"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c8e4324f829261b32365b38ed955dcbc120a7e", "fields": {"nom_de_la_commune": "VEVY", "libell_d_acheminement": "VEVY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39558"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa3c03c20a918d93d042941d573919deaa54be4", "fields": {"nom_de_la_commune": "LA VIEILLE LOYE", "libell_d_acheminement": "LA VIEILLE LOYE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39559"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91152675aee0aa5d1c611f3472b6634a3407f616", "fields": {"nom_de_la_commune": "VILLENEUVE SOUS PYMONT", "libell_d_acheminement": "VILLENEUVE SOUS PYMONT", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39567"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de28172c6cdccd963b47c3c0f103a8fcfc342637", "fields": {"nom_de_la_commune": "VILLERS LES BOIS", "libell_d_acheminement": "VILLERS LES BOIS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39570"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b02aa877591b541072ca0bd9d7faf1779565d5f", "fields": {"nom_de_la_commune": "VULVOZ", "libell_d_acheminement": "VULVOZ", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39585"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09145d97813d951e5f1fca8fd44daad1533b87b1", "fields": {"nom_de_la_commune": "ARENGOSSE", "libell_d_acheminement": "ARENGOSSE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40006"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234266bdc4dc8ebe6da66b764876d3ca0d5d97f0", "fields": {"nom_de_la_commune": "ARGELOUSE", "libell_d_acheminement": "ARGELOUSE", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40008"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6bf3b2002307ba1c66467ebaf95307ea2e9c0b", "fields": {"nom_de_la_commune": "ARJUZANX", "libell_d_acheminement": "ARJUZANX", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40009"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70a8e62f8db2096dab4e1b5eb54b2b9f60e2e5e", "fields": {"nom_de_la_commune": "BASSERCLES", "libell_d_acheminement": "BASSERCLES", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40027"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53bf0807b00874f7b6e0ffd6b46931ea03986df6", "fields": {"nom_de_la_commune": "BATS", "libell_d_acheminement": "BATS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40029"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac321880157f3decdee3b9fc0bcf265dd5ec073", "fields": {"nom_de_la_commune": "BENQUET", "libell_d_acheminement": "BENQUET", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40037"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3c220752029bbb18930bbf8c6b81c77bcde76c", "fields": {"nom_de_la_commune": "BETBEZER D ARMAGNAC", "libell_d_acheminement": "BETBEZER D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40039"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a15c7b29d28917c8348b821e842a15a8d4c35da", "fields": {"nom_de_la_commune": "BEYLONGUE", "libell_d_acheminement": "BEYLONGUE", "code_postal": "40370", "coordonnees_gps": [43.9279657957, -0.915942648289], "code_commune_insee": "40040"}, "geometry": {"type": "Point", "coordinates": [-0.915942648289, 43.9279657957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684ee726d8615b14c822226539a6b47ffac76d10", "fields": {"code_postal": "40600", "code_commune_insee": "40046", "libell_d_acheminement": "BISCARROSSE", "ligne_5": "BISCARROSSE PLAGE", "nom_de_la_commune": "BISCARROSSE", "coordonnees_gps": [44.4090784689, -1.17737599006]}, "geometry": {"type": "Point", "coordinates": [-1.17737599006, 44.4090784689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30202fa0fc4e1c8d4c4a74847426abd3dc0ed6f4", "fields": {"nom_de_la_commune": "BONNEGARDE", "libell_d_acheminement": "BONNEGARDE", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40047"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d9af167977e25810d8776144f923aea2ab5f25", "fields": {"nom_de_la_commune": "BOUGUE", "libell_d_acheminement": "BOUGUE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40051"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c996ed38cbb511a049577199a36acab776d871", "fields": {"nom_de_la_commune": "CACHEN", "libell_d_acheminement": "CACHEN", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40058"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d1307805e82e265cef4db63e3013ab3533aa5b", "fields": {"nom_de_la_commune": "CALLEN", "libell_d_acheminement": "CALLEN", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40060"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a926bd0fe9f954f768261de6a50e098e877c6345", "fields": {"nom_de_la_commune": "CANDRESSE", "libell_d_acheminement": "CANDRESSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40063"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccbe4d9784ba08c7937800a2847c92a02a5d8c00", "fields": {"nom_de_la_commune": "CASSEN", "libell_d_acheminement": "CASSEN", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40068"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c269941d164049b442dda4ae5355b2e1a2e33f79", "fields": {"nom_de_la_commune": "CASTANDET", "libell_d_acheminement": "CASTANDET", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40070"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5aa228d55ee83dedf3893a1a82a0c6028c8e00d", "fields": {"nom_de_la_commune": "CASTELNER", "libell_d_acheminement": "CASTELNER", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40073"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889c46ea1f0ccd955c5a5162678cfc75cd1c1491", "fields": {"nom_de_la_commune": "CASTETS", "libell_d_acheminement": "CASTETS", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40075"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f4a794c035943f13b782a3acb854243df094d4a", "fields": {"nom_de_la_commune": "CAUPENNE", "libell_d_acheminement": "CAUPENNE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40078"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488bfe7f0b515641b2a601ec49d20539d5782355", "fields": {"nom_de_la_commune": "CERE", "libell_d_acheminement": "CERE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40081"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d9c6522cf78e05df3d0414df44f60508463a54", "fields": {"nom_de_la_commune": "DUHORT BACHEN", "libell_d_acheminement": "DUHORT BACHEN", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40091"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891989620ada17b02c42d71a6d8fa5af4a10c683", "fields": {"nom_de_la_commune": "DUMES", "libell_d_acheminement": "DUMES", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40092"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3cc11883b81e6bb42e782186d8a5defbd9077ce", "fields": {"nom_de_la_commune": "ESCALANS", "libell_d_acheminement": "ESCALANS", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40093"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be1669b2cebee1a61ce84a79994471b6457e51d", "fields": {"nom_de_la_commune": "GARROSSE", "libell_d_acheminement": "GARROSSE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40107"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788e89dcf1c3ef0a4e4a883a4e13585552d4d3df", "fields": {"nom_de_la_commune": "GAUJACQ", "libell_d_acheminement": "GAUJACQ", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40109"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4016aa070903ab0018b7826f238d197b89a27cd8", "fields": {"nom_de_la_commune": "GOURBERA", "libell_d_acheminement": "GOURBERA", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40114"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32442230a115fe41195e227f8ecd8f9c606da325", "fields": {"nom_de_la_commune": "GOUTS", "libell_d_acheminement": "GOUTS", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40116"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07cd6cda86e231fc324782198841d46f409e2404", "fields": {"nom_de_la_commune": "LACQUY", "libell_d_acheminement": "LACQUY", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40137"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831f2ce439c0831c16ff1cf23e0fe20d76714c67", "fields": {"nom_de_la_commune": "LOSSE", "libell_d_acheminement": "LOSSE", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40158"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11376b894b3d240bc78415f2958d430085df4af5", "fields": {"nom_de_la_commune": "LUGLON", "libell_d_acheminement": "LUGLON", "code_postal": "40630", "coordonnees_gps": [44.158641182, -0.72802164635], "code_commune_insee": "40165"}, "geometry": {"type": "Point", "coordinates": [-0.72802164635, 44.158641182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f703ea83c03712eb71e100be2691f66351f2f70", "fields": {"nom_de_la_commune": "MAILLERES", "libell_d_acheminement": "MAILLERES", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40170"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85708108e4899b2642ecdf4821f86f164ed89ec2", "fields": {"nom_de_la_commune": "MAUVEZIN D ARMAGNAC", "libell_d_acheminement": "MAUVEZIN D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40176"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4997ef2483531f49536174a2cb64eacfeab4002", "fields": {"nom_de_la_commune": "MIRAMONT SENSACQ", "libell_d_acheminement": "MIRAMONT SENSACQ", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40185"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd79ad0e1f537c4261deed65ea281c2878332f6", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40195"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50949a5f2a08ddf94c7c8f607f5c5ba416c5af5", "fields": {"nom_de_la_commune": "MORCENX", "libell_d_acheminement": "MORCENX", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40197"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20058fdb65ca264435413bb581a5697840ac12ca", "fields": {"nom_de_la_commune": "NASSIET", "libell_d_acheminement": "NASSIET", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40203"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4748dd8bf2e9ea4e2e0a843dd7ef443b0178890", "fields": {"nom_de_la_commune": "NOUSSE", "libell_d_acheminement": "NOUSSE", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40205"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099e620fb8104ddd2ea5989d24f5b210af0a5be7", "fields": {"nom_de_la_commune": "ONESSE LAHARIE", "libell_d_acheminement": "ONESSE LAHARIE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40210"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7771c9bb7c3ebc6dbc11c273445f2710a43a8faa", "fields": {"nom_de_la_commune": "ORTHEVIELLE", "libell_d_acheminement": "ORTHEVIELLE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40212"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b328c9304e863f04f09310131f2f26f85f3a5f", "fields": {"nom_de_la_commune": "OZOURT", "libell_d_acheminement": "OZOURT", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40216"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d3401ef95e36d6e7a7983640485761565106f1", "fields": {"nom_de_la_commune": "PARLEBOSCQ", "libell_d_acheminement": "PARLEBOSCQ", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40218"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1bcda868afd0d787fbd2527fd3ad34da4bbb72", "fields": {"nom_de_la_commune": "POMAREZ", "libell_d_acheminement": "POMAREZ", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40228"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6624ec38726d47be8ac215e9537e9a9c376fc6f", "fields": {"nom_de_la_commune": "PONTENX LES FORGES", "libell_d_acheminement": "PONTENX LES FORGES", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40229"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c85d5052506e0b7c82501a7a7a1f49e23a9080", "fields": {"nom_de_la_commune": "PORT DE LANNE", "libell_d_acheminement": "PORT DE LANNE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40231"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abcfa62f72a1268051ac3d814f7b65d2fe337f0f", "fields": {"nom_de_la_commune": "POUDENX", "libell_d_acheminement": "POUDENX", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40232"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f776f6a3807aebd1f18d747019802fbe726600", "fields": {"nom_de_la_commune": "POUYDESSEAUX", "libell_d_acheminement": "POUYDESSEAUX", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40234"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a186a9ad72bff216da8202d3748e1b9e979e80", "fields": {"nom_de_la_commune": "POYANNE", "libell_d_acheminement": "POYANNE", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40235"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbbc9f12beb8a12a4c9d8f960081ba84a018810", "fields": {"nom_de_la_commune": "ST AGNET", "libell_d_acheminement": "ST AGNET", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40247"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff5b5ffe78c612dbec3c3fc588ff57b951aafdf", "fields": {"nom_de_la_commune": "ST GEOURS D AURIBAT", "libell_d_acheminement": "ST GEOURS D AURIBAT", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40260"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d672d7402f7782ed0530b6d52951e46a8a63a55f", "fields": {"nom_de_la_commune": "ST GOR", "libell_d_acheminement": "ST GOR", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40262"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df4c7748d1abc6103d7f0b5cebab76afb193bb4", "fields": {"nom_de_la_commune": "ST JEAN DE LIER", "libell_d_acheminement": "ST JEAN DE LIER", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40263"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5be5e76d06d471b47e3804d9529ad0bc19f0cd", "fields": {"nom_de_la_commune": "ST JEAN DE MARSACQ", "libell_d_acheminement": "ST JEAN DE MARSACQ", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40264"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6797724a906a19b544032e8fe9b4e24f57f4df6", "fields": {"nom_de_la_commune": "ST JULIEN D ARMAGNAC", "libell_d_acheminement": "ST JULIEN D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40265"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79f8a72e0a175dbfb9da83515b1f808cab69b98", "fields": {"nom_de_la_commune": "ST LAURENT DE GOSSE", "libell_d_acheminement": "ST LAURENT DE GOSSE", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40268"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fabbea6cfcb739c266ecd872e9acdbd9235bc19c", "fields": {"nom_de_la_commune": "ST LON LES MINES", "libell_d_acheminement": "ST LON LES MINES", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40269"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd0fa177620de46bd5fa837df7858a05bb3c704", "fields": {"nom_de_la_commune": "STE MARIE DE GOSSE", "libell_d_acheminement": "STE MARIE DE GOSSE", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40271"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76d8f0efded3b90666928e186cf7dc625603e46", "fields": {"nom_de_la_commune": "ST MICHEL ESCALUS", "libell_d_acheminement": "ST MICHEL ESCALUS", "code_postal": "40550", "coordonnees_gps": [43.8558812833, -1.27461526847], "code_commune_insee": "40276"}, "geometry": {"type": "Point", "coordinates": [-1.27461526847, 43.8558812833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728f6a8c73f9fbf863fcc2b2eb92e181cf7886bf", "fields": {"nom_de_la_commune": "ST PAUL EN BORN", "libell_d_acheminement": "ST PAUL EN BORN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40278"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ed6b841f0c840ac0bf235347f99ed0f0857fa1", "fields": {"nom_de_la_commune": "ST PERDON", "libell_d_acheminement": "ST PERDON", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40280"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a882523ab8f0818e5387c8d98231fa99c0ad2c", "fields": {"nom_de_la_commune": "SARBAZAN", "libell_d_acheminement": "SARBAZAN", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40288"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4af825a7888562bade1b269489341d6602593c3", "fields": {"nom_de_la_commune": "SARRON", "libell_d_acheminement": "SARRON", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40290"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b4214cf2b155f9ef6d83fbd2e348407c3a72cf", "fields": {"nom_de_la_commune": "SAUGNAC ET CAMBRAN", "libell_d_acheminement": "SAUGNAC ET CAMBRAN", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40294"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156953788004a8f3642d02d8569fd4a329593ea5", "fields": {"nom_de_la_commune": "LE SEN", "libell_d_acheminement": "LE SEN", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40297"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13eb63bb1163ec540358133c157f0e5705cd560", "fields": {"nom_de_la_commune": "TOSSE", "libell_d_acheminement": "TOSSE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40317"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542cfdb69979b0ad7e55415b96ac8c8c7161cad9", "fields": {"nom_de_la_commune": "UCHACQ ET PARENTIS", "libell_d_acheminement": "UCHACQ ET PARENTIS", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40320"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9add5e36ccee0b9b34f8d387c9f90ef3f22d4dc1", "fields": {"nom_de_la_commune": "VICQ D AURIBAT", "libell_d_acheminement": "VICQ D AURIBAT", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40324"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320ba0ac5af5863ffb891159ec78b12da0dfecbc", "fields": {"code_postal": "40560", "code_commune_insee": "40326", "libell_d_acheminement": "VIELLE ST GIRONS", "ligne_5": "ST GIRONS", "nom_de_la_commune": "VIELLE ST GIRONS", "coordonnees_gps": [43.9396188358, -1.32531698317]}, "geometry": {"type": "Point", "coordinates": [-1.32531698317, 43.9396188358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e9285a25d910b40026de25c2e74f1b56371d23", "fields": {"nom_de_la_commune": "BONNEVEAU", "libell_d_acheminement": "BONNEVEAU", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41020"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aec7a0b13049a9c6dc2a082b0be940695a3474d", "fields": {"nom_de_la_commune": "CHAILLES", "libell_d_acheminement": "CHAILLES", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41032"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661c2eb4dc105d5c19188a354b433d01f92f2900", "fields": {"nom_de_la_commune": "LA CHAPELLE ENCHERIE", "libell_d_acheminement": "LA CHAPELLE ENCHERIE", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41037"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff63845aafdf1f0e83f805123c046f3b2134d8b1", "fields": {"nom_de_la_commune": "CHATRES SUR CHER", "libell_d_acheminement": "CHATRES SUR CHER", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41044"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260f239977e79ed5f77c1d42cad346979decb407", "fields": {"nom_de_la_commune": "CHITENAY", "libell_d_acheminement": "CHITENAY", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41052"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2104ffb8dd37450ff799da91efbbf2f15ca89546", "fields": {"nom_de_la_commune": "CHOUZY SUR CISSE", "libell_d_acheminement": "CHOUZY SUR CISSE", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41055"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43273c9059daaf373dfaa84b997bbf13222deef", "fields": {"nom_de_la_commune": "CONTRES", "libell_d_acheminement": "CONTRES", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41059"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12f6e429370b9041f190b2f8bf3379c10666da18", "fields": {"nom_de_la_commune": "COUR SUR LOIRE", "libell_d_acheminement": "COUR SUR LOIRE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41069"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9aada768b3567e31c39c1ec0854092b5fe6ef73", "fields": {"nom_de_la_commune": "EPUISAY", "libell_d_acheminement": "EPUISAY", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41078"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "286e467274f569d98072bcb9a0040737307ad813", "fields": {"nom_de_la_commune": "LA FERTE BEAUHARNAIS", "libell_d_acheminement": "LA FERTE BEAUHARNAIS", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41083"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c774b42cbb5584e6814eac0e620471c05bf723", "fields": {"nom_de_la_commune": "GIEVRES", "libell_d_acheminement": "GIEVRES", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41097"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042a60ed7dbe76978bc31c9bdbf669ec863405ca", "fields": {"nom_de_la_commune": "HERBAULT", "libell_d_acheminement": "HERBAULT", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41101"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d1e5f6e74886c744bfac00b345052610226460", "fields": {"nom_de_la_commune": "LAVARDIN", "libell_d_acheminement": "LAVARDIN", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41113"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19add0a6c56de2f4260930f726ff37f34203d883", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41115"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534bc28452aaede6a1810059050f770e6d20673c", "fields": {"nom_de_la_commune": "LUNAY", "libell_d_acheminement": "LUNAY", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41120"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776c3b4ceaad74dadcf765fc1b3a00baa69c1eb8", "fields": {"nom_de_la_commune": "LA MADELEINE VILLEFROUIN", "libell_d_acheminement": "LA MADELEINE VILLEFROUIN", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41121"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e301df21643836e6841da434ae391b7a926e080", "fields": {"nom_de_la_commune": "RISOUL", "libell_d_acheminement": "RISOUL", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05119"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf3830b4f1c171312d598266fa85827b9c94d143", "fields": {"nom_de_la_commune": "ROSANS", "libell_d_acheminement": "ROSANS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05126"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592d1d2900db186191cf55df3ba211f0b6b94058", "fields": {"code_postal": "04870", "code_commune_insee": "04192", "libell_d_acheminement": "ST MICHEL L OBSERVATOIRE", "ligne_5": "LINCEL", "nom_de_la_commune": "ST MICHEL L OBSERVATOIRE", "coordonnees_gps": [43.9100527166, 5.71951283104]}, "geometry": {"type": "Point", "coordinates": [5.71951283104, 43.9100527166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b841c1df94a1ffef0d472cc18e53a06d29bdd03", "fields": {"code_postal": "04400", "code_commune_insee": "04226", "libell_d_acheminement": "UVERNET FOURS", "ligne_5": "FOURS", "nom_de_la_commune": "UVERNET FOURS", "coordonnees_gps": [44.3554624604, 6.65679459978]}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a2e81cc78247a165170dee807f85056ac5125e", "fields": {"nom_de_la_commune": "ST MICHEL L OBSERVATOIRE", "libell_d_acheminement": "ST MICHEL L OBSERVATOIRE", "code_postal": "04870", "coordonnees_gps": [43.9100527166, 5.71951283104], "code_commune_insee": "04192"}, "geometry": {"type": "Point", "coordinates": [5.71951283104, 43.9100527166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa8f2799a75a2e70643e3fa91daf4162f61097a", "fields": {"nom_de_la_commune": "SIMIANE LA ROTONDE", "libell_d_acheminement": "SIMIANE LA ROTONDE", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04208"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf5b822d27bb8e40eaa6328a266474f600dd2ab", "fields": {"nom_de_la_commune": "ST JULIEN D ASSE", "libell_d_acheminement": "ST JULIEN D ASSE", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04182"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b8cfa2744b01f2d4249578396fb99ff57aa34c", "fields": {"nom_de_la_commune": "ST GENIEZ", "libell_d_acheminement": "ST GENIEZ", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04179"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949bef1fd233fd442babe8cd186d2d2e29356b75", "fields": {"nom_de_la_commune": "SISTERON", "libell_d_acheminement": "SISTERON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04209"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2965ce314dda210b8613c6e300020746ef23da", "fields": {"nom_de_la_commune": "VACHERES", "libell_d_acheminement": "VACHERES", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04227"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13316b6b3e7edbefee032a8b564d4592e65f2fb3", "fields": {"nom_de_la_commune": "SIGOYER", "libell_d_acheminement": "SIGOYER", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04207"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870e7adae1f41f0b307a65813782458691a8381b", "fields": {"nom_de_la_commune": "SENEZ", "libell_d_acheminement": "SENEZ", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04204"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c168b8e2da67f2629fe5f8299a16ed9573c123", "fields": {"nom_de_la_commune": "CHATEAUVIEUX", "libell_d_acheminement": "CHATEAUVIEUX", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05037"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ef35c05b957f590fda2fcf654003207a8c5510", "fields": {"nom_de_la_commune": "CHAMPOLEON", "libell_d_acheminement": "CHAMPOLEON", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05032"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de523f9b4a27fe349944b5fb05f14edb76e5628", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "04180", "coordonnees_gps": [43.8958009832, 5.85755129117], "code_commune_insee": "04242"}, "geometry": {"type": "Point", "coordinates": [5.85755129117, 43.8958009832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ac7e2ef282706493252878cbc432b2e61d654d", "fields": {"nom_de_la_commune": "ASPREMONT", "libell_d_acheminement": "ASPREMONT", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05008"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609ba66d87ba876bb6d2e22b4ef50e5de3ec5546", "fields": {"nom_de_la_commune": "CHABESTAN", "libell_d_acheminement": "CHABESTAN", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05028"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f4f6bae53f34140a3397af56ac5b2aa8601008", "fields": {"nom_de_la_commune": "AIGUILLES", "libell_d_acheminement": "AIGUILLES", "code_postal": "05470", "coordonnees_gps": [44.7798321514, 6.87506488271], "code_commune_insee": "05003"}, "geometry": {"type": "Point", "coordinates": [6.87506488271, 44.7798321514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db4980cc6ac693a0ffd9d4eb98e763727b66cbde", "fields": {"nom_de_la_commune": "CERVIERES", "libell_d_acheminement": "CERVIERES", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05027"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e7999554d1c59cd07f5b3819632d97eddfb6d6", "fields": {"nom_de_la_commune": "ANCELLE", "libell_d_acheminement": "ANCELLE", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05004"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88348996a7db8de719a7595cfb38fac40695e8b", "fields": {"nom_de_la_commune": "CREVOUX", "libell_d_acheminement": "CREVOUX", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05044"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d451528e7844c540c33f415f666e159d39807e5", "fields": {"nom_de_la_commune": "BRUIS", "libell_d_acheminement": "BRUIS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05024"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ebaad50c08c9c7c490a6b824a87e3f09272977", "fields": {"code_postal": "05260", "code_commune_insee": "05145", "libell_d_acheminement": "ST JEAN ST NICOLAS", "ligne_5": "LE PONT DU FOSSE", "nom_de_la_commune": "ST JEAN ST NICOLAS", "coordonnees_gps": [44.6914774663, 6.23838338472]}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6e84a2dc0d5dc428781f690f7e2531f923754a", "fields": {"nom_de_la_commune": "ST MARTIN DE QUEYRIERES", "libell_d_acheminement": "ST MARTIN DE QUEYRIERES", "code_postal": "05120", "coordonnees_gps": [44.8094841001, 6.52475602144], "code_commune_insee": "05151"}, "geometry": {"type": "Point", "coordinates": [6.52475602144, 44.8094841001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80fbe83e32eb174d019f6b865e0f73b520fe5ac2", "fields": {"nom_de_la_commune": "ST LAURENT DU CROS", "libell_d_acheminement": "ST LAURENT DU CROS", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05148"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f2c26b98db831c545194e204eb79bb854c1770", "fields": {"nom_de_la_commune": "SIGOYER", "libell_d_acheminement": "SIGOYER", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05168"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe4b7290e79bc83a83dc1edb8a8c4df08b6ede7", "fields": {"nom_de_la_commune": "TANTONVILLE", "libell_d_acheminement": "TANTONVILLE", "code_postal": "54116", "coordonnees_gps": [48.452260444, 6.12393420575], "code_commune_insee": "54513"}, "geometry": {"type": "Point", "coordinates": [6.12393420575, 48.452260444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa62af28622bb75cbce08c4d812d66114db1773", "fields": {"nom_de_la_commune": "THUMEREVILLE", "libell_d_acheminement": "THUMEREVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54524"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d7608fa08619640a25955cc91bddd7a7a64706", "fields": {"nom_de_la_commune": "TOMBLAINE", "libell_d_acheminement": "TOMBLAINE", "code_postal": "54510", "coordonnees_gps": [48.6692716698, 6.24903144638], "code_commune_insee": "54526"}, "geometry": {"type": "Point", "coordinates": [6.24903144638, 48.6692716698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b3b515e4d9a4faaa07badf590857814fbaa48e", "fields": {"nom_de_la_commune": "TOUL", "libell_d_acheminement": "TOUL", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54528"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce758486792c213c1e5f6a326868525ae4ab385", "fields": {"nom_de_la_commune": "TRAMONT EMY", "libell_d_acheminement": "TRAMONT EMY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54529"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8744cad70b7bd1b5a890ce05f768533efcd3e2a5", "fields": {"nom_de_la_commune": "TRONDES", "libell_d_acheminement": "TRONDES", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54534"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c07da5839b4f19c64e2747e2b5391536694c3e5", "fields": {"nom_de_la_commune": "TRONVILLE", "libell_d_acheminement": "TRONVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54535"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1da9c575e7aca748567aed08ec726a97312d1e", "fields": {"nom_de_la_commune": "VANNES LE CHATEL", "libell_d_acheminement": "VANNES LE CHATEL", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54548"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e306df5ff154648cfef541e1ecfc8cd36bb489f7", "fields": {"nom_de_la_commune": "VAUCOURT", "libell_d_acheminement": "VAUCOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54551"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e138ca87e04b73b546a0c3b0875bdf9046fcf114", "fields": {"nom_de_la_commune": "VENEY", "libell_d_acheminement": "VENEY", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54560"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff41f0bbb07afcbedf151b1b6e42e977f1e3833", "fields": {"nom_de_la_commune": "VENNEZEY", "libell_d_acheminement": "VENNEZEY", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54561"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c258b543d5376643c42c0ccb15bc729e8475fa", "fields": {"nom_de_la_commune": "VERDENAL", "libell_d_acheminement": "VERDENAL", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54562"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174a70f456620bb63363b2b76c965e517260f4d3", "fields": {"nom_de_la_commune": "VIGNEULLES", "libell_d_acheminement": "VIGNEULLES", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54565"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1827ee6bc80245b83dcbcaeed601b6c4407f33e5", "fields": {"nom_de_la_commune": "VILLE AU MONTOIS", "libell_d_acheminement": "VILLE AU MONTOIS", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54568"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cd6432183e68d1b237debddda049f1c57837fd", "fields": {"nom_de_la_commune": "VILLE AU VAL", "libell_d_acheminement": "VILLE AU VAL", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54569"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fdabb89bc3ff79f601e6985284613e2f28b558", "fields": {"nom_de_la_commune": "VILLERS LES MOIVRONS", "libell_d_acheminement": "VILLERS LES MOIVRONS", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54577"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f54a0668c7b57c962e076f7c88b1bb495b99763", "fields": {"code_postal": "54190", "code_commune_insee": "54580", "libell_d_acheminement": "VILLERUPT", "ligne_5": "CANTEBONNE", "nom_de_la_commune": "VILLERUPT", "coordonnees_gps": [49.4525960193, 5.89523270383]}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312abf59912e2d12b6de941c8617d40d6a18fe6a", "fields": {"nom_de_la_commune": "VIRECOURT", "libell_d_acheminement": "VIRECOURT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54585"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82b050624b36e73de657d356eb8851a8168ad73", "fields": {"nom_de_la_commune": "VITERNE", "libell_d_acheminement": "VITERNE", "code_postal": "54123", "coordonnees_gps": [48.5873065395, 6.01353217744], "code_commune_insee": "54586"}, "geometry": {"type": "Point", "coordinates": [6.01353217744, 48.5873065395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6aa59b6d939412b2284ebb34a03ce3ed2aabaa6", "fields": {"code_postal": "54260", "code_commune_insee": "54590", "libell_d_acheminement": "VIVIERS SUR CHIERS", "ligne_5": "BRAUMONT", "nom_de_la_commune": "VIVIERS SUR CHIERS", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc3f5a0fc54680aec0d7d23951b914a9b2910b8", "fields": {"nom_de_la_commune": "VRONCOURT", "libell_d_acheminement": "VRONCOURT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54592"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313694b45cddaf2e896d9eeca68496edb3d5abc0", "fields": {"nom_de_la_commune": "XIROCOURT", "libell_d_acheminement": "XIROCOURT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54597"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871e1dcc67255fdc720a63ad741738d8201569d2", "fields": {"nom_de_la_commune": "XOUSSE", "libell_d_acheminement": "XOUSSE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54600"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a72a2fad5a65e3169b0a3fde5edf6a19938d05", "fields": {"nom_de_la_commune": "ANCERVILLE", "libell_d_acheminement": "ANCERVILLE", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55010"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa1a6b60d862026e9c5d040f7cc24c7798dc053c", "fields": {"code_postal": "55300", "code_commune_insee": "55012", "libell_d_acheminement": "APREMONT LA FORET", "ligne_5": "MARBOTTE", "nom_de_la_commune": "APREMONT LA FORET", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4451d98e478347a5e34ba0204fe91d84dc3f08e1", "fields": {"nom_de_la_commune": "AUBREVILLE", "libell_d_acheminement": "AUBREVILLE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55014"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102d62c01ba1d4beb9ac7730d2f710fc511ddf50", "fields": {"nom_de_la_commune": "BAALON", "libell_d_acheminement": "BAALON", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55025"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfafd1d9eec5776e84f09d37f8ef309f1548350", "fields": {"nom_de_la_commune": "BEAUFORT EN ARGONNE", "libell_d_acheminement": "BEAUFORT EN ARGONNE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55037"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "233fbca23d95b2b169fb111d647cbcd760111190", "fields": {"nom_de_la_commune": "BEAULIEU EN ARGONNE", "libell_d_acheminement": "BEAULIEU EN ARGONNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55038"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f78a842084181d6530f10e4de4c8e809cc11925", "fields": {"nom_de_la_commune": "BELLEVILLE SUR MEUSE", "libell_d_acheminement": "BELLEVILLE SUR MEUSE", "code_postal": "55430", "coordonnees_gps": [49.1794398183, 5.39278736213], "code_commune_insee": "55043"}, "geometry": {"type": "Point", "coordinates": [5.39278736213, 49.1794398183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e6e9c07c0ed753962568812330c0e6060589dda", "fields": {"nom_de_la_commune": "BELRUPT EN VERDUNOIS", "libell_d_acheminement": "BELRUPT EN VERDUNOIS", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55045"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d797a33f84fabc014107d039f34129f98e3f199", "fields": {"nom_de_la_commune": "BETHELAINVILLE", "libell_d_acheminement": "BETHELAINVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55047"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d9e203e7e1cbb4803064ee9120cdde6d274bb2", "fields": {"nom_de_la_commune": "BEUREY SUR SAULX", "libell_d_acheminement": "BEUREY SUR SAULX", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55049"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7116b08f176536c0145a4b21ee1536c65c422fe9", "fields": {"nom_de_la_commune": "BIENCOURT SUR ORGE", "libell_d_acheminement": "BIENCOURT SUR ORGE", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55051"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd723907a3d488e3278f45d0a3700f52bbe5d92", "fields": {"nom_de_la_commune": "BONCOURT SUR MEUSE", "libell_d_acheminement": "BONCOURT SUR MEUSE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55058"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ee4051823cdbbcddc4110f5d73f465fb413283", "fields": {"nom_de_la_commune": "BOUCONVILLE SUR MADT", "libell_d_acheminement": "BOUCONVILLE SUR MADT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55062"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9af2a655dc7717bfa9013824579e2bd4c53e17d", "fields": {"nom_de_la_commune": "BOVIOLLES", "libell_d_acheminement": "BOVIOLLES", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55067"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f1145a12ab68324571fa31f2460c2d559c6707b", "fields": {"nom_de_la_commune": "BRIEULLES SUR MEUSE", "libell_d_acheminement": "BRIEULLES SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55078"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c1cd2441d21f9aab6d78a1096a28f7cb579d9d", "fields": {"nom_de_la_commune": "BRIXEY AUX CHANOINES", "libell_d_acheminement": "BRIXEY AUX CHANOINES", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55080"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df1be1d47d1f917fc71211fae9e7023e4be718a", "fields": {"nom_de_la_commune": "BURE", "libell_d_acheminement": "BURE", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55087"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adbcf1386f07cdcae3edae38f9a27b8906f20bf0", "fields": {"nom_de_la_commune": "BUREY LA COTE", "libell_d_acheminement": "BUREY LA COTE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55089"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e65544f2338c6647b52b63cf2d443dd1aaa8671", "fields": {"nom_de_la_commune": "CHAMPNEUVILLE", "libell_d_acheminement": "CHAMPNEUVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55099"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968308a20d8446d24ce312ef9ec60c376d73117e", "fields": {"nom_de_la_commune": "CHAUMONT DEVANT DAMVILLERS", "libell_d_acheminement": "CHAUMONT DEVANT DAMVILLERS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55107"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ecbad55210b573bcec359dc314ce90c90ff5702", "fields": {"nom_de_la_commune": "CHAUMONT SUR AIRE", "libell_d_acheminement": "CHAUMONT SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55108"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed277320075f50907021615d1f4c3ec370cc8640", "fields": {"nom_de_la_commune": "CLERY LE PETIT", "libell_d_acheminement": "CLERY LE PETIT", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55119"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7cdf88eadcdb4b9f091d1752d459a94f6a5fea", "fields": {"nom_de_la_commune": "LES HAUTS DE CHEE", "libell_d_acheminement": "LES HAUTS DE CHEE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55123"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e89ef21b5a7945a32db460f355f47c8ff7ae119", "fields": {"nom_de_la_commune": "CONSENVOYE", "libell_d_acheminement": "CONSENVOYE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55124"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3a28b1242789d90a52d65277e838e9f93f2cf5", "fields": {"nom_de_la_commune": "CUISY", "libell_d_acheminement": "CUISY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55137"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad079de59c9228ccaef948c74fbc4b40d36ce7e", "fields": {"nom_de_la_commune": "DAMLOUP", "libell_d_acheminement": "DAMLOUP", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55143"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524afbabe0243b816c6299f9ecd854dd44427cef", "fields": {"nom_de_la_commune": "DAMMARIE SUR SAULX", "libell_d_acheminement": "DAMMARIE SUR SAULX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55144"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98e4273ea14df8d7bb5d4f5cb1ae99b49f4d6da", "fields": {"nom_de_la_commune": "DELOUZE ROSIERES", "libell_d_acheminement": "DELOUZE ROSIERES", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55148"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c048c24a65c1f6dfd44dbdf4c9b128ed82494ba7", "fields": {"nom_de_la_commune": "DIEUE SUR MEUSE", "libell_d_acheminement": "DIEUE SUR MEUSE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55154"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cdb268100c7332454aa29a51496b7c6719e7c48", "fields": {"nom_de_la_commune": "DOMMARY BARONCOURT", "libell_d_acheminement": "DOMMARY BARONCOURT", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55158"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b5e31cce85f20e8f9a08d5465b8996634c98fd", "fields": {"nom_de_la_commune": "DOMPCEVRIN", "libell_d_acheminement": "DOMPCEVRIN", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55159"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dad1c19e4a2b53389863d9f2f09a88ed06e8c7a", "fields": {"nom_de_la_commune": "DOMPIERRE AUX BOIS", "libell_d_acheminement": "DOMPIERRE AUX BOIS", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55160"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1540127060829206c535b01fc16cdc11d6c77e", "fields": {"nom_de_la_commune": "DONCOURT AUX TEMPLIERS", "libell_d_acheminement": "DONCOURT AUX TEMPLIERS", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55163"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65416f43dd93cd988d86097031321b7f7d35b45", "fields": {"nom_de_la_commune": "DUGNY SUR MEUSE", "libell_d_acheminement": "DUGNY SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55166"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1d1ea150b98eebf76203e5e60b8424eb8e390a8", "fields": {"nom_de_la_commune": "LES EPARGES", "libell_d_acheminement": "LES EPARGES", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55172"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72e5239b9b07f67301b86c13dae40a6c10d1919", "fields": {"nom_de_la_commune": "ERIZE LA BRULEE", "libell_d_acheminement": "ERIZE LA BRULEE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55175"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d5f27ce7108c0631135990c79d3e2bb04c56cf", "fields": {"nom_de_la_commune": "ETON", "libell_d_acheminement": "ETON", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55182"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec75e6b0a88094f213dd625529ada6a1e789569", "fields": {"code_postal": "55200", "code_commune_insee": "55184", "libell_d_acheminement": "EUVILLE", "ligne_5": "AULNOIS SOUS VERTUZEY", "nom_de_la_commune": "EUVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a6f409b357e0e0eae2d5547c94b773da4b75cd", "fields": {"nom_de_la_commune": "FOAMEIX ORNEL", "libell_d_acheminement": "FOAMEIX ORNEL", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55191"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ba7d3b3694409fb85b6cda1d2e1a3bfa30c66d", "fields": {"code_postal": "55400", "code_commune_insee": "55191", "libell_d_acheminement": "FOAMEIX ORNEL", "ligne_5": "ORNEL", "nom_de_la_commune": "FOAMEIX ORNEL", "coordonnees_gps": [49.1964122747, 5.59749948123]}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed309a0e151b7ebf1bc4bb3f9b804d931a2f7cb1", "fields": {"nom_de_la_commune": "FROMEZEY", "libell_d_acheminement": "FROMEZEY", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55201"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6eccb68402dfea808701df885cc7ae934f54f25", "fields": {"nom_de_la_commune": "GERCOURT ET DRILLANCOURT", "libell_d_acheminement": "GERCOURT ET DRILLANCOURT", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55206"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e93a5fd8f1ee4350c934b0eb50b2eb287587eaa", "fields": {"nom_de_la_commune": "GINCREY", "libell_d_acheminement": "GINCREY", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55211"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7064ed332a2c6162b30b0ecccdb6fb7a42b26d6e", "fields": {"code_postal": "55130", "code_commune_insee": "55215", "libell_d_acheminement": "GONDRECOURT LE CHATEAU", "ligne_5": "LUMEVILLE EN ORNOIS", "nom_de_la_commune": "GONDRECOURT LE CHATEAU", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49eff7e44976cd16c9af9bd9090c76b6d850ca3", "fields": {"nom_de_la_commune": "GOURAINCOURT", "libell_d_acheminement": "GOURAINCOURT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55216"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d06453779e27ad6f059373c896b8eb082ee519", "fields": {"nom_de_la_commune": "HAIRONVILLE", "libell_d_acheminement": "HAIRONVILLE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55224"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0499fc0621731d7c987ef910b006cda8d2296adf", "fields": {"nom_de_la_commune": "HAN SUR MEUSE", "libell_d_acheminement": "HAN SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55229"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3c77bdc8908cac90cd28755ed306cfb81e6451c", "fields": {"code_postal": "55300", "code_commune_insee": "55229", "libell_d_acheminement": "HAN SUR MEUSE", "ligne_5": "BRASSEITTE", "nom_de_la_commune": "HAN SUR MEUSE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5570e2a65ed60c35d6ce3042d51b58a60771faa1", "fields": {"nom_de_la_commune": "HARVILLE", "libell_d_acheminement": "HARVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55232"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58837488ab2be6a3d57d2832e8f8f6362f6b717", "fields": {"nom_de_la_commune": "HAUDAINVILLE", "libell_d_acheminement": "HAUDAINVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55236"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f527e91e5f9311f7cb648bb904628ae694fa2930", "fields": {"nom_de_la_commune": "HERBEUVILLE", "libell_d_acheminement": "HERBEUVILLE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55243"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb296fd1bc54ff5ddc9b30b777c5744404d33247", "fields": {"nom_de_la_commune": "RUNAN", "libell_d_acheminement": "RUNAN", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22269"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed9f145c91f1fbfb6cfb9e946abe4eaa61f6c91", "fields": {"nom_de_la_commune": "ST ALBAN", "libell_d_acheminement": "ST ALBAN", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22273"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f1cb6b130f5b6942f6d4f9a1735e5a363b3b7a", "fields": {"nom_de_la_commune": "ST BRANDAN", "libell_d_acheminement": "ST BRANDAN", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22277"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671e85a1b4ae0c37c70a76d56cd1b50bcc30f329", "fields": {"nom_de_la_commune": "ST GILDAS", "libell_d_acheminement": "ST GILDAS", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22291"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e25f7aed2d882ec8bce5d52164ad1f5aa5ed1a", "fields": {"nom_de_la_commune": "ST GILLES LES BOIS", "libell_d_acheminement": "ST GILLES LES BOIS", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22293"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fae5aca2960a7211322eadc061445f8679a4b6a", "fields": {"nom_de_la_commune": "ST GILLES VIEUX MARCHE", "libell_d_acheminement": "ST GILLES VIEUX MARCHE", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22295"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738e6add67914bbff613582e200c53fcfcb3e970", "fields": {"nom_de_la_commune": "ST GLEN", "libell_d_acheminement": "ST GLEN", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22296"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb891edf6b61b271548c6e8b656f76fa6045ed0", "fields": {"nom_de_la_commune": "ST JEAN KERDANIEL", "libell_d_acheminement": "ST JEAN KERDANIEL", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22304"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6e9b986eba5041b055f14664ce8454ee1771f8", "fields": {"nom_de_la_commune": "ST JUDOCE", "libell_d_acheminement": "ST JUDOCE", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22306"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe0808e8a18cb3ab63641e1995392dc86e105c8", "fields": {"nom_de_la_commune": "ST MAUDAN", "libell_d_acheminement": "ST MAUDAN", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22314"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60191f3971c50d3cf4d7ef29e45616110950a58", "fields": {"nom_de_la_commune": "ST MICHEL DE PLELAN", "libell_d_acheminement": "ST MICHEL DE PLELAN", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22318"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad40abcaa17772b2c3c00f0bc45a6335666b3baa", "fields": {"nom_de_la_commune": "ST QUAY PERROS", "libell_d_acheminement": "ST QUAY PERROS", "code_postal": "22700", "coordonnees_gps": [48.7941225989, -3.4412963824], "code_commune_insee": "22324"}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fa828346073bf778eba0925efb12d9525fdbfb", "fields": {"nom_de_la_commune": "ST THELO", "libell_d_acheminement": "ST THELO", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22330"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ccf6e06656e7d357aa4f5731134fce5f69a8a1", "fields": {"nom_de_la_commune": "ST VRAN", "libell_d_acheminement": "ST VRAN", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22333"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8357696fb4dd3132b6957ae747e7dfeeee4c1f9", "fields": {"nom_de_la_commune": "TONQUEDEC", "libell_d_acheminement": "TONQUEDEC", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22340"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4233a35901e0ddf057e99e7696c9f2ccc52ace51", "fields": {"nom_de_la_commune": "TREBEURDEN", "libell_d_acheminement": "TREBEURDEN", "code_postal": "22560", "coordonnees_gps": [48.7801847576, -3.53025413579], "code_commune_insee": "22343"}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a68b71e866eb749b67b9c41a7e28be1bd682b0", "fields": {"nom_de_la_commune": "TREBRY", "libell_d_acheminement": "TREBRY", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22345"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6ccc7b1de66cc52fccbb944d95ede4cdf87917", "fields": {"nom_de_la_commune": "TREFFRIN", "libell_d_acheminement": "TREFFRIN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22351"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc24deb1899134f695f2b65eb5afe2875f43bd3", "fields": {"nom_de_la_commune": "TREGLAMUS", "libell_d_acheminement": "TREGLAMUS", "code_postal": "22540", "coordonnees_gps": [48.5672822265, -3.30848163045], "code_commune_insee": "22354"}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565305144c17e4f66a1ed53ea1cfaa00069cd9e6", "fields": {"nom_de_la_commune": "TREGON", "libell_d_acheminement": "TREGON", "code_postal": "22650", "coordonnees_gps": [48.5606353312, -2.1363314846], "code_commune_insee": "22357"}, "geometry": {"type": "Point", "coordinates": [-2.1363314846, 48.5606353312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741e034fceec02b4294fd0ff59da749c691c01ba", "fields": {"nom_de_la_commune": "AHUN", "libell_d_acheminement": "AHUN", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23001"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7681f88d065bfcddec98e93c1ce2eef9ef5f4040", "fields": {"nom_de_la_commune": "AJAIN", "libell_d_acheminement": "AJAIN", "code_postal": "23380", "coordonnees_gps": [46.2198124266, 1.97076642582], "code_commune_insee": "23002"}, "geometry": {"type": "Point", "coordinates": [1.97076642582, 46.2198124266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b89ec290a91b2370252dc3e6bd4c94e2b6f362", "fields": {"nom_de_la_commune": "ANZEME", "libell_d_acheminement": "ANZEME", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23004"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54cdb0e437d899ea3dbf567e265356caffb10017", "fields": {"nom_de_la_commune": "AUBUSSON", "libell_d_acheminement": "AUBUSSON", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23008"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "489980e77c25601badda23fd1565cf034b2addc6", "fields": {"nom_de_la_commune": "AURIAT", "libell_d_acheminement": "AURIAT", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23012"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756b0ddc36e3e827325f071132871ad464831b01", "fields": {"nom_de_la_commune": "AZAT CHATENET", "libell_d_acheminement": "AZAT CHATENET", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23014"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bf820ba154a339b5a04466abc9e3fdca66582d", "fields": {"nom_de_la_commune": "BETETE", "libell_d_acheminement": "BETETE", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23022"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3b3f3f63646055a9fe99a38f830f3a96f5b5e1", "fields": {"nom_de_la_commune": "BORD ST GEORGES", "libell_d_acheminement": "BORD ST GEORGES", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23026"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c48b2381b5dff07bfe12e0ffbb87dadff04736", "fields": {"nom_de_la_commune": "BOSMOREAU LES MINES", "libell_d_acheminement": "BOSMOREAU LES MINES", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23027"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb34b93022db1893626dcccc4431a93592564015", "fields": {"nom_de_la_commune": "CHAMBONCHARD", "libell_d_acheminement": "CHAMBONCHARD", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23046"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dac1cb7aece520f69a3c27b2efec97b99b7e950", "fields": {"nom_de_la_commune": "CHAMBORAND", "libell_d_acheminement": "CHAMBORAND", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23047"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e41693e7dc030d6333c455706b52e77514049c1c", "fields": {"nom_de_la_commune": "CHAMPSANGLARD", "libell_d_acheminement": "CHAMPSANGLARD", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23049"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b770c6ba4cb49bd25cc813babcb34ad3d2f21e14", "fields": {"nom_de_la_commune": "CHARD", "libell_d_acheminement": "CHARD", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23053"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6cba39e41ab62cc5e3fa17a377798db6c9b8fa", "fields": {"nom_de_la_commune": "CHATELARD", "libell_d_acheminement": "CHATELARD", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23055"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e81fd6aa086e6304182698dc7a9e105dcc3911", "fields": {"nom_de_la_commune": "CHATELUS LE MARCHEIX", "libell_d_acheminement": "CHATELUS LE MARCHEIX", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23056"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5309895f10c9e34561bfea65545e6386c68046", "fields": {"nom_de_la_commune": "CHATELUS MALVALEIX", "libell_d_acheminement": "CHATELUS MALVALEIX", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23057"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec230a578aec1ddd93a732826e97e02ee98f9bde", "fields": {"nom_de_la_commune": "LE COMPAS", "libell_d_acheminement": "LE COMPAS", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23066"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a952116dc9d377cc95a814190741d5395680b7", "fields": {"nom_de_la_commune": "CRESSAT", "libell_d_acheminement": "CRESSAT", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23068"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381fd09c28a3d8700511907025f32826cea3bfaa", "fields": {"nom_de_la_commune": "CROZE", "libell_d_acheminement": "CROZE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23071"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3e04df339160daccec9417333f4908ce401e83e", "fields": {"nom_de_la_commune": "DONTREIX", "libell_d_acheminement": "DONTREIX", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23073"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f53a8ce82a4ce027bc0626f93fbbe39cf362e5", "fields": {"nom_de_la_commune": "DUN LE PALESTEL", "libell_d_acheminement": "DUN LE PALESTEL", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23075"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd5ccdd398f6bd64be2c0a5e70e3b629a542e0e", "fields": {"nom_de_la_commune": "EVAUX LES BAINS", "libell_d_acheminement": "EVAUX LES BAINS", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23076"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99673146832c24e0fe493abd71d84b3469114062", "fields": {"nom_de_la_commune": "FAUX MAZURAS", "libell_d_acheminement": "FAUX MAZURAS", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23078"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c308aefa061ee94c35c7f908311dedbbc56986b7", "fields": {"code_postal": "23230", "code_commune_insee": "23093", "libell_d_acheminement": "GOUZON", "ligne_5": "GOUZOUGNAT", "nom_de_la_commune": "GOUZON", "coordonnees_gps": [46.2160065726, 2.24523675556]}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf164eac3847fb7aa55aaaafcfb50d9e6718a3b2", "fields": {"code_postal": "23230", "code_commune_insee": "23093", "libell_d_acheminement": "GOUZON", "ligne_5": "LES FORGES", "nom_de_la_commune": "GOUZON", "coordonnees_gps": [46.2160065726, 2.24523675556]}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7487a10fff021256daa4a911e8cddec538d3a0a2", "fields": {"nom_de_la_commune": "GUERET", "libell_d_acheminement": "GUERET", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23096"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940b4cce9a612ca0f9333b6421a0a739e0c16cc1", "fields": {"nom_de_la_commune": "ISSOUDUN LETRIEIX", "libell_d_acheminement": "ISSOUDUN LETRIEIX", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23097"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7936d9cdcb194d2e991672d2b679a46fd8525f77", "fields": {"nom_de_la_commune": "JALESCHES", "libell_d_acheminement": "JALESCHES", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23098"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8abff7fc1c8442b05abc56555d9f320fbd0c6ff6", "fields": {"nom_de_la_commune": "JANAILLAT", "libell_d_acheminement": "JANAILLAT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23099"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e45fb46b38245fb93fccfc0eb2d7b6b9c81a26", "fields": {"nom_de_la_commune": "JARNAGES", "libell_d_acheminement": "JARNAGES", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23100"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da39ed6f01240667593b80ed6a4ce5afb6ebbf33", "fields": {"nom_de_la_commune": "LAVAVEIX LES MINES", "libell_d_acheminement": "LAVAVEIX LES MINES", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23105"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780ce7ed2d58015f3efbfb44c903aa294b709c7b", "fields": {"nom_de_la_commune": "MAGNAT L ETRANGE", "libell_d_acheminement": "MAGNAT L ETRANGE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23115"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d95c782584f67d7d3099270cb8ba0280fdcb9d", "fields": {"nom_de_la_commune": "MOUTIER D AHUN", "libell_d_acheminement": "MOUTIER D AHUN", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23138"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc909eea6426a55954c24c182709f6932dcb0888", "fields": {"nom_de_la_commune": "NEOUX", "libell_d_acheminement": "NEOUX", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23142"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7cc752662a1d04b08a1dd0922f51d48f51e823", "fields": {"nom_de_la_commune": "NOUHANT", "libell_d_acheminement": "NOUHANT", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23145"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc6b346198f490b79e540c4378ccf60becc9cb6a", "fields": {"nom_de_la_commune": "NOUZEROLLES", "libell_d_acheminement": "NOUZEROLLES", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23147"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9afdec0238fafd4b844d5fa5709b439bcc321c9", "fields": {"code_postal": "23140", "code_commune_insee": "23149", "libell_d_acheminement": "PARSAC RIMONDEIX", "ligne_5": "RIMONDEIX", "nom_de_la_commune": "PARSAC RIMONDEIX", "coordonnees_gps": [46.1904343577, 2.100695358]}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7782548a19775afb3fb8b88dd174bd6234830760", "fields": {"nom_de_la_commune": "POUSSANGES", "libell_d_acheminement": "POUSSANGES", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23158"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99fc698083737382651394966dfa845ddc10fd7", "fields": {"nom_de_la_commune": "ROUGNAT", "libell_d_acheminement": "ROUGNAT", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23164"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc07cf9db36f322bc9e2107285de83aac09612a6", "fields": {"nom_de_la_commune": "ROYERE DE VASSIVIERE", "libell_d_acheminement": "ROYERE DE VASSIVIERE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23165"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd45e81dac97d9053726ff92c00d6ad42609eee2", "fields": {"nom_de_la_commune": "SANNAT", "libell_d_acheminement": "SANNAT", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23167"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1cffcf32ce06b7ad3016feab9c4c136417384d", "fields": {"nom_de_la_commune": "LA SAUNIERE", "libell_d_acheminement": "LA SAUNIERE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23169"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f6bf4ca6e0effc711bb69496f04ef87669ab16d", "fields": {"nom_de_la_commune": "ST AMAND", "libell_d_acheminement": "ST AMAND", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23180"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619e8b62c9583eec199f08c8b8cc3e73f85a2aac", "fields": {"nom_de_la_commune": "ST CHABRAIS", "libell_d_acheminement": "ST CHABRAIS", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23185"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af429ffc7db157ab55487fecba9ca5bd8ca0845c", "fields": {"nom_de_la_commune": "ST FIEL", "libell_d_acheminement": "ST FIEL", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23195"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf19066d157494eb6d1d8965148026b2179d1f6", "fields": {"nom_de_la_commune": "ST FRION", "libell_d_acheminement": "ST FRION", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23196"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f460342ff7f84dd3034831c92c7185f7b242651", "fields": {"nom_de_la_commune": "ST JULIEN LE CHATEL", "libell_d_acheminement": "ST JULIEN LE CHATEL", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23204"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11a8ca02e64611332c9569d38141119940997be", "fields": {"nom_de_la_commune": "ST MARIEN", "libell_d_acheminement": "ST MARIEN", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23213"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2c4320883e2b70f06f7bbdc6b571113c963517", "fields": {"nom_de_la_commune": "ST MARTIAL LE VIEUX", "libell_d_acheminement": "ST MARTIAL LE VIEUX", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23215"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4455b9837c555a59e3219c98377664b7b96fb294", "fields": {"nom_de_la_commune": "ST MAURICE LA SOUTERRAINE", "libell_d_acheminement": "ST MAURICE LA SOUTERRAINE", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23219"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "901a1bcb93db23d89b2c9f6eacef4f2ab30f22f8", "fields": {"nom_de_la_commune": "ST MICHEL DE VEISSE", "libell_d_acheminement": "ST MICHEL DE VEISSE", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23222"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc1acfa2dfcf911d829365b33c0a28f7ff11cea", "fields": {"nom_de_la_commune": "ST PIERRE BELLEVUE", "libell_d_acheminement": "ST PIERRE BELLEVUE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23232"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9ae4378bd5be011c1492aead8467fab17a883f", "fields": {"nom_de_la_commune": "VIGEVILLE", "libell_d_acheminement": "VIGEVILLE", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23262"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8518c1bd4bbc849b6e13ff62fb6479dd43367071", "fields": {"nom_de_la_commune": "LA VILLETELLE", "libell_d_acheminement": "LA VILLETELLE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23266"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d126d3c8eeefd2f227d87617f71c041a19e9a671", "fields": {"nom_de_la_commune": "ALLAS LES MINES", "libell_d_acheminement": "ALLAS LES MINES", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24006"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be8d40a2cab79030fbdfe7946f604e623156bbb", "fields": {"nom_de_la_commune": "ARCHIGNAC", "libell_d_acheminement": "ARCHIGNAC", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24012"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3400c33c4bdcba6f243636d28134b4aa943789b2", "fields": {"nom_de_la_commune": "AURIAC DU PERIGORD", "libell_d_acheminement": "AURIAC DU PERIGORD", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24018"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efbd57443208de5a55a2ffa04b033c5e82068540", "fields": {"nom_de_la_commune": "BADEFOLS D ANS", "libell_d_acheminement": "BADEFOLS D ANS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24021"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93acf350661a19cd37004a873c1d08b541885141", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "BEAUMONT DU PERIGORD", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa2222275b5fad5b31b7940554c7dfe0e641bdd", "fields": {"nom_de_la_commune": "BEAURONNE", "libell_d_acheminement": "BEAURONNE", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24032"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf127f0a2292d06b0caa2272c59da694e235a9c", "fields": {"nom_de_la_commune": "BEAUSSAC", "libell_d_acheminement": "BEAUSSAC", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24033"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5402274b50823b69c1f704316a5bf64a131f23bc", "fields": {"code_postal": "24170", "code_commune_insee": "24035", "libell_d_acheminement": "PAYS DE BELVES", "ligne_5": "BELVES", "nom_de_la_commune": "PAYS DE BELVES", "coordonnees_gps": [44.7520136105, 1.04613211786]}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a29fa1f1faf02e1cb9310d9e38d2a4acf467ff", "fields": {"nom_de_la_commune": "BEZENAC", "libell_d_acheminement": "BEZENAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24041"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0dade0f624f378e3fb7bb97661c21da096fd23", "fields": {"code_postal": "24750", "code_commune_insee": "24053", "libell_d_acheminement": "BOULAZAC ISLE MANOIRE", "ligne_5": "ATUR", "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", "coordonnees_gps": [45.1801193657, 0.766939907734]}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a5704e5f4045f7af79338197c33f1959d9a3ba", "fields": {"nom_de_la_commune": "BOUNIAGUES", "libell_d_acheminement": "BOUNIAGUES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24054"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b644c24639626770ae4bdf458de8b9c19a04e069", "fields": {"nom_de_la_commune": "BOURGNAC", "libell_d_acheminement": "BOURGNAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24059"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297c5b69c7a2e22f3f2fb369eaaf6e3e7f8a6349", "fields": {"nom_de_la_commune": "BOURNIQUEL", "libell_d_acheminement": "BOURNIQUEL", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24060"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c113da1c86e91a93bbffb01565c1fe88476100e", "fields": {"nom_de_la_commune": "BOURROU", "libell_d_acheminement": "BOURROU", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24061"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b2f864c3e8ca69b9dff9be57d535083dfba713", "fields": {"nom_de_la_commune": "BREUILH", "libell_d_acheminement": "BREUILH", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24065"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c7f66e7937b4aa8d6f7c6688fcdfeb9de19c5b", "fields": {"code_postal": "24480", "code_commune_insee": "24068", "libell_d_acheminement": "LE BUISSON DE CADOUIN", "ligne_5": "PALEYRAC", "nom_de_la_commune": "LE BUISSON DE CADOUIN", "coordonnees_gps": [44.8133494955, 0.885908136539]}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15878a9584b28f9bd24f640945da5cdf5e56cd3a", "fields": {"nom_de_la_commune": "CARSAC AILLAC", "libell_d_acheminement": "CARSAC AILLAC", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24082"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef5497552cc35f81c7fbf2941db11b936357b42", "fields": {"nom_de_la_commune": "LA CASSAGNE", "libell_d_acheminement": "LA CASSAGNE", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24085"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee523a6ed056a41b5a899953af69fcc51c8c961", "fields": {"nom_de_la_commune": "CAUSE DE CLERANS", "libell_d_acheminement": "CAUSE DE CLERANS", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24088"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3314f0dd98ea57c9e7420fc5818722d714442b", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24095"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5eeeb701716bdbb2198b9ef5f26a737d2794d8", "fields": {"nom_de_la_commune": "CHAMPAGNAC DE BELAIR", "libell_d_acheminement": "CHAMPAGNAC DE BELAIR", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24096"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b88028d5bb11d117cfeaaeb57b71029bb15ba40", "fields": {"nom_de_la_commune": "CHAMPAGNE ET FONTAINE", "libell_d_acheminement": "CHAMPAGNE ET FONTAINE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24097"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22bc46682e03af766d15b0cacdd4b0d7f3f60a4a", "fields": {"nom_de_la_commune": "CHASSAIGNES", "libell_d_acheminement": "CHASSAIGNES", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24114"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "444c0af9fd6f98c48977cb9efc6d2e96aed3e089", "fields": {"nom_de_la_commune": "CHATEAU L EVEQUE", "libell_d_acheminement": "CHATEAU L EVEQUE", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24115"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a9cf369cd034616873bcd2b0fc4704626e08db", "fields": {"nom_de_la_commune": "CHERVAL", "libell_d_acheminement": "CHERVAL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24119"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab705402b2732355e76fdf3e6d52dec9cda2fa38", "fields": {"nom_de_la_commune": "CORGNAC SUR L ISLE", "libell_d_acheminement": "CORGNAC SUR L ISLE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24134"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a432884ab61ee560d0e38d417c1d041841a5e1", "fields": {"nom_de_la_commune": "GRAMOND", "libell_d_acheminement": "GRAMOND", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12113"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2fed5e77dbcd89e7ce2ba1f77e8e2e9470c0a73", "fields": {"nom_de_la_commune": "LAPANOUSE DE CERNON", "libell_d_acheminement": "LAPANOUSE DE CERNON", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12122"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce5f29aee7b275c8f9800a2de7cb8778c115eee", "fields": {"code_postal": "12450", "code_commune_insee": "12133", "libell_d_acheminement": "LUC LA PRIMAUBE", "ligne_5": "LA PRIMAUBE", "nom_de_la_commune": "LUC LA PRIMAUBE", "coordonnees_gps": [44.2840952345, 2.5725628832]}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379fb487ea6d2ca2268186bd0848496e449a4587", "fields": {"nom_de_la_commune": "MALEVILLE", "libell_d_acheminement": "MALEVILLE", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12136"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1840106b04c5e16ba62c6052fd7b864481c49864", "fields": {"nom_de_la_commune": "MANHAC", "libell_d_acheminement": "MANHAC", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12137"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2e4d6f4d308cedfbba8c320d3c5a91bcac4990", "fields": {"nom_de_la_commune": "MARCILLAC VALLON", "libell_d_acheminement": "MARCILLAC VALLON", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12138"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdddaf45f27979f8740bafcfcbeba1efe9af60b", "fields": {"nom_de_la_commune": "MARTIEL", "libell_d_acheminement": "MARTIEL", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12140"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83253d790599784692f68a40f3f3c6f7be8c5cf3", "fields": {"nom_de_la_commune": "MAYRAN", "libell_d_acheminement": "MAYRAN", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12142"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f5f7340af119ca597134c2344e8db7db57bbc8", "fields": {"nom_de_la_commune": "MELAGUES", "libell_d_acheminement": "MELAGUES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12143"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa8bdf9dd2c3486a6562e4ec9c0f1c19ec25a6f", "fields": {"nom_de_la_commune": "MONTEZIC", "libell_d_acheminement": "MONTEZIC", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12151"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69021752240c458e098f03d552bc28f14eb0e78", "fields": {"nom_de_la_commune": "MONTJAUX", "libell_d_acheminement": "MONTJAUX", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12153"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703465e4469c54e44fb74cdaafb20a8adf8fcccd", "fields": {"nom_de_la_commune": "FONDAMENTE", "libell_d_acheminement": "FONDAMENTE", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12155"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b3c4fff1734608a91b90c49ec9779b50ba3d39", "fields": {"nom_de_la_commune": "MORLHON LE HAUT", "libell_d_acheminement": "MORLHON LE HAUT", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12159"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2ccea886ccc2d359c6b7a52092c7251a15328a", "fields": {"nom_de_la_commune": "NAJAC", "libell_d_acheminement": "NAJAC", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12167"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6d21c771e6a1335fcd91d1c96476a3c6b02d4c", "fields": {"nom_de_la_commune": "NAUVIALE", "libell_d_acheminement": "NAUVIALE", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12171"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566dce0b1048840148ede14a2df7e18873830850", "fields": {"nom_de_la_commune": "PONT DE SALARS", "libell_d_acheminement": "PONT DE SALARS", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12185"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820f5ac1efcf8de1b2f50fc46e38ce3eb614ded6", "fields": {"nom_de_la_commune": "PRADES D AUBRAC", "libell_d_acheminement": "PRADES D AUBRAC", "code_postal": "12470", "coordonnees_gps": [44.5816447424, 2.9350498797], "code_commune_insee": "12187"}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bf468a635a69b7fe3b5e726ea1268004c9938a4", "fields": {"nom_de_la_commune": "MOUNES PROHENCOUX", "libell_d_acheminement": "MOUNES PROHENCOUX", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12192"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "498a93dc5e9d57d217645f01ae5895f372331886", "fields": {"nom_de_la_commune": "RODEZ", "libell_d_acheminement": "RODEZ", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12202"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad602cc1eedc855e8f3f306e433476bb5468818", "fields": {"nom_de_la_commune": "ROQUEFORT SUR SOULZON", "libell_d_acheminement": "ROQUEFORT SUR SOULZON", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12203"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98db8f79250dce097401c06c3cd8e6a5d1c14d2", "fields": {"nom_de_la_commune": "LA ROQUE STE MARGUERITE", "libell_d_acheminement": "LA ROQUE STE MARGUERITE", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12204"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80590567ccd5bc0e2480a6a2ac516a1de6b6ff78", "fields": {"nom_de_la_commune": "LA ROUQUETTE", "libell_d_acheminement": "LA ROUQUETTE", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12205"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e758f22746b7e2de3ec5b75af416ed4432643ee", "fields": {"nom_de_la_commune": "ST AFFRIQUE", "libell_d_acheminement": "ST AFFRIQUE", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12208"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dffd1caa4fcb13c8999ee4be26af784f0464d06", "fields": {"nom_de_la_commune": "ST ANDRE DE NAJAC", "libell_d_acheminement": "ST ANDRE DE NAJAC", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12210"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e66e99e15c38cf20df746dbd9b031aa7951d09", "fields": {"nom_de_la_commune": "ST ANDRE DE VEZINES", "libell_d_acheminement": "ST ANDRE DE VEZINES", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12211"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7d0d02c213bffa494cdad860df5790e8683c79", "fields": {"code_postal": "12470", "code_commune_insee": "12214", "libell_d_acheminement": "ST CHELY D AUBRAC", "ligne_5": "AUBRAC", "nom_de_la_commune": "ST CHELY D AUBRAC", "coordonnees_gps": [44.5816447424, 2.9350498797]}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50b16056657a901aefc84786f371a5dd3d67fb3", "fields": {"code_postal": "12210", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "LA TERRISSE", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.6915069372, 2.81638954446]}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c7e1a87c34b9ce2e70afda34f77a036b7fc9f", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "12850", "coordonnees_gps": [44.3602453055, 2.59175422847], "code_commune_insee": "12241"}, "geometry": {"type": "Point", "coordinates": [2.59175422847, 44.3602453055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232fa62b34110f634c0fbbdf5200239ece650b93", "fields": {"nom_de_la_commune": "ST ROME DE TARN", "libell_d_acheminement": "ST ROME DE TARN", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12244"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bc841e17c0c0aa1356d24a8f8ca3103aeed818", "fields": {"nom_de_la_commune": "ST SATURNIN DE LENNE", "libell_d_acheminement": "ST SATURNIN DE LENNE", "code_postal": "12560", "coordonnees_gps": [44.416656717, 3.07038306451], "code_commune_insee": "12247"}, "geometry": {"type": "Point", "coordinates": [3.07038306451, 44.416656717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb59dffa9acdf3ff1b731375f9c5f9cb38deef54", "fields": {"nom_de_la_commune": "ST SERNIN SUR RANCE", "libell_d_acheminement": "ST SERNIN SUR RANCE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12248"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536331e12b2349df0f19e082b8641042e2c15787", "fields": {"nom_de_la_commune": "SALMIECH", "libell_d_acheminement": "SALMIECH", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12255"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7decd1cda27fff39d70560f75175b839adfee561", "fields": {"nom_de_la_commune": "SAUJAC", "libell_d_acheminement": "SAUJAC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12261"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19633ccb9a5215a2a73e3fbb2c67909a69be771", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "LAVERNHE", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dde2d6047b0d829243f4b03727de024120bb79", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "RECOULES PREVINQUIERES", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7ba5d2797a7690d3ee3e050f568b1112fe53fa", "fields": {"nom_de_la_commune": "SOULAGES BONNEVAL", "libell_d_acheminement": "SOULAGES BONNEVAL", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12273"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd090e8a3754a73730732fe13b523e29d905bd4", "fields": {"nom_de_la_commune": "THERONDELS", "libell_d_acheminement": "THERONDELS", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12280"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14db305c601d2d91689a2719d43591f430c39fb4", "fields": {"nom_de_la_commune": "VALADY", "libell_d_acheminement": "VALADY", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12288"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81dd15732a33c83da70cfe0919f97a585b08dd8c", "fields": {"nom_de_la_commune": "LE VIBAL", "libell_d_acheminement": "LE VIBAL", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12297"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45551051955412ad5eeab326c65e347d185b8e1b", "fields": {"nom_de_la_commune": "VILLECOMTAL", "libell_d_acheminement": "VILLECOMTAL", "code_postal": "12580", "coordonnees_gps": [44.5571706547, 2.5811283004], "code_commune_insee": "12298"}, "geometry": {"type": "Point", "coordinates": [2.5811283004, 44.5571706547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6361f23b685854f87188c4fedc14764944ee9875", "fields": {"nom_de_la_commune": "CURAN", "libell_d_acheminement": "CURAN", "code_postal": "12410", "coordonnees_gps": [44.1707018059, 2.80592424455], "code_commune_insee": "12307"}, "geometry": {"type": "Point", "coordinates": [2.80592424455, 44.1707018059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0024c3084d159daa2a5612e1a42efa223ac1cc", "fields": {"code_postal": "13290", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "LES MILLES", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5360221556, 5.3983786513]}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1a6f4a7156848acfb80f4e3ed7747f9c2e8d50", "fields": {"nom_de_la_commune": "AURONS", "libell_d_acheminement": "AURONS", "code_postal": "13121", "coordonnees_gps": [43.6711825452, 5.14936683898], "code_commune_insee": "13008"}, "geometry": {"type": "Point", "coordinates": [5.14936683898, 43.6711825452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fbff6f2d8099e80c46c7f42a41643f18abaaf3", "fields": {"nom_de_la_commune": "BEAURECUEIL", "libell_d_acheminement": "BEAURECUEIL", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13012"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2894187d57faaea5574f4b9d557665a47ad6d082", "fields": {"code_postal": "13480", "code_commune_insee": "13019", "libell_d_acheminement": "CABRIES", "ligne_5": "CALAS", "nom_de_la_commune": "CABRIES", "coordonnees_gps": [43.4494933345, 5.34998030889]}, "geometry": {"type": "Point", "coordinates": [5.34998030889, 43.4494933345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ae88e3d1f9160742b67d73128661dd4bb4ca79", "fields": {"nom_de_la_commune": "CADOLIVE", "libell_d_acheminement": "CADOLIVE", "code_postal": "13950", "coordonnees_gps": [43.3937891441, 5.53246555313], "code_commune_insee": "13020"}, "geometry": {"type": "Point", "coordinates": [5.53246555313, 43.3937891441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3898bd086308fce9938649986519c9152312906c", "fields": {"nom_de_la_commune": "CARRY LE ROUET", "libell_d_acheminement": "CARRY LE ROUET", "code_postal": "13620", "coordonnees_gps": [43.3421734336, 5.15446218306], "code_commune_insee": "13021"}, "geometry": {"type": "Point", "coordinates": [5.15446218306, 43.3421734336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b79dd6343c2829c94f328f9385dc2a09a2b0a9", "fields": {"nom_de_la_commune": "CHARLEVAL", "libell_d_acheminement": "CHARLEVAL", "code_postal": "13350", "coordonnees_gps": [43.7213357582, 5.2455259904], "code_commune_insee": "13024"}, "geometry": {"type": "Point", "coordinates": [5.2455259904, 43.7213357582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210ca4e11f139315f541dc8af59c3657a76f421a", "fields": {"nom_de_la_commune": "CHATEAUNEUF LE ROUGE", "libell_d_acheminement": "CHATEAUNEUF LE ROUGE", "code_postal": "13790", "coordonnees_gps": [43.466397869, 5.61228660864], "code_commune_insee": "13025"}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11bc1394a60dfaf94142b3da5eb1d875e02bc381", "fields": {"nom_de_la_commune": "CHATEAURENARD", "libell_d_acheminement": "CHATEAURENARD", "code_postal": "13160", "coordonnees_gps": [43.8819269443, 4.84005453271], "code_commune_insee": "13027"}, "geometry": {"type": "Point", "coordinates": [4.84005453271, 43.8819269443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f8c7b28a63d813ef6ac867afa2657c37eeaaba", "fields": {"nom_de_la_commune": "FOS SUR MER", "libell_d_acheminement": "FOS SUR MER", "code_postal": "13270", "coordonnees_gps": [43.4556448261, 4.90423792179], "code_commune_insee": "13039"}, "geometry": {"type": "Point", "coordinates": [4.90423792179, 43.4556448261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ce6eb48569e798c87881b7b01e0a73760b8ac9", "fields": {"nom_de_la_commune": "FUVEAU", "libell_d_acheminement": "FUVEAU", "code_postal": "13710", "coordonnees_gps": [43.4598825054, 5.55318993446], "code_commune_insee": "13040"}, "geometry": {"type": "Point", "coordinates": [5.55318993446, 43.4598825054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edc9bd471a6597b195c72da11410dee1b7f5280", "fields": {"code_postal": "13118", "code_commune_insee": "13047", "libell_d_acheminement": "ISTRES", "ligne_5": "ENTRESSEN", "nom_de_la_commune": "ISTRES", "coordonnees_gps": [43.5502806959, 4.95074578461]}, "geometry": {"type": "Point", "coordinates": [4.95074578461, 43.5502806959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d4b3f58deafbd854f790b39c8b42bba695da16", "fields": {"nom_de_la_commune": "ISTRES", "libell_d_acheminement": "ISTRES", "code_postal": "13800", "coordonnees_gps": [43.5502806959, 4.95074578461], "code_commune_insee": "13047"}, "geometry": {"type": "Point", "coordinates": [4.95074578461, 43.5502806959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d63816a5c6be74ad7ca8423680461ad7b5b12c2", "fields": {"nom_de_la_commune": "JOUQUES", "libell_d_acheminement": "JOUQUES", "code_postal": "13490", "coordonnees_gps": [43.6333280619, 5.65650735548], "code_commune_insee": "13048"}, "geometry": {"type": "Point", "coordinates": [5.65650735548, 43.6333280619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f5a2f1a9b79fd461853b4ab8ac062bbbbeb0a1", "fields": {"nom_de_la_commune": "LANCON PROVENCE", "libell_d_acheminement": "LANCON PROVENCE", "code_postal": "13680", "coordonnees_gps": [43.575814488, 5.15920441157], "code_commune_insee": "13051"}, "geometry": {"type": "Point", "coordinates": [5.15920441157, 43.575814488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9605ff971566a16e8fe011ec8d0a6d4a174e7151", "fields": {"code_postal": "13500", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "CARRO", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad94f56b66474b3f1ef7cbb898768bb727dd282f", "fields": {"nom_de_la_commune": "MAS BLANC DES ALPILLES", "libell_d_acheminement": "MAS BLANC DES ALPILLES", "code_postal": "13103", "coordonnees_gps": [43.7851447818, 4.737135688], "code_commune_insee": "13057"}, "geometry": {"type": "Point", "coordinates": [4.737135688, 43.7851447818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f6b10c6346bd06ae486910de590c0e00cc1209", "fields": {"nom_de_la_commune": "MAUSSANE LES ALPILLES", "libell_d_acheminement": "MAUSSANE LES ALPILLES", "code_postal": "13520", "coordonnees_gps": [43.7214018039, 4.81156485939], "code_commune_insee": "13058"}, "geometry": {"type": "Point", "coordinates": [4.81156485939, 43.7214018039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75666858bc802dc0f1b8e5127f5045175ecee6b", "fields": {"nom_de_la_commune": "MEYRARGUES", "libell_d_acheminement": "MEYRARGUES", "code_postal": "13650", "coordonnees_gps": [43.6243628028, 5.52285465567], "code_commune_insee": "13059"}, "geometry": {"type": "Point", "coordinates": [5.52285465567, 43.6243628028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf808efb6b00166ff50b8d94f82bbb60ffd0bbb", "fields": {"nom_de_la_commune": "MOLLEGES", "libell_d_acheminement": "MOLLEGES", "code_postal": "13940", "coordonnees_gps": [43.8049851754, 4.94906222782], "code_commune_insee": "13064"}, "geometry": {"type": "Point", "coordinates": [4.94906222782, 43.8049851754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a3296d0e5a53865f932e138a81fd36c8759359", "fields": {"nom_de_la_commune": "ORGON", "libell_d_acheminement": "ORGON", "code_postal": "13660", "coordonnees_gps": [43.7795845538, 5.02373447714], "code_commune_insee": "13067"}, "geometry": {"type": "Point", "coordinates": [5.02373447714, 43.7795845538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "443dc6693b3f7c0f42104920b96e5247b0483aaa", "fields": {"nom_de_la_commune": "PEYPIN", "libell_d_acheminement": "PEYPIN", "code_postal": "13124", "coordonnees_gps": [43.3844605982, 5.57148519798], "code_commune_insee": "13073"}, "geometry": {"type": "Point", "coordinates": [5.57148519798, 43.3844605982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0061531fc27145188b8e65964ca40997a6d751e9", "fields": {"nom_de_la_commune": "PLAN DE CUQUES", "libell_d_acheminement": "PLAN DE CUQUES", "code_postal": "13380", "coordonnees_gps": [43.3664532079, 5.46480861331], "code_commune_insee": "13075"}, "geometry": {"type": "Point", "coordinates": [5.46480861331, 43.3664532079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09cf171434e67e024e0aa6274bd0c0d257f4cb35", "fields": {"nom_de_la_commune": "LE PUY STE REPARADE", "libell_d_acheminement": "LE PUY STE REPARADE", "code_postal": "13610", "coordonnees_gps": [43.6568962818, 5.43309442069], "code_commune_insee": "13080"}, "geometry": {"type": "Point", "coordinates": [5.43309442069, 43.6568962818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9065225fffd673ca6bd0e1cf84c5a385943a34f2", "fields": {"nom_de_la_commune": "ST CANNAT", "libell_d_acheminement": "ST CANNAT", "code_postal": "13760", "coordonnees_gps": [43.6136500201, 5.30707823764], "code_commune_insee": "13091"}, "geometry": {"type": "Point", "coordinates": [5.30707823764, 43.6136500201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6ccf2189c9effcf9e2020ca7681df8cfb228f0", "fields": {"nom_de_la_commune": "ST MARC JAUMEGARDE", "libell_d_acheminement": "ST MARC JAUMEGARDE", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13095"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15477a7ea0513e4dd9f7441d66f618a7463e1864", "fields": {"nom_de_la_commune": "ST REMY DE PROVENCE", "libell_d_acheminement": "ST REMY DE PROVENCE", "code_postal": "13210", "coordonnees_gps": [43.7834120884, 4.85311859996], "code_commune_insee": "13100"}, "geometry": {"type": "Point", "coordinates": [4.85311859996, 43.7834120884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0bf8523d96ca0f078ddd51d98ecc42caf61f37", "fields": {"code_postal": "13700", "code_commune_insee": "13102", "libell_d_acheminement": "ST VICTORET", "ligne_5": "PAS DES LANCIERS", "nom_de_la_commune": "ST VICTORET", "coordonnees_gps": [43.4167055832, 5.21911721754]}, "geometry": {"type": "Point", "coordinates": [5.21911721754, 43.4167055832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4d1869df062bbd6df266bd2962ffa142dd4b7a", "fields": {"nom_de_la_commune": "SALON DE PROVENCE", "libell_d_acheminement": "SALON DE PROVENCE", "code_postal": "13300", "coordonnees_gps": [43.6464319995, 5.06800446267], "code_commune_insee": "13103"}, "geometry": {"type": "Point", "coordinates": [5.06800446267, 43.6464319995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229ed1f1ed19887a4b609cc63e9675cbb2376c46", "fields": {"nom_de_la_commune": "VAUVENARGUES", "libell_d_acheminement": "VAUVENARGUES", "code_postal": "13126", "coordonnees_gps": [43.5589408856, 5.61247121631], "code_commune_insee": "13111"}, "geometry": {"type": "Point", "coordinates": [5.61247121631, 43.5589408856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201988cbcf6edc0ecaf8dfeb3740694c743cc2a7", "fields": {"nom_de_la_commune": "VENELLES", "libell_d_acheminement": "VENELLES", "code_postal": "13770", "coordonnees_gps": [43.5931988527, 5.49081802421], "code_commune_insee": "13113"}, "geometry": {"type": "Point", "coordinates": [5.49081802421, 43.5931988527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa7c52604e40435e1edfdb2a7fa3e9316060509", "fields": {"code_postal": "13122", "code_commune_insee": "13114", "libell_d_acheminement": "VENTABREN", "ligne_5": "LE PIGEONNIER", "nom_de_la_commune": "VENTABREN", "coordonnees_gps": [43.5419817981, 5.30592844079]}, "geometry": {"type": "Point", "coordinates": [5.30592844079, 43.5419817981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2190fa1d3fda825dae0e327f350f78b71c0ed4e", "fields": {"nom_de_la_commune": "MARSEILLE 03", "libell_d_acheminement": "MARSEILLE", "code_postal": "13003", "coordonnees_gps": [43.3118420677, 5.37907684544], "code_commune_insee": "13203"}, "geometry": {"type": "Point", "coordinates": [5.37907684544, 43.3118420677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651c3d546677d9870a37c8b176acdf883d42b640", "fields": {"nom_de_la_commune": "MARSEILLE 06", "libell_d_acheminement": "MARSEILLE", "code_postal": "13006", "coordonnees_gps": [43.2872106758, 5.38049906486], "code_commune_insee": "13206"}, "geometry": {"type": "Point", "coordinates": [5.38049906486, 43.2872106758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd22e69b1e894363d9bb4d84fcf9685ac68c242", "fields": {"code_postal": "13008", "code_commune_insee": "13208", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LES GOUDES", "nom_de_la_commune": "MARSEILLE 08", "coordonnees_gps": [43.2388428582, 5.37571442554]}, "geometry": {"type": "Point", "coordinates": [5.37571442554, 43.2388428582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d06a9f7fb047feca7892be52dd151d9df90be97", "fields": {"nom_de_la_commune": "MARSEILLE 09", "libell_d_acheminement": "MARSEILLE", "code_postal": "13009", "coordonnees_gps": [43.2344717573, 5.45254070973], "code_commune_insee": "13209"}, "geometry": {"type": "Point", "coordinates": [5.45254070973, 43.2344717573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ee7e2b921d7ccfbb5f426516ba17c21ccff8ed", "fields": {"code_postal": "13009", "code_commune_insee": "13209", "libell_d_acheminement": "MARSEILLE", "ligne_5": "VAUFREGE", "nom_de_la_commune": "MARSEILLE 09", "coordonnees_gps": [43.2344717573, 5.45254070973]}, "geometry": {"type": "Point", "coordinates": [5.45254070973, 43.2344717573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "088acf7a2d4122654109f485d5703dae1d4efa41", "fields": {"nom_de_la_commune": "MARSEILLE 11", "libell_d_acheminement": "MARSEILLE", "code_postal": "13011", "coordonnees_gps": [43.2885052354, 5.4838251453], "code_commune_insee": "13211"}, "geometry": {"type": "Point", "coordinates": [5.4838251453, 43.2885052354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33599d7a873a4f63a8a5da3096f6b35c9ffba47", "fields": {"nom_de_la_commune": "ABLON", "libell_d_acheminement": "ABLON", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14001"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd828ed207a779b9ed20ba1feaed1df2f7ac634", "fields": {"code_postal": "14610", "code_commune_insee": "14014", "libell_d_acheminement": "COLOMBY ANGUERNY", "ligne_5": "COLOMBY SUR THAON", "nom_de_la_commune": "COLOMBY ANGUERNY", "coordonnees_gps": [49.2527836333, -0.426386244935]}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197669e5a8f9aff6c5859a57e2daf7c104e6c53f", "fields": {"nom_de_la_commune": "ARGANCHY", "libell_d_acheminement": "ARGANCHY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14019"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b3c0b7b6f6913e922e92be043b4966e877a6fe", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14025"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f9e9748a1945c5f8b29890e8a366f262b785f2", "fields": {"nom_de_la_commune": "AUDRIEU", "libell_d_acheminement": "AUDRIEU", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14026"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55b34d5c3cf013b5210b65087ef0c508023c036", "fields": {"nom_de_la_commune": "AUNAY SUR ODON", "libell_d_acheminement": "AUNAY SUR ODON", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14027"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e1de217664dc37c3a87e29fc0c769f42abfdb9", "fields": {"code_postal": "14260", "code_commune_insee": "14037", "libell_d_acheminement": "MALHERBE SUR AJON", "ligne_5": "BANNEVILLE SUR AJON", "nom_de_la_commune": "MALHERBE SUR AJON", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea36be7104a693a9038a1789e2f8bf3b1f27ca2", "fields": {"code_postal": "14260", "code_commune_insee": "14037", "libell_d_acheminement": "MALHERBE SUR AJON", "ligne_5": "ST AGNAN LE MALHERBE", "nom_de_la_commune": "MALHERBE SUR AJON", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a99577715fefdda4eafbf31ce8c2ae6765ec8f6", "fields": {"nom_de_la_commune": "BARNEVILLE LA BERTRAN", "libell_d_acheminement": "BARNEVILLE LA BERTRAN", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14041"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e739451bcd591234c62be9166a53556c243c21", "fields": {"nom_de_la_commune": "BARON SUR ODON", "libell_d_acheminement": "BARON SUR ODON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14042"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a3cce43e136ab82cde7a42dd449a700cbd1a13", "fields": {"nom_de_la_commune": "BAZENVILLE", "libell_d_acheminement": "BAZENVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14049"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd8951066c33e80d665206e9ac9dfd7b7d231f4", "fields": {"code_postal": "14260", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MONTAMY", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9c03612c020969c3008349f443f1377896739d", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "CAMPEAUX", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f0dd41c6f7f43b457fb1cedf69e5f29aaf3d39", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LE TOURNEUR", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf97238cc603521a7e134369367c07addc7b136e", "fields": {"nom_de_la_commune": "BERNIERES SUR MER", "libell_d_acheminement": "BERNIERES SUR MER", "code_postal": "14990", "coordonnees_gps": [49.3200140329, -0.417927428656], "code_commune_insee": "14066"}, "geometry": {"type": "Point", "coordinates": [-0.417927428656, 49.3200140329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d35e626a028b3be03caefd322d5dab57a201975", "fields": {"nom_de_la_commune": "BEUVILLERS", "libell_d_acheminement": "BEUVILLERS", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14069"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b870cf1eca0234fafeb8ec517251cef99a13312b", "fields": {"nom_de_la_commune": "BLAINVILLE SUR ORNE", "libell_d_acheminement": "BLAINVILLE SUR ORNE", "code_postal": "14550", "coordonnees_gps": [49.22830054, -0.304829518054], "code_commune_insee": "14076"}, "geometry": {"type": "Point", "coordinates": [-0.304829518054, 49.22830054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8c959a6985ed316b84b2bb57faaded6603d3ed", "fields": {"nom_de_la_commune": "BONNEMAISON", "libell_d_acheminement": "BONNEMAISON", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14084"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4bcd7e881ec115a29c906b7996a1b689d83ea3", "fields": {"nom_de_la_commune": "BONNEVILLE SUR TOUQUES", "libell_d_acheminement": "BONNEVILLE SUR TOUQUES", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14086"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428120d1b01fc11dec9599f82042fdfa1a537bcf", "fields": {"nom_de_la_commune": "BONNOEIL", "libell_d_acheminement": "BONNOEIL", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14087"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c71493c6e2da84aa130a524405c827aafd1051a", "fields": {"nom_de_la_commune": "BOULON", "libell_d_acheminement": "BOULON", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14090"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2eb71785b1d62b4d197d0e29e2e72b8fcdda32", "fields": {"nom_de_la_commune": "AUJAN MOURNEDE", "libell_d_acheminement": "AUJAN MOURNEDE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32015"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6705365d752fb3067635e11aa45a76cce0a062b9", "fields": {"nom_de_la_commune": "AURIMONT", "libell_d_acheminement": "AURIMONT", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32018"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddbd097ba35690c7ff6c8aeb53321a73cd1f7274", "fields": {"nom_de_la_commune": "AUX AUSSAT", "libell_d_acheminement": "AUX AUSSAT", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32020"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8269ff482716ffd017139bd07dc13baef58f5a8", "fields": {"nom_de_la_commune": "BARS", "libell_d_acheminement": "BARS", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32030"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69504d81792998bc5e6393d922993214a454a00", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32038"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41699231cabe9794a06618d7b0e4af763b0aaf42", "fields": {"nom_de_la_commune": "BERDOUES", "libell_d_acheminement": "BERDOUES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32045"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569c58f3f3ec30cfe387b452599c3edda7b88e6c", "fields": {"nom_de_la_commune": "BONAS", "libell_d_acheminement": "BONAS", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32059"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fcdd4beb62a9ecd3529271109ab636dcefa6842", "fields": {"code_postal": "32350", "code_commune_insee": "32065", "libell_d_acheminement": "LE BROUILH MONBERT", "ligne_5": "MONBERT", "nom_de_la_commune": "LE BROUILH MONBERT", "coordonnees_gps": [43.6571309769, 0.430675404963]}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "849aa3ae2cb31adbbd8ded9aae37a42ba236c7b6", "fields": {"nom_de_la_commune": "CASTELNAVET", "libell_d_acheminement": "CASTELNAVET", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32081"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74820d93682dcc6d6ec782f751422ff058bb553", "fields": {"nom_de_la_commune": "CASTEX", "libell_d_acheminement": "CASTEX", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32086"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c32be2cf756a87c522d347d9433ccea341b9fd", "fields": {"nom_de_la_commune": "CASTEX D ARMAGNAC", "libell_d_acheminement": "CASTEX D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32087"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779f0537ef02dfdbef4df23f4c1c8ff255e3b865", "fields": {"nom_de_la_commune": "CASTILLON SAVES", "libell_d_acheminement": "CASTILLON SAVES", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32090"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed76f3dc98be8bf82199b94a4332ef916dae0c4a", "fields": {"nom_de_la_commune": "CASTIN", "libell_d_acheminement": "CASTIN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32091"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da7ce5dc89072e59d09a7592989dc2b53f956f6f", "fields": {"nom_de_la_commune": "CAUPENNE D ARMAGNAC", "libell_d_acheminement": "CAUPENNE D ARMAGNAC", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32094"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc924fc51468fd4823b30509e78485c9eb44ac2", "fields": {"nom_de_la_commune": "CAZAUX VILLECOMTAL", "libell_d_acheminement": "CAZAUX VILLECOMTAL", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32099"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd978c7ded869bb803b901d11db0ca393a7a9220", "fields": {"nom_de_la_commune": "CERAN", "libell_d_acheminement": "CERAN", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32101"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934decacfbd74db1392580189e7d71735a65f58c", "fields": {"nom_de_la_commune": "CLERMONT SAVES", "libell_d_acheminement": "CLERMONT SAVES", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32105"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0739de771dc658be50b877b08c10944a0ff77bfc", "fields": {"nom_de_la_commune": "COURRENSAN", "libell_d_acheminement": "COURRENSAN", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32110"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a172178554fedb75cc4949d29fd3bd1387e8ca60", "fields": {"nom_de_la_commune": "ESCLASSAN LABASTIDE", "libell_d_acheminement": "ESCLASSAN LABASTIDE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32122"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0dae1cef1c37caccd2a07fed3048f5879836ef", "fields": {"nom_de_la_commune": "ESPAS", "libell_d_acheminement": "ESPAS", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32125"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b91b7690a6d6acfc92be13d12ee527c72d967a8", "fields": {"nom_de_la_commune": "ESTAMPES", "libell_d_acheminement": "ESTAMPES", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32126"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9499967d17d3b78b513a55905c068423fd62d386", "fields": {"nom_de_la_commune": "GAUJAN", "libell_d_acheminement": "GAUJAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32141"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1279260f0d0e63b81c74c0298255b078a782e94", "fields": {"nom_de_la_commune": "GAVARRET SUR AULOUSTE", "libell_d_acheminement": "GAVARRET SUR AULOUSTE", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32142"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39dc867f89f40033ac9671421e74c7a2ef260f96", "fields": {"nom_de_la_commune": "GEE RIVIERE", "libell_d_acheminement": "GEE RIVIERE", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32145"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e748eea4620b7b58f75178cc3ce685fcabd6db86", "fields": {"nom_de_la_commune": "GIMBREDE", "libell_d_acheminement": "GIMBREDE", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32146"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318bc72e972380fd645853ebfad5b3a317dcc389", "fields": {"nom_de_la_commune": "GIMONT", "libell_d_acheminement": "GIMONT", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32147"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f485f9337241d5921d12746cc59f7b5c12cd9ccd", "fields": {"nom_de_la_commune": "GISCARO", "libell_d_acheminement": "GISCARO", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32148"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9ef8da39af3fd440156c1d61a568cc98669d47", "fields": {"nom_de_la_commune": "HAGET", "libell_d_acheminement": "HAGET", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32152"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb84740a79c1be542b4b3f00eb3ed307494025a", "fields": {"nom_de_la_commune": "LE HOUGA", "libell_d_acheminement": "LE HOUGA", "code_postal": "32460", "coordonnees_gps": [43.7705722167, -0.178992315741], "code_commune_insee": "32155"}, "geometry": {"type": "Point", "coordinates": [-0.178992315741, 43.7705722167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91cf9d5a359f22a9b859768ac48e6d8e8160e198", "fields": {"nom_de_la_commune": "L ISLE DE NOE", "libell_d_acheminement": "L ISLE DE NOE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32159"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b545de44302c77f7d763c3650345012915ea9afa", "fields": {"nom_de_la_commune": "L ISLE JOURDAIN", "libell_d_acheminement": "L ISLE JOURDAIN", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32160"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3730898959eac85164fbef5ca7376b029c5d902c", "fields": {"nom_de_la_commune": "JU BELLOC", "libell_d_acheminement": "JU BELLOC", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32163"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a83bc8a0da3b60099031b3842e98bb557b87e5f", "fields": {"nom_de_la_commune": "LABEJAN", "libell_d_acheminement": "LABEJAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32172"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c373f15fc0f5d4101a49855c8c524e071ef5434", "fields": {"nom_de_la_commune": "LABRIHE", "libell_d_acheminement": "LABRIHE", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32173"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55de51a465810d96c71022506096c4cdcf180cfe", "fields": {"nom_de_la_commune": "LADEVEZE RIVIERE", "libell_d_acheminement": "LADEVEZE RIVIERE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32174"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc2244e476deaa6736884d70347d25349714f4b", "fields": {"nom_de_la_commune": "LADEVEZE VILLE", "libell_d_acheminement": "LADEVEZE VILLE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32175"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794118a381847c47245b3d1088b198707fab73d9", "fields": {"nom_de_la_commune": "LAGARDERE", "libell_d_acheminement": "LAGARDERE", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32178"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cd212c9f0c4d547d5776cad4b93e8d36c7d721", "fields": {"nom_de_la_commune": "LALANNE ARQUE", "libell_d_acheminement": "LALANNE ARQUE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32185"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2493d80d7078149fed0b704edd993d51cfb2a900", "fields": {"nom_de_la_commune": "LAMOTHE GOAS", "libell_d_acheminement": "LAMOTHE GOAS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32188"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15bc7bfe60e2d19a34b8b5201b918a3be9bea6f", "fields": {"nom_de_la_commune": "LANNE SOUBIRAN", "libell_d_acheminement": "LANNE SOUBIRAN", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32191"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c571e27d67dae0d6b48b563b296c3d0454afa5", "fields": {"nom_de_la_commune": "LAUJUZAN", "libell_d_acheminement": "LAUJUZAN", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32202"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d52bc369f6ad0e89c0792042d24e468c69e48a", "fields": {"nom_de_la_commune": "LEBOULIN", "libell_d_acheminement": "LEBOULIN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32207"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613fc8e7056c2736f2e054a70b4f313176ea8db6", "fields": {"nom_de_la_commune": "LECTOURE", "libell_d_acheminement": "LECTOURE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32208"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ada5f7c01d63bb46378e067ceca96faa7cd548", "fields": {"nom_de_la_commune": "LIAS", "libell_d_acheminement": "LIAS", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32210"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cad8d1704cf8afef9d6d0854207bc6c0433d997", "fields": {"nom_de_la_commune": "LIAS D ARMAGNAC", "libell_d_acheminement": "LIAS D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32211"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e25f7810abe353663021b09870882d4f078a28", "fields": {"nom_de_la_commune": "LOUBERSAN", "libell_d_acheminement": "LOUBERSAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32215"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a23efea948858fdf8ab484a2ffa120859e6186", "fields": {"nom_de_la_commune": "LOURTIES MONBRUN", "libell_d_acheminement": "LOURTIES MONBRUN", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32216"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4f7c51e021ff14465244d12282c61c5aa664b6f", "fields": {"nom_de_la_commune": "LOUSSOUS DEBAT", "libell_d_acheminement": "LOUSSOUS DEBAT", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32218"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2f1b60d4a81f7260033e57d1bfe12064fe98cb", "fields": {"nom_de_la_commune": "MARSEILLAN", "libell_d_acheminement": "MARSEILLAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32238"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04bd3ef7770c67e946d279a44e760c50fb87a02", "fields": {"nom_de_la_commune": "MARSOLAN", "libell_d_acheminement": "MARSOLAN", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32239"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f674ec24ee1b48e0414a88fe4b25862194b8bc6", "fields": {"nom_de_la_commune": "MAS D AUVIGNON", "libell_d_acheminement": "MAS D AUVIGNON", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32241"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1d61f6711dfcb37bf96f5dfb72240cbf000258", "fields": {"nom_de_la_commune": "MAUMUSSON LAGUIAN", "libell_d_acheminement": "MAUMUSSON LAGUIAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32245"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17bc570e920c03158bd57c0467f8983b3d561ef9", "fields": {"nom_de_la_commune": "MIRAMONT D ASTARAC", "libell_d_acheminement": "MIRAMONT D ASTARAC", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32254"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684e44894097ceca47489ad70c215d7925e9d1f4", "fields": {"nom_de_la_commune": "MONBRUN", "libell_d_acheminement": "MONBRUN", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32262"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede022586c239501a1b8b720ee121c943cf3974b", "fields": {"nom_de_la_commune": "MONCLAR SUR LOSSE", "libell_d_acheminement": "MONCLAR SUR LOSSE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32265"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4b74a7be94ed25d12921089dc995148515bf4f", "fields": {"nom_de_la_commune": "MONGAUSY", "libell_d_acheminement": "MONGAUSY", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32270"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfbe3a81fb9a9585b6069ce0f0eca63399b77991", "fields": {"nom_de_la_commune": "MONLAUR BERNET", "libell_d_acheminement": "MONLAUR BERNET", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32272"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495101b017ef62bfdd7497dfad14426eee19419a", "fields": {"nom_de_la_commune": "MONTEGUT", "libell_d_acheminement": "MONTEGUT", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32282"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ef7c53a1a8be21fcd422254b7692c4b9e9ab51", "fields": {"nom_de_la_commune": "MONTIRON", "libell_d_acheminement": "MONTIRON", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32288"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3c62610697443ebb6d8c4e98bf93996c7abd69", "fields": {"nom_de_la_commune": "MOUCHES", "libell_d_acheminement": "MOUCHES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32293"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5d6328b476a756292be24c39d8aa1a9d9027c9", "fields": {"nom_de_la_commune": "ORBESSAN", "libell_d_acheminement": "ORBESSAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32300"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78cb71533e4f8ec5e32e2ea7137508e662db887d", "fields": {"nom_de_la_commune": "PALLANNE", "libell_d_acheminement": "PALLANNE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32303"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e45331bb04359c50e43da2400ea07ca10f93e102", "fields": {"nom_de_la_commune": "PESSAN", "libell_d_acheminement": "PESSAN", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32312"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c624bfff99b2b540cbc19c9dd50fe3331f00dcb8", "fields": {"nom_de_la_commune": "PIS", "libell_d_acheminement": "PIS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32318"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d27d7bbbb952f2c9907440bc36fc7d87ffa6062f", "fields": {"nom_de_la_commune": "PUYSEGUR", "libell_d_acheminement": "PUYSEGUR", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32337"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f66d057fb76991ae97337cb14ed35a33590a6f", "fields": {"nom_de_la_commune": "ROQUEFORT", "libell_d_acheminement": "ROQUEFORT", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32347"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9d038d6328d8ff2a7d68d6b5a4d24d9c92b9c9", "fields": {"nom_de_la_commune": "ROQUELAURE", "libell_d_acheminement": "ROQUELAURE", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32348"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72410c6aea5196f9fe4c475c776bcc02dcdb5d8", "fields": {"nom_de_la_commune": "ST AVIT FRANDAT", "libell_d_acheminement": "ST AVIT FRANDAT", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32364"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68469b3f629f2391e1543cd49c668eeb39d934d", "fields": {"nom_de_la_commune": "ST BRES", "libell_d_acheminement": "ST BRES", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32366"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991f5569e418fb152b9fd0b49f965213bd868274", "fields": {"nom_de_la_commune": "STE CHRISTIE", "libell_d_acheminement": "STE CHRISTIE", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32368"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3f9c786143f84cfab5590216145ab6ea7b5b55", "fields": {"nom_de_la_commune": "ST CLAR", "libell_d_acheminement": "ST CLAR", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32370"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830ba3b98e4f8d253224c4286154425f02904327", "fields": {"nom_de_la_commune": "ST CRICQ", "libell_d_acheminement": "ST CRICQ", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32372"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8585d1cca5b647881f8da6bd547bb7ab3602d205", "fields": {"nom_de_la_commune": "STE DODE", "libell_d_acheminement": "STE DODE", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32373"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdf43b38e05cb2a0630c4d4c0a694d7d8eafadd", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32376"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "becb5dc258259a103638c51728aba6fadd9dd375", "fields": {"nom_de_la_commune": "ST JEAN LE COMTAL", "libell_d_acheminement": "ST JEAN LE COMTAL", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32381"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0098c8ebda07683b2b6de1a861a4a1e4afa136", "fields": {"nom_de_la_commune": "ST JEAN POUTGE", "libell_d_acheminement": "ST JEAN POUTGE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32382"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d09676facfab37ca84e809aea16675321e0164", "fields": {"nom_de_la_commune": "ST LARY", "libell_d_acheminement": "ST LARY", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32384"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32705ec1ccdbfe20aac23990423a4bf61c74cf4b", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32385"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825712c574527721e688dcc35d90fbbf3dee2015", "fields": {"nom_de_la_commune": "ST LIZIER DU PLANTE", "libell_d_acheminement": "ST LIZIER DU PLANTE", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32386"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f994f33a94b669e09423aa97538fad10d5fed39", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32389"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58866bd5d4f7b665dba935d8498bb88c9b537a56", "fields": {"nom_de_la_commune": "ST MARTIN DE GOYNE", "libell_d_acheminement": "ST MARTIN DE GOYNE", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32391"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7cb7ac837cc30ac6575e19a1204df4d2c1b53ca", "fields": {"nom_de_la_commune": "SALLES D ARMAGNAC", "libell_d_acheminement": "SALLES D ARMAGNAC", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32408"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad6b0008bbd8ecb8ef8e535a7f4fa3bcc179827", "fields": {"nom_de_la_commune": "SAMATAN", "libell_d_acheminement": "SAMATAN", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32410"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3829c7d5961600eadc1590e021c82ea49516c310", "fields": {"nom_de_la_commune": "SAUVIAC", "libell_d_acheminement": "SAUVIAC", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32419"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4829ce9a19e8233d7400eba20966401eddb9ff63", "fields": {"nom_de_la_commune": "SAVIGNAC MONA", "libell_d_acheminement": "SAVIGNAC MONA", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32421"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b293d87bdafdf547457d46bca361db8582e6e1", "fields": {"nom_de_la_commune": "SEMEZIES CACHAN", "libell_d_acheminement": "SEMEZIES CACHAN", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32428"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be654d8ab888a05937457b5795fa04ff25c0e04", "fields": {"nom_de_la_commune": "SEYSSES SAVES", "libell_d_acheminement": "SEYSSES SAVES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32432"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e7500687652e0059051e7ce1f2585c1d337a51", "fields": {"nom_de_la_commune": "SIMORRE", "libell_d_acheminement": "SIMORRE", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32433"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "668c98d3e2ab100d3719bf6a339acd7075813afa", "fields": {"nom_de_la_commune": "SORBETS", "libell_d_acheminement": "SORBETS", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32437"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d24872c097e7e12e3451137ea2bf03c2917e59", "fields": {"nom_de_la_commune": "TAYBOSC", "libell_d_acheminement": "TAYBOSC", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32441"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f83e1a1d833d84efe0b7e272d8358880e4cc6b6e", "fields": {"nom_de_la_commune": "TIRENT PONTEJAC", "libell_d_acheminement": "TIRENT PONTEJAC", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32447"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "809c2566ba7bd9718b0e46e41efb613badba2c5c", "fields": {"nom_de_la_commune": "AUSSOS", "libell_d_acheminement": "AUSSOS", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32468"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9cdfa0fc13b7d799ab026d8be29725ed2f3055", "fields": {"nom_de_la_commune": "ARBANATS", "libell_d_acheminement": "ARBANATS", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33007"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e49310d49f8af327e5f38dd41526f63af8d8860c", "fields": {"nom_de_la_commune": "ASQUES", "libell_d_acheminement": "ASQUES", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33016"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de1a753300859494a62e95366b6eabc37487496", "fields": {"nom_de_la_commune": "AVENSAN", "libell_d_acheminement": "AVENSAN", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33022"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4931ab424ef83b5e3a422344a0c947c5ef489abf", "fields": {"nom_de_la_commune": "LE BARP", "libell_d_acheminement": "LE BARP", "code_postal": "33114", "coordonnees_gps": [44.6266406222, -0.746925963031], "code_commune_insee": "33029"}, "geometry": {"type": "Point", "coordinates": [-0.746925963031, 44.6266406222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a2d327053b2056966e2b0bcbd8ccdb56d14442", "fields": {"nom_de_la_commune": "BAURECH", "libell_d_acheminement": "BAURECH", "code_postal": "33880", "coordonnees_gps": [44.7419112231, -0.437846181859], "code_commune_insee": "33033"}, "geometry": {"type": "Point", "coordinates": [-0.437846181859, 44.7419112231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5ce3ca190bf1cb5c19a2dcb3e4e8e5506f2bda", "fields": {"nom_de_la_commune": "BELVES DE CASTILLON", "libell_d_acheminement": "BELVES DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33045"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4992a1465855c83e1b39155a99692a28fab0e890", "fields": {"nom_de_la_commune": "BOMMES", "libell_d_acheminement": "BOMMES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33060"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4fa87bc995f78731aba92c6aa6f6586c2511a6", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33100", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe54d7b3b4f392427d7a905490824fb53f3ed0e", "fields": {"nom_de_la_commune": "MAREUIL SUR CHER", "libell_d_acheminement": "MAREUIL SUR CHER", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41126"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee781244c9f9504cc1129b18a780993c8f4b0ffd", "fields": {"nom_de_la_commune": "MAZANGE", "libell_d_acheminement": "MAZANGE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41131"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ada944ea0e9dc185641d6c9fafee5357bed779d", "fields": {"nom_de_la_commune": "MER", "libell_d_acheminement": "MER", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41136"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2a10a05b83c02f8717e68214e3bb67995c4d92", "fields": {"code_postal": "41190", "code_commune_insee": "41142", "libell_d_acheminement": "VALENCISSE", "ligne_5": "MOLINEUF", "nom_de_la_commune": "VALENCISSE", "coordonnees_gps": [47.6158784323, 1.13032503262]}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22c38c3044434fe8d127834b1d019f5e10290eb", "fields": {"nom_de_la_commune": "MONTHOU SUR BIEVRE", "libell_d_acheminement": "MONTHOU SUR BIEVRE", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41145"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c951be6349dcd2de9fd121faf4632c2dc1400d6", "fields": {"nom_de_la_commune": "LES MONTILS", "libell_d_acheminement": "LES MONTILS", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41147"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a32a858badf4b83abe268d5560e4fe060261ab3", "fields": {"nom_de_la_commune": "MONTOIRE SUR LE LOIR", "libell_d_acheminement": "MONTOIRE SUR LE LOIR", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41149"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb931dad0e9bdd36ca5f6d2a992d75bd65f23633", "fields": {"nom_de_la_commune": "MOREE", "libell_d_acheminement": "MOREE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41154"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c69eeae367c40ccc4bfdc1404f8b47ae7c24923", "fields": {"nom_de_la_commune": "NAVEIL", "libell_d_acheminement": "NAVEIL", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41158"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8239d8f3119136acd962ae6a407af6b78a14d3ac", "fields": {"nom_de_la_commune": "NEUNG SUR BEUVRON", "libell_d_acheminement": "NEUNG SUR BEUVRON", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41159"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec13c240ca40291dc7be9332eb11f8dbf0ce6bd", "fields": {"nom_de_la_commune": "NEUVY", "libell_d_acheminement": "NEUVY", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41160"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff2bc0a004dead737427fb6835a9c8da7de103c", "fields": {"nom_de_la_commune": "ORCAY", "libell_d_acheminement": "ORCAY", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41168"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1088f395ea23d84c0c262ceaaa1ae0616d1e4615", "fields": {"code_postal": "41160", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "LA COLOMBE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.9130390568, 1.2078402544]}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297dcca42e7a774ce101619fd6c0226fa2549496", "fields": {"nom_de_la_commune": "PIERREFITTE SUR SAULDRE", "libell_d_acheminement": "PIERREFITTE SUR SAULDRE", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41176"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28fbadd00c28067d0e80282e98843e1bc7ccf32", "fields": {"nom_de_la_commune": "PONTLEVOY", "libell_d_acheminement": "PONTLEVOY", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41180"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efbe747d0f7f5642fcca96ae72dc1c9bcfbac2f0", "fields": {"nom_de_la_commune": "PRUNIERS EN SOLOGNE", "libell_d_acheminement": "PRUNIERS EN SOLOGNE", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41185"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1a9dca936d46a09b8e00e0743b7bcb095b8f78", "fields": {"nom_de_la_commune": "LES ROCHES L EVEQUE", "libell_d_acheminement": "LES ROCHES L EVEQUE", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41192"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde38eb089869c2e550d304cf0eed727ce2637c4", "fields": {"nom_de_la_commune": "ROUGEOU", "libell_d_acheminement": "ROUGEOU", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41195"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8bcb351f08cb4f275fd6a01889d6397dc8199f", "fields": {"nom_de_la_commune": "ST AGIL", "libell_d_acheminement": "ST AGIL", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41197"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a90a44abb208aaf2151da5c70028fc4b123222", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41198"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "571be3745613b9b4ce12c5977ea3779fa7835320", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41201"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e578421e9173ea316343e089f9dd650de62c6a92", "fields": {"nom_de_la_commune": "ST BOHAIRE", "libell_d_acheminement": "ST BOHAIRE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41203"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840fa58a65b9c5618b141cfb7825fdbdb1ca03fb", "fields": {"nom_de_la_commune": "ST FIRMIN DES PRES", "libell_d_acheminement": "ST FIRMIN DES PRES", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41209"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dbe7c2dc788d6935ad07278fb3b0b067ac9cc9a", "fields": {"nom_de_la_commune": "ST GEORGES SUR CHER", "libell_d_acheminement": "ST GEORGES SUR CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41211"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a0df8cda6b99a146a85d2b60daac5c53a0c2bb", "fields": {"nom_de_la_commune": "ST HILAIRE LA GRAVELLE", "libell_d_acheminement": "ST HILAIRE LA GRAVELLE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41214"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfbeb611bb2d7d04de5d88999e0b0fe17ecb05af", "fields": {"nom_de_la_commune": "ST JEAN FROIDMENTEL", "libell_d_acheminement": "ST JEAN FROIDMENTEL", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41216"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d099ff1e182d784cc7b562402e7509fe939498", "fields": {"nom_de_la_commune": "ST JULIEN DE CHEDON", "libell_d_acheminement": "ST JULIEN DE CHEDON", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41217"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e74619d52665356e0c4a2dc01fbaa322b6baa4", "fields": {"nom_de_la_commune": "ST LAURENT DES BOIS", "libell_d_acheminement": "ST LAURENT DES BOIS", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41219"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf088cd4c4595b698eaeed52605eb97953c395c", "fields": {"nom_de_la_commune": "ST LAURENT NOUAN", "libell_d_acheminement": "ST LAURENT NOUAN", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41220"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0935db6a41c31dec77e7fe6da6646b7b99c345", "fields": {"nom_de_la_commune": "ST LEONARD EN BEAUCE", "libell_d_acheminement": "ST LEONARD EN BEAUCE", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41221"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f136f94add50ed2f080ac412c6cdf95826f53b3a", "fields": {"nom_de_la_commune": "ST SULPICE DE POMMERAY", "libell_d_acheminement": "ST SULPICE DE POMMERAY", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41230"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ec0cf5ce60d7be692366f2edecdf0647fc50ea", "fields": {"nom_de_la_commune": "SANTENAY", "libell_d_acheminement": "SANTENAY", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41234"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8977ad4c3e4df6a0efdd670769d8f2ff07f91fab", "fields": {"nom_de_la_commune": "SAVIGNY SUR BRAYE", "libell_d_acheminement": "SAVIGNY SUR BRAYE", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41238"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5bf9293d4f90ef461ea32755440e5906e8a9077", "fields": {"nom_de_la_commune": "SERIS", "libell_d_acheminement": "SERIS", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41245"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ae9c576f852e6f548611a4fca0cf35134394bb", "fields": {"nom_de_la_commune": "SUEVRES", "libell_d_acheminement": "SUEVRES", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41252"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdda890b9fb78d4dee9cf9313d435d6ca5e25f4b", "fields": {"nom_de_la_commune": "TALCY", "libell_d_acheminement": "TALCY", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41253"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715c142dd59582605f228831a8faa5ad32f3c0f7", "fields": {"nom_de_la_commune": "TERNAY", "libell_d_acheminement": "TERNAY", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41255"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99a1cfb9f8720e6f23baa9eeae8add41296e579", "fields": {"nom_de_la_commune": "THESEE", "libell_d_acheminement": "THESEE", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41258"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaa12fd7a6ca94700102e6275c25c1ab4bf40ef", "fields": {"nom_de_la_commune": "TOURAILLES", "libell_d_acheminement": "TOURAILLES", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41261"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa6fb099c4714d3621ccace2171dfc63f95f69a", "fields": {"nom_de_la_commune": "TREHET", "libell_d_acheminement": "TREHET", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41263"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3121c9fb7b3f20e5768c7c0e0b3acb166e1582a3", "fields": {"nom_de_la_commune": "VEUVES", "libell_d_acheminement": "VEUVES", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41272"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae8b63b267c75b28ad9784390038f7dec30c1b4", "fields": {"code_postal": "41290", "code_commune_insee": "41273", "libell_d_acheminement": "VIEVY LE RAYE", "ligne_5": "ECOMAN", "nom_de_la_commune": "VIEVY LE RAYE", "coordonnees_gps": [47.8184890364, 1.28159581607]}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468732d2a583090a4f79c04578fa78b5f4d12f3d", "fields": {"nom_de_la_commune": "VILLEXANTON", "libell_d_acheminement": "VILLEXANTON", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41292"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42aa914becbf740cdab50b19b244add4071b2102", "fields": {"nom_de_la_commune": "VILLIERSFAUX", "libell_d_acheminement": "VILLIERSFAUX", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41293"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55ea1147eac223fd80801c4013c5aa91106737ec", "fields": {"nom_de_la_commune": "AMBIERLE", "libell_d_acheminement": "AMBIERLE", "code_postal": "42820", "coordonnees_gps": [46.1062687547, 3.89170763654], "code_commune_insee": "42003"}, "geometry": {"type": "Point", "coordinates": [3.89170763654, 46.1062687547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963f5eb7092b9b7fa1658db2b679b8bfbb18151d", "fields": {"nom_de_la_commune": "BELMONT DE LA LOIRE", "libell_d_acheminement": "BELMONT DE LA LOIRE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42015"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef00f1ca0a5693ef80bf17085e473bbd47d0b7b", "fields": {"nom_de_la_commune": "LE BESSAT", "libell_d_acheminement": "LE BESSAT", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42017"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1eab8d970a24607b15cccad3638080af89475f", "fields": {"nom_de_la_commune": "BUSSY ALBIEUX", "libell_d_acheminement": "BUSSY ALBIEUX", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42030"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f167758fe5945e52a1b15168091805407f24d10", "fields": {"nom_de_la_commune": "CALOIRE", "libell_d_acheminement": "CALOIRE", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42031"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c1df84c2fc7c234eff13b47940718e60842991", "fields": {"nom_de_la_commune": "CELLIEU", "libell_d_acheminement": "CELLIEU", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42032"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c3d02d752fa3f8c8130a001a2d6518aa7f72f8", "fields": {"nom_de_la_commune": "CERVIERES", "libell_d_acheminement": "CERVIERES", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42034"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79ec5a14ecc225ae294814fdb6b27f49d8e5574", "fields": {"nom_de_la_commune": "CHALAIN LE COMTAL", "libell_d_acheminement": "CHALAIN LE COMTAL", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42038"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ff93e90faea94a73b3341843fd3f721227e880", "fields": {"code_postal": "42920", "code_commune_insee": "42039", "libell_d_acheminement": "CHALMAZEL JEANSAGNIERE", "ligne_5": "JEANSAGNIERE", "nom_de_la_commune": "CHALMAZEL JEANSAGNIERE", "coordonnees_gps": [45.6983422849, 3.82487008798]}, "geometry": {"type": "Point", "coordinates": [3.82487008798, 45.6983422849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f68c186d62fdef228fe3df863b03050cde8c2b5", "fields": {"nom_de_la_commune": "CHAMBLES", "libell_d_acheminement": "CHAMBLES", "code_postal": "42170", "coordonnees_gps": [45.4781366129, 4.24298529227], "code_commune_insee": "42042"}, "geometry": {"type": "Point", "coordinates": [4.24298529227, 45.4781366129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca1c754129285f7e89089396820e0f30eb22a69", "fields": {"nom_de_la_commune": "LE CHAMBON FEUGEROLLES", "libell_d_acheminement": "LE CHAMBON FEUGEROLLES", "code_postal": "42500", "coordonnees_gps": [45.3890773304, 4.33192128841], "code_commune_insee": "42044"}, "geometry": {"type": "Point", "coordinates": [4.33192128841, 45.3890773304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e853f2b65162f2664ce7434caecf69af6d4f237d", "fields": {"nom_de_la_commune": "LA CHAMBONIE", "libell_d_acheminement": "LA CHAMBONIE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42045"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2540ff25fc5bc5881fe60adb424591de9f5b4fe", "fields": {"nom_de_la_commune": "CHARLIEU", "libell_d_acheminement": "CHARLIEU", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42052"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a9adf0de794b4c8fadc17fedd4cb5ce0e0057b", "fields": {"nom_de_la_commune": "CHEVRIERES", "libell_d_acheminement": "CHEVRIERES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42062"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8983b0b3f32b6ef2e79ad6016c76033a5e09eb7f", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42067"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb768267b5b44407d2b78fa574aeb15173b3214", "fields": {"nom_de_la_commune": "LE COTEAU", "libell_d_acheminement": "LE COTEAU", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42071"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93502ac65b935f5566a4504b994c9a98751d53f6", "fields": {"nom_de_la_commune": "LA COTE EN COUZAN", "libell_d_acheminement": "LA COTE EN COUZAN", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42072"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67662f5fb354f1926f1d8e88b0ad32702f23e720", "fields": {"nom_de_la_commune": "CUZIEU", "libell_d_acheminement": "CUZIEU", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42081"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12999b4dcab9a1aa4ce3890889d3e48ae588c60", "fields": {"nom_de_la_commune": "GRAIX", "libell_d_acheminement": "GRAIX", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42101"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d61e2df95e3a90d17fb7a2a564a2f2f245aac4", "fields": {"nom_de_la_commune": "LA GRAND CROIX", "libell_d_acheminement": "LA GRAND CROIX", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42103"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0104fc74418abde3e7c5f6f92a7771b16f77341", "fields": {"nom_de_la_commune": "COUSTAUSSA", "libell_d_acheminement": "COUSTAUSSA", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11109"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17403eb9a60991d334eb2717cb0d787bf2cd073f", "fields": {"nom_de_la_commune": "LA DIGNE D AMONT", "libell_d_acheminement": "LA DIGNE D AMONT", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11119"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675e85f642e29a5c81484004cddd81bacc060f3c", "fields": {"nom_de_la_commune": "DUILHAC SOUS PEYREPERTUSE", "libell_d_acheminement": "DUILHAC SOUS PEYREPERTUSE", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11123"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a742a6195d6f947c57d5b3d1b6000f622f505216", "fields": {"nom_de_la_commune": "ESPEZEL", "libell_d_acheminement": "ESPEZEL", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11130"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4d5c8ab23f20cd2834481703d62808ed70e3b0", "fields": {"nom_de_la_commune": "LA FAJOLLE", "libell_d_acheminement": "LA FAJOLLE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11135"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad17ebd530ca978b98ac0173807d6abe08491259", "fields": {"nom_de_la_commune": "FELINES TERMENES", "libell_d_acheminement": "FELINES TERMENES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11137"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9564839196bbeeed9669c4cb5fe6e3b47e6669ec", "fields": {"nom_de_la_commune": "FENDEILLE", "libell_d_acheminement": "FENDEILLE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11138"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3c17f15daa23af5cef243344ffc156e23949a2", "fields": {"nom_de_la_commune": "FEUILLA", "libell_d_acheminement": "FEUILLA", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11143"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe10e2dea98c3c1e5dc265e69bc64cbe7ce1aa79", "fields": {"nom_de_la_commune": "FITOU", "libell_d_acheminement": "FITOU", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11144"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8880624526450de271302da6cd48a04521c0d2ea", "fields": {"nom_de_la_commune": "LADERN SUR LAUQUET", "libell_d_acheminement": "LADERN SUR LAUQUET", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11183"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb11c0e39c2d439a7029f7010dc2d5e2c943336", "fields": {"nom_de_la_commune": "LANET", "libell_d_acheminement": "LANET", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11187"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0eb89510ee816b945879f2e905107b63ad05ac0", "fields": {"nom_de_la_commune": "LASSERRE DE PROUILLE", "libell_d_acheminement": "LASSERRE DE PROUILLE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11193"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca2a2d71d0e1dfe77957a9e5e489f72399b2d13", "fields": {"nom_de_la_commune": "LAURE MINERVOIS", "libell_d_acheminement": "LAURE MINERVOIS", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11198"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c2bfc29de7cc4cf3a823a590b93fffdc52c44d", "fields": {"nom_de_la_commune": "LAVALETTE", "libell_d_acheminement": "LAVALETTE", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11199"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32cf7f2f5ed3d9442eb2c27d07a86189ada6b900", "fields": {"nom_de_la_commune": "LIMOUSIS", "libell_d_acheminement": "LIMOUSIS", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11205"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a693dedd8d87ab427ca393dadefbae710560e4c9", "fields": {"nom_de_la_commune": "MARQUEIN", "libell_d_acheminement": "MARQUEIN", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11218"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9066a8c87eed1e633f138516a5fbfac3407da100", "fields": {"nom_de_la_commune": "MAYRONNES", "libell_d_acheminement": "MAYRONNES", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11227"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145bdf1e12a8b85ab656dc19810572574715d6dd", "fields": {"nom_de_la_commune": "MEZERVILLE", "libell_d_acheminement": "MEZERVILLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11231"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dfe16d127198f9ad7e12697395d625e9cbb0c1f", "fields": {"nom_de_la_commune": "MIREPEISSET", "libell_d_acheminement": "MIREPEISSET", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11233"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d03ecaa47733f22c8767d840e70db0ca40734c2", "fields": {"nom_de_la_commune": "MOLANDIER", "libell_d_acheminement": "MOLANDIER", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11236"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d556e27e37d0e90094c3c21d5352afc848be741", "fields": {"nom_de_la_commune": "MONTFORT SUR BOULZANE", "libell_d_acheminement": "MONTFORT SUR BOULZANE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11244"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7916d73a1e29f7d5e684729df4e45892481f202", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11245"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb8605863bd50b676fba9dd3f834ba1c8aa11f9", "fields": {"nom_de_la_commune": "MONTIRAT", "libell_d_acheminement": "MONTIRAT", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11248"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7593216735af7da0c839b6137795c77ff11cc5dc", "fields": {"nom_de_la_commune": "MONZE", "libell_d_acheminement": "MONZE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11257"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93cbed038b1b9f599cabb218c4dc4cbd4718cc98", "fields": {"code_postal": "11100", "code_commune_insee": "11262", "libell_d_acheminement": "NARBONNE", "ligne_5": "NARBONNE PLAGE", "nom_de_la_commune": "NARBONNE", "coordonnees_gps": [43.1614428329, 3.00768633064]}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7807eb735baf83bb9602ca42b67fc46096fe9bc7", "fields": {"nom_de_la_commune": "NEBIAS", "libell_d_acheminement": "NEBIAS", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11263"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295133cfbac66b1869cd2f76b10c5b61a19e53a6", "fields": {"nom_de_la_commune": "ORSANS", "libell_d_acheminement": "ORSANS", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11268"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fa334799750c74587833a2a9ce5994ec0c42e0", "fields": {"nom_de_la_commune": "PALAIRAC", "libell_d_acheminement": "PALAIRAC", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11271"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98bce235f2f5328cda27167bf9638455b221518", "fields": {"nom_de_la_commune": "PAYRA SUR L HERS", "libell_d_acheminement": "PAYRA SUR L HERS", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11275"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9bc1b7d7f64fb15e3b080e695ef89fbaf86ae4", "fields": {"nom_de_la_commune": "PEPIEUX", "libell_d_acheminement": "PEPIEUX", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11280"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903d00f3d0271b243fd979887994b221b390de11", "fields": {"nom_de_la_commune": "PEYRENS", "libell_d_acheminement": "PEYRENS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11284"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32f52ec1a3679d7553b5d763989a4b6e810283df", "fields": {"nom_de_la_commune": "PIEUSSE", "libell_d_acheminement": "PIEUSSE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11289"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0f4da42d2c790dd0a86c57f20b9354cc7ded7d", "fields": {"nom_de_la_commune": "PLAIGNE", "libell_d_acheminement": "PLAIGNE", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11290"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57b896f2cf700fc9675b2a6b3e8feaa031f4c483", "fields": {"nom_de_la_commune": "RAISSAC SUR LAMPY", "libell_d_acheminement": "RAISSAC SUR LAMPY", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11308"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78918a4f75ae4a96ef7e62faead2dc3f22bfdf3c", "fields": {"nom_de_la_commune": "RENNES LE CHATEAU", "libell_d_acheminement": "RENNES LE CHATEAU", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11309"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8103c0c0ccc9e2ca8bc954b4accf9a20ec3004", "fields": {"nom_de_la_commune": "ROQUEFERE", "libell_d_acheminement": "ROQUEFERE", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11319"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd36832bc9dadc742627c59a7dc6030e1edb989b", "fields": {"nom_de_la_commune": "HERMEVILLE EN WOEVRE", "libell_d_acheminement": "HERMEVILLE EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55244"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f508ccc97ab8b60f3a598193e3b1ebe2678468", "fields": {"nom_de_la_commune": "HEUDICOURT SOUS LES COTES", "libell_d_acheminement": "HEUDICOURT SOUS LES COTES", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55245"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0363f63fb48fc3536f3f675cbc4dc6380d3ee009", "fields": {"nom_de_la_commune": "IPPECOURT", "libell_d_acheminement": "IPPECOURT", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55251"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de871f60b6517073b30dbaf6affca19f6a77d5f", "fields": {"nom_de_la_commune": "LES ISLETTES", "libell_d_acheminement": "LES ISLETTES", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55253"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be6fe12af6fb3b2dea4907bfca5957409e207b2", "fields": {"code_postal": "55220", "code_commune_insee": "55254", "libell_d_acheminement": "LES TROIS DOMAINES", "ligne_5": "RIGNAUCOURT", "nom_de_la_commune": "LES TROIS DOMAINES", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1961661bce199398acc015fb02b0bffe69d9ad71", "fields": {"nom_de_la_commune": "JOUY EN ARGONNE", "libell_d_acheminement": "JOUY EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55257"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2486d00570a236c697a71cbba62fdb6527cf7921", "fields": {"code_postal": "55200", "code_commune_insee": "55258", "libell_d_acheminement": "GEVILLE", "ligne_5": "CORNIEVILLE", "nom_de_la_commune": "GEVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f48be06098b707727bd27f1eda72f0a3b76bfdb", "fields": {"nom_de_la_commune": "JULVECOURT", "libell_d_acheminement": "JULVECOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55260"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eddde81b0cec701cdf957e439159573f88c37c9", "fields": {"nom_de_la_commune": "KOEUR LA GRANDE", "libell_d_acheminement": "KOEUR LA GRANDE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55263"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca0b497ffdda82e5d648c9430e6797614967f46", "fields": {"nom_de_la_commune": "LACHAUSSEE", "libell_d_acheminement": "LACHAUSSEE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55267"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d948f00490445ef988824fb8588a946f9027914", "fields": {"code_postal": "55210", "code_commune_insee": "55267", "libell_d_acheminement": "LACHAUSSEE", "ligne_5": "HAUMONT LES LACHAUSSEE", "nom_de_la_commune": "LACHAUSSEE", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f8962ce6c3ed9b0bf1c47550db268810f414693", "fields": {"nom_de_la_commune": "LAMORVILLE", "libell_d_acheminement": "LAMORVILLE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55274"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6d754c9a49c23d3c640d3b0fdb20a69eefd0c0", "fields": {"nom_de_la_commune": "LANEUVILLE AU RUPT", "libell_d_acheminement": "LANEUVILLE AU RUPT", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55278"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6e71509f6ae184a0117bb151e2437b2ad5e4153", "fields": {"nom_de_la_commune": "LAVOYE", "libell_d_acheminement": "LAVOYE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55285"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "056ae764c80cb3ca6b280b156d280ca7a2e19443", "fields": {"nom_de_la_commune": "LIGNY EN BARROIS", "libell_d_acheminement": "LIGNY EN BARROIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55291"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f90d5508388f6de4e88d40f147262e4740c11f", "fields": {"nom_de_la_commune": "LISLE EN BARROIS", "libell_d_acheminement": "LISLE EN BARROIS", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55295"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1d440b3747e79c8c25d0fb2498bd7254cf4209", "fields": {"nom_de_la_commune": "LOISON", "libell_d_acheminement": "LOISON", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55299"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d71b1276b673ea3afd460ce5fa4b93e0250fd51", "fields": {"nom_de_la_commune": "LONGEVILLE EN BARROIS", "libell_d_acheminement": "LONGEVILLE EN BARROIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55302"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf676b07d9d9c8c11c4620592354289f6a916f63", "fields": {"nom_de_la_commune": "LOUVEMONT COTE DU POIVRE", "libell_d_acheminement": "LOUVEMONT COTE DU POIVRE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55307"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60710a461a1bd5f40d7484c1508338b1a8e6c8cc", "fields": {"nom_de_la_commune": "MANGIENNES", "libell_d_acheminement": "MANGIENNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55316"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c446e95020319df736026972e198245a1c803460", "fields": {"nom_de_la_commune": "MELIGNY LE GRAND", "libell_d_acheminement": "MELIGNY LE GRAND", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55330"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464f52e9836130fcc7905ab72c3e76ae3ccb3a1f", "fields": {"nom_de_la_commune": "MENIL AUX BOIS", "libell_d_acheminement": "MENIL AUX BOIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55333"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b905c81fa2570c24907df68893ab94e5ff80c0", "fields": {"nom_de_la_commune": "MOGNEVILLE", "libell_d_acheminement": "MOGNEVILLE", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55340"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9fefebfc617338dfb2c890481efb877f06668a", "fields": {"nom_de_la_commune": "MONT DEVANT SASSEY", "libell_d_acheminement": "MONT DEVANT SASSEY", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55345"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6882a12977a446a7a437501676344d94a05595", "fields": {"code_postal": "55500", "code_commune_insee": "55358", "libell_d_acheminement": "CHANTERAINE", "ligne_5": "OEY", "nom_de_la_commune": "CHANTERAINE", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46c1256c9169c297bce790fc085fcb47b7bf0a8", "fields": {"nom_de_la_commune": "MORLEY", "libell_d_acheminement": "MORLEY", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55359"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c11bd20034eb89d8b61372a63e188fcad758f3a", "fields": {"nom_de_la_commune": "MOULAINVILLE", "libell_d_acheminement": "MOULAINVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55361"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e7bfefa0e68a476d305f3f3ba6b1ca22d64223", "fields": {"code_postal": "55000", "code_commune_insee": "55366", "libell_d_acheminement": "VAL D ORNAIN", "ligne_5": "BUSSY LA COTE", "nom_de_la_commune": "VAL D ORNAIN", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc672a76c8c7092e2c6abc07127e496b2849d7d9", "fields": {"nom_de_la_commune": "NAIVES EN BLOIS", "libell_d_acheminement": "NAIVES EN BLOIS", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55368"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4853ca78ff75c5364b0e8231217c7bb289fc6d", "fields": {"nom_de_la_commune": "NEUVILLY EN ARGONNE", "libell_d_acheminement": "NEUVILLY EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55383"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ab814d1798af0edeb2c6cc7c63e37ed0b5120e", "fields": {"nom_de_la_commune": "NONSARD LAMARCHE", "libell_d_acheminement": "NONSARD LAMARCHE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55386"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe77c62c77a98b0ee8beb3679d442c9857f4810", "fields": {"nom_de_la_commune": "NOUILLONPONT", "libell_d_acheminement": "NOUILLONPONT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55387"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942f872469fd1a79ea9a56b8654db04aefaf70d9", "fields": {"code_postal": "55800", "code_commune_insee": "55388", "libell_d_acheminement": "NOYERS AUZECOURT", "ligne_5": "AUZECOURT", "nom_de_la_commune": "NOYERS AUZECOURT", "coordonnees_gps": [48.8462608898, 4.99668524223]}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c796d914bdf09dba4b70402be66b0205f27d5a", "fields": {"code_postal": "55250", "code_commune_insee": "55389", "libell_d_acheminement": "NUBECOURT", "ligne_5": "FLEURY SUR AIRE", "nom_de_la_commune": "NUBECOURT", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e798dbdda23f62ccd8954cb9eaf06a622ced2fc", "fields": {"nom_de_la_commune": "OLIZY SUR CHIERS", "libell_d_acheminement": "OLIZY SUR CHIERS", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55391"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d550142eeff3f60a4addba78c44bfff2bb8236b5", "fields": {"nom_de_la_commune": "OSCHES", "libell_d_acheminement": "OSCHES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55395"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c905f27cce5beb559fd2babc6682c1815b0cd6", "fields": {"nom_de_la_commune": "OURCHES SUR MEUSE", "libell_d_acheminement": "OURCHES SUR MEUSE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55396"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4484411de44c52b786c975a547dcccbb24e7896", "fields": {"nom_de_la_commune": "PAGNY SUR MEUSE", "libell_d_acheminement": "PAGNY SUR MEUSE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55398"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f3253e5c64c5f76a24a22d614b13bb6bc20b93b", "fields": {"nom_de_la_commune": "PAREID", "libell_d_acheminement": "PAREID", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55399"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d9d7340bfdf9a18731e51323d45c63ed05978e", "fields": {"nom_de_la_commune": "RANZIERES", "libell_d_acheminement": "RANZIERES", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55415"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8428151db2d2d3e6f47941437edbb48832d60e", "fields": {"nom_de_la_commune": "REGNEVILLE SUR MEUSE", "libell_d_acheminement": "REGNEVILLE SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55422"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bc589acae68eb5f15f6795848529a758fd9697", "fields": {"nom_de_la_commune": "ST LAURENT SUR OTHAIN", "libell_d_acheminement": "ST LAURENT SUR OTHAIN", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55461"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52c3f1373c60bf88f9e70160eea4b7e7b3499fd", "fields": {"nom_de_la_commune": "SAMPIGNY", "libell_d_acheminement": "SAMPIGNY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55467"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd416bd1e1700bb0449b26c05e63945a761724cb", "fields": {"nom_de_la_commune": "SAULMORY ET VILLEFRANCHE", "libell_d_acheminement": "SAULMORY ET VILLEFRANCHE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55471"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6708c65da379b1969d598a993339faa32cf4e886", "fields": {"nom_de_la_commune": "SAULVAUX", "libell_d_acheminement": "SAULVAUX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55472"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5882a1f074fed9e4ba0eb28cad4c7ddd595fbfee", "fields": {"nom_de_la_commune": "SAUVOY", "libell_d_acheminement": "SAUVOY", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55475"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7434ca076000af64fabe51bd36906de71eb6fd8", "fields": {"nom_de_la_commune": "SENONCOURT LES MAUJOUY", "libell_d_acheminement": "SENONCOURT LES MAUJOUY", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55482"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14dc2d455903052d08adf77c35631e72dca545c", "fields": {"nom_de_la_commune": "SEUZEY", "libell_d_acheminement": "SEUZEY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55487"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1317decd568714c570a2b1a3bffcdc589977c264", "fields": {"nom_de_la_commune": "SILMONT", "libell_d_acheminement": "SILMONT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55488"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54dd1a8886d7efbedd83414e36f1a16da9f0b331", "fields": {"nom_de_la_commune": "SOMMEILLES", "libell_d_acheminement": "SOMMEILLES", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55493"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5901531ebd3393211afd8de1e329b9ec4b2b76", "fields": {"nom_de_la_commune": "SOUILLY", "libell_d_acheminement": "SOUILLY", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55498"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf455bd1c5ff7a1d226f16952705714c5db4975", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "OLLIERES", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68283c5d32285d13088112424687c3f16595174", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "RECHICOURT", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2692461405cd4b3ad9bb6c9e92a1bc01045966", "fields": {"nom_de_la_commune": "THIERVILLE SUR MEUSE", "libell_d_acheminement": "THIERVILLE SUR MEUSE", "code_postal": "55840", "coordonnees_gps": [49.1720804577, 5.33823408052], "code_commune_insee": "55505"}, "geometry": {"type": "Point", "coordinates": [5.33823408052, 49.1720804577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89ac8f3514f8bb8612b0b67e732322839b9dbcc4", "fields": {"nom_de_la_commune": "TREVERAY", "libell_d_acheminement": "TREVERAY", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55516"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7482a34398a47258343a79e4b214b2dbdd3ff409", "fields": {"nom_de_la_commune": "TRONVILLE EN BARROIS", "libell_d_acheminement": "TRONVILLE EN BARROIS", "code_postal": "55310", "coordonnees_gps": [48.7201703913, 5.27885278256], "code_commune_insee": "55519"}, "geometry": {"type": "Point", "coordinates": [5.27885278256, 48.7201703913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf182bf5a82942b231cefb4a2676e2b4dbf46454", "fields": {"nom_de_la_commune": "VARNEVILLE", "libell_d_acheminement": "VARNEVILLE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55528"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b16d5b547c15aa4a4ca7b6fa260ed7c85ec60f1", "fields": {"nom_de_la_commune": "VALBOIS", "libell_d_acheminement": "VALBOIS", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55530"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "868f2da765bc87d2eb75387ea9cd3da57eb93c10", "fields": {"nom_de_la_commune": "VAVINCOURT", "libell_d_acheminement": "VAVINCOURT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55541"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8689fb608d450d2427270272d5b8d099bfdee6d", "fields": {"nom_de_la_commune": "VERY", "libell_d_acheminement": "VERY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55549"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0558bcd4647733ee2d718a32d2a54bca35eb2480", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "CREUE", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d45076ae882bda38ea3c271690929ab679afaa1c", "fields": {"nom_de_la_commune": "VIGNOT", "libell_d_acheminement": "VIGNOT", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55553"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6458b4dc352cc9330a9ceb287842c72c584003cb", "fields": {"nom_de_la_commune": "VILLERS DEVANT DUN", "libell_d_acheminement": "VILLERS DEVANT DUN", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55561"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f056fc2ae8cb2ff5f8f28b819d429eaefea40160", "fields": {"nom_de_la_commune": "VILLERS SOUS PAREID", "libell_d_acheminement": "VILLERS SOUS PAREID", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55565"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82ddd2748c42755519a464494102db0dfddf753", "fields": {"nom_de_la_commune": "VOID VACON", "libell_d_acheminement": "VOID VACON", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55573"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804827ff788f35afdd90e0e5bc6bf890bea3c155", "fields": {"nom_de_la_commune": "WARCQ", "libell_d_acheminement": "WARCQ", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55578"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f29e90be17980f35d10227b012c06d1ec854c92", "fields": {"nom_de_la_commune": "WISEPPE", "libell_d_acheminement": "WISEPPE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55582"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c47d6c02f731df8abdf439fadb4d3b6f4674e77", "fields": {"nom_de_la_commune": "BAUD", "libell_d_acheminement": "BAUD", "code_postal": "56150", "coordonnees_gps": [47.8954786966, -3.01425366823], "code_commune_insee": "56010"}, "geometry": {"type": "Point", "coordinates": [-3.01425366823, 47.8954786966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5835702c885b99d6e962223edccd673b10ff94ff", "fields": {"nom_de_la_commune": "BELZ", "libell_d_acheminement": "BELZ", "code_postal": "56550", "coordonnees_gps": [47.6912476193, -3.11969109738], "code_commune_insee": "56013"}, "geometry": {"type": "Point", "coordinates": [-3.11969109738, 47.6912476193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd46f0680fc23ee81bd08a1d7e69b9545ce463d", "fields": {"nom_de_la_commune": "BIEUZY", "libell_d_acheminement": "BIEUZY LES EAUX", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56016"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10995a42a4b79d04b5a9aac2433fcdab106740e1", "fields": {"nom_de_la_commune": "BILLIO", "libell_d_acheminement": "BILLIO", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56019"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "291e623915797d0a3397e10967859708fee6cd98", "fields": {"nom_de_la_commune": "LE CROISTY", "libell_d_acheminement": "LE CROISTY", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56048"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e9b0ec38086143b12fa94be05f253fbdd3e95d", "fields": {"nom_de_la_commune": "CRUGUEL", "libell_d_acheminement": "CRUGUEL", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56051"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c35dd8c77e9b77a46a51c39d321d955f4d86bcc", "fields": {"nom_de_la_commune": "ELVEN", "libell_d_acheminement": "ELVEN", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56053"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1eea65441e955ce066de8a660d0b10b4d8b9111", "fields": {"nom_de_la_commune": "ERDEVEN", "libell_d_acheminement": "ERDEVEN", "code_postal": "56410", "coordonnees_gps": [47.6381835411, -3.15894216242], "code_commune_insee": "56054"}, "geometry": {"type": "Point", "coordinates": [-3.15894216242, 47.6381835411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbe89b8e5a1dd73dd596d5a7b15a7e12c567507", "fields": {"nom_de_la_commune": "LES FOUGERETS", "libell_d_acheminement": "LES FOUGERETS", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56060"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbef93f52196f5e11925cea0117e45f0e6bd6c2b", "fields": {"nom_de_la_commune": "GAVRES", "libell_d_acheminement": "GAVRES", "code_postal": "56680", "coordonnees_gps": [47.6926427403, -3.24050091087], "code_commune_insee": "56062"}, "geometry": {"type": "Point", "coordinates": [-3.24050091087, 47.6926427403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7016082dca1dd498ba907b1c2815a844f36c23", "fields": {"nom_de_la_commune": "GLENAC", "libell_d_acheminement": "GLENAC", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56064"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ef26bcb7281cda64d925bcfb5ecf931feccc9c9", "fields": {"nom_de_la_commune": "LA GREE ST LAURENT", "libell_d_acheminement": "LA GREE ST LAURENT", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56068"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab57b5fa3b3d74e37b01663d5dd2186f5441e00d", "fields": {"nom_de_la_commune": "GROIX", "libell_d_acheminement": "GROIX", "code_postal": "56590", "coordonnees_gps": [47.6370202465, -3.46482880209], "code_commune_insee": "56069"}, "geometry": {"type": "Point", "coordinates": [-3.46482880209, 47.6370202465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f9944e34d71381eeca4a4d46d059977f2c88bf", "fields": {"nom_de_la_commune": "ILE D ARZ", "libell_d_acheminement": "ILE D ARZ", "code_postal": "56840", "coordonnees_gps": [47.5911933855, -2.80053287021], "code_commune_insee": "56088"}, "geometry": {"type": "Point", "coordinates": [-2.80053287021, 47.5911933855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39fe4f646149632f9a0f83fda42fae91e537538", "fields": {"nom_de_la_commune": "LANESTER", "libell_d_acheminement": "LANESTER", "code_postal": "56600", "coordonnees_gps": [47.7691727213, -3.32698527026], "code_commune_insee": "56098"}, "geometry": {"type": "Point", "coordinates": [-3.32698527026, 47.7691727213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c44a1aeb0e39b51481128bb721160ba27de3824", "fields": {"nom_de_la_commune": "LANGUIDIC", "libell_d_acheminement": "LANGUIDIC", "code_postal": "56440", "coordonnees_gps": [47.8370193427, -3.1480293668], "code_commune_insee": "56101"}, "geometry": {"type": "Point", "coordinates": [-3.1480293668, 47.8370193427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdcd943d9a64bc8cbe9fc573b45beb9200a823c", "fields": {"nom_de_la_commune": "LANOUEE", "libell_d_acheminement": "LANOUEE", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56102"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ffb97440d0b75f3ad6730de5c011f4d5e9547b", "fields": {"nom_de_la_commune": "LANVAUDAN", "libell_d_acheminement": "LANVAUDAN", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56104"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f599353f5219f65f9933951fb8ff6e687a83b0", "fields": {"nom_de_la_commune": "LANVENEGEN", "libell_d_acheminement": "LANVENEGEN", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56105"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0360d6da2a1ba7dc1d63f1a4dd6cafe26af8512c", "fields": {"nom_de_la_commune": "LARRE", "libell_d_acheminement": "LARRE", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56108"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adacef86363a88942af87f9107bd9792b264d74", "fields": {"nom_de_la_commune": "LAUZACH", "libell_d_acheminement": "LAUZACH", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56109"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282a9201a4ec6c08e437dddf16edb8cb45688663", "fields": {"nom_de_la_commune": "LIGNOL", "libell_d_acheminement": "LIGNOL", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56110"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4653cd1d0b70aba587b8f2d361b2d8e3644141", "fields": {"nom_de_la_commune": "LIMERZEL", "libell_d_acheminement": "LIMERZEL", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56111"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f33c3f885470a0c7244ddc28877defb45f533d", "fields": {"nom_de_la_commune": "LOCMARIA GRAND CHAMP", "libell_d_acheminement": "LOCMARIA GRAND CHAMP", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56115"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee1c9e9ae71c4fbea29dd0d28e31132fa3bf77d", "fields": {"nom_de_la_commune": "LORIENT", "libell_d_acheminement": "LORIENT", "code_postal": "56100", "coordonnees_gps": [47.7501619572, -3.37871159231], "code_commune_insee": "56121"}, "geometry": {"type": "Point", "coordinates": [-3.37871159231, 47.7501619572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee073f82c25dc2bb7c7da418e16c1f4c456a6675", "fields": {"nom_de_la_commune": "MALGUENAC", "libell_d_acheminement": "MALGUENAC", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56125"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc8d4ce77d2e210d5df91771065f0b683ddfa3c", "fields": {"nom_de_la_commune": "MAURON", "libell_d_acheminement": "MAURON", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56127"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288b630526e6a6f6b143597a299e9eb4e6d385bd", "fields": {"nom_de_la_commune": "MERLEVENEZ", "libell_d_acheminement": "MERLEVENEZ", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56130"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01af22feecd2b14f984d1580b07e06ca84ebc2a7", "fields": {"nom_de_la_commune": "MISSIRIAC", "libell_d_acheminement": "MISSIRIAC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56133"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3dd61fa9a9b64528dba3f1a5ad95828fb7fc51", "fields": {"nom_de_la_commune": "MOLAC", "libell_d_acheminement": "MOLAC", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56135"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96d5268613cc23224db123a511433715d7a0b791", "fields": {"nom_de_la_commune": "MOREAC", "libell_d_acheminement": "MOREAC", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56140"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a018d22fb56e4ede8ef9943d25dee27a4a6a56d0", "fields": {"code_postal": "56500", "code_commune_insee": "56144", "libell_d_acheminement": "EVELLYS", "ligne_5": "MOUSTOIR REMUNGOL", "nom_de_la_commune": "EVELLYS", "coordonnees_gps": [47.9163628401, -2.81404432498]}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5358601e22db8667a05fdd7bcc43bfbfa5faf19", "fields": {"nom_de_la_commune": "NOYAL MUZILLAC", "libell_d_acheminement": "NOYAL MUZILLAC", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56149"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b340b6ac290e553afbebca2b2cd3910030d27c8", "fields": {"nom_de_la_commune": "COULAURES", "libell_d_acheminement": "COULAURES", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24137"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62d7818a950ef7597b062af1225d17df0fd9180", "fields": {"nom_de_la_commune": "COULOUNIEIX CHAMIERS", "libell_d_acheminement": "COULOUNIEIX CHAMIERS", "code_postal": "24660", "coordonnees_gps": [45.1436833144, 0.700878346896], "code_commune_insee": "24138"}, "geometry": {"type": "Point", "coordinates": [0.700878346896, 45.1436833144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c842a273aa9daabaf00120bc9bd621edeeb6b40", "fields": {"code_postal": "24220", "code_commune_insee": "24142", "libell_d_acheminement": "COUX ET BIGAROQUE MOUZENS", "ligne_5": "MOUZENS", "nom_de_la_commune": "COUX ET BIGAROQUE MOUZENS", "coordonnees_gps": [44.8620938177, 1.0656904068]}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8998cf2c2540e872c8281feb9616e0cc26468a4", "fields": {"nom_de_la_commune": "CUNEGES", "libell_d_acheminement": "CUNEGES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24148"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549b9e195f47610a4d8cbd40f2cf41c8dfe84f68", "fields": {"nom_de_la_commune": "ECHOURGNAC", "libell_d_acheminement": "ECHOURGNAC", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24159"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9d3e3c5d8e1c3fce0d308741c42b314781c335", "fields": {"nom_de_la_commune": "ETOUARS", "libell_d_acheminement": "ETOUARS", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24163"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21dc01cbefbe6d5c5b9d5ab4160c2461b468d551", "fields": {"nom_de_la_commune": "EYVIRAT", "libell_d_acheminement": "EYVIRAT", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24170"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44003b6177fcd50012a8e57ea5f2e1e265123ee4", "fields": {"nom_de_la_commune": "LES FARGES", "libell_d_acheminement": "LES FARGES", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24175"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d699c58309f9db8ece9173284e3f00c811b9e9f3", "fields": {"nom_de_la_commune": "FLAUGEAC", "libell_d_acheminement": "FLAUGEAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24181"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6ee2d0cd7fa94249d54c39f31cb30ce034470c", "fields": {"nom_de_la_commune": "LE FLEIX", "libell_d_acheminement": "LE FLEIX", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24182"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d65d9a07177a20b81e14c6ef12d1e7394a9fb9f", "fields": {"nom_de_la_commune": "FOSSEMAGNE", "libell_d_acheminement": "FOSSEMAGNE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24188"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca42f26d9f51136ffc08d3f9f8adaa4c8937ca8", "fields": {"nom_de_la_commune": "FOUGUEYROLLES", "libell_d_acheminement": "FOUGUEYROLLES", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "24189"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9502b7366848bf9e779bdc20315cf1b8de993fa", "fields": {"nom_de_la_commune": "GRANGES D ANS", "libell_d_acheminement": "GRANGES D ANS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24202"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b952f9458eefe923bc6842b401dd6c5ec28963a", "fields": {"nom_de_la_commune": "LES GRAULGES", "libell_d_acheminement": "LES GRAULGES", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24203"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda0ed519136481c55ebd586a488b6725191197a", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24204"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e600502174e14f842df8fd038df1fb000206cf3f", "fields": {"nom_de_la_commune": "HAUTEFAYE", "libell_d_acheminement": "HAUTEFAYE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24209"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91cdf47f131b7bf5696561fa2cc21a935d939014", "fields": {"nom_de_la_commune": "LARZAC", "libell_d_acheminement": "LARZAC", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24230"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b29c72f9588bd1f98acf40588dd5018073c409e", "fields": {"nom_de_la_commune": "LAVEYSSIERE", "libell_d_acheminement": "LAVEYSSIERE", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24233"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f469a5da6dcc898bb9bb835ca3c456815d3a06f", "fields": {"nom_de_la_commune": "LIORAC SUR LOUYRE", "libell_d_acheminement": "LIORAC SUR LOUYRE", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24242"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7efa656ced471b775d682e785d90b038722916", "fields": {"nom_de_la_commune": "LOLME", "libell_d_acheminement": "LOLME", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24244"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4394708bb17959f3c0dc919c0322b9bda5c2a61", "fields": {"nom_de_la_commune": "MARNAC", "libell_d_acheminement": "MARNAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24254"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ba4358b6938a3f07ea8d4c3c549db276a22bab", "fields": {"nom_de_la_commune": "MARSALES", "libell_d_acheminement": "MARSALES", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24257"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ae007a1db8910e5aa6cd030cb08831d3757bc3", "fields": {"nom_de_la_commune": "MAYAC", "libell_d_acheminement": "MAYAC", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24262"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394df309e86d263479a2809de9b04078391b1720", "fields": {"nom_de_la_commune": "MOLIERES", "libell_d_acheminement": "MOLIERES", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24273"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afafc045d0ff03961e97a7ba4046d07b1ecfe860", "fields": {"nom_de_la_commune": "MONESTIER", "libell_d_acheminement": "MONESTIER", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24276"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebab78a4527cdd3d6daf993cac544fc8fb74d0f", "fields": {"nom_de_la_commune": "MONMADALES", "libell_d_acheminement": "MONMADALES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24278"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1860856b1497aeffa3c06a2f78c557bfbd4f307", "fields": {"nom_de_la_commune": "MONTIGNAC", "libell_d_acheminement": "MONTIGNAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24291"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aeb343fd640cbfe0603c800814fe8517ab45c2", "fields": {"nom_de_la_commune": "NABIRAT", "libell_d_acheminement": "NABIRAT", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24300"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6b0c77c86c2a560b8088a333c658f20b377bf6", "fields": {"nom_de_la_commune": "NONTRON", "libell_d_acheminement": "NONTRON", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24311"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026fcdde5330c8b1d4004b2464aa7400b19b4a26", "fields": {"nom_de_la_commune": "ORLIAGUET", "libell_d_acheminement": "ORLIAGUET", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24314"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4917447f77acac327d9fb3ea60e6defe594ff160", "fields": {"nom_de_la_commune": "PAZAYAC", "libell_d_acheminement": "PAZAYAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24321"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6f70bf2a2aac8e777591b27951c33081f088be", "fields": {"nom_de_la_commune": "PEYRILLAC ET MILLAC", "libell_d_acheminement": "PEYRILLAC ET MILLAC", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24325"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09b4d1c2801f237f97bf7b9e2d24f2db17af8fd", "fields": {"nom_de_la_commune": "PEZULS", "libell_d_acheminement": "PEZULS", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24327"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56b015e9d873b4bbf55f0ef2b5bb304bef875e9", "fields": {"nom_de_la_commune": "POMPORT", "libell_d_acheminement": "POMPORT", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24331"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ef3a69fc0b5ffa9ca79ada4c35d40deecf8986", "fields": {"nom_de_la_commune": "PRESSIGNAC VICQ", "libell_d_acheminement": "PRESSIGNAC VICQ", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24338"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3b3ea28aa3ca6e83f90bf0684120b8050cb1cd7", "fields": {"nom_de_la_commune": "QUINSAC", "libell_d_acheminement": "QUINSAC", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24346"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9fb9885ca80aeede0a0797b0b503d129ed03f2", "fields": {"nom_de_la_commune": "LA ROCHE CHALAIS", "libell_d_acheminement": "LA ROCHE CHALAIS", "code_postal": "24490", "coordonnees_gps": [45.135601927, 0.0544832948908], "code_commune_insee": "24354"}, "geometry": {"type": "Point", "coordinates": [0.0544832948908, 45.135601927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d265a406623734495334b0d247a850d20a7b47", "fields": {"nom_de_la_commune": "ST AMAND DE VERGT", "libell_d_acheminement": "ST AMAND DE VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24365"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b651c85eb123b85c669344865f0f9c267589a5", "fields": {"nom_de_la_commune": "ST ANDRE D ALLAS", "libell_d_acheminement": "ST ANDRE D ALLAS", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24366"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1043b2f8b9e69e50bd49e06ca89761ffe28eef2c", "fields": {"nom_de_la_commune": "ST ANDRE DE DOUBLE", "libell_d_acheminement": "ST ANDRE DE DOUBLE", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24367"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88d1b96c476815640f93391325e38b3b61db8ae", "fields": {"nom_de_la_commune": "ST ANTOINE CUMOND", "libell_d_acheminement": "ST ANTOINE CUMOND", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24368"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebcf48cc1eb58dfb29e7430ac0bd73783bee6cdd", "fields": {"nom_de_la_commune": "ST AQUILIN", "libell_d_acheminement": "ST AQUILIN", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24371"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42fccc130b7dea7097eebaa607f76c1436b827b", "fields": {"nom_de_la_commune": "ST CHAMASSY", "libell_d_acheminement": "ST CHAMASSY", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24388"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76cf92ccf7b04adb25716de69dcd8badeb6a2876", "fields": {"nom_de_la_commune": "ST FELIX DE BOURDEILLES", "libell_d_acheminement": "ST FELIX DE BOURDEILLES", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24403"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb49faf920322d5650b1bd983a3edf1802e20fa", "fields": {"nom_de_la_commune": "ST FELIX DE REILLAC ET MORTEMART", "libell_d_acheminement": "ST FELIX DE REILLAC ET MORTEMART", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24404"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea7bad797fe984ae5a4eba01910595b3b076795", "fields": {"nom_de_la_commune": "ST GENIES", "libell_d_acheminement": "ST GENIES", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24412"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccb1ac6127574ae86eab5eb1f88367272931c19", "fields": {"nom_de_la_commune": "ST JULIEN D EYMET", "libell_d_acheminement": "ST JULIEN D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24433"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15da4a45c86ff7dc68e85a9a5b8b514df0639ed", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24434"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4fd4372c768c5f9cd3226f6c3ca8571a18de794", "fields": {"nom_de_la_commune": "STE MARIE DE CHIGNAC", "libell_d_acheminement": "STE MARIE DE CHIGNAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24447"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206e55093e600544c6b4f932b05f01c33005f5b1", "fields": {"nom_de_la_commune": "ST MARTIAL D ARTENSET", "libell_d_acheminement": "ST MARTIAL D ARTENSET", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24449"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17519255171775b1d04f4f17c07c278449182d0d", "fields": {"nom_de_la_commune": "ST MARTIN DE FRESSENGEAS", "libell_d_acheminement": "ST MARTIN DE FRESSENGEAS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24453"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b55061e7fece795d23f4e708222d11dceb078ef", "fields": {"nom_de_la_commune": "ST MEDARD DE MUSSIDAN", "libell_d_acheminement": "ST MEDARD DE MUSSIDAN", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24462"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425dbffdcd3526137e1326a2687abeeb386a4ed8", "fields": {"nom_de_la_commune": "STE MONDANE", "libell_d_acheminement": "STE MONDANE", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24470"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c46a5146f0fc05cd45baa7431d0cbe45ed76cb1", "fields": {"nom_de_la_commune": "STE ORSE", "libell_d_acheminement": "STE ORSE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24473"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7caa85ef4aafae9754b37d60fe98417988eab4f8", "fields": {"nom_de_la_commune": "ST PAUL LIZONNE", "libell_d_acheminement": "ST PAUL LIZONNE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24482"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2115c8ccbb25292758bd94e23980cca9c3a2ba0b", "fields": {"nom_de_la_commune": "ST PERDOUX", "libell_d_acheminement": "ST PERDOUX", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24483"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0463940f168c30441664fa698ac492ce1cb3c246", "fields": {"nom_de_la_commune": "ST PIERRE DE COLE", "libell_d_acheminement": "ST PIERRE DE COLE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24485"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33906807ed0b7ef327e6c27ede5507cf8c9c9fa8", "fields": {"nom_de_la_commune": "ST PRIVAT DES PRES", "libell_d_acheminement": "ST PRIVAT DES PRES", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24490"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f3478aaf39bc82b8809f7f2aeb21bda420f987", "fields": {"nom_de_la_commune": "ST ROMAIN DE MONPAZIER", "libell_d_acheminement": "ST ROMAIN DE MONPAZIER", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24495"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ab935af47a5bf3215ddbbdc54e9a00cdf93704", "fields": {"nom_de_la_commune": "ST SAUD LACOUSSIERE", "libell_d_acheminement": "ST SAUD LACOUSSIERE", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24498"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda3d2b6e48c5734eafafddd95cf56e6ad8d0489", "fields": {"nom_de_la_commune": "ST SAUVEUR LALANDE", "libell_d_acheminement": "ST SAUVEUR LALANDE", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24500"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745e87caf9a5127d1903408813b10517dcdba9aa", "fields": {"nom_de_la_commune": "SALAGNAC", "libell_d_acheminement": "SALAGNAC", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24515"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b283dcba367e8c6676005d446377a9cc0095e7f3", "fields": {"code_postal": "24160", "code_commune_insee": "24515", "libell_d_acheminement": "SALAGNAC", "ligne_5": "CLAIRVIVRE", "nom_de_la_commune": "SALAGNAC", "coordonnees_gps": [45.3309222915, 1.08220119704]}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b25b0ce0d9dde837df62458365e27cf3bcdd42", "fields": {"nom_de_la_commune": "SARLANDE", "libell_d_acheminement": "SARLANDE", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24519"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f219d5a1d7f579121db6594f22eef2b963be5f", "fields": {"nom_de_la_commune": "SARLAT LA CANEDA", "libell_d_acheminement": "SARLAT LA CANEDA", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24520"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a1edf43ee4445bbafcda97246e6ee008dd068e", "fields": {"nom_de_la_commune": "SAVIGNAC DE MIREMONT", "libell_d_acheminement": "SAVIGNAC DE MIREMONT", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24524"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bbc7ecd52db761b48a639e389f628ff6ed41c8", "fields": {"nom_de_la_commune": "SCEAU ST ANGEL", "libell_d_acheminement": "SCEAU ST ANGEL", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24528"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b8602b81bb0b951fda1c1e3893a0e387fcf669b", "fields": {"nom_de_la_commune": "SIORAC DE RIBERAC", "libell_d_acheminement": "SIORAC DE RIBERAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24537"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f12e76bf420bf9a3b9654114add9d6c52d3e0", "fields": {"nom_de_la_commune": "TERRASSON LAVILLEDIEU", "libell_d_acheminement": "TERRASSON LAVILLEDIEU", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24547"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcfc0967a8772d68dd21de69341c6b5c90e13ce7", "fields": {"code_postal": "24240", "code_commune_insee": "24549", "libell_d_acheminement": "THENAC", "ligne_5": "MONBOS", "nom_de_la_commune": "THENAC", "coordonnees_gps": [44.7790390603, 0.38999404584]}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce07d1b262c034bb3fdb8252624086a87cdcce55", "fields": {"nom_de_la_commune": "THENON", "libell_d_acheminement": "THENON", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24550"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd436667fc9b3a19fc8a4fb50c6df7887aca4c6e", "fields": {"nom_de_la_commune": "THIVIERS", "libell_d_acheminement": "THIVIERS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24551"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8599fd1cb4125305e942aaf673cacfa6d22f36", "fields": {"nom_de_la_commune": "TOURTOIRAC", "libell_d_acheminement": "TOURTOIRAC", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24555"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3da932b02b23d5c5fad4a14609ea1995443502", "fields": {"nom_de_la_commune": "TRELISSAC", "libell_d_acheminement": "TRELISSAC", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24557"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681e678c91d58166e78c444633f1d7a76b0e492a", "fields": {"nom_de_la_commune": "TURSAC", "libell_d_acheminement": "TURSAC", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24559"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df749b7c8f007f77b6d6e953a9faa8f1edfdba95", "fields": {"nom_de_la_commune": "VALOJOULX", "libell_d_acheminement": "VALOJOULX", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24563"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb5338b7fcd1162cd8aa28e09e95e194652249c", "fields": {"nom_de_la_commune": "VENDOIRE", "libell_d_acheminement": "VENDOIRE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24569"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2380a3b7a0ee16ee056538d7a1b6d1c3142397", "fields": {"nom_de_la_commune": "VERDON", "libell_d_acheminement": "VERDON", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24570"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de21e8858386dfcc835ee86f6f8927957e9dc797", "fields": {"nom_de_la_commune": "VEYRINES DE VERGT", "libell_d_acheminement": "VEYRINES DE VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24576"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6abaf7beda39f0ad6b21a20613d15fffa47c1c", "fields": {"nom_de_la_commune": "VILLETOUREIX", "libell_d_acheminement": "VILLETOUREIX", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24586"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea649e150142a872ae51ce975d33093b88250a3", "fields": {"nom_de_la_commune": "ABBANS DESSOUS", "libell_d_acheminement": "ABBANS DESSOUS", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25001"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721e9ee3dab8cfd3c7644a057b3dd06b0cba5b24", "fields": {"nom_de_la_commune": "ABBENANS", "libell_d_acheminement": "ABBENANS", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25003"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc6a512882dfe07178d6823b3aa361631e6a8dd", "fields": {"nom_de_la_commune": "ACCOLANS", "libell_d_acheminement": "ACCOLANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25005"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1d8ecd02cf725df6b07500eb28ff820148dde9", "fields": {"nom_de_la_commune": "LES ALLIES", "libell_d_acheminement": "LES ALLIES", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25012"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73ce3e89699bc1babb5439222c993eb141ecffff", "fields": {"nom_de_la_commune": "ANTEUIL", "libell_d_acheminement": "ANTEUIL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25018"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236999bfc660741cb71fdb6d6c59bad191624032", "fields": {"code_postal": "25340", "code_commune_insee": "25018", "libell_d_acheminement": "ANTEUIL", "ligne_5": "GLAINANS", "nom_de_la_commune": "ANTEUIL", "coordonnees_gps": [47.4070964516, 6.49278525821]}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bbb3a6a003f52610b4500a59a41137e17000cb", "fields": {"code_postal": "25340", "code_commune_insee": "25018", "libell_d_acheminement": "ANTEUIL", "ligne_5": "TOURNEDOZ", "nom_de_la_commune": "ANTEUIL", "coordonnees_gps": [47.4070964516, 6.49278525821]}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11740caf2fc7fe584f9a5311f3eac0e037baa4bf", "fields": {"nom_de_la_commune": "AUTECHAUX", "libell_d_acheminement": "AUTECHAUX", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25032"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356be39cd0e57981597c7764a1742eb0fed2982d", "fields": {"nom_de_la_commune": "AVANNE AVENEY", "libell_d_acheminement": "AVANNE AVENEY", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25036"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ec045c3ce03fa52a4d8fa7cc815cd564e89020", "fields": {"nom_de_la_commune": "LE BARBOUX", "libell_d_acheminement": "LE BARBOUX", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25042"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f225805d28d944dd2c71a5ae0d4b01fd3833c5f", "fields": {"nom_de_la_commune": "BARTHERANS", "libell_d_acheminement": "BARTHERANS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25044"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc7d55a2b4f6f7de073931e4908cb18430eb672", "fields": {"code_postal": "25110", "code_commune_insee": "25047", "libell_d_acheminement": "BAUME LES DAMES", "ligne_5": "CHAMPVANS LES BAUME", "nom_de_la_commune": "BAUME LES DAMES", "coordonnees_gps": [47.3533733684, 6.36786795727]}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ffea9a94153db0cbe1266195a690e4b84f8a14", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25052"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7980af00d9a13cf63a14e678db2f7d207dc8d76c", "fields": {"nom_de_la_commune": "BELVOIR", "libell_d_acheminement": "BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25053"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b574f14a9ea4a93a97b39a824c2a37ddbc6e4ff7", "fields": {"nom_de_la_commune": "BEUTAL", "libell_d_acheminement": "BEUTAL", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25059"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804c1da4ec1b29fa6ff410f7a20c2368cccbcb7f", "fields": {"nom_de_la_commune": "BLARIANS", "libell_d_acheminement": "BLARIANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25065"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093945cbf42d9e4761387950b227c76d82a918f3", "fields": {"nom_de_la_commune": "BLUSSANGEAUX", "libell_d_acheminement": "BLUSSANGEAUX", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25066"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd56265d6d889a7702b14b46a05000317ad5417", "fields": {"nom_de_la_commune": "BULLE", "libell_d_acheminement": "BULLE", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25100"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0711312ebaf831e667ed4501ab09f10c47bb3c8d", "fields": {"code_postal": "25170", "code_commune_insee": "25101", "libell_d_acheminement": "BURGILLE", "ligne_5": "CHAZOY", "nom_de_la_commune": "BURGILLE", "coordonnees_gps": [47.2664378485, 5.83042087003]}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fd57a4f84b37a716df69531889624184822634", "fields": {"nom_de_la_commune": "BURNEVILLERS", "libell_d_acheminement": "BURNEVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25102"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba09d47d4f8fa23306ff888342ec126f4a33b5d", "fields": {"nom_de_la_commune": "BOURGEAUVILLE", "libell_d_acheminement": "BOURGEAUVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14091"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b8e1e157e32fddab13f91093b031678379709c", "fields": {"nom_de_la_commune": "BRETTEVILLE L ORGUEILLEUSE", "libell_d_acheminement": "BRETTEVILLE L ORGUEILLEUSE", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14098"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ce4fea263e399aeda0b7dd2c8357664a22b17d", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR DIVES", "libell_d_acheminement": "BRETTEVILLE SUR DIVES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14099"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b06ddcb0fac0db4faf29e682e0096bb1bf9e11e", "fields": {"nom_de_la_commune": "LE BREVEDENT", "libell_d_acheminement": "LE BREVEDENT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14104"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f9ff10c36c55cbf8035c0152fb8dd1838ecddf", "fields": {"nom_de_la_commune": "BRUCOURT", "libell_d_acheminement": "BRUCOURT", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14110"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94243afda16a94a1058d4ed997058c4e18b9e27e", "fields": {"nom_de_la_commune": "CAMBREMER", "libell_d_acheminement": "CAMBREMER", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14126"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "190a2995ac50ad248dc2b679bd8bd1d05ade8823", "fields": {"code_postal": "14340", "code_commune_insee": "14126", "libell_d_acheminement": "CAMBREMER", "ligne_5": "GRANDOUET", "nom_de_la_commune": "CAMBREMER", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cca6d43e87f7e300c9912d66b007320d3495bc0", "fields": {"nom_de_la_commune": "CAMPIGNY", "libell_d_acheminement": "CAMPIGNY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14130"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea660d4b6f22bd8a0e6a4a92ec305c63d3ebfacc", "fields": {"nom_de_la_commune": "CARPIQUET", "libell_d_acheminement": "CARPIQUET", "code_postal": "14650", "coordonnees_gps": [49.1865854143, -0.450845526758], "code_commune_insee": "14137"}, "geometry": {"type": "Point", "coordinates": [-0.450845526758, 49.1865854143]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee88aa907e14a3ec15d85eba3e353f2f0946977a", "fields": {"nom_de_la_commune": "CINTHEAUX", "libell_d_acheminement": "CINTHEAUX", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14160"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece27676ed77a9ad6c3f97164dc5953e8a16ea01", "fields": {"nom_de_la_commune": "CLARBEC", "libell_d_acheminement": "CLARBEC", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14161"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bff877d86b30d7b553be02ff8cc61d515eab0b7", "fields": {"nom_de_la_commune": "COLLEVILLE MONTGOMERY", "libell_d_acheminement": "COLLEVILLE MONTGOMERY", "code_postal": "14880", "coordonnees_gps": [49.2791350084, -0.312303050081], "code_commune_insee": "14166"}, "geometry": {"type": "Point", "coordinates": [-0.312303050081, 49.2791350084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7b158c4a854cca7c08648dea95605965132cfb", "fields": {"nom_de_la_commune": "COLOMBIERS SUR SEULLES", "libell_d_acheminement": "COLOMBIERS SUR SEULLES", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14169"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f355518dded941621e2828c4500210b54d901f", "fields": {"code_postal": "14770", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "LENAULT", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0dc2ab8c89e2da77b972151160abab4e4979a8d", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14176"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae970350d486642896e8ee502a378c47ab06f126", "fields": {"nom_de_la_commune": "CORDEY", "libell_d_acheminement": "CORDEY", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14180"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "564f12bacc264dab7e6f66823739e0063814a21f", "fields": {"nom_de_la_commune": "COURSEULLES SUR MER", "libell_d_acheminement": "COURSEULLES SUR MER", "code_postal": "14470", "coordonnees_gps": [49.3187007817, -0.465940150296], "code_commune_insee": "14191"}, "geometry": {"type": "Point", "coordinates": [-0.465940150296, 49.3187007817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252501b724539a8a64fdc051c7b97f9a4c01c71d", "fields": {"nom_de_la_commune": "CREPON", "libell_d_acheminement": "CREPON", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14196"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b21702f1813c23d477379f72c259f4c4ba1d50", "fields": {"nom_de_la_commune": "CRICQUEVILLE EN BESSIN", "libell_d_acheminement": "CRICQUEVILLE EN BESSIN", "code_postal": "14450", "coordonnees_gps": [49.3773022601, -1.01912663237], "code_commune_insee": "14204"}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2c071ad8f985aeb2da50726c58d400d39da3ca", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14207"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a24223570b7ce376ff82eccbdfeef90d6fdabc5d", "fields": {"nom_de_la_commune": "DAMBLAINVILLE", "libell_d_acheminement": "DAMBLAINVILLE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14216"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f644daf36727892ae30b9c77c2ae6a90b4b5cfdc", "fields": {"nom_de_la_commune": "DANESTAL", "libell_d_acheminement": "DANESTAL", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14218"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cea8c45ddfe80ec0768d5ff804c6f7c54ef22ca", "fields": {"nom_de_la_commune": "DANVOU LA FERRIERE", "libell_d_acheminement": "DANVOU LA FERRIERE", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14219"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0c991235eba091ec6c1dc7ffd91d39abc95a75", "fields": {"nom_de_la_commune": "DEAUVILLE", "libell_d_acheminement": "DEAUVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14220"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fd96ee3744245f8559607e556998026875de60", "fields": {"nom_de_la_commune": "LE DETROIT", "libell_d_acheminement": "LE DETROIT", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14223"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5b79335a2bc398653a04720051600f8ec19d99", "fields": {"nom_de_la_commune": "DEUX JUMEAUX", "libell_d_acheminement": "DEUX JUMEAUX", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14224"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b61c56832fad967301869f572f64460d4332d9", "fields": {"nom_de_la_commune": "DIVES SUR MER", "libell_d_acheminement": "DIVES SUR MER", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14225"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d0d3b5d98d38fa065fdae8d74a2048156bc2c8", "fields": {"nom_de_la_commune": "BEAUFOUR DRUVAL", "libell_d_acheminement": "BEAUFOUR DRUVAL", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14231"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026acab68a21b472a5457dd3e5d30e27e9c45e4d", "fields": {"nom_de_la_commune": "DUCY STE MARGUERITE", "libell_d_acheminement": "DUCY STE MARGUERITE", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14232"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2952601ea21de0c652649ab58047f7f020c0be7", "fields": {"nom_de_la_commune": "ENGLESQUEVILLE EN AUGE", "libell_d_acheminement": "ENGLESQUEVILLE EN AUGE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14238"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaa501f335cf80534e4fc77a1b29dd878033ddb", "fields": {"nom_de_la_commune": "EPRON", "libell_d_acheminement": "EPRON", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14242"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5cdf64b9d93b4d730710f5eb0189d9f40495c1", "fields": {"nom_de_la_commune": "EQUEMAUVILLE", "libell_d_acheminement": "EQUEMAUVILLE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14243"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea68dec320165caae449124d5cdbf96ff77504", "fields": {"nom_de_la_commune": "ESQUAY NOTRE DAME", "libell_d_acheminement": "ESQUAY NOTRE DAME", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14249"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fef8e65742f74363844bccc0ba69bba0ca793f5", "fields": {"nom_de_la_commune": "ESQUAY SUR SEULLES", "libell_d_acheminement": "ESQUAY SUR SEULLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14250"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce22725ad523138631e96931253cada4266f1f80", "fields": {"nom_de_la_commune": "FIERVILLE BRAY", "libell_d_acheminement": "FIERVILLE BRAY", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14268"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9faa209780a91b9e50f90e1a50eab176378b6059", "fields": {"code_postal": "14190", "code_commune_insee": "14268", "libell_d_acheminement": "FIERVILLE BRAY", "ligne_5": "BRAY LA CAMPAGNE", "nom_de_la_commune": "FIERVILLE BRAY", "coordonnees_gps": [49.0218805149, -0.23188447049]}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417cb2872b405fc6b768d71a553d09c7a8a31a3b", "fields": {"nom_de_la_commune": "FIRFOL", "libell_d_acheminement": "FIRFOL", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14270"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001bb00e5dc9e166994e0f3a8c0683687ff9ec28", "fields": {"nom_de_la_commune": "FONTENAY LE MARMION", "libell_d_acheminement": "FONTENAY LE MARMION", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14277"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131e8e105f0d90511751059ec1c294aff713b747", "fields": {"nom_de_la_commune": "FRESNE LA MERE", "libell_d_acheminement": "FRESNE LA MERE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14289"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159f368c4f409c28324cf660490f23a04754b3f6", "fields": {"nom_de_la_commune": "GARCELLES SECQUEVILLE", "libell_d_acheminement": "GARCELLES SECQUEVILLE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14294"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188ff4436b20119753c3950459d133308974cb22", "fields": {"nom_de_la_commune": "GLOS", "libell_d_acheminement": "GLOS", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14303"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d532afa6fbf057edc6e52b9f2be87891b26a1b8", "fields": {"nom_de_la_commune": "GONNEVILLE SUR MER", "libell_d_acheminement": "GONNEVILLE SUR MER", "code_postal": "14510", "coordonnees_gps": [49.291418226, -0.0438772429905], "code_commune_insee": "14305"}, "geometry": {"type": "Point", "coordinates": [-0.0438772429905, 49.291418226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf7f8d76b6e029197e884bdde02b5ce59eb093e", "fields": {"nom_de_la_commune": "GRANDCHAMP LE CHATEAU", "libell_d_acheminement": "GRANDCHAMP LE CHATEAU", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14313"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85beaf1cb9b8140af4af6a206876a349d3941e25", "fields": {"nom_de_la_commune": "GRANGUES", "libell_d_acheminement": "GRANGUES", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14316"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00ae1349352b458ac30c2cf69175f30b4db74cf", "fields": {"nom_de_la_commune": "HERMIVAL LES VAUX", "libell_d_acheminement": "HERMIVAL LES VAUX", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14326"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ac7806164b1648e7ba879f057925ba5996f86b", "fields": {"nom_de_la_commune": "HIEVILLE", "libell_d_acheminement": "HIEVILLE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14331"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b929f53666b3f99abe02345792bde2ba34d7f9d", "fields": {"code_postal": "14430", "code_commune_insee": "14335", "libell_d_acheminement": "HOTOT EN AUGE", "ligne_5": "BROCOTTES", "nom_de_la_commune": "HOTOT EN AUGE", "coordonnees_gps": [49.2183532057, -0.0305664652154]}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd41076458cdacc82d8324117966f15652b977d9", "fields": {"nom_de_la_commune": "LA HOUBLONNIERE", "libell_d_acheminement": "LA HOUBLONNIERE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14337"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a14e6f3fcd7b9897b0a67b775db407441a44646", "fields": {"nom_de_la_commune": "ISIGNY SUR MER", "libell_d_acheminement": "ISIGNY SUR MER", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14342"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2c4bf6f1d1f47edc19dcab032a3e9a6faee276", "fields": {"nom_de_la_commune": "LES ISLES BARDEL", "libell_d_acheminement": "LES ISLES BARDEL", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14343"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2b5dceda139142ef5d95272ea8be6bdba261f0", "fields": {"nom_de_la_commune": "JORT", "libell_d_acheminement": "JORT", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14345"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c238bb6bfc2ecf97bea5b3173370b9a305a2c841", "fields": {"nom_de_la_commune": "JUVIGNY SUR SEULLES", "libell_d_acheminement": "JUVIGNY SUR SEULLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14348"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76fc43fad57a6de6e1e9d921e1210c7cf119e006", "fields": {"nom_de_la_commune": "LAIZE LA VILLE", "libell_d_acheminement": "LAIZE LA VILLE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14349"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d461c6a3e6c6986d54c548cd5ccd23dc5f1ba14", "fields": {"nom_de_la_commune": "LANDELLES ET COUPIGNY", "libell_d_acheminement": "LANDELLES ET COUPIGNY", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14352"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a89ef0005b465c89218749de066175dd046a31", "fields": {"code_postal": "14380", "code_commune_insee": "14352", "libell_d_acheminement": "LANDELLES ET COUPIGNY", "ligne_5": "ANNEBECQ", "nom_de_la_commune": "LANDELLES ET COUPIGNY", "coordonnees_gps": [48.8544817922, -1.0273831979]}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2dd8e3ae25a9e0be44c9c2856c174f0b0076a2", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LE MESNIL GERMAIN", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fee52ce11cae1f5de08a0bf7ffa1c2ddb0d6bfe", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "CERQUEUX", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35975ad9ff0e6da84ffea1844bac15aa51efe260", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "MEULLES", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b505b79e174352ae5b64b59bb0a92755893c7353", "fields": {"nom_de_la_commune": "MAISONCELLES PELVEY", "libell_d_acheminement": "MAISONCELLES PELVEY", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14389"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0615677de59f3ea770fe2fac38a7993cf19928", "fields": {"nom_de_la_commune": "MAISONCELLES SUR AJON", "libell_d_acheminement": "MAISONCELLES SUR AJON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14390"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56b4e892d9418d5e89b6d886a8aee58baa86e7b", "fields": {"nom_de_la_commune": "LE MANOIR", "libell_d_acheminement": "LE MANOIR", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14400"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6faa0d3d560987561201393b94e4be184c50149c", "fields": {"nom_de_la_commune": "MANVIEUX", "libell_d_acheminement": "MANVIEUX", "code_postal": "14117", "coordonnees_gps": [49.3341466257, -0.646070140255], "code_commune_insee": "14401"}, "geometry": {"type": "Point", "coordinates": [-0.646070140255, 49.3341466257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179d4e80bd8f70c50ef111e332e36a643ec74b8f", "fields": {"nom_de_la_commune": "MARTAINVILLE", "libell_d_acheminement": "MARTAINVILLE", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14404"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d3ad90c0a57ef5744172810ddbd4fb5a3050a5", "fields": {"nom_de_la_commune": "LE MESNIL ROBERT", "libell_d_acheminement": "LE MESNIL ROBERT", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14424"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0100bef53ffbc606663c021cc1f00607d7402382", "fields": {"nom_de_la_commune": "MEUVAINES", "libell_d_acheminement": "MEUVAINES", "code_postal": "14960", "coordonnees_gps": [49.3273918281, -0.583379928435], "code_commune_insee": "14430"}, "geometry": {"type": "Point", "coordinates": [-0.583379928435, 49.3273918281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2662df738f05768bae7b8085713bc0c27996ade2", "fields": {"nom_de_la_commune": "MEZIDON CANON", "libell_d_acheminement": "MEZIDON CANON", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14431"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af2a6ee51310764289a9b84a65e957fff9696c6", "fields": {"nom_de_la_commune": "MONTEILLE", "libell_d_acheminement": "MONTEILLE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14444"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5740e1cc8bd94f3a996036dc275f4020239c64d", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14446"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb56f778ae0b64f05e81802771054d2ceaffb217", "fields": {"nom_de_la_commune": "MONTVIETTE", "libell_d_acheminement": "MONTVIETTE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14450"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86156b1862e980eacfd9bf682dad011dd89c39d8", "fields": {"nom_de_la_commune": "MORTEAUX COULIBOEUF", "libell_d_acheminement": "MORTEAUX COULIBOEUF", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14452"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75c0d7da192eaf829c6bfccada69c0a163221c3", "fields": {"nom_de_la_commune": "LES MOUTIERS EN AUGE", "libell_d_acheminement": "LES MOUTIERS EN AUGE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14457"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9375976b5410f47f88c17d9202dab68f74fb9d", "fields": {"nom_de_la_commune": "MUTRECY", "libell_d_acheminement": "MUTRECY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14461"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5fbe3130151b132cd42a44b379f0d9403ed1d2", "fields": {"nom_de_la_commune": "NEUILLY LA FORET", "libell_d_acheminement": "NEUILLY LA FORET", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14462"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6e9120dc71ac74c5225f73bb335b190de76ae21", "fields": {"nom_de_la_commune": "NOTRE DAME D ESTREES CORBON", "libell_d_acheminement": "NOTRE DAME D ESTREES CORBON", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14474"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7903c946c62b1cc784973da1699cb59aa45cff", "fields": {"nom_de_la_commune": "OSMANVILLE", "libell_d_acheminement": "OSMANVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14480"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6865872e9dffbfd9bc3fa4458d44dc8c218cc81", "fields": {"nom_de_la_commune": "OUEZY", "libell_d_acheminement": "OUEZY", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14482"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997dc67bee5139064310f8aebdfc3facffe0e728", "fields": {"nom_de_la_commune": "OUILLY LE TESSON", "libell_d_acheminement": "OUILLY LE TESSON", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14486"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5f38d45b69b974d8fda9902bcd1a8bfad2eacf", "fields": {"nom_de_la_commune": "PIERREPONT", "libell_d_acheminement": "PIERREPONT", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14502"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a7a722757395f77db61c863db575939d9a08b7", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14504"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc450641c91f956e357583c70afb628b8cd60b1", "fields": {"nom_de_la_commune": "LA POMMERAYE", "libell_d_acheminement": "LA POMMERAYE", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14510"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e313849712b870bb1f88fcc67a18effa1bba7d", "fields": {"nom_de_la_commune": "PONT FARCY", "libell_d_acheminement": "PONT FARCY", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14513"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9186d745d174eec0774535327abaaa4f624f5669", "fields": {"nom_de_la_commune": "PORT EN BESSIN HUPPAIN", "libell_d_acheminement": "PORT EN BESSIN HUPPAIN", "code_postal": "14520", "coordonnees_gps": [49.3400701436, -0.771788294928], "code_commune_insee": "14515"}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85a3041452657ae3d1bbd31d3fcfc0e62fcd4c6", "fields": {"nom_de_la_commune": "RANCHY", "libell_d_acheminement": "RANCHY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14529"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebd2bbcdc0420752c607e6edbb95cd39667b0ae", "fields": {"nom_de_la_commune": "RAPILLY", "libell_d_acheminement": "RAPILLY", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14531"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ac5a3196f5aeb2ce566ef71b4dd292140800af", "fields": {"code_postal": "14740", "code_commune_insee": "14543", "libell_d_acheminement": "ROTS", "ligne_5": "LASSON", "nom_de_la_commune": "ROTS", "coordonnees_gps": [49.2134618013, -0.521360272238]}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59bbff55dd1f3bb7bcc5d8727bc0c58160a32b67", "fields": {"nom_de_la_commune": "ROTS", "libell_d_acheminement": "ROTS", "code_postal": "14980", "coordonnees_gps": [49.2061554595, -0.475359842296], "code_commune_insee": "14543"}, "geometry": {"type": "Point", "coordinates": [-0.475359842296, 49.2061554595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae984fda8d2827d5d651a4a70c01630b4ec7e97f", "fields": {"nom_de_la_commune": "RUBERCY", "libell_d_acheminement": "RUBERCY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14547"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7acbb8c081608f20111b6f83d1e745291367120", "fields": {"nom_de_la_commune": "RUMESNIL", "libell_d_acheminement": "RUMESNIL", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14550"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be42ae30550e8fa527fb6533a4c71958c30852d", "fields": {"nom_de_la_commune": "RYES", "libell_d_acheminement": "RYES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14552"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e39782e9732cc7e5ea921562178b6fd7d01bf58", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14557"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d6cae04b9d75618d633f4eedb129d6c48257d6", "fields": {"nom_de_la_commune": "ST BENOIT D HEBERTOT", "libell_d_acheminement": "ST BENOIT D HEBERTOT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14563"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4209fe5e78aa8c4e5a2d7aab7bd6e3a5c9a0f1f6", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "ST CYR DU RONCERAY", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4670b4ba90520221aea8a1acf6213809aa573db2", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "TORDOUET", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc08053a0e7ad447867266fad5d979e546d0177", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "LA BREVIERE", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c2d9b7586904d2eabbb2976a763cdf430cd145", "fields": {"nom_de_la_commune": "ST GERMAIN LANGOT", "libell_d_acheminement": "ST GERMAIN LANGOT", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14588"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10ae245562f4e857822ce3d0823f237d05ef0e5", "fields": {"nom_de_la_commune": "STE HONORINE DU FAY", "libell_d_acheminement": "STE HONORINE DU FAY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14592"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc89f56b8f0c92996e543359f4a13d7d8240afdf", "fields": {"nom_de_la_commune": "ST JULIEN SUR CALONNE", "libell_d_acheminement": "ST JULIEN SUR CALONNE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14601"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2ea96aa974b127fdae5a04067952569c13a88d", "fields": {"nom_de_la_commune": "ST LAMBERT", "libell_d_acheminement": "ST LAMBERT", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14602"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59df277f2db7b1ead5cd82d58cbe775f3a4cd492", "fields": {"nom_de_la_commune": "ST LOUET SUR SEULLES", "libell_d_acheminement": "ST LOUET SUR SEULLES", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14607"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9513853c21be0541ab80c42b28936967625c5f", "fields": {"nom_de_la_commune": "STE MARGUERITE D ELLE", "libell_d_acheminement": "STE MARGUERITE D ELLE", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14614"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a827405cffbce400d89371113a2677b279fb088a", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33200", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf8500855f1e53eb1edcb1c7c5e18e9ca2759e7", "fields": {"nom_de_la_commune": "BOULIAC", "libell_d_acheminement": "BOULIAC", "code_postal": "33270", "coordonnees_gps": [44.8258167302, -0.513262421066], "code_commune_insee": "33065"}, "geometry": {"type": "Point", "coordinates": [-0.513262421066, 44.8258167302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d49b5516801e191dc14cace6725d0fa111f5bb", "fields": {"nom_de_la_commune": "BRACH", "libell_d_acheminement": "BRACH", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33070"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c12488f615d7b2b195fa140832507ed51b205a", "fields": {"nom_de_la_commune": "BUDOS", "libell_d_acheminement": "BUDOS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33076"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec26657352b1415fb13baf291a44518aed63bcd", "fields": {"nom_de_la_commune": "CABARA", "libell_d_acheminement": "CABARA", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33078"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f9a2a2641b73ec6523b601caf47145c2390a9b", "fields": {"nom_de_la_commune": "CADAUJAC", "libell_d_acheminement": "CADAUJAC", "code_postal": "33140", "coordonnees_gps": [44.7623336559, -0.546471923225], "code_commune_insee": "33080"}, "geometry": {"type": "Point", "coordinates": [-0.546471923225, 44.7623336559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93b35706f58fa86c86e249b9e1eae108e7087aa", "fields": {"nom_de_la_commune": "CADILLAC", "libell_d_acheminement": "CADILLAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33081"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efe8b64efd69a6ec7f46beb4ed18c9f566358d2", "fields": {"nom_de_la_commune": "CAMARSAC", "libell_d_acheminement": "CAMARSAC", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33083"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64e43e94f5314a33925f3be4a1535db290dcb02", "fields": {"nom_de_la_commune": "CAMPS SUR L ISLE", "libell_d_acheminement": "CAMPS SUR L ISLE", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33088"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fdaca458551df7b08adbaf4013178c1e991553", "fields": {"nom_de_la_commune": "CANEJAN", "libell_d_acheminement": "CANEJAN", "code_postal": "33610", "coordonnees_gps": [44.7278908774, -0.719193509806], "code_commune_insee": "33090"}, "geometry": {"type": "Point", "coordinates": [-0.719193509806, 44.7278908774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9346e20090cb74145660f5d05a077e68cc8dc140", "fields": {"code_postal": "33121", "code_commune_insee": "33097", "libell_d_acheminement": "CARCANS", "ligne_5": "CARCANS PLAGE", "nom_de_la_commune": "CARCANS", "coordonnees_gps": [45.0848035764, -1.04925222437]}, "geometry": {"type": "Point", "coordinates": [-1.04925222437, 45.0848035764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fa767fd1efade2c2bce5a6623a97310adb29d0", "fields": {"nom_de_la_commune": "CARDAN", "libell_d_acheminement": "CARDAN", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33098"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea81edd2391892599020f743a0093f9c3261d15", "fields": {"nom_de_la_commune": "CASTELMORON D ALBRET", "libell_d_acheminement": "CASTELMORON D ALBRET", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33103"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db2e65d7196f6909d810abeea498624adcef8f8", "fields": {"nom_de_la_commune": "CASTETS EN DORTHE", "libell_d_acheminement": "CASTETS EN DORTHE", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33106"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c993a94c45c5a0ec496c5467ec0aa8066ed09db0", "fields": {"nom_de_la_commune": "CASTRES GIRONDE", "libell_d_acheminement": "CASTRES GIRONDE", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33109"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5aae57cdfa01f6b4e58e16afa34b9bbe7ecff08", "fields": {"nom_de_la_commune": "CIVRAC EN MEDOC", "libell_d_acheminement": "CIVRAC EN MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33128"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c939b3fc658bd429bda39849b1de4667f0c74cc", "fields": {"nom_de_la_commune": "COIMERES", "libell_d_acheminement": "COIMERES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33130"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2abe9b055c58bca32fb4319adad217484216a193", "fields": {"nom_de_la_commune": "CREON", "libell_d_acheminement": "CREON", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33140"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a686c823f0fe7a4b95f6d41d6e36d2f75a35cfa4", "fields": {"nom_de_la_commune": "CROIGNON", "libell_d_acheminement": "CROIGNON", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33141"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633991c40d19b1d4ad597d89d05d3732dafb8a14", "fields": {"nom_de_la_commune": "CUBNEZAIS", "libell_d_acheminement": "CUBNEZAIS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33142"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf52b82305995b83348d5adca1d090c1b50b3fe9", "fields": {"nom_de_la_commune": "CUSSAC FORT MEDOC", "libell_d_acheminement": "CUSSAC FORT MEDOC", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33146"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4860046df92e5486bafad6b9d6b9944e3eab819b", "fields": {"nom_de_la_commune": "DARDENAC", "libell_d_acheminement": "DARDENAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33148"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1ede64bdb2b3965468ea9ab6479fe108fd38fe", "fields": {"nom_de_la_commune": "DOULEZON", "libell_d_acheminement": "DOULEZON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33153"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a748d956bd0d1014ea5c300a80ad9ccaa5fde922", "fields": {"nom_de_la_commune": "EYSINES", "libell_d_acheminement": "EYSINES", "code_postal": "33320", "coordonnees_gps": [44.8968698852, -0.666404713084], "code_commune_insee": "33162"}, "geometry": {"type": "Point", "coordinates": [-0.666404713084, 44.8968698852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5d841397ebbdad6bde59c76797e0571cec1710", "fields": {"nom_de_la_commune": "LE FIEU", "libell_d_acheminement": "LE FIEU", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33166"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81af80d58e278b5e10a0aac073692eb8500996f6", "fields": {"nom_de_la_commune": "FOURS", "libell_d_acheminement": "FOURS", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33172"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37f38445f3b68a084094a5e126659a4e601b453", "fields": {"nom_de_la_commune": "FRONSAC", "libell_d_acheminement": "FRONSAC", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33174"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d5927f15e250ee9d7515abd3e971618386291d", "fields": {"nom_de_la_commune": "GABARNAC", "libell_d_acheminement": "GABARNAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33176"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9d0673149f7c786f4b2278ac1e50ba785dc4b9", "fields": {"nom_de_la_commune": "GANS", "libell_d_acheminement": "GANS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33180"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742d5376db18610253344162f507527b78d58884", "fields": {"nom_de_la_commune": "GREZILLAC", "libell_d_acheminement": "GREZILLAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33194"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02fdfaf0b25333993946202d58d18d681867c470", "fields": {"nom_de_la_commune": "LE HAILLAN", "libell_d_acheminement": "LE HAILLAN", "code_postal": "33185", "coordonnees_gps": [44.8695964659, -0.684381518492], "code_commune_insee": "33200"}, "geometry": {"type": "Point", "coordinates": [-0.684381518492, 44.8695964659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8f2f0f52e2817e6199831bbe76360f9fa84929", "fields": {"nom_de_la_commune": "ILLATS", "libell_d_acheminement": "ILLATS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33205"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a422af14e45370192a7bcc95a4e31fca5ebbca4", "fields": {"nom_de_la_commune": "JUGAZAN", "libell_d_acheminement": "JUGAZAN", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33209"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99687049c498303c8cffe89e5766604445d1c1b9", "fields": {"nom_de_la_commune": "LA BREDE", "libell_d_acheminement": "LA BREDE", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33213"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c7bacd6d93a555e4ebe0454f21c4e8c20d7245", "fields": {"nom_de_la_commune": "LA LANDE DE FRONSAC", "libell_d_acheminement": "LA LANDE DE FRONSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33219"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a3cf3cde9b340f7771294fde9b7d18b5b097e1", "fields": {"nom_de_la_commune": "LANSAC", "libell_d_acheminement": "LANSAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33228"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b10626d4ba09a204a008a0ca2620e0c311345d", "fields": {"nom_de_la_commune": "LAPOUYADE", "libell_d_acheminement": "LAPOUYADE", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33230"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3401bc7eca6e181d6a6444f66721846e0e6c5fab", "fields": {"nom_de_la_commune": "LEOGEATS", "libell_d_acheminement": "LEOGEATS", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33237"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272c154c4a8afea0e6754188a252519496a15773", "fields": {"nom_de_la_commune": "LES LEVES ET THOUMEYRAGUES", "libell_d_acheminement": "LES LEVES ET THOUMEYRAGUES", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33242"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f95f2e2b84f122e1380196afef9c4823594c26", "fields": {"nom_de_la_commune": "LOUCHATS", "libell_d_acheminement": "LOUCHATS", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33251"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07da5cf2e547ff927f4bc2f96abadfaf4e1355b5", "fields": {"nom_de_la_commune": "LOUPES", "libell_d_acheminement": "LOUPES", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33252"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4063414acdce631f8b12b6bf46ec4071faed963a", "fields": {"nom_de_la_commune": "LUCMAU", "libell_d_acheminement": "LUCMAU", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33255"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e11e8037191778b9609140bf669dffdb6469c2f", "fields": {"nom_de_la_commune": "LUDON MEDOC", "libell_d_acheminement": "LUDON MEDOC", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33256"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c8c515215055bf6d81001ca400fc170a91535d", "fields": {"nom_de_la_commune": "LUGASSON", "libell_d_acheminement": "LUGASSON", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33258"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126613fe58855429810ca1d83706e8308500d054", "fields": {"nom_de_la_commune": "MARCILLAC", "libell_d_acheminement": "MARCILLAC", "code_postal": "33860", "coordonnees_gps": [45.2443910952, -0.48598346913], "code_commune_insee": "33267"}, "geometry": {"type": "Point", "coordinates": [-0.48598346913, 45.2443910952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea913709ec571fd7a8db7cb84ecc63f3282dc01", "fields": {"nom_de_la_commune": "MARSAS", "libell_d_acheminement": "MARSAS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33272"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eca51f02113fea5813723e28432e9d4eddda752", "fields": {"nom_de_la_commune": "MARTIGNAS SUR JALLE", "libell_d_acheminement": "MARTIGNAS SUR JALLE", "code_postal": "33127", "coordonnees_gps": [44.8025911594, -0.815024099624], "code_commune_insee": "33273"}, "geometry": {"type": "Point", "coordinates": [-0.815024099624, 44.8025911594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77ffa21d039dba474d06bf4ffcb7d02415d802c", "fields": {"nom_de_la_commune": "MAZERES", "libell_d_acheminement": "MAZERES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33279"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3e0facc5d8deecf43ce804fdec1c94a13802c8", "fields": {"nom_de_la_commune": "MESTERRIEUX", "libell_d_acheminement": "MESTERRIEUX", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33283"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4560211953340c4a0976e8a27cfc0aadff5cd659", "fields": {"nom_de_la_commune": "MONPRIMBLANC", "libell_d_acheminement": "MONPRIMBLANC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33288"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92edc17a83b2bac7c3ba437979c3bb4e6081ccfe", "fields": {"nom_de_la_commune": "MOULON", "libell_d_acheminement": "MOULON", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33298"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeda8f2dde73405fe7c355f809774a7054539112", "fields": {"nom_de_la_commune": "MOURENS", "libell_d_acheminement": "MOURENS", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33299"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c805521b4d384f4193a6a523c5aee7dce362f15e", "fields": {"nom_de_la_commune": "NOAILLAN", "libell_d_acheminement": "NOAILLAN", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33307"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61889a17c93df29bef19f0a14c0284cc3964e5ae", "fields": {"nom_de_la_commune": "PETIT PALAIS ET CORNEMPS", "libell_d_acheminement": "PETIT PALAIS ET CORNEMPS", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33320"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f426b5c7d0dbcd718bcd639697b97a6c4b4d84da", "fields": {"nom_de_la_commune": "POMEROL", "libell_d_acheminement": "POMEROL", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33328"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01e23500f148771eb6b44c08634da6738f3a495", "fields": {"nom_de_la_commune": "POMPEJAC", "libell_d_acheminement": "POMPEJAC", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33329"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e9bcb28828c8b456cac0e4adc40106724ba34f", "fields": {"nom_de_la_commune": "PORCHERES", "libell_d_acheminement": "PORCHERES", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33332"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bc3b3f0da9504fc35bdd98827fb47a2d827395", "fields": {"nom_de_la_commune": "LE POUT", "libell_d_acheminement": "LE POUT", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33335"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9f8b749d238023aef878c8d1002579af437dc4", "fields": {"nom_de_la_commune": "PRECHAC", "libell_d_acheminement": "PRECHAC", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33336"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3246b432f2850f1434d289eda29dacc8cc7b1208", "fields": {"nom_de_la_commune": "PRIGNAC EN MEDOC", "libell_d_acheminement": "PRIGNAC EN MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33338"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a3a9b16e3217c2323c354ec04ef73c1e69867ed", "fields": {"code_postal": "33710", "code_commune_insee": "33341", "libell_d_acheminement": "PUGNAC", "ligne_5": "LAFOSSE", "nom_de_la_commune": "PUGNAC", "coordonnees_gps": [45.0625435802, -0.557284845393]}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b79c785d0f80c504df61eb0f386780f5306008c", "fields": {"nom_de_la_commune": "PUISSEGUIN", "libell_d_acheminement": "PUISSEGUIN", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33342"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea3b9e523405acc66a741818ecd9274e031cdf1", "fields": {"code_postal": "33570", "code_commune_insee": "33342", "libell_d_acheminement": "PUISSEGUIN", "ligne_5": "MONBADON", "nom_de_la_commune": "PUISSEGUIN", "coordonnees_gps": [44.952442946, -0.0837974329549]}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03621d17385f2f02a139047c179fae1d174598d2", "fields": {"nom_de_la_commune": "QUINSAC", "libell_d_acheminement": "QUINSAC", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33349"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7950510ad2a628eba5763ff7526881afe542cc", "fields": {"nom_de_la_commune": "REIGNAC", "libell_d_acheminement": "REIGNAC", "code_postal": "33860", "coordonnees_gps": [45.2443910952, -0.48598346913], "code_commune_insee": "33351"}, "geometry": {"type": "Point", "coordinates": [-0.48598346913, 45.2443910952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f863c17f7ed24008056caa09a1c32d7b541331", "fields": {"nom_de_la_commune": "RIMONS", "libell_d_acheminement": "RIMONS", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33353"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d77ca48ec4dd22d290578a312d7a438eab1cdd4", "fields": {"nom_de_la_commune": "RUCH", "libell_d_acheminement": "RUCH", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33361"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f87c1a9a19117ec084b76bbe88d2d9b6ed60dd3", "fields": {"nom_de_la_commune": "ST AUBIN DE BRANNE", "libell_d_acheminement": "ST AUBIN DE BRANNE", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33375"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3098fa3c8d9e8c7a1e6ffdb9dc95e98f57ced8cf", "fields": {"nom_de_la_commune": "ST AVIT DE SOULEGE", "libell_d_acheminement": "ST AVIT DE SOULEGE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33377"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254c7378c906110827cfa2972c83b0c44c853976", "fields": {"nom_de_la_commune": "ST CAPRAIS DE BORDEAUX", "libell_d_acheminement": "ST CAPRAIS DE BORDEAUX", "code_postal": "33880", "coordonnees_gps": [44.7419112231, -0.437846181859], "code_commune_insee": "33381"}, "geometry": {"type": "Point", "coordinates": [-0.437846181859, 44.7419112231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03cdd2c80068b4eaea47fd30f05f21a78ba21354", "fields": {"nom_de_la_commune": "ST CHRISTOLY DE BLAYE", "libell_d_acheminement": "ST CHRISTOLY DE BLAYE", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33382"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e467cf5ca9d380ff0a9d43918c52365f3f6ce8", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DES BARDES", "libell_d_acheminement": "ST CHRISTOPHE DES BARDES", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33384"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19768626da8f6ccb785e021f2357daa3b109ee7", "fields": {"nom_de_la_commune": "ST CIERS DE CANESSE", "libell_d_acheminement": "ST CIERS DE CANESSE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33388"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbecf9ae4013903c4bc5a8944c8fd534774a7a64", "fields": {"nom_de_la_commune": "ST DENIS DE PILE", "libell_d_acheminement": "ST DENIS DE PILE", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33393"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2fb70708ffad3471903ea28afc452ce88342a7", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33404"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7332a5809f0fcebe94c949e63e122741f0cccd6", "fields": {"nom_de_la_commune": "ST GERMAIN DU PUCH", "libell_d_acheminement": "ST GERMAIN DU PUCH", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33413"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2553a1c4addc00319de1b1ab0a214db152ab97b", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33415"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b653cb8286364989129fde1d3a7498b77cd4b42f", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33420"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af4c37e00f64a90a3b256fbb42c0cc7b959f929b", "fields": {"nom_de_la_commune": "ST JULIEN BEYCHEVELLE", "libell_d_acheminement": "ST JULIEN BEYCHEVELLE", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33423"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caea7a880c3eee5562fba1787304238bc1d2f87", "fields": {"nom_de_la_commune": "ST LAURENT MEDOC", "libell_d_acheminement": "ST LAURENT MEDOC", "code_postal": "33112", "coordonnees_gps": [45.1404363736, -0.86226243849], "code_commune_insee": "33424"}, "geometry": {"type": "Point", "coordinates": [-0.86226243849, 45.1404363736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbff1aec675efff8dd64a92cb59ae55d9ca42f6a", "fields": {"nom_de_la_commune": "ST LAURENT D ARCE", "libell_d_acheminement": "ST LAURENT D ARCE", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33425"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80471d554d0af532816c1433d4ed78e3c2f100a", "fields": {"nom_de_la_commune": "ST LAURENT DU PLAN", "libell_d_acheminement": "ST LAURENT DU PLAN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33428"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35773d4f24001e1df7eb6b26c5a1c633de1ad614", "fields": {"nom_de_la_commune": "ST LOUBES", "libell_d_acheminement": "ST LOUBES", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33433"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96304c437b570b5fb59bd82b678e31bbf194b52a", "fields": {"nom_de_la_commune": "ST MARTIN DE LERM", "libell_d_acheminement": "ST MARTIN DE LERM", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33443"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117196152cd18edcbeb159a34452e856070c7901", "fields": {"nom_de_la_commune": "ST MARTIN DE SESCAS", "libell_d_acheminement": "ST MARTIN DE SESCAS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33444"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab17bc171f32b4c7bbbe027d32992a0fd5e1409f", "fields": {"nom_de_la_commune": "ST MICHEL DE LAPUJADE", "libell_d_acheminement": "ST MICHEL DE LAPUJADE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33453"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b005b63bf8944d9678bc0a55698756c5b08893a0", "fields": {"nom_de_la_commune": "ST MORILLON", "libell_d_acheminement": "ST MORILLON", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33454"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72ff29e5c23bd2b907b827e22a99e5ff0c95a61", "fields": {"nom_de_la_commune": "ST PHILIPPE DU SEIGNAL", "libell_d_acheminement": "ST PHILIPPE DU SEIGNAL", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33462"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b874775de31d9dfc74a96b56bad5a9b63ca441", "fields": {"nom_de_la_commune": "ST PIERRE D AURILLAC", "libell_d_acheminement": "ST PIERRE D AURILLAC", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33463"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c57dc85017db1be9ceddaf0df4c5dfab0d66ef", "fields": {"nom_de_la_commune": "ST SULPICE DE FALEYRENS", "libell_d_acheminement": "ST SULPICE DE FALEYRENS", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33480"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2241c4662959a0c1e9912153b782c766bd6c272", "fields": {"nom_de_la_commune": "ST SULPICE DE GUILLERAGUES", "libell_d_acheminement": "ST SULPICE DE GUILLERAGUES", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33481"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7297ec092d7cc27a6a05be921db8294dab253a31", "fields": {"nom_de_la_commune": "ST SULPICE DE POMMIERS", "libell_d_acheminement": "ST SULPICE DE POMMIERS", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33482"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a457e5984a80eb035f2509832388089d6a468a", "fields": {"nom_de_la_commune": "ST SULPICE ET CAMEYRAC", "libell_d_acheminement": "ST SULPICE ET CAMEYRAC", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33483"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559c941f700cd85392f76698e8f530762c500584", "fields": {"nom_de_la_commune": "ST VIVIEN DE MEDOC", "libell_d_acheminement": "ST VIVIEN DE MEDOC", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33490"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1824bc6f422b59b5eba84bc8e5e3b5b8c89fb160", "fields": {"nom_de_la_commune": "ST YZANS DE MEDOC", "libell_d_acheminement": "ST YZANS DE MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33493"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fe26a40fb96e47602f7c0fac04a8a0680ef205", "fields": {"nom_de_la_commune": "SALLEBOEUF", "libell_d_acheminement": "SALLEBOEUF", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33496"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf14899634474b11508e3bdcd4ef545dbafb9122", "fields": {"nom_de_la_commune": "LES SALLES DE CASTILLON", "libell_d_acheminement": "LES SALLES DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33499"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a4fea65ec42405fd4fe38e9be83e08872897f2", "fields": {"nom_de_la_commune": "SAUTERNES", "libell_d_acheminement": "SAUTERNES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33504"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30002f4463b0af05337b52ebc075185bf02925e8", "fields": {"nom_de_la_commune": "TABANAC", "libell_d_acheminement": "TABANAC", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33518"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2870c6e416bba1a662b15dad9cd15ae1fd471d99", "fields": {"nom_de_la_commune": "TEUILLAC", "libell_d_acheminement": "TEUILLAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33530"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b390aeb58df3f3993783fc31aff0641625fa514", "fields": {"nom_de_la_commune": "ROQUETAILLADE", "libell_d_acheminement": "ROQUETAILLADE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11323"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc4150427c2c7f7ce16cd5d3b7d06116b37a409c", "fields": {"nom_de_la_commune": "ROUBIA", "libell_d_acheminement": "ROUBIA", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11324"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812dc3a9cb340a07c190177ccc076d5bc3d46c97", "fields": {"nom_de_la_commune": "ROUVENAC", "libell_d_acheminement": "ROUVENAC", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11329"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575956c0cf8bb1c80256e30db2b9c72d78ee8d9c", "fields": {"nom_de_la_commune": "ST JEAN DE BARROU", "libell_d_acheminement": "ST JEAN DE BARROU", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11345"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85beba76470a3d7ce8aa20166e223f4dd0016dc7", "fields": {"nom_de_la_commune": "ST JEAN DE PARACOL", "libell_d_acheminement": "ST JEAN DE PARACOL", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11346"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67cc1082dc66a565546465218afc3d38ee922b8c", "fields": {"nom_de_la_commune": "ST PIERRE DES CHAMPS", "libell_d_acheminement": "ST PIERRE DES CHAMPS", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11363"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce41cf14204237a208398e5c63ea415fda436d7", "fields": {"nom_de_la_commune": "ST SERNIN", "libell_d_acheminement": "ST SERNIN", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11365"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26ad174246ae97c56c7724cad99d53d1120424a", "fields": {"nom_de_la_commune": "STE VALIERE", "libell_d_acheminement": "STE VALIERE", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11366"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109fbe20e70db9d02e3056bd98ad805ce5219e1b", "fields": {"nom_de_la_commune": "SALLES D AUDE", "libell_d_acheminement": "SALLES D AUDE", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11370"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b015dead77a3c00511d07f18f24c672dccb724", "fields": {"nom_de_la_commune": "SEIGNALENS", "libell_d_acheminement": "SEIGNALENS", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11375"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5182bf42a27f31495d47ef6d642fb26e872923b0", "fields": {"nom_de_la_commune": "SOUILHANELS", "libell_d_acheminement": "SOUILHANELS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11382"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732071bb6e1ed9957f7e54592506a7d839eb9e60", "fields": {"nom_de_la_commune": "TALAIRAN", "libell_d_acheminement": "TALAIRAN", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11386"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f700dc566cb49ae8db722ab49cbb76bdf5e0e6c", "fields": {"nom_de_la_commune": "LA TOURETTE CABARDES", "libell_d_acheminement": "LA TOURETTE CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11391"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baaf2e68edbd694a894469e5e842c283d7d5b390", "fields": {"nom_de_la_commune": "TOURREILLES", "libell_d_acheminement": "TOURREILLES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11394"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa976ebb344bfceeab62249d8026990513e1e03", "fields": {"nom_de_la_commune": "TRAUSSE", "libell_d_acheminement": "TRAUSSE", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11396"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562d2299c27d0474d79b8d39905ef19aac1c5fb3", "fields": {"nom_de_la_commune": "TUCHAN", "libell_d_acheminement": "TUCHAN", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11401"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b5be755a28971dcb4ee9460df5caea7f44bb4f", "fields": {"nom_de_la_commune": "VALMIGERE", "libell_d_acheminement": "VALMIGERE", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11402"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b05462a6cd053694ee2ebf4ddfa44117b1bad0", "fields": {"nom_de_la_commune": "VERZEILLE", "libell_d_acheminement": "VERZEILLE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11408"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc97b7c5f88e71128697db3e2f70134a1b8dfd7", "fields": {"nom_de_la_commune": "VILLALIER", "libell_d_acheminement": "VILLALIER", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11410"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f270d864b2314f99f4a2473e01cf4c0ddb4ac901", "fields": {"nom_de_la_commune": "AGEN D AVEYRON", "libell_d_acheminement": "AGEN D AVEYRON", "code_postal": "12630", "coordonnees_gps": [44.3813386273, 2.71254776972], "code_commune_insee": "12001"}, "geometry": {"type": "Point", "coordinates": [2.71254776972, 44.3813386273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82eb35ed71184dfb251e3dad528073b50d683712", "fields": {"nom_de_la_commune": "ARQUES", "libell_d_acheminement": "ARQUES", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12010"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3844fd0498dae7aa936edb69ab38be0376839e00", "fields": {"nom_de_la_commune": "AURIAC LAGAST", "libell_d_acheminement": "AURIAC LAGAST", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12015"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b497fd1fab52e8600f48e6296f9154655855fb", "fields": {"nom_de_la_commune": "AUZITS", "libell_d_acheminement": "AUZITS", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12016"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b396dc7c5c49c371cc6c831f9a519aec3860f7c", "fields": {"nom_de_la_commune": "BOUILLAC", "libell_d_acheminement": "BOUILLAC", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12030"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea58c0c9d88a2316ffec8219023e62f78752b2f", "fields": {"nom_de_la_commune": "BOURNAZEL", "libell_d_acheminement": "BOURNAZEL", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12031"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef1c0240637aa23fc824db71ddb4a3c42c21c3d", "fields": {"nom_de_la_commune": "BROUSSE LE CHATEAU", "libell_d_acheminement": "BROUSSE LE CHATEAU", "code_postal": "12480", "coordonnees_gps": [43.9974313835, 2.69341373502], "code_commune_insee": "12038"}, "geometry": {"type": "Point", "coordinates": [2.69341373502, 43.9974313835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46303b5af7c62a2b53781aa5318beec78fd99cf", "fields": {"nom_de_la_commune": "CALMONT", "libell_d_acheminement": "CALMONT", "code_postal": "12450", "coordonnees_gps": [44.2840952345, 2.5725628832], "code_commune_insee": "12043"}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a2b3840965612b4b53ff7596049c2ec59eb45a", "fields": {"nom_de_la_commune": "CAMPAGNAC", "libell_d_acheminement": "CAMPAGNAC", "code_postal": "12560", "coordonnees_gps": [44.416656717, 3.07038306451], "code_commune_insee": "12047"}, "geometry": {"type": "Point", "coordinates": [3.07038306451, 44.416656717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40b3d6ff5b7f15ed9b2109e97a7685f8241b1c0", "fields": {"nom_de_la_commune": "CAMPOURIEZ", "libell_d_acheminement": "CAMPOURIEZ", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12048"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b151e917d4cf8774b28862f46d45e2ff4e5fb8b", "fields": {"nom_de_la_commune": "CAMPOURIEZ", "libell_d_acheminement": "CAMPOURIEZ", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12048"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4adccf9accb7bc7faf7c04f82d2db2a5f865a9", "fields": {"nom_de_la_commune": "CAMPUAC", "libell_d_acheminement": "CAMPUAC", "code_postal": "12580", "coordonnees_gps": [44.5571706547, 2.5811283004], "code_commune_insee": "12049"}, "geometry": {"type": "Point", "coordinates": [2.5811283004, 44.5571706547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f9a08412dfc8e0370c2097d6bb2372fd7fd6a9", "fields": {"nom_de_la_commune": "BARAQUEVILLE", "libell_d_acheminement": "BARAQUEVILLE", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12056"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "222333bd15d7ddd308586343c30c0c7c78880372", "fields": {"code_postal": "12160", "code_commune_insee": "12056", "libell_d_acheminement": "BARAQUEVILLE", "ligne_5": "VORS", "nom_de_la_commune": "BARAQUEVILLE", "coordonnees_gps": [44.2885792415, 2.42910267877]}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbce92f5db318b768ea6d5cc6922af8fcb53b5c3", "fields": {"nom_de_la_commune": "CASTANET", "libell_d_acheminement": "CASTANET", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12059"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e734f674412b74a2db0cb5b63c8402824833cc", "fields": {"nom_de_la_commune": "CASTELMARY", "libell_d_acheminement": "CASTELMARY", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12060"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1aaeb840b6d0ad630ebb252543ff3321f3cae8", "fields": {"nom_de_la_commune": "LE CAYROL", "libell_d_acheminement": "LE CAYROL", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12064"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e86a23ec3e3108c41334cb5957fbe174a14a748", "fields": {"nom_de_la_commune": "COMPOLIBAT", "libell_d_acheminement": "COMPOLIBAT", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12071"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bedd6bbe766646c3d41ab6c4e9b82811ded6839", "fields": {"nom_de_la_commune": "COMPREGNAC", "libell_d_acheminement": "COMPREGNAC", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12072"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaaf332ed61d55499b3eb5cf456edcdfe3c93d68", "fields": {"nom_de_la_commune": "COUPIAC", "libell_d_acheminement": "COUPIAC", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12080"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4f5940798d5f731aa4514bacc676152cce981f", "fields": {"nom_de_la_commune": "CRESPIN", "libell_d_acheminement": "CRESPIN", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12085"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4330786ad56d4a2a69be62c9483d5030f9893871", "fields": {"nom_de_la_commune": "DRUELLE", "libell_d_acheminement": "DRUELLE", "code_postal": "12510", "coordonnees_gps": [44.3662936551, 2.48525711851], "code_commune_insee": "12090"}, "geometry": {"type": "Point", "coordinates": [2.48525711851, 44.3662936551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81de55ff4f33a748cf5ede967eb360235756d48b", "fields": {"nom_de_la_commune": "LE FEL", "libell_d_acheminement": "LE FEL", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12093"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1f1ee26ea247be801f06ca5bb9a19c7e4bbef2", "fields": {"nom_de_la_commune": "ESPEYRAC", "libell_d_acheminement": "ESPEYRAC", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12097"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5c9f92df9015ae31bf1c01bed6f83e407b9e00", "fields": {"nom_de_la_commune": "FLAVIN", "libell_d_acheminement": "FLAVIN", "code_postal": "12450", "coordonnees_gps": [44.2840952345, 2.5725628832], "code_commune_insee": "12102"}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a582c2b1cd51d9472a4d37718976eba0e90dde", "fields": {"nom_de_la_commune": "FLORENTIN LA CAPELLE", "libell_d_acheminement": "FLORENTIN LA CAPELLE", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12103"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0338b85a73946bc96b8dd7737783155a0942e739", "fields": {"nom_de_la_commune": "LA FOUILLADE", "libell_d_acheminement": "LA FOUILLADE", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12105"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b32c863d71c48acda1bff9fdc549869a2eb2bb6", "fields": {"nom_de_la_commune": "GOUTRENS", "libell_d_acheminement": "GOUTRENS", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12111"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a213eec6a19da3dd8bd6b613f3c7614fc45d4c", "fields": {"nom_de_la_commune": "LANUEJOULS", "libell_d_acheminement": "LANUEJOULS", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12121"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a2fa24cb479e49fa31854da663af3f6edca18f", "fields": {"nom_de_la_commune": "LESCURE JAOUL", "libell_d_acheminement": "LESCURE JAOUL", "code_postal": "12440", "coordonnees_gps": [44.2188237556, 2.19456712254], "code_commune_insee": "12128"}, "geometry": {"type": "Point", "coordinates": [2.19456712254, 44.2188237556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b0b314c435d014467f04225cb4b4c52df743cb", "fields": {"nom_de_la_commune": "LIVINHAC LE HAUT", "libell_d_acheminement": "LIVINHAC LE HAUT", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12130"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c897a4cacd63f2725d722bf17d79eb495cba8e77", "fields": {"nom_de_la_commune": "MARNHAGUES ET LATOUR", "libell_d_acheminement": "MARNHAGUES ET LATOUR", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12139"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4711ddcff27044b2bd8a5b485006f6315ac1ec6", "fields": {"nom_de_la_commune": "MARTRIN", "libell_d_acheminement": "MARTRIN", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12141"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3077a0370a29a391c7376e5bb4b7e2202a6b466", "fields": {"nom_de_la_commune": "MONTAGNOL", "libell_d_acheminement": "MONTAGNOL", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12147"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7ca225005c64664af0da9555193b278a5938fc", "fields": {"nom_de_la_commune": "MONTFRANC", "libell_d_acheminement": "MONTFRANC", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12152"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79d0a78ff1b8c09cc740632c012e3574367f005", "fields": {"nom_de_la_commune": "MONTLAUR", "libell_d_acheminement": "MONTLAUR", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12154"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b6069075551a4fd97d85c673bc67e29c4a3ce7", "fields": {"code_postal": "12630", "code_commune_insee": "12157", "libell_d_acheminement": "MONTROZIER", "ligne_5": "GAGES", "nom_de_la_commune": "MONTROZIER", "coordonnees_gps": [44.3813386273, 2.71254776972]}, "geometry": {"type": "Point", "coordinates": [2.71254776972, 44.3813386273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbed8c3acb5fae3a6220369a2594787095bfe2e", "fields": {"nom_de_la_commune": "MONTSALES", "libell_d_acheminement": "MONTSALES", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12158"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "463a8156d5a7e038e226e2ce4fdfebbb41ab17c6", "fields": {"nom_de_la_commune": "MOSTUEJOULS", "libell_d_acheminement": "MOSTUEJOULS", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12160"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fc942df8a6511d555227316aa1e927ef4f917d", "fields": {"nom_de_la_commune": "MOURET", "libell_d_acheminement": "MOURET", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12161"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6234106038e68e934666f5b0c4d38017e14dc847", "fields": {"nom_de_la_commune": "NAUSSAC", "libell_d_acheminement": "NAUSSAC", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12170"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2625c4c9ff7f313d9971609f01269d25eacd3d", "fields": {"nom_de_la_commune": "OLEMPS", "libell_d_acheminement": "OLEMPS", "code_postal": "12510", "coordonnees_gps": [44.3662936551, 2.48525711851], "code_commune_insee": "12174"}, "geometry": {"type": "Point", "coordinates": [2.48525711851, 44.3662936551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e7766103c733a853828d1d411be526b9c1fb3a4", "fields": {"nom_de_la_commune": "ONET LE CHATEAU", "libell_d_acheminement": "ONET LE CHATEAU", "code_postal": "12850", "coordonnees_gps": [44.3602453055, 2.59175422847], "code_commune_insee": "12176"}, "geometry": {"type": "Point", "coordinates": [2.59175422847, 44.3602453055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c6189120a4945829a3c9adb1a0016c4aa20b95", "fields": {"nom_de_la_commune": "PEYRELEAU", "libell_d_acheminement": "PEYRELEAU", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12180"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de57821fe9b49ff69249a5715ccfae660768b476", "fields": {"nom_de_la_commune": "PEYRUSSE LE ROC", "libell_d_acheminement": "PEYRUSSE LE ROC", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12181"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b007eeb284a24228c3fa1bfc90f303f3857212f7", "fields": {"nom_de_la_commune": "POMAYROLS", "libell_d_acheminement": "POMAYROLS", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12184"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd2aafde4426e7af70e8b7a316afde4dd26acd0", "fields": {"nom_de_la_commune": "POUSTHOMY", "libell_d_acheminement": "POUSTHOMY", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12186"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5928570b6d33c83098da7da131320e5917bb8a", "fields": {"nom_de_la_commune": "PRADES SALARS", "libell_d_acheminement": "PRADES SALARS", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12188"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc17489bb26652e4cc8a23323819503ac18e879a", "fields": {"nom_de_la_commune": "PREVINQUIERES", "libell_d_acheminement": "PREVINQUIERES", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12190"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ac25257f0d09ab9b6d5ad04b40bebc420a07b64", "fields": {"nom_de_la_commune": "REQUISTA", "libell_d_acheminement": "REQUISTA", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12197"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca10a49ebafb1914f3a36fcf30c74a456765b091", "fields": {"nom_de_la_commune": "ST AMANS DES COTS", "libell_d_acheminement": "ST AMANS DES COTS", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12209"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c70090133cbc46b51d9f7a10ae8a915f6c2c90", "fields": {"nom_de_la_commune": "ST BEAUZELY", "libell_d_acheminement": "ST BEAUZELY", "code_postal": "12620", "coordonnees_gps": [44.1639182272, 2.94123371794], "code_commune_insee": "12213"}, "geometry": {"type": "Point", "coordinates": [2.94123371794, 44.1639182272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fe885943bb3be5843d1d9bad1ea938512aeeae", "fields": {"nom_de_la_commune": "ST CHRISTOPHE VALLON", "libell_d_acheminement": "ST CHRISTOPHE VALLON", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12215"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a9cbde114c4a15b22f838eefcaeb601c368d93", "fields": {"nom_de_la_commune": "ST COME D OLT", "libell_d_acheminement": "ST COME D OLT", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12216"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c41259bfde2a34da69c9be96b3223f9500008f8", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12217"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d108c6792b4dd3a345d02382896460c46b2ff5cf", "fields": {"code_postal": "12210", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "LACALM", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.6915069372, 2.81638954446]}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33a01acb9ad5c1225b572ba22f577f47a1bcbd3", "fields": {"code_postal": "12420", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "STE GENEVIEVE SUR ARGENCE", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.8196484767, 2.78404543455]}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93b85479f671e8d88b913c14608b99b254d74904", "fields": {"nom_de_la_commune": "STE JULIETTE SUR VIAUR", "libell_d_acheminement": "STE JULIETTE SUR VIAUR", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12234"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191c771571cd6b9da1cf50bf1228c885ddc2ac89", "fields": {"nom_de_la_commune": "ST JUST SUR VIAUR", "libell_d_acheminement": "ST JUST SUR VIAUR", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12235"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9aee87f65f0e7ece16d2d8c6cd9d86d1a1ec5a0", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12242"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f536891fedec2a770461a750f89f7e0babf0ce01", "fields": {"nom_de_la_commune": "ST SEVER DU MOUSTIER", "libell_d_acheminement": "ST SEVER DU MOUSTIER", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12249"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7724a082466c22f8f7e3d3c782456e5c9e815b52", "fields": {"code_postal": "12460", "code_commune_insee": "12250", "libell_d_acheminement": "ST SYMPHORIEN DE THENIERES", "ligne_5": "ST GERVAIS", "nom_de_la_commune": "ST SYMPHORIEN DE THENIERES", "coordonnees_gps": [44.7074104935, 2.68829666871]}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779467c1259a1ce69657fcfe4dc76dc0b1246f26", "fields": {"nom_de_la_commune": "ST VICTOR ET MELVIEU", "libell_d_acheminement": "ST VICTOR ET MELVIEU", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12251"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6575d43f16d84cc2328acebfc984972eb3716438", "fields": {"nom_de_la_commune": "SAUVETERRE DE ROUERGUE", "libell_d_acheminement": "SAUVETERRE DE ROUERGUE", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12262"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c46071a218db7db015c44e26d8bc720b2efc2a", "fields": {"nom_de_la_commune": "SAVIGNAC", "libell_d_acheminement": "SAVIGNAC", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12263"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80294cc546928306fc56508cf9b1dd3c4da36258", "fields": {"nom_de_la_commune": "SEGUR", "libell_d_acheminement": "SEGUR", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12266"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663b1972626f3c093547513bcbc7483d5abd7d53", "fields": {"nom_de_la_commune": "SENERGUES", "libell_d_acheminement": "SENERGUES", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12268"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a56ab3e92cba0d550cef042316241e4ab92a1e53", "fields": {"nom_de_la_commune": "TAURIAC DE CAMARES", "libell_d_acheminement": "TAURIAC DE CAMARES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12275"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b719daaff3df8b45353c51623fafb09b11b3fa", "fields": {"nom_de_la_commune": "TAURIAC DE NAUCELLE", "libell_d_acheminement": "TAURIAC DE NAUCELLE", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12276"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30b7fca7ad13b5095b77bb4ddd5a669a229349a", "fields": {"nom_de_la_commune": "TREMOUILLES", "libell_d_acheminement": "TREMOUILLES", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12283"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ff92084e41551d50ac8b1fe9598d9557c25d5f", "fields": {"code_postal": "12330", "code_commune_insee": "12288", "libell_d_acheminement": "VALADY", "ligne_5": "NUCES", "nom_de_la_commune": "VALADY", "coordonnees_gps": [44.4669223048, 2.48171518474]}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcda29cad2d082aeddedf864688bf6f1fb743cc", "fields": {"nom_de_la_commune": "VALZERGUES", "libell_d_acheminement": "VALZERGUES", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12289"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925a9deae17c4f760fcf38fbbd229451c0d29302", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE PANAT", "libell_d_acheminement": "VILLEFRANCHE DE PANAT", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12299"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d168887b98a9250f7bbf22539644091af7db270a", "fields": {"nom_de_la_commune": "ALLEINS", "libell_d_acheminement": "ALLEINS", "code_postal": "13980", "coordonnees_gps": [43.7076204697, 5.15079714455], "code_commune_insee": "13003"}, "geometry": {"type": "Point", "coordinates": [5.15079714455, 43.7076204697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173c919dfb396822ac9ede06eeef9d22bdf84a6a", "fields": {"code_postal": "13123", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "L ALBARON", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca71cde48f2f7c9aed943e5a2e361c918575509", "fields": {"code_postal": "13200", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "LE SAMBUC", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbc965af557808556233d594bdd03c955105cbe1", "fields": {"nom_de_la_commune": "AUBAGNE", "libell_d_acheminement": "AUBAGNE", "code_postal": "13400", "coordonnees_gps": [43.2934747963, 5.56322795554], "code_commune_insee": "13005"}, "geometry": {"type": "Point", "coordinates": [5.56322795554, 43.2934747963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91dd549b1bbd5161609c370203a7201a976ee76e", "fields": {"nom_de_la_commune": "LA BARBEN", "libell_d_acheminement": "LA BARBEN", "code_postal": "13330", "coordonnees_gps": [43.6242242571, 5.18902505122], "code_commune_insee": "13009"}, "geometry": {"type": "Point", "coordinates": [5.18902505122, 43.6242242571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0e5da29f041382974097ce59ba4026b36b0f39", "fields": {"nom_de_la_commune": "BELCODENE", "libell_d_acheminement": "BELCODENE", "code_postal": "13720", "coordonnees_gps": [43.4097271904, 5.60183954858], "code_commune_insee": "13013"}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15fc2d01581ea9f1e7e3d3292274713fd7240342", "fields": {"code_postal": "13720", "code_commune_insee": "13016", "libell_d_acheminement": "LA BOUILLADISSE", "ligne_5": "LES BOYERS", "nom_de_la_commune": "LA BOUILLADISSE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4df4ea88accf7e032e5184ff3a1fb9cdb6c75b8", "fields": {"nom_de_la_commune": "CABRIES", "libell_d_acheminement": "CABRIES", "code_postal": "13480", "coordonnees_gps": [43.4494933345, 5.34998030889], "code_commune_insee": "13019"}, "geometry": {"type": "Point", "coordinates": [5.34998030889, 43.4494933345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "515102dabadcab4fe615469394fcec9c18390fd3", "fields": {"nom_de_la_commune": "PEAULE", "libell_d_acheminement": "PEAULE", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56153"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0906ddac920a27edb19a186acf06f94bedd531b9", "fields": {"nom_de_la_commune": "PEILLAC", "libell_d_acheminement": "PEILLAC", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56154"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cbe3bdb8fb0b216cad4d3f143738d3d6bf309e", "fields": {"nom_de_la_commune": "PLAUDREN", "libell_d_acheminement": "PLAUDREN", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56157"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b90caa45fd606fb1dee946ad77ffb10b62d407", "fields": {"nom_de_la_commune": "PLEUCADEUC", "libell_d_acheminement": "PLEUCADEUC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56159"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e642b919f9ae8efe69cc1847aa0d74281dd435", "fields": {"nom_de_la_commune": "PLEUGRIFFET", "libell_d_acheminement": "PLEUGRIFFET", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56160"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba219745b841a4073e407e2bc8bcfe863132132b", "fields": {"nom_de_la_commune": "PLOUHARNEL", "libell_d_acheminement": "PLOUHARNEL", "code_postal": "56340", "coordonnees_gps": [47.6055540862, -3.08901198541], "code_commune_insee": "56168"}, "geometry": {"type": "Point", "coordinates": [-3.08901198541, 47.6055540862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817f7ff4945b33a1ca5abc4ea4f593e3c234d55f", "fields": {"nom_de_la_commune": "PLOUHINEC", "libell_d_acheminement": "PLOUHINEC", "code_postal": "56680", "coordonnees_gps": [47.6926427403, -3.24050091087], "code_commune_insee": "56169"}, "geometry": {"type": "Point", "coordinates": [-3.24050091087, 47.6926427403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6733d292d301a8463bdfca75cfe27d872eb1417b", "fields": {"nom_de_la_commune": "PLUHERLIN", "libell_d_acheminement": "PLUHERLIN", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56171"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74767fdba9a6eec7663106ab0c38126345fc7187", "fields": {"nom_de_la_commune": "PLUMELEC", "libell_d_acheminement": "PLUMELEC", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56172"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b76e283fb0af990659acc3017620fdd1b6527e", "fields": {"nom_de_la_commune": "QUIBERON", "libell_d_acheminement": "QUIBERON", "code_postal": "56170", "coordonnees_gps": [47.4440195899, -3.0513582744], "code_commune_insee": "56186"}, "geometry": {"type": "Point", "coordinates": [-3.0513582744, 47.4440195899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba90b7aa5b06bbaf7b6e5d6eaae706aa99c5911", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56194"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79f8901661057af513e396c82f01a29da4990ee", "fields": {"code_postal": "56460", "code_commune_insee": "56197", "libell_d_acheminement": "VAL D OUST", "ligne_5": "LE ROC ST ANDRE", "nom_de_la_commune": "VAL D OUST", "coordonnees_gps": [47.8267704974, -2.49804841656]}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc43196b7d6a4ccc2a59b87abe836675c2db62d", "fields": {"nom_de_la_commune": "ROHAN", "libell_d_acheminement": "ROHAN", "code_postal": "56580", "coordonnees_gps": [48.0645686885, -2.7233749534], "code_commune_insee": "56198"}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2b6b4ced9521209d18b30b52d0e309ab62257c", "fields": {"nom_de_la_commune": "ST ARMEL", "libell_d_acheminement": "ST ARMEL", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56205"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab024fa0080c302936898aec75fefe64c45a2fd", "fields": {"nom_de_la_commune": "ST GERAND", "libell_d_acheminement": "ST GERAND", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56213"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f80ec089c0d9a99213ba85e837c59fcaf9a788", "fields": {"nom_de_la_commune": "ST GILDAS DE RHUYS", "libell_d_acheminement": "ST GILDAS DE RHUYS", "code_postal": "56730", "coordonnees_gps": [47.5125162224, -2.83274759799], "code_commune_insee": "56214"}, "geometry": {"type": "Point", "coordinates": [-2.83274759799, 47.5125162224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb08a002b7f33ae970a7c094c2a16f0f57fb6ee", "fields": {"nom_de_la_commune": "ST GUYOMARD", "libell_d_acheminement": "ST GUYOMARD", "code_postal": "56460", "coordonnees_gps": [47.8267704974, -2.49804841656], "code_commune_insee": "56219"}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945574da3b955f22579807f640a93e9fc9652f51", "fields": {"nom_de_la_commune": "ST JACUT LES PINS", "libell_d_acheminement": "ST JACUT LES PINS", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56221"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17c563f2a51f6d182670e9c6c5caa871ae4ffee6", "fields": {"nom_de_la_commune": "ST MALO DE BEIGNON", "libell_d_acheminement": "ST MALO DE BEIGNON", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56226"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2afb37654db37e862c5540a79db34b8a4ee1c140", "fields": {"nom_de_la_commune": "SERENT", "libell_d_acheminement": "SERENT", "code_postal": "56460", "coordonnees_gps": [47.8267704974, -2.49804841656], "code_commune_insee": "56244"}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6643f2dec426c633f0bc5ae542502890f42e20d1", "fields": {"nom_de_la_commune": "LE SOURN", "libell_d_acheminement": "LE SOURN", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56246"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7813231087a7f4b85fef429725fa2242828ea594", "fields": {"nom_de_la_commune": "SULNIAC", "libell_d_acheminement": "SULNIAC", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56247"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaf9c155260cf2ae7dc2f3ea31d71f5eb8bf75b", "fields": {"nom_de_la_commune": "TAUPONT", "libell_d_acheminement": "TAUPONT", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56249"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "168d2e6f4ed4e64c303e7a6d35f3269e607dfdf1", "fields": {"nom_de_la_commune": "LE TOUR DU PARC", "libell_d_acheminement": "LE TOUR DU PARC", "code_postal": "56370", "coordonnees_gps": [47.524503914, -2.74138748812], "code_commune_insee": "56252"}, "geometry": {"type": "Point", "coordinates": [-2.74138748812, 47.524503914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92bd162518602ff3d34a948ddd7351561cd2b6ed", "fields": {"nom_de_la_commune": "TREAL", "libell_d_acheminement": "TREAL", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56253"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639f6d31673b8d759a5138d95d3d1656c62d2ddf", "fields": {"nom_de_la_commune": "ACHAIN", "libell_d_acheminement": "ACHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57004"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f84f0948579f3aa0732a06687556b17b798f04", "fields": {"nom_de_la_commune": "ALTRIPPE", "libell_d_acheminement": "ALTRIPPE", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57014"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f500a715a407ba8222cd5f61c71e943f0e0732", "fields": {"nom_de_la_commune": "ANZELING", "libell_d_acheminement": "ANZELING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57025"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea562356776f987f289dd465a469c19ea941679", "fields": {"nom_de_la_commune": "ARRAINCOURT", "libell_d_acheminement": "ARRAINCOURT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57027"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b4fe0538b32ccebabd005f3c84118bfa036ffab", "fields": {"nom_de_la_commune": "ARRY", "libell_d_acheminement": "ARRY", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57030"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad4d40cbc41d9448dc7a04998b8245e4316cf6", "fields": {"nom_de_la_commune": "ARS LAQUENEXY", "libell_d_acheminement": "ARS LAQUENEXY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57031"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf66f5d707717501f50f11b58a6e5c76dac32b6", "fields": {"nom_de_la_commune": "AY SUR MOSELLE", "libell_d_acheminement": "AY SUR MOSELLE", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57043"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f3fb6e9019dea7099ea8ec67ebc30262dd3b8b", "fields": {"nom_de_la_commune": "BAERENTHAL", "libell_d_acheminement": "BAERENTHAL", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57046"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08637bab93f084e5fe58a91a6f41bb6fb122053", "fields": {"nom_de_la_commune": "BANNAY", "libell_d_acheminement": "BANNAY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57048"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a593f01f4ab99cad6fb123260d9d78f57b61bc64", "fields": {"nom_de_la_commune": "BERTRANGE", "libell_d_acheminement": "BERTRANGE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57067"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89eeec498075b4f68e535e9eb5bb89eee672e5cf", "fields": {"nom_de_la_commune": "BERVILLER EN MOSELLE", "libell_d_acheminement": "BERVILLER EN MOSELLE", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57069"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2c9af2a861c096553d2c6af762328e30ac4c85", "fields": {"nom_de_la_commune": "BETTELAINVILLE", "libell_d_acheminement": "BETTELAINVILLE", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57072"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa3e9aa62ad859769b1f53f35bf6da50eb8dabe", "fields": {"nom_de_la_commune": "BEYREN LES SIERCK", "libell_d_acheminement": "BEYREN LES SIERCK", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57076"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eda830e321a45dbe5cb8c461c621155adbcb47e", "fields": {"nom_de_la_commune": "BIBICHE", "libell_d_acheminement": "BIBICHE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57079"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae6a6cdd6e936bdb0cba490d725496deb10c8e9", "fields": {"nom_de_la_commune": "BICKENHOLTZ", "libell_d_acheminement": "BICKENHOLTZ", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57080"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6876dbe9742d62de5a6a7a398529e7dbb37e5c4e", "fields": {"nom_de_la_commune": "BIDING", "libell_d_acheminement": "BIDING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57082"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c632e101d6023093d0ad565d776684b0410f83", "fields": {"nom_de_la_commune": "BIONCOURT", "libell_d_acheminement": "BIONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57084"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac327fbd80f6dad98a74fa9338ebb5406c4a605", "fields": {"nom_de_la_commune": "BIONVILLE SUR NIED", "libell_d_acheminement": "BIONVILLE SUR NIED", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57085"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a86645bbb17c8d973401ee19016b4a850a9436f", "fields": {"nom_de_la_commune": "BISTROFF", "libell_d_acheminement": "BISTROFF", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57088"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9853ae5a60b59c20a70a431202f7f0f598f858", "fields": {"nom_de_la_commune": "BOUCHEPORN", "libell_d_acheminement": "BOUCHEPORN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57095"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa489e3dc727080466fbd5b0ba4bf731647244a", "fields": {"nom_de_la_commune": "BOULANGE", "libell_d_acheminement": "BOULANGE", "code_postal": "57655", "coordonnees_gps": [49.3830106002, 5.95219673103], "code_commune_insee": "57096"}, "geometry": {"type": "Point", "coordinates": [5.95219673103, 49.3830106002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2d4b7a0c92e29698e7c182979852c5a00447ee", "fields": {"code_postal": "57220", "code_commune_insee": "57097", "libell_d_acheminement": "BOULAY", "ligne_5": "HALLING LES BOULAY", "nom_de_la_commune": "BOULAY MOSELLE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2b7461d6906fdef49ec8a9bf0a2ab6a3545168", "fields": {"nom_de_la_commune": "BOURDONNAY", "libell_d_acheminement": "BOURDONNAY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57099"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11efdd4f54b5b83da6ed7924ca305529b9d623c6", "fields": {"nom_de_la_commune": "BOUSBACH", "libell_d_acheminement": "BOUSBACH", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57101"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc6054765d7f0c83b02f21377ff6bc8fb860504", "fields": {"nom_de_la_commune": "BROUCK", "libell_d_acheminement": "BROUCK", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57112"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8d76e57617e077fd8de2d9e5365ace96ab4e56", "fields": {"nom_de_la_commune": "BUCHY", "libell_d_acheminement": "BUCHY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57116"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d04d0f0af8c1633a9d1abc9b90bcac7bef24f5", "fields": {"nom_de_la_commune": "BUDING", "libell_d_acheminement": "BUDING", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57117"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b3c33e9da44b9c9314cdb5899ce6fc72578b3", "fields": {"nom_de_la_commune": "CARLING", "libell_d_acheminement": "CARLING", "code_postal": "57490", "coordonnees_gps": [49.1613905223, 6.7250851185], "code_commune_insee": "57123"}, "geometry": {"type": "Point", "coordinates": [6.7250851185, 49.1613905223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d9cfb66d7c8a6d7eba26fbb0ca04aeb16c7e5b", "fields": {"nom_de_la_commune": "CHAILLY LES ENNERY", "libell_d_acheminement": "CHAILLY LES ENNERY", "code_postal": "57365", "coordonnees_gps": [49.228567016, 6.24894723859], "code_commune_insee": "57125"}, "geometry": {"type": "Point", "coordinates": [6.24894723859, 49.228567016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63639556cdde19d4c5b862511652428b1b5e1ced", "fields": {"nom_de_la_commune": "CHAMBREY", "libell_d_acheminement": "CHAMBREY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57126"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02fd6d15b189de79d8ece9a54434ffb9def5c22c", "fields": {"code_postal": "57170", "code_commune_insee": "57133", "libell_d_acheminement": "CHATEAU VOUE", "ligne_5": "DEDELING", "nom_de_la_commune": "CHATEAU VOUE", "coordonnees_gps": [48.8272646435, 6.51547813008]}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bc65c10ba7c48464cd1ee1ae203de84fadda14", "fields": {"nom_de_la_commune": "CHATEL ST GERMAIN", "libell_d_acheminement": "CHATEL ST GERMAIN", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57134"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942f04d0e742b2d9003d18e1e57d493098c3347", "fields": {"nom_de_la_commune": "CLOUANGE", "libell_d_acheminement": "CLOUANGE", "code_postal": "57185", "coordonnees_gps": [49.2729654121, 6.09323392061], "code_commune_insee": "57143"}, "geometry": {"type": "Point", "coordinates": [6.09323392061, 49.2729654121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac99d238886d125ff694617140f0357adef3405", "fields": {"nom_de_la_commune": "COCHEREN", "libell_d_acheminement": "COCHEREN", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57144"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd54d789528d3b99e5902b584b090f86cb4009a", "fields": {"nom_de_la_commune": "COINCY", "libell_d_acheminement": "COINCY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57145"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0218ef2c957eb2b674469dfacd997bd689c99d", "fields": {"nom_de_la_commune": "COLMEN", "libell_d_acheminement": "COLMEN", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57149"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51926ea6644990aaf8b86354b127cc6c28380668", "fields": {"code_postal": "57220", "code_commune_insee": "57150", "libell_d_acheminement": "CONDE NORTHEN", "ligne_5": "LOUTREMANGE", "nom_de_la_commune": "CONDE NORTHEN", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5ac7d00a28b3700ea4d73621311a2a3d098ac5", "fields": {"code_postal": "57530", "code_commune_insee": "57155", "libell_d_acheminement": "COURCELLES CHAUSSY", "ligne_5": "LANDONVILLERS", "nom_de_la_commune": "COURCELLES CHAUSSY", "coordonnees_gps": [49.0970109843, 6.37190964274]}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7fa2a39ac0bfd429b1bc8014616b931ab20649", "fields": {"nom_de_la_commune": "CREUTZWALD", "libell_d_acheminement": "CREUTZWALD", "code_postal": "57150", "coordonnees_gps": [49.2091971724, 6.68139736306], "code_commune_insee": "57160"}, "geometry": {"type": "Point", "coordinates": [6.68139736306, 49.2091971724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f401159c1e797e5b989fabd7548c650f761d31f8", "fields": {"nom_de_la_commune": "DABO", "libell_d_acheminement": "DABO", "code_postal": "57850", "coordonnees_gps": [48.6473916816, 7.23779474872], "code_commune_insee": "57163"}, "geometry": {"type": "Point", "coordinates": [7.23779474872, 48.6473916816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed20e6bfa47808b57c655e81358e4eaa68997017", "fields": {"nom_de_la_commune": "DIANE CAPELLE", "libell_d_acheminement": "DIANE CAPELLE", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57175"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c780af61f2f11391563a4e9c18583387a5222872", "fields": {"nom_de_la_commune": "DIEBLING", "libell_d_acheminement": "DIEBLING", "code_postal": "57980", "coordonnees_gps": [49.1092636069, 6.94134556596], "code_commune_insee": "57176"}, "geometry": {"type": "Point", "coordinates": [6.94134556596, 49.1092636069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57eadac22066a58a8d75c5c673c48322c7f49dc1", "fields": {"nom_de_la_commune": "EBLANGE", "libell_d_acheminement": "EBLANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57187"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8baf0d42f53955508ac827d3b4894cff45f4d7", "fields": {"nom_de_la_commune": "ENCHENBERG", "libell_d_acheminement": "ENCHENBERG", "code_postal": "57415", "coordonnees_gps": [49.006798582, 7.31603337104], "code_commune_insee": "57192"}, "geometry": {"type": "Point", "coordinates": [7.31603337104, 49.006798582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9670cae5494555d080965371a2620b4a4a86c07", "fields": {"nom_de_la_commune": "ERCHING", "libell_d_acheminement": "ERCHING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57196"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7924a3410099f4e1b3c5f2bc81a6e113ccf6e097", "fields": {"nom_de_la_commune": "ETZLING", "libell_d_acheminement": "ETZLING", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57202"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a41dd6d8f4dd1395651c2b0b829fd2eaade7b5", "fields": {"code_postal": "57640", "code_commune_insee": "57204", "libell_d_acheminement": "FAILLY", "ligne_5": "VREMY", "nom_de_la_commune": "FAILLY", "coordonnees_gps": [49.1985854137, 6.30080948256]}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e26aaf0d1c3f1a88bc613598820633ccf83064", "fields": {"code_postal": "57290", "code_commune_insee": "57206", "libell_d_acheminement": "FAMECK", "ligne_5": "REMELANGE", "nom_de_la_commune": "FAMECK", "coordonnees_gps": [49.3041832839, 6.102475564]}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f55f6dafbff35906ed5daf2f26a98c843beff13", "fields": {"nom_de_la_commune": "FLEISHEIM", "libell_d_acheminement": "FLEISHEIM", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57216"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110d2b1b6c80cba3a4042ba2f3b0c8c9662f6ced", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57218"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d3343c1df37d28c80a32a5af24b0fe296e90b8", "fields": {"nom_de_la_commune": "FLEVY", "libell_d_acheminement": "FLEVY", "code_postal": "57365", "coordonnees_gps": [49.228567016, 6.24894723859], "code_commune_insee": "57219"}, "geometry": {"type": "Point", "coordinates": [6.24894723859, 49.228567016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f98503932f6e6991caa3fa344f532f5edb0c8d6a", "fields": {"nom_de_la_commune": "FLORANGE", "libell_d_acheminement": "FLORANGE", "code_postal": "57190", "coordonnees_gps": [49.3279409342, 6.12312387666], "code_commune_insee": "57221"}, "geometry": {"type": "Point", "coordinates": [6.12312387666, 49.3279409342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bfc8a666f1fe3ecfc862b876026683ca29139d", "fields": {"nom_de_la_commune": "FORBACH", "libell_d_acheminement": "FORBACH", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57227"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c07be974e12a8ef42e3aeba01f97e221691fa0f", "fields": {"code_postal": "57600", "code_commune_insee": "57227", "libell_d_acheminement": "FORBACH", "ligne_5": "MARIENAU", "nom_de_la_commune": "FORBACH", "coordonnees_gps": [49.1737473048, 6.89495701943]}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee09b8d1fd460e94aa69f57d47f7cf1b3dd91cc", "fields": {"nom_de_la_commune": "FOVILLE", "libell_d_acheminement": "FOVILLE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57231"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad57000b171a05634bd1ee45e7a8ea15042b679a", "fields": {"nom_de_la_commune": "FRESNES EN SAULNOIS", "libell_d_acheminement": "FRESNES EN SAULNOIS", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57238"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c326925ba823fa222458e8745b00073e6e4fbab2", "fields": {"nom_de_la_commune": "GOETZENBRUCK", "libell_d_acheminement": "GOETZENBRUCK", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57250"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb7f680fa847a00e0f0ccd15fb1ed40f466d238", "fields": {"nom_de_la_commune": "GOMELANGE", "libell_d_acheminement": "GOMELANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57252"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69513f0b10c7843c47497b2a8e41fab596153b03", "fields": {"code_postal": "57220", "code_commune_insee": "57252", "libell_d_acheminement": "GOMELANGE", "ligne_5": "GUIRLANGE", "nom_de_la_commune": "GOMELANGE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019fc61cf894a2bb83e4103f1ca587d632753658", "fields": {"nom_de_la_commune": "GROSTENQUIN", "libell_d_acheminement": "GROSTENQUIN", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57262"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb7b8488c8b76f95d5b19ba47564f4ba8afa36f", "fields": {"nom_de_la_commune": "GRUNDVILLER", "libell_d_acheminement": "GRUNDVILLER", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57263"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "666bc9c212954dfe5ceb345f201bef15398ce672", "fields": {"nom_de_la_commune": "GUENVILLER", "libell_d_acheminement": "GUENVILLER", "code_postal": "57470", "coordonnees_gps": [49.1215723758, 6.78184199605], "code_commune_insee": "57271"}, "geometry": {"type": "Point", "coordinates": [6.78184199605, 49.1215723758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb29e60065235de5436d32e55ea6bceee0ada6b", "fields": {"nom_de_la_commune": "GUESSLING HEMERING", "libell_d_acheminement": "GUESSLING HEMERING", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57275"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ec13f04a70f5d0e70648b5655e2d5f4f617feb", "fields": {"nom_de_la_commune": "HALSTROFF", "libell_d_acheminement": "HALSTROFF", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57286"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329e5256efd79b86f6c0983e074347dd6e3f3935", "fields": {"nom_de_la_commune": "HARAUCOURT SUR SEILLE", "libell_d_acheminement": "HARAUCOURT SUR SEILLE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57295"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506f8be9b47a97fab03d09738d024ded515254e1", "fields": {"nom_de_la_commune": "HASELBOURG", "libell_d_acheminement": "HASELBOURG", "code_postal": "57850", "coordonnees_gps": [48.6473916816, 7.23779474872], "code_commune_insee": "57300"}, "geometry": {"type": "Point", "coordinates": [7.23779474872, 48.6473916816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d84d167d217f4016d6fa499d530e80bfab67fc9", "fields": {"nom_de_la_commune": "HAVANGE", "libell_d_acheminement": "HAVANGE", "code_postal": "57650", "coordonnees_gps": [49.3593317292, 5.99165623532], "code_commune_insee": "57305"}, "geometry": {"type": "Point", "coordinates": [5.99165623532, 49.3593317292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57903fe417c7030f1f941f4e1d4f501daf7c713e", "fields": {"nom_de_la_commune": "HAZEMBOURG", "libell_d_acheminement": "HAZEMBOURG", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57308"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30b75c2e3f289b57d096b698ef063ec161de9357", "fields": {"nom_de_la_commune": "HELLIMER", "libell_d_acheminement": "HELLIMER", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57311"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad94d1884a9cdbe131b07946c605c7dbbcad013", "fields": {"nom_de_la_commune": "HELSTROFF", "libell_d_acheminement": "HELSTROFF", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57312"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6561bb2ce348c7d8ea8e5d8fce9ef707e804be55", "fields": {"nom_de_la_commune": "HEMILLY", "libell_d_acheminement": "HEMILLY", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57313"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59332e1e72a98f4c2896569152853f294847d382", "fields": {"nom_de_la_commune": "HENRIDORFF", "libell_d_acheminement": "HENRIDORFF", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57315"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14144d2dce42e68fb00d029fa8006b5bfb8a3c0", "fields": {"nom_de_la_commune": "HESTROFF", "libell_d_acheminement": "HESTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57322"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d558bf826a8e17c5bfce2d40c03f7c6ff6c11b", "fields": {"nom_de_la_commune": "HINCKANGE", "libell_d_acheminement": "HINCKANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57326"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3179e7b3713629f3115428e03ea6e8fe15b0c5", "fields": {"nom_de_la_commune": "HOMMERT", "libell_d_acheminement": "HOMMERT", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57334"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a436714e1d9703214ac6b655aab8e179226cbba", "fields": {"nom_de_la_commune": "CERNAY L EGLISE", "libell_d_acheminement": "CERNAY L EGLISE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25108"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0b63d56adf6aab8dcaf81931f923ee1f05f495", "fields": {"nom_de_la_commune": "CHAMPLIVE", "libell_d_acheminement": "CHAMPLIVE", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25116"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a4c54cb0d75b0ede6c6ee480531eb788067162d", "fields": {"nom_de_la_commune": "CHARNAY", "libell_d_acheminement": "CHARNAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25126"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d719fd46a56b6ab7cd73b362171835affee7b068", "fields": {"nom_de_la_commune": "CHATEAUVIEUX LES FOSSES", "libell_d_acheminement": "CHATEAUVIEUX LES FOSSES", "code_postal": "25840", "coordonnees_gps": [47.0612985157, 6.21263749078], "code_commune_insee": "25130"}, "geometry": {"type": "Point", "coordinates": [6.21263749078, 47.0612985157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e20f9ba3ad675af1955512ece26df0a6782ae8", "fields": {"nom_de_la_commune": "CHEMAUDIN", "libell_d_acheminement": "CHEMAUDIN", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25147"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e493405ade35034e510d7363c545ee55395bac8", "fields": {"nom_de_la_commune": "CHEVROZ", "libell_d_acheminement": "CHEVROZ", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25153"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74af76f9b530bb098ebb800cd0af93bdf3d059d7", "fields": {"nom_de_la_commune": "CLERVAL", "libell_d_acheminement": "CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25156"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b70ea91238e60b10c921ba99fe3e60af0616ff", "fields": {"nom_de_la_commune": "CORCELLES FERRIERES", "libell_d_acheminement": "CORCELLES FERRIERES", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25162"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da53f1c1b0526bf00f5111701d68fb52130569a2", "fields": {"nom_de_la_commune": "CORCONDRAY", "libell_d_acheminement": "CORCONDRAY", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25164"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1e3d6e93cd3c42b26e18c3a90388c82c23c08f", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25171"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e1753e2f93de8378b8ae87a66caa3603480d9a5", "fields": {"nom_de_la_commune": "COURTETAIN ET SALANS", "libell_d_acheminement": "COURTETAIN ET SALANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25175"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44235df6a81389d059c6344c14ff7254fd2d14a2", "fields": {"nom_de_la_commune": "CUSE ET ADRISANS", "libell_d_acheminement": "CUSE ET ADRISANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25184"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc07418f8d52b572576ed7f264a44a85c2174e85", "fields": {"code_postal": "25150", "code_commune_insee": "25187", "libell_d_acheminement": "DAMBELIN", "ligne_5": "MAMBOUHANS", "nom_de_la_commune": "DAMBELIN", "coordonnees_gps": [47.3948099665, 6.72943096547]}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b698d9715e37597fcf262918f81ae5d405cdc15f", "fields": {"nom_de_la_commune": "DANNEMARIE", "libell_d_acheminement": "DANNEMARIE", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25194"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e96346797b3be4cfef718c52081272577753796", "fields": {"nom_de_la_commune": "DOUBS", "libell_d_acheminement": "DOUBS", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25204"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8091960c23354a33b889d4e0c981c5c353a02369", "fields": {"nom_de_la_commune": "DURNES", "libell_d_acheminement": "DURNES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25208"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8d0208980ac26c1046ccc27453298d3dc00cbe", "fields": {"nom_de_la_commune": "ECHAY", "libell_d_acheminement": "ECHAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25209"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41107203fef25b82bf9bb57b099cf1551079d70c", "fields": {"nom_de_la_commune": "ECHENANS", "libell_d_acheminement": "ECHENANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25210"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2937c9dc828bae93947341e2253785fa6e2a5329", "fields": {"nom_de_la_commune": "ECOLE VALENTIN", "libell_d_acheminement": "ECOLE VALENTIN", "code_postal": "25480", "coordonnees_gps": [47.2739749265, 5.97316360482], "code_commune_insee": "25212"}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d33f77ab78d52ba47ec27140478ddc7b85028e", "fields": {"nom_de_la_commune": "ETALANS", "libell_d_acheminement": "ETALANS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25222"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da5ff2e92bb872fa5392b808b72593c8141b9616", "fields": {"nom_de_la_commune": "FAIMBE", "libell_d_acheminement": "FAIMBE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25232"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c711b94db44f90b2f8c12cf0257d2d7659f99e31", "fields": {"nom_de_la_commune": "FESCHES LE CHATEL", "libell_d_acheminement": "FESCHES LE CHATEL", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25237"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e418faba31d000f6ae9d037f8d290b5b346b452c", "fields": {"nom_de_la_commune": "FESSEVILLERS", "libell_d_acheminement": "FESSEVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25238"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74b905a79f0686a7271a23227e1327e5ca527be", "fields": {"nom_de_la_commune": "FONTAINE LES CLERVAL", "libell_d_acheminement": "FONTAINE LES CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25246"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9f8bfed8574a124fb44e349f31c2a0e1880812", "fields": {"nom_de_la_commune": "LES FONTENELLES", "libell_d_acheminement": "LES FONTENELLES", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25248"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fd7021490572f9d4f91a71d42a7beb8123b532", "fields": {"nom_de_la_commune": "FOURG", "libell_d_acheminement": "FOURG", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25253"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ad7ac4b9e44a3e61f730c371396d431ea33268", "fields": {"nom_de_la_commune": "FOURNET BLANCHEROCHE", "libell_d_acheminement": "FOURNET BLANCHEROCHE", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25255"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf038afa74fc52cf74e32606de54af493c42a5ac", "fields": {"nom_de_la_commune": "FUANS", "libell_d_acheminement": "FUANS", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25262"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db8a26d60ff72bd0c2eec937880ad595e52ef90", "fields": {"nom_de_la_commune": "GONDENANS MONTBY", "libell_d_acheminement": "GONDENANS MONTBY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25276"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28f378ad58286bef51deb3eb328b9112e9d2ce39", "fields": {"nom_de_la_commune": "GOUX LES DAMBELIN", "libell_d_acheminement": "GOUX LES DAMBELIN", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25281"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11cf93909859582b14b658821b8ebe0331ee5296", "fields": {"nom_de_la_commune": "GOUX LES USIERS", "libell_d_acheminement": "GOUX LES USIERS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25282"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54217b964af74bc709b9534ff83edb68e0d56a3a", "fields": {"nom_de_la_commune": "GRANDFONTAINE SUR CREUSE", "libell_d_acheminement": "GRANDFONTAINE SUR CREUSE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25289"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b92fc04adfdf484055282c2420e8e3021d0b433", "fields": {"nom_de_la_commune": "GUYANS DURNES", "libell_d_acheminement": "GUYANS DURNES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25300"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f976a18db2d25b50254d09c048a0e6bb98416e", "fields": {"nom_de_la_commune": "GUYANS VENNES", "libell_d_acheminement": "GUYANS VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25301"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff451ca54c6da7d61e7f6171e11fee4a6e9863cb", "fields": {"nom_de_la_commune": "HYEMONDANS", "libell_d_acheminement": "HYEMONDANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25311"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1573b29dc872069830aa6b705f4092f580adafeb", "fields": {"nom_de_la_commune": "INDEVILLERS", "libell_d_acheminement": "INDEVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25314"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb89991bd9a51f737d3e690fe127bd659e6fcc27", "fields": {"nom_de_la_commune": "LABERGEMENT DU NAVOIS", "libell_d_acheminement": "LABERGEMENT DU NAVOIS", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25319"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f906dd2394305a0c792294b67530a922a64c68", "fields": {"nom_de_la_commune": "LAIRE", "libell_d_acheminement": "LAIRE", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25322"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b02dc9935c0322cb3ef2eb423846f320512728", "fields": {"nom_de_la_commune": "LAVIRON", "libell_d_acheminement": "LAVIRON", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25333"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8303bac397e8d0f2ef06e061faa7122fa57f1b", "fields": {"nom_de_la_commune": "LIEBVILLERS", "libell_d_acheminement": "LIEBVILLERS", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25335"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43eb1e320e8f11b805a21680c0024175111d89c1", "fields": {"nom_de_la_commune": "LODS", "libell_d_acheminement": "LODS", "code_postal": "25930", "coordonnees_gps": [47.0501143965, 6.25586783828], "code_commune_insee": "25339"}, "geometry": {"type": "Point", "coordinates": [6.25586783828, 47.0501143965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525b61f36069f125f42254b51566462490a5f2d2", "fields": {"nom_de_la_commune": "LONGEMAISON", "libell_d_acheminement": "LONGEMAISON", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25343"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8d1160054d2337d8f1fb80803f283b9e44b69d", "fields": {"nom_de_la_commune": "LUXIOL", "libell_d_acheminement": "LUXIOL", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25354"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ea5992f30a7e6cb2e9f1891048621b49eeed7b", "fields": {"nom_de_la_commune": "MALBUISSON", "libell_d_acheminement": "MALBUISSON", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25361"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac0de11cdcc7b9944b54ad97c29cf0a364b4a87", "fields": {"nom_de_la_commune": "MALPAS", "libell_d_acheminement": "MALPAS", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25362"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b85dda91f6d17147b6b80703f52926b518ece8f", "fields": {"nom_de_la_commune": "MAZEROLLES LE SALIN", "libell_d_acheminement": "MAZEROLLES LE SALIN", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25371"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b87b360dd224e3447ca6720566142ae7078434c5", "fields": {"nom_de_la_commune": "MEDIERE", "libell_d_acheminement": "MEDIERE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25372"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113d6a9dc59a0aeb6c3eed267c3a21f256d92981", "fields": {"nom_de_la_commune": "MEREY VIEILLEY", "libell_d_acheminement": "MEREY VIEILLEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25376"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7482f935833dd5668b72d86daba48b6afb70279", "fields": {"nom_de_la_commune": "MISEREY SALINES", "libell_d_acheminement": "MISEREY SALINES", "code_postal": "25480", "coordonnees_gps": [47.2739749265, 5.97316360482], "code_commune_insee": "25381"}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6546ce4803397f80f85855888092b9e5c2ea8498", "fields": {"code_postal": "25120", "code_commune_insee": "25392", "libell_d_acheminement": "MONT DE VOUGNEY", "ligne_5": "LE FRIOLAIS", "nom_de_la_commune": "MONT DE VOUGNEY", "coordonnees_gps": [47.2517789005, 6.78722407898]}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa39af1df40ac446ffa47607f0e00bac5d556b1", "fields": {"nom_de_la_commune": "MONTENOIS", "libell_d_acheminement": "MONTENOIS", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25394"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a6d814b6240eb9e87dc0d751ea264f2f1728e10", "fields": {"nom_de_la_commune": "MORTEAU", "libell_d_acheminement": "MORTEAU", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25411"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04beb78ce094607227501588fa659475e1c1eaca", "fields": {"nom_de_la_commune": "MOUTHE", "libell_d_acheminement": "MOUTHE", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25413"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd26ee0a68c5ef21b5b0f39eb9a9fef51819f951", "fields": {"nom_de_la_commune": "LE MOUTHEROT", "libell_d_acheminement": "LE MOUTHEROT", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25414"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c61e054b3d4e5bd468f5f514af10763cf7ca6a2", "fields": {"nom_de_la_commune": "NAISEY LES GRANGES", "libell_d_acheminement": "NAISEY LES GRANGES", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25417"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db04677edaa229ce7037947c823847dc93d301b", "fields": {"code_postal": "25360", "code_commune_insee": "25417", "libell_d_acheminement": "NAISEY LES GRANGES", "ligne_5": "GRANGES DE VIENNEY", "nom_de_la_commune": "NAISEY LES GRANGES", "coordonnees_gps": [47.2568575507, 6.29111857571]}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763f44cfc1d211797e6e447bf8b89ef7647887b3", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "CHASNANS", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3965285fc56d0380a27c0663a5a9c13e600dd8cb", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "RANTECHAUX", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8083428cda808baf12e3e9965d372b587d4a4b5", "fields": {"nom_de_la_commune": "NOEL CERNEUX", "libell_d_acheminement": "NOEL CERNEUX", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25425"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68d01478a94cf49f7aed505398bd0567ed5db87", "fields": {"nom_de_la_commune": "ORVE", "libell_d_acheminement": "ORVE", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25436"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf006496918d0ea98bc5a08e47c1149e9243256", "fields": {"nom_de_la_commune": "OUVANS", "libell_d_acheminement": "OUVANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25441"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dabd46b19529cdcb8ae0d17a5f89c54a92198e4", "fields": {"nom_de_la_commune": "OYE ET PALLET", "libell_d_acheminement": "OYE ET PALLET", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25442"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a108ec4f9cbb00b85375d3b8ca3581d333aec1e5", "fields": {"nom_de_la_commune": "PALANTINE", "libell_d_acheminement": "PALANTINE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25443"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2786cb3f1977debb70a535aee980aaa7dd263ba7", "fields": {"nom_de_la_commune": "PALISE", "libell_d_acheminement": "PALISE", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25444"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9a3f6de1183412ba1f72589ef81a0e9b31abe7d", "fields": {"nom_de_la_commune": "PLACEY", "libell_d_acheminement": "PLACEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25455"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bcef1f7fe7c3adb1882d2685885a8452414255", "fields": {"nom_de_la_commune": "POINTVILLERS", "libell_d_acheminement": "POINTVILLERS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25460"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2e87034c5baaee1ecc2dd32d66de58c9372ae9", "fields": {"code_postal": "25150", "code_commune_insee": "25463", "libell_d_acheminement": "PONT DE ROIDE VERMONDANS", "ligne_5": "VERMONDANS", "nom_de_la_commune": "PONT DE ROIDE VERMONDANS", "coordonnees_gps": [47.3948099665, 6.72943096547]}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5687806f0120805c349a872aee1d47e2df912a", "fields": {"nom_de_la_commune": "POUILLEY FRANCAIS", "libell_d_acheminement": "POUILLEY FRANCAIS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25466"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c91811d393e6ffeb68e374a7782550b072d2cd5", "fields": {"nom_de_la_commune": "POUILLEY LES VIGNES", "libell_d_acheminement": "POUILLEY LES VIGNES", "code_postal": "25115", "coordonnees_gps": [47.2603977173, 5.93606276445], "code_commune_insee": "25467"}, "geometry": {"type": "Point", "coordinates": [5.93606276445, 47.2603977173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f179ff922dd64d9de8642dbd94bb2bd64f35d661", "fields": {"nom_de_la_commune": "LA PRETIERE", "libell_d_acheminement": "LA PRETIERE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25470"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3397e0cb0f2f6818afaea63e1f51411ebc7585c", "fields": {"nom_de_la_commune": "RANCENAY", "libell_d_acheminement": "RANCENAY", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25477"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b787da7f88d0fb42ad1c90da6c46ad584ce06b", "fields": {"nom_de_la_commune": "REMORAY BOUJEONS", "libell_d_acheminement": "REMORAY BOUJEONS", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25486"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19df1c8a7ebf657cdaff21db30c587b81991b40b", "fields": {"nom_de_la_commune": "REUGNEY", "libell_d_acheminement": "REUGNEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25489"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2eee63e6a3c42e55b08c3eb8f6748d3841569c3", "fields": {"nom_de_la_commune": "RILLANS", "libell_d_acheminement": "RILLANS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25492"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8270c89bbcfcb7521d372320d4ddafa3b3a41b", "fields": {"nom_de_la_commune": "ROCHEJEAN", "libell_d_acheminement": "ROCHEJEAN", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25494"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a94be6ee8daa95efa582ad1535d21d027aa3f15", "fields": {"nom_de_la_commune": "ROCHES LES BLAMONT", "libell_d_acheminement": "ROCHES LES BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25497"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8662781008eaa37f21c6999a5fc84c8ab0dd396c", "fields": {"nom_de_la_commune": "ROSUREUX", "libell_d_acheminement": "ROSUREUX", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25504"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785e480d41157ea98ac00c06dbbdbb53c0db2d4e", "fields": {"code_postal": "25680", "code_commune_insee": "25505", "libell_d_acheminement": "ROUGEMONT", "ligne_5": "MORCHAMPS", "nom_de_la_commune": "ROUGEMONT", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72678a3b97e066590fe74a3954cd580969ebd535", "fields": {"nom_de_la_commune": "ROUGEMONTOT", "libell_d_acheminement": "ROUGEMONTOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25506"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4874e4ad9719da7b800d198b99c365aa3e3e15", "fields": {"nom_de_la_commune": "ROUHE", "libell_d_acheminement": "ROUHE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25507"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5444904ae571bd8f33f7ad1f4ad30494c97797", "fields": {"nom_de_la_commune": "RUREY", "libell_d_acheminement": "RUREY", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25511"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528d1bafb3b4ce5d4c6595afe8a043dd1079ab09", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25515"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91326b72fc8b67239389e754678e54846fa37f36", "fields": {"nom_de_la_commune": "ST JULIEN LES MONTBELIARD", "libell_d_acheminement": "ST JULIEN LES MONTBELIARD", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25521"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843a9ab40cd33b227ceefc7edf1d8e7d4b533565", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "25113", "coordonnees_gps": [47.5018427196, 6.69474080067], "code_commune_insee": "25523"}, "geometry": {"type": "Point", "coordinates": [6.69474080067, 47.5018427196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4abe5f964977f31449a638017350e790c6b21b8a", "fields": {"nom_de_la_commune": "SAULES", "libell_d_acheminement": "SAULES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25535"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f0157f5b2ea2e9391352128c8bc01cb5fef35a", "fields": {"nom_de_la_commune": "SEPTFONTAINES", "libell_d_acheminement": "SEPTFONTAINES", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25541"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb069a5146abeb4cde99e4ecd3b7102951e778c8", "fields": {"nom_de_la_commune": "SERRE LES SAPINS", "libell_d_acheminement": "SERRE LES SAPINS", "code_postal": "25770", "coordonnees_gps": [47.2322891241, 5.91617733766], "code_commune_insee": "25542"}, "geometry": {"type": "Point", "coordinates": [5.91617733766, 47.2322891241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56583f9bd0a252c408c1f1aa5a54488bb05bbacc", "fields": {"nom_de_la_commune": "SILLEY AMANCEY", "libell_d_acheminement": "SILLEY AMANCEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25545"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875b0e476cd7006f01c4d34cef46f85865ae16f6", "fields": {"nom_de_la_commune": "SURMONT", "libell_d_acheminement": "SURMONT", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25554"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cafc51984660cd143d7c257aa853afbd8f0cca", "fields": {"nom_de_la_commune": "THIEBOUHANS", "libell_d_acheminement": "THIEBOUHANS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25559"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231ebea05f847e4ff48e05824a689c5de37e91ce", "fields": {"nom_de_la_commune": "UZELLE", "libell_d_acheminement": "UZELLE", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25574"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2f2bf2c7263d8b7c82fbdb8647f0500a498e05", "fields": {"nom_de_la_commune": "VALDAHON", "libell_d_acheminement": "VALDAHON", "code_postal": "25800", "coordonnees_gps": [47.1494559066, 6.34818353393], "code_commune_insee": "25578"}, "geometry": {"type": "Point", "coordinates": [6.34818353393, 47.1494559066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcca42b8bb8b80df8b514b855d050c7642786e1b", "fields": {"nom_de_la_commune": "VALONNE", "libell_d_acheminement": "VALONNE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25583"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570b8b0d643f985d88e7089a4f2516922c93d401", "fields": {"nom_de_la_commune": "VANDONCOURT", "libell_d_acheminement": "VANDONCOURT", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25586"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd6fd00f38c3c535cd19c1e520256512fc4c793", "fields": {"nom_de_la_commune": "VAUDRIVILLERS", "libell_d_acheminement": "VAUDRIVILLERS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25590"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d8e70916c7b90c5859eb3a897634ea410f1c10", "fields": {"nom_de_la_commune": "VAUX LES PRES", "libell_d_acheminement": "VAUX LES PRES", "code_postal": "25770", "coordonnees_gps": [47.2322891241, 5.91617733766], "code_commune_insee": "25593"}, "geometry": {"type": "Point", "coordinates": [5.91617733766, 47.2322891241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f98151f4e7b8809a786d3a03120d98bb4913b64", "fields": {"nom_de_la_commune": "VELLEROT LES BELVOIR", "libell_d_acheminement": "VELLEROT LES BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25595"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d213e90b6f3661e0f00f8718c3b0dfc503bad1c", "fields": {"nom_de_la_commune": "VENNES", "libell_d_acheminement": "VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25600"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d48ccc3cdf8c3389383baa3affbea3ca8c3dc77", "fields": {"nom_de_la_commune": "VERNIERFONTAINE", "libell_d_acheminement": "VERNIERFONTAINE", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25605"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a45258800c4afe702c274b83db009cac34e5642", "fields": {"nom_de_la_commune": "VILLARS ST GEORGES", "libell_d_acheminement": "VILLARS ST GEORGES", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25616"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a6b6fac97056cad055317dc5775645ef948f7a", "fields": {"nom_de_la_commune": "ST MARTIN DE FONTENAY", "libell_d_acheminement": "ST MARTIN DE FONTENAY", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14623"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557e1574c357b86549c909da128579e65adcd259", "fields": {"nom_de_la_commune": "ST MARTIN DE LA LIEUE", "libell_d_acheminement": "ST MARTIN DE LA LIEUE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14625"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a678f1751f40b9857ea8d575b0db84aef8cc8b", "fields": {"nom_de_la_commune": "ST MARTIN DE MAILLOC", "libell_d_acheminement": "ST MARTIN DE MAILLOC", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14626"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6f4d0e91a5bff7cff4ea08786fda7656340b68", "fields": {"nom_de_la_commune": "ST PIERRE CANIVET", "libell_d_acheminement": "ST PIERRE CANIVET", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14646"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "353eff5276300a4100bf38ce52d0df1ffb270ab9", "fields": {"nom_de_la_commune": "ST PIERRE DES IFS", "libell_d_acheminement": "ST PIERRE DES IFS", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14648"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101a5a07ac201a9958aba45e1c7f709b55eb63ef", "fields": {"nom_de_la_commune": "ST PIERRE DU MONT", "libell_d_acheminement": "ST PIERRE DU MONT", "code_postal": "14450", "coordonnees_gps": [49.3773022601, -1.01912663237], "code_commune_insee": "14652"}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee57a679d13468840a92d5d1e8a19af871e2df5", "fields": {"nom_de_la_commune": "ST PIERRE SUR DIVES", "libell_d_acheminement": "ST PIERRE SUR DIVES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14654"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800ca25efb184da3da9a6b6cf444a42d7b22e274", "fields": {"nom_de_la_commune": "ST SYLVAIN", "libell_d_acheminement": "ST SYLVAIN", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14659"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d99594999fb18a23ed872d64ee61398067aa3b", "fields": {"nom_de_la_commune": "ST VAAST EN AUGE", "libell_d_acheminement": "ST VAAST EN AUGE", "code_postal": "14640", "coordonnees_gps": [49.3070612081, -0.000385070160039], "code_commune_insee": "14660"}, "geometry": {"type": "Point", "coordinates": [-0.000385070160039, 49.3070612081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba93a4d5510fef24f2d9eaf1297c6b2f5947102b", "fields": {"nom_de_la_commune": "SALLEN", "libell_d_acheminement": "SALLEN", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14664"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a209a3eb3104cec6ceb4515c515d0dcae66dd437", "fields": {"nom_de_la_commune": "SUBLES", "libell_d_acheminement": "SUBLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14679"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2227633c418142e2599bce142533b9cb57a4cac0", "fields": {"nom_de_la_commune": "SULLY", "libell_d_acheminement": "SULLY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14680"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddbb519fa7a9a503b1773d4c84a870347875914", "fields": {"nom_de_la_commune": "SURVILLE", "libell_d_acheminement": "SURVILLE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14682"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af573410eda459fd5b7512281b9c72bd72be6a1", "fields": {"nom_de_la_commune": "THIEVILLE", "libell_d_acheminement": "THIEVILLE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14688"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a0db2066ff5567e2fe751bb0800e9177b8102e", "fields": {"nom_de_la_commune": "TORTEVAL QUESNAY", "libell_d_acheminement": "TORTEVAL QUESNAY", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14695"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec60bc3a114f9da4dafc3436e48a23d92b468547", "fields": {"code_postal": "14240", "code_commune_insee": "14695", "libell_d_acheminement": "TORTEVAL QUESNAY", "ligne_5": "QUESNAY GUESNON", "nom_de_la_commune": "TORTEVAL QUESNAY", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880bf39da302039a4f1b890b4e5ac4f0e646789c", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "LIEURY", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad0a3925855fb4350e341e6993286478d78a393", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "MONTPINCON", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e1206397c0358c8acf1d8b2098ee9cf1c56fc12", "fields": {"nom_de_la_commune": "TOUFFREVILLE", "libell_d_acheminement": "TOUFFREVILLE", "code_postal": "14940", "coordonnees_gps": [49.1833480619, -0.224513518796], "code_commune_insee": "14698"}, "geometry": {"type": "Point", "coordinates": [-0.224513518796, 49.1833480619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29f02752b3148eee0d95a95be19228bb3631ac2", "fields": {"nom_de_la_commune": "TOURNIERES", "libell_d_acheminement": "TOURNIERES", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14705"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c55b07979b0be948086597af9277edad58baad0", "fields": {"nom_de_la_commune": "TOURVILLE SUR ODON", "libell_d_acheminement": "TOURVILLE SUR ODON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14707"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca9971691be19fc3d2056d59e2a06ffe97026b8", "fields": {"nom_de_la_commune": "LE TRONQUAY", "libell_d_acheminement": "LE TRONQUAY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14714"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712f4298d18b0b1215a2d5118b801f8912904a38", "fields": {"nom_de_la_commune": "TROUVILLE SUR MER", "libell_d_acheminement": "TROUVILLE SUR MER", "code_postal": "14360", "coordonnees_gps": [49.3720315323, 0.101175755838], "code_commune_insee": "14715"}, "geometry": {"type": "Point", "coordinates": [0.101175755838, 49.3720315323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "025f0a5ba0918d2f4a54e6600eacad59a09f78e3", "fields": {"nom_de_la_commune": "USSY", "libell_d_acheminement": "USSY", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14720"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a8833fb809fe1a6eb2710ce8812035cc24d8857", "fields": {"code_postal": "14350", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "LE DESERT", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0342d8432d20422f0fc755d6e01a8d56dba79e0f", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "LA ROCQUE", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d5b8adc06eacb39121e594ca63e30828e30f1f", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "LE THEIL BOCAGE", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0920cda11740e82046aa651f946800bd6f2e6201", "fields": {"nom_de_la_commune": "VAUVILLE", "libell_d_acheminement": "VAUVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14731"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2646a0896fbdfaf5a796e1b39a8f13900247b727", "fields": {"nom_de_la_commune": "VENDES", "libell_d_acheminement": "VENDES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14734"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fb121b9f4448f822afb3a848e2705dd3380dbb", "fields": {"code_postal": "14170", "code_commune_insee": "14735", "libell_d_acheminement": "VENDEUVRE", "ligne_5": "ESCURES SUR FAVIERES", "nom_de_la_commune": "VENDEUVRE", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce38ba4c35e957d125242aaaf46218b1afa82c5", "fields": {"nom_de_la_commune": "VER SUR MER", "libell_d_acheminement": "VER SUR MER", "code_postal": "14114", "coordonnees_gps": [49.333911866, -0.528087452787], "code_commune_insee": "14739"}, "geometry": {"type": "Point", "coordinates": [-0.528087452787, 49.333911866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01137a846db68ebedbd073693c7e0c03a7e7c4d3", "fields": {"nom_de_la_commune": "LA VESPIERE FRIARDEL", "libell_d_acheminement": "LA VESPIERE FRIARDEL", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14740"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb774b4243bb211e2aed1c27a4da7db7ac4a2a00", "fields": {"code_postal": "14290", "code_commune_insee": "14740", "libell_d_acheminement": "LA VESPIERE FRIARDEL", "ligne_5": "FRIARDEL", "nom_de_la_commune": "LA VESPIERE FRIARDEL", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07bec870ca6262431d6f9b4c617438921bc3949", "fields": {"nom_de_la_commune": "VIERVILLE SUR MER", "libell_d_acheminement": "VIERVILLE SUR MER", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14745"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c76c216a4e94ad7a520baca691d9efab050f5c", "fields": {"nom_de_la_commune": "VIEUX", "libell_d_acheminement": "VIEUX", "code_postal": "14930", "coordonnees_gps": [49.1299717664, -0.432158841819], "code_commune_insee": "14747"}, "geometry": {"type": "Point", "coordinates": [-0.432158841819, 49.1299717664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f98e23914dd83adc40ea8fb99cd221079fe1418", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14757"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f35374cb4d04185a8b085e6c750d8e042f478dd", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "ROULLOURS", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf29273e433e5ee838275538844ae69e2d4f2c48", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "ST GERMAIN DE TALLEVENDE", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2328620bd49c57c2d7f36b2c2246d3632fdea4cb", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "ST MARTIN DE TALLEVENDE", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cc020af75d531e8bd617ac1b8d3a3039f867fa", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "TRUTTEMER LE PETIT", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711cace6a9d759ad5a43e90a3958ad9f3c2911b1", "fields": {"nom_de_la_commune": "VOUILLY", "libell_d_acheminement": "VOUILLY", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14763"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e1419ab7a2835eeb97bee34756e8449c1eb2e2", "fields": {"nom_de_la_commune": "ANGLARDS DE ST FLOUR", "libell_d_acheminement": "ANGLARDS DE ST FLOUR", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15005"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310133ac52aa8d5a5b15c9f3a9341c23baf8b9b2", "fields": {"nom_de_la_commune": "AUZERS", "libell_d_acheminement": "AUZERS", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15015"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5621961705cfab3675adcf952cf174750868a256", "fields": {"nom_de_la_commune": "ALBEPIERRE BREDONS", "libell_d_acheminement": "ALBEPIERRE BREDONS", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15025"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a50c08693eee93cfaf70927ff8c02b0dea9384c", "fields": {"nom_de_la_commune": "CALVINET", "libell_d_acheminement": "CALVINET", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15027"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37249095d6f2e99500a1079be99c53fecb880e0", "fields": {"nom_de_la_commune": "CEZENS", "libell_d_acheminement": "CEZENS", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15033"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d3d5ff93d28c6a12481c73c60e1d056d327655", "fields": {"nom_de_la_commune": "CHARMENSAC", "libell_d_acheminement": "CHARMENSAC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15043"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7dc4a95dd1eb49a8c537cbcbe6702f56838b9e4", "fields": {"nom_de_la_commune": "CHEYLADE", "libell_d_acheminement": "CHEYLADE", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15049"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3f9a2a9441f24ca92e09c921ce83bddba2b5de", "fields": {"nom_de_la_commune": "CONDAT", "libell_d_acheminement": "CONDAT", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15054"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6d064e14bf658af3314cce55a4028849525c5e", "fields": {"nom_de_la_commune": "COREN", "libell_d_acheminement": "COREN", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15055"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b852437131e9a8e372c83efdfd5ce9ccd4def1e8", "fields": {"nom_de_la_commune": "CROS DE MONTVERT", "libell_d_acheminement": "CROS DE MONTVERT", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15057"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6653a32fda01ddd14919bff8b1c05a6ef21d6a4f", "fields": {"nom_de_la_commune": "CROS DE RONESQUE", "libell_d_acheminement": "CROS DE RONESQUE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15058"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ddca75cdf3c2bd438dc279e3dc9e0baa10ac22", "fields": {"nom_de_la_commune": "FONTANGES", "libell_d_acheminement": "FONTANGES", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15070"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08e694d8fd2986e44c60acfc1828414fb1e5652", "fields": {"nom_de_la_commune": "GIOU DE MAMOU", "libell_d_acheminement": "GIOU DE MAMOU", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15074"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd63e8b01c9a3e16e88c24705d64f1fd0a4556e", "fields": {"nom_de_la_commune": "JOURSAC", "libell_d_acheminement": "JOURSAC", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15080"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046c5f87e8861ef83aef368da73564b5475f1502", "fields": {"nom_de_la_commune": "JUSSAC", "libell_d_acheminement": "JUSSAC", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15083"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ce98fd32162c97898549dcf0aaecfaab9d5ee6", "fields": {"nom_de_la_commune": "LAFEUILLADE EN VEZIE", "libell_d_acheminement": "LAFEUILLADE EN VEZIE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15090"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f1fe900088ba2f4a021adb87ee3e4fb87a3c52", "fields": {"nom_de_la_commune": "LANOBRE", "libell_d_acheminement": "LANOBRE", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15092"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07953006556da23ac6bd9aa0e37f5d5e5100c7a0", "fields": {"nom_de_la_commune": "LAROQUEVIEILLE", "libell_d_acheminement": "LAROQUEVIEILLE", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15095"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9af4b951429bdb93404a43e959332aa167d6414b", "fields": {"nom_de_la_commune": "LAVIGERIE", "libell_d_acheminement": "LAVIGERIE", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15102"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16debf45bec36ef47a060042b2cd017ecd0ed382", "fields": {"nom_de_la_commune": "LEYNHAC", "libell_d_acheminement": "LEYNHAC", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15104"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c16dda600ac1fa0149a1f4be5e29ed742cc575e", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "FAVEROLLES", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a558bd9b300a7a55edbbf3d9f0c6fe0d17efc41", "fields": {"nom_de_la_commune": "LUGARDE", "libell_d_acheminement": "LUGARDE", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15110"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091c10a7f7ae79aca90ac26dfcafda168e7843a5", "fields": {"nom_de_la_commune": "MASSIAC", "libell_d_acheminement": "MASSIAC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15119"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24310e135e470f46070ffaeec88bd26f80c45fae", "fields": {"nom_de_la_commune": "MENTIERES", "libell_d_acheminement": "MENTIERES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15125"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725ffe65652337d0b55762ac7346508494fce992", "fields": {"nom_de_la_commune": "MONTCHAMP", "libell_d_acheminement": "MONTCHAMP", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15130"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c1be7a6be32808bff49db1296d0c9ad52668cd", "fields": {"nom_de_la_commune": "MOUSSAGES", "libell_d_acheminement": "MOUSSAGES", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15137"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7010ffc9202cd98d207ca7854882ee863632f899", "fields": {"nom_de_la_commune": "NIEUDAN", "libell_d_acheminement": "NIEUDAN", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15143"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b024af9bb748f0bbd19ebc1ae7746d5742e979", "fields": {"nom_de_la_commune": "ORADOUR", "libell_d_acheminement": "ORADOUR", "code_postal": "15260", "coordonnees_gps": [44.930379785, 2.97483208251], "code_commune_insee": "15145"}, "geometry": {"type": "Point", "coordinates": [2.97483208251, 44.930379785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae798a03cc6b4e6231e83ee860c1a4223dba1067", "fields": {"nom_de_la_commune": "PAULHENC", "libell_d_acheminement": "PAULHENC", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15149"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9239f1f8538c631521bfb3b4ceb718fc3b5db75a", "fields": {"code_postal": "15700", "code_commune_insee": "15153", "libell_d_acheminement": "PLEAUX", "ligne_5": "TOURNIAC", "nom_de_la_commune": "PLEAUX", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43c16074c32412196af4d39d0562166d015da2f7", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15165"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ed4f49e038df0715c6cce46e6faa79f2297b4e", "fields": {"nom_de_la_commune": "STE ANASTASIE", "libell_d_acheminement": "STE ANASTASIE", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15171"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e67f5d96612e9303184f77c4286184cf5db7c4d", "fields": {"nom_de_la_commune": "ST BONNET DE CONDAT", "libell_d_acheminement": "ST BONNET DE CONDAT", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15173"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff49a6879eef96284ce565daf3eb51bc17496b1e", "fields": {"nom_de_la_commune": "ST CIRGUES DE JORDANNE", "libell_d_acheminement": "ST CIRGUES DE JORDANNE", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15178"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4cf5d534671c01143c331a67c303fd4b5f975e5", "fields": {"nom_de_la_commune": "ST ETIENNE DE CARLAT", "libell_d_acheminement": "ST ETIENNE DE CARLAT", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15183"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58744650c653a6816466cd4ce5fef59f255a316", "fields": {"nom_de_la_commune": "ST ETIENNE DE CHOMEIL", "libell_d_acheminement": "ST ETIENNE DE CHOMEIL", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15185"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fdc661ede48f641676c138d47b8a40ceb5be7a", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15186"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68f784688a85e6d08fbdccd1c704180b19ddaf5", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15188"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea367479c089346b0fb94f83bb1879ec4366b59", "fields": {"nom_de_la_commune": "ST GERONS", "libell_d_acheminement": "ST GERONS", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15189"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5dbf148835e0926207cf0f63ea7fc4b1024f30", "fields": {"nom_de_la_commune": "ST PAUL DE SALERS", "libell_d_acheminement": "ST PAUL DE SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15205"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dd1c40c3f17217f86e19903e7ae54ea33bf0d2", "fields": {"nom_de_la_commune": "ST REMY DE CHAUDES AIGUES", "libell_d_acheminement": "ST REMY DE CHAUDES AIGUES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15209"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85406a658ed698ba3e8f8bc1145407f19ee886a", "fields": {"nom_de_la_commune": "ST SANTIN CANTALES", "libell_d_acheminement": "ST SANTIN CANTALES", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15211"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d4b6cd8788e6fd00366e181d2192cd87043ea6", "fields": {"nom_de_la_commune": "ST SANTIN DE MAURS", "libell_d_acheminement": "ST SANTIN DE MAURS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15212"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239e510ffe796662f26313c55c140bacd7948c67", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15213"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d20bd15116d0433f91bbcbb61efe4b4d0f7129b", "fields": {"nom_de_la_commune": "ST VINCENT DE SALERS", "libell_d_acheminement": "ST VINCENT DE SALERS", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15218"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82da4d4eeb5282cac20c35b515ad442e5dac7cfb", "fields": {"nom_de_la_commune": "SANSAC VEINAZES", "libell_d_acheminement": "SANSAC VEINAZES", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15222"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb49be605ca9c4c80381cb189d8f132be76abfe", "fields": {"nom_de_la_commune": "SEGUR LES VILLAS", "libell_d_acheminement": "SEGUR LES VILLAS", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15225"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c492d62aa5d1051e953b5cd01b0765de0514b88", "fields": {"nom_de_la_commune": "SENEZERGUES", "libell_d_acheminement": "SENEZERGUES", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15226"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290c329634fedc2afca81e4bffad9c47e3a9303b", "fields": {"nom_de_la_commune": "LE TRIOULOU", "libell_d_acheminement": "LE TRIOULOU", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15242"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8645aff3a400bb2a77bd2108ab1c6fe23b14a2a", "fields": {"nom_de_la_commune": "VABRES", "libell_d_acheminement": "VABRES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15245"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8555cfd8ddcbd2eec47cab22538c0e5c781121d", "fields": {"nom_de_la_commune": "VALJOUZE", "libell_d_acheminement": "VALJOUZE", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15247"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccbcd7a3375d9e8b6dc90035939839af0cf9fa43", "fields": {"nom_de_la_commune": "VALUEJOLS", "libell_d_acheminement": "VALUEJOLS", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15248"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6641b7483e493c517d020482cdd753a1d7e2ffd9", "fields": {"nom_de_la_commune": "VEYRIERES", "libell_d_acheminement": "VEYRIERES", "code_postal": "15350", "coordonnees_gps": [45.360785771, 2.38882162229], "code_commune_insee": "15254"}, "geometry": {"type": "Point", "coordinates": [2.38882162229, 45.360785771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed60759391042af5d697d05b41d5959a8a41318", "fields": {"nom_de_la_commune": "YDES", "libell_d_acheminement": "YDES", "code_postal": "15210", "coordonnees_gps": [45.3513333268, 2.45227003006], "code_commune_insee": "15265"}, "geometry": {"type": "Point", "coordinates": [2.45227003006, 45.3513333268]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a2308bf9e23d7a2d3d52805e0994ce336ffe25", "fields": {"nom_de_la_commune": "AIGRE", "libell_d_acheminement": "AIGRE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16005"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7380ae6bd5f9f24ee9c9332ab417bb42924dc006", "fields": {"nom_de_la_commune": "AMBLEVILLE", "libell_d_acheminement": "AMBLEVILLE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16010"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56fc48cc631237c816bb0ea435b36d3ba0fae9a5", "fields": {"nom_de_la_commune": "ANAIS", "libell_d_acheminement": "ANAIS", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16011"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce8e01f1b3b67f408540a8ddaf3ad43d4772125", "fields": {"nom_de_la_commune": "ANGEDUC", "libell_d_acheminement": "ANGEDUC", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16014"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b041d8ce8b91c355d9c5ae14a4306443e7cd4ca0", "fields": {"nom_de_la_commune": "ARS", "libell_d_acheminement": "ARS", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16018"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5777d4979c1e8bc724a67609dec894dec98d51bc", "fields": {"nom_de_la_commune": "TIZAC DE LAPOUYADE", "libell_d_acheminement": "TIZAC DE LAPOUYADE", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33532"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba10098aee593d68b33f257a8b5e38dc23195f2", "fields": {"nom_de_la_commune": "VAYRES", "libell_d_acheminement": "VAYRES", "code_postal": "33870", "coordonnees_gps": [44.8909014502, -0.326856220628], "code_commune_insee": "33539"}, "geometry": {"type": "Point", "coordinates": [-0.326856220628, 44.8909014502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3277916ed9d633912d5ed4b3e6cc6d4adb7d9f4", "fields": {"nom_de_la_commune": "VENSAC", "libell_d_acheminement": "VENSAC", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33541"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa4b1e2e617aae02a89d10fc0873c7c669c30dd", "fields": {"nom_de_la_commune": "VERTHEUIL", "libell_d_acheminement": "VERTHEUIL", "code_postal": "33180", "coordonnees_gps": [45.262541575, -0.809284319605], "code_commune_insee": "33545"}, "geometry": {"type": "Point", "coordinates": [-0.809284319605, 45.262541575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ace517034292de946e89ac11f9b5ee2739e8d42", "fields": {"nom_de_la_commune": "AGDE", "libell_d_acheminement": "AGDE", "code_postal": "34300", "coordonnees_gps": [43.3094378248, 3.48447174054], "code_commune_insee": "34003"}, "geometry": {"type": "Point", "coordinates": [3.48447174054, 43.3094378248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebbcb3723842797608223234e576b4832fecbfe", "fields": {"nom_de_la_commune": "AGEL", "libell_d_acheminement": "AGEL", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34004"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "355cb0fb2bb8a213827eb617ba342668b75387c0", "fields": {"nom_de_la_commune": "ALIGNAN DU VENT", "libell_d_acheminement": "ALIGNAN DU VENT", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34009"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3a78ca53790af273105b8f411721dd3fb4bf42", "fields": {"nom_de_la_commune": "ASSIGNAN", "libell_d_acheminement": "ASSIGNAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34015"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f08a796e570399c1c734932390403188861c08", "fields": {"nom_de_la_commune": "BASSAN", "libell_d_acheminement": "BASSAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34025"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bfb2bdae4992c17e37071eb662b7b9de07b1358", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34026"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ef616133b3cfd0af7cb8373f8e6dc95c261f62", "fields": {"nom_de_la_commune": "BELARGA", "libell_d_acheminement": "BELARGA", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34029"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8195be2ae46b6d974983a6a5c2d141120731b1ba", "fields": {"nom_de_la_commune": "BESSAN", "libell_d_acheminement": "BESSAN", "code_postal": "34550", "coordonnees_gps": [43.3573233197, 3.41582676932], "code_commune_insee": "34031"}, "geometry": {"type": "Point", "coordinates": [3.41582676932, 43.3573233197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41097c3446a23002e6463f05396eb4d90440a3d4", "fields": {"nom_de_la_commune": "BOISSERON", "libell_d_acheminement": "BOISSERON", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34033"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd08743286a391e702d14f56b6e918b7b66c57b3", "fields": {"nom_de_la_commune": "BOUJAN SUR LIBRON", "libell_d_acheminement": "BOUJAN SUR LIBRON", "code_postal": "34760", "coordonnees_gps": [43.3796434346, 3.26335863386], "code_commune_insee": "34037"}, "geometry": {"type": "Point", "coordinates": [3.26335863386, 43.3796434346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8704cc59447e3ca574028e2af9869ee3781cdd1c", "fields": {"nom_de_la_commune": "LE BOUSQUET D ORB", "libell_d_acheminement": "LE BOUSQUET D ORB", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34038"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a19ba03fa3ca56927ede5bdc480c081cb06c0d", "fields": {"nom_de_la_commune": "BOUZIGUES", "libell_d_acheminement": "BOUZIGUES", "code_postal": "34140", "coordonnees_gps": [43.4368537431, 3.59942976108], "code_commune_insee": "34039"}, "geometry": {"type": "Point", "coordinates": [3.59942976108, 43.4368537431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb350363617303ab8bbf04d21870bbead55f16f", "fields": {"nom_de_la_commune": "CABRIERES", "libell_d_acheminement": "CABRIERES", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34045"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6d77e5b5d10c7d552e870a425a35bf6ccdbe35", "fields": {"nom_de_la_commune": "CAMPAGNAN", "libell_d_acheminement": "CAMPAGNAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34047"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9270ce03622e83758920f1bcc18ef245da33bdfc", "fields": {"nom_de_la_commune": "CASTELNAU DE GUERS", "libell_d_acheminement": "CASTELNAU DE GUERS", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34056"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8d56503ce5dc548d26ce2869c5a93c377c6858", "fields": {"nom_de_la_commune": "CASTRIES", "libell_d_acheminement": "CASTRIES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34058"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d191f606616a21dd13ee211f52a39844008b48c7", "fields": {"nom_de_la_commune": "CAZOULS LES BEZIERS", "libell_d_acheminement": "CAZOULS LES BEZIERS", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34069"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567dd48ee83eb4f6b60cc7050343f52b78504d84", "fields": {"nom_de_la_commune": "CEBAZAN", "libell_d_acheminement": "CEBAZAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34070"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eff1b573380ee96c0c98a9cb5648135d02260bc8", "fields": {"nom_de_la_commune": "CLARET", "libell_d_acheminement": "CLARET", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34078"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43a43f8b204fb1debc0a7a5f63b9ed03b24209b", "fields": {"nom_de_la_commune": "COMBAILLAUX", "libell_d_acheminement": "COMBAILLAUX", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34082"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d35a2605e7231df6a18fe53f9040a98d0954d4", "fields": {"nom_de_la_commune": "COMBES", "libell_d_acheminement": "COMBES", "code_postal": "34240", "coordonnees_gps": [43.6002437249, 3.06165252657], "code_commune_insee": "34083"}, "geometry": {"type": "Point", "coordinates": [3.06165252657, 43.6002437249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c061a17f67013d1a09a841b53e1039cf12bad35a", "fields": {"nom_de_la_commune": "CREISSAN", "libell_d_acheminement": "CREISSAN", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34089"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c7ca4466991aabb19e39d91e5b110f7522f055", "fields": {"nom_de_la_commune": "CRUZY", "libell_d_acheminement": "CRUZY", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34092"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26735d926d95ceba10c73c96dce2fff601b6e10c", "fields": {"nom_de_la_commune": "DIO ET VALQUIERES", "libell_d_acheminement": "DIO ET VALQUIERES", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34093"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896905fd91808a063dd7cef172e174902f353497", "fields": {"nom_de_la_commune": "FERRIERES LES VERRERIES", "libell_d_acheminement": "FERRIERES LES VERRERIES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34099"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f42d87dcfbc753180de9a039fcb10e02c6fb1e11", "fields": {"nom_de_la_commune": "FONTES", "libell_d_acheminement": "FONTES", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34103"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1763a60493f96b16b663a021e2b45c6c923cd106", "fields": {"nom_de_la_commune": "FOUZILHON", "libell_d_acheminement": "FOUZILHON", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34105"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b38f070213c3ef778ce8ca6757a1c8de632c238", "fields": {"nom_de_la_commune": "FRONTIGNAN", "libell_d_acheminement": "FRONTIGNAN", "code_postal": "34110", "coordonnees_gps": [43.471821386, 3.77729139459], "code_commune_insee": "34108"}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790791171fdabd97eb0d862d7b00b1dd9c001198", "fields": {"nom_de_la_commune": "GIGNAC", "libell_d_acheminement": "GIGNAC", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34114"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999a6325d9c84397124fd51f7d154379cd104f87", "fields": {"nom_de_la_commune": "HEREPIAN", "libell_d_acheminement": "HEREPIAN", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34119"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f724ec4a99204643f4667d782cc362c1d0fd5c", "fields": {"nom_de_la_commune": "JONCELS", "libell_d_acheminement": "JONCELS", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34121"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f767357464b172efc5a384f1288ce358495eba7", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34122"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4733500723820fda0b9bb96fdbb4780e1877502f", "fields": {"nom_de_la_commune": "LACOSTE", "libell_d_acheminement": "LACOSTE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34124"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a529b4d125dec14074eb6b3e700571db5cf8f3c3", "fields": {"nom_de_la_commune": "LAURENS", "libell_d_acheminement": "LAURENS", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34130"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986d12a1241759c60023293c632c4cc305ebcb07", "fields": {"nom_de_la_commune": "LAVALETTE", "libell_d_acheminement": "LAVALETTE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34133"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c8dc9c01d6f90b8fd1d2f849fd9c078338c652", "fields": {"nom_de_la_commune": "LIEURAN LES BEZIERS", "libell_d_acheminement": "LIEURAN LES BEZIERS", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34139"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859ecc105f017ff472856922013ffeafbdbcc579", "fields": {"nom_de_la_commune": "LUNAS", "libell_d_acheminement": "LUNAS", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34144"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71e1aa277f405fd29c7e736deedf4093bf64030", "fields": {"nom_de_la_commune": "MARSEILLAN", "libell_d_acheminement": "MARSEILLAN", "code_postal": "34340", "coordonnees_gps": [43.3603485719, 3.54723138046], "code_commune_insee": "34150"}, "geometry": {"type": "Point", "coordinates": [3.54723138046, 43.3603485719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560de7e83fe8558574e36f19f48b6e7edfa19cdc", "fields": {"nom_de_la_commune": "MARSILLARGUES", "libell_d_acheminement": "MARSILLARGUES", "code_postal": "34590", "coordonnees_gps": [43.6262438972, 4.14804553489], "code_commune_insee": "34151"}, "geometry": {"type": "Point", "coordinates": [4.14804553489, 43.6262438972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d517c56d99126a42c8c00d5a4a1bbcafb1c2f82", "fields": {"nom_de_la_commune": "MAUREILHAN", "libell_d_acheminement": "MAUREILHAN", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34155"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b832e2b833ebc960a5cb2565ae9cd81dccdefd", "fields": {"nom_de_la_commune": "MIREVAL", "libell_d_acheminement": "MIREVAL", "code_postal": "34110", "coordonnees_gps": [43.471821386, 3.77729139459], "code_commune_insee": "34159"}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e56c2fb0695d9b3390342300b2e4ee33251f10", "fields": {"nom_de_la_commune": "MONTAGNAC", "libell_d_acheminement": "MONTAGNAC", "code_postal": "34530", "coordonnees_gps": [43.4730122504, 3.50379748517], "code_commune_insee": "34162"}, "geometry": {"type": "Point", "coordinates": [3.50379748517, 43.4730122504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9837871e531db2ad34c244dcadff5e4db20e2dc9", "fields": {"nom_de_la_commune": "MONTAUD", "libell_d_acheminement": "MONTAUD", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34164"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7826a3ea6d75c805772b51a50f51726446f47ca4", "fields": {"nom_de_la_commune": "MONTELS", "libell_d_acheminement": "MONTELS", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34167"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9362d55df52d7aa38f48b5bc81221f183bb94391", "fields": {"nom_de_la_commune": "MONTFERRIER SUR LEZ", "libell_d_acheminement": "MONTFERRIER SUR LEZ", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34169"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16cd0c8f4a125912bcab45493ed4d6dd998d3ad", "fields": {"nom_de_la_commune": "MONTOULIERS", "libell_d_acheminement": "MONTOULIERS", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34170"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b086bb6a12dab05924b3ad0eb9756cb02db569", "fields": {"nom_de_la_commune": "MURLES", "libell_d_acheminement": "MURLES", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34177"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f9175d1628e497d99c73c8fac5ece4403e0267", "fields": {"nom_de_la_commune": "OLMET ET VILLECUN", "libell_d_acheminement": "OLMET ET VILLECUN", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34188"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24331dd05821ca732e249c41fbd96212af75eedb", "fields": {"nom_de_la_commune": "PARDAILHAN", "libell_d_acheminement": "PARDAILHAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34193"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b59671b0d5e31f00679eaac07ef2874cd5790c", "fields": {"nom_de_la_commune": "PEGAIROLLES DE BUEGES", "libell_d_acheminement": "PEGAIROLLES DE BUEGES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34195"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a140d05d6acb438f66ca84ed441353e38c4dfc5b", "fields": {"nom_de_la_commune": "PERET", "libell_d_acheminement": "PERET", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34197"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "714d9546185247db6403706c317b52855a3a1e11", "fields": {"nom_de_la_commune": "PIERRERUE", "libell_d_acheminement": "PIERRERUE", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34201"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3132a86fb444deaf4449f97958cd57a6904dfcac", "fields": {"nom_de_la_commune": "PLAISSAN", "libell_d_acheminement": "PLAISSAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34204"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f991d9caf85b8ae8a91ae4208971c809af02cff", "fields": {"nom_de_la_commune": "LE POUJOL SUR ORB", "libell_d_acheminement": "LE POUJOL SUR ORB", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34211"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f21e8729cc962cbdd07c800a63ffec160e5edc", "fields": {"nom_de_la_commune": "PREMIAN", "libell_d_acheminement": "PREMIAN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34219"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eda49663143a60ef0d21722d5300cfb525f1351", "fields": {"nom_de_la_commune": "PUIMISSON", "libell_d_acheminement": "PUIMISSON", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34223"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1aa16e77f9217334296a14bc2495a3427c0c4f", "fields": {"nom_de_la_commune": "QUARANTE", "libell_d_acheminement": "QUARANTE", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34226"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2966165a1f366b8fd6e4b98f56bff953847dd4", "fields": {"nom_de_la_commune": "RESTINCLIERES", "libell_d_acheminement": "RESTINCLIERES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34227"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "017171c70fdcc61f009e23baff26720cd84452d1", "fields": {"nom_de_la_commune": "RIEUSSEC", "libell_d_acheminement": "RIEUSSEC", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34228"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437ad36b8abd3c11ef4ee6ff59330536c3b497f7", "fields": {"nom_de_la_commune": "STE CROIX DE QUINTILLARGUES", "libell_d_acheminement": "STE CROIX DE QUINTILLARGUES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34248"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fd03e1a6f48ced546f4808a76fa59bc8218df2", "fields": {"nom_de_la_commune": "ST FELIX DE L HERAS", "libell_d_acheminement": "ST FELIX DE L HERAS", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34253"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316bf0e1c988a28a8fabd7ae42ea1bd5f861b331", "fields": {"nom_de_la_commune": "ST GENIES DE VARENSAL", "libell_d_acheminement": "ST GENIES DE VARENSAL", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34257"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a801e0d4a4112027af5df2f96636d865922b201d", "fields": {"nom_de_la_commune": "ST GEORGES D ORQUES", "libell_d_acheminement": "ST GEORGES D ORQUES", "code_postal": "34680", "coordonnees_gps": [43.6166912889, 3.77419887288], "code_commune_insee": "34259"}, "geometry": {"type": "Point", "coordinates": [3.77419887288, 43.6166912889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9baf4da20aa25125b9e4c4f61c3758eca57af37c", "fields": {"nom_de_la_commune": "ST PONS DE THOMIERES", "libell_d_acheminement": "ST PONS DE THOMIERES", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34284"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6bbf36eb74d81a2c9f00677fd4e651b04792d8", "fields": {"nom_de_la_commune": "ST THIBERY", "libell_d_acheminement": "ST THIBERY", "code_postal": "34630", "coordonnees_gps": [43.3921796928, 3.40013645571], "code_commune_insee": "34289"}, "geometry": {"type": "Point", "coordinates": [3.40013645571, 43.3921796928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6bc855465ed6e3c2305aabf875f141a7f0a5f2f", "fields": {"nom_de_la_commune": "ST VINCENT DE BARBEYRARGUES", "libell_d_acheminement": "ST VINCENT DE BARBEYRARGUES", "code_postal": "34730", "coordonnees_gps": [43.7084709884, 3.86709593283], "code_commune_insee": "34290"}, "geometry": {"type": "Point", "coordinates": [3.86709593283, 43.7084709884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f958f76378e3ad4328562c3724fa773eef01192", "fields": {"nom_de_la_commune": "ST VINCENT D OLARGUES", "libell_d_acheminement": "ST VINCENT D OLARGUES", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34291"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6da7fe870a487742164c96e40e6f9c39f116ddf", "fields": {"nom_de_la_commune": "SAUSSAN", "libell_d_acheminement": "SAUSSAN", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34295"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2cadcad39d5f16bca36efbf625a588270f485f", "fields": {"nom_de_la_commune": "SAUSSINES", "libell_d_acheminement": "SAUSSINES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34296"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06043d11ae3403134e1db4e525f9a351f3694a4", "fields": {"nom_de_la_commune": "SIRAN", "libell_d_acheminement": "SIRAN", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34302"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c500cbd00c9cee34549d4cbc3d9adb19edbf85e0", "fields": {"nom_de_la_commune": "LE SOULIE", "libell_d_acheminement": "LE SOULIE", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34305"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408748cf45e70455b0aefd7e294ce80fb5fc655f", "fields": {"nom_de_la_commune": "TEYRAN", "libell_d_acheminement": "TEYRAN", "code_postal": "34820", "coordonnees_gps": [43.7090659495, 3.91319760845], "code_commune_insee": "34309"}, "geometry": {"type": "Point", "coordinates": [3.91319760845, 43.7090659495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb35d8bc13732b4c1632d0550e699ecc9f4976cf", "fields": {"nom_de_la_commune": "THEZAN LES BEZIERS", "libell_d_acheminement": "THEZAN LES BEZIERS", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34310"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8007416f2d2fe607bfdde382b81fcdeebae7dd", "fields": {"nom_de_la_commune": "VAILHAN", "libell_d_acheminement": "VAILHAN", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34319"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6afb7e9c7a96eec08405a8dd6e56453397d308e", "fields": {"nom_de_la_commune": "VAILHAUQUES", "libell_d_acheminement": "VAILHAUQUES", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34320"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09fc76b9cb57da0f493025ed07355580991025e", "fields": {"nom_de_la_commune": "VELIEUX", "libell_d_acheminement": "VELIEUX", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34326"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ad45ad6ff6f55efd7f8b456f8e10864fccc51a", "fields": {"nom_de_la_commune": "VENDEMIAN", "libell_d_acheminement": "VENDEMIAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34328"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2d74c633255a4897fa258c02da4202fab60bf9", "fields": {"nom_de_la_commune": "VILLENEUVE LES BEZIERS", "libell_d_acheminement": "VILLENEUVE LES BEZIERS", "code_postal": "34420", "coordonnees_gps": [43.3127282598, 3.32015070092], "code_commune_insee": "34336"}, "geometry": {"type": "Point", "coordinates": [3.32015070092, 43.3127282598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d208206e0a8e52feabfb0fd24d07baccef38d87", "fields": {"nom_de_la_commune": "VILLENEUVETTE", "libell_d_acheminement": "VILLENEUVETTE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34338"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc12c2f132f2abc12375f6742dc4176f6ae2b3d", "fields": {"nom_de_la_commune": "VILLETELLE", "libell_d_acheminement": "VILLETELLE", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34340"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf3267aa76e5410d93a94b3656efa2eadbfdc81f", "fields": {"nom_de_la_commune": "ARGENTRE DU PLESSIS", "libell_d_acheminement": "ARGENTRE DU PLESSIS", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35006"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84df8923a478c295400194d67cbf284b9eec8ae9", "fields": {"nom_de_la_commune": "BAGUER MORVAN", "libell_d_acheminement": "BAGUER MORVAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35009"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a3ab56cada014662deb71dd8a33792b13b8d27", "fields": {"nom_de_la_commune": "BAIS", "libell_d_acheminement": "BAIS", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35014"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d362f637c26accf42d7846485136c3557a5c6821", "fields": {"nom_de_la_commune": "BALAZE", "libell_d_acheminement": "BALAZE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35015"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "067ac9be12d9a72e2fb09825e3e9b393c7fc4501", "fields": {"nom_de_la_commune": "BECHEREL", "libell_d_acheminement": "BECHEREL", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35022"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d671744eda515f4560974e7de1189a33a0629915", "fields": {"nom_de_la_commune": "BOURGBARRE", "libell_d_acheminement": "BOURGBARRE", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35032"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4799bb3274d449721cd399b2882cae6ac5f5e289", "fields": {"nom_de_la_commune": "BRECE", "libell_d_acheminement": "BRECE", "code_postal": "35530", "coordonnees_gps": [48.1023169795, -1.48929089789], "code_commune_insee": "35039"}, "geometry": {"type": "Point", "coordinates": [-1.48929089789, 48.1023169795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c468b70f51a6c359ba9cbfa38e0f9e51ee8e2e6", "fields": {"nom_de_la_commune": "BRIELLES", "libell_d_acheminement": "BRIELLES", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35042"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5402b05abd0a957f68e661613ad462e3b5b00e24", "fields": {"nom_de_la_commune": "CARDROC", "libell_d_acheminement": "CARDROC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35050"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0acd0c651461699180494b5f1aed83fb8de223b7", "fields": {"nom_de_la_commune": "LA CHAPELLE BOUEXIC", "libell_d_acheminement": "LA CHAPELLE BOUEXIC", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35057"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e716a0eb2639404fc99a92df9a64ad4040eade0", "fields": {"nom_de_la_commune": "LA CHAPELLE DES FOUGERETZ", "libell_d_acheminement": "LA CHAPELLE DES FOUGERETZ", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35059"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f87f2bcc2e42fdd8816602532ff87c1ffb2556", "fields": {"nom_de_la_commune": "LA CHAPELLE DE BRAIN", "libell_d_acheminement": "LA CHAPELLE DE BRAIN", "code_postal": "35660", "coordonnees_gps": [47.7238939745, -1.91661002252], "code_commune_insee": "35064"}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5276ef10b49e29c8308b6a853b6005f36cf198b8", "fields": {"code_postal": "35660", "code_commune_insee": "35064", "libell_d_acheminement": "LA CHAPELLE DE BRAIN", "ligne_5": "BRAIN SUR VILAINE", "nom_de_la_commune": "LA CHAPELLE DE BRAIN", "coordonnees_gps": [47.7238939745, -1.91661002252]}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e215f424518657a6caaa43f477dd6cf224bacbad", "fields": {"nom_de_la_commune": "CHARTRES DE BRETAGNE", "libell_d_acheminement": "CHARTRES DE BRETAGNE", "code_postal": "35131", "coordonnees_gps": [48.0288284104, -1.70152027546], "code_commune_insee": "35066"}, "geometry": {"type": "Point", "coordinates": [-1.70152027546, 48.0288284104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d78be1d77123a3a5d21f24089bfbec09677852", "fields": {"nom_de_la_commune": "CHATEAUNEUF D ILLE ET VILAINE", "libell_d_acheminement": "CHATEAUNEUF D ILLE ET VILAINE", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35070"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565ee177d6aec72713c97216fa946d240fe52264", "fields": {"nom_de_la_commune": "CHATILLON EN VENDELAIS", "libell_d_acheminement": "CHATILLON EN VENDELAIS", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35072"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4a6f64e7cc5d734d3aec4e72501f63d4f93913", "fields": {"nom_de_la_commune": "CHATEAUNEUF LES MARTIGUES", "libell_d_acheminement": "CHATEAUNEUF LES MARTIGUES", "code_postal": "13220", "coordonnees_gps": [43.3863844311, 5.14761190486], "code_commune_insee": "13026"}, "geometry": {"type": "Point", "coordinates": [5.14761190486, 43.3863844311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65a28a66e11a7e966e41f8a579a3cea536a5ebf", "fields": {"nom_de_la_commune": "LA CIOTAT", "libell_d_acheminement": "LA CIOTAT", "code_postal": "13600", "coordonnees_gps": [43.2057739447, 5.6225082578], "code_commune_insee": "13028"}, "geometry": {"type": "Point", "coordinates": [5.6225082578, 43.2057739447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f84639cdee5be70d94dde27fae7a8fbfcb8214", "fields": {"nom_de_la_commune": "CORNILLON CONFOUX", "libell_d_acheminement": "CORNILLON CONFOUX", "code_postal": "13250", "coordonnees_gps": [43.5560610417, 5.07443840982], "code_commune_insee": "13029"}, "geometry": {"type": "Point", "coordinates": [5.07443840982, 43.5560610417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a83040de4ad021d360ae74b12cbe7bfdefbd1c", "fields": {"nom_de_la_commune": "CUGES LES PINS", "libell_d_acheminement": "CUGES LES PINS", "code_postal": "13780", "coordonnees_gps": [43.2875382054, 5.72232171856], "code_commune_insee": "13030"}, "geometry": {"type": "Point", "coordinates": [5.72232171856, 43.2875382054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78bbce54185395551aab76e9320d2451fe629e73", "fields": {"nom_de_la_commune": "EGUILLES", "libell_d_acheminement": "EGUILLES", "code_postal": "13510", "coordonnees_gps": [43.5708421062, 5.32952405027], "code_commune_insee": "13032"}, "geometry": {"type": "Point", "coordinates": [5.32952405027, 43.5708421062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4e0b82f17fe9efcd9421bf76c3e41ae770015c", "fields": {"code_postal": "13820", "code_commune_insee": "13033", "libell_d_acheminement": "ENSUES LA REDONNE", "ligne_5": "LA REDONNE", "nom_de_la_commune": "ENSUES LA REDONNE", "coordonnees_gps": [43.3537890025, 5.19969508788]}, "geometry": {"type": "Point", "coordinates": [5.19969508788, 43.3537890025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d011ae9e0da731df721f182dcf4c8138e79c2e", "fields": {"nom_de_la_commune": "EYGALIERES", "libell_d_acheminement": "EYGALIERES", "code_postal": "13810", "coordonnees_gps": [43.7619946211, 4.95220471189], "code_commune_insee": "13034"}, "geometry": {"type": "Point", "coordinates": [4.95220471189, 43.7619946211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26e3fa6c2d2cf3b9ad776eaa00efa46d1d504d5", "fields": {"nom_de_la_commune": "LA FARE LES OLIVIERS", "libell_d_acheminement": "LA FARE LES OLIVIERS", "code_postal": "13580", "coordonnees_gps": [43.5547068884, 5.20233943209], "code_commune_insee": "13037"}, "geometry": {"type": "Point", "coordinates": [5.20233943209, 43.5547068884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487afb495948f6dd3d3ba58cce4ea88429422d58", "fields": {"nom_de_la_commune": "FONTVIEILLE", "libell_d_acheminement": "FONTVIEILLE", "code_postal": "13990", "coordonnees_gps": [43.7232796075, 4.72247335133], "code_commune_insee": "13038"}, "geometry": {"type": "Point", "coordinates": [4.72247335133, 43.7232796075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d60f78adadb836e160c8ecdecf47df85525513", "fields": {"code_postal": "13710", "code_commune_insee": "13040", "libell_d_acheminement": "FUVEAU", "ligne_5": "LA BEGUDE", "nom_de_la_commune": "FUVEAU", "coordonnees_gps": [43.4598825054, 5.55318993446]}, "geometry": {"type": "Point", "coordinates": [5.55318993446, 43.4598825054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6df282a62242b6549a81fa484da88083175426", "fields": {"code_postal": "13180", "code_commune_insee": "13043", "libell_d_acheminement": "GIGNAC LA NERTHE", "ligne_5": "LAURE", "nom_de_la_commune": "GIGNAC LA NERTHE", "coordonnees_gps": [43.390482869, 5.22788588973]}, "geometry": {"type": "Point", "coordinates": [5.22788588973, 43.390482869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd20d2b792ec4c72fcbf338c5c8f6f8499d85f7", "fields": {"code_postal": "13117", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "LAVERA", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "836408f09cde637444a2e15d60ee57f3b237c129", "fields": {"nom_de_la_commune": "MIRAMAS", "libell_d_acheminement": "MIRAMAS", "code_postal": "13140", "coordonnees_gps": [43.5842598006, 5.01416013898], "code_commune_insee": "13063"}, "geometry": {"type": "Point", "coordinates": [5.01416013898, 43.5842598006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e55c368cf03001cc7685b17e19a8370f1ddbdf", "fields": {"code_postal": "13550", "code_commune_insee": "13066", "libell_d_acheminement": "NOVES", "ligne_5": "PALUD DE NOVES", "nom_de_la_commune": "NOVES", "coordonnees_gps": [43.8586962525, 4.89971574687]}, "geometry": {"type": "Point", "coordinates": [4.89971574687, 43.8586962525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572e16e6d2121482161975d8fe7151049efc30e9", "fields": {"nom_de_la_commune": "PELISSANNE", "libell_d_acheminement": "PELISSANNE", "code_postal": "13330", "coordonnees_gps": [43.6242242571, 5.18902505122], "code_commune_insee": "13069"}, "geometry": {"type": "Point", "coordinates": [5.18902505122, 43.6242242571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d999775839c1e67212bb175d78bac13ce0069eb", "fields": {"nom_de_la_commune": "LA PENNE SUR HUVEAUNE", "libell_d_acheminement": "LA PENNE SUR HUVEAUNE", "code_postal": "13821", "coordonnees_gps": [43.2768119604, 5.51843444856], "code_commune_insee": "13070"}, "geometry": {"type": "Point", "coordinates": [5.51843444856, 43.2768119604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568feb033b9b265b5e5086ee6bb1fc6785276942", "fields": {"code_postal": "13790", "code_commune_insee": "13072", "libell_d_acheminement": "PEYNIER", "ligne_5": "LES MICHELS", "nom_de_la_commune": "PEYNIER", "coordonnees_gps": [43.466397869, 5.61228660864]}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534f34dc890e4b02cc4f23004a0d4b26d7682aa5", "fields": {"nom_de_la_commune": "ROGNAC", "libell_d_acheminement": "ROGNAC", "code_postal": "13340", "coordonnees_gps": [43.4968931335, 5.23095747699], "code_commune_insee": "13081"}, "geometry": {"type": "Point", "coordinates": [5.23095747699, 43.4968931335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f662935f6b166ccbf01a71a5b0fe78220a20c635", "fields": {"code_postal": "13830", "code_commune_insee": "13085", "libell_d_acheminement": "ROQUEFORT LA BEDOULE", "ligne_5": "ROQUEFORT", "nom_de_la_commune": "ROQUEFORT LA BEDOULE", "coordonnees_gps": [43.2511968677, 5.62904629531]}, "geometry": {"type": "Point", "coordinates": [5.62904629531, 43.2511968677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f29e494f27fe5fab0581d19a6885509174ab4ec", "fields": {"nom_de_la_commune": "ROQUEVAIRE", "libell_d_acheminement": "ROQUEVAIRE", "code_postal": "13360", "coordonnees_gps": [43.3435929565, 5.59815037095], "code_commune_insee": "13086"}, "geometry": {"type": "Point", "coordinates": [5.59815037095, 43.3435929565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c06b8194919616bf227fe814aa4f2cb772249332", "fields": {"nom_de_la_commune": "LE ROVE", "libell_d_acheminement": "LE ROVE", "code_postal": "13740", "coordonnees_gps": [43.3653006845, 5.25320648556], "code_commune_insee": "13088"}, "geometry": {"type": "Point", "coordinates": [5.25320648556, 43.3653006845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a38278c4fa4e78472b10480319bb85dcacc602", "fields": {"nom_de_la_commune": "SAINTES MARIES DE LA MER", "libell_d_acheminement": "SAINTES MARIES DE LA MER", "code_postal": "13460", "coordonnees_gps": [43.5039741794, 4.46432655177], "code_commune_insee": "13096"}, "geometry": {"type": "Point", "coordinates": [4.46432655177, 43.5039741794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "771b759f7b51dc241437ccfebfe01b4873deab46", "fields": {"nom_de_la_commune": "ST VICTORET", "libell_d_acheminement": "ST VICTORET", "code_postal": "13730", "coordonnees_gps": [43.4141688547, 5.25375444435], "code_commune_insee": "13102"}, "geometry": {"type": "Point", "coordinates": [5.25375444435, 43.4141688547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49b727901d86600ccc83d7d83ee2d455551f87a", "fields": {"nom_de_la_commune": "LE THOLONET", "libell_d_acheminement": "LE THOLONET", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13109"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71556522684593526347ff826743f97c755cea55", "fields": {"nom_de_la_commune": "COUDOUX", "libell_d_acheminement": "COUDOUX", "code_postal": "13111", "coordonnees_gps": [43.5610728388, 5.25444585212], "code_commune_insee": "13118"}, "geometry": {"type": "Point", "coordinates": [5.25444585212, 43.5610728388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd46fc37f6131f9fb526fac49455f731a20876cb", "fields": {"code_postal": "13008", "code_commune_insee": "13208", "libell_d_acheminement": "MARSEILLE", "ligne_5": "CALLELONGUE", "nom_de_la_commune": "MARSEILLE 08", "coordonnees_gps": [43.2388428582, 5.37571442554]}, "geometry": {"type": "Point", "coordinates": [5.37571442554, 43.2388428582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4798b4c8262cc1e27c017cb568a9c69671a0aff7", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "CROIX ROUGE", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274f361c9b4ba09914fc7a4177d612cd30b161b0", "fields": {"nom_de_la_commune": "MARSEILLE 15", "libell_d_acheminement": "MARSEILLE", "code_postal": "13015", "coordonnees_gps": [43.3593730054, 5.36332724232], "code_commune_insee": "13215"}, "geometry": {"type": "Point", "coordinates": [5.36332724232, 43.3593730054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff0c3656c43f88616b0ad318ca0e745ece9ab61", "fields": {"nom_de_la_commune": "ACQUEVILLE", "libell_d_acheminement": "ACQUEVILLE", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14002"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7213cda31c84df7a636f417b007cac5aa2bafb", "fields": {"nom_de_la_commune": "AMAYE SUR SEULLES", "libell_d_acheminement": "AMAYE SUR SEULLES", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14007"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ee635e987f406e7b682e4c4903a1725d206d37", "fields": {"nom_de_la_commune": "AMFREVILLE", "libell_d_acheminement": "AMFREVILLE", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14009"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1459e15ed836dfb73dcf9de09dccebb82206232", "fields": {"nom_de_la_commune": "ANCTOVILLE", "libell_d_acheminement": "ANCTOVILLE", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14011"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016a33036b603b342c803d74d4bfd9a6ec8a9608", "fields": {"code_postal": "14240", "code_commune_insee": "14011", "libell_d_acheminement": "ANCTOVILLE", "ligne_5": "ORBOIS", "nom_de_la_commune": "ANCTOVILLE", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39d53486a7feb0653e4b838bd45fc3f85e533e82", "fields": {"code_postal": "14240", "code_commune_insee": "14011", "libell_d_acheminement": "ANCTOVILLE", "ligne_5": "SERMENTOT", "nom_de_la_commune": "ANCTOVILLE", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6398fea07947758f925278a862d99716c1f59b22", "fields": {"nom_de_la_commune": "COLOMBY ANGUERNY", "libell_d_acheminement": "COLOMBY ANGUERNY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14014"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c5c2dd19d1f1ee6d7e64e2a320ccd8c61ddb41", "fields": {"nom_de_la_commune": "ASNIERES EN BESSIN", "libell_d_acheminement": "ASNIERES EN BESSIN", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14023"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f8d8d327258137a228c942417cf12b45f06dedb", "fields": {"nom_de_la_commune": "LES AUTHIEUX SUR CALONNE", "libell_d_acheminement": "LES AUTHIEUX SUR CALONNE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14032"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3464ffabb24e46b59bfd169cd02323514a383e09", "fields": {"nom_de_la_commune": "BALLEROY SUR DROME", "libell_d_acheminement": "BALLEROY SUR DROME", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14035"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039f912b9c9f1f74e2b59a4c6b9fa9b75402206f", "fields": {"nom_de_la_commune": "BAROU EN AUGE", "libell_d_acheminement": "BAROU EN AUGE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14043"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f84a5b6bf4a008743cf768ffa72b561531e210a", "fields": {"code_postal": "14860", "code_commune_insee": "14046", "libell_d_acheminement": "BAVENT", "ligne_5": "ROBEHOMME", "nom_de_la_commune": "BAVENT", "coordonnees_gps": [49.2320742988, -0.215810077728]}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4841b715ed6f360994acdd1247fdc595709b22bb", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "BEAULIEU", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4e7df6f2c7ebc9d420e5f21c4e51229ca7d63f", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "CARVILLE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e6021ae7a9c5c79540c25ed054291fa5d1035e", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LA FERRIERE HARANG", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bcdd68cd2bc0edceeaaec23a6d35cd188a8bca", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LA GRAVERIE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3278575c4dcbe43e3c86fb996d2feca3a3d8222b", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MONTCHAUVET", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799f0b5ed7bce6b4545fffe1318d7ae2a4413869", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST DENIS MAISONCELLES", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3202cf9acc58126cfe4bff049bc37d6493aca86f", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST MARTIN DES BESACES", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a649bacbd8f30157fd6101bce0c5bf625bc6d92", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST PIERRE TARENTAINE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d589cf77776a6800273f675518ebe5b5b8959eb", "fields": {"nom_de_la_commune": "BERNESQ", "libell_d_acheminement": "BERNESQ", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14063"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af749cdc2316f2ffddfeeb270b7c357e184128f1", "fields": {"code_postal": "14112", "code_commune_insee": "14068", "libell_d_acheminement": "BIEVILLE BEUVILLE", "ligne_5": "BIEVILLE SUR ORNE", "nom_de_la_commune": "BIEVILLE BEUVILLE", "coordonnees_gps": [49.2432109147, -0.336840438637]}, "geometry": {"type": "Point", "coordinates": [-0.336840438637, 49.2432109147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de32db087aa0c782cff087920acc43e07600c6dd", "fields": {"nom_de_la_commune": "BEUVRON EN AUGE", "libell_d_acheminement": "BEUVRON EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14070"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12db888f57e060f0ccef3a009e69c50ca09c991a", "fields": {"nom_de_la_commune": "BLAY", "libell_d_acheminement": "BLAY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14078"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89efee42fba3b1d318f4cd947ffa1e78097b630b", "fields": {"nom_de_la_commune": "LE BO", "libell_d_acheminement": "LE BO", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14080"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cb9aa583500bf485af2574fc9e7fbfd43a52bd", "fields": {"nom_de_la_commune": "BONNEVILLE LA LOUVET", "libell_d_acheminement": "BONNEVILLE LA LOUVET", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14085"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4ea0d9bb3ff995d8deafa427f51534f49f2ad9", "fields": {"nom_de_la_commune": "BOUGY", "libell_d_acheminement": "BOUGY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14089"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcf44d0f2bc332c5ae0220dee644b84915b4533", "fields": {"nom_de_la_commune": "BREMOY", "libell_d_acheminement": "BREMOY", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14096"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5420250efc10bd0b8639ffd9e289f20b68efd5bb", "fields": {"nom_de_la_commune": "BRETTEVILLE LE RABET", "libell_d_acheminement": "BRETTEVILLE LE RABET", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14097"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eac4e407fd37a4c3db0dfe204b9ee49294f029f", "fields": {"nom_de_la_commune": "LE BREUIL EN AUGE", "libell_d_acheminement": "LE BREUIL EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14102"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148b9b63a2064f28d32457954fef3759f6a8e087", "fields": {"nom_de_la_commune": "LE BREUIL EN BESSIN", "libell_d_acheminement": "LE BREUIL EN BESSIN", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14103"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a66ac5bf0d561e8e278af597930d9c03047f2f", "fields": {"nom_de_la_commune": "BREVILLE LES MONTS", "libell_d_acheminement": "BREVILLE LES MONTS", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14106"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534f1a495f2b2db049acebd28fd41fae708489af", "fields": {"nom_de_la_commune": "BRICQUEVILLE", "libell_d_acheminement": "BRICQUEVILLE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14107"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90e8bffca786dfff277954b032282285e8efe60", "fields": {"nom_de_la_commune": "CAEN", "libell_d_acheminement": "CAEN", "code_postal": "14000", "coordonnees_gps": [49.1850251668, -0.370004009634], "code_commune_insee": "14118"}, "geometry": {"type": "Point", "coordinates": [-0.370004009634, 49.1850251668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e0ba5513c205669a83ea94010eeb6fa92aa8f0", "fields": {"nom_de_la_commune": "CAGNY", "libell_d_acheminement": "CAGNY", "code_postal": "14630", "coordonnees_gps": [49.1466089326, -0.248954415466], "code_commune_insee": "14119"}, "geometry": {"type": "Point", "coordinates": [-0.248954415466, 49.1466089326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8ab766d18b7700039f455d173a9a88eb1b0bc9", "fields": {"nom_de_la_commune": "CAHAGNES", "libell_d_acheminement": "CAHAGNES", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14120"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2625c7d61669480ebfb31befa4efc46213dbec7c", "fields": {"nom_de_la_commune": "LA CAINE", "libell_d_acheminement": "LA CAINE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14122"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6ad3f79ea888843e93085024f91fa80eb8eebc", "fields": {"nom_de_la_commune": "CAIRON", "libell_d_acheminement": "CAIRON", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14123"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2062e316ffabf1a46a46190c3c1e5012b4816c", "fields": {"code_postal": "14340", "code_commune_insee": "14126", "libell_d_acheminement": "CAMBREMER", "ligne_5": "ST PAIR DU MONT", "nom_de_la_commune": "CAMBREMER", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c37ac17ef175177b2be3b870ab34ccb0a10de113", "fields": {"nom_de_la_commune": "CAMPAGNOLLES", "libell_d_acheminement": "CAMPAGNOLLES", "code_postal": "14500", "coordonnees_gps": [48.8626699859, -0.904614638013], "code_commune_insee": "14127"}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebf362bdb7d1570645ffa701e50a7ab8aca2ff0", "fields": {"nom_de_la_commune": "CANAPVILLE", "libell_d_acheminement": "CANAPVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14131"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76467a5f0bf51dfb99b89a78a556a770202e86cd", "fields": {"nom_de_la_commune": "CASTILLON", "libell_d_acheminement": "CASTILLON", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14140"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290b7797c41f4f1a63cc4e706a4c04a789ff89eb", "fields": {"nom_de_la_commune": "CESNY AUX VIGNES", "libell_d_acheminement": "CESNY AUX VIGNES", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14149"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3ce1c0f8fa9c16e5121832344deb5af5735a3a7", "fields": {"nom_de_la_commune": "CHOUAIN", "libell_d_acheminement": "CHOUAIN", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14159"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe0ea6c9e176e516b3b6af40cfc4361cfceb81c", "fields": {"nom_de_la_commune": "CLECY", "libell_d_acheminement": "CLECY", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14162"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c78baff98856430604854d92356c2940dfcb364", "fields": {"nom_de_la_commune": "COLOMBIERES", "libell_d_acheminement": "COLOMBIERES", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14168"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fa61a6f750232631ad9098108c78ae2eccee7a", "fields": {"nom_de_la_commune": "COMBRAY", "libell_d_acheminement": "COMBRAY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14171"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588e3a1c5830e5529658bfea91d77f09cbd6da3f", "fields": {"nom_de_la_commune": "CORDEBUGLE", "libell_d_acheminement": "CORDEBUGLE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14179"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4237c415c407fc3da9d5aedcaca5bc3b8289090", "fields": {"nom_de_la_commune": "COULOMBS", "libell_d_acheminement": "COULOMBS", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14186"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "304c430d4aefcd46f57b6e90f9decc983b1e43e8", "fields": {"nom_de_la_commune": "COURTONNE LES DEUX EGLISES", "libell_d_acheminement": "COURTONNE LES DEUX EGLISES", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14194"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e0bb12eec6aaa52554b8a3bdeb1a9c1866223c", "fields": {"code_postal": "14290", "code_commune_insee": "14194", "libell_d_acheminement": "COURTONNE LES DEUX EGLISES", "ligne_5": "ST PAUL DE COURTONNE", "nom_de_la_commune": "COURTONNE LES DEUX EGLISES", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65e55127abfa7572e83471b5d9874339c3dea59", "fields": {"nom_de_la_commune": "CRESSEVEUILLE", "libell_d_acheminement": "CRESSEVEUILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14198"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d200a2938fc47f363c30fb6448ad8f42377ae762", "fields": {"nom_de_la_commune": "CRICQUEBOEUF", "libell_d_acheminement": "CRICQUEBOEUF", "code_postal": "14113", "coordonnees_gps": [49.392904808, 0.128649857058], "code_commune_insee": "14202"}, "geometry": {"type": "Point", "coordinates": [0.128649857058, 49.392904808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c2af515e8719f8d50fc10e2d28a9588e05bd2b", "fields": {"nom_de_la_commune": "CRISTOT", "libell_d_acheminement": "CRISTOT", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14205"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575af3a690b06e31d117ec9fc90790b2577221a4", "fields": {"nom_de_la_commune": "CROISSANVILLE", "libell_d_acheminement": "CROISSANVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14208"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff1cea9ad5e98925ed162484b512194242db7c9", "fields": {"nom_de_la_commune": "CULEY LE PATRY", "libell_d_acheminement": "CULEY LE PATRY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14211"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc4228d4aae311cf31fbc6f92b7bc0e77b942d1", "fields": {"nom_de_la_commune": "DONNAY", "libell_d_acheminement": "DONNAY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14226"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2fa66ed7c9a0d3dbd2abcb7843ab5d11c6b74a5", "fields": {"nom_de_la_commune": "DOUVILLE EN AUGE", "libell_d_acheminement": "DOUVILLE EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14227"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb36a9342339b94ad1f6d9dc115d280e2e0568c", "fields": {"nom_de_la_commune": "DOUVRES LA DELIVRANDE", "libell_d_acheminement": "DOUVRES LA DELIVRANDE", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14228"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e432e04238095eeb038b6955b70849ff3182de", "fields": {"nom_de_la_commune": "ELLON", "libell_d_acheminement": "ELLON", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14236"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65997eea53f7ae9dcc09c54f7581cea8c8e9f5ed", "fields": {"nom_de_la_commune": "EMIEVILLE", "libell_d_acheminement": "EMIEVILLE", "code_postal": "14630", "coordonnees_gps": [49.1466089326, -0.248954415466], "code_commune_insee": "14237"}, "geometry": {"type": "Point", "coordinates": [-0.248954415466, 49.1466089326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c47dcdfbcdb8d76a14335f88d9145b69be5e93c", "fields": {"nom_de_la_commune": "ESCOVILLE", "libell_d_acheminement": "ESCOVILLE", "code_postal": "14850", "coordonnees_gps": [49.2097767662, -0.25242248179], "code_commune_insee": "14246"}, "geometry": {"type": "Point", "coordinates": [-0.25242248179, 49.2097767662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d338b9034add196fd23cf8cb9f049bdb87f8f6", "fields": {"nom_de_la_commune": "ESPINS", "libell_d_acheminement": "ESPINS", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14248"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d830b4fbd2a7da4b90956df6b054543ea16efa93", "fields": {"nom_de_la_commune": "ETREHAM", "libell_d_acheminement": "ETREHAM", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14256"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49876f33629207affc647271528c75b3cc937ab5", "fields": {"nom_de_la_commune": "FLEURY SUR ORNE", "libell_d_acheminement": "FLEURY SUR ORNE", "code_postal": "14123", "coordonnees_gps": [49.1447730282, -0.352071699287], "code_commune_insee": "14271"}, "geometry": {"type": "Point", "coordinates": [-0.352071699287, 49.1447730282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b5fc5e797eb82275b15d4ddf912e232f027e6d", "fields": {"nom_de_la_commune": "LA FOLIE", "libell_d_acheminement": "LA FOLIE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14272"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f947658a9bdc3d069d6b9401a8ac64921d75024", "fields": {"nom_de_la_commune": "FORMIGNY", "libell_d_acheminement": "FORMIGNY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14281"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab0c462f561635a6a2091aba5b234453cd296d8", "fields": {"nom_de_la_commune": "LE FOURNET", "libell_d_acheminement": "LE FOURNET", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14285"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb00f0ff0522cdc867693b53ea8acdf1ac8684a3", "fields": {"nom_de_la_commune": "FUMICHON", "libell_d_acheminement": "FUMICHON", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14293"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12dafb0f1212a43e3288070667f857e6c932edd", "fields": {"nom_de_la_commune": "GONNEVILLE SUR HONFLEUR", "libell_d_acheminement": "GONNEVILLE SUR HONFLEUR", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14304"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6047b75baad1af61a0f2d444dccde1cd2a4a52d6", "fields": {"nom_de_la_commune": "GONNEVILLE EN AUGE", "libell_d_acheminement": "GONNEVILLE EN AUGE", "code_postal": "14810", "coordonnees_gps": [49.2686618031, -0.198460206193], "code_commune_insee": "14306"}, "geometry": {"type": "Point", "coordinates": [-0.198460206193, 49.2686618031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5d2f15733f082c636382cbc94d912766fe42f3", "fields": {"nom_de_la_commune": "HEROUVILLE ST CLAIR", "libell_d_acheminement": "HEROUVILLE ST CLAIR", "code_postal": "14200", "coordonnees_gps": [49.2074415651, -0.330690059361], "code_commune_insee": "14327"}, "geometry": {"type": "Point", "coordinates": [-0.330690059361, 49.2074415651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8a6a3ba70785b4ac7e7a30e9e574a0d934c093", "fields": {"nom_de_la_commune": "HOSTE", "libell_d_acheminement": "HOSTE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57337"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94dd2b297753e1d4f4ed68da7138e6604f4ba868", "fields": {"nom_de_la_commune": "INSMING", "libell_d_acheminement": "INSMING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57346"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37c628acba3f6a1c6f6dc6a18352462a7d43e7c9", "fields": {"nom_de_la_commune": "JUVELIZE", "libell_d_acheminement": "JUVELIZE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57353"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c4e39312f051d4aa0a8a2c18d350a2d6214c550", "fields": {"nom_de_la_commune": "KERPRICH AUX BOIS", "libell_d_acheminement": "KERPRICH AUX BOIS", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57362"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6b8e401a35ce0018d2aa38b0adb8495c2c77c70", "fields": {"nom_de_la_commune": "KLANG", "libell_d_acheminement": "KLANG", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57367"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c862cc8d43df52d8789cb74917bdaafcd69d10e", "fields": {"nom_de_la_commune": "KOENIGSMACKER", "libell_d_acheminement": "KOENIGSMACKER", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57370"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143232508553c4342ee76f0ca29c305923e8332e", "fields": {"nom_de_la_commune": "LAFRIMBOLLE", "libell_d_acheminement": "LAFRIMBOLLE", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57374"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e907c203da31722dd71086ae337a582ddc9cc566", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57375"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03fd66cc5b690aad2d64e5dee0d72f396e4074ab", "fields": {"nom_de_la_commune": "LANGUIMBERG", "libell_d_acheminement": "LANGUIMBERG", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57383"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807f180130382f26b49f6420e577ad2a21e3bd11", "fields": {"nom_de_la_commune": "LAUDREFANG", "libell_d_acheminement": "LAUDREFANG", "code_postal": "57385", "coordonnees_gps": [49.0669027987, 6.64766782853], "code_commune_insee": "57386"}, "geometry": {"type": "Point", "coordinates": [6.64766782853, 49.0669027987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "111cac2ee54c16e642d967fc0eb91c4f5b79cc05", "fields": {"nom_de_la_commune": "LAUNSTROFF", "libell_d_acheminement": "LAUNSTROFF", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57388"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b35ff808ddd2b210c2cb34297caeed92496cf", "fields": {"nom_de_la_commune": "LEYVILLER", "libell_d_acheminement": "LEYVILLER", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57398"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c16c8d99217a1f3ed0b8f77da7079c725d0395", "fields": {"nom_de_la_commune": "LIXING LES ROUHLING", "libell_d_acheminement": "LIXING LES ROUHLING", "code_postal": "57520", "coordonnees_gps": [49.1484421064, 7.01208667491], "code_commune_insee": "57408"}, "geometry": {"type": "Point", "coordinates": [7.01208667491, 49.1484421064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49772aba5ee057a1e0b94a23c22a983ec8bb326d", "fields": {"nom_de_la_commune": "LORRY MARDIGNY", "libell_d_acheminement": "LORRY MARDIGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57416"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8b45610eb5f609031607e7a4fba548d38539e6", "fields": {"nom_de_la_commune": "LUTTANGE", "libell_d_acheminement": "LUTTANGE", "code_postal": "57935", "coordonnees_gps": [49.2732839167, 6.29763585202], "code_commune_insee": "57426"}, "geometry": {"type": "Point", "coordinates": [6.29763585202, 49.2732839167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcf28d576275ed638e50b774b5af1c3a0339cb0", "fields": {"nom_de_la_commune": "LUTZELBOURG", "libell_d_acheminement": "LUTZELBOURG", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57427"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68249cf2c99d935218536f4d88f991cdb6dcd11", "fields": {"nom_de_la_commune": "MAIZIERES LES VIC", "libell_d_acheminement": "MAIZIERES LES VIC", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57434"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ed3cf24c80855646945f73868279a373dbed3f", "fields": {"nom_de_la_commune": "MARANGE ZONDRANGE", "libell_d_acheminement": "MARANGE ZONDRANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57444"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e0ecdda363ad74002bb8d3d871b3954b76d8b1", "fields": {"nom_de_la_commune": "MARIEULLES", "libell_d_acheminement": "MARIEULLES", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57445"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd2aa9f161fd2a73447d40d17226421388322711", "fields": {"nom_de_la_commune": "MARLY", "libell_d_acheminement": "MARLY", "code_postal": "57155", "coordonnees_gps": [49.0661272407, 6.15312126944], "code_commune_insee": "57447"}, "geometry": {"type": "Point", "coordinates": [6.15312126944, 49.0661272407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03a4cf9f4fa63033f8381caffa04c4b04121f72c", "fields": {"nom_de_la_commune": "MECLEUVES", "libell_d_acheminement": "MECLEUVES", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57454"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b24c2913ce9663ea9f9309b06bf67ed1e4fb4b", "fields": {"nom_de_la_commune": "MEGANGE", "libell_d_acheminement": "MEGANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57455"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78377181053ff25a2b5ae29a480a48d5d2263051", "fields": {"nom_de_la_commune": "METAIRIES ST QUIRIN", "libell_d_acheminement": "METAIRIES ST QUIRIN", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57461"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4972672ecfa80daa2c461233a5fe80c3ff0914", "fields": {"nom_de_la_commune": "MONTIGNY LES METZ", "libell_d_acheminement": "MONTIGNY LES METZ", "code_postal": "57950", "coordonnees_gps": [49.0957632646, 6.1541387234], "code_commune_insee": "57480"}, "geometry": {"type": "Point", "coordinates": [6.1541387234, 49.0957632646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660614e9423de6e0d6ebe19ccc8a537b049dab8c", "fields": {"nom_de_la_commune": "NEUNKIRCHEN LES BOUZONVILLE", "libell_d_acheminement": "NEUNKIRCHEN LES BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57502"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0f1f556e7d7369475b4454d4a61104de4750b7", "fields": {"nom_de_la_commune": "NIEDERSTINZEL", "libell_d_acheminement": "NIEDERSTINZEL", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57506"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4028991e1f5663c3fac143a60a55920d6db58b5", "fields": {"nom_de_la_commune": "NIEDERVISSE", "libell_d_acheminement": "NIEDERVISSE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57507"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bae07a238f5c7bc3879d00a145820bd3d9580fd", "fields": {"nom_de_la_commune": "NOUILLY", "libell_d_acheminement": "NOUILLY", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57512"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9caa72797982045bc146af8c6c81058cbf91dfb8", "fields": {"nom_de_la_commune": "OBERVISSE", "libell_d_acheminement": "OBERVISSE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57519"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc079f6e0dc8420e8fb6ab9fb2228ea6be0f46d4", "fields": {"nom_de_la_commune": "OBRECK", "libell_d_acheminement": "OBRECK", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57520"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efb737d89a1fd20d349659a34a1cfda887d26e0", "fields": {"nom_de_la_commune": "ORIOCOURT", "libell_d_acheminement": "ORIOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57525"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00cb84101c38f724f28c9c22cfed22f043517ce7", "fields": {"nom_de_la_commune": "ORNY", "libell_d_acheminement": "ORNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57527"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251625d60e9e9efbc611d0121e950116ecca4b0b", "fields": {"nom_de_la_commune": "ORON", "libell_d_acheminement": "ORON", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57528"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0314819136075d71c75110a969a64dfed503cd", "fields": {"nom_de_la_commune": "PANGE", "libell_d_acheminement": "PANGE", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57533"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e256a2d33f975937439eec7b91d88995b34e7e3", "fields": {"nom_de_la_commune": "PETIT TENQUIN", "libell_d_acheminement": "PETIT TENQUIN", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57536"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ec02ea2fdc885eaf245ec5f0984576965c71ac", "fields": {"nom_de_la_commune": "PETITE ROSSELLE", "libell_d_acheminement": "PETITE ROSSELLE", "code_postal": "57540", "coordonnees_gps": [49.2101318401, 6.85879152224], "code_commune_insee": "57537"}, "geometry": {"type": "Point", "coordinates": [6.85879152224, 49.2101318401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40df524b938262a2f6cdfc2871e048fe5b00f2cb", "fields": {"nom_de_la_commune": "PETTONCOURT", "libell_d_acheminement": "PETTONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57538"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de9ac72061f8ec3649862088194210efb7b40345", "fields": {"nom_de_la_commune": "PHILIPPSBOURG", "libell_d_acheminement": "PHILIPPSBOURG", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57541"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce76f0e97e06cea4f1b4413620fc01462f82705", "fields": {"code_postal": "57220", "code_commune_insee": "57542", "libell_d_acheminement": "PIBLANGE", "ligne_5": "ST BERNARD", "nom_de_la_commune": "PIBLANGE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb66ca81d8ccd65ffe95dc3597171cfed502e98", "fields": {"nom_de_la_commune": "PLESNOIS", "libell_d_acheminement": "PLESNOIS", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57546"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20adb4f4eb7db8c058d4b69ea5825c9b7b1889f1", "fields": {"nom_de_la_commune": "PUTTELANGE LES THIONVILLE", "libell_d_acheminement": "PUTTELANGE LES THIONVILLE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57557"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45191ad2fa856120b78406b477e4d82b4b620850", "fields": {"nom_de_la_commune": "REMELFING", "libell_d_acheminement": "REMELFING", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57568"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e95e14231cbb530d5d7407808e59a16916c36e9f", "fields": {"nom_de_la_commune": "REMELING", "libell_d_acheminement": "REMELING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57569"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9b762ff3752da499a85a373b1ba7caf4c73db8", "fields": {"nom_de_la_commune": "REMERING", "libell_d_acheminement": "REMERING", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57570"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "392c5bc51230c606c11301456ac43fab0d605380", "fields": {"nom_de_la_commune": "RICHEMONT", "libell_d_acheminement": "RICHEMONT", "code_postal": "57270", "coordonnees_gps": [49.2922818773, 6.15848861303], "code_commune_insee": "57582"}, "geometry": {"type": "Point", "coordinates": [6.15848861303, 49.2922818773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71850857818009a82492864499fe662bf2848cfb", "fields": {"nom_de_la_commune": "RIMLING", "libell_d_acheminement": "RIMLING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57584"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faaaf60bbfd92a1f3de8953f40ba0c3898a60d5", "fields": {"nom_de_la_commune": "RORBACH LES DIEUZE", "libell_d_acheminement": "RORBACH LES DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57595"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e559a790e2e164e66dbfa730ba058b1299c45ee7", "fields": {"nom_de_la_commune": "ROZERIEULLES", "libell_d_acheminement": "ROZERIEULLES", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57601"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4adaa2d1bc2e7e835d5d2419a5d273f3ad6dd6", "fields": {"nom_de_la_commune": "ST HUBERT", "libell_d_acheminement": "ST HUBERT", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57612"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6567f904b38faf50b80855b6aa6b10242ee3dc", "fields": {"nom_de_la_commune": "ST JEAN ROHRBACH", "libell_d_acheminement": "ST JEAN ROHRBACH", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57615"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62471ccf6e082f9a77c50ca9860f8f06874228e5", "fields": {"nom_de_la_commune": "SARRALBE", "libell_d_acheminement": "SARRALBE", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57628"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ae5bc62e3e02e8312695e20d19ccb7dac7c3274", "fields": {"nom_de_la_commune": "SARREGUEMINES", "libell_d_acheminement": "SARREGUEMINES", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57631"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91932dcb890dfd248a5b3f292319c939be86e90e", "fields": {"nom_de_la_commune": "SCHALBACH", "libell_d_acheminement": "SCHALBACH", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57635"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71aa4c4d3283dcf8662d7de5909e50fcdf2f4d8", "fields": {"nom_de_la_commune": "SCY CHAZELLES", "libell_d_acheminement": "SCY CHAZELLES", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57642"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69071e526e1e6c0494c17f623e9fcdcfc9ecf4c", "fields": {"nom_de_la_commune": "SECOURT", "libell_d_acheminement": "SECOURT", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57643"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a75456d9b34cd4c82dccdf5ee4f0f4543e1e036", "fields": {"nom_de_la_commune": "SEMECOURT", "libell_d_acheminement": "SEMECOURT", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57645"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aff23727722fa5056c3e5a57536a53d7c1e16b6", "fields": {"nom_de_la_commune": "SOTZELING", "libell_d_acheminement": "SOTZELING", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57657"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d067809b7098e2d16fedf27bb6a5b1899db560a2", "fields": {"code_postal": "57350", "code_commune_insee": "57659", "libell_d_acheminement": "SPICHEREN", "ligne_5": "LA BREME D OR", "nom_de_la_commune": "SPICHEREN", "coordonnees_gps": [49.2014476423, 6.94907800284]}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033690e10139498607e5ab697741ccd374fdefa9", "fields": {"nom_de_la_commune": "STURZELBRONN", "libell_d_acheminement": "STURZELBRONN", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57661"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a516cc9b6e88b3f6492181190818d44724439520", "fields": {"nom_de_la_commune": "SUISSE", "libell_d_acheminement": "SUISSE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57662"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc5b842aec15dbdd2bee9fab0b54fd39eaac2f9", "fields": {"nom_de_la_commune": "TETERCHEN", "libell_d_acheminement": "TETERCHEN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57667"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0127985aa82ed5b3d0bf5417026ecad3e0e02439", "fields": {"nom_de_la_commune": "THEDING", "libell_d_acheminement": "THEDING", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57669"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7069cfc78578f1141aa32cfca7c0a12c30db3f", "fields": {"code_postal": "57100", "code_commune_insee": "57672", "libell_d_acheminement": "THIONVILLE", "ligne_5": "GARCHE", "nom_de_la_commune": "THIONVILLE", "coordonnees_gps": [49.376778126, 6.13767637123]}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eacbb2b711da24d6aa96e41bf7876651a6050ff7", "fields": {"code_postal": "57100", "code_commune_insee": "57672", "libell_d_acheminement": "THIONVILLE", "ligne_5": "KOEKING", "nom_de_la_commune": "THIONVILLE", "coordonnees_gps": [49.376778126, 6.13767637123]}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068d2a8badf2bba2a0803b87b8a9f4af664fd317", "fields": {"code_postal": "57100", "code_commune_insee": "57672", "libell_d_acheminement": "THIONVILLE", "ligne_5": "OEUTRANGE", "nom_de_la_commune": "THIONVILLE", "coordonnees_gps": [49.376778126, 6.13767637123]}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "546ac405964b9cec05639e39eb5c4a3caea3e5f1", "fields": {"nom_de_la_commune": "TORCHEVILLE", "libell_d_acheminement": "TORCHEVILLE", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57675"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783b718687ec3d5100fd160f24f7510c74870ff1", "fields": {"code_postal": "57710", "code_commune_insee": "57678", "libell_d_acheminement": "TRESSANGE", "ligne_5": "BURE", "nom_de_la_commune": "TRESSANGE", "coordonnees_gps": [49.4142056636, 5.96361653857]}, "geometry": {"type": "Point", "coordinates": [5.96361653857, 49.4142056636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827e9009c42c3c9666c4c0998ae79b6b09cab778", "fields": {"nom_de_la_commune": "TROMBORN", "libell_d_acheminement": "TROMBORN", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57681"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6fdd20907da474ccaccbc88896569950641545", "fields": {"nom_de_la_commune": "TURQUESTEIN BLANCRUPT", "libell_d_acheminement": "TURQUESTEIN BLANCRUPT", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57682"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44ad39beeb0f9b3818e3af0d0b358dc158bf5c3", "fields": {"nom_de_la_commune": "UCKANGE", "libell_d_acheminement": "UCKANGE", "code_postal": "57270", "coordonnees_gps": [49.2922818773, 6.15848861303], "code_commune_insee": "57683"}, "geometry": {"type": "Point", "coordinates": [6.15848861303, 49.2922818773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91398df691928745cde263910865afb6955b25f", "fields": {"nom_de_la_commune": "VALMESTROFF", "libell_d_acheminement": "VALMESTROFF", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57689"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a406422402fefb47e96d561a234b00ecd1d371", "fields": {"nom_de_la_commune": "VANY", "libell_d_acheminement": "VANY", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57694"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5c4aecf7a35c92fcbf01a6a91724d8c09045c1", "fields": {"nom_de_la_commune": "VATIMONT", "libell_d_acheminement": "VATIMONT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57698"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1823a15b0a407b66c0ba4d79e1498c1f167751a3", "fields": {"nom_de_la_commune": "VECKERSVILLER", "libell_d_acheminement": "VECKERSVILLER", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57703"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff79646473bc4479568a350090b1ffa6b816653", "fields": {"nom_de_la_commune": "VERNY", "libell_d_acheminement": "VERNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57708"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a61231bc8b7bb71c000999f93d2c08cd2e6b822", "fields": {"nom_de_la_commune": "VILLERS SUR NIED", "libell_d_acheminement": "VILLERS SUR NIED", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57719"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de0c2c7e7aa353b8ac18207225622c94949afb8", "fields": {"nom_de_la_commune": "VIONVILLE", "libell_d_acheminement": "VIONVILLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57722"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c20e626095d70d6ba8d4969146cd7864ae764d5", "fields": {"nom_de_la_commune": "VITRY SUR ORNE", "libell_d_acheminement": "VITRY SUR ORNE", "code_postal": "57185", "coordonnees_gps": [49.2729654121, 6.09323392061], "code_commune_insee": "57724"}, "geometry": {"type": "Point", "coordinates": [6.09323392061, 49.2729654121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cc8a9c67f594269adf2914eca6b6ca7539c4b8", "fields": {"nom_de_la_commune": "VOLSTROFF", "libell_d_acheminement": "VOLSTROFF", "code_postal": "57940", "coordonnees_gps": [49.3080727824, 6.26745665011], "code_commune_insee": "57733"}, "geometry": {"type": "Point", "coordinates": [6.26745665011, 49.3080727824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c2a885fd8b6d13f9d8fd67e9bd8d6954dcda71", "fields": {"nom_de_la_commune": "VRY", "libell_d_acheminement": "VRY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57736"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffa23e06c5915dcc0a6925cf05b56438ce42011", "fields": {"nom_de_la_commune": "XANREY", "libell_d_acheminement": "XANREY", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57754"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417a9171d6f3a5b8422bddb871e0cad484c1ecf0", "fields": {"nom_de_la_commune": "XOCOURT", "libell_d_acheminement": "XOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57755"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a94c65aa7319e932ecbf035c16ec1dc8b4da7eaa", "fields": {"nom_de_la_commune": "YUTZ", "libell_d_acheminement": "YUTZ", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57757"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9c31512e4e934f0d8e9f396a11ee3063367deb", "fields": {"nom_de_la_commune": "ACHUN", "libell_d_acheminement": "ACHUN", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58001"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78e4d122fcbbef1a657594389f49557ecde1a5b", "fields": {"nom_de_la_commune": "ANTHIEN", "libell_d_acheminement": "ANTHIEN", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58008"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a341865281d66a268767ca2cc78582520390a44", "fields": {"nom_de_la_commune": "ARLEUF", "libell_d_acheminement": "ARLEUF", "code_postal": "58430", "coordonnees_gps": [47.0330840616, 4.00599450154], "code_commune_insee": "58010"}, "geometry": {"type": "Point", "coordinates": [4.00599450154, 47.0330840616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c4177accae18909878b27e0452133948cfe615", "fields": {"nom_de_la_commune": "ARMES", "libell_d_acheminement": "ARMES", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58011"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbacbfb4edfdfa4a298e5f903c598dcde5e8a142", "fields": {"code_postal": "58420", "code_commune_insee": "58026", "libell_d_acheminement": "BEAULIEU", "ligne_5": "DOMPIERRE SUR HERY", "nom_de_la_commune": "BEAULIEU", "coordonnees_gps": [47.256904548, 3.52495199281]}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4547a5381d5b7f0b157588e20768228f1b74d7", "fields": {"nom_de_la_commune": "BEAUMONT SARDOLLES", "libell_d_acheminement": "BEAUMONT SARDOLLES", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58028"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1acf76d538b1fd80a27c479ed27b9fca41db2a8", "fields": {"nom_de_la_commune": "BICHES", "libell_d_acheminement": "BICHES", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58030"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd9d08d6b39a3565b9c8a9a847f411a40a9049b", "fields": {"nom_de_la_commune": "BONA", "libell_d_acheminement": "BONA", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58035"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4d339aa1324bd68dd97d2551bc6d11969587f5", "fields": {"nom_de_la_commune": "BRINAY", "libell_d_acheminement": "BRINAY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58040"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d8a54c139ead07319f5795aebf24ee1c6cda3", "fields": {"code_postal": "58000", "code_commune_insee": "58051", "libell_d_acheminement": "CHALLUY", "ligne_5": "PLAGNY", "nom_de_la_commune": "CHALLUY", "coordonnees_gps": [46.9644333624, 3.17459118159]}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6291fb56878d22c40a1240b933a4438a2210cd2", "fields": {"nom_de_la_commune": "CHAMPALLEMENT", "libell_d_acheminement": "CHAMPALLEMENT", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58052"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232ec03546afd71ce2db36e246c72cff3faeed3a", "fields": {"code_postal": "58240", "code_commune_insee": "58057", "libell_d_acheminement": "CHANTENAY ST IMBERT", "ligne_5": "ST IMBERT", "nom_de_la_commune": "CHANTENAY ST IMBERT", "coordonnees_gps": [46.7881740405, 3.18476198452]}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4aeca13d961b54652d69f89d11ab6c380778718", "fields": {"nom_de_la_commune": "CHASNAY", "libell_d_acheminement": "CHASNAY", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58061"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa61b8dfd1e1c47fdd6e254ac536454becda6d1", "fields": {"nom_de_la_commune": "CHATEAU CHINON VILLE", "libell_d_acheminement": "CHATEAU CHINON", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58062"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e86e14ae661251538fed8c2128f13b298063b9", "fields": {"nom_de_la_commune": "CHAZEUIL", "libell_d_acheminement": "CHAZEUIL", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58070"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8a063f7e0be2e80fe66fb7869e5fd564c58726", "fields": {"nom_de_la_commune": "CHEVENON", "libell_d_acheminement": "CHEVENON", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58072"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca534f4fd31c919b062a28911eda9fdeed66fad8", "fields": {"nom_de_la_commune": "CHIDDES", "libell_d_acheminement": "CHIDDES", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58074"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbc6e99d6496af6c0670416b3d3700fbad1a2fe", "fields": {"nom_de_la_commune": "VILLARS SOUS DAMPJOUX", "libell_d_acheminement": "VILLARS SOUS DAMPJOUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25617"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02af270f30e92b19ba06c34f38535131a11cd4e", "fields": {"nom_de_la_commune": "VILLARS SOUS ECOT", "libell_d_acheminement": "VILLARS SOUS ECOT", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25618"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360d8e111ba7a97ed4f5dc3c18f10dee44599dd7", "fields": {"nom_de_la_commune": "VILLE DU PONT", "libell_d_acheminement": "VILLE DU PONT", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25620"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40379373b52da16d43e8f2ccdf142ffeb935df44", "fields": {"nom_de_la_commune": "ALBON", "libell_d_acheminement": "ALBON", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26002"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e413922918f6126b1db505678410441f7c78b8", "fields": {"nom_de_la_commune": "ALIXAN", "libell_d_acheminement": "ALIXAN", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26004"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf9af3b59e6432ddfda2df618341540ec161895", "fields": {"nom_de_la_commune": "ANDANCETTE", "libell_d_acheminement": "ANDANCETTE", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26009"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f361dedbc0fcb7cbea5461894fb1bcf41624a9c1", "fields": {"code_postal": "26140", "code_commune_insee": "26009", "libell_d_acheminement": "ANDANCETTE", "ligne_5": "CREUX DE LA THINE", "nom_de_la_commune": "ANDANCETTE", "coordonnees_gps": [45.2622032163, 4.86699876584]}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292536f5b31c37ca2d87828cdcb2e6d69eb904b2", "fields": {"nom_de_la_commune": "ANNEYRON", "libell_d_acheminement": "ANNEYRON", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26010"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3117be0df5bd9e087e7b4857efc0c75c882e46ce", "fields": {"nom_de_la_commune": "ARTHEMONAY", "libell_d_acheminement": "ARTHEMONAY", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26014"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8abe22a0cf1983421f95dd8c84365a5d09b1bae8", "fields": {"nom_de_la_commune": "AUBRES", "libell_d_acheminement": "AUBRES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26016"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e239c72fcff90f13ead660cb8eb1077cdfd0ab1e", "fields": {"nom_de_la_commune": "BALLONS", "libell_d_acheminement": "BALLONS", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26022"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47aabe6e2c5e71686e2c33857fe52e01ef3044fa", "fields": {"nom_de_la_commune": "BEAUMONT EN DIOIS", "libell_d_acheminement": "BEAUMONT EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26036"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a663c9e31627a058de6b97b0fc3d80b41411ed03", "fields": {"nom_de_la_commune": "BEAUVALLON", "libell_d_acheminement": "BEAUVALLON", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26042"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a762fb3739eac42d59e8c7d0d783d1b6efd9631", "fields": {"nom_de_la_commune": "BELLEGARDE EN DIOIS", "libell_d_acheminement": "BELLEGARDE EN DIOIS", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26047"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1711483133ca5e2adb13e87895f0fdc0c38ef3", "fields": {"nom_de_la_commune": "BENIVAY OLLON", "libell_d_acheminement": "BENIVAY OLLON", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26048"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07dc79de93cb08d5c23ddcbfa0020d5763e4786e", "fields": {"nom_de_la_commune": "BOUCHET", "libell_d_acheminement": "BOUCHET", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26054"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b00f1e90160fdf77957d3c9e30550008d22939", "fields": {"nom_de_la_commune": "BOURDEAUX", "libell_d_acheminement": "BOURDEAUX", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26056"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa418c016f24d5b6522a93a48956570128dcac0", "fields": {"nom_de_la_commune": "BOUVIERES", "libell_d_acheminement": "BOUVIERES", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26060"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa1de0c307969eada5407f3c3de73d4a0cd5aab", "fields": {"nom_de_la_commune": "BREN", "libell_d_acheminement": "BREN", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26061"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9498becb34ef9b2c6a3e7a2c9ad4a6c9a542b6f6", "fields": {"code_postal": "26420", "code_commune_insee": "26074", "libell_d_acheminement": "LA CHAPELLE EN VERCORS", "ligne_5": "LES BARRAQUES EN VERCORS", "nom_de_la_commune": "LA CHAPELLE EN VERCORS", "coordonnees_gps": [44.9365927101, 5.42231201851]}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3cbd34b544613af139fb2e973e2d4e6b4b2b8d9", "fields": {"code_postal": "26300", "code_commune_insee": "26079", "libell_d_acheminement": "CHARPEY", "ligne_5": "ST DIDIER DE CHARPEY", "nom_de_la_commune": "CHARPEY", "coordonnees_gps": [44.9876949669, 5.0803109859]}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba9911d7ea31577f99532b87094a402b1d67383", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR ISERE", "libell_d_acheminement": "CHATEAUNEUF SUR ISERE", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26084"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c95a7577615a83a2fcc240a06dd0cfd3445190e", "fields": {"nom_de_la_commune": "CHATILLON EN DIOIS", "libell_d_acheminement": "CHATILLON EN DIOIS", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26086"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7234a7e8e3f215574819734a78001953bedb0d", "fields": {"nom_de_la_commune": "COLONZELLE", "libell_d_acheminement": "COLONZELLE", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26099"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ab77c0bbcf258629919451c22094e2c7b305c1", "fields": {"nom_de_la_commune": "CORNILLAC", "libell_d_acheminement": "CORNILLAC", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26104"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ff77cc3d6abb9302b852d8a508877a8b9c308b", "fields": {"code_postal": "26740", "code_commune_insee": "26106", "libell_d_acheminement": "LA COUCOURDE", "ligne_5": "DERBIERES", "nom_de_la_commune": "LA COUCOURDE", "coordonnees_gps": [44.6175061627, 4.82925969316]}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77e7e6090ab315de9eb7c491c8291964f658100", "fields": {"nom_de_la_commune": "DONZERE", "libell_d_acheminement": "DONZERE", "code_postal": "26290", "coordonnees_gps": [44.4311529831, 4.71776932264], "code_commune_insee": "26116"}, "geometry": {"type": "Point", "coordinates": [4.71776932264, 44.4311529831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021b8b88e17a9cc8dd1b48c926e0bd500c46cade", "fields": {"nom_de_la_commune": "EPINOUZE", "libell_d_acheminement": "EPINOUZE", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26118"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1b86c29c528a2d38d7758cc2a25fc9b72c332e", "fields": {"nom_de_la_commune": "EROME", "libell_d_acheminement": "EROME", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26119"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0707dc2762be4cfde92e990d527945976e478ec", "fields": {"nom_de_la_commune": "EURRE", "libell_d_acheminement": "EURRE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26125"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65eb8ba16bf15d13b711862592778369b4fb6244", "fields": {"nom_de_la_commune": "EYGALAYES", "libell_d_acheminement": "EYGALAYES", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26126"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e099c00c653fa0e55524c91483faf79ab6d42e7", "fields": {"nom_de_la_commune": "EYGLUY ESCOULIN", "libell_d_acheminement": "EYGLUY ESCOULIN", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26128"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c46b14f3ca7a572f34b8766f65f03dcfa3dd88", "fields": {"nom_de_la_commune": "FELINES SUR RIMANDOULE", "libell_d_acheminement": "FELINES SUR RIMANDOULE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26134"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358c14be8708b57b5a40c22e99053dda4f09d186", "fields": {"code_postal": "26310", "code_commune_insee": "26136", "libell_d_acheminement": "VAL MARAVEL", "ligne_5": "LE PILHON", "nom_de_la_commune": "VAL MARAVEL", "coordonnees_gps": [44.5689961906, 5.50488176905]}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1c77ab8c86fbd96478867287d84c14a9a2535d", "fields": {"nom_de_la_commune": "GRANE", "libell_d_acheminement": "GRANE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26144"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c2a1a436606d184fab4813d976467ea60c89d0", "fields": {"nom_de_la_commune": "LES GRANGES GONTARDES", "libell_d_acheminement": "LES GRANGES GONTARDES", "code_postal": "26290", "coordonnees_gps": [44.4311529831, 4.71776932264], "code_commune_insee": "26145"}, "geometry": {"type": "Point", "coordinates": [4.71776932264, 44.4311529831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f19c168b6648e6c5c03c98a0f48dc4e1ca3adbc", "fields": {"nom_de_la_commune": "LARNAGE", "libell_d_acheminement": "LARNAGE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26156"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f944ec47ddd003c18f200715a7f2fb92b331650", "fields": {"nom_de_la_commune": "LA LAUPIE", "libell_d_acheminement": "LA LAUPIE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26157"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5219f22c5e4480eede6428ec6d6b65c2e4e6d30", "fields": {"code_postal": "26250", "code_commune_insee": "26165", "libell_d_acheminement": "LIVRON SUR DROME", "ligne_5": "LES PETITS ROBINS", "nom_de_la_commune": "LIVRON SUR DROME", "coordonnees_gps": [44.7874591799, 4.83851475178]}, "geometry": {"type": "Point", "coordinates": [4.83851475178, 44.7874591799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5c0cf5e99c4b8dd0ccf1537964e3ec3c874789", "fields": {"nom_de_la_commune": "MERCUROL VEAUNES", "libell_d_acheminement": "MERCUROL VEAUNES", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26179"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b47ad11f703a41192858d4bbffef6ce2692224", "fields": {"nom_de_la_commune": "MIRMANDE", "libell_d_acheminement": "MIRMANDE", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26185"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b2a7495cf17d904d2afdfd293806211fa348d9", "fields": {"nom_de_la_commune": "MONTAULIEU", "libell_d_acheminement": "MONTAULIEU", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26190"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005070e038cd244599d6128f19251ab41006f9fd", "fields": {"nom_de_la_commune": "MONTELIER", "libell_d_acheminement": "MONTELIER", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26197"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2ea48bf6215b1b7610ac82a8613960b81b02e0", "fields": {"nom_de_la_commune": "MONTELIMAR", "libell_d_acheminement": "MONTELIMAR", "code_postal": "26200", "coordonnees_gps": [44.5548199965, 4.74796911041], "code_commune_insee": "26198"}, "geometry": {"type": "Point", "coordinates": [4.74796911041, 44.5548199965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbed8518ae415343af659aa02c3717b7d862a7b9", "fields": {"nom_de_la_commune": "MONTMEYRAN", "libell_d_acheminement": "MONTMEYRAN", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26206"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8784c2f37575806013ae1d10a327fed07dcc62", "fields": {"nom_de_la_commune": "MONTSEGUR SUR LAUZON", "libell_d_acheminement": "MONTSEGUR SUR LAUZON", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26211"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebff5eebbab263148e25d1938ddd60bccbb4395d", "fields": {"nom_de_la_commune": "MORAS EN VALLOIRE", "libell_d_acheminement": "MORAS EN VALLOIRE", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26213"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2f382234428f4406bbf7f743371ab31c2964ca", "fields": {"nom_de_la_commune": "NYONS", "libell_d_acheminement": "NYONS", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26220"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2aa79bc3a47da75db5a7855bd86242c6664b84", "fields": {"nom_de_la_commune": "ORIOL EN ROYANS", "libell_d_acheminement": "ORIOL EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26223"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0dd49538842dbcb6aae66c1ada93541a442212", "fields": {"nom_de_la_commune": "PLAN DE BAIX", "libell_d_acheminement": "PLAN DE BAIX", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26240"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a40d0e05c408af55addfb75c97872b02f77281", "fields": {"nom_de_la_commune": "LE POET LAVAL", "libell_d_acheminement": "LE POET LAVAL", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26243"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f34624860c7dc412f6f0cf9352e07d5bc09d9f8b", "fields": {"nom_de_la_commune": "PONSAS", "libell_d_acheminement": "PONSAS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26247"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c98db50307063c4e91b4ebce1bb11f7a8bb43c", "fields": {"nom_de_la_commune": "PORTES LES VALENCE", "libell_d_acheminement": "PORTES LES VALENCE", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26252"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98fc52c987143975c23c7945144b0afbaa29c274", "fields": {"nom_de_la_commune": "PRADELLE", "libell_d_acheminement": "PRADELLE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26254"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9d2dcd327462209eb771492ac9a84c970bedbf", "fields": {"nom_de_la_commune": "LES PRES", "libell_d_acheminement": "LES PRES", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26255"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0ed28a2fc98187414f8943a24d4648e146b5d3", "fields": {"nom_de_la_commune": "REMUZAT", "libell_d_acheminement": "REMUZAT", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26264"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31a9599c3c98df3733937d71e32126ceaa521ff", "fields": {"nom_de_la_commune": "ROCHEBRUNE", "libell_d_acheminement": "ROCHEBRUNE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26269"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adb66483f65c6f0b6d059a53053295f4e3c7c8b", "fields": {"nom_de_la_commune": "ROCHEFORT SAMSON", "libell_d_acheminement": "ROCHEFORT SAMSON", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26273"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5fb7e901053cf7401989f389a990bdfc7aba603", "fields": {"nom_de_la_commune": "ROCHE ST SECRET BECONNE", "libell_d_acheminement": "ROCHE ST SECRET BECONNE", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26276"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c09ea2caefc8ec75640e1541233c966745758e1", "fields": {"nom_de_la_commune": "LA ROCHE SUR GRANE", "libell_d_acheminement": "LA ROCHE SUR GRANE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26277"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250394ec6f89cda9dcd994de029a06b91b82ad97", "fields": {"nom_de_la_commune": "ROYNAC", "libell_d_acheminement": "ROYNAC", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26287"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60cf0a91f2f4f17fa5e69b60fe02b8a17a32745", "fields": {"nom_de_la_commune": "SAHUNE", "libell_d_acheminement": "SAHUNE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26288"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca05a91ece75b1ea64b9bd6d828364d989a45800", "fields": {"nom_de_la_commune": "ST AUBAN SUR L OUVEZE", "libell_d_acheminement": "ST AUBAN SUR L OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26292"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc7683fcc52a1f1fe6d00b343e0b22ccdecf975", "fields": {"nom_de_la_commune": "ST BARDOUX", "libell_d_acheminement": "ST BARDOUX", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26294"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b8e5f370d64e0f2e64ee0040748e005fc681a9", "fields": {"nom_de_la_commune": "ST JEAN EN ROYANS", "libell_d_acheminement": "ST JEAN EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26307"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfbf28875b8be702575febf6cf66ea4f3f3becf", "fields": {"nom_de_la_commune": "ST MARTIN EN VERCORS", "libell_d_acheminement": "ST MARTIN EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26315"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8cd3d8787bfa0c81909f63656b57ce58eec1798", "fields": {"nom_de_la_commune": "ST NAZAIRE EN ROYANS", "libell_d_acheminement": "ST NAZAIRE EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26320"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183058ca27d66fabbaf8f57b32b0e9735abfd70e", "fields": {"nom_de_la_commune": "ST PANTALEON LES VIGNES", "libell_d_acheminement": "ST PANTALEON LES VIGNES", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26322"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc250b2b4f277dcf70cd4e0f146f4c791a4a986", "fields": {"nom_de_la_commune": "ST ROMAN", "libell_d_acheminement": "ST ROMAN", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26327"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e3aa7f4b24d16a078283ab9b6ffe54a6fa7fa2", "fields": {"nom_de_la_commune": "SAVASSE", "libell_d_acheminement": "SAVASSE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26339"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcee7d81d6a36d197a8f1cff297db47856f38f4", "fields": {"nom_de_la_commune": "SOUSPIERRE", "libell_d_acheminement": "SOUSPIERRE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26343"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63db238e71333d7065b152186484217ee61f2c60", "fields": {"nom_de_la_commune": "SUZE", "libell_d_acheminement": "SUZE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26346"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da0f1c61ac40258b1445a11ce1c1758091868cf", "fields": {"nom_de_la_commune": "TAIN L HERMITAGE", "libell_d_acheminement": "TAIN L HERMITAGE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26347"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0608a21bf7794da71d86c4a122af9e8f3f805b3a", "fields": {"nom_de_la_commune": "TERSANNE", "libell_d_acheminement": "TERSANNE", "code_postal": "26390", "coordonnees_gps": [45.2443633051, 5.0335654091], "code_commune_insee": "26349"}, "geometry": {"type": "Point", "coordinates": [5.0335654091, 45.2443633051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c709528bc4b620c22c34505eb4b1afc63c918d0", "fields": {"nom_de_la_commune": "TULETTE", "libell_d_acheminement": "TULETTE", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26357"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f07f84f610d680fb62867264ffcb6f62643e08", "fields": {"nom_de_la_commune": "VALAURIE", "libell_d_acheminement": "VALAURIE", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26360"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7dac3bcaffec8c1a485a042470bd2b8de81b364", "fields": {"nom_de_la_commune": "VALENCE", "libell_d_acheminement": "VALENCE", "code_postal": "26000", "coordonnees_gps": [44.9223144548, 4.91305108836], "code_commune_insee": "26362"}, "geometry": {"type": "Point", "coordinates": [4.91305108836, 44.9223144548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1014cb19fd0d121f4cce4de0c216317fa6cb5c", "fields": {"nom_de_la_commune": "VASSIEUX EN VERCORS", "libell_d_acheminement": "VASSIEUX EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26364"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22aeebc72000b9e2307623ff93c992ef2458a1c0", "fields": {"nom_de_la_commune": "VILLEFRANCHE LE CHATEAU", "libell_d_acheminement": "VILLEFRANCHE LE CHATEAU", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26375"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523c9564620a7ccd137145bb10f194777e80636f", "fields": {"nom_de_la_commune": "VOLVENT", "libell_d_acheminement": "VOLVENT", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26378"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97194df95341b5d22ee2891a6e7e50473b7a0595", "fields": {"nom_de_la_commune": "JAILLANS", "libell_d_acheminement": "JAILLANS", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26381"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12675b0239ce6858efd85db6b6442168d52eacf5", "fields": {"nom_de_la_commune": "ST VINCENT LA COMMANDERIE", "libell_d_acheminement": "ST VINCENT LA COMMANDERIE", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26382"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05256559eb4110401c92f823a5d4ffe3b7daaccf", "fields": {"nom_de_la_commune": "ACLOU", "libell_d_acheminement": "ACLOU", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27001"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd3993ac064d17b1aa0302f64c3e5c5c958e44b", "fields": {"nom_de_la_commune": "ACQUIGNY", "libell_d_acheminement": "ACQUIGNY", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27003"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f6fd72787afc6db1da0ada6a5b4d8a41f660e6", "fields": {"nom_de_la_commune": "AMBENAY", "libell_d_acheminement": "AMBENAY", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27009"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb451f763bd109e36f42afc9226cf9224a9226b", "fields": {"nom_de_la_commune": "ARNIERES SUR ITON", "libell_d_acheminement": "ARNIERES SUR ITON", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27020"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea332fb480f5ddb8f620cdf516a2b759016d01d", "fields": {"nom_de_la_commune": "AVIRON", "libell_d_acheminement": "AVIRON", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27031"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1d89b6da96dd5ed966b1935b46eb2666f7e829", "fields": {"nom_de_la_commune": "BARC", "libell_d_acheminement": "BARC", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27037"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4ffc67e272cef31e56c2897296adbc1bb0650e", "fields": {"nom_de_la_commune": "BARQUET", "libell_d_acheminement": "BARQUET", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27040"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5917ae27df137fdc2fb280e0dc1b2aeceb2a1628", "fields": {"nom_de_la_commune": "BEAUFICEL EN LYONS", "libell_d_acheminement": "BEAUFICEL EN LYONS", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27048"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52cbc6ec6744e43afeb38c35c2bfcbc66587b1e", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "BOSC RENOULT EN OUCHE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c53ab0d357439453078226e6374643b7e4e1ab", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "GOUTTIERES", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f021d5489b18d4f33d2618c12f2368ad506d932", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "GRANCHAIN", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7828aa8be4b9a738c3c536ca61ecf058bea2c3b", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "STE MARGUERITE EN OUCHE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2919c04ba0937950f6f72f285a9a924acae6012c", "fields": {"nom_de_la_commune": "LE BEC HELLOUIN", "libell_d_acheminement": "LE BEC HELLOUIN", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27052"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c93fdf3013824a89183bc0eedb66b09d0e0b25", "fields": {"nom_de_la_commune": "BERENGEVILLE LA CAMPAGNE", "libell_d_acheminement": "BERENGEVILLE LA CAMPAGNE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27055"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40bfce861344e43af460e527814ad0adbe00cfb", "fields": {"nom_de_la_commune": "BERNIENVILLE", "libell_d_acheminement": "BERNIENVILLE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27057"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb874d8735ba57460778c42efa8180240bf21c88", "fields": {"nom_de_la_commune": "BERVILLE EN ROUMOIS", "libell_d_acheminement": "BERVILLE EN ROUMOIS", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27062"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63f7920468667c97f83f11d42f033426eebb80ee", "fields": {"nom_de_la_commune": "BEUZEVILLE", "libell_d_acheminement": "BEUZEVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27065"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d436300b47de1fcd7e8bf36d5f9ccb83475f9532", "fields": {"nom_de_la_commune": "BEZU LA FORET", "libell_d_acheminement": "BEZU LA FORET", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27066"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd2772a03d8c4e03c99b8b098f9c558f0a3fab5", "fields": {"nom_de_la_commune": "ASNIERES SUR NOUERE", "libell_d_acheminement": "ASNIERES SUR NOUERE", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16019"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e9bbec29e5a492110849c4dafd3ada82f72eef", "fields": {"nom_de_la_commune": "AUBETERRE SUR DRONNE", "libell_d_acheminement": "AUBETERRE SUR DRONNE", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16020"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2becc953eff54186f7e260d19ac6e0540d6dc34", "fields": {"nom_de_la_commune": "BAIGNES STE RADEGONDE", "libell_d_acheminement": "BAIGNES STE RADEGONDE", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16025"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c0c5af3edd5ea0811b0719c013f7ba0e9ccba2", "fields": {"nom_de_la_commune": "BARDENAC", "libell_d_acheminement": "BARDENAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16029"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58461406b22904360aed3d1462a98c3053ae43a1", "fields": {"nom_de_la_commune": "BASSAC", "libell_d_acheminement": "BASSAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16032"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb54d5d699c59b59b08f487101cc40c252fe566", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16040"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733b18cb846407a6bd73584aa8cad70618c88d4e", "fields": {"nom_de_la_commune": "BIRAC", "libell_d_acheminement": "BIRAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16045"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e19de2bba0c056197bfcd5bbdcaec23e9d66a0", "fields": {"nom_de_la_commune": "BLANZAGUET ST CYBARD", "libell_d_acheminement": "BLANZAGUET ST CYBARD", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16047"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c38b0fc7af8cf1eec69ddbc7913a2a74a1ea86", "fields": {"nom_de_la_commune": "LE BOUCHAGE", "libell_d_acheminement": "LE BOUCHAGE", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16054"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc13c85bcc34c52cd2b92f0aaf595c7c8cf8f20", "fields": {"nom_de_la_commune": "BRILLAC", "libell_d_acheminement": "BRILLAC", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16065"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5e3ac5f6e28fd873cc594e9e7a4df88bb44e06", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16073"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03220530a7b2f47d2739c7c24b534b9bac582ac", "fields": {"code_postal": "16210", "code_commune_insee": "16073", "libell_d_acheminement": "CHALAIS", "ligne_5": "SERIGNAC", "nom_de_la_commune": "CHALAIS", "coordonnees_gps": [45.2719672367, 0.0511310562847]}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d971eb3f01f09e0c4f069510ecef1b49beff6248", "fields": {"nom_de_la_commune": "CHAMPMILLON", "libell_d_acheminement": "CHAMPMILLON", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16077"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d9f3eb48bbdcce0a331df62da278c6107199d0", "fields": {"nom_de_la_commune": "CHASSORS", "libell_d_acheminement": "CHASSORS", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16088"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2144987db62d1f003ed6b6673feceb76b090c025", "fields": {"nom_de_la_commune": "CHATIGNAC", "libell_d_acheminement": "CHATIGNAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16091"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20240386139e665c0bc4a813a2eb50be715a5db", "fields": {"nom_de_la_commune": "CHERVES CHATELARS", "libell_d_acheminement": "CHERVES CHATELARS", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16096"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a07d1e7c307ff179af3c8bd1ea8cc818dbaa989", "fields": {"nom_de_la_commune": "LA CHEVRERIE", "libell_d_acheminement": "LA CHEVRERIE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16098"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24cf0f380bace4f8efdb81aef12dcfa02d97bdaf", "fields": {"nom_de_la_commune": "CONDEON", "libell_d_acheminement": "CONDEON", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16105"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a399b2e4dea422a58aab9ae2d3e971ee3075b3fe", "fields": {"nom_de_la_commune": "COULGENS", "libell_d_acheminement": "COULGENS", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16107"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913ebca2a28a1a55d3e111f8df0ea3bef9744e12", "fields": {"nom_de_la_commune": "L HOPITAL SOUS ROCHEFORT", "libell_d_acheminement": "L HOPITAL SOUS ROCHEFORT", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42109"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db3a62dab2a13a1b65faa7d290399784ddc6b86", "fields": {"nom_de_la_commune": "L HORME", "libell_d_acheminement": "L HORME", "code_postal": "42152", "coordonnees_gps": [45.4921206282, 4.54073331878], "code_commune_insee": "42110"}, "geometry": {"type": "Point", "coordinates": [4.54073331878, 45.4921206282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4953385e0b9b461f0763f147713af7e2ff4495", "fields": {"nom_de_la_commune": "JAS", "libell_d_acheminement": "JAS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42113"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efd02241b05f7a0c175ac0bbc54dde35701c8e5", "fields": {"nom_de_la_commune": "JURE", "libell_d_acheminement": "JURE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42116"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c42e33c7599332e2cc4d5f0dea4364abe7b0e999", "fields": {"nom_de_la_commune": "LENTIGNY", "libell_d_acheminement": "LENTIGNY", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42120"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd63046c6377a9fc66b50c74de71bfc30a1053fa", "fields": {"nom_de_la_commune": "LERIGNEUX", "libell_d_acheminement": "LERIGNEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42121"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ccd097435e8752a5bb62bff0963f96cde72bd30", "fields": {"nom_de_la_commune": "MAIZILLY", "libell_d_acheminement": "MAIZILLY", "code_postal": "42750", "coordonnees_gps": [46.1636009324, 4.23557932675], "code_commune_insee": "42131"}, "geometry": {"type": "Point", "coordinates": [4.23557932675, 46.1636009324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3aee094e60a651439665b628f264320cd275aae", "fields": {"nom_de_la_commune": "MAROLS", "libell_d_acheminement": "MAROLS", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42140"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492619d2c7857b93b8419de46d67dda0c55d01d6", "fields": {"nom_de_la_commune": "MERLE LEIGNEC", "libell_d_acheminement": "MERLE LEIGNEC", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42142"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863eef623a7ce3199b1a468428f5775c566ab4f4", "fields": {"nom_de_la_commune": "MONTARCHER", "libell_d_acheminement": "MONTARCHER", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42146"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ed9ec9546d2ea4f12789490c99a2529f7b8c2d", "fields": {"nom_de_la_commune": "MONTCHAL", "libell_d_acheminement": "MONTCHAL", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42148"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34cc7e8d1cd3bd70ae875cfd0d5e2ca2906f4908", "fields": {"nom_de_la_commune": "MONTROND LES BAINS", "libell_d_acheminement": "MONTROND LES BAINS", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42149"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686847bc76f3fe36adb8df8cfb5f6617021efd52", "fields": {"nom_de_la_commune": "NANDAX", "libell_d_acheminement": "NANDAX", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42152"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b4d0822a6b0480570333d31b49f5447cf625ce", "fields": {"nom_de_la_commune": "NOAILLY", "libell_d_acheminement": "NOAILLY", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42157"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824b7ef58ffede5c3716ccb9c1c744d6f7539917", "fields": {"nom_de_la_commune": "NOLLIEUX", "libell_d_acheminement": "NOLLIEUX", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42160"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3608961dd35b52eaeefe55bc259e9ed37c4cac", "fields": {"nom_de_la_commune": "PERREUX", "libell_d_acheminement": "PERREUX", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42170"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87284617c8eced0dee9d0e9a0845c6dd1d54cbac", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42173"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4120caaab5f2acffbd1d6854bc2ded130f691ce", "fields": {"nom_de_la_commune": "PRADINES", "libell_d_acheminement": "PRADINES", "code_postal": "42630", "coordonnees_gps": [46.0004668112, 4.2221699814], "code_commune_insee": "42178"}, "geometry": {"type": "Point", "coordinates": [4.2221699814, 46.0004668112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b22e520c80df879eed21178b9e0516e484c5002", "fields": {"nom_de_la_commune": "PRALONG", "libell_d_acheminement": "PRALONG", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42179"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04336e6fade9a8bd6871af7d42e0d160bbf1edf9", "fields": {"nom_de_la_commune": "LA RICAMARIE", "libell_d_acheminement": "LA RICAMARIE", "code_postal": "42150", "coordonnees_gps": [45.4035201854, 4.3687603491], "code_commune_insee": "42183"}, "geometry": {"type": "Point", "coordinates": [4.3687603491, 45.4035201854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82b8a1a8209b19af4f027cb17de9eb0c4f46e4c", "fields": {"nom_de_la_commune": "RIVE DE GIER", "libell_d_acheminement": "RIVE DE GIER", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42186"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4352432c50f60f24d927b8a07e5271133247684b", "fields": {"nom_de_la_commune": "ROCHE LA MOLIERE", "libell_d_acheminement": "ROCHE LA MOLIERE", "code_postal": "42230", "coordonnees_gps": [45.4293966387, 4.36873276603], "code_commune_insee": "42189"}, "geometry": {"type": "Point", "coordinates": [4.36873276603, 45.4293966387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ddaa063a7521cd72fe2a921ab8b31793d7213af", "fields": {"nom_de_la_commune": "ST ANDRE D APCHON", "libell_d_acheminement": "ST ANDRE D APCHON", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42199"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6a16e9965239a486984fe79c957451361783cd", "fields": {"code_postal": "42400", "code_commune_insee": "42207", "libell_d_acheminement": "ST CHAMOND", "ligne_5": "ST JULIEN EN JAREZ", "nom_de_la_commune": "ST CHAMOND", "coordonnees_gps": [45.4701877634, 4.50203719758]}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5d740ffaa3c6c14818071759776277e00dabb0", "fields": {"nom_de_la_commune": "ST CYR LES VIGNES", "libell_d_acheminement": "ST CYR LES VIGNES", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42214"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b308c420f9f9ef4c8809adf31bc0be5a48acca6", "fields": {"nom_de_la_commune": "ST DENIS DE CABANNE", "libell_d_acheminement": "ST DENIS DE CABANNE", "code_postal": "42750", "coordonnees_gps": [46.1636009324, 4.23557932675], "code_commune_insee": "42215"}, "geometry": {"type": "Point", "coordinates": [4.23557932675, 46.1636009324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220ed88cda8f18be15907ac0b3ddc74af595589f", "fields": {"nom_de_la_commune": "ST ETIENNE", "libell_d_acheminement": "ST ETIENNE", "code_postal": "42100", "coordonnees_gps": [45.4301225907, 4.37830062526], "code_commune_insee": "42218"}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c89763fc08e293e477e93b3da20f692378c2f6", "fields": {"nom_de_la_commune": "ST HILAIRE CUSSON LA VALMITTE", "libell_d_acheminement": "ST HILAIRE CUSSON LA VALMITTE", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42235"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9bd77204c2ee1444e68c9266beb86ebcc018e4", "fields": {"nom_de_la_commune": "ST JEAN LA VETRE", "libell_d_acheminement": "ST JEAN LA VETRE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42238"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b1e4379e77f8a506ec0eac1a9791b7abf207de", "fields": {"nom_de_la_commune": "ST JULIEN LA VETRE", "libell_d_acheminement": "ST JULIEN LA VETRE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42245"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee70348c51d1fcc7bdf6ce032b9560acc6765352", "fields": {"nom_de_la_commune": "ST JUST LA PENDUE", "libell_d_acheminement": "ST JUST LA PENDUE", "code_postal": "42540", "coordonnees_gps": [45.8845566287, 4.25261617322], "code_commune_insee": "42249"}, "geometry": {"type": "Point", "coordinates": [4.25261617322, 45.8845566287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f071258d6d371f706e9c18c72df85b82a0b36dd", "fields": {"nom_de_la_commune": "ST LEGER SUR ROANNE", "libell_d_acheminement": "ST LEGER SUR ROANNE", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42253"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba67a1bf3f66f6c4f2168ca81452c9e484ef7d0", "fields": {"nom_de_la_commune": "ST MARTIN LA SAUVETE", "libell_d_acheminement": "ST MARTIN LA SAUVETE", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42260"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7625b3a1e0150176a824e770e35985d336dcd3", "fields": {"nom_de_la_commune": "ST MARTIN LESTRA", "libell_d_acheminement": "ST MARTIN LESTRA", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42261"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60629f22650589226adbc101af39a6c3135a356d", "fields": {"nom_de_la_commune": "ST PRIEST EN JAREZ", "libell_d_acheminement": "ST PRIEST EN JAREZ", "code_postal": "42270", "coordonnees_gps": [45.4754717201, 4.37315866715], "code_commune_insee": "42275"}, "geometry": {"type": "Point", "coordinates": [4.37315866715, 45.4754717201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d95074fa0fc5ed4414eb07d12ca918cac7bb21", "fields": {"nom_de_la_commune": "ST ROMAIN LES ATHEUX", "libell_d_acheminement": "ST ROMAIN LES ATHEUX", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42286"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954e069a0419879407522a95909907ac7fef9dc8", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE LAY", "libell_d_acheminement": "ST SYMPHORIEN DE LAY", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42289"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9826366ad6cfdda2549275ce2101420fc0e02a", "fields": {"nom_de_la_commune": "ST THURIN", "libell_d_acheminement": "ST THURIN", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42291"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc95046f3cf56bed0a3d59fbe32453b0d48fffd", "fields": {"nom_de_la_commune": "SALT EN DONZY", "libell_d_acheminement": "SALT EN DONZY", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42296"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e19d0a3c928043a86de17970f42f058c88ac47", "fields": {"nom_de_la_commune": "LA TALAUDIERE", "libell_d_acheminement": "LA TALAUDIERE", "code_postal": "42350", "coordonnees_gps": [45.4787546836, 4.4240102424], "code_commune_insee": "42305"}, "geometry": {"type": "Point", "coordinates": [4.4240102424, 45.4787546836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68398620a117d2e7400e186d3ce5ed05ac6b2cca", "fields": {"nom_de_la_commune": "TARTARAS", "libell_d_acheminement": "TARTARAS", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42307"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fbbfddeb2ea7986bc2a448b5a2f9d559d54916c", "fields": {"nom_de_la_commune": "TRELINS", "libell_d_acheminement": "TRELINS", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42313"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008adf067a59f57bd2f2ed056dd072ed78b44cfe", "fields": {"nom_de_la_commune": "USSON EN FOREZ", "libell_d_acheminement": "USSON EN FOREZ", "code_postal": "42550", "coordonnees_gps": [45.3920060669, 3.94898861156], "code_commune_insee": "42318"}, "geometry": {"type": "Point", "coordinates": [3.94898861156, 45.3920060669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71024f7c9a00986d3e624a9fab9ff73b0b66ba8", "fields": {"nom_de_la_commune": "LA VALLA EN GIER", "libell_d_acheminement": "LA VALLA EN GIER", "code_postal": "42131", "coordonnees_gps": [45.4056333386, 4.52452224355], "code_commune_insee": "42322"}, "geometry": {"type": "Point", "coordinates": [4.52452224355, 45.4056333386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd65c72eaf442d5eb0805309affe9f0bdfbdc782", "fields": {"nom_de_la_commune": "VIRIGNEUX", "libell_d_acheminement": "VIRIGNEUX", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42336"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2859db5107954cca3a5a11bece11815ede28571", "fields": {"nom_de_la_commune": "VIVANS", "libell_d_acheminement": "VIVANS", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42337"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc6f1c6e1482c435c30f99b2d23bec0924a28a3", "fields": {"nom_de_la_commune": "ALLEGRE", "libell_d_acheminement": "ALLEGRE", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43003"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1efc60929948a5a75e9a6f68704ca76346e5f49", "fields": {"nom_de_la_commune": "ARLEMPDES", "libell_d_acheminement": "ARLEMPDES", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43008"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5ea217c803422d3988d27de937738eeef696f3", "fields": {"nom_de_la_commune": "BARGES", "libell_d_acheminement": "BARGES", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43019"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36cdeb89e6eb79420a296f0fb21ba98522fa0a9", "fields": {"nom_de_la_commune": "BEAUNE SUR ARZON", "libell_d_acheminement": "BEAUNE SUR ARZON", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43023"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed03f5066d249d987f73813481b788c199e407b", "fields": {"nom_de_la_commune": "BEAUX", "libell_d_acheminement": "BEAUX", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43024"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb4ee3a7800b90ee079e30aef2ffd4b65a400594", "fields": {"nom_de_la_commune": "BEAUZAC", "libell_d_acheminement": "BEAUZAC", "code_postal": "43590", "coordonnees_gps": [45.2570103679, 4.09347567725], "code_commune_insee": "43025"}, "geometry": {"type": "Point", "coordinates": [4.09347567725, 45.2570103679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1803f67160808b0bd3bc742dfc17b7eec9717e02", "fields": {"nom_de_la_commune": "BESSAMOREL", "libell_d_acheminement": "BESSAMOREL", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43028"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af82050dc9be9627f586a92be22689a0a9c0a741", "fields": {"nom_de_la_commune": "LA BESSEYRE ST MARY", "libell_d_acheminement": "LA BESSEYRE ST MARY", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43029"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1334cf67e4ee946747f4bc467cce8f6f116c2528", "fields": {"nom_de_la_commune": "BLANZAC", "libell_d_acheminement": "BLANZAC", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43030"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d85ac0acf0a772565b98e7342dc456fe67f9485", "fields": {"nom_de_la_commune": "BLAVOZY", "libell_d_acheminement": "BLAVOZY", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43032"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d3dd236a271b78755c770840b9635c518e61f5", "fields": {"nom_de_la_commune": "CEAUX D ALLEGRE", "libell_d_acheminement": "CEAUX D ALLEGRE", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43043"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6eafc33dc7e9198470c2eb6b34546c02cb4ccf1", "fields": {"nom_de_la_commune": "CEYSSAC", "libell_d_acheminement": "CEYSSAC", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43045"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d56eacd4989776e9f426c236645638bd05d5cf", "fields": {"nom_de_la_commune": "CHADRAC", "libell_d_acheminement": "CHADRAC", "code_postal": "43770", "coordonnees_gps": [45.0608353826, 3.9004832835], "code_commune_insee": "43046"}, "geometry": {"type": "Point", "coordinates": [3.9004832835, 45.0608353826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d99d2b51e57702185dfc7b3b9bcfd3c22d9c09", "fields": {"nom_de_la_commune": "LA CHAPELLE D AUREC", "libell_d_acheminement": "LA CHAPELLE D AUREC", "code_postal": "43120", "coordonnees_gps": [45.2982913973, 4.18798743532], "code_commune_insee": "43058"}, "geometry": {"type": "Point", "coordinates": [4.18798743532, 45.2982913973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f7ecffb816a3caebf126f55060daf87759f987", "fields": {"nom_de_la_commune": "LA CHAPELLE GENESTE", "libell_d_acheminement": "LA CHAPELLE GENESTE", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43059"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b91e12f327c028c8f430b86fecee6ab88dace9a8", "fields": {"nom_de_la_commune": "CHASPUZAC", "libell_d_acheminement": "CHASPUZAC", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43062"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb180641ee6cd48c787cd5be8c9cc3067835e121", "fields": {"nom_de_la_commune": "CHILHAC", "libell_d_acheminement": "CHILHAC", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43070"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c7f81c6454768e5bce0b4e9e455a4bd96851c7", "fields": {"nom_de_la_commune": "LES ESTABLES", "libell_d_acheminement": "LES ESTABLES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43091"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d17366425e20eb93af257be17d084829a8e3b9", "fields": {"nom_de_la_commune": "FRUGIERES LE PIN", "libell_d_acheminement": "FRUGIERES LE PIN", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43100"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eebb007891da6e15c31b2a09ae323e7a34316be", "fields": {"nom_de_la_commune": "GRAZAC", "libell_d_acheminement": "GRAZAC", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43102"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8511b27d6eb7e03a90a11b3c84c911c147ed2879", "fields": {"nom_de_la_commune": "LAFARRE", "libell_d_acheminement": "LAFARRE", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43109"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8189ea7c7abf72ee5afac629c2771fc1c25163a9", "fields": {"nom_de_la_commune": "LANDOS", "libell_d_acheminement": "LANDOS", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43111"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2742afb822207221b13d6c355fc10a6d2b95d0", "fields": {"nom_de_la_commune": "LAPTE", "libell_d_acheminement": "LAPTE", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43114"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4390290ca8454325e9f028f1a2a1e9e5cc42f1ef", "fields": {"nom_de_la_commune": "LAVOUTE CHILHAC", "libell_d_acheminement": "LAVOUTE CHILHAC", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43118"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a16a5fcb8bf01fd9b95c708a6e8c6bb2129177", "fields": {"code_postal": "43300", "code_commune_insee": "43132", "libell_d_acheminement": "MAZEYRAT D ALLIER", "ligne_5": "REILHAC", "nom_de_la_commune": "MAZEYRAT D ALLIER", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c485f25e57bc8827ec1bbecb81334a48e4587c1", "fields": {"nom_de_la_commune": "LE MONASTIER SUR GAZEILLE", "libell_d_acheminement": "LE MONASTIER SUR GAZEILLE", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43135"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "013335c12b3dc2b8a363b9647eed9b7cd4f31a86", "fields": {"nom_de_la_commune": "MONLET", "libell_d_acheminement": "MONLET", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43138"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df9330845905ff79c0e6cecccee1fd955f3be9d", "fields": {"nom_de_la_commune": "PAULHAC", "libell_d_acheminement": "PAULHAC", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43147"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb77244841aed3f75056cca5b20672b9b2d2b75", "fields": {"nom_de_la_commune": "LE PERTUIS", "libell_d_acheminement": "LE PERTUIS", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43150"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "608d0eb53b17ff4b67c00d1282cc734b36189c10", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43155"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef8a619f701d37bd039b493aaec695a8e473d17", "fields": {"nom_de_la_commune": "QUEYRIERES", "libell_d_acheminement": "QUEYRIERES", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43158"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20710d69ce7992f796ac1b4fd13bce2803d4b2fd", "fields": {"nom_de_la_commune": "ST ANDRE DE CHALENCON", "libell_d_acheminement": "ST ANDRE DE CHALENCON", "code_postal": "43130", "coordonnees_gps": [45.2367556015, 4.006325814], "code_commune_insee": "43166"}, "geometry": {"type": "Point", "coordinates": [4.006325814, 45.2367556015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "667cf58bf1a47dff51e7c850835baa623700d694", "fields": {"nom_de_la_commune": "ST ARCONS D ALLIER", "libell_d_acheminement": "ST ARCONS D ALLIER", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43167"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6968522d70b2a09dee4b43123fba977aabecdf05", "fields": {"nom_de_la_commune": "ST AUSTREMOINE", "libell_d_acheminement": "ST AUSTREMOINE", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43169"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da54dc9f4cef14386ec36fe932f2677520f90c90", "fields": {"nom_de_la_commune": "ST BEAUZIRE", "libell_d_acheminement": "ST BEAUZIRE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43170"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73ecdc7c04c0d98a9e68fefc70e7e9e40b3f409", "fields": {"nom_de_la_commune": "CHELUN", "libell_d_acheminement": "CHELUN", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35077"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f4da60e88fa9963a5274a45f00092f69db4bec", "fields": {"nom_de_la_commune": "CHEVAIGNE", "libell_d_acheminement": "CHEVAIGNE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35079"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b33f39974f4913a88b1a17a13519b06a3d87cd", "fields": {"nom_de_la_commune": "COESMES", "libell_d_acheminement": "COESMES", "code_postal": "35134", "coordonnees_gps": [47.8649465156, -1.44024199912], "code_commune_insee": "35082"}, "geometry": {"type": "Point", "coordinates": [-1.44024199912, 47.8649465156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be45c63fa7551a89438b3f397231253673aba86", "fields": {"nom_de_la_commune": "DINARD", "libell_d_acheminement": "DINARD", "code_postal": "35800", "coordonnees_gps": [48.6199242257, -2.09542699517], "code_commune_insee": "35093"}, "geometry": {"type": "Point", "coordinates": [-2.09542699517, 48.6199242257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3ba499dd8b87faa89e54494c6aa0adc907b959", "fields": {"nom_de_la_commune": "DROUGES", "libell_d_acheminement": "DROUGES", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35102"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfd70aaf1c231e07b405d94f73613c783a1efda", "fields": {"nom_de_la_commune": "ERBREE", "libell_d_acheminement": "ERBREE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35105"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d4132a1b58e022824e046064c8dd2624edfbc8", "fields": {"nom_de_la_commune": "ESSE", "libell_d_acheminement": "ESSE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35108"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542f99871993c3c6cfe96fba898ab7b6db162064", "fields": {"nom_de_la_commune": "LA FONTENELLE", "libell_d_acheminement": "LA FONTENELLE", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35113"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c70c48055bc59dad1f102b30b2abb57c4321dc", "fields": {"nom_de_la_commune": "LA FRESNAIS", "libell_d_acheminement": "LA FRESNAIS", "code_postal": "35111", "coordonnees_gps": [48.5841192028, -1.83987270474], "code_commune_insee": "35116"}, "geometry": {"type": "Point", "coordinates": [-1.83987270474, 48.5841192028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48407c1b563f4126e839ec7557866dc41c3cd79", "fields": {"nom_de_la_commune": "LA GUERCHE DE BRETAGNE", "libell_d_acheminement": "LA GUERCHE DE BRETAGNE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35125"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bbee87671716e9122b6850949b127ed7479bb2d", "fields": {"code_postal": "35120", "code_commune_insee": "35132", "libell_d_acheminement": "HIREL", "ligne_5": "VILDE LA MARINE", "nom_de_la_commune": "HIREL", "coordonnees_gps": [48.5420685848, -1.71947746678]}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b46c48eff1743c4c944f782906089f4770b7423", "fields": {"nom_de_la_commune": "LES IFFS", "libell_d_acheminement": "LES IFFS", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35134"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f5eaef18cf58348ca6a9e7aa2537cec2c20346", "fields": {"nom_de_la_commune": "JANZE", "libell_d_acheminement": "JANZE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35136"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1778dac66311d7e92ecb6e34cae62722759250", "fields": {"nom_de_la_commune": "LALLEU", "libell_d_acheminement": "LALLEU", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35140"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c776c4f9b9d5e7a51a89e83404aeab514441083", "fields": {"nom_de_la_commune": "LANGAN", "libell_d_acheminement": "LANGAN", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35144"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2db461fef0b9546da4f51645584b9a148327258", "fields": {"nom_de_la_commune": "LANGON", "libell_d_acheminement": "LANGON", "code_postal": "35660", "coordonnees_gps": [47.7238939745, -1.91661002252], "code_commune_insee": "35145"}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70babab9285f7272a0d027cecb0b00e1b3132d59", "fields": {"nom_de_la_commune": "LANHELIN", "libell_d_acheminement": "LANHELIN", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35147"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741678b65bb552f0f5cb2de493c3a84cbf75693d", "fields": {"nom_de_la_commune": "LANRIGAN", "libell_d_acheminement": "LANRIGAN", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35148"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c4fca1f05b299a7cccca19bffcbca24ce0c4a3", "fields": {"nom_de_la_commune": "LONGAULNAY", "libell_d_acheminement": "LONGAULNAY", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35156"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c157a9c8132346d2d3ca187b6f96e8f7e1e3f916", "fields": {"nom_de_la_commune": "LOURMAIS", "libell_d_acheminement": "LOURMAIS", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35159"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541010a3018c59b63c4ffd9526327f8faf86b457", "fields": {"nom_de_la_commune": "MEILLAC", "libell_d_acheminement": "MEILLAC", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35172"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f9034d11e6cfcb887fb6865c649e513113c6f6", "fields": {"nom_de_la_commune": "MEZIERES SUR COUESNON", "libell_d_acheminement": "MEZIERES SUR COUESNON", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35178"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3b445c98e38a73f2b444cffd843e580a5a9205", "fields": {"nom_de_la_commune": "MINIAC SOUS BECHEREL", "libell_d_acheminement": "MINIAC SOUS BECHEREL", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35180"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b26fc9c73ee196020a7dfe6c95997094ee79e1", "fields": {"nom_de_la_commune": "LE MINIHIC SUR RANCE", "libell_d_acheminement": "LE MINIHIC SUR RANCE", "code_postal": "35870", "coordonnees_gps": [48.5758952498, -2.01288721642], "code_commune_insee": "35181"}, "geometry": {"type": "Point", "coordinates": [-2.01288721642, 48.5758952498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f26a44994650a78fb4fd652879ad2c68211ee407", "fields": {"nom_de_la_commune": "MONT DOL", "libell_d_acheminement": "MONT DOL", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35186"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ba39706511548e38e99f882eb65bbac77f5a53", "fields": {"nom_de_la_commune": "MONTERFIL", "libell_d_acheminement": "MONTERFIL", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35187"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348bf1c0961fa0ef66ac35b2516f8e9263e5cccc", "fields": {"nom_de_la_commune": "MONTREUIL SUR ILLE", "libell_d_acheminement": "MONTREUIL SUR ILLE", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35195"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce819f76daa209196c355b27fce643eb81b19b1", "fields": {"nom_de_la_commune": "MOULINS", "libell_d_acheminement": "MOULINS", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35198"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04e6465e38481222967fd00dc03186c88ce2e82", "fields": {"nom_de_la_commune": "MOUSSE", "libell_d_acheminement": "MOUSSE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35199"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e124bd7129198b7d604922cf4f0fb50132f20cf", "fields": {"nom_de_la_commune": "LA NOE BLANCHE", "libell_d_acheminement": "LA NOE BLANCHE", "code_postal": "35470", "coordonnees_gps": [47.8366270433, -1.70588612819], "code_commune_insee": "35202"}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aaaad27e8b18934c6298cba1fd6504eb01e003c", "fields": {"nom_de_la_commune": "ORGERES", "libell_d_acheminement": "ORGERES", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35208"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b8d5c26d957179dedcf3ffb35fd97ac4076495", "fields": {"nom_de_la_commune": "PLECHATEL", "libell_d_acheminement": "PLECHATEL", "code_postal": "35470", "coordonnees_gps": [47.8366270433, -1.70588612819], "code_commune_insee": "35221"}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3fc2e052f42da29c7c3a80828aaa79c4812e6d", "fields": {"nom_de_la_commune": "PRINCE", "libell_d_acheminement": "PRINCE", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35232"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb77a04492a9319c37e9ba334efcf6679722d646", "fields": {"nom_de_la_commune": "RENAC", "libell_d_acheminement": "RENAC", "code_postal": "35660", "coordonnees_gps": [47.7238939745, -1.91661002252], "code_commune_insee": "35237"}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efba25f76b1f3a8785ab995a2f290221a13cc7b8", "fields": {"nom_de_la_commune": "RENNES", "libell_d_acheminement": "RENNES", "code_postal": "35200", "coordonnees_gps": [48.1116364246, -1.6816378334], "code_commune_insee": "35238"}, "geometry": {"type": "Point", "coordinates": [-1.6816378334, 48.1116364246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1735475e7c8d751a7029b956c7f3eb3c87e900", "fields": {"code_postal": "35650", "code_commune_insee": "35240", "libell_d_acheminement": "LE RHEU", "ligne_5": "MOIGNE", "nom_de_la_commune": "LE RHEU", "coordonnees_gps": [48.0975609665, -1.78120048308]}, "geometry": {"type": "Point", "coordinates": [-1.78120048308, 48.0975609665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d05361b245cecd2c37936efae24e49b208614e", "fields": {"nom_de_la_commune": "ROMILLE", "libell_d_acheminement": "ROMILLE", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35245"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d39900151914c07dc6182232b6c8632dd52174", "fields": {"nom_de_la_commune": "ST BRICE EN COGLES", "libell_d_acheminement": "ST BRICE EN COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35257"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9080e2b91f6e7a52876ff5cffa7420d807712bbc", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35264"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b5ad8884990449bdc82a38ba981146ada0c09c", "fields": {"nom_de_la_commune": "ST GEORGES DE CHESNE", "libell_d_acheminement": "ST GEORGES DE CHESNE", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35269"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa449bbc7a19d9f106171071b86f12543cd9ca7", "fields": {"nom_de_la_commune": "ST JEAN SUR VILAINE", "libell_d_acheminement": "ST JEAN SUR VILAINE", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35283"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f03319102c0b3a08c6e6395c304b48c8cc0997b2", "fields": {"nom_de_la_commune": "ST JOUAN DES GUERETS", "libell_d_acheminement": "ST JOUAN DES GUERETS", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35284"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7563dd4f5149eca200503800210cca0ba52bbd2", "fields": {"nom_de_la_commune": "ST LUNAIRE", "libell_d_acheminement": "ST LUNAIRE", "code_postal": "35800", "coordonnees_gps": [48.6199242257, -2.09542699517], "code_commune_insee": "35287"}, "geometry": {"type": "Point", "coordinates": [-2.09542699517, 48.6199242257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93fab9bb63644b60b4d5a4a5bd3dbaac7020a6e1", "fields": {"nom_de_la_commune": "ST PERAN", "libell_d_acheminement": "ST PERAN", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35305"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb59529d8066ed9069487dd9c7f5d1750fcdbac", "fields": {"nom_de_la_commune": "ST PERN", "libell_d_acheminement": "ST PERN", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35307"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5948331ced19cb92bf0961d48d452feeb21ccf1c", "fields": {"nom_de_la_commune": "LA SELLE EN LUITRE", "libell_d_acheminement": "LA SELLE EN LUITRE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35324"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef24b9185b09c318ac96eeed88307525b64f4ec", "fields": {"nom_de_la_commune": "LA SELLE GUERCHAISE", "libell_d_acheminement": "LA SELLE GUERCHAISE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35325"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e37d00fcf141548049f8e8f98cf8afb9aaea8f", "fields": {"nom_de_la_commune": "SENS DE BRETAGNE", "libell_d_acheminement": "SENS DE BRETAGNE", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35326"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fc735625206a1bd932b1cc0579d89412ae5258", "fields": {"nom_de_la_commune": "SOUGEAL", "libell_d_acheminement": "SOUGEAL", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35329"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d6a1248b79453f8785afbc313e50c3906864be", "fields": {"nom_de_la_commune": "TREFFENDEL", "libell_d_acheminement": "TREFFENDEL", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35340"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdd8545a72de8abecbf20444d961f0a3ca3bca9", "fields": {"nom_de_la_commune": "VENDEL", "libell_d_acheminement": "VENDEL", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35348"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ed4db4b71e771234352c77ff93ef7fa316e0d1", "fields": {"nom_de_la_commune": "VERGEAL", "libell_d_acheminement": "VERGEAL", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35350"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7ad4a90147c2062cf8a8a855fd096f2e8c1a2f", "fields": {"nom_de_la_commune": "ANJOUIN", "libell_d_acheminement": "ANJOUIN", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36004"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dfb724d366584776cb91f1311eed1fa1954eb62", "fields": {"nom_de_la_commune": "ARGY", "libell_d_acheminement": "ARGY", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36007"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf37295db74e7d3f55240ea748d8c5bb0807f64", "fields": {"nom_de_la_commune": "BOMMIERS", "libell_d_acheminement": "BOMMIERS", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36019"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603477beb5a9e623934c0cd788491ada6369f879", "fields": {"nom_de_la_commune": "LA BUXERETTE", "libell_d_acheminement": "LA BUXERETTE", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36028"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb07efeef51490569fc8f52423bc0aaee83c5f7", "fields": {"nom_de_la_commune": "CELON", "libell_d_acheminement": "CELON", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36033"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b388733e9f52cd1e157cb5674ed2bf15755083", "fields": {"nom_de_la_commune": "CHABRIS", "libell_d_acheminement": "CHABRIS", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36034"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdf021114439fd47004417fc5bd601e11ef345d", "fields": {"nom_de_la_commune": "LA CHAPELLE ORTHEMALE", "libell_d_acheminement": "LA CHAPELLE ORTHEMALE", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36040"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd2e01f22a82f483dabce04d9b4a196f46d9ff6", "fields": {"nom_de_la_commune": "CHATEAUROUX", "libell_d_acheminement": "CHATEAUROUX", "code_postal": "36000", "coordonnees_gps": [46.8030703045, 1.69384402945], "code_commune_insee": "36044"}, "geometry": {"type": "Point", "coordinates": [1.69384402945, 46.8030703045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfd69c6aa796a8f3a32f3e6a400dc2dd54f8867", "fields": {"nom_de_la_commune": "CHAVIN", "libell_d_acheminement": "CHAVIN", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36048"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c4fad058656449fee039894f20cd65f318da40", "fields": {"code_postal": "36300", "code_commune_insee": "36053", "libell_d_acheminement": "CIRON", "ligne_5": "SCOURY", "nom_de_la_commune": "CIRON", "coordonnees_gps": [46.6565173034, 1.1363634764]}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b68c3188895cb106a4efa0a30c308ea2d374e8", "fields": {"nom_de_la_commune": "CUZION", "libell_d_acheminement": "CUZION", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36062"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cbaecf132e3a6c42054c236695ff1a928439852", "fields": {"nom_de_la_commune": "DEOLS", "libell_d_acheminement": "DEOLS", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36063"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59216630271d4d434cb9daa79c89ea5070421fd", "fields": {"nom_de_la_commune": "FOUGEROLLES", "libell_d_acheminement": "FOUGEROLLES", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36078"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acebe46748fc7f079fe28a32dd84975e8e67e319", "fields": {"nom_de_la_commune": "FRANCILLON", "libell_d_acheminement": "FRANCILLON", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36079"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f691b0ffe2fda4500c6bf4216b6a2702c3fd9b", "fields": {"nom_de_la_commune": "FREDILLE", "libell_d_acheminement": "FREDILLE", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36080"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db75372ff2199273c9a75885337aae0754c2456", "fields": {"nom_de_la_commune": "ISSOUDUN", "libell_d_acheminement": "ISSOUDUN", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36088"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bf29fd7fb62d9a3eb8f605a5649ff9534de617", "fields": {"nom_de_la_commune": "LACS", "libell_d_acheminement": "LACS", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36091"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f3582c060ffc087f5b5864722d33411e0cf06c", "fields": {"nom_de_la_commune": "LEVROUX", "libell_d_acheminement": "LEVROUX", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36093"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6bc3a899aea99701abcc347df9320a87c0fb7d9", "fields": {"code_postal": "36110", "code_commune_insee": "36093", "libell_d_acheminement": "LEVROUX", "ligne_5": "ST MARTIN DE LAMPS", "nom_de_la_commune": "LEVROUX", "coordonnees_gps": [46.9845451147, 1.63646999147]}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13269e69b741b4fca9d0cfc84113c499e4134c5", "fields": {"nom_de_la_commune": "LUCAY LE MALE", "libell_d_acheminement": "LUCAY LE MALE", "code_postal": "36360", "coordonnees_gps": [47.137029518, 1.41123831497], "code_commune_insee": "36103"}, "geometry": {"type": "Point", "coordinates": [1.41123831497, 47.137029518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c613654cf6083184bc4447fc371a145fe2c5c9fe", "fields": {"nom_de_la_commune": "MARTIZAY", "libell_d_acheminement": "MARTIZAY", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36113"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79ba7b59de3d56bef139b080172105a8d2d5ed6", "fields": {"nom_de_la_commune": "MAUVIERES", "libell_d_acheminement": "MAUVIERES", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36114"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6bcec76836304002aff587f8db13e129f2378a3", "fields": {"nom_de_la_commune": "MERS SUR INDRE", "libell_d_acheminement": "MERS SUR INDRE", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36120"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef108c72ba0e8cffd81595c78fe01ba3ca0c7f88", "fields": {"nom_de_la_commune": "LA MOTTE FEUILLY", "libell_d_acheminement": "LA MOTTE FEUILLY", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36132"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6afa9b7fa02fec1b0032c6cbddc51ccb814127", "fields": {"nom_de_la_commune": "MOUHERS", "libell_d_acheminement": "MOUHERS", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36133"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88376b80926a816d318ac8bf07a7501f9fa60386", "fields": {"nom_de_la_commune": "NEONS SUR CREUSE", "libell_d_acheminement": "NEONS SUR CREUSE", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36137"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c792b41f71329af826763178faaccfdbc67ec89", "fields": {"nom_de_la_commune": "NOHANT VIC", "libell_d_acheminement": "NOHANT VIC", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36143"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e2fc0a6e7660ebb13cc52f0f13f4a6ec000ebc", "fields": {"nom_de_la_commune": "ORSENNES", "libell_d_acheminement": "ORSENNES", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36146"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c896ef3ac6fa3f095d472acfa5014f4ef40138", "fields": {"nom_de_la_commune": "OULCHES", "libell_d_acheminement": "OULCHES", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36148"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaa623063ada5f9de9318bc584a1eb2819080a74", "fields": {"nom_de_la_commune": "LE POINCONNET", "libell_d_acheminement": "LE POINCONNET", "code_postal": "36330", "coordonnees_gps": [46.7140693988, 1.6861822855], "code_commune_insee": "36159"}, "geometry": {"type": "Point", "coordinates": [1.6861822855, 46.7140693988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f4918b476ce3bd47dfd4bdb19eb7d06e123749", "fields": {"nom_de_la_commune": "PRISSAC", "libell_d_acheminement": "PRISSAC", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36168"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0214998716ed8abed093a54f0bc8c783b8466675", "fields": {"nom_de_la_commune": "ROSNAY", "libell_d_acheminement": "ROSNAY", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36173"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c319a8f435a61608dde6c8c4a79535d092433acc", "fields": {"nom_de_la_commune": "ROUSSINES", "libell_d_acheminement": "ROUSSINES", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36174"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bffbbcfc69821ca2ca84268bceb9a491bdac8f6", "fields": {"nom_de_la_commune": "ST BENOIT DU SAULT", "libell_d_acheminement": "ST BENOIT DU SAULT", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36182"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0017be819b2840e9bc2bca7347448fb171a3545d", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BAZELLE", "libell_d_acheminement": "ST CHRISTOPHE EN BAZELLE", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36185"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896a66bb0ca502535841ea913a2baad49078de2f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BOUCHERIE", "libell_d_acheminement": "ST CHRISTOPHE EN BOUCHERIE", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36186"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a7fe5a826c5cae5c07a66880da9a17e62d56af", "fields": {"nom_de_la_commune": "ST CYRAN DU JAMBOT", "libell_d_acheminement": "ST CYRAN DU JAMBOT", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36188"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edaae67dcc1e944ae83431158997a0a9fa16f9e", "fields": {"nom_de_la_commune": "STE FAUSTE", "libell_d_acheminement": "STE FAUSTE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36190"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46134538b3a3adfa57252f3d779be31838b2160", "fields": {"nom_de_la_commune": "ST GEORGES SUR ARNON", "libell_d_acheminement": "ST GEORGES SUR ARNON", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36195"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491db87b713fddc38925b58e28f3beb8e5cf2afa", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36203"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926824148e174a25ea6d40cd3c686a884f794a61", "fields": {"nom_de_la_commune": "ST PIERRE DE LAMPS", "libell_d_acheminement": "ST PIERRE DE LAMPS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36206"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e093cc7807ab8d86705420282c8978a55e9842", "fields": {"nom_de_la_commune": "ST VALENTIN", "libell_d_acheminement": "ST VALENTIN", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36209"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13caafb43e3530700b43ac876e41255c69b2d43c", "fields": {"nom_de_la_commune": "SEMBLECAY", "libell_d_acheminement": "SEMBLECAY", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36217"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c4a82e735b81ba5510b5d6741ea5a43142a5c9", "fields": {"nom_de_la_commune": "TENDU", "libell_d_acheminement": "TENDU", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36219"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b916d4fa07347793f2d5ca77855f6804cdfe7c", "fields": {"nom_de_la_commune": "THEVET ST JULIEN", "libell_d_acheminement": "THEVET ST JULIEN", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36221"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bee817a7cdb6142db5a04d8280086bc1b80502", "fields": {"nom_de_la_commune": "TOURNON ST MARTIN", "libell_d_acheminement": "TOURNON ST MARTIN", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36224"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9fd6736db338c92656b741354fd48588c6ad26", "fields": {"nom_de_la_commune": "VENDOEUVRES", "libell_d_acheminement": "VENDOEUVRES", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36232"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c6ca9f3db3c3b663a4b2b02466bfdeb3435ec3", "fields": {"nom_de_la_commune": "LA VERNELLE", "libell_d_acheminement": "LA VERNELLE", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36233"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7f61780c03c6c6949f5fd871f4aa0feb8020c1", "fields": {"nom_de_la_commune": "HEROUVILLETTE", "libell_d_acheminement": "HEROUVILLETTE", "code_postal": "14850", "coordonnees_gps": [49.2097767662, -0.25242248179], "code_commune_insee": "14328"}, "geometry": {"type": "Point", "coordinates": [-0.25242248179, 49.2097767662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da6e0bb15fddf6c11d0e79cac0911fddf6db89a", "fields": {"nom_de_la_commune": "HEULAND", "libell_d_acheminement": "HEULAND", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14329"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d794b51d33a948ac8a61c287be16c477a692593f", "fields": {"nom_de_la_commune": "LA HOGUETTE", "libell_d_acheminement": "LA HOGUETTE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14332"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e637c11a3889117644b0ee5db8754cdc2576ad0e", "fields": {"nom_de_la_commune": "HOULGATE", "libell_d_acheminement": "HOULGATE", "code_postal": "14510", "coordonnees_gps": [49.291418226, -0.0438772429905], "code_commune_insee": "14338"}, "geometry": {"type": "Point", "coordinates": [-0.0438772429905, 49.291418226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad3763e3eed95704409857d7d9b9f1e95cceec8", "fields": {"nom_de_la_commune": "IFS", "libell_d_acheminement": "IFS", "code_postal": "14123", "coordonnees_gps": [49.1447730282, -0.352071699287], "code_commune_insee": "14341"}, "geometry": {"type": "Point", "coordinates": [-0.352071699287, 49.1447730282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864f7a50f96c538ae66f316f30cfcb16c8dfa925", "fields": {"nom_de_la_commune": "JUAYE MONDAYE", "libell_d_acheminement": "JUAYE MONDAYE", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14346"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2958416de8a96ba2d823ff778b91aee23488d863", "fields": {"nom_de_la_commune": "LANDES SUR AJON", "libell_d_acheminement": "LANDES SUR AJON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14353"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd870f356a3e3e829a1b3e8e6765399d9456b550", "fields": {"nom_de_la_commune": "LEAUPARTIE", "libell_d_acheminement": "LEAUPARTIE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14358"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789bcc486530e3978a9d3da400ec525b26f720cf", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "HEURTEVENT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67cce2e8cf4ffafa564d9d138e6128b0c01502a7", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LA CROUPTE", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e939f972206c250cdb38605c18618f2992129b87", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "ST MARTIN DU MESNIL OURY", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fdd95a854d7c68ae5ed1399cb4f55b237146af6", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "ST MICHEL DE LIVET", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d8901ade0341af6f1e3dbb68ae3e5749a5b357", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "STE MARGUERITE DES LOGES", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76212b89184136b3708dadff5af3ceafd6cf568d", "fields": {"nom_de_la_commune": "LOUVAGNY", "libell_d_acheminement": "LOUVAGNY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14381"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60239ba45c43845a151b169206b96c9a88c62d7", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "14111", "coordonnees_gps": [49.155534496, -0.397065216787], "code_commune_insee": "14383"}, "geometry": {"type": "Point", "coordinates": [-0.397065216787, 49.155534496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73aa70f40be7bb585fa0cc3989dd2ae0ba03c7b2", "fields": {"nom_de_la_commune": "MAGNY LA CAMPAGNE", "libell_d_acheminement": "MAGNY LA CAMPAGNE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14386"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a69bb34c221567084d9f3664583374f9aaf0041", "fields": {"nom_de_la_commune": "MAISONS", "libell_d_acheminement": "MAISONS", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14391"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50e4ef1285efddf6c475d5ec687c33ac0f69b70", "fields": {"nom_de_la_commune": "MALTOT", "libell_d_acheminement": "MALTOT", "code_postal": "14930", "coordonnees_gps": [49.1299717664, -0.432158841819], "code_commune_insee": "14396"}, "geometry": {"type": "Point", "coordinates": [-0.432158841819, 49.1299717664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05e3e53b75af47bccefb55465294f6abb146f08", "fields": {"nom_de_la_commune": "MANNEVILLE LA PIPARD", "libell_d_acheminement": "MANNEVILLE LA PIPARD", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14399"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dec5af6255cab23a499ddafd1e5e89851006f32", "fields": {"nom_de_la_commune": "MARTIGNY SUR L ANTE", "libell_d_acheminement": "MARTIGNY SUR L ANTE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14405"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fc4c6a4b7269a0f6a99f5070f006d57b92b83e", "fields": {"nom_de_la_commune": "MATHIEU", "libell_d_acheminement": "MATHIEU", "code_postal": "14920", "coordonnees_gps": [49.2560968807, -0.366356524458], "code_commune_insee": "14407"}, "geometry": {"type": "Point", "coordinates": [-0.366356524458, 49.2560968807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2d16de08dd3666c8c298a1fc1bbe452439a971d", "fields": {"nom_de_la_commune": "LE MESNIL BENOIST", "libell_d_acheminement": "LE MESNIL BENOIST", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14415"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d8381d5030b684486784ceaaeff519e1468f9e", "fields": {"nom_de_la_commune": "LE MESNIL CAUSSOIS", "libell_d_acheminement": "LE MESNIL CAUSSOIS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14416"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a89119194138de2534a6cb7a933056c005a6717", "fields": {"nom_de_la_commune": "LE MESNIL EUDES", "libell_d_acheminement": "LE MESNIL EUDES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14419"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaecfbd1143fcea56219fbfd79a8801f99e5606", "fields": {"nom_de_la_commune": "MITTOIS", "libell_d_acheminement": "MITTOIS", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14433"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14aee8a6cc2841d2abce312b6841870a38764fa1", "fields": {"nom_de_la_commune": "MONDRAINVILLE", "libell_d_acheminement": "MONDRAINVILLE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14438"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6831afd90f37bae8500fcd5c29bd5633940e12", "fields": {"nom_de_la_commune": "MONTFIQUET", "libell_d_acheminement": "MONTFIQUET", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14445"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9945ce5453e9c18b945ff88dbfa687c3233d0f", "fields": {"nom_de_la_commune": "MONTREUIL EN AUGE", "libell_d_acheminement": "MONTREUIL EN AUGE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14448"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe83b7902d8bd83ed8e60f00641b51db2052d46", "fields": {"nom_de_la_commune": "NORREY EN AUGE", "libell_d_acheminement": "NORREY EN AUGE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14469"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906b028558dcea9f68b792564acc96b699a9d238", "fields": {"code_postal": "14340", "code_commune_insee": "14474", "libell_d_acheminement": "NOTRE DAME D ESTREES CORBON", "ligne_5": "CORBON", "nom_de_la_commune": "NOTRE DAME D ESTREES CORBON", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f0871dab1e56c06cc1b84b2c26ba70914eb408", "fields": {"nom_de_la_commune": "OUILLY LE VICOMTE", "libell_d_acheminement": "OUILLY LE VICOMTE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14487"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7353da9e6b1aae6e8b6d3dd1645b7de801c5a4f", "fields": {"nom_de_la_commune": "OUISTREHAM", "libell_d_acheminement": "OUISTREHAM", "code_postal": "14150", "coordonnees_gps": [49.2749759818, -0.258155881818], "code_commune_insee": "14488"}, "geometry": {"type": "Point", "coordinates": [-0.258155881818, 49.2749759818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3538b5aaf36a3944ee5b5a66b35b1d04d55060", "fields": {"nom_de_la_commune": "PENNEDEPIE", "libell_d_acheminement": "PENNEDEPIE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14492"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f194c83515a6296322af54330efc9bf3fe9b447a", "fields": {"nom_de_la_commune": "PERCY EN AUGE", "libell_d_acheminement": "PERCY EN AUGE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14493"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e396dbd7eb1675d837816dc9b66da654ef36f3f2", "fields": {"nom_de_la_commune": "PERIERS SUR LE DAN", "libell_d_acheminement": "PERIERS SUR LE DAN", "code_postal": "14112", "coordonnees_gps": [49.2432109147, -0.336840438637], "code_commune_insee": "14495"}, "geometry": {"type": "Point", "coordinates": [-0.336840438637, 49.2432109147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67952f28f891915a0500ce307d3031ca3f283591", "fields": {"nom_de_la_commune": "PIERREFITTE EN AUGE", "libell_d_acheminement": "PIERREFITTE EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14500"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4b63b811fd3bf1be4ebe8a73b2afc6bb2d1839", "fields": {"nom_de_la_commune": "PIERREFITTE EN CINGLAIS", "libell_d_acheminement": "PIERREFITTE EN CINGLAIS", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14501"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d005e9761c47107fa2be68e1fd25b602149e5a65", "fields": {"nom_de_la_commune": "PLUMETOT", "libell_d_acheminement": "PLUMETOT", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14509"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92466a0ef41907db51c62d12995ef693bf9094ff", "fields": {"nom_de_la_commune": "PONTECOULANT", "libell_d_acheminement": "PONTECOULANT", "code_postal": "14110", "coordonnees_gps": [48.8603879133, -0.538857121596], "code_commune_insee": "14512"}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4be57c23f35c9c364ce6a73c8623f6b3bba5202", "fields": {"nom_de_la_commune": "POUSSY LA CAMPAGNE", "libell_d_acheminement": "POUSSY LA CAMPAGNE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14517"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd34272cfaace407a2aa3556fb4f7c2bc795cb8", "fields": {"nom_de_la_commune": "PREAUX BOCAGE", "libell_d_acheminement": "PREAUX BOCAGE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14519"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ae692e1cb34ac428676f823d6a0bb0a167c43b", "fields": {"nom_de_la_commune": "PUTOT EN AUGE", "libell_d_acheminement": "PUTOT EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14524"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f19b4b64da821cd4f3bc4f4c5f6436166da4c3", "fields": {"nom_de_la_commune": "PUTOT EN BESSIN", "libell_d_acheminement": "PUTOT EN BESSIN", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14525"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c06651452c8617abb8778efd64259fec47a64e", "fields": {"code_postal": "14270", "code_commune_insee": "14527", "libell_d_acheminement": "BIEVILLE QUETIEVILLE", "ligne_5": "BIEVILLE EN AUGE", "nom_de_la_commune": "BIEVILLE QUETIEVILLE", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368fceebea0d43bb1504c375acddb78757aef2b6", "fields": {"nom_de_la_commune": "REVIERS", "libell_d_acheminement": "REVIERS", "code_postal": "14470", "coordonnees_gps": [49.3187007817, -0.465940150296], "code_commune_insee": "14535"}, "geometry": {"type": "Point", "coordinates": [-0.465940150296, 49.3187007817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9859fa3789320f08832b8d8857c76bbb8087a9bd", "fields": {"nom_de_la_commune": "ROCQUANCOURT", "libell_d_acheminement": "ROCQUANCOURT", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14538"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed491917d34fb2da99fa9e6c5a853f53e6f9510b", "fields": {"nom_de_la_commune": "LA ROQUE BAIGNARD", "libell_d_acheminement": "LA ROQUE BAIGNARD", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14541"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428f205acbdde373cae6449434edfad998aa1382", "fields": {"nom_de_la_commune": "ROUVRES", "libell_d_acheminement": "ROUVRES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14546"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9247e6cd2d706232a79b75d5a7775ba4b4f1e6", "fields": {"nom_de_la_commune": "ST AIGNAN DE CRAMESNIL", "libell_d_acheminement": "ST AIGNAN DE CRAMESNIL", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14554"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a2441891cc69fbc558cfee7a3c3387c3fd3018", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "STE FOY DE MONTGOMMERY", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac500cdebefcf17edad79e87435367e27e8c4cbd", "fields": {"code_postal": "14260", "code_commune_insee": "14579", "libell_d_acheminement": "SEULLINE", "ligne_5": "ST GEORGES D AUNAY", "nom_de_la_commune": "SEULLINE", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e822a44e3997eb9afdc0c4ea78cbccb857d8aa", "fields": {"code_postal": "14310", "code_commune_insee": "14579", "libell_d_acheminement": "SEULLINE", "ligne_5": "COULVAIN", "nom_de_la_commune": "SEULLINE", "coordonnees_gps": [49.0707040622, -0.648769817397]}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48a274242970c67539ca5fb058d5dd85d7e361f", "fields": {"nom_de_la_commune": "ST GEORGES EN AUGE", "libell_d_acheminement": "ST GEORGES EN AUGE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14580"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94a9f622f43a1a06aafbbc25c8f264cc4b0c8ed", "fields": {"nom_de_la_commune": "ST GERMAIN DU PERT", "libell_d_acheminement": "ST GERMAIN DU PERT", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14586"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57dd8c4a60c78ca704b90120d956139d9be10371", "fields": {"nom_de_la_commune": "ST MANVIEU NORREY", "libell_d_acheminement": "ST MANVIEU NORREY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14610"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0010169885618fb611a1fa64b1d880017e202e8d", "fields": {"nom_de_la_commune": "STE MARIE OUTRE L EAU", "libell_d_acheminement": "STE MARIE OUTRE L EAU", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14619"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675ffafabc98c7281e86665f55843dfea7284938", "fields": {"nom_de_la_commune": "ST MARTIN DES ENTREES", "libell_d_acheminement": "ST MARTIN DES ENTREES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14630"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7cef8714c347389f5a655ab66f529bfbbaf9ea3", "fields": {"nom_de_la_commune": "ST OUEN DU MESNIL OGER", "libell_d_acheminement": "ST OUEN DU MESNIL OGER", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14637"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb23500730cdca329660a4c15d4ba0d86769bc1c", "fields": {"nom_de_la_commune": "ST PAUL DU VERNAY", "libell_d_acheminement": "ST PAUL DU VERNAY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14643"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f06dd8e6296fd12e5ecc2b71984c9623a31c1a8", "fields": {"nom_de_la_commune": "ST PIERRE DU FRESNE", "libell_d_acheminement": "ST PIERRE DU FRESNE", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14650"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49220d37971a40279049bc693db3108e402c35a6", "fields": {"nom_de_la_commune": "ST PIERRE DU JONQUET", "libell_d_acheminement": "ST PIERRE DU JONQUET", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14651"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ceb50e3ea5448432eb5a2b504cfb1d7758ec8a", "fields": {"nom_de_la_commune": "ST VAAST SUR SEULLES", "libell_d_acheminement": "ST VAAST SUR SEULLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14661"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b7438903062ff766142643a9a8cf83e620cc5d", "fields": {"nom_de_la_commune": "ST VIGOR LE GRAND", "libell_d_acheminement": "ST VIGOR LE GRAND", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14663"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46dca6b54243693c17ac03b04fd4bc9dad669962", "fields": {"nom_de_la_commune": "SAON", "libell_d_acheminement": "SAON", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14667"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5031f0a47f4698dc9ebf3a9ee2e0f3da54dc68", "fields": {"nom_de_la_commune": "SASSY", "libell_d_acheminement": "SASSY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14669"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0710348723164f52a6939efe71f02cc9cc7f25", "fields": {"nom_de_la_commune": "SOUMONT ST QUENTIN", "libell_d_acheminement": "SOUMONT ST QUENTIN", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14678"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6109af36085a53ae8218b091097ff48fbbc8d273", "fields": {"nom_de_la_commune": "TESSEL", "libell_d_acheminement": "TESSEL", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14684"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167c8fb39ea98f80e488792135bf0877b733e783", "fields": {"nom_de_la_commune": "TILLY LA CAMPAGNE", "libell_d_acheminement": "TILLY LA CAMPAGNE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14691"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a5701b685cf4084b6d398dbf8f703cde7b6154e", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "AMMEVILLE", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad630385fd8d54b6e6f2d5e0333e81e97f0d36fc", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "NOTRE DAME DE FRESNAY", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4379137a57de6567838830f50198b5c7aea9d5b0", "fields": {"nom_de_la_commune": "TOUQUES", "libell_d_acheminement": "TOUQUES", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14699"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5beeca42b9a57f5ad3c1eb5c3149ab440adf644d", "fields": {"nom_de_la_commune": "TOURNEBU", "libell_d_acheminement": "TOURNEBU", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14703"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84c0c665d497875bf926b2c6af475d596f30fb0", "fields": {"nom_de_la_commune": "TREPREL", "libell_d_acheminement": "TREPREL", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14710"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aaa8fc000911340b194a8ba749205ad2f549dbc", "fields": {"nom_de_la_commune": "TROIS MONTS", "libell_d_acheminement": "TROIS MONTS", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14713"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3623ee3d08df92be62d02134d9fe2d4ef4de1e03", "fields": {"nom_de_la_commune": "TRUNGY", "libell_d_acheminement": "TRUNGY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14716"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb4f838be7b38108297e7803fdc0cf2a1735344", "fields": {"code_postal": "14210", "code_commune_insee": "14721", "libell_d_acheminement": "VACOGNES NEUILLY", "ligne_5": "NEUILLY LE MALHERBE", "nom_de_la_commune": "VACOGNES NEUILLY", "coordonnees_gps": [49.1001637748, -0.508327897598]}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73dfccb5f316aa15375da9385db5a0ce9ac3bb2", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "BURCY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4892ea69c1157e391770029d80047b60f4b8a44", "fields": {"nom_de_la_commune": "VAUCELLES", "libell_d_acheminement": "VAUCELLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14728"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ccf16f1df0a89b641eab96ad3f4c03edc498ce", "fields": {"nom_de_la_commune": "VAUX SUR SEULLES", "libell_d_acheminement": "VAUX SUR SEULLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14733"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a10e80c21df1807758397c7f24b339b50257807", "fields": {"nom_de_la_commune": "VENDEUVRE", "libell_d_acheminement": "VENDEUVRE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14735"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfc228ce8815448a1d216b587d9233b28d0000b", "fields": {"nom_de_la_commune": "VERSON", "libell_d_acheminement": "VERSON", "code_postal": "14790", "coordonnees_gps": [49.1541386997, -0.466148094743], "code_commune_insee": "14738"}, "geometry": {"type": "Point", "coordinates": [-0.466148094743, 49.1541386997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8629b0d3d4979ede28da8b142ba66a0124fedbf8", "fields": {"nom_de_la_commune": "VICTOT PONTFOL", "libell_d_acheminement": "VICTOT PONTFOL", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14743"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf925b4943732692703a82f98fe3354fd077d41", "fields": {"nom_de_la_commune": "VIENNE EN BESSIN", "libell_d_acheminement": "VIENNE EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14744"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f9e98b6b3bdf9f47c2df3118070ff55ccc412e7", "fields": {"nom_de_la_commune": "VIGNATS", "libell_d_acheminement": "VIGNATS", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14751"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ea1b23729906f59b7273bc470b14f486c7d95a", "fields": {"nom_de_la_commune": "VILLERS CANIVET", "libell_d_acheminement": "VILLERS CANIVET", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14753"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1bbc65e8f1af33a5581b7f1c5252bca996b9a7", "fields": {"nom_de_la_commune": "LA VILLETTE", "libell_d_acheminement": "LA VILLETTE", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14756"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76d3102b51aba49db74752cf6a71c7f844a4b5e", "fields": {"nom_de_la_commune": "VILLY LEZ FALAISE", "libell_d_acheminement": "VILLY LEZ FALAISE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14759"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b21c25e637c3bcea744dcd190cede2d4523fde6e", "fields": {"nom_de_la_commune": "VIMONT", "libell_d_acheminement": "VIMONT", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14761"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294447609211d151b17f65ad1ee7619d7ec652c4", "fields": {"nom_de_la_commune": "VIRE NORMANDIE", "libell_d_acheminement": "VIRE NORMANDIE", "code_postal": "14500", "coordonnees_gps": [48.8626699859, -0.904614638013], "code_commune_insee": "14762"}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9558136a9f173f9bcd0d52c79a070889230be3a6", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15020"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fe1fec2cb6aba00fc79ead50569f360486c1a5", "fields": {"nom_de_la_commune": "BOISSET", "libell_d_acheminement": "BOISSET", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15021"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0826a016303014ae706afced29cec1468f9577", "fields": {"nom_de_la_commune": "BREZONS", "libell_d_acheminement": "BREZONS", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15026"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8c4087114f30de80e54549c66aad5f33791fc1", "fields": {"nom_de_la_commune": "CAYROLS", "libell_d_acheminement": "CAYROLS", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15030"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1249918a155b8c38441e411bb39d95644b729b61", "fields": {"nom_de_la_commune": "CELOUX", "libell_d_acheminement": "CELOUX", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15032"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f1f85de97c36ca1559bf1ff0b0fc6df886c7ad", "fields": {"nom_de_la_commune": "CHALVIGNAC", "libell_d_acheminement": "CHALVIGNAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15036"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0adcda26ccdafec9fe3fb6794e7688652938a47", "fields": {"nom_de_la_commune": "CHAMPS SUR TARENTAINE MARCHAL", "libell_d_acheminement": "CHAMPS SUR TARENTAINE MARCHAL", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15038"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebeb3f8fea214746faf36c0705adfcfd239fde73", "fields": {"nom_de_la_commune": "CHASTEL SUR MURAT", "libell_d_acheminement": "CHASTEL SUR MURAT", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15044"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc87548b93ea742d0a72ace65921f24afc979b5", "fields": {"nom_de_la_commune": "COLLANDRES", "libell_d_acheminement": "COLLANDRES", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15052"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce2223d596e6cb92ddd0ae8553d4da41a06fa13", "fields": {"nom_de_la_commune": "CUSSAC", "libell_d_acheminement": "CUSSAC", "code_postal": "15430", "coordonnees_gps": [45.0110291725, 2.89903675921], "code_commune_insee": "15059"}, "geometry": {"type": "Point", "coordinates": [2.89903675921, 45.0110291725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e431cf055345b4fbc3d333f2082740a12b954b", "fields": {"nom_de_la_commune": "ESPINASSE", "libell_d_acheminement": "ESPINASSE", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15065"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d6ee403dcdd2b812de0bdcc163643f9dda3ef4", "fields": {"nom_de_la_commune": "CIEZ", "libell_d_acheminement": "CIEZ", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58077"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07eff49bc4db3bd3a78276108b8051ffef829eec", "fields": {"nom_de_la_commune": "CIZELY", "libell_d_acheminement": "CIZELY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58078"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb450a9cd5eb8a645d861d0439dc0b0e5162b0c", "fields": {"code_postal": "58500", "code_commune_insee": "58079", "libell_d_acheminement": "CLAMECY", "ligne_5": "MOULOT", "nom_de_la_commune": "CLAMECY", "coordonnees_gps": [47.4641711809, 3.49201148604]}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdce85dcba687f37ddb56594b4e8a68e51049a6", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58099"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8889b6c5c24354d70d739b31da2417efd79a6d07", "fields": {"nom_de_la_commune": "DOMPIERRE SUR NIEVRE", "libell_d_acheminement": "DOMPIERRE SUR NIEVRE", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58101"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cebff628db449716a8ed80ea9280d8dadbb87206", "fields": {"nom_de_la_commune": "DORNECY", "libell_d_acheminement": "DORNECY", "code_postal": "58530", "coordonnees_gps": [47.4363082505, 3.60631182763], "code_commune_insee": "58103"}, "geometry": {"type": "Point", "coordinates": [3.60631182763, 47.4363082505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90bf296335ef4fc6d4b4eb7bd57272ae2c035ff", "fields": {"nom_de_la_commune": "EPIRY", "libell_d_acheminement": "EPIRY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58110"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9096ec86425cebe84a6dab32a62938c4d88e2a39", "fields": {"nom_de_la_commune": "GARCHY", "libell_d_acheminement": "GARCHY", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58122"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb93dd91939bb0373cdeadbbb414f48d64246f0a", "fields": {"nom_de_la_commune": "GERMIGNY SUR LOIRE", "libell_d_acheminement": "GERMIGNY SUR LOIRE", "code_postal": "58320", "coordonnees_gps": [47.0887291303, 3.1067226135], "code_commune_insee": "58124"}, "geometry": {"type": "Point", "coordinates": [3.1067226135, 47.0887291303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c4a1853ce42ebeae712cf054e33d6539c114c1", "fields": {"nom_de_la_commune": "GIMOUILLE", "libell_d_acheminement": "GIMOUILLE", "code_postal": "58470", "coordonnees_gps": [46.9060969897, 3.12154059247], "code_commune_insee": "58126"}, "geometry": {"type": "Point", "coordinates": [3.12154059247, 46.9060969897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acaab0a01624b4260120069e0112bf2147f7d55", "fields": {"nom_de_la_commune": "GRENOIS", "libell_d_acheminement": "GRENOIS", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58130"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1ec5bdb27670b6fbff6a1c29c6b5a13a607383", "fields": {"nom_de_la_commune": "LAMENAY SUR LOIRE", "libell_d_acheminement": "LAMENAY SUR LOIRE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58137"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8050bc6ec8b5fd8a1ed948c34cd1fbe2a899e7", "fields": {"nom_de_la_commune": "LAROCHEMILLAY", "libell_d_acheminement": "LAROCHEMILLAY", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58140"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c13c6eeadb9974c4d18ee7df752bf7d001e4e1f", "fields": {"nom_de_la_commune": "LORMES", "libell_d_acheminement": "LORMES", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58145"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8c25d1edd45c90ea557dc302ec7487d3d63c0f", "fields": {"nom_de_la_commune": "LUTHENAY UXELOUP", "libell_d_acheminement": "LUTHENAY UXELOUP", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58148"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce41f2a30802e4d5883679c6596880849a1f99a7", "fields": {"nom_de_la_commune": "LUZY", "libell_d_acheminement": "LUZY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58149"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480381c3de63950e6980a5c22e1899f294ab2294", "fields": {"nom_de_la_commune": "MAGNY LORMES", "libell_d_acheminement": "MAGNY LORMES", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58153"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292cf991658bbc26758f590943ca2d1da79a096b", "fields": {"nom_de_la_commune": "LA MARCHE", "libell_d_acheminement": "LA MARCHE", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58155"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbd5ede08cec893fcaa11f78a7677b4d3bfa46c", "fields": {"nom_de_la_commune": "MARIGNY L EGLISE", "libell_d_acheminement": "MARIGNY L EGLISE", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58157"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb75b9a20f6aa3e59d30b4be70ccb2fea0b51ad3", "fields": {"nom_de_la_commune": "MARIGNY SUR YONNE", "libell_d_acheminement": "MARIGNY SUR YONNE", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58159"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf50a8ddb8f1be3318ec33f970e67ba0f7c350c", "fields": {"nom_de_la_commune": "MAUX", "libell_d_acheminement": "MAUX", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58161"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5eeebe70326f6014342513561bd5329e71b46de", "fields": {"nom_de_la_commune": "MONTAMBERT", "libell_d_acheminement": "MONTAMBERT", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58172"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664f80007a1157c3c5ada530f8f55ab6fa7988fd", "fields": {"nom_de_la_commune": "MONTENOISON", "libell_d_acheminement": "MONTENOISON", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58174"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc455d685f0b517517ed217afeb3556d3cde13f", "fields": {"nom_de_la_commune": "MONT ET MARRE", "libell_d_acheminement": "MONT ET MARRE", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58175"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a132f06fc09999cb20e77ad0e1f6208430a0f1be", "fields": {"nom_de_la_commune": "MONTIGNY AUX AMOGNES", "libell_d_acheminement": "MONTIGNY AUX AMOGNES", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58176"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44eddadbd2744718e6c4d7a0a9156a1fe0a8bc57", "fields": {"nom_de_la_commune": "MOURON SUR YONNE", "libell_d_acheminement": "MOURON SUR YONNE", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58183"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2c13f2a735c18cee1ae9a8e1491784cbb6cc1e", "fields": {"nom_de_la_commune": "NEUFFONTAINES", "libell_d_acheminement": "NEUFFONTAINES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58190"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77e86e2cc6e42b8fc7ee1be6fc302cfdd103ff8d", "fields": {"nom_de_la_commune": "NEUVY SUR LOIRE", "libell_d_acheminement": "NEUVY SUR LOIRE", "code_postal": "58450", "coordonnees_gps": [47.5311404118, 2.91887895811], "code_commune_insee": "58193"}, "geometry": {"type": "Point", "coordinates": [2.91887895811, 47.5311404118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63fef2b0c6b6196863534c15a690e5279405da1d", "fields": {"nom_de_la_commune": "NOLAY", "libell_d_acheminement": "NOLAY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58196"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf85fc4c5f368960422aa61cb71e77318d217682", "fields": {"nom_de_la_commune": "NUARS", "libell_d_acheminement": "NUARS", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58197"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8990bfad5efca7f5beab8e5640f0944497587a", "fields": {"nom_de_la_commune": "OUROUX EN MORVAN", "libell_d_acheminement": "OUROUX EN MORVAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58205"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5527511e92a1b84097ecaf1e593777eff8ab68c7", "fields": {"nom_de_la_commune": "PAZY", "libell_d_acheminement": "PAZY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58208"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a077eb61b636880d183decd49bffe32289a7927b", "fields": {"nom_de_la_commune": "PERROY", "libell_d_acheminement": "PERROY", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58209"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46f4d5f4188aec9975118f6774bc70dfc2a070e", "fields": {"nom_de_la_commune": "POIL", "libell_d_acheminement": "POIL", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58211"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaa68a9c9e7b0a8a22fdb34c7839855ff4a2cb03", "fields": {"nom_de_la_commune": "PREPORCHE", "libell_d_acheminement": "PREPORCHE", "code_postal": "58360", "coordonnees_gps": [46.8973238863, 3.8600072839], "code_commune_insee": "58219"}, "geometry": {"type": "Point", "coordinates": [3.8600072839, 46.8973238863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fd7c1f2740d6d98c7e1503710a1ab41330f70a", "fields": {"nom_de_la_commune": "SAINCAIZE MEAUCE", "libell_d_acheminement": "SAINCAIZE MEAUCE", "code_postal": "58470", "coordonnees_gps": [46.9060969897, 3.12154059247], "code_commune_insee": "58225"}, "geometry": {"type": "Point", "coordinates": [3.12154059247, 46.9060969897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9fa42dd48b64be666cee89fcab17029a0cd4dd", "fields": {"nom_de_la_commune": "ST ANDRE EN MORVAN", "libell_d_acheminement": "ST ANDRE EN MORVAN", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58229"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a222f457ffe14a5a27f47f0f9928db57bad954e5", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58239"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14eed70ccc3b1dfa1e87bd88d61aee3cbaf2edb", "fields": {"nom_de_la_commune": "ST GRATIEN SAVIGNY", "libell_d_acheminement": "ST GRATIEN SAVIGNY", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58243"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c01bb8b5f2760b033cd48ac30dd0c75a8f30e8", "fields": {"nom_de_la_commune": "ST MARTIN DU PUY", "libell_d_acheminement": "ST MARTIN DU PUY", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58255"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc295405f1a6de85f97dbb4cd6f46928dcfeb9e6", "fields": {"code_postal": "58490", "code_commune_insee": "58260", "libell_d_acheminement": "ST PARIZE LE CHATEL", "ligne_5": "MOIRY", "nom_de_la_commune": "ST PARIZE LE CHATEL", "coordonnees_gps": [46.8506484753, 3.18474672516]}, "geometry": {"type": "Point", "coordinates": [3.18474672516, 46.8506484753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84152570fff36c3a614e203685831273c63126f4", "fields": {"nom_de_la_commune": "ST PEREUSE", "libell_d_acheminement": "ST PEREUSE", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58262"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe69dfb0e95249eb6ed34599d0b9a86744c99c3", "fields": {"nom_de_la_commune": "SAIZY", "libell_d_acheminement": "SAIZY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58271"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85193fce6ef80dd9a4fe52ac5d7220892afbdfa6", "fields": {"nom_de_la_commune": "SARDY LES EPIRY", "libell_d_acheminement": "SARDY LES EPIRY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58272"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "055d4c33cdd2e5bdcb347969cda7474db74290f3", "fields": {"nom_de_la_commune": "SAVIGNY POIL FOL", "libell_d_acheminement": "SAVIGNY POIL FOL", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58274"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc47d129865afcc320f4b794d9849d552785bc7c", "fields": {"nom_de_la_commune": "ST LOUP GEANGES", "libell_d_acheminement": "ST LOUP GEANGES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71443"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f471eb93554092f75c1dca2ebf77f38febba2b61", "fields": {"nom_de_la_commune": "ST MARTIN EN GATINOIS", "libell_d_acheminement": "ST MARTIN EN GATINOIS", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71457"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c97ae36ef28047e2fb165726e5e3bab20a4d4d2b", "fields": {"nom_de_la_commune": "ST MAURICE DES CHAMPS", "libell_d_acheminement": "ST MAURICE DES CHAMPS", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71461"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcf91dba88d89d45ad922c77c69c8643891f5d4", "fields": {"nom_de_la_commune": "ST MICAUD", "libell_d_acheminement": "ST MICAUD", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71465"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d889d280d31ed58a7ece627e445a7951e18e6261", "fields": {"nom_de_la_commune": "ST POINT", "libell_d_acheminement": "ST POINT", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71470"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54b2c95f61aba22ee2d1f07117873eece8d8a499", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71472"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c759b9dcf9f75e5ffadb15036f268bf975e860b8", "fields": {"nom_de_la_commune": "ST ROMAIN SOUS VERSIGNY", "libell_d_acheminement": "ST ROMAIN SOUS VERSIGNY", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71478"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4186a496951ace897d60380b35f548c0538e9c3", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE MARMAGNE", "libell_d_acheminement": "ST SYMPHORIEN DE MARMAGNE", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71482"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69948593900274cd079b1e613850eda6cd47794c", "fields": {"nom_de_la_commune": "ST USUGE", "libell_d_acheminement": "ST USUGE", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71484"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fe52bd40fa90b86d42e4fda118f41926bc97da", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "71230", "coordonnees_gps": [46.6235547336, 4.3737497458], "code_commune_insee": "71486"}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ce6fa0228279de0c24a7c8ebcbcf2827ea74e7", "fields": {"nom_de_la_commune": "ST VINCENT EN BRESSE", "libell_d_acheminement": "ST VINCENT EN BRESSE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71489"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0b352148fadda736b3d0d479479a46fab03cf2", "fields": {"nom_de_la_commune": "SALORNAY SUR GUYE", "libell_d_acheminement": "SALORNAY SUR GUYE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71495"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615ab1dc0a620bf5f75615fa193bcf7104476398", "fields": {"nom_de_la_commune": "SAMPIGNY LES MARANGES", "libell_d_acheminement": "SAMPIGNY LES MARANGES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71496"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e76ad0adfc73e56c09c218cb60d9e9b54d3919a", "fields": {"nom_de_la_commune": "SANCE", "libell_d_acheminement": "SANCE", "code_postal": "71000", "coordonnees_gps": [46.3175504743, 4.81977288125], "code_commune_insee": "71497"}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893403d3d86fb2a90ff11d8dae22a61bc9c19c06", "fields": {"nom_de_la_commune": "SEMUR EN BRIONNAIS", "libell_d_acheminement": "SEMUR EN BRIONNAIS", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71510"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b417ef79a39ac6c94752970fc0e286c434bfe1", "fields": {"nom_de_la_commune": "SENOZAN", "libell_d_acheminement": "SENOZAN", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71513"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0216d20ea48f785c169a91da65e2d7d549cf438", "fields": {"nom_de_la_commune": "SERCY", "libell_d_acheminement": "SERCY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71515"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441d87ae07a61163d784a3bdb2db9706dd8b48d7", "fields": {"nom_de_la_commune": "SERLEY", "libell_d_acheminement": "SERLEY", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71516"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e1c67324738d837c4c85f197a8cba91904547c", "fields": {"nom_de_la_commune": "SERMESSE", "libell_d_acheminement": "SERMESSE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71517"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6014ddf528bc6bc205b06f62c88c50ed793fdd", "fields": {"nom_de_la_commune": "SERRIERES", "libell_d_acheminement": "SERRIERES", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71518"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c9c4fa4458ae10503b536f857bef80ead5a1a", "fields": {"nom_de_la_commune": "SUIN", "libell_d_acheminement": "SUIN", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71529"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcd2a0c97a367c0dcb0c48e911d599219028d17", "fields": {"nom_de_la_commune": "THUREY", "libell_d_acheminement": "THUREY", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71538"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272df3009b8c8e421ae02b7ae764e82e37128279", "fields": {"nom_de_la_commune": "UXEAU", "libell_d_acheminement": "UXEAU", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71552"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67867b0001e9b1b0caea16408c4e79dca1164ab", "fields": {"nom_de_la_commune": "VAREILLES", "libell_d_acheminement": "VAREILLES", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71553"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf106b52bf5c82f87af78dd85f78b5d8855e97d", "fields": {"nom_de_la_commune": "VARENNE ST GERMAIN", "libell_d_acheminement": "VARENNE ST GERMAIN", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71557"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1114933d0a5a22ad23998d0527b7a83568d4227", "fields": {"nom_de_la_commune": "VAUBAN", "libell_d_acheminement": "VAUBAN", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71561"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eefc4502c35e33edc25687c6eae0b7d61435c69", "fields": {"nom_de_la_commune": "VAUDEBARRIER", "libell_d_acheminement": "VAUDEBARRIER", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71562"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5192e89723ee865d685fb6ecd8d47373bfb26e83", "fields": {"nom_de_la_commune": "VERSAUGUES", "libell_d_acheminement": "VERSAUGUES", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71573"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115bcdf50cb7c9cad392d736b9d5eea6982bff39", "fields": {"code_postal": "71260", "code_commune_insee": "71584", "libell_d_acheminement": "VIRE", "ligne_5": "VERIZET", "nom_de_la_commune": "VIRE", "coordonnees_gps": [46.4474927686, 4.81803623959]}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8305f8f7c2c38b07eb9ba7e67659cc3d342658", "fields": {"nom_de_la_commune": "VITRY SUR LOIRE", "libell_d_acheminement": "VITRY SUR LOIRE", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71589"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63d8f640d5c128d7769b10c15693d90967f3de8", "fields": {"nom_de_la_commune": "FLEURVILLE", "libell_d_acheminement": "FLEURVILLE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71591"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67cba3b3746bdda0531d5cdff77b7c799c79312c", "fields": {"nom_de_la_commune": "AILLIERES BEAUVOIR", "libell_d_acheminement": "AILLIERES BEAUVOIR", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72002"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6f14c1073719989a591c275c69951166c5fb1f", "fields": {"nom_de_la_commune": "ALLONNES", "libell_d_acheminement": "ALLONNES", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72003"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fd30633df23f32b59c04b4bd621bc65705e545", "fields": {"nom_de_la_commune": "AMNE", "libell_d_acheminement": "AMNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72004"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673ef617af9540817d833551786e2442c73f1875", "fields": {"nom_de_la_commune": "ASSE LE BOISNE", "libell_d_acheminement": "ASSE LE BOISNE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72011"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a911e2fa9086961c7eb8b3f0e8b30ef4840dba8", "fields": {"nom_de_la_commune": "LES AULNEAUX", "libell_d_acheminement": "LES AULNEAUX", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72015"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ec7f7a8eaaa9959f4bd784946131244390fbc2", "fields": {"code_postal": "72290", "code_commune_insee": "72023", "libell_d_acheminement": "BALLON ST MARS", "ligne_5": "ST MARS SOUS BALLON", "nom_de_la_commune": "BALLON ST MARS", "coordonnees_gps": [48.1733363685, 0.250385429699]}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0eb915330de08b39926979abc3f4b877219a51b", "fields": {"nom_de_la_commune": "BEILLE", "libell_d_acheminement": "BEILLE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72031"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c456cb72a9b406f8ecf94fad853bb519c61fec8d", "fields": {"nom_de_la_commune": "BERUS", "libell_d_acheminement": "BERUS", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72034"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46a7256b66903f48b81dd883f668e89a619a68fe", "fields": {"nom_de_la_commune": "LA BOSSE", "libell_d_acheminement": "LA BOSSE", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72040"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa8f6e9a78f3497b788635dcebd8aaa31992201", "fields": {"nom_de_la_commune": "BOULOIRE", "libell_d_acheminement": "BOULOIRE", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72042"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130a8e4aa6c080e446b1c17b1814ced53ba0c442", "fields": {"nom_de_la_commune": "BOURG LE ROI", "libell_d_acheminement": "BOURG LE ROI", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72043"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbcaba8f752560d76a367df133e367edd9689c6", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX CHOUX", "libell_d_acheminement": "LA CHAPELLE AUX CHOUX", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72060"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91a96f914b458b5af073cab499b727d35f43247", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BOIS", "libell_d_acheminement": "LA CHAPELLE DU BOIS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72062"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f08bf19ba1e237109cbee062348cba7a5353d15", "fields": {"nom_de_la_commune": "LA CHARTRE SUR LE LOIR", "libell_d_acheminement": "LA CHARTRE SUR LE LOIR", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72068"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "998aef3ddc35cfa6037a3081da5e782957ff8a49", "fields": {"nom_de_la_commune": "CHEMIRE EN CHARNIE", "libell_d_acheminement": "CHEMIRE EN CHARNIE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72074"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a459bd8f5889c8c7d37a2eb0a23d30ccc34b926", "fields": {"nom_de_la_commune": "CHEMIRE LE GAUDIN", "libell_d_acheminement": "CHEMIRE LE GAUDIN", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72075"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfbfbc8b68917ac53db76054c6703b1005a11cad", "fields": {"nom_de_la_commune": "CHERREAU", "libell_d_acheminement": "CHERREAU", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72081"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b6b45330e5b4e5eb35015b94dc3e0c9fd066a6", "fields": {"nom_de_la_commune": "COULANS SUR GEE", "libell_d_acheminement": "COULANS SUR GEE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72096"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff901dceb39aab5d1b1b389676170c8e2fb1d52", "fields": {"nom_de_la_commune": "COURGENARD", "libell_d_acheminement": "COURGENARD", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72105"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dee902084bebe6dc237dcfc29c0030f6edbc5cb", "fields": {"nom_de_la_commune": "CRE SUR LOIR", "libell_d_acheminement": "CRE SUR LOIR", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72108"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5605934c6caa7b0b8610bb93f5220ade3b7c15", "fields": {"nom_de_la_commune": "CRISSE", "libell_d_acheminement": "CRISSE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72109"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f893eb2bf9343cb9785e606d5f171ee26f525b5c", "fields": {"nom_de_la_commune": "DEGRE", "libell_d_acheminement": "DEGRE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72113"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69e79f7c58491c63920a117bdc9c7481273138c", "fields": {"nom_de_la_commune": "DEHAULT", "libell_d_acheminement": "DEHAULT", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72114"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d65b6ec46a57db8ec1f572b08146416e03f53a0", "fields": {"nom_de_la_commune": "DOLLON", "libell_d_acheminement": "DOLLON", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72118"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75670d2f34d42a7b4911a34039747d797860d30", "fields": {"nom_de_la_commune": "BOIS NORMAND PRES LYRE", "libell_d_acheminement": "BOIS NORMAND PRES LYRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27075"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47f00e11bf84985bdd382b859564acb60e98252", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27078"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6b9ce5cfa13c47af996c1646faaec8545eb04f", "fields": {"nom_de_la_commune": "BONNEVILLE APTOT", "libell_d_acheminement": "BONNEVILLE APTOT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27083"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d47de1a7a3d03eecd3b2f12c6e9b1a7b3fbccce", "fields": {"code_postal": "27310", "code_commune_insee": "27085", "libell_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", "ligne_5": "EPREVILLE EN ROUMOIS", "nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", "coordonnees_gps": [49.3596105697, 0.832082294949]}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d19bc915d31641e352611629f1753c384ffc881", "fields": {"nom_de_la_commune": "BOSQUENTIN", "libell_d_acheminement": "BOSQUENTIN", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27094"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c2a9a69d6428a9f48ece47f32bcf57606561eb", "fields": {"nom_de_la_commune": "BOSROBERT", "libell_d_acheminement": "BOSROBERT", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27095"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77556e78b5b8030889ebf89643eae5ff4c9331f", "fields": {"nom_de_la_commune": "LE BOULAY MORIN", "libell_d_acheminement": "LE BOULAY MORIN", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27099"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac53b429844024f42ad35f03a5780b8319ab254d", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "BOSC BENARD COMMIN", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8274ebbd1e19194c878f93faced5e8afef92bd7b", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "BOURGTHEROULDE INFREVILLE", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54d599f8338b1a4616e3ff2710fb7cdf20f7bf8", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "THUIT HEBERT", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ab494256ccd25b0fa4f666905ddbf795171f2e", "fields": {"nom_de_la_commune": "BRESTOT", "libell_d_acheminement": "BRESTOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27110"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7ee67332f47cac8e5ed51c452431563bcb7fb3", "fields": {"nom_de_la_commune": "BROGLIE", "libell_d_acheminement": "BROGLIE", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27117"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4453f9d47088953c1a009783fa1e424221186f2", "fields": {"nom_de_la_commune": "CAILLY SUR EURE", "libell_d_acheminement": "CAILLY SUR EURE", "code_postal": "27490", "coordonnees_gps": [49.1112180044, 1.26339750484], "code_commune_insee": "27124"}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d9d50f29f4d385444007587d512ddc5cc06075", "fields": {"nom_de_la_commune": "CAORCHES ST NICOLAS", "libell_d_acheminement": "CAORCHES ST NICOLAS", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27129"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9c9e2dc4973123f29278ae4b36f54e9cbf2fb2", "fields": {"nom_de_la_commune": "CARSIX", "libell_d_acheminement": "CARSIX", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27131"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f791a4ca95cb58671485b265d56fde753414bfa1", "fields": {"nom_de_la_commune": "CESSEVILLE", "libell_d_acheminement": "CESSEVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27135"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e773a7c377e22abf8cab087ac8e6db8ac50dd4e", "fields": {"nom_de_la_commune": "CHAIGNES", "libell_d_acheminement": "CHAIGNES", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27136"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aacfde52251247f9dee25614039dfe20accde27", "fields": {"code_postal": "27150", "code_commune_insee": "27153", "libell_d_acheminement": "CHAUVINCOURT PROVEMONT", "ligne_5": "PROVEMONT", "nom_de_la_commune": "CHAUVINCOURT PROVEMONT", "coordonnees_gps": [49.3312689444, 1.59419925539]}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2451ea95fcfc7ce55f9b918b5373f97e3402560e", "fields": {"code_postal": "27240", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "LES ESSARTS", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bad05bb177b0f620c51fd60e3bc2b074bd289b9", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27169"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8956e9ff256eae342b19d5b88e69c3acd24adf", "fields": {"code_postal": "27490", "code_commune_insee": "27191", "libell_d_acheminement": "CLEF VALLEE D EURE", "ligne_5": "FONTAINE HEUDEBOURG", "nom_de_la_commune": "CLEF VALLEE D EURE", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e7792f2ec3385efd3b17ba1a587c33007e72cc", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LES MINIERES", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb7ec9631ceae1b9f29daa3466cee4f4fd3296d", "fields": {"nom_de_la_commune": "DAUBEUF LA CAMPAGNE", "libell_d_acheminement": "DAUBEUF LA CAMPAGNE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27201"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728c743e5aaa822e12de937661cc2ba48344824e", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "GUITRY", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5544e8ece514adb746975286c617aecb2e1a8f72", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FOURGES", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a868e10ed0f9184f15e5fdcbf967b796af5ac102", "fields": {"nom_de_la_commune": "EPREVILLE PRES LE NEUBOURG", "libell_d_acheminement": "EPREVILLE PRES LE NEUBOURG", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27224"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce873d9bd125a6a56cf422a507a3543023fdc156", "fields": {"nom_de_la_commune": "ETREVILLE", "libell_d_acheminement": "ETREVILLE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27227"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ebd530bad78e31b50e0b28a5ea63ed52e067fd", "fields": {"nom_de_la_commune": "FARCEAUX", "libell_d_acheminement": "FARCEAUX", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27232"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19953332facf24ae0524f0eac78ca2ebcc8762da", "fields": {"nom_de_la_commune": "FAVEROLLES LA CAMPAGNE", "libell_d_acheminement": "FAVEROLLES LA CAMPAGNE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27235"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc22f6e684dc817ff392bb7d9300fc97826a062", "fields": {"nom_de_la_commune": "LA FERRIERE SUR RISLE", "libell_d_acheminement": "LA FERRIERE SUR RISLE", "code_postal": "27760", "coordonnees_gps": [48.9782186309, 0.786558992065], "code_commune_insee": "27240"}, "geometry": {"type": "Point", "coordinates": [0.786558992065, 48.9782186309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afeefc3b74d3355de3478f9750460363dff7923", "fields": {"nom_de_la_commune": "LA FORET DU PARC", "libell_d_acheminement": "LA FORET DU PARC", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27256"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "056d9d5981f9d93f1c443f7d5f3d8a16b79983aa", "fields": {"nom_de_la_commune": "GISORS", "libell_d_acheminement": "GISORS", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27284"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2f9bf0c543b356d33094a67ad702c7fcac01df", "fields": {"nom_de_la_commune": "GIVERVILLE", "libell_d_acheminement": "GIVERVILLE", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27286"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669c3c95f1fb9e43220d252a69eb1ae0d872f421", "fields": {"nom_de_la_commune": "GUICHAINVILLE", "libell_d_acheminement": "GUICHAINVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27306"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a85188d30c76c9728f85d46ac18a1ab4adc52b3b", "fields": {"nom_de_la_commune": "HECMANVILLE", "libell_d_acheminement": "HECMANVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27325"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adfc6d07eb71244820c4b822d760daf14a31a1f7", "fields": {"nom_de_la_commune": "HECOURT", "libell_d_acheminement": "HECOURT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27326"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e116bc91bf07a6cd31e834f9f924a896318a0ca5", "fields": {"nom_de_la_commune": "HENNEZIS", "libell_d_acheminement": "HENNEZIS", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27329"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ac228b0b910c79e0323f232a039419e1905e79d", "fields": {"nom_de_la_commune": "HEUDEBOUVILLE", "libell_d_acheminement": "HEUDEBOUVILLE", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27332"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a7d019e8b4a7ca55ee4389f24d3c1895ebfddb", "fields": {"nom_de_la_commune": "LES HOGUES", "libell_d_acheminement": "LES HOGUES", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27338"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29a0c80f63dc6029c2d98676dfde2714725edeb", "fields": {"nom_de_la_commune": "L HOSMES", "libell_d_acheminement": "L HOSMES", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27341"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab14d23775d2a5b3463c6a617ab40e8381d4aed7", "fields": {"nom_de_la_commune": "HOULBEC PRES LE GROS THEIL", "libell_d_acheminement": "HOULBEC PRES LE GROS THEIL", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27344"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7fe8cf4d1660ac7a8d8c824c4406bc4fbff9e79", "fields": {"nom_de_la_commune": "JUIGNETTES", "libell_d_acheminement": "JUIGNETTES", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27359"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb5fd16153c269c54fd5fb7eae13a4cb029b3a5", "fields": {"nom_de_la_commune": "LE LANDIN", "libell_d_acheminement": "LE LANDIN", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27363"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed51456fd2c5027cd42bd0f0713568b448bf81a4", "fields": {"nom_de_la_commune": "LOUVERSEY", "libell_d_acheminement": "LOUVERSEY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27374"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41dc039cacf0c00e85fd4966eb3f5d04a110f042", "fields": {"nom_de_la_commune": "MALLEVILLE SUR LE BEC", "libell_d_acheminement": "MALLEVILLE SUR LE BEC", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27380"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5367b9e29c81d4c5eb40efaddb8ce1122467e19", "fields": {"nom_de_la_commune": "MALOUY", "libell_d_acheminement": "MALOUY", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27381"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65c2eecb2e69ee77d0dddbb80edac77cd286a090", "fields": {"nom_de_la_commune": "LE MANOIR", "libell_d_acheminement": "LE MANOIR", "code_postal": "27460", "coordonnees_gps": [49.3216784952, 1.17178716844], "code_commune_insee": "27386"}, "geometry": {"type": "Point", "coordinates": [1.17178716844, 49.3216784952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e204c6653bc78ee7fbbedd513e1cfba6eb804b84", "fields": {"nom_de_la_commune": "MARBEUF", "libell_d_acheminement": "MARBEUF", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27389"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2d7d03d972d18b9c8f5af4a2c253c1220072a7", "fields": {"nom_de_la_commune": "MARTOT", "libell_d_acheminement": "MARTOT", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27394"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c506c9e579b87bc6a9e1f931b26365c9ee12b562", "fields": {"nom_de_la_commune": "MENNEVAL", "libell_d_acheminement": "MENNEVAL", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27398"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94eaa30f67832bdab6beea00267bbc736c7675d1", "fields": {"nom_de_la_commune": "LE MESNIL HARDRAY", "libell_d_acheminement": "LE MESNIL HARDRAY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27402"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e3492abd0707b56ef99100163e875d4e45b838", "fields": {"nom_de_la_commune": "MESNIL SUR L ESTREE", "libell_d_acheminement": "MESNIL SUR L ESTREE", "code_postal": "27650", "coordonnees_gps": [48.7821743197, 1.31343473217], "code_commune_insee": "27406"}, "geometry": {"type": "Point", "coordinates": [1.31343473217, 48.7821743197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9669ea45c469b0f3eb2d98d47ef6e7e7856c4c6", "fields": {"nom_de_la_commune": "MESNIL VERCLIVES", "libell_d_acheminement": "MESNIL VERCLIVES", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27407"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e085fe4024eea524402191ec697edad869f29a2", "fields": {"nom_de_la_commune": "MEZIERES EN VEXIN", "libell_d_acheminement": "MEZIERES EN VEXIN", "code_postal": "27510", "coordonnees_gps": [49.1509982632, 1.53002426085], "code_commune_insee": "27408"}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0776b9e51c75d2c01b3c205ee0495edcf6aac2", "fields": {"nom_de_la_commune": "MONTAURE", "libell_d_acheminement": "MONTAURE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27412"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de305dfe1c5b1809912fa4baf7b456d256418c49", "fields": {"nom_de_la_commune": "NEUILLY", "libell_d_acheminement": "NEUILLY", "code_postal": "27730", "coordonnees_gps": [48.932997523, 1.41949136051], "code_commune_insee": "27429"}, "geometry": {"type": "Point", "coordinates": [1.41949136051, 48.932997523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5a1f1fbf5cb775981bb3c90749bfe53146e815", "fields": {"nom_de_la_commune": "LA NOE POULAIN", "libell_d_acheminement": "LA NOE POULAIN", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27435"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e824317b994a4c7da37e7272ab5fa29bfc16fb5", "fields": {"nom_de_la_commune": "ORVAUX", "libell_d_acheminement": "ORVAUX", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27447"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7697bd5ec4fbe584286f7b0cf148a773933635b", "fields": {"nom_de_la_commune": "PERRIERS LA CAMPAGNE", "libell_d_acheminement": "PERRIERS LA CAMPAGNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27452"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524fcf193a889223aff7f6177eb23018a74e0413", "fields": {"nom_de_la_commune": "PERRIERS SUR ANDELLE", "libell_d_acheminement": "PERRIERS SUR ANDELLE", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27453"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d9991da2bb4cb59de7ed00c5f9e9607d2ad60f0", "fields": {"nom_de_la_commune": "PINTERVILLE", "libell_d_acheminement": "PINTERVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27456"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95974551edacf8b61f22686fa2ee9634f7d105ae", "fields": {"nom_de_la_commune": "PLASNES", "libell_d_acheminement": "PLASNES", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27463"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b803e0e40be7455583ac5dbf286d454951318473", "fields": {"nom_de_la_commune": "PONT AUDEMER", "libell_d_acheminement": "PONT AUDEMER", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27467"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0bc4ffe6bf0d54bd242bb2642488b31622c7fec", "fields": {"nom_de_la_commune": "PRESSAGNY L ORGUEILLEUX", "libell_d_acheminement": "PRESSAGNY L ORGUEILLEUX", "code_postal": "27510", "coordonnees_gps": [49.1509982632, 1.53002426085], "code_commune_insee": "27477"}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3bfb9c534b0f7c0374ff4f690aac3104c2615f", "fields": {"nom_de_la_commune": "ROMILLY LA PUTHENAYE", "libell_d_acheminement": "ROMILLY LA PUTHENAYE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27492"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9e659af1918f01488d1dc33d81efcec76fc4c6", "fields": {"nom_de_la_commune": "ROMILLY SUR ANDELLE", "libell_d_acheminement": "ROMILLY SUR ANDELLE", "code_postal": "27610", "coordonnees_gps": [49.3347145782, 1.25438565295], "code_commune_insee": "27493"}, "geometry": {"type": "Point", "coordinates": [1.25438565295, 49.3347145782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c31f6b264460aa881bb83114e3d785795e4059", "fields": {"nom_de_la_commune": "ROUGEMONTIERS", "libell_d_acheminement": "ROUGEMONTIERS", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27497"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41503ab0555b18da2294d200eadff3b392957592", "fields": {"nom_de_la_commune": "ROUVRAY", "libell_d_acheminement": "ROUVRAY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27501"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6368a3b512199a93324194d92aec1369dcbc16f3", "fields": {"nom_de_la_commune": "SACQUENVILLE", "libell_d_acheminement": "SACQUENVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27504"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c53a4e788bfa7f6aeecca2b31411532f076308", "fields": {"nom_de_la_commune": "ST ANDRE DE L EURE", "libell_d_acheminement": "ST ANDRE DE L EURE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27507"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e63566be1c60858148477ff090b52b3106d298", "fields": {"nom_de_la_commune": "ST AUBIN DU THENNEY", "libell_d_acheminement": "ST AUBIN DU THENNEY", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27514"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3415fe5a0d8bace94fba0f9a525a160294ff98fd", "fields": {"nom_de_la_commune": "ST AUBIN LE VERTUEUX", "libell_d_acheminement": "ST AUBIN LE VERTUEUX", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27516"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab76bed60ffa3d0716413515179f3e30c6427aa", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR CONDE", "libell_d_acheminement": "ST CHRISTOPHE SUR CONDE", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27522"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3330809759e5a5b5685f5b54a585a3eb4e4a0657", "fields": {"nom_de_la_commune": "STE COLOMBE LA COMMANDERIE", "libell_d_acheminement": "STE COLOMBE LA COMMANDERIE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27524"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd8dd223d857e70c9356fd30da186757e1d3431", "fields": {"nom_de_la_commune": "ST DENIS D AUGERONS", "libell_d_acheminement": "ST DENIS D AUGERONS", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27530"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b10eb8e103a3954355ec79640b703c9e13dd2ba", "fields": {"nom_de_la_commune": "ST ETIENNE DU VAUVRAY", "libell_d_acheminement": "ST ETIENNE DU VAUVRAY", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27537"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a6ffec29d3446a601ad07eecb8df96b89efeb7", "fields": {"nom_de_la_commune": "STE GENEVIEVE LES GASNY", "libell_d_acheminement": "STE GENEVIEVE LES GASNY", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27540"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37453fd17acf8730077301791f8cfd39b668a6ac", "fields": {"nom_de_la_commune": "ST GERMAIN DE FRESNEY", "libell_d_acheminement": "ST GERMAIN DE FRESNEY", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27544"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6265d57730db18ce95e749fad03527dd1aaee3c", "fields": {"nom_de_la_commune": "ST GERMAIN LA CAMPAGNE", "libell_d_acheminement": "ST GERMAIN LA CAMPAGNE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27547"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078b86cb9305b3dd84552e839e4b998e47a49e90", "fields": {"nom_de_la_commune": "ST GERMAIN SUR AVRE", "libell_d_acheminement": "ST GERMAIN SUR AVRE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27548"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52ca8b97fde1ec5e41bdc5956101d26044099cf", "fields": {"nom_de_la_commune": "ST JULIEN DE LA LIEGUE", "libell_d_acheminement": "ST JULIEN DE LA LIEGUE", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27553"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234919d31549fb53a738f1715742d7faadd267c4", "fields": {"nom_de_la_commune": "ST LAURENT DES BOIS", "libell_d_acheminement": "ST LAURENT DES BOIS", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27555"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b9c60c61940f50a41060a09c49cea6a8552c66", "fields": {"nom_de_la_commune": "ST LEGER DU GENNETEY", "libell_d_acheminement": "ST LEGER DU GENNETEY", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27558"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925503c80ecd42bd78398843644eb47b917521d1", "fields": {"nom_de_la_commune": "ST LUC", "libell_d_acheminement": "ST LUC", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27560"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7788487ba9bb0da2d2ef91c2e6e7ade932b616", "fields": {"nom_de_la_commune": "ST MARDS DE BLACARVILLE", "libell_d_acheminement": "ST MARDS DE BLACARVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27563"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58bbed2359f5676c8673dd0a1249d452d053598", "fields": {"nom_de_la_commune": "COURSAN", "libell_d_acheminement": "COURSAN", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11106"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decb1b12f33e2040f188c8aec1e67fee42800faa", "fields": {"nom_de_la_commune": "CUXAC CABARDES", "libell_d_acheminement": "CUXAC CABARDES", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11115"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b7933780eac06725ff17d235f22bffd226d2d7", "fields": {"nom_de_la_commune": "DAVEJEAN", "libell_d_acheminement": "DAVEJEAN", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11117"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223eeb77a89677074dc8201ec4a37870c2179f68", "fields": {"nom_de_la_commune": "DERNACUEILLETTE", "libell_d_acheminement": "DERNACUEILLETTE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11118"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b04a77716fa17c4d5fbaa6201ecf89480a22828", "fields": {"code_postal": "11240", "code_commune_insee": "11128", "libell_d_acheminement": "ESCUEILLENS ET ST JUST", "ligne_5": "ST JUST DE BELENGARD", "nom_de_la_commune": "ESCUEILLENS ET ST JUST", "coordonnees_gps": [43.1188469018, 2.06671991119]}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e98503ef430e070061ed7bfc41e72e03e7a170", "fields": {"nom_de_la_commune": "ESPERAZA", "libell_d_acheminement": "ESPERAZA", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11129"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc926e735d87a97a0a8a828793f7c32ac76e2535", "fields": {"nom_de_la_commune": "FERRALS LES CORBIERES", "libell_d_acheminement": "FERRALS LES CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11140"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfbafb33b6af709f3392d9e6de311e825dc6bc20", "fields": {"code_postal": "11510", "code_commune_insee": "11144", "libell_d_acheminement": "FITOU", "ligne_5": "CABANES DE FITOU", "nom_de_la_commune": "FITOU", "coordonnees_gps": [42.9150508033, 2.94104906509]}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bde82b7df1d63bb0d09aa0461816c831f434b0", "fields": {"code_postal": "11560", "code_commune_insee": "11145", "libell_d_acheminement": "FLEURY D AUDE", "ligne_5": "ST PIERRE LA MER", "nom_de_la_commune": "FLEURY", "coordonnees_gps": [43.2147091577, 3.17586928997]}, "geometry": {"type": "Point", "coordinates": [3.17586928997, 43.2147091577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b665451921fb8fa13fc6542f7a929c26a7df7c", "fields": {"nom_de_la_commune": "FONTERS DU RAZES", "libell_d_acheminement": "FONTERS DU RAZES", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11149"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674dcf8043bdface9475f7675f6e90751b09242b", "fields": {"nom_de_la_commune": "LA FORCE", "libell_d_acheminement": "LA FORCE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11153"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f39a5236cb9ccf35924259f20af91a6332f5df", "fields": {"nom_de_la_commune": "GAJA ET VILLEDIEU", "libell_d_acheminement": "GAJA ET VILLEDIEU", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11158"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d27f96bbbfc91d92015be58bbab0e9bdee72131", "fields": {"nom_de_la_commune": "GINCLA", "libell_d_acheminement": "GINCLA", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11163"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43b6299305612573291173cbda21d01168abb97b", "fields": {"nom_de_la_commune": "GRAMAZIE", "libell_d_acheminement": "GRAMAZIE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11167"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cb15d438e4901fcfd031faad3e9dd78ba1f388", "fields": {"nom_de_la_commune": "HOUNOUX", "libell_d_acheminement": "HOUNOUX", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11173"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981413e11b0bc350671c4160fd31c4062c087843", "fields": {"nom_de_la_commune": "ST DIDIER EN VELAY", "libell_d_acheminement": "ST DIDIER EN VELAY", "code_postal": "43140", "coordonnees_gps": [45.3026508928, 4.29061531047], "code_commune_insee": "43177"}, "geometry": {"type": "Point", "coordinates": [4.29061531047, 45.3026508928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75fef7b67d0b4b4703dd751f062478e87e79130", "fields": {"nom_de_la_commune": "ST ETIENNE LARDEYROL", "libell_d_acheminement": "ST ETIENNE LARDEYROL", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43181"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e023d31d68d1c39b9456e1680017c5aae96a50", "fields": {"nom_de_la_commune": "ST GERON", "libell_d_acheminement": "ST GERON", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43191"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8eb92320a6da4cee78b12167fa1dd167b40426a", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43193"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5493daa862315e7f63ef79ccb605e4531841693a", "fields": {"nom_de_la_commune": "ST ILPIZE", "libell_d_acheminement": "ST ILPIZE", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43195"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c442bbdefc9bbcf7b20e61f6cc37637a6d452e", "fields": {"nom_de_la_commune": "ST JEURES", "libell_d_acheminement": "ST JEURES", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43199"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf42bf6648f238049fffb4e352e54c0c8c228c7e", "fields": {"nom_de_la_commune": "ST JUST MALMONT", "libell_d_acheminement": "ST JUST MALMONT", "code_postal": "43240", "coordonnees_gps": [45.3465287299, 4.32231479792], "code_commune_insee": "43205"}, "geometry": {"type": "Point", "coordinates": [4.32231479792, 45.3465287299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68767b79d6a4cc68637fa36a44807997815099be", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43230"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c1f81c1e17c30e1e12587130283756d04c40da", "fields": {"nom_de_la_commune": "SENEUJOLS", "libell_d_acheminement": "SENEUJOLS", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43238"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b884fbe995e2e5820647de05761ab7e7ff60256", "fields": {"code_postal": "43300", "code_commune_insee": "43239", "libell_d_acheminement": "SIAUGUES STE MARIE", "ligne_5": "STE MARIE DES CHAZES", "nom_de_la_commune": "SIAUGUES STE MARIE", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcbc2ce88e6b09ad2500c5a8d2439690a447869", "fields": {"nom_de_la_commune": "TIRANGES", "libell_d_acheminement": "TIRANGES", "code_postal": "43530", "coordonnees_gps": [45.2878487826, 4.01248394629], "code_commune_insee": "43246"}, "geometry": {"type": "Point", "coordinates": [4.01248394629, 45.2878487826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc131f1f84112d115bd56efb558de01870fda51", "fields": {"nom_de_la_commune": "VALS PRES LE PUY", "libell_d_acheminement": "VALS PRES LE PUY", "code_postal": "43750", "coordonnees_gps": [45.0229150545, 3.8653758811], "code_commune_insee": "43251"}, "geometry": {"type": "Point", "coordinates": [3.8653758811, 45.0229150545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0fe3b3a896f2bccf0fd2f80eec19f1f328acd0", "fields": {"nom_de_la_commune": "VARENNES ST HONORAT", "libell_d_acheminement": "VARENNES ST HONORAT", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43252"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf6b857a9253c53e2a4c1344690d652cbd70aeb", "fields": {"nom_de_la_commune": "ANCENIS", "libell_d_acheminement": "ANCENIS", "code_postal": "44150", "coordonnees_gps": [47.3950525616, -1.14692474643], "code_commune_insee": "44003"}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d396590553860c77d5ac34e4a14026f22d398af", "fields": {"nom_de_la_commune": "ASSERAC", "libell_d_acheminement": "ASSERAC", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44006"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48898129f754a55bfbce2d733d628cb0f0384298", "fields": {"code_postal": "44410", "code_commune_insee": "44006", "libell_d_acheminement": "ASSERAC", "ligne_5": "PONT D ARMES", "nom_de_la_commune": "ASSERAC", "coordonnees_gps": [47.4324776311, -2.33169406972]}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656ed0393ad4a5fecac218ac503fbed1734ea50e", "fields": {"nom_de_la_commune": "BASSE GOULAINE", "libell_d_acheminement": "BASSE GOULAINE", "code_postal": "44115", "coordonnees_gps": [47.2024487913, -1.43097454176], "code_commune_insee": "44009"}, "geometry": {"type": "Point", "coordinates": [-1.43097454176, 47.2024487913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2527bfa89a8fd3f3c5fe9fe80ba81a4dbef3b740", "fields": {"nom_de_la_commune": "BONNOEUVRE", "libell_d_acheminement": "BONNOEUVRE", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44017"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6eb415464ade638ad07b78b1c3f60b13d95f03c", "fields": {"code_postal": "44580", "code_commune_insee": "44021", "libell_d_acheminement": "VILLENEUVE EN RETZ", "ligne_5": "ST CYR EN RETZ", "nom_de_la_commune": "VILLENEUVE EN RETZ", "coordonnees_gps": [47.0379472575, -1.92596110196]}, "geometry": {"type": "Point", "coordinates": [-1.92596110196, 47.0379472575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45794a5f046055c06b80a547d85ccf03c0e27867", "fields": {"nom_de_la_commune": "CASSON", "libell_d_acheminement": "CASSON", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44027"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1334450a84d96a0eeb3eed777c7f7b65f0de1343", "fields": {"nom_de_la_commune": "LA CHEVROLIERE", "libell_d_acheminement": "LA CHEVROLIERE", "code_postal": "44118", "coordonnees_gps": [47.0889695478, -1.59676742494], "code_commune_insee": "44041"}, "geometry": {"type": "Point", "coordinates": [-1.59676742494, 47.0889695478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c0dc3a6c99a15887ad1e5495f256c82947903d", "fields": {"nom_de_la_commune": "CONQUEREUIL", "libell_d_acheminement": "CONQUEREUIL", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44044"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97eebcea5599086514ccb5f08cd81ed35689422f", "fields": {"nom_de_la_commune": "COUFFE", "libell_d_acheminement": "COUFFE", "code_postal": "44521", "coordonnees_gps": [47.3765719065, -1.28522079399], "code_commune_insee": "44048"}, "geometry": {"type": "Point", "coordinates": [-1.28522079399, 47.3765719065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351988219703e1588e59b8131b543e2437965dc3", "fields": {"nom_de_la_commune": "FERCE", "libell_d_acheminement": "FERCE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44058"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9efb81a5fc6f20b67f1e8fd97bbf01101a5df9", "fields": {"nom_de_la_commune": "FROSSAY", "libell_d_acheminement": "FROSSAY", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44061"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6716ed52ae7db9488ea7e65156367c8dee07869", "fields": {"nom_de_la_commune": "GORGES", "libell_d_acheminement": "GORGES", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44064"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d88f43ce5a89389023e0ac38a7136e43a289fc4", "fields": {"nom_de_la_commune": "GUEMENE PENFAO", "libell_d_acheminement": "GUEMENE PENFAO", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44067"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e2c7e11ca07068a5dde7347755a62fc0bcf70f", "fields": {"code_postal": "44350", "code_commune_insee": "44069", "libell_d_acheminement": "GUERANDE", "ligne_5": "SAILLE", "nom_de_la_commune": "GUERANDE", "coordonnees_gps": [47.3439577414, -2.41627951573]}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16fdab2e75a5c2c264c8643bab7211928538fcf", "fields": {"code_postal": "44610", "code_commune_insee": "44074", "libell_d_acheminement": "INDRE", "ligne_5": "HAUTE INDRE", "nom_de_la_commune": "INDRE", "coordonnees_gps": [47.1984071351, -1.67155607359]}, "geometry": {"type": "Point", "coordinates": [-1.67155607359, 47.1984071351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29866f6acb1a4fa49a506ee45700d80c8e8f9b52", "fields": {"nom_de_la_commune": "LAVAU SUR LOIRE", "libell_d_acheminement": "LAVAU SUR LOIRE", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44080"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9964f14f1bbfc5356bf60beac7b1ec6cc5dbd62", "fields": {"nom_de_la_commune": "LE LOROUX BOTTEREAU", "libell_d_acheminement": "LE LOROUX BOTTEREAU", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44084"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc492355bc99890e25afa8e14a983bd13f96f1d", "fields": {"nom_de_la_commune": "MAISDON SUR SEVRE", "libell_d_acheminement": "MAISDON SUR SEVRE", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44088"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34008ffba6994e6683cf0aa0bca26b18bcec89ba", "fields": {"nom_de_la_commune": "MESANGER", "libell_d_acheminement": "MESANGER", "code_postal": "44522", "coordonnees_gps": [47.4363371088, -1.20212334851], "code_commune_insee": "44096"}, "geometry": {"type": "Point", "coordinates": [-1.20212334851, 47.4363371088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2317757f490093769e3c3f435e80a7bf4d4a8b61", "fields": {"nom_de_la_commune": "MOUAIS", "libell_d_acheminement": "MOUAIS", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44105"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b189c8ec57f77c1cecbb70a9bbb43c70dc3d1b50", "fields": {"nom_de_la_commune": "LES MOUTIERS EN RETZ", "libell_d_acheminement": "LES MOUTIERS EN RETZ", "code_postal": "44760", "coordonnees_gps": [47.0707006392, -2.00607135756], "code_commune_insee": "44106"}, "geometry": {"type": "Point", "coordinates": [-2.00607135756, 47.0707006392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "308d02c63ebfea8dcfaeae4c26ad6764530ad0f4", "fields": {"nom_de_la_commune": "MOUZILLON", "libell_d_acheminement": "MOUZILLON", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44108"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4545712627a69c0240837eabf36df0df2079b506", "fields": {"nom_de_la_commune": "OUDON", "libell_d_acheminement": "OUDON", "code_postal": "44521", "coordonnees_gps": [47.3765719065, -1.28522079399], "code_commune_insee": "44115"}, "geometry": {"type": "Point", "coordinates": [-1.28522079399, 47.3765719065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b811811d4eb93242c68616e699b88844568bf85", "fields": {"nom_de_la_commune": "PETIT AUVERNE", "libell_d_acheminement": "PETIT AUVERNE", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44121"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c262c1b08eeaada4d0ec5c2fd05a9cdac057bf", "fields": {"nom_de_la_commune": "PLESSE", "libell_d_acheminement": "PLESSE", "code_postal": "44630", "coordonnees_gps": [47.5557950636, -1.89023163627], "code_commune_insee": "44128"}, "geometry": {"type": "Point", "coordinates": [-1.89023163627, 47.5557950636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43808dd606bde2b2d808a695809efb30cde9c959", "fields": {"nom_de_la_commune": "PORNIC", "libell_d_acheminement": "PORNIC", "code_postal": "44210", "coordonnees_gps": [47.122206427, -2.05186337229], "code_commune_insee": "44131"}, "geometry": {"type": "Point", "coordinates": [-2.05186337229, 47.122206427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1d7b204be6f61a1803e9c7f933b76654f47d08", "fields": {"nom_de_la_commune": "PRINQUIAU", "libell_d_acheminement": "PRINQUIAU", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44137"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dcf72e66e082462fa881d3ce79cddc177275d51", "fields": {"nom_de_la_commune": "REZE", "libell_d_acheminement": "REZE", "code_postal": "44400", "coordonnees_gps": [47.176499243, -1.54979300458], "code_commune_insee": "44143"}, "geometry": {"type": "Point", "coordinates": [-1.54979300458, 47.176499243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0731a1df1dbab4fba6e54406afdd41b654b31942", "fields": {"code_postal": "44250", "code_commune_insee": "44154", "libell_d_acheminement": "ST BREVIN LES PINS", "ligne_5": "ST BREVIN L OCEAN", "nom_de_la_commune": "ST BREVIN LES PINS", "coordonnees_gps": [47.2472409804, -2.15082822089]}, "geometry": {"type": "Point", "coordinates": [-2.15082822089, 47.2472409804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c34555754c83f7212654096cb9652d33307a530", "fields": {"nom_de_la_commune": "ST COLOMBAN", "libell_d_acheminement": "ST COLOMBAN", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44155"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3838677624f480b6321529e734ad7bc9905dd865", "fields": {"code_postal": "44650", "code_commune_insee": "44156", "libell_d_acheminement": "CORCOUE SUR LOGNE", "ligne_5": "LA BENATE", "nom_de_la_commune": "CORCOUE SUR LOGNE", "coordonnees_gps": [46.9200173219, -1.61088022271]}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98df0e86815144c66a43f06d2b9ebe877e4f24bf", "fields": {"nom_de_la_commune": "ST FIACRE SUR MAINE", "libell_d_acheminement": "ST FIACRE SUR MAINE", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44159"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a4e4a85be78e5a7f3af7fd431457c1abcdaacc", "fields": {"nom_de_la_commune": "ST GILDAS DES BOIS", "libell_d_acheminement": "ST GILDAS DES BOIS", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44161"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d568a255233e66fb0b557b60720890f2b42470a2", "fields": {"nom_de_la_commune": "ST HERBLAIN", "libell_d_acheminement": "ST HERBLAIN", "code_postal": "44800", "coordonnees_gps": [47.2246998246, -1.634454241], "code_commune_insee": "44162"}, "geometry": {"type": "Point", "coordinates": [-1.634454241, 47.2246998246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a598526e10e08f1603e5bfac2552f3d13f5dda", "fields": {"nom_de_la_commune": "ST LUMINE DE CLISSON", "libell_d_acheminement": "ST LUMINE DE CLISSON", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44173"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f741db4a6877158e5c9502f9987bd1330214ad02", "fields": {"nom_de_la_commune": "ST MOLF", "libell_d_acheminement": "ST MOLF", "code_postal": "44350", "coordonnees_gps": [47.3439577414, -2.41627951573], "code_commune_insee": "44183"}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329f373482e58a7c3411facb07f3cb291de1f2d3", "fields": {"code_postal": "44600", "code_commune_insee": "44184", "libell_d_acheminement": "ST NAZAIRE", "ligne_5": "ST MARC SUR MER", "nom_de_la_commune": "ST NAZAIRE", "coordonnees_gps": [47.2802195147, -2.2511094831]}, "geometry": {"type": "Point", "coordinates": [-2.2511094831, 47.2802195147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a4bb07e9a380462e1f008e3638e0f231077e715", "fields": {"nom_de_la_commune": "ST NICOLAS DE REDON", "libell_d_acheminement": "ST NICOLAS DE REDON", "code_postal": "44460", "coordonnees_gps": [47.6181534488, -2.00119847224], "code_commune_insee": "44185"}, "geometry": {"type": "Point", "coordinates": [-2.00119847224, 47.6181534488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094df63f5488b9dacf64003d20d018a2e5fb8519", "fields": {"nom_de_la_commune": "ST PERE EN RETZ", "libell_d_acheminement": "ST PERE EN RETZ", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44187"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10106e8ede3be79c756878f97e7e20796277ba2", "fields": {"nom_de_la_commune": "ST SEBASTIEN SUR LOIRE", "libell_d_acheminement": "ST SEBASTIEN SUR LOIRE", "code_postal": "44230", "coordonnees_gps": [47.2032453046, -1.49980198596], "code_commune_insee": "44190"}, "geometry": {"type": "Point", "coordinates": [-1.49980198596, 47.2032453046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fbeb4c14f3a1c886c8b7adbc506c9f8a237678", "fields": {"nom_de_la_commune": "ST VIAUD", "libell_d_acheminement": "ST VIAUD", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44192"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7876532ef3ce6ac4a8bef1a36bdf7b35bf5851", "fields": {"nom_de_la_commune": "SAUTRON", "libell_d_acheminement": "SAUTRON", "code_postal": "44880", "coordonnees_gps": [47.273046688, -1.68061808645], "code_commune_insee": "44194"}, "geometry": {"type": "Point", "coordinates": [-1.68061808645, 47.273046688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173233e3a00d11a659ab2a9325f02e3315bd0b32", "fields": {"nom_de_la_commune": "SEVERAC", "libell_d_acheminement": "SEVERAC", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44196"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20d738bba4bb577e73784c50e1fea7248d7f7b1", "fields": {"nom_de_la_commune": "LES TOUCHES", "libell_d_acheminement": "LES TOUCHES", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44205"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baa437e8bb871c4ea9dd7fa41ff5ff09e943a1b1", "fields": {"nom_de_la_commune": "TRANS SUR ERDRE", "libell_d_acheminement": "TRANS SUR ERDRE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44207"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04ed0fef63a5deffca36af059b6473816340baa", "fields": {"nom_de_la_commune": "VAY", "libell_d_acheminement": "VAY", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44214"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9c6835fd4fe0753dfabd33e1a7ef5aec8fbe31", "fields": {"code_postal": "44360", "code_commune_insee": "44217", "libell_d_acheminement": "VIGNEUX DE BRETAGNE", "ligne_5": "LA PAQUELAIS", "nom_de_la_commune": "VIGNEUX DE BRETAGNE", "coordonnees_gps": [47.2931220587, -1.77460002675]}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e7e7a03798f0e9bec21426f20c80a4e15da986b", "fields": {"nom_de_la_commune": "ASCOUX", "libell_d_acheminement": "ASCOUX", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45010"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4d71b277e206113a703ebe803dfb013b97474b", "fields": {"nom_de_la_commune": "AUTRUY SUR JUINE", "libell_d_acheminement": "AUTRUY SUR JUINE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45015"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5e2c8beb13dd7e5be9ce26cbd611852da2f97f", "fields": {"nom_de_la_commune": "AUVILLIERS EN GATINAIS", "libell_d_acheminement": "AUVILLIERS EN GATINAIS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45017"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df05045a6274f5125d5c49f8f2127d59f1f673d5", "fields": {"nom_de_la_commune": "LE BARDON", "libell_d_acheminement": "LE BARDON", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45020"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0db5229e69f89b589d8aeeb7bbc2a5c7a16fba3", "fields": {"nom_de_la_commune": "BATILLY EN PUISAYE", "libell_d_acheminement": "BATILLY EN PUISAYE", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45023"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58078e314d41c68393527ea192fefbf00932344d", "fields": {"code_postal": "45480", "code_commune_insee": "45025", "libell_d_acheminement": "BAZOCHES LES GALLERANDES", "ligne_5": "IZY", "nom_de_la_commune": "BAZOCHES LES GALLERANDES", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207289480ffc84ea9c5ec60eea0585293b8a0e81", "fields": {"nom_de_la_commune": "BEAUNE LA ROLANDE", "libell_d_acheminement": "BEAUNE LA ROLANDE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45030"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45219cf1f20cbe227aec764425848a6c13403879", "fields": {"nom_de_la_commune": "BELLEGARDE", "libell_d_acheminement": "BELLEGARDE", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45031"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3266a5b27fde18f7f681601da4459e6020cc22c2", "fields": {"nom_de_la_commune": "BOESSES", "libell_d_acheminement": "BOESSES", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45033"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3acfa1842f8087880cbb8dc8e478363252c4c83", "fields": {"nom_de_la_commune": "BOULAY LES BARRES", "libell_d_acheminement": "BOULAY LES BARRES", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45046"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f289263ea3e115f8abed11a2bfc2efcb751eb14", "fields": {"nom_de_la_commune": "BOYNES", "libell_d_acheminement": "BOYNES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45050"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee8412be8428569c15b5c9afa52c5b4bc02f752", "fields": {"nom_de_la_commune": "BRIARE", "libell_d_acheminement": "BRIARE", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45053"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b556fbc5b27cf0dddb5a565b6e382d8cfb16b4b6", "fields": {"nom_de_la_commune": "BUCY ST LIPHARD", "libell_d_acheminement": "BUCY ST LIPHARD", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45059"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b143d4411742d22710ae673abaa5b1f7ff3efe84", "fields": {"nom_de_la_commune": "LA BUSSIERE", "libell_d_acheminement": "LA BUSSIERE", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45060"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed568e358afe627529fdb7f3aacfb20e52b3a3ef", "fields": {"nom_de_la_commune": "LA CHAPELLE ONZERAIN", "libell_d_acheminement": "LA CHAPELLE ONZERAIN", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45074"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84e9ece29ec4039671c3d01bf4f332c5642da3d", "fields": {"nom_de_la_commune": "CHAPELON", "libell_d_acheminement": "CHAPELON", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45078"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975c35e8c1ea87abfb9350ea8c3ffe4025038965", "fields": {"nom_de_la_commune": "CHATENOY", "libell_d_acheminement": "CHATENOY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45084"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6757edc47964153e1e80047beb9c718c76fd6ee", "fields": {"nom_de_la_commune": "CHATILLON SUR LOIRE", "libell_d_acheminement": "CHATILLON SUR LOIRE", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45087"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b7b84ff4d169c4691179058dbe2a8ae8529327", "fields": {"nom_de_la_commune": "CHECY", "libell_d_acheminement": "CHECY", "code_postal": "45430", "coordonnees_gps": [47.8949996525, 2.04744187127], "code_commune_insee": "45089"}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fca85f725d41ca0575c8fc2724492da3324be66", "fields": {"nom_de_la_commune": "CLERY ST ANDRE", "libell_d_acheminement": "CLERY ST ANDRE", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45098"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915b9f3ef6af1660e260d7eb783cdcbd1a0ee3fe", "fields": {"nom_de_la_commune": "COINCES", "libell_d_acheminement": "COINCES", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45099"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcff7463c2688f22a7e424e02cf151995bee6136", "fields": {"nom_de_la_commune": "COMBREUX", "libell_d_acheminement": "COMBREUX", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45101"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9286f7bd2d8a55078b25d6a427d1476629049c6a", "fields": {"nom_de_la_commune": "CONFLANS SUR LOING", "libell_d_acheminement": "CONFLANS SUR LOING", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45102"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7e058d27353bd6c6f6febdd36e677ef6fed3a6", "fields": {"nom_de_la_commune": "CORQUILLEROY", "libell_d_acheminement": "CORQUILLEROY", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45104"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30ba53225a94b86123daa2d7e0c6d15dd689dc2", "fields": {"nom_de_la_commune": "COURCY AUX LOGES", "libell_d_acheminement": "COURCY AUX LOGES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45111"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb55d1255b21f6b8421ceffcdd8a037ec6904ed", "fields": {"nom_de_la_commune": "CRAVANT", "libell_d_acheminement": "CRAVANT", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45116"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65e7f2325d5433c46c73652b1ebe5c1c665c40e", "fields": {"nom_de_la_commune": "DESMONTS", "libell_d_acheminement": "DESMONTS", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45124"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c4c09f1c600fba69d77e15d7150ba967081431", "fields": {"nom_de_la_commune": "DIMANCHEVILLE", "libell_d_acheminement": "DIMANCHEVILLE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45125"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98eedd3e394a3230e42fa034d51e8376c4f3113", "fields": {"nom_de_la_commune": "LA FERTE ST AUBIN", "libell_d_acheminement": "LA FERTE ST AUBIN", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45146"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63675bafcd9fff0a0541803f888329d835cb02dc", "fields": {"nom_de_la_commune": "FREVILLE DU GATINAIS", "libell_d_acheminement": "FREVILLE DU GATINAIS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45150"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d917dd8afc8386d9ecdabba773af4b72cf849496", "fields": {"nom_de_la_commune": "GERMIGNY DES PRES", "libell_d_acheminement": "GERMIGNY DES PRES", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45153"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c11807de298a0198873e959c0e039c5a9c5757", "fields": {"nom_de_la_commune": "GIDY", "libell_d_acheminement": "GIDY", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45154"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568071dcdccabdc61b7c899a76b09a7d5ba767db", "fields": {"nom_de_la_commune": "GONDREVILLE", "libell_d_acheminement": "GONDREVILLE", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45158"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2822de4ac193654ac31c28754adfe7235bb9b1bd", "fields": {"nom_de_la_commune": "GRISELLES", "libell_d_acheminement": "GRISELLES", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45161"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab91a4a1b9e22a356775d17a404b6c35837466df", "fields": {"nom_de_la_commune": "GUIGNEVILLE", "libell_d_acheminement": "GUIGNEVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45162"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f99e9ac7aaff352d87f7ff6f50a73155ce2d73", "fields": {"nom_de_la_commune": "HUETRE", "libell_d_acheminement": "HUETRE", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45166"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5b03b67cd2661960f7ddeaa7a6c20da6aab319", "fields": {"nom_de_la_commune": "HUISSEAU SUR MAUVES", "libell_d_acheminement": "HUISSEAU SUR MAUVES", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45167"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5c7f3165d3c8684679b01a0d6a5fabefc045fc", "fields": {"nom_de_la_commune": "INTVILLE LA GUETARD", "libell_d_acheminement": "INTVILLE LA GUETARD", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45170"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31fbee9b7d60a1d28dbfb734ccd23da06c7e0ac2", "fields": {"nom_de_la_commune": "LION EN SULLIAS", "libell_d_acheminement": "LION EN SULLIAS", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45184"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8a17f8bc5025ca61ceac0856dc587178320789", "fields": {"nom_de_la_commune": "VICQ SUR NAHON", "libell_d_acheminement": "VICQ SUR NAHON", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36237"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c63b2a227c0191764d5c004f7d74c0e82ab91eda", "fields": {"nom_de_la_commune": "VILLEGOUIN", "libell_d_acheminement": "VILLEGOUIN", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36243"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a2147ef9176d2020d85bfb66ad5ebf4a644f1d", "fields": {"nom_de_la_commune": "ABILLY", "libell_d_acheminement": "ABILLY", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37001"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb79feee5ab9d3b545234baa7fcd2db6f8dcc906", "fields": {"nom_de_la_commune": "AMBILLOU", "libell_d_acheminement": "AMBILLOU", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37002"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0484ec1c03bd6b284759a6ffdafe25db2a55ef87", "fields": {"nom_de_la_commune": "AMBOISE", "libell_d_acheminement": "AMBOISE", "code_postal": "37400", "coordonnees_gps": [47.3913535441, 0.985132271005], "code_commune_insee": "37003"}, "geometry": {"type": "Point", "coordinates": [0.985132271005, 47.3913535441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef953bbfa1bc64caea0d667883f6a8cf33b7867", "fields": {"nom_de_la_commune": "ANTOGNY LE TILLAC", "libell_d_acheminement": "ANTOGNY LE TILLAC", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37005"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c921a02699ce18ef9104d9cf426e124ae166f16", "fields": {"nom_de_la_commune": "AUZOUER EN TOURAINE", "libell_d_acheminement": "AUZOUER EN TOURAINE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37010"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73f446c9680401b0f3382f1a3f1e78fe65e762e", "fields": {"nom_de_la_commune": "BEAULIEU LES LOCHES", "libell_d_acheminement": "BEAULIEU LES LOCHES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37020"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6170a5324b822f7099d072df473e710a00b3162", "fields": {"nom_de_la_commune": "BEAUMONT EN VERON", "libell_d_acheminement": "BEAUMONT EN VERON", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37022"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e41012667af348c37e5d53351e815d3a7125242", "fields": {"nom_de_la_commune": "BEAUMONT VILLAGE", "libell_d_acheminement": "BEAUMONT VILLAGE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37023"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80002186acf460e8617845d6f9643cb44b79d25d", "fields": {"nom_de_la_commune": "BLERE", "libell_d_acheminement": "BLERE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37027"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbcf81fefed0917e9b303e4e485aa92cf62088f", "fields": {"nom_de_la_commune": "LE BOULAY", "libell_d_acheminement": "LE BOULAY", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37030"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe362da730f8df617e5caa2b5735253fd8178c7", "fields": {"nom_de_la_commune": "BOURGUEIL", "libell_d_acheminement": "BOURGUEIL", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37031"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f858ac5c4f64ef95d7afeb59afbfb377da6b98db", "fields": {"nom_de_la_commune": "BRECHES", "libell_d_acheminement": "BRECHES", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37037"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43930039585370f2b45ed8151e8500344fe2e973", "fields": {"nom_de_la_commune": "BUEIL EN TOURAINE", "libell_d_acheminement": "BUEIL EN TOURAINE", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37041"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b553c705858100b1e2ba401a1ad2dad7690be4d", "fields": {"nom_de_la_commune": "CERELLES", "libell_d_acheminement": "CERELLES", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37047"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50565ddff7ec4000fdc2586ba579e7ce8131f90a", "fields": {"nom_de_la_commune": "CHARENTILLY", "libell_d_acheminement": "CHARENTILLY", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37059"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13429446832153c20688aec0676f8d534b2a436a", "fields": {"nom_de_la_commune": "CHATEAU RENAULT", "libell_d_acheminement": "CHATEAU RENAULT", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37063"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d7d558d1a6f9be0cbbb293e0c7e495eaa475f2c", "fields": {"nom_de_la_commune": "CHOUZE SUR LOIRE", "libell_d_acheminement": "CHOUZE SUR LOIRE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37074"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30fbcc7ed99a5b20862f61cb35af78d951316390", "fields": {"nom_de_la_commune": "CIGOGNE", "libell_d_acheminement": "CIGOGNE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37075"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e55a34fe9963355398777cf47622608f3635d5f", "fields": {"nom_de_la_commune": "CIVRAY SUR ESVES", "libell_d_acheminement": "CIVRAY SUR ESVES", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37080"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764fd529d0abf5997fdfe112cb012d6582a2ff06", "fields": {"nom_de_la_commune": "COUESMES", "libell_d_acheminement": "COUESMES", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37084"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a2c24d27d359f7914cc4c3ade793f00db2220d", "fields": {"nom_de_la_commune": "CRAVANT LES COTEAUX", "libell_d_acheminement": "CRAVANT LES COTEAUX", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37089"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f585439f913521d5e6aaed9f3ab61afc1756711", "fields": {"nom_de_la_commune": "DRACHE", "libell_d_acheminement": "DRACHE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37098"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca274effe04d16d470cb5fa4497baa0cd22289dd", "fields": {"nom_de_la_commune": "DRUYE", "libell_d_acheminement": "DRUYE", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37099"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce74709cc5fdec56b868cb124222c56b4bef503", "fields": {"nom_de_la_commune": "EPEIGNE SUR DEME", "libell_d_acheminement": "EPEIGNE SUR DEME", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37101"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5761760b17901b0e6149fcdaae2941e3d7055b9", "fields": {"nom_de_la_commune": "ESVES LE MOUTIER", "libell_d_acheminement": "ESVES LE MOUTIER", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37103"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0215bc6c6f307b24b8928938423f191ffeab2a2b", "fields": {"nom_de_la_commune": "GENILLE", "libell_d_acheminement": "GENILLE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37111"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b85df2a4eefaa5e1355f1da933059db7115eb5", "fields": {"nom_de_la_commune": "LE GRAND PRESSIGNY", "libell_d_acheminement": "LE GRAND PRESSIGNY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37113"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3208ac5f0ae20e58d073aff8353fc9211ee4abc", "fields": {"nom_de_la_commune": "LE LIEGE", "libell_d_acheminement": "LE LIEGE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37127"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb80931521326374c366d4c77bf7520e261d9119", "fields": {"nom_de_la_commune": "LIGRE", "libell_d_acheminement": "LIGRE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37129"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dba787bb4eaecc41139463183853ee71656e147", "fields": {"nom_de_la_commune": "LIMERAY", "libell_d_acheminement": "LIMERAY", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37131"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47cff7e71f42a127df368e502db6ca299ab63935", "fields": {"nom_de_la_commune": "LOUANS", "libell_d_acheminement": "LOUANS", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37134"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2c1a0cfa206eca535ea861befca1c2c495262b", "fields": {"nom_de_la_commune": "LOUESTAULT", "libell_d_acheminement": "LOUESTAULT", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37135"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f31278b0df59a15f2bbc2f94e9a5588267ed22", "fields": {"nom_de_la_commune": "LUZE", "libell_d_acheminement": "LUZE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37140"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c65978d3f814793de34bf09a027345f44309f3d", "fields": {"nom_de_la_commune": "MARCAY", "libell_d_acheminement": "MARCAY", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37144"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9c229ba726de7d1c964ea0fcf986ba43b4cbbdd", "fields": {"nom_de_la_commune": "MARRAY", "libell_d_acheminement": "MARRAY", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37149"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d924518262a418dc3ecd4ced4abb879c818c5d5", "fields": {"nom_de_la_commune": "MONNAIE", "libell_d_acheminement": "MONNAIE", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37153"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120d394730f0a93585b606ea2a5deb1dfe4bf251", "fields": {"nom_de_la_commune": "MONTREUIL EN TOURAINE", "libell_d_acheminement": "MONTREUIL EN TOURAINE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37158"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79270011e3452cae09841a2522065f0415eeebae", "fields": {"nom_de_la_commune": "MOUZAY", "libell_d_acheminement": "MOUZAY", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37162"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478c7d27386e2230111fdeb7cae8072285afea9c", "fields": {"nom_de_la_commune": "NEUILLY LE BRIGNON", "libell_d_acheminement": "NEUILLY LE BRIGNON", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37168"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da67168c3cee88be11ad806b78c3f53759deefc1", "fields": {"nom_de_la_commune": "PERRUSSON", "libell_d_acheminement": "PERRUSSON", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37183"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d008a363bb713881fefd81ef1d98cbc00f3bed", "fields": {"nom_de_la_commune": "LE PETIT PRESSIGNY", "libell_d_acheminement": "LE PETIT PRESSIGNY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37184"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfd8b410ae2ab6d6c75f0610ca728545c974c9d", "fields": {"nom_de_la_commune": "PREUILLY SUR CLAISE", "libell_d_acheminement": "PREUILLY SUR CLAISE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37189"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa50517a7e34719f73910da10b8ddb205b3dd8a8", "fields": {"nom_de_la_commune": "RAZINES", "libell_d_acheminement": "RAZINES", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37191"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58462466bed5abce7f3755be7ddefd6ef032768", "fields": {"nom_de_la_commune": "RILLE", "libell_d_acheminement": "RILLE", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37198"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5821ce31464a074673675fac4aed5dc1734ef9e3", "fields": {"nom_de_la_commune": "RIVARENNES", "libell_d_acheminement": "RIVARENNES", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37200"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5116cdf37f4618e6ccba96e17ed1d6835cff34cb", "fields": {"nom_de_la_commune": "LA ROCHE CLERMAULT", "libell_d_acheminement": "LA ROCHE CLERMAULT", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37202"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2073b99974ad7bdfd7f7a3c2f2e3f36edd0c2315", "fields": {"nom_de_la_commune": "STE CATHERINE DE FIERBOIS", "libell_d_acheminement": "STE CATHERINE DE FIERBOIS", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37212"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4e8220b05b0474b3fcf56ed7c8b1cce8237613", "fields": {"nom_de_la_commune": "ST EPAIN", "libell_d_acheminement": "ST EPAIN", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37216"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08c2beaf8cd479f885f278232879b42fad04079", "fields": {"nom_de_la_commune": "ST JEAN ST GERMAIN", "libell_d_acheminement": "ST JEAN ST GERMAIN", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37222"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5683467465ec8993f1b22247a1affb6150976a0e", "fields": {"nom_de_la_commune": "ST LAURENT EN GATINES", "libell_d_acheminement": "ST LAURENT EN GATINES", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37224"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea67b0839ef774b65213fb1f3408d54c61303f", "fields": {"nom_de_la_commune": "ST PATRICE", "libell_d_acheminement": "ST PATRICE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37232"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2777b8aef31a21e2995dc7d10d7895fdba4032", "fields": {"nom_de_la_commune": "ST QUENTIN SUR INDROIS", "libell_d_acheminement": "ST QUENTIN SUR INDROIS", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37234"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df9c4ff12911dc5c017613a62cc2f0118d05999", "fields": {"nom_de_la_commune": "SAVIGNE SUR LATHAN", "libell_d_acheminement": "SAVIGNE SUR LATHAN", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37241"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ba515d87c55a1df63fb35498c9b49d4b4504e9", "fields": {"nom_de_la_commune": "SAVONNIERES", "libell_d_acheminement": "SAVONNIERES", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37243"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dec958d0daba9ce9227687a3605cd45fed9ca3e", "fields": {"nom_de_la_commune": "SENNEVIERES", "libell_d_acheminement": "SENNEVIERES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37246"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841b9fdc28248274cfd0bc084fe5f7f1ec24bea3", "fields": {"nom_de_la_commune": "SONZAY", "libell_d_acheminement": "SONZAY", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37249"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b88100c002fc77c3002f5e0faaa09a39d29434", "fields": {"nom_de_la_commune": "THIZAY", "libell_d_acheminement": "THIZAY", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37258"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b378df4f8f81538448d903d76bfd629b0f21df64", "fields": {"nom_de_la_commune": "VILLEDOMAIN", "libell_d_acheminement": "VILLEDOMAIN", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37275"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1243090905ae23aba7e3ce297a0e5cccbbfd7158", "fields": {"nom_de_la_commune": "YZEURES SUR CREUSE", "libell_d_acheminement": "YZEURES SUR CREUSE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37282"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa371e257407f6bc2f1b37e37388423b4e9337b1", "fields": {"nom_de_la_commune": "LES ABRETS EN DAUPHINE", "libell_d_acheminement": "LES ABRETS EN DAUPHINE", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38001"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8620a20c140c4a11590d5840ff5a5d70c6b6a42", "fields": {"code_postal": "38490", "code_commune_insee": "38001", "libell_d_acheminement": "LES ABRETS EN DAUPHINE", "ligne_5": "FITILIEU", "nom_de_la_commune": "LES ABRETS EN DAUPHINE", "coordonnees_gps": [45.5535362276, 5.57026096515]}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0405d8008bba3fad7bf2b08bc925adc556d71f62", "fields": {"code_postal": "38490", "code_commune_insee": "38001", "libell_d_acheminement": "LES ABRETS EN DAUPHINE", "ligne_5": "LA BATIE DIVISIN", "nom_de_la_commune": "LES ABRETS EN DAUPHINE", "coordonnees_gps": [45.5535362276, 5.57026096515]}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efacaf030dc2b9d47b70a23645933c3556d083eb", "fields": {"code_postal": "38190", "code_commune_insee": "38002", "libell_d_acheminement": "LES ADRETS", "ligne_5": "PRAPOUTEL", "nom_de_la_commune": "LES ADRETS", "coordonnees_gps": [45.2307367976, 5.94776788691]}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21ad1a42ec7cc848eac211cc68f5e182bb413b6", "fields": {"nom_de_la_commune": "APPRIEU", "libell_d_acheminement": "APPRIEU", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38013"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33975038222647d09aacf80d7b6655f18166b9fe", "fields": {"nom_de_la_commune": "ARZAY", "libell_d_acheminement": "ARZAY", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38016"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647b6adc5e238ff99364c70e8435ed30c709b46f", "fields": {"nom_de_la_commune": "ASSIEU", "libell_d_acheminement": "ASSIEU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38017"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df0387add4b659bc38402b8594bf6b84be77378", "fields": {"nom_de_la_commune": "AUBERIVES EN ROYANS", "libell_d_acheminement": "AUBERIVES EN ROYANS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38018"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d90b13a2ca4d817c95e945c8419747cff3ce3d1", "fields": {"nom_de_la_commune": "AUBERIVES SUR VAREZE", "libell_d_acheminement": "AUBERIVES SUR VAREZE", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38019"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75663e5faf7b4d5ad3bf4778b0c25183e2b66a12", "fields": {"nom_de_la_commune": "BALBINS", "libell_d_acheminement": "BALBINS", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38025"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9625baf5390725af859bf8f7a7f178a48b7cff3", "fields": {"nom_de_la_commune": "LA BALME LES GROTTES", "libell_d_acheminement": "LA BALME LES GROTTES", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38026"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df58cb54e7b5b79e09816c453e5b7fe3f3b05a2f", "fields": {"nom_de_la_commune": "LA BATIE MONTGASCON", "libell_d_acheminement": "LA BATIE MONTGASCON", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38029"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d244bae1463638e08f485145a7a2bc221a90da1", "fields": {"nom_de_la_commune": "BEAUFIN", "libell_d_acheminement": "BEAUFIN", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38031"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46bb4577c38bb84d2e177f111c22a86d9acde982", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38033"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da9801944f22064bff17f8752fa5035081d4bd9", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38038"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b146c76e566a65533bb12f6e0ad6f61e743eadf", "fields": {"nom_de_la_commune": "BERNIN", "libell_d_acheminement": "BERNIN", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38039"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f54d9de3e2cf784b9124b56c42b2eeb04016f8", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38040"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1cf64e7da453faf1b9f51131c398e37e77d7741", "fields": {"nom_de_la_commune": "BESSINS", "libell_d_acheminement": "BESSINS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38041"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2331f93008da87044843bb3da8646f582977025", "fields": {"code_postal": "38300", "code_commune_insee": "38053", "libell_d_acheminement": "BOURGOIN JALLIEU", "ligne_5": "JALLIEU", "nom_de_la_commune": "BOURGOIN JALLIEU", "coordonnees_gps": [45.5640393391, 5.29545357844]}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439cad5759e3c852158c6bdab627e1d8f8155e70", "fields": {"nom_de_la_commune": "CHABONS", "libell_d_acheminement": "CHABONS", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38065"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e2ce6c1de161b1304056a4c904ad154786be456", "fields": {"code_postal": "38460", "code_commune_insee": "38067", "libell_d_acheminement": "CHAMAGNIEU", "ligne_5": "MIANGES", "nom_de_la_commune": "CHAMAGNIEU", "coordonnees_gps": [45.7153023241, 5.2700142747]}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd7a4ba9997db149edffe7aa636ecb76081d7af", "fields": {"nom_de_la_commune": "CHANTELOUVE", "libell_d_acheminement": "CHANTELOUVE", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38073"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3259da5e0b9d55cbebcfd99f94989c693b3dc9ae", "fields": {"nom_de_la_commune": "CHAPAREILLAN", "libell_d_acheminement": "CHAPAREILLAN", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38075"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cb49ed7fde40d60357796a022869b2dff0027a", "fields": {"nom_de_la_commune": "LA CHAPELLE DE LA TOUR", "libell_d_acheminement": "LA CHAPELLE DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38076"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5b2918fb5b547f82e14b4d5da42f3c0f8c3c50", "fields": {"nom_de_la_commune": "CHARNECLES", "libell_d_acheminement": "CHARNECLES", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38084"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44179207030bcf1a6d47772078921f9076cbc13", "fields": {"nom_de_la_commune": "CHASSIGNIEU", "libell_d_acheminement": "CHASSIGNIEU", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38089"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e45dc998dac615485f0615a5b7be8b48b2d34c5f", "fields": {"nom_de_la_commune": "CHATELUS", "libell_d_acheminement": "CHATELUS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38092"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d6f5c423e921904b4b63bc2ddf0096a4a0cb84", "fields": {"nom_de_la_commune": "CLAIX", "libell_d_acheminement": "CLAIX", "code_postal": "38640", "coordonnees_gps": [45.1227129219, 5.6560033815], "code_commune_insee": "38111"}, "geometry": {"type": "Point", "coordinates": [5.6560033815, 45.1227129219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea98c6325bb0f86b215e05ec9d2eca4208512cd7", "fields": {"nom_de_la_commune": "CLELLES", "libell_d_acheminement": "CLELLES EN TRIEVES", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38113"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6363128aa54c32b382f91fc161059bc2eb8f1ee3", "fields": {"nom_de_la_commune": "COGNIN LES GORGES", "libell_d_acheminement": "COGNIN LES GORGES", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38117"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2297231b554e1346184f0064be56a76c80bfa286", "fields": {"nom_de_la_commune": "COLOMBE", "libell_d_acheminement": "COLOMBE", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38118"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd7df7a99b5910136b6e6043b82f89f671e88fa", "fields": {"nom_de_la_commune": "CORBELIN", "libell_d_acheminement": "CORBELIN", "code_postal": "38630", "coordonnees_gps": [45.6308900094, 5.56433388526], "code_commune_insee": "38124"}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "652f47bcb98c750d5ccc01159d9727f629eb7ad3", "fields": {"nom_de_la_commune": "LES COTES D AREY", "libell_d_acheminement": "LES COTES D AREY", "code_postal": "38138", "coordonnees_gps": [45.4566722537, 4.87975515015], "code_commune_insee": "38131"}, "geometry": {"type": "Point", "coordinates": [4.87975515015, 45.4566722537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a0d7334fcd8209ff705137a44880633060d8b6", "fields": {"nom_de_la_commune": "LES COTES DE CORPS", "libell_d_acheminement": "LES COTES DE CORPS", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38132"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c330498cd05f579ed2dae95f89a950d0e5f6549e", "fields": {"nom_de_la_commune": "COUBLEVIE", "libell_d_acheminement": "COUBLEVIE", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38133"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c18a0e04fb0ac3eb5a4de7b7dec976ffc7e4c3f", "fields": {"nom_de_la_commune": "CREMIEU", "libell_d_acheminement": "CREMIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38138"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8937eee7bf17571e0b1795d3807890c2fe91628", "fields": {"nom_de_la_commune": "CREYS MEPIEU", "libell_d_acheminement": "CREYS MEPIEU", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38139"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbc4384967fb55f05607e2e0be1731dbf912821", "fields": {"code_postal": "38510", "code_commune_insee": "38139", "libell_d_acheminement": "CREYS MEPIEU", "ligne_5": "PUSIGNIEU", "nom_de_la_commune": "CREYS MEPIEU", "coordonnees_gps": [45.7026691916, 5.45358290741]}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0c6d8bb6390e3cc8fffc5e26afaf1b59fdfbe76", "fields": {"nom_de_la_commune": "DOISSIN", "libell_d_acheminement": "DOISSIN", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38147"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4469262ce7d163899863e6ffa9fa6cd9d08b97", "fields": {"nom_de_la_commune": "FERRIERES ST MARY", "libell_d_acheminement": "FERRIERES ST MARY", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15069"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8189fc0b0ff67fa914b0286066c8a8a86b2e6833", "fields": {"nom_de_la_commune": "GIRGOLS", "libell_d_acheminement": "GIRGOLS", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15075"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e26c6583d3b95746cd6308221d2bd690393c0af", "fields": {"nom_de_la_commune": "GLENAT", "libell_d_acheminement": "GLENAT", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15076"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d349f3a224abc800a9a4eb77704b6b0ae06710b0", "fields": {"nom_de_la_commune": "GOURDIEGES", "libell_d_acheminement": "GOURDIEGES", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15077"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577eee1fe6d3337d0f1333ca51430eb6dc40603b", "fields": {"nom_de_la_commune": "JUNHAC", "libell_d_acheminement": "JUNHAC", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15082"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de355aac7ddccea8b8d24870212e7af02c55da2d", "fields": {"nom_de_la_commune": "LACAPELLE BARRES", "libell_d_acheminement": "LACAPELLE BARRES", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15086"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3714265d4df8aff87abad330e21b7450c5f8c3c", "fields": {"nom_de_la_commune": "LADINHAC", "libell_d_acheminement": "LADINHAC", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15089"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64d9e7fdaacfc1e1b28c82aea62a46605f2eca0", "fields": {"code_postal": "15270", "code_commune_insee": "15092", "libell_d_acheminement": "LANOBRE", "ligne_5": "GRANGES", "nom_de_la_commune": "LANOBRE", "coordonnees_gps": [45.4132624224, 2.59541322331]}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda8a1876a3c5093cae6cec74f49ca9529c9dfcc", "fields": {"nom_de_la_commune": "LAVEISSIERE", "libell_d_acheminement": "LAVEISSIERE", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15101"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d65fedc912f067a8cdbd8ac74148e3752aec98", "fields": {"nom_de_la_commune": "MANDAILLES ST JULIEN", "libell_d_acheminement": "MANDAILLES ST JULIEN", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15113"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063e694a36524ae43a7a834c7fe8a23f860a4461", "fields": {"nom_de_la_commune": "MARCENAT", "libell_d_acheminement": "MARCENAT", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15114"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "816a66f461c3010eea8ccf1f49b6c19c57827906", "fields": {"nom_de_la_commune": "MARCOLES", "libell_d_acheminement": "MARCOLES", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15117"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d1c63af64bf5cd8ed9aa22f46e961415628400", "fields": {"nom_de_la_commune": "MAURS", "libell_d_acheminement": "MAURS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15122"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc2fe9614473b6e39ca484ef8a7d198f08db0fd", "fields": {"nom_de_la_commune": "MEALLET", "libell_d_acheminement": "MEALLET", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15123"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bcd115caa0982d9c2f387c376c871a265d7c48", "fields": {"nom_de_la_commune": "MOLEDES", "libell_d_acheminement": "MOLEDES", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15126"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ffc1a9f605c1a1def0b7ea2ca81d49338824a7", "fields": {"nom_de_la_commune": "LE MONTEIL", "libell_d_acheminement": "LE MONTEIL", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15131"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90522a8de310fe42fc787ae6031e3f5e3c6f1a38", "fields": {"nom_de_la_commune": "OMPS", "libell_d_acheminement": "OMPS", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15144"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78196a8d7064dda602389cc2267a9ddddbec90f9", "fields": {"nom_de_la_commune": "PAILHEROLS", "libell_d_acheminement": "PAILHEROLS", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15146"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5025fd7889926aa6663a126d76c03ed8316682e7", "fields": {"nom_de_la_commune": "PAULHAC", "libell_d_acheminement": "PAULHAC", "code_postal": "15430", "coordonnees_gps": [45.0110291725, 2.89903675921], "code_commune_insee": "15148"}, "geometry": {"type": "Point", "coordinates": [2.89903675921, 45.0110291725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cad3edc7953e30d58043f6ad6196bbf07324084", "fields": {"nom_de_la_commune": "POLMINHAC", "libell_d_acheminement": "POLMINHAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15154"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c791c1ef622949c13b03ecb2de3a69b2e8f8f877", "fields": {"nom_de_la_commune": "PRADIERS", "libell_d_acheminement": "PRADIERS", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15155"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24897faf043bc67942728df8e70d3008de580368", "fields": {"nom_de_la_commune": "RIOM ES MONTAGNES", "libell_d_acheminement": "RIOM ES MONTAGNES", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15162"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64481ecf2e6676a2023f65a19677a428f4d7fa8b", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15180"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dd58a0a03488e644eac350889a43f69fd9ea8c", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15198"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39a80b11529491f4d017abc9da6f7a784c19690", "fields": {"nom_de_la_commune": "ST MARY LE PLAIN", "libell_d_acheminement": "ST MARY LE PLAIN", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15203"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a123de07e1759c2bfe0cbafa3f9fd32fa1244a", "fields": {"nom_de_la_commune": "ST PAUL DES LANDES", "libell_d_acheminement": "ST PAUL DES LANDES", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15204"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b051c59e1f04d2b3072fbd3246eb5ccd7fa2c0", "fields": {"nom_de_la_commune": "SANSAC DE MARMIESSE", "libell_d_acheminement": "SANSAC DE MARMIESSE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15221"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fd6fa96404f0dbb5292cbb43e971e9cac05abb", "fields": {"nom_de_la_commune": "SERIERS", "libell_d_acheminement": "SERIERS", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15227"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb469bddde41713ad00dc038ffcf320769f3e2b4", "fields": {"nom_de_la_commune": "SOURNIAC", "libell_d_acheminement": "SOURNIAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15230"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abf7a4bcd268af15629d9a4daafee7cf305282c", "fields": {"nom_de_la_commune": "VELZIC", "libell_d_acheminement": "VELZIC", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15252"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05099623b5569baa2f48f2b2c878ca33ab96aa58", "fields": {"nom_de_la_commune": "VEZAC", "libell_d_acheminement": "VEZAC", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15255"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdb2d69d6213bde474d74968b5c497481bba305", "fields": {"nom_de_la_commune": "VEZE", "libell_d_acheminement": "VEZE", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15256"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9508e99befcbf9ad43335fad80d06b774c4c6d25", "fields": {"nom_de_la_commune": "VIEILLESPESSE", "libell_d_acheminement": "VIEILLESPESSE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15259"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2963c7a03cdf16f33b811663ab74584998399513", "fields": {"nom_de_la_commune": "LE VIGEAN", "libell_d_acheminement": "LE VIGEAN", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15261"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b569a14751b2cc5b7a3c0e5280783590f8ee108", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15269"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8875f88050f4f51a9e001b1de692ba62148a5b34", "fields": {"nom_de_la_commune": "AIGNES ET PUYPEROUX", "libell_d_acheminement": "AIGNES ET PUYPEROUX", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16004"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11b4828c5b4fac13d397449e42ac7def90a2639", "fields": {"nom_de_la_commune": "AMBERNAC", "libell_d_acheminement": "AMBERNAC", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16009"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef5feae65cd0244a47b67d5dc45a5732f79f6d4", "fields": {"nom_de_la_commune": "ANGEAC CHAMPAGNE", "libell_d_acheminement": "ANGEAC CHAMPAGNE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16012"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5252fd7abbd5e5605209b79f827711027ebd3c20", "fields": {"nom_de_la_commune": "ANGEAC CHARENTE", "libell_d_acheminement": "ANGEAC CHARENTE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16013"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974f4e6d0addf88624f15306dcaea88469e97280", "fields": {"nom_de_la_commune": "AUNAC", "libell_d_acheminement": "AUNAC", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16023"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18005d3b8e7a75875d5dcb577b89bf0e8322ccdd", "fields": {"nom_de_la_commune": "AUSSAC VADALLE", "libell_d_acheminement": "AUSSAC VADALLE", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16024"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fceb54d58b214031b866c8e957f1b53faf0b5034", "fields": {"nom_de_la_commune": "BARBEZIEUX ST HILAIRE", "libell_d_acheminement": "BARBEZIEUX ST HILAIRE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16028"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67066bb31c050e91c3f608110e01b599191ef37f", "fields": {"nom_de_la_commune": "BECHERESSE", "libell_d_acheminement": "BECHERESSE", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16036"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0a7323a4a309aa173d71d0b1cabe6634bc72d3", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16042"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f34b8dc28533d2545e8ad5d4c3a10d6a368a622", "fields": {"nom_de_la_commune": "BLANZAC PORCHERESSE", "libell_d_acheminement": "BLANZAC PORCHERESSE", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16046"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf926a0cfe1a9d85a08d72a1a62087c88e67f9d", "fields": {"nom_de_la_commune": "CHABRAC", "libell_d_acheminement": "CHABRAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16071"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e27d1ea8b83064066cd7a54d82b57a88630402", "fields": {"nom_de_la_commune": "CHADURIE", "libell_d_acheminement": "CHADURIE", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16072"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c49a8fcbe6d2423c0423de65634de4fa9304cd", "fields": {"code_postal": "16210", "code_commune_insee": "16073", "libell_d_acheminement": "CHALAIS", "ligne_5": "STE MARIE", "nom_de_la_commune": "CHALAIS", "coordonnees_gps": [45.2719672367, 0.0511310562847]}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d5be760fa996cda662cb0130f368332e444ca3", "fields": {"nom_de_la_commune": "CHALLIGNAC", "libell_d_acheminement": "CHALLIGNAC", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16074"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb1e3bdc66f1494dd800d09bb5ac4eeedf986f2", "fields": {"nom_de_la_commune": "CHAMPAGNE VIGNY", "libell_d_acheminement": "CHAMPAGNE VIGNY", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16075"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80326c133e9029b41fca55dc1f0a1c6e1b5030e3", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16081"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc52972121a3303fa63b7f530559aa0d5cfd4e3", "fields": {"code_postal": "16320", "code_commune_insee": "16082", "libell_d_acheminement": "BOISNE LA TUDE", "ligne_5": "CHAVENAT", "nom_de_la_commune": "BOISNE LA TUDE", "coordonnees_gps": [45.4895091736, 0.297130161872]}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cddc37ebdd300d2e092e69cf00c5ff1832024c", "fields": {"nom_de_la_commune": "CHARRAS", "libell_d_acheminement": "CHARRAS", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16084"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8617241f1a3c6c879ee31a5953b55ada3e9a05", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR CHARENTE", "libell_d_acheminement": "CHATEAUNEUF SUR CHARENTE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16090"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bd53417ea940016e95b819917ba56f2cfaae57", "fields": {"nom_de_la_commune": "CHAZELLES", "libell_d_acheminement": "CHAZELLES", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16093"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71d857ba02746b279a8fbe4e72c73d2fd8b13bf", "fields": {"code_postal": "16370", "code_commune_insee": "16097", "libell_d_acheminement": "CHERVES RICHEMONT", "ligne_5": "RICHEMONT", "nom_de_la_commune": "CHERVES RICHEMONT", "coordonnees_gps": [45.7599366195, -0.346092589002]}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce6442c6022193f027a7c6a4ed230931bf9e3c5", "fields": {"nom_de_la_commune": "CHILLAC", "libell_d_acheminement": "CHILLAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16099"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f875c96658022614c4124a3a52971847915ac743", "fields": {"nom_de_la_commune": "COULONGES", "libell_d_acheminement": "COULONGES", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16108"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71326c4dd5b0ddb32df741d56c9e249fcf3e2a0b", "fields": {"nom_de_la_commune": "COURGEAC", "libell_d_acheminement": "COURGEAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16111"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49a13d1e945ab9d272811984022427d6ec02d21", "fields": {"nom_de_la_commune": "COUTURE", "libell_d_acheminement": "COUTURE", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16114"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d714b19560dc75c47d745bc2ba89972be4dabcf", "fields": {"code_postal": "16250", "code_commune_insee": "16115", "libell_d_acheminement": "CRESSAC ST GENIS", "ligne_5": "ST GENIS DE BLANZAC", "nom_de_la_commune": "CRESSAC ST GENIS", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ae0dfb414f841ce5fd9d4d18699fdf35ffd746", "fields": {"nom_de_la_commune": "CURAC", "libell_d_acheminement": "CURAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16117"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6954151f7d70c49a57e75f0e45b3ac154b878496", "fields": {"nom_de_la_commune": "DEVIAT", "libell_d_acheminement": "DEVIAT", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16118"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7ed2926dbfd668f52787afdeab7d80b49d12f1", "fields": {"nom_de_la_commune": "EDON", "libell_d_acheminement": "EDON", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16125"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309ad55fd885f193a747541f1b26a060a77a2a8f", "fields": {"nom_de_la_commune": "ETRIAC", "libell_d_acheminement": "ETRIAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16133"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fda3d0bd03f76d7b92e2c7416e1e5601d9a1d2", "fields": {"nom_de_la_commune": "GENSAC LA PALLUE", "libell_d_acheminement": "GENSAC LA PALLUE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16150"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e57050904b46baefdb403a2ff92e9c1863016cf", "fields": {"nom_de_la_commune": "GENTE", "libell_d_acheminement": "GENTE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16151"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2208f97f4a39fb988339c5385f1597abcb9f8e45", "fields": {"nom_de_la_commune": "LES GOURS", "libell_d_acheminement": "LES GOURS", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16155"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97229e10ff6b9bb99a53df01238c272ad4330120", "fields": {"nom_de_la_commune": "GOURVILLE", "libell_d_acheminement": "GOURVILLE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16156"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633c919374af7086e74c178ab0667d10083b65b9", "fields": {"nom_de_la_commune": "GUIZENGEARD", "libell_d_acheminement": "GUIZENGEARD", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16161"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99a76b71cf9a3e0f83d76d23b3ae0764eecee6", "fields": {"nom_de_la_commune": "JARNAC", "libell_d_acheminement": "JARNAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16167"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d0f216d08731991bce67a094c038d86e51b993", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "AUBEVILLE", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e5b2057c0e3fe1be50f4e1087b10477d22c044", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "PEREUIL", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafe9a6e31ae7aca52ded409beaecb6fceaffa28", "fields": {"nom_de_la_commune": "LONGRE", "libell_d_acheminement": "LONGRE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16190"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd2eba0f62d7eae1a0305944749d3e8a88d623e", "fields": {"code_postal": "16100", "code_commune_insee": "16193", "libell_d_acheminement": "LOUZAC ST ANDRE", "ligne_5": "ST ANDRE", "nom_de_la_commune": "LOUZAC ST ANDRE", "coordonnees_gps": [45.6930431054, -0.342281931836]}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc467007674e3148035e3ffb987dbbe494c06a0", "fields": {"nom_de_la_commune": "LUSSAC", "libell_d_acheminement": "LUSSAC", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16195"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cc744b76c0e884f6b60fe8222a1fb274fa2a5b", "fields": {"nom_de_la_commune": "MAINZAC", "libell_d_acheminement": "MAINZAC", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16203"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d81734a83d99aa798b0b2ea3b361bda015ef70c", "fields": {"nom_de_la_commune": "MANSLE", "libell_d_acheminement": "MANSLE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16206"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c167c61e9f3fde65357fa219b0d3b6b94bc08db2", "fields": {"nom_de_la_commune": "MARTHON", "libell_d_acheminement": "MARTHON", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16211"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568251e639871fd431086f19274970f728c234e2", "fields": {"nom_de_la_commune": "MAZIERES", "libell_d_acheminement": "MAZIERES", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16214"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8cdf28fb3f9d075d0631c5e82fa725ce6b26521", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16221"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a353371544d7236c54a649ca18c35ab5289792", "fields": {"nom_de_la_commune": "MONTEMBOEUF", "libell_d_acheminement": "MONTEMBOEUF", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16225"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f701f9a6d6fbd51fe0462b08d5459f0d60127c", "fields": {"nom_de_la_commune": "MONTROLLET", "libell_d_acheminement": "MONTROLLET", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16231"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8d1a17d43ef50fa758b8642a320d0e4f0b23b7", "fields": {"nom_de_la_commune": "MOUTON", "libell_d_acheminement": "MOUTON", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16237"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ba5cea8c331d35610639aa369844c650464866", "fields": {"nom_de_la_commune": "NABINAUD", "libell_d_acheminement": "NABINAUD", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16240"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77535cd37ab919774000d649600ce08805ce0a3", "fields": {"nom_de_la_commune": "NANCLARS", "libell_d_acheminement": "NANCLARS", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16241"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a647636242de3178705df96e373df3b55fe119", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "AIZECQ", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efdc5a9379c58265863d10bcaeebd05976ab21dd", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "MOUTARDON", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b0c0ff31c141a1d2ebc65a6e2447f51862464a", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "POUGNE", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca9144e4cf579158d72b627b0e5800c825908a5", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "ST GERVAIS", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84d1cd99e830e80f43d38e524717d6051beac19", "fields": {"nom_de_la_commune": "NERSAC", "libell_d_acheminement": "NERSAC", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16244"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52259284cc593bd543ef06cc38a9a81707efab93", "fields": {"nom_de_la_commune": "NONAC", "libell_d_acheminement": "NONAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16246"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46af9d4be4f6642e2f4da072f777a677fbb97177", "fields": {"nom_de_la_commune": "PRANZAC", "libell_d_acheminement": "PRANZAC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16269"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e523887ed711dbce3a18331945c71acc1a3ee7ba", "fields": {"nom_de_la_commune": "PUYMOYEN", "libell_d_acheminement": "PUYMOYEN", "code_postal": "16400", "coordonnees_gps": [45.6075102934, 0.129005095086], "code_commune_insee": "16271"}, "geometry": {"type": "Point", "coordinates": [0.129005095086, 45.6075102934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1587f093790d02573d61be411028cc376f581cae", "fields": {"nom_de_la_commune": "RAIX", "libell_d_acheminement": "RAIX", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16273"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038830a6dc2ac8cdf258203f6f0f776d5d8632b6", "fields": {"nom_de_la_commune": "REIGNAC", "libell_d_acheminement": "REIGNAC", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16276"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53055cad100de09e0dccf20d1637df0a2e6a2ee4", "fields": {"code_postal": "16440", "code_commune_insee": "16287", "libell_d_acheminement": "ROULLET ST ESTEPHE", "ligne_5": "ST ESTEPHE", "nom_de_la_commune": "ROULLET ST ESTEPHE", "coordonnees_gps": [45.5763660352, 0.064435228401]}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec262952c1eac7b38e0af086eb391c0be029fc0", "fields": {"nom_de_la_commune": "ST AMANT DE MONTMOREAU", "libell_d_acheminement": "ST AMANT DE MONTMOREAU", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16294"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9d4c115fce3c0526e5ce87f5683e73068fcf26", "fields": {"nom_de_la_commune": "ST AMANT DE BOIXE", "libell_d_acheminement": "ST AMANT DE BOIXE", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16295"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3914504cc7371d2abd9e9cf05279fc81b0243a6", "fields": {"nom_de_la_commune": "ST AMANT DE NOUERE", "libell_d_acheminement": "ST AMANT DE NOUERE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16298"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94e1ed9a3805afdd4b4abeee6c6e08aa0399c83f", "fields": {"nom_de_la_commune": "DOMFRONT EN CHAMPAGNE", "libell_d_acheminement": "DOMFRONT EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72119"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a220f16051052a241cbb230a12c79eaa5de27076", "fields": {"nom_de_la_commune": "DUNEAU", "libell_d_acheminement": "DUNEAU", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72122"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f9436b11c4166fab7d7f6f4e576cc35c50936c", "fields": {"nom_de_la_commune": "DUREIL", "libell_d_acheminement": "DUREIL", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72123"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b72629d1c68f2d9ec7de220ceba257f899024c3", "fields": {"nom_de_la_commune": "ECOMMOY", "libell_d_acheminement": "ECOMMOY", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72124"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ad74f89a214b5dcef218b257cd90b95f9ea577", "fields": {"nom_de_la_commune": "EPINEU LE CHEVREUIL", "libell_d_acheminement": "EPINEU LE CHEVREUIL", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72126"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ef9f7579227b0fc91499c2451224fcd79284d0", "fields": {"nom_de_la_commune": "LA FONTAINE ST MARTIN", "libell_d_acheminement": "LA FONTAINE ST MARTIN", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72135"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a7f1ac9f3066ee5633cf31b6b9f8246593d0c3", "fields": {"nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72137"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273892920729fe7cbfeb7c5a8cf1b16f506cc765", "fields": {"nom_de_la_commune": "FYE", "libell_d_acheminement": "FYE", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72139"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6057f22de2088b5954c43713eff37b8fbf85f0", "fields": {"nom_de_la_commune": "GESNES LE GANDELIN", "libell_d_acheminement": "GESNES LE GANDELIN", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72141"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b423a9d2c670c1c4b14446579d8dfc64552561a4", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72142"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a2c5a581e173209573ed4a2f1eea32e7565009", "fields": {"nom_de_la_commune": "LE GRAND LUCE", "libell_d_acheminement": "LE GRAND LUCE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72143"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd3145bf9fc2f9c66d89f307bf36a0e97791233", "fields": {"nom_de_la_commune": "GREEZ SUR ROC", "libell_d_acheminement": "GREEZ SUR ROC", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72144"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecebe8be7224dac7695be7b09e7e80ccb057acd", "fields": {"nom_de_la_commune": "JAUZE", "libell_d_acheminement": "JAUZE", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72148"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94eb4144a386b0e0a75d5d3b16dfdb0cc8e0e48e", "fields": {"nom_de_la_commune": "LAVARE", "libell_d_acheminement": "LAVARE", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72158"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15f26485cdb39a2d181d7359865d5da4f0067427", "fields": {"nom_de_la_commune": "LOMBRON", "libell_d_acheminement": "LOMBRON", "code_postal": "72450", "coordonnees_gps": [48.0737249038, 0.408649166982], "code_commune_insee": "72165"}, "geometry": {"type": "Point", "coordinates": [0.408649166982, 48.0737249038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa94f699b1d86618a494b4a8803a523610dab81", "fields": {"nom_de_la_commune": "LOUPLANDE", "libell_d_acheminement": "LOUPLANDE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72169"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e8c3eb1400b6e6c050e76cc8a39167d26ff8c7", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72170"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77715dc32350f392b557861ac4a57bc0acf8014f", "fields": {"nom_de_la_commune": "LUCE SOUS BALLON", "libell_d_acheminement": "LUCE SOUS BALLON", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72174"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad04157bd13782bbaf2b4084860a17955ef37b7c", "fields": {"nom_de_la_commune": "LUCHE PRINGE", "libell_d_acheminement": "LUCHE PRINGE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72175"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8667e87281b6e40f7bf13b2c615684bb1de6c6c2", "fields": {"nom_de_la_commune": "MAISONCELLES", "libell_d_acheminement": "MAISONCELLES", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72178"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d55bbd1600afd4bf760a31a425a267adc88a5764", "fields": {"nom_de_la_commune": "LE MANS", "libell_d_acheminement": "LE MANS", "code_postal": "72000", "coordonnees_gps": [47.9887754636, 0.199888551607], "code_commune_insee": "72181"}, "geometry": {"type": "Point", "coordinates": [0.199888551607, 47.9887754636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b681afe826ba541f9e433523722b583eb218d9cc", "fields": {"nom_de_la_commune": "LE MANS", "libell_d_acheminement": "LE MANS", "code_postal": "72100", "coordonnees_gps": [47.9887754636, 0.199888551607], "code_commune_insee": "72181"}, "geometry": {"type": "Point", "coordinates": [0.199888551607, 47.9887754636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c2d24605d73beb2d06c2ac1d4aa59353adc9c2", "fields": {"nom_de_la_commune": "MANSIGNE", "libell_d_acheminement": "MANSIGNE", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72182"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1359b1cdd4e4ed93daee858bb69c4fa3caf7b6d3", "fields": {"nom_de_la_commune": "LES MEES", "libell_d_acheminement": "LES MEES", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72192"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e9cd5330faa9d33652473869bb26c1c826347d", "fields": {"code_postal": "72170", "code_commune_insee": "72199", "libell_d_acheminement": "MOITRON SUR SARTHE", "ligne_5": "LE GUE LIAN", "nom_de_la_commune": "MOITRON SUR SARTHE", "coordonnees_gps": [48.2253463465, 0.101974338988]}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6b1851d1c629de187d57af7da96ff16c94f8d2", "fields": {"nom_de_la_commune": "MONCE EN SAOSNOIS", "libell_d_acheminement": "MONCE EN SAOSNOIS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72201"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ff6d02a4d5ac3a61df29a090b3757c2c411979", "fields": {"nom_de_la_commune": "MONTAILLE", "libell_d_acheminement": "MONTAILLE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72204"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1858caa1482aff2e0e24f6cb16f5302a5873ff43", "fields": {"nom_de_la_commune": "MONT ST JEAN", "libell_d_acheminement": "MONT ST JEAN", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72211"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307dbd32199368c2dd26842980ae0dc88acbf41f", "fields": {"nom_de_la_commune": "MULSANNE", "libell_d_acheminement": "MULSANNE", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72213"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc54ea6561eac8cac86ba0765a97b958fef4cef0", "fields": {"nom_de_la_commune": "NEUFCHATEL EN SAOSNOIS", "libell_d_acheminement": "NEUFCHATEL EN SAOSNOIS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72215"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "546f3e093e16000c7156fe8958f624c76b6d1be1", "fields": {"nom_de_la_commune": "NUILLE LE JALAIS", "libell_d_acheminement": "NUILLE LE JALAIS", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72224"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2659ef0380ece94d8a2b81b1448911ed089cac", "fields": {"nom_de_la_commune": "PARCE SUR SARTHE", "libell_d_acheminement": "PARCE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72228"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d2b727dcad86e02275ea5d14777dd14a2e321e", "fields": {"nom_de_la_commune": "PARENNES", "libell_d_acheminement": "PARENNES", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72229"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bb0db6c72a8592f60b06e7e43d93f125f007d7", "fields": {"nom_de_la_commune": "PEZE LE ROBERT", "libell_d_acheminement": "PEZE LE ROBERT", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72234"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5963cf94aab72fd2f7cf5920497c35863295719f", "fields": {"nom_de_la_commune": "POILLE SUR VEGRE", "libell_d_acheminement": "POILLE SUR VEGRE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72239"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351b43cfa6439f5879d830ba4a9aba123889b241", "fields": {"nom_de_la_commune": "PONCE SUR LE LOIR", "libell_d_acheminement": "PONCE SUR LE LOIR", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72240"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff4246f846fb7e2e8b8b7fa6efa6e6d3feee3dd", "fields": {"nom_de_la_commune": "PONTVALLAIN", "libell_d_acheminement": "PONTVALLAIN", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72243"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff81bef1e316ad1e467f10f3035675ae9106360e", "fields": {"nom_de_la_commune": "PRUILLE L EGUILLE", "libell_d_acheminement": "PRUILLE L EGUILLE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72248"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74481237eb01b19243abba54380da5a7cb6f7dcb", "fields": {"nom_de_la_commune": "LA QUINTE", "libell_d_acheminement": "LA QUINTE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72249"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8196a4fb8ccc5c6d9a0ed35b932eb4a0bf38d1eb", "fields": {"nom_de_la_commune": "REQUEIL", "libell_d_acheminement": "REQUEIL", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72252"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bb57b4e3ea6ded6dfc7453460070c9ab9dff97", "fields": {"nom_de_la_commune": "RUILLE SUR LOIR", "libell_d_acheminement": "RUILLE SUR LOIR", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72262"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d13f216e0a8e2b68de57d2140c3a1133ba30f90", "fields": {"nom_de_la_commune": "SABLE SUR SARTHE", "libell_d_acheminement": "SABLE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72264"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2944e068be0bde8156f380c8618b43f9e36be1", "fields": {"nom_de_la_commune": "ST CALEZ EN SAOSNOIS", "libell_d_acheminement": "ST CALEZ EN SAOSNOIS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72270"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ef2c570655c1e1550380a28bf77c6c0bb5b872", "fields": {"nom_de_la_commune": "ST GEORGES DE LA COUEE", "libell_d_acheminement": "ST GEORGES DE LA COUEE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72279"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f21d03839ffe6b4e81d94575139b87fc0baf3926", "fields": {"nom_de_la_commune": "ST GEORGES LE GAULTIER", "libell_d_acheminement": "ST GEORGES LE GAULTIER", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72282"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea46e7e94bd0896fce7f62273eb942c107137cc8", "fields": {"code_postal": "72130", "code_commune_insee": "72284", "libell_d_acheminement": "ST GERMAIN SUR SARTHE", "ligne_5": "LA HUTTE", "nom_de_la_commune": "ST GERMAIN SUR SARTHE", "coordonnees_gps": [48.309288903, -0.0220228837082]}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18698e7247770b350a2980b58e29d74134864004", "fields": {"nom_de_la_commune": "ST JEAN DU BOIS", "libell_d_acheminement": "ST JEAN DU BOIS", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72293"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f583bec06e08aaeac5e321582f17dad9fd1d3c0a", "fields": {"nom_de_la_commune": "STE OSMANE", "libell_d_acheminement": "STE OSMANE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72304"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b023ba790dc61b38598072d75e7a7547e7e54a", "fields": {"nom_de_la_commune": "ST PAUL LE GAULTIER", "libell_d_acheminement": "ST PAUL LE GAULTIER", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72309"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acaf284080a01384b8cecd92d76608e0231a8142", "fields": {"nom_de_la_commune": "ST REMY DE SILLE", "libell_d_acheminement": "ST REMY DE SILLE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72315"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797699848563655a7904281b837e51a1342c4e60", "fields": {"nom_de_la_commune": "STE SABINE SUR LONGEVE", "libell_d_acheminement": "STE SABINE SUR LONGEVE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72319"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf3ce99b109c025d170c28f1e17b7c4e3ada4b81", "fields": {"nom_de_la_commune": "SEGRIE", "libell_d_acheminement": "SEGRIE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72332"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "767bb1e6c3c7701daa21da5c8022d0b15694a9c4", "fields": {"nom_de_la_commune": "SOULITRE", "libell_d_acheminement": "SOULITRE", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72341"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6858db11fda9de68fba50987b1ee67b96167d71d", "fields": {"nom_de_la_commune": "TELOCHE", "libell_d_acheminement": "TELOCHE", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72350"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad22c7091344d26270eb06b1493234a3f8a4ebdb", "fields": {"nom_de_la_commune": "TERREHAULT", "libell_d_acheminement": "TERREHAULT", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72352"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da76a72d3d857a94d85aca607d6724a31d6882a", "fields": {"nom_de_la_commune": "THOIRE SUR DINAN", "libell_d_acheminement": "THOIRE SUR DINAN", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72356"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1093375a77eac4b6dfc89f445979e437e0dc32", "fields": {"code_postal": "72160", "code_commune_insee": "72363", "libell_d_acheminement": "TUFFE VAL DE LA CHERONNE", "ligne_5": "ST HILAIRE LE LIERRU", "nom_de_la_commune": "TUFFE VAL DE LA CHERONNE", "coordonnees_gps": [48.0815343564, 0.508839517468]}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831277c1c5620c0c8d5e74bd494b32d140321bf4", "fields": {"nom_de_la_commune": "VALENNES", "libell_d_acheminement": "VALENNES", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72366"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f7cef3de15e1bf618b7d432335d251e45b14ee", "fields": {"nom_de_la_commune": "VALLON SUR GEE", "libell_d_acheminement": "VALLON SUR GEE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72367"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a0f1115879fbc924e5febb93ad5f875ca70050", "fields": {"nom_de_la_commune": "VANCE", "libell_d_acheminement": "VANCE", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72368"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d86238ff4967bab066c66025e37a2a82bf2b4b5", "fields": {"nom_de_la_commune": "VERNIE", "libell_d_acheminement": "VERNIE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72370"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7745e992ae5031520f1d830ab7db8c2167cfcf07", "fields": {"nom_de_la_commune": "VILLAINES LA GONAIS", "libell_d_acheminement": "VILLAINES LA GONAIS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72375"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d2ce71db11e18eccaedac71b82f17692bc315e", "fields": {"nom_de_la_commune": "VOIVRES LES LE MANS", "libell_d_acheminement": "VOIVRES LES LE MANS", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72381"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d25c8510d827ff0b3a35e79674fda2db5fa5b6", "fields": {"nom_de_la_commune": "YVRE LE POLIN", "libell_d_acheminement": "YVRE LE POLIN", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72385"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f297db918f276a632590229605f70abf5e6181", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "TESSENS", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73207a201f482f62d859bfdb388bd23740662631", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "EPERSY", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd3b32838181278972f90e245b861ca3f983ecb", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ST GIROD", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2125c752d9c63711c8efb0395ca974bbf25c52", "fields": {"nom_de_la_commune": "ARBIN", "libell_d_acheminement": "ARBIN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73018"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962f5bf350460fd263924ee61366ca2a10a5b213", "fields": {"nom_de_la_commune": "ATTIGNAT ONCIN", "libell_d_acheminement": "ATTIGNAT ONCIN", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73022"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47490cddb5601ec7af6f9fe0c4fc1d7d4653a902", "fields": {"nom_de_la_commune": "BARBERAZ", "libell_d_acheminement": "BARBERAZ", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73029"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd906f5322a09cdbd560d5d21d11cada1c63a81", "fields": {"nom_de_la_commune": "BONNEVAL", "libell_d_acheminement": "BONNEVAL", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73046"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0594b2165238ee32c604e8d37e299aabf45a50", "fields": {"nom_de_la_commune": "BONNEVAL SUR ARC", "libell_d_acheminement": "BONNEVAL SUR ARC", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73047"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ceb72b6ae97d098dde4a24676e0998108ae5606", "fields": {"code_postal": "73700", "code_commune_insee": "73054", "libell_d_acheminement": "BOURG ST MAURICE", "ligne_5": "LES ARCS", "nom_de_la_commune": "BOURG ST MAURICE", "coordonnees_gps": [45.6553139344, 6.78435107537]}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95ff520a385c08313159dc4ed8fbb8cb3930487", "fields": {"nom_de_la_commune": "BOZEL", "libell_d_acheminement": "BOZEL", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73055"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba51653bab1dfe19af69d225d28e51280086513", "fields": {"nom_de_la_commune": "LA CHAMBRE", "libell_d_acheminement": "LA CHAMBRE", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73067"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25abbdd69d664e679b9de9eef8900d824fa53c03", "fields": {"nom_de_la_commune": "CHAMOUX SUR GELON", "libell_d_acheminement": "CHAMOUX SUR GELON", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73069"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab217fce5e3b528005d71dc11158a1c3c0b37e9a", "fields": {"nom_de_la_commune": "CHAMPAGNY EN VANOISE", "libell_d_acheminement": "CHAMPAGNY EN VANOISE", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73071"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69dad0a18d42a626307ece06f99429e2b2e37500", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73079"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac96cf7d99b416461390dd0530068982023c6a2d", "fields": {"nom_de_la_commune": "CLERY", "libell_d_acheminement": "CLERY", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73086"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0696ee53d2245302f6f544cd9d92a6c0fe420471", "fields": {"nom_de_la_commune": "COGNIN", "libell_d_acheminement": "COGNIN", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73087"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e91c7fd0c3bb036b3191b9b2322bc6381658631", "fields": {"nom_de_la_commune": "CONJUX", "libell_d_acheminement": "CONJUX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73091"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973d392e07caf790389f4e2bceb47a0a3e8ef95c", "fields": {"nom_de_la_commune": "DETRIER", "libell_d_acheminement": "DETRIER", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73099"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d68fbdce827109928a18efc2938bfb7d082c9b8", "fields": {"nom_de_la_commune": "DOMESSIN", "libell_d_acheminement": "DOMESSIN", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73100"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58566abd6516fe66ced459fa0ae675dc160e53f6", "fields": {"nom_de_la_commune": "ECOLE", "libell_d_acheminement": "ECOLE", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73106"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21707da8a706dd11c6629d338b2a38393d62e361", "fields": {"code_postal": "73300", "code_commune_insee": "73116", "libell_d_acheminement": "FONTCOUVERTE LA TOUSSUIRE", "ligne_5": "LA TOUSSUIRE", "nom_de_la_commune": "FONTCOUVERTE LA TOUSSUIRE", "coordonnees_gps": [45.2555418724, 6.33510660794]}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9c5a5b68a18eeadc8cd2ceb86bc3a69449799d", "fields": {"nom_de_la_commune": "FRETERIVE", "libell_d_acheminement": "FRETERIVE", "code_postal": "73250", "coordonnees_gps": [45.5739753959, 6.15768953868], "code_commune_insee": "73120"}, "geometry": {"type": "Point", "coordinates": [6.15768953868, 45.5739753959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef611872829189e33b2e6de381f34b5c573722bc", "fields": {"nom_de_la_commune": "LA GIETTAZ", "libell_d_acheminement": "LA GIETTAZ", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73123"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8831d39b9bfa9376fb5f53b20978ceb3145abbe", "fields": {"nom_de_la_commune": "GILLY SUR ISERE", "libell_d_acheminement": "GILLY SUR ISERE", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73124"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3661ea60589b7a3ab806114746bc4f00e84e97d", "fields": {"nom_de_la_commune": "HAUTECOUR", "libell_d_acheminement": "HAUTECOUR", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73131"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2429ff8c6f890f676e41c13ecffcdeb02819a1f", "fields": {"nom_de_la_commune": "HERMILLON", "libell_d_acheminement": "HERMILLON", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73135"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84831f55b5eb539549d52e30a8093716098fc38f", "fields": {"nom_de_la_commune": "LAISSAUD", "libell_d_acheminement": "LAISSAUD", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73141"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c6b8295acc230613d9c69587517a920c71b116", "fields": {"nom_de_la_commune": "LANDRY", "libell_d_acheminement": "LANDRY", "code_postal": "73210", "coordonnees_gps": [45.5287564298, 6.7268231289], "code_commune_insee": "73142"}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2238a772ebc6dfcc834b06fdde740f07b57ecfba", "fields": {"nom_de_la_commune": "LANSLEVILLARD", "libell_d_acheminement": "LANSLEVILLARD", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73144"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb97df4d01df668990f504f9a848ef9ecfcd159", "fields": {"nom_de_la_commune": "LEPIN LE LAC", "libell_d_acheminement": "LEPIN LE LAC", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73145"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbd654bb37ae6759db4de8bfd015f539d47a6d5", "fields": {"nom_de_la_commune": "MONTAIMONT", "libell_d_acheminement": "MONTAIMONT", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73163"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48ec419e4f5fd988df922198784438aadf5c3f9", "fields": {"nom_de_la_commune": "MONTCEL", "libell_d_acheminement": "MONTCEL", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73164"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e797a1599f7af2087cf9bb30e8028b928d4c1a", "fields": {"nom_de_la_commune": "MONTRICHER ALBANNE", "libell_d_acheminement": "MONTRICHER ALBANNE", "code_postal": "73870", "coordonnees_gps": [45.2502051457, 6.413281012], "code_commune_insee": "73173"}, "geometry": {"type": "Point", "coordinates": [6.413281012, 45.2502051457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a0cccd4fabc4fd3c5b1871aed30b3ba6c8f8f1", "fields": {"code_postal": "73870", "code_commune_insee": "73173", "libell_d_acheminement": "MONTRICHER ALBANNE", "ligne_5": "LES KARELLIS", "nom_de_la_commune": "MONTRICHER ALBANNE", "coordonnees_gps": [45.2502051457, 6.413281012]}, "geometry": {"type": "Point", "coordinates": [6.413281012, 45.2502051457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d3094700e5afc87eb6bb9b5fd0571c8a5594e", "fields": {"nom_de_la_commune": "LA MOTTE EN BAUGES", "libell_d_acheminement": "LA MOTTE EN BAUGES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73178"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b7eb46a4bbb8b34adb62a96ea7eb7939d60b6f8", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS TARENTAISE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73181"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a415c8af91e83c17d896169900a7d46acd35666", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11176"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b64c20c3e4502622774208ad1c690a7ede02bc", "fields": {"nom_de_la_commune": "LAURABUC", "libell_d_acheminement": "LAURABUC", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11195"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac15f37f5dd19654a231a16b6ba0014f0fec7cc8", "fields": {"nom_de_la_commune": "LESPINASSIERE", "libell_d_acheminement": "LESPINASSIERE", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11200"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2a0e4a12421c52a827de79f4301a9e02cd3a28", "fields": {"nom_de_la_commune": "LEUC", "libell_d_acheminement": "LEUC", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11201"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2923387d69252ad42aa8f7717aaa9ebbdd9f45b2", "fields": {"code_postal": "11370", "code_commune_insee": "11202", "libell_d_acheminement": "LEUCATE", "ligne_5": "LA FRANQUI", "nom_de_la_commune": "LEUCATE", "coordonnees_gps": [42.8990754596, 3.02622378383]}, "geometry": {"type": "Point", "coordinates": [3.02622378383, 42.8990754596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220b25e48adb0efc46058d5a370661d62e8ba50d", "fields": {"nom_de_la_commune": "LOUPIA", "libell_d_acheminement": "LOUPIA", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11207"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38b6fb3be92b37e9b6df22c64811a82c15e1d31", "fields": {"nom_de_la_commune": "LA LOUVIERE LAURAGAIS", "libell_d_acheminement": "LA LOUVIERE LAURAGAIS", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11208"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca471dca9ad28967d6929bf6a1835db178c3d14b", "fields": {"nom_de_la_commune": "MALRAS", "libell_d_acheminement": "MALRAS", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11214"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25d71610b722dd8c87b8109ee4877acc402eab0", "fields": {"nom_de_la_commune": "MARSEILLETTE", "libell_d_acheminement": "MARSEILLETTE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11220"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97267c61c0cb0d77864b533a849c4666be9e5b54", "fields": {"nom_de_la_commune": "LES MARTYS", "libell_d_acheminement": "LES MARTYS", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11221"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2dd65d75a1bca9ded252006be30232f66523aa", "fields": {"nom_de_la_commune": "MAS CABARDES", "libell_d_acheminement": "MAS CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11222"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c53a822a2a36ba155e69dea620f1a66587532e", "fields": {"nom_de_la_commune": "MASSAC", "libell_d_acheminement": "MASSAC", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11224"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc5570c499d3b6acc129c22e9e2b271c9d120b8", "fields": {"nom_de_la_commune": "MAS SAINTES PUELLES", "libell_d_acheminement": "MAS SAINTES PUELLES", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11225"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0635e6555e2168a1e17f4ee07b4e8131a0d873", "fields": {"nom_de_la_commune": "MISSEGRE", "libell_d_acheminement": "MISSEGRE", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11235"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a040a033caa64696047dfbe42be8649153b81aa2", "fields": {"nom_de_la_commune": "MOLLEVILLE", "libell_d_acheminement": "MOLLEVILLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11238"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841bf49165e426b9357fb08a46b1f2c84eab8c5f", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11239"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dceaa68caf3c5f3f18bcdf425da036ce99b8c192", "fields": {"nom_de_la_commune": "MONTAZELS", "libell_d_acheminement": "MONTAZELS", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11240"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d1881fe1eb71608c66412542b756dcfd463292b", "fields": {"nom_de_la_commune": "MONTMAUR", "libell_d_acheminement": "MONTMAUR", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11252"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54dc28f8576c949814196ae44057910369d5b235", "fields": {"nom_de_la_commune": "MONTSERET", "libell_d_acheminement": "MONTSERET", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11256"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63450e720af5d328712e4f1787a4b6ad126ac24a", "fields": {"nom_de_la_commune": "MOUSSOULENS", "libell_d_acheminement": "MOUSSOULENS", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11259"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711877ed9883d4389b7f2465c091c210b3dabd75", "fields": {"nom_de_la_commune": "NARBONNE", "libell_d_acheminement": "NARBONNE", "code_postal": "11100", "coordonnees_gps": [43.1614428329, 3.00768633064], "code_commune_insee": "11262"}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02113add6942dbb592613d117d870f9e4600982", "fields": {"nom_de_la_commune": "PAULIGNE", "libell_d_acheminement": "PAULIGNE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11274"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf1b23ad63ee6d55d81fe643e2f4c6c8ed32714", "fields": {"nom_de_la_commune": "PECH LUNA", "libell_d_acheminement": "PECH LUNA", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11278"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5664d6522b41eb8b3c3cc91c6d44121d10692573", "fields": {"nom_de_la_commune": "PEYREFITTE DU RAZES", "libell_d_acheminement": "PEYREFITTE DU RAZES", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11282"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173ecae4796a17619aa9ad4c5ce68abc24074826", "fields": {"nom_de_la_commune": "LA POMAREDE", "libell_d_acheminement": "LA POMAREDE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11292"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a43e7b0fcaa05df89f144d0a9798b0f26632da2", "fields": {"nom_de_la_commune": "POMY", "libell_d_acheminement": "POMY", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11294"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bbcb977f73994a8dd7760f983b099564a12ff4", "fields": {"nom_de_la_commune": "POUZOLS MINERVOIS", "libell_d_acheminement": "POUZOLS MINERVOIS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11296"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bafa37d82511a4c93442a6aa8d53911eda8f700", "fields": {"nom_de_la_commune": "QUILLAN", "libell_d_acheminement": "QUILLAN", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11304"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ab970eb86d5e54579a940b4bf02a8456093dc2", "fields": {"nom_de_la_commune": "QUINTILLAN", "libell_d_acheminement": "QUINTILLAN", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11305"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9259b907dec3d414782c9c6ced99dd42e954f3dc", "fields": {"nom_de_la_commune": "QUIRBAJOU", "libell_d_acheminement": "QUIRBAJOU", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11306"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29540e42aeb1b1c2c111c1ae17833059c2bc1bd", "fields": {"nom_de_la_commune": "RICAUD", "libell_d_acheminement": "RICAUD", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11313"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d816bf54d0df8f5547c7a4a7ff339ee1c3ba5793", "fields": {"nom_de_la_commune": "RODOME", "libell_d_acheminement": "RODOME", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11317"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ad56039bdcbad385400aadd3f5e629d537f2a0", "fields": {"nom_de_la_commune": "ROQUEFORT DES CORBIERES", "libell_d_acheminement": "ROQUEFORT DES CORBIERES", "code_postal": "11540", "coordonnees_gps": [42.9920603035, 2.92996089701], "code_commune_insee": "11322"}, "geometry": {"type": "Point", "coordinates": [2.92996089701, 42.9920603035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81af197c89044ec6e857fd24d4bfdb688eff026a", "fields": {"nom_de_la_commune": "ROUFFIAC D AUDE", "libell_d_acheminement": "ROUFFIAC D AUDE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11325"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf31e97d0a1bbaf9a2086562c8254eb1e85dbec", "fields": {"nom_de_la_commune": "ROUFFIAC DES CORBIERES", "libell_d_acheminement": "ROUFFIAC DES CORBIERES", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11326"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955f283aec273881f73217a148e3d97c4b2ebd6d", "fields": {"nom_de_la_commune": "RUSTIQUES", "libell_d_acheminement": "RUSTIQUES", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11330"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e2d4a1e7ae8595501218ace816be5a1b76b8e1", "fields": {"nom_de_la_commune": "ST ANDRE DE ROQUELONGUE", "libell_d_acheminement": "ST ANDRE DE ROQUELONGUE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11332"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd2b5d0806ae7badd5a0e3ccfd56d62477ef987", "fields": {"nom_de_la_commune": "STE COLOMBE SUR L HERS", "libell_d_acheminement": "STE COLOMBE SUR L HERS", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11336"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539a354b1e305ac168bf2e577d46c78e945b77e0", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11339"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c11247b23e1b188e12f00a55e5d9c91b502a4a4", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11344"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7048f54223ff1a6eb32f6c88a60fa7172e11885", "fields": {"nom_de_la_commune": "ST JULIA DE BEC", "libell_d_acheminement": "ST JULIA DE BEC", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11347"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15354b5024ca1d43d51a01a4591a16e3ba62f9dc", "fields": {"nom_de_la_commune": "ST JUST ET LE BEZU", "libell_d_acheminement": "ST JUST ET LE BEZU", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11350"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46260838d7c15f0d97c006cccab31aaa6fadbee1", "fields": {"nom_de_la_commune": "ST MICHEL DE LANES", "libell_d_acheminement": "ST MICHEL DE LANES", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11359"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cbe91979005e421745b67000b279e9206285d5", "fields": {"nom_de_la_commune": "ST PAULET", "libell_d_acheminement": "ST PAULET", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11362"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e39a7aafe3a910e6a53a40380d0487930ff845", "fields": {"nom_de_la_commune": "ST POLYCARPE", "libell_d_acheminement": "ST POLYCARPE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11364"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35525a670b4cd9c37fdb28b3dcdae3654f4d194", "fields": {"nom_de_la_commune": "SALLELES D AUDE", "libell_d_acheminement": "SALLELES D AUDE", "code_postal": "11590", "coordonnees_gps": [43.2767571577, 2.97534639195], "code_commune_insee": "11369"}, "geometry": {"type": "Point", "coordinates": [2.97534639195, 43.2767571577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e939353072c32b1c844284925def3f20b8e9f2d9", "fields": {"nom_de_la_commune": "SALSIGNE", "libell_d_acheminement": "SALSIGNE", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11372"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9a14dc41a75ca1ff865b70237dd21848aa74bd", "fields": {"nom_de_la_commune": "LA SERPENT", "libell_d_acheminement": "LA SERPENT", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11376"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f7153a06900c5c336d4455d30592a0f86ce773", "fields": {"nom_de_la_commune": "SERVIES EN VAL", "libell_d_acheminement": "SERVIES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11378"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80258abe1a2ffd11184f0c67da6e114b4722a4c4", "fields": {"nom_de_la_commune": "SOUILHE", "libell_d_acheminement": "SOUILHE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11383"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de98438965104dfdc9f61e128b3663e488d21c3b", "fields": {"nom_de_la_commune": "SOULATGE", "libell_d_acheminement": "SOULATGE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11384"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbe4d82a1c5f2a353e7108d2ac2ccdaf28f2bb5", "fields": {"nom_de_la_commune": "THEZAN DES CORBIERES", "libell_d_acheminement": "THEZAN DES CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11390"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8ee3fd70842492627a64b34fc48e97cca6c9ff", "fields": {"nom_de_la_commune": "TOURNISSAN", "libell_d_acheminement": "TOURNISSAN", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11392"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f12e1d5cef2011263a4ab627a28a367d7644199", "fields": {"nom_de_la_commune": "VERDUN EN LAURAGAIS", "libell_d_acheminement": "VERDUN EN LAURAGAIS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11407"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f921c02e4da68cd88fa98b1ddeceb55f27b84d22", "fields": {"nom_de_la_commune": "VIGNEVIEILLE", "libell_d_acheminement": "VIGNEVIEILLE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11409"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4d7f9716ad8fcdaa986310ea034fbd796b936e", "fields": {"nom_de_la_commune": "VILLARDONNEL", "libell_d_acheminement": "VILLARDONNEL", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11413"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63071feb616be4c6f8628214474815e1007d2cf", "fields": {"nom_de_la_commune": "VILLAR EN VAL", "libell_d_acheminement": "VILLAR EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11414"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a24d8977b307e391a21b9c946828631abd6e52", "fields": {"nom_de_la_commune": "VILLASAVARY", "libell_d_acheminement": "VILLASAVARY", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11418"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37622b03d2c808957d0f1b80dc7647347113c431", "fields": {"nom_de_la_commune": "VILLEDAIGNE", "libell_d_acheminement": "VILLEDAIGNE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11421"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a02d001604efcb2af73ca2e53774356a597d20", "fields": {"nom_de_la_commune": "VILLEDUBERT", "libell_d_acheminement": "VILLEDUBERT", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11422"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885344193e1129e4a03a88a37cb99adac8ecfaf5", "fields": {"nom_de_la_commune": "VILLEGAILHENC", "libell_d_acheminement": "VILLEGAILHENC", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11425"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa44d07b57d69917ad4d3392ccc2e2367f8cc71", "fields": {"nom_de_la_commune": "VILLEGLY", "libell_d_acheminement": "VILLEGLY", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11426"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad272835c5b978da97aa2d2992accb5ad8ca77be", "fields": {"nom_de_la_commune": "VILLELONGUE D AUDE", "libell_d_acheminement": "VILLELONGUE D AUDE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11427"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992b1d50fae7a99b98ca1ef587dca915ee7cfb1e", "fields": {"nom_de_la_commune": "LES ALBRES", "libell_d_acheminement": "LES ALBRES", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12003"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9e4c5bedd009b4cc29799d232c506d3aa99a9a", "fields": {"nom_de_la_commune": "AMBEYRAC", "libell_d_acheminement": "AMBEYRAC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12007"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e998d697294e517b9d07f85b412e8bd2787454c4", "fields": {"nom_de_la_commune": "ASPRIERES", "libell_d_acheminement": "ASPRIERES", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12012"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aebea60319f7b5a83ac6a0e2e8b297e7fe96d56", "fields": {"nom_de_la_commune": "BALAGUIER SUR RANCE", "libell_d_acheminement": "BALAGUIER SUR RANCE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12019"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c3118b5b59a55d23de4f7d54fa26c952e40a92", "fields": {"code_postal": "12200", "code_commune_insee": "12021", "libell_d_acheminement": "LE BAS SEGALA", "ligne_5": "LA BASTIDE L EVEQUE", "nom_de_la_commune": "LE BAS SEGALA", "coordonnees_gps": [44.334435824, 2.00795550071]}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a6092fbf2a7ab092f78caa4e4e9f1b6ec61063", "fields": {"nom_de_la_commune": "LA BASTIDE PRADINES", "libell_d_acheminement": "LA BASTIDE PRADINES", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12022"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9594c75888f49898fcce1a1fb762e993a58c3f6d", "fields": {"nom_de_la_commune": "BELCASTEL", "libell_d_acheminement": "BELCASTEL", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12024"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806476bcf93fb78d95d5bc073dd20d7f8231c5f4", "fields": {"nom_de_la_commune": "BOUSSAC", "libell_d_acheminement": "BOUSSAC", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12032"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2aca04bab71a4c2a92ce25407dd6b5aa8281b47", "fields": {"nom_de_la_commune": "CABANES", "libell_d_acheminement": "CABANES", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12041"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25d77c4d7a1a982715a9065fb0fc736ba462913", "fields": {"nom_de_la_commune": "CAMARES", "libell_d_acheminement": "CAMARES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12044"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4745c4ed33727351e6f0cb491e7b0fddf5b8b5a0", "fields": {"nom_de_la_commune": "CAMJAC", "libell_d_acheminement": "CAMJAC", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12046"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65dc399b5206421c1854d2bd328e63780f18d9cf", "fields": {"nom_de_la_commune": "CANTOIN", "libell_d_acheminement": "CANTOIN", "code_postal": "12420", "coordonnees_gps": [44.8196484767, 2.78404543455], "code_commune_insee": "12051"}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44701d58269b88bf8d8526a5bfb4ec62a8cc56a2", "fields": {"nom_de_la_commune": "CAPDENAC GARE", "libell_d_acheminement": "CAPDENAC GARE", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12052"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bcd86298fe7f99f72935b2104727d98deeb1070", "fields": {"nom_de_la_commune": "LA CAPELLE BLEYS", "libell_d_acheminement": "LA CAPELLE BLEYS", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12054"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d413c88e15e8ebd1af525479ff554b9dea9ac42", "fields": {"nom_de_la_commune": "CASSUEJOULS", "libell_d_acheminement": "CASSUEJOULS", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12058"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3aaf55f85b037eea7aa2f1d49d8821b3679fb7", "fields": {"nom_de_la_commune": "LA CAVALERIE", "libell_d_acheminement": "LA CAVALERIE", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12063"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d32f7c4677b966a4b7bb71424a4275f6697fa5", "fields": {"nom_de_la_commune": "CENTRES", "libell_d_acheminement": "CENTRES", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12065"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df3349712449a7ecf69e163f60ecdd6682c5be8", "fields": {"code_postal": "12320", "code_commune_insee": "12076", "libell_d_acheminement": "CONQUES EN ROUERGUE", "ligne_5": "GRAND VABRE", "nom_de_la_commune": "CONQUES EN ROUERGUE", "coordonnees_gps": [44.5837975359, 2.46440638377]}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac63d291b5bb7d70f9929a5782efdecba6099b7", "fields": {"nom_de_la_commune": "LES COSTES GOZON", "libell_d_acheminement": "LES COSTES GOZON", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12078"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c2d9a33df2cbd4264a6f2e9019357fc43b63b0", "fields": {"nom_de_la_commune": "DECAZEVILLE", "libell_d_acheminement": "DECAZEVILLE", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12089"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780c7133917472f95e5788323d93a1ffd77ca03e", "fields": {"nom_de_la_commune": "DRUELLE", "libell_d_acheminement": "DRUELLE", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12090"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10362a5b9b0b06f4e8255f5785b89ad7e6c4e6f5", "fields": {"nom_de_la_commune": "ESCANDOLIERES", "libell_d_acheminement": "ESCANDOLIERES", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12095"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4463b01b49a488ed5b185f8c200c4ad2191a4559", "fields": {"nom_de_la_commune": "LACROIX BARREZ", "libell_d_acheminement": "LACROIX BARREZ", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12118"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb63b7cd3889a70f3f3c734c5e9794f5e26da37", "fields": {"nom_de_la_commune": "LAGUIOLE", "libell_d_acheminement": "LAGUIOLE", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12119"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9c2386d397fb25d353c26c07c27726346cc3af", "fields": {"nom_de_la_commune": "LAISSAC SEVERAC L EGLISE", "libell_d_acheminement": "LAISSAC SEVERAC L EGLISE", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12120"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570cd7987b72c6af4423babc6aa4572012e7a905", "fields": {"nom_de_la_commune": "LASSOUTS", "libell_d_acheminement": "LASSOUTS", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12124"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f58eca4cb3f1ea451d72093f9d7260f9197c9d", "fields": {"nom_de_la_commune": "LUC LA PRIMAUBE", "libell_d_acheminement": "LUC LA PRIMAUBE", "code_postal": "12450", "coordonnees_gps": [44.2840952345, 2.5725628832], "code_commune_insee": "12133"}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b92c83aa133aa2e3e860b5c16ab6fd1f36af201", "fields": {"nom_de_la_commune": "LUNAC", "libell_d_acheminement": "LUNAC", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12135"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a036c2f0b57e4118e398fcc503b728fc4538ee9", "fields": {"nom_de_la_commune": "LE MONASTERE", "libell_d_acheminement": "LE MONASTERE", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12146"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab738011134c24b45544fd7c566d9d97db2092a2", "fields": {"nom_de_la_commune": "MONTBAZENS", "libell_d_acheminement": "MONTBAZENS", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12148"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5736fc4da44989050647513e0af25fbce72d68bf", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12156"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f20786a34f16079e425bb141809ddc0f5994293", "fields": {"nom_de_la_commune": "MOYRAZES", "libell_d_acheminement": "MOYRAZES", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12162"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5b9cd0a8381ac631d2cd56775897e18fcb8cec", "fields": {"nom_de_la_commune": "LE NAYRAC", "libell_d_acheminement": "LE NAYRAC", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12172"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30742575bbaf4100150902a445e2e9304fd3504", "fields": {"nom_de_la_commune": "OLS ET RINHODES", "libell_d_acheminement": "OLS ET RINHODES", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12175"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3691eaa4711be6380e7c9f9a9ca8a948496f1bc", "fields": {"nom_de_la_commune": "PALMAS D AVEYRON", "libell_d_acheminement": "PALMAS D AVEYRON", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12177"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7352ae4e1af9220466b0368e7c674caf12cf8ced", "fields": {"nom_de_la_commune": "PEUX ET COUFFOULEUX", "libell_d_acheminement": "PEUX ET COUFFOULEUX", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12179"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c96dbedf0025bac87e7f756571310612ea47de", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12183"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea6a2f68e481a901b1d6c88d6a90097e3dd39fa", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "COUDRAY", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca9a71fae7b0b8ac3c5c0bbbd4dbf8717b3c335", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "MAINVILLIERS", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6945453a3d11819881a531e5ea38a5eb2683ff", "fields": {"nom_de_la_commune": "MAREAU AUX BOIS", "libell_d_acheminement": "MAREAU AUX BOIS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45195"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24009c82a4e8bb90c5ebdcbef194c8128d291053", "fields": {"nom_de_la_commune": "MARIGNY LES USAGES", "libell_d_acheminement": "MARIGNY LES USAGES", "code_postal": "45760", "coordonnees_gps": [47.9504956092, 2.02989730454], "code_commune_insee": "45197"}, "geometry": {"type": "Point", "coordinates": [2.02989730454, 47.9504956092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83cef3461aa56d633fa457545210fcff39ca63d5", "fields": {"nom_de_la_commune": "MONTBOUY", "libell_d_acheminement": "MONTBOUY", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45210"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be83b40811b674312e6cdf8490d482f5c3950e9", "fields": {"nom_de_la_commune": "MORMANT SUR VERNISSON", "libell_d_acheminement": "MORMANT SUR VERNISSON", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45216"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aedbd2db2bd13b8e44c3a97ae4aad993f83c07f3", "fields": {"nom_de_la_commune": "NESPLOY", "libell_d_acheminement": "NESPLOY", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45223"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb4baca08b9eff87706f1dc62385f4ca838677c", "fields": {"nom_de_la_commune": "OUSSOY EN GATINAIS", "libell_d_acheminement": "OUSSOY EN GATINAIS", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45239"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70cc17e0ba3288123d2f3742997093fb01aa1e1", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "ST PERAVY EPREUX", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9863b83952a3bc01962ba7f7fb2c7c9c7ead6d52", "fields": {"nom_de_la_commune": "OUVROUER LES CHAMPS", "libell_d_acheminement": "OUVROUER LES CHAMPS", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45241"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1ce95c3ac539a12fc89d4e651a49794e0ca19a", "fields": {"nom_de_la_commune": "PANNECIERES", "libell_d_acheminement": "PANNECIERES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45246"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3e52a0a9558150b69751236ffa9a9f86687492", "fields": {"nom_de_la_commune": "PATAY", "libell_d_acheminement": "PATAY", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45248"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd055896ed5262fb2951100a3fb9f3d7ef69e4f", "fields": {"nom_de_la_commune": "PITHIVIERS LE VIEIL", "libell_d_acheminement": "PITHIVIERS LE VIEIL", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45253"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60575380a6afb9d2af20581c1076cdd30abeff98", "fields": {"nom_de_la_commune": "POILLY LEZ GIEN", "libell_d_acheminement": "POILLY LEZ GIEN", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45254"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf037ba5a5c67ded4ac9debddf30a646545908e", "fields": {"nom_de_la_commune": "PRESSIGNY LES PINS", "libell_d_acheminement": "PRESSIGNY LES PINS", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45257"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d6cff46cec731d597605a614b58377bba2dcd7", "fields": {"nom_de_la_commune": "PUISEAUX", "libell_d_acheminement": "PUISEAUX", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45258"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b582d32bd125f457abfa7d197355656c7f8159f", "fields": {"nom_de_la_commune": "REBRECHIEN", "libell_d_acheminement": "REBRECHIEN", "code_postal": "45470", "coordonnees_gps": [47.9894256341, 2.08205266737], "code_commune_insee": "45261"}, "geometry": {"type": "Point", "coordinates": [2.08205266737, 47.9894256341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f49e4ad60efde91c607b9d24923a5e1a0319f9", "fields": {"nom_de_la_commune": "ROUVRES ST JEAN", "libell_d_acheminement": "ROUVRES ST JEAN", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45263"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0351b670f39faa7fe03975d2286040dae08405e8", "fields": {"nom_de_la_commune": "RUAN", "libell_d_acheminement": "RUAN", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45266"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04740083465e7e2bf40797a14bbd1e2925caf0a", "fields": {"nom_de_la_commune": "ST AIGNAN LE JAILLARD", "libell_d_acheminement": "ST AIGNAN LE JAILLARD", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45268"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de214726496f88114b6a4cb0831640353513a479", "fields": {"nom_de_la_commune": "ST AY", "libell_d_acheminement": "ST AY", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45269"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea40b8b1fe8ff005141e65e95987a4190d0b2b7", "fields": {"nom_de_la_commune": "ST FIRMIN SUR LOIRE", "libell_d_acheminement": "ST FIRMIN SUR LOIRE", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45276"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92dabba444a5cc5f145a362a6c90f96cf7e3d8e", "fields": {"nom_de_la_commune": "STE GENEVIEVE DES BOIS", "libell_d_acheminement": "STE GENEVIEVE DES BOIS", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45278"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3628f09f1058e46c8b333a9957e3e009e4ccd7a5", "fields": {"nom_de_la_commune": "ST MARTIN D ABBAT", "libell_d_acheminement": "ST MARTIN D ABBAT", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45290"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7da897e0b62bcdecd8f731087549a71572f05df", "fields": {"nom_de_la_commune": "SEICHEBRIERES", "libell_d_acheminement": "SEICHEBRIERES", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45305"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc504bdd2b0202356423ada681d050d32433647a", "fields": {"nom_de_la_commune": "LA SELLE EN HERMOY", "libell_d_acheminement": "LA SELLE EN HERMOY", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45306"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b73bdc673e321831d99db0c25ed2575ca274a1", "fields": {"nom_de_la_commune": "SERMAISES", "libell_d_acheminement": "SERMAISES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45310"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "629582c742127d994958d4fc62548f2bd3857ab4", "fields": {"nom_de_la_commune": "SOLTERRE", "libell_d_acheminement": "SOLTERRE", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45312"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c156375eaeab9e8780420c4928cb7d72d866cc", "fields": {"nom_de_la_commune": "SULLY LA CHAPELLE", "libell_d_acheminement": "SULLY LA CHAPELLE", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45314"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5cd17e4593bbdd58709b0cb2923b4883dd4cd0", "fields": {"nom_de_la_commune": "SURY AUX BOIS", "libell_d_acheminement": "SURY AUX BOIS", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45316"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b62790f05d03058bad8c9a8ff53d311da82563", "fields": {"nom_de_la_commune": "TIVERNON", "libell_d_acheminement": "TIVERNON", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45325"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc90419ab3ac28cb0d3d80dce20f1544817ebd41", "fields": {"nom_de_la_commune": "TOURNOISIS", "libell_d_acheminement": "TOURNOISIS", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45326"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd41185a88fc5c1fa2f0fdfb34ff8b490c0fb6b", "fields": {"nom_de_la_commune": "TRINAY", "libell_d_acheminement": "TRINAY", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45330"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d5d8e6e5177266c46e0ccdd7677aa54b7087ec0", "fields": {"nom_de_la_commune": "VENNECY", "libell_d_acheminement": "VENNECY", "code_postal": "45760", "coordonnees_gps": [47.9504956092, 2.02989730454], "code_commune_insee": "45333"}, "geometry": {"type": "Point", "coordinates": [2.02989730454, 47.9504956092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c088a76457c96ca649892683620c32cafe0466f2", "fields": {"nom_de_la_commune": "VIEILLES MAISONS SUR JOUDRY", "libell_d_acheminement": "VIEILLES MAISONS SUR JOUDRY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45334"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67bf595dcdf373975bbf9ec824f0cdd176ed29b", "fields": {"nom_de_la_commune": "VILLEMOUTIERS", "libell_d_acheminement": "VILLEMOUTIERS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45339"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312598742d453fe2d3c45f2ee4cbed0340f477d0", "fields": {"nom_de_la_commune": "VRIGNY", "libell_d_acheminement": "VRIGNY", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45347"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c61327033cbca076541bc626ee14bac9244674ed", "fields": {"nom_de_la_commune": "YEVRE LA VILLE", "libell_d_acheminement": "YEVRE LA VILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45348"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c6a76a17503b706dcb2deaf8644563696ef6d1", "fields": {"nom_de_la_commune": "ANGLARS", "libell_d_acheminement": "ANGLARS", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46004"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44024b773fd495d77ee3f61b36cfe1ce78ec55e", "fields": {"nom_de_la_commune": "BACH", "libell_d_acheminement": "BACH", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46013"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a345630e2a7e4915b27309218debdc66c5f6a5b2", "fields": {"nom_de_la_commune": "BAGAT EN QUERCY", "libell_d_acheminement": "BAGAT EN QUERCY", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46014"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f4128e64d59183788b8ffd961ff71b98bd08fa", "fields": {"nom_de_la_commune": "BELMONT BRETENOUX", "libell_d_acheminement": "BELMONT BRETENOUX", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46024"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d284eda09f471b82c754fb5df655456cc5cd77f6", "fields": {"nom_de_la_commune": "BETAILLE", "libell_d_acheminement": "BETAILLE", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46028"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90aa03f1c29f56529e7e1adab419cb2e921b0abc", "fields": {"nom_de_la_commune": "BRETENOUX", "libell_d_acheminement": "BRETENOUX", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46038"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb53cfd048a2eab0bd36049ac4337834fb15ee8", "fields": {"nom_de_la_commune": "BRENGUES", "libell_d_acheminement": "BRENGUES", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46039"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dc95fbb51b45cffc3d55298d81619219c00f77d", "fields": {"nom_de_la_commune": "CAILLAC", "libell_d_acheminement": "CAILLAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46044"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c685583b64c44b4f37be9518cfb5f5add6d812", "fields": {"nom_de_la_commune": "CAMBAYRAC", "libell_d_acheminement": "CAMBAYRAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46050"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efaab7feeb645e8e3ad88a5c77544e603543bf2", "fields": {"nom_de_la_commune": "CAPDENAC", "libell_d_acheminement": "CAPDENAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46055"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09fa35a34ca76535f7bd72cf65ab51e53e51dbc9", "fields": {"nom_de_la_commune": "CARAYAC", "libell_d_acheminement": "CARAYAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46056"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc33790145e7d9258f82d14fc38d70ac23f6f2a", "fields": {"nom_de_la_commune": "CARDAILLAC", "libell_d_acheminement": "CARDAILLAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46057"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284c688c6c639094891be938620f5c99222c34da", "fields": {"nom_de_la_commune": "CIEURAC", "libell_d_acheminement": "CIEURAC", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46070"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c6fd85370664b86a1aaa10bda48a6afddfb8fc", "fields": {"nom_de_la_commune": "CRAYSSAC", "libell_d_acheminement": "CRAYSSAC", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46080"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9356da8500e104433b47ab956be8b3fb2f44fe70", "fields": {"nom_de_la_commune": "DOUELLE", "libell_d_acheminement": "DOUELLE", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46088"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3d1c4350a0723f931f6a5a4a56a23b7730f31f", "fields": {"nom_de_la_commune": "DURAVEL", "libell_d_acheminement": "DURAVEL", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46089"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c86eb16e6aa8d4e19f430dd276add36870ac3b", "fields": {"nom_de_la_commune": "ESPERE", "libell_d_acheminement": "ESPERE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46095"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575abdeac0265d6e2bc8adf7b0122d3a6554c0b7", "fields": {"nom_de_la_commune": "ESTAL", "libell_d_acheminement": "ESTAL", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46097"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3472deca080aa423342a44f9190f625c810fbf", "fields": {"nom_de_la_commune": "FLAUJAC POUJOLS", "libell_d_acheminement": "FLAUJAC POUJOLS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46105"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829b18e50022c0a8bd63cfc3eaef18aa03bf5cbd", "fields": {"nom_de_la_commune": "FLORESSAS", "libell_d_acheminement": "FLORESSAS", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46107"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cf6a2f41af879bc7b7cd2b00381ac82e2486e0", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46109"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030440fe55c929ec97479723ffd759b9ad0548fd", "fields": {"nom_de_la_commune": "GIGNAC", "libell_d_acheminement": "GIGNAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46118"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857750216bbbee3cfcf4f0d7067e598a7507e0a7", "fields": {"nom_de_la_commune": "GIGOUZAC", "libell_d_acheminement": "GIGOUZAC", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46119"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da66856032f5ee8e06e2b81464e8fda1f6b9076b", "fields": {"nom_de_la_commune": "GINTRAC", "libell_d_acheminement": "GINTRAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46122"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b666ad04a00f46b4e0782372b03d6f1eb1fa6e", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46127"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f936bd60038bcbca1f84890339c0363ad0f93c", "fields": {"nom_de_la_commune": "LABASTIDE DU VERT", "libell_d_acheminement": "LABASTIDE DU VERT", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46136"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7da76ccc2a6518ed099ebabed4bb4421f463b7", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "BEAUMAT", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e867e925c8ef5e68c6620a1a9e6e5c34daec43", "fields": {"nom_de_la_commune": "LAGARDELLE", "libell_d_acheminement": "LAGARDELLE", "code_postal": "46220", "coordonnees_gps": [44.5097292644, 1.18339970147], "code_commune_insee": "46147"}, "geometry": {"type": "Point", "coordinates": [1.18339970147, 44.5097292644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c031fff97652083587d0e46a261d4f5ef79516d3", "fields": {"nom_de_la_commune": "LAVERGNE", "libell_d_acheminement": "LAVERGNE", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46165"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1003a7aa37e2ff96c5fc31c8e3698b4b23b41b01", "fields": {"nom_de_la_commune": "LHOSPITALET", "libell_d_acheminement": "LHOSPITALET", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46172"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c1fc3e470b415785b0c11864c4af5d2055cbe2", "fields": {"nom_de_la_commune": "LISSAC ET MOURET", "libell_d_acheminement": "LISSAC ET MOURET", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46175"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac859a40201effd9894bdf26ff17bf1097671dda", "fields": {"nom_de_la_commune": "LIVERNON", "libell_d_acheminement": "LIVERNON", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46176"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c776c1cc82f0ece134f5aa22bbd15cc0eab07d", "fields": {"nom_de_la_commune": "LOUBRESSAC", "libell_d_acheminement": "LOUBRESSAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46177"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df89f3eeea6917cae2f3287785fbc9356d39f25a", "fields": {"nom_de_la_commune": "LUZECH", "libell_d_acheminement": "LUZECH", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46182"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0641d766e36878b20c1f333be8e6d4cceaaedaf", "fields": {"nom_de_la_commune": "MAYRINHAC LENTOUR", "libell_d_acheminement": "MAYRINHAC LENTOUR", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46189"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ddce0072b696df727b3966f55dee270ec4a9e61", "fields": {"nom_de_la_commune": "MEYRONNE", "libell_d_acheminement": "MEYRONNE", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46192"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "055bddeaf7de29b2b3b8b9a6aad2df76a95f0ccc", "fields": {"nom_de_la_commune": "MILHAC", "libell_d_acheminement": "MILHAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46194"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82718722bb2108d02ed3e176b10932abd6f90a57", "fields": {"nom_de_la_commune": "MONTAMEL", "libell_d_acheminement": "MONTAMEL", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46196"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a87c674659567780fe5bc3326cd0e9fd3c9ef2ff", "fields": {"nom_de_la_commune": "LE MONTAT", "libell_d_acheminement": "LE MONTAT", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46197"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe1de95d477afcf220b95b2262c18b66946819d", "fields": {"nom_de_la_commune": "MONTBRUN", "libell_d_acheminement": "MONTBRUN", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46198"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50788eba2a091f53d7e956ccf7c98f51e8aa51f", "fields": {"nom_de_la_commune": "MONTCLERA", "libell_d_acheminement": "MONTCLERA", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46200"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab5a9a05c698124289b1b573a70eb793e47cca6", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "BELMONTET", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a510ba55a922700c9fcc8c00ba1fadecf9c0576e", "fields": {"nom_de_la_commune": "ORNIAC", "libell_d_acheminement": "ORNIAC", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46212"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a1f26b2766262e1be9c3ea672d8040bc1c7104", "fields": {"nom_de_la_commune": "PADIRAC", "libell_d_acheminement": "PADIRAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46213"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7407726e6a5f68476c1e154226b33087c50b52f", "fields": {"nom_de_la_commune": "PRAYSSAC", "libell_d_acheminement": "PRAYSSAC", "code_postal": "46220", "coordonnees_gps": [44.5097292644, 1.18339970147], "code_commune_insee": "46225"}, "geometry": {"type": "Point", "coordinates": [1.18339970147, 44.5097292644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841ec2673700e6a2d545a0b6cfbdbe3cc18a2763", "fields": {"nom_de_la_commune": "PUYJOURDES", "libell_d_acheminement": "PUYJOURDES", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46230"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d978033e77ba69bef7c833e49c377d15b3eea5c1", "fields": {"nom_de_la_commune": "LES QUATRE ROUTES DU LOT", "libell_d_acheminement": "LES QUATRE ROUTES DU LOT", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46232"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da909c4fe9f77623be2600f62cd55537b5f89602", "fields": {"nom_de_la_commune": "REYREVIGNES", "libell_d_acheminement": "REYREVIGNES", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46237"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6138100bdb45383617c6e1a01ccb7e4ea02e14aa", "fields": {"nom_de_la_commune": "ROCAMADOUR", "libell_d_acheminement": "ROCAMADOUR", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46240"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bc01fea97d8d99f75e0962f43e0ece00f8865b", "fields": {"nom_de_la_commune": "ST BRESSOU", "libell_d_acheminement": "ST BRESSOU", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46249"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0671a1c02a36bd7fcc1bc2ea76ce7783e63e8023", "fields": {"code_postal": "46360", "code_commune_insee": "46252", "libell_d_acheminement": "LES PECHS DU VERS", "ligne_5": "ST CERNIN", "nom_de_la_commune": "LES PECHS DU VERS", "coordonnees_gps": [44.5788373248, 1.59698113973]}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673ed3b04e6e050b082ec870ee22ea1331d14671", "fields": {"nom_de_la_commune": "ST JEAN MIRABEL", "libell_d_acheminement": "ST JEAN MIRABEL", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46272"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d6564f561ad3a7fc2202aec3b86d0d46cbaa53", "fields": {"nom_de_la_commune": "ST MEDARD DE PRESQUE", "libell_d_acheminement": "ST MEDARD DE PRESQUE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46281"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c44a4f451a17fc468fa9aad97b5a203c9e8bf91", "fields": {"nom_de_la_commune": "ST MICHEL DE BANNIERES", "libell_d_acheminement": "ST MICHEL DE BANNIERES", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46283"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61391fb4434da54dcefee68fd53c26ada1ef83f5", "fields": {"nom_de_la_commune": "THEDIRAC", "libell_d_acheminement": "THEDIRAC", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46316"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f97ea36d5a6756322e3e3c51a1fee734f4605e", "fields": {"nom_de_la_commune": "THEGRA", "libell_d_acheminement": "THEGRA", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46317"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa32d8feaac18bc58b3dc54a6be7d765641f4fa5", "fields": {"nom_de_la_commune": "THEMINES", "libell_d_acheminement": "THEMINES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46318"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a727b77a78db0b46ecbd756593fd79907549896f", "fields": {"nom_de_la_commune": "TRESPOUX RASSIELS", "libell_d_acheminement": "TRESPOUX RASSIELS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46322"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0a0361e2791d0a764d357e5b84b3ec0bd667b2", "fields": {"nom_de_la_commune": "VALROUFIE", "libell_d_acheminement": "VALROUFIE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46327"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de2e9145bf8059815daf19e26590270f70cd424b", "fields": {"nom_de_la_commune": "VAYLATS", "libell_d_acheminement": "VAYLATS", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46329"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d1ff7315ca7dbd077866a2409aef992c334505", "fields": {"nom_de_la_commune": "VAYRAC", "libell_d_acheminement": "VAYRAC", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46330"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee003f6bc2500921384475e7db8423e2ace5702", "fields": {"nom_de_la_commune": "VIDAILLAC", "libell_d_acheminement": "VIDAILLAC", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46333"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8825065b95a97f1c058dddaaf2272d37f564c813", "fields": {"nom_de_la_commune": "ESTRABLIN", "libell_d_acheminement": "ESTRABLIN", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38157"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9655b6e867e7c74ed5a4e56d28992088a3c2335", "fields": {"nom_de_la_commune": "EYDOCHE", "libell_d_acheminement": "EYDOCHE", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38159"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb6453c182d096697968f6c14aa966ba5e94172", "fields": {"nom_de_la_commune": "LA FERRIERE", "libell_d_acheminement": "LA FERRIERE", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38163"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d6260d1325561b77993b6c6eea6e8c5ee069d7", "fields": {"code_postal": "38580", "code_commune_insee": "38163", "libell_d_acheminement": "LA FERRIERE", "ligne_5": "LE PLEYNET", "nom_de_la_commune": "LA FERRIERE", "coordonnees_gps": [45.3350666079, 6.10773824742]}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775b2c7c45bfc14e6572b857cf9b80c2cca57af6", "fields": {"nom_de_la_commune": "FONTANIL CORNILLON", "libell_d_acheminement": "FONTANIL CORNILLON", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38170"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c89f558514edcdffafb9e26153829920c9367e", "fields": {"nom_de_la_commune": "HERBEYS", "libell_d_acheminement": "HERBEYS", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38188"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f32795841dcfcc8dfbcf880f2d6fe2914af5e04", "fields": {"nom_de_la_commune": "LANS EN VERCORS", "libell_d_acheminement": "LANS EN VERCORS", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38205"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b22b25cbba6ac20fca4e86fa49368fb963cf4c78", "fields": {"nom_de_la_commune": "LUZINAY", "libell_d_acheminement": "LUZINAY", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38215"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf0324b29b75f865d1dce8088f4bc53f0d3c1d7", "fields": {"nom_de_la_commune": "MALLEVAL EN VERCORS", "libell_d_acheminement": "MALLEVAL EN VERCORS", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38216"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41d236de5b4af23b79eabd88b64bf242624449f", "fields": {"nom_de_la_commune": "MARCIEU", "libell_d_acheminement": "MARCIEU", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38217"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319e08112f741d2e0276600fbbdea144d0db0c8b", "fields": {"nom_de_la_commune": "MASSIEU", "libell_d_acheminement": "MASSIEU", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38222"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d465bda7628da278d945db01c1e6efa0fa96e1", "fields": {"nom_de_la_commune": "AUTRANS MEAUDRE EN VERCORS", "libell_d_acheminement": "AUTRANS MEAUDRE EN VERCORS", "code_postal": "38112", "coordonnees_gps": [45.1320619265, 5.52782413596], "code_commune_insee": "38225"}, "geometry": {"type": "Point", "coordinates": [5.52782413596, 45.1320619265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef63eb87432bdffb5f965bf5656e1933eec79bae", "fields": {"nom_de_la_commune": "MOISSIEU SUR DOLON", "libell_d_acheminement": "MOISSIEU SUR DOLON", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38240"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f63d93c34aab1df44502c61aa6d22ca1206c50", "fields": {"nom_de_la_commune": "MONESTIER D AMBEL", "libell_d_acheminement": "MONESTIER D AMBEL", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38241"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80286121c748f5ae8920e4d7f3670151c49c0450", "fields": {"nom_de_la_commune": "MONESTIER DE CLERMONT", "libell_d_acheminement": "MONESTIER DE CLERMONT", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38242"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f5bfbb97b9c0460d77919c2850044abe9ef970", "fields": {"nom_de_la_commune": "MONSTEROUX MILIEU", "libell_d_acheminement": "MONSTEROUX MILIEU", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38244"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4de7e72ba7f384a8f59911235f748da12b91fe4", "fields": {"nom_de_la_commune": "MONTALIEU VERCIEU", "libell_d_acheminement": "MONTALIEU VERCIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38247"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7708476cd8be527adf28638a163f31ca4e5473cf", "fields": {"nom_de_la_commune": "MONTCHABOUD", "libell_d_acheminement": "MONTCHABOUD", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38252"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd85e1414fda09f221b507258a115d60965f4526", "fields": {"nom_de_la_commune": "SERRE NERPOL", "libell_d_acheminement": "SERRE NERPOL", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38275"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e753e1974cf4a63d830ecff516cdf2649dc39682", "fields": {"nom_de_la_commune": "ORIS EN RATTIER", "libell_d_acheminement": "ORIS EN RATTIER", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38283"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cc138f901680fc977eeef3c5e31d839aa3d885", "fields": {"nom_de_la_commune": "OYEU", "libell_d_acheminement": "OYEU", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38287"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23556ed18f36eaa6d8fd2cdd7ddf59c47ecdbad5", "fields": {"nom_de_la_commune": "PACT", "libell_d_acheminement": "PACT", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38290"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04640dfa8eb6b93bbe84453691e6b905ddd8b10", "fields": {"nom_de_la_commune": "PANISSAGE", "libell_d_acheminement": "PANISSAGE", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38293"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52995b787952b735ab7d02e0744badf3e705381c", "fields": {"nom_de_la_commune": "PENOL", "libell_d_acheminement": "PENOL", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38300"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79cd284ad2e4822623ce3d6aad6ffd082952738", "fields": {"nom_de_la_commune": "PLAN", "libell_d_acheminement": "PLAN", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38308"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1356ac314f700f02d5103d0d10e2d7467c8d1ff9", "fields": {"nom_de_la_commune": "LE PONT DE CLAIX", "libell_d_acheminement": "LE PONT DE CLAIX", "code_postal": "38800", "coordonnees_gps": [45.1176440456, 5.71273169882], "code_commune_insee": "38317"}, "geometry": {"type": "Point", "coordinates": [5.71273169882, 45.1176440456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6ec522170d0a8d76570eccc85122430230140a", "fields": {"nom_de_la_commune": "PONT EVEQUE", "libell_d_acheminement": "PONT EVEQUE", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38318"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c884a5e3d777652ba31c8eb0784b9054b475b047", "fields": {"nom_de_la_commune": "PRESLES", "libell_d_acheminement": "PRESLES", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38322"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe29fc817726ee385109e759fc638c859eefc2d", "fields": {"nom_de_la_commune": "RIVES", "libell_d_acheminement": "RIVES SUR FURE", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38337"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942791a45ef8fc2a8a990727504379296d174a9", "fields": {"code_postal": "38090", "code_commune_insee": "38339", "libell_d_acheminement": "ROCHE", "ligne_5": "BOIS DE ROCHE", "nom_de_la_commune": "ROCHE", "coordonnees_gps": [45.595478316, 5.15236035491]}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9cd918150850f600d1202fb2e2bfb4d68aa8db1", "fields": {"nom_de_la_commune": "RUY", "libell_d_acheminement": "RUY", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38348"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5ea592a27b95cc6df20a4abad16d00ff7debc2", "fields": {"code_postal": "38300", "code_commune_insee": "38348", "libell_d_acheminement": "RUY", "ligne_5": "MONTCEAU", "nom_de_la_commune": "RUY", "coordonnees_gps": [45.5640393391, 5.29545357844]}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4170aae70b5fe7755a968c2d88a91dea144435c", "fields": {"nom_de_la_commune": "ST AGNIN SUR BION", "libell_d_acheminement": "ST AGNIN SUR BION", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38351"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f4b93fd906eb5d6115f8fd76ff9332d937cccf", "fields": {"nom_de_la_commune": "ST ALBAN DU RHONE", "libell_d_acheminement": "ST ALBAN DU RHONE", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38353"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d00ab1a796cfb6606ce3a3ef8519f01f382461", "fields": {"nom_de_la_commune": "STE ANNE SUR GERVONDE", "libell_d_acheminement": "STE ANNE SUR GERVONDE", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38358"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae67e7d60c48a6118afb90c455612b956b9530d3", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE SECHILIENNE", "libell_d_acheminement": "ST BARTHELEMY DE SECHILIENNE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38364"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609115294876c93613e88535f000f1e802c689f7", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR GUIERS", "libell_d_acheminement": "ST CHRISTOPHE SUR GUIERS", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38376"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a6aab8ea3a0a98bd5faeec8a6c762c7004f251", "fields": {"nom_de_la_commune": "ST EGREVE", "libell_d_acheminement": "ST EGREVE", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38382"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2315939a8d1ec6f124040d285ab0769e04f65c25", "fields": {"nom_de_la_commune": "ST ETIENNE DE ST GEOIRS", "libell_d_acheminement": "ST ETIENNE DE ST GEOIRS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38384"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff034a7b4bb4ebe49194e2fee5ef87e410205875", "fields": {"nom_de_la_commune": "ST GEOIRS", "libell_d_acheminement": "ST GEOIRS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38387"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8e2b637e2bd27817558edafe31a5b03daff950", "fields": {"nom_de_la_commune": "ST HILAIRE DE BRENS", "libell_d_acheminement": "ST HILAIRE DE BRENS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38392"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86a4f2c33ecb91aa1aada873ad43ce1bb191a5b", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38395"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b2175494d4656d387f868e6313e4dc8ce4da90", "fields": {"nom_de_la_commune": "ST HONORE", "libell_d_acheminement": "ST HONORE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38396"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6f742cd5a2ba02a925976771f88c9dc684fa5c", "fields": {"nom_de_la_commune": "ST ISMIER", "libell_d_acheminement": "ST ISMIER", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38397"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51a0f5a5528c892a02a37a34bcc536a16543a48", "fields": {"nom_de_la_commune": "ST JEAN DE MOIRANS", "libell_d_acheminement": "ST JEAN DE MOIRANS", "code_postal": "38430", "coordonnees_gps": [45.3230969594, 5.56811777038], "code_commune_insee": "38400"}, "geometry": {"type": "Point", "coordinates": [5.56811777038, 45.3230969594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eade7865ec6a25acbf430328e774a310c6ef0539", "fields": {"nom_de_la_commune": "ST JEAN DE SOUDAIN", "libell_d_acheminement": "ST JEAN DE SOUDAIN", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38401"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "085fdcae325cdeda09a9e7f4ff63926b6404ad73", "fields": {"nom_de_la_commune": "ST JOSEPH DE RIVIERE", "libell_d_acheminement": "ST JOSEPH DE RIVIERE", "code_postal": "38134", "coordonnees_gps": [45.3576664534, 5.68172750392], "code_commune_insee": "38405"}, "geometry": {"type": "Point", "coordinates": [5.68172750392, 45.3576664534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8410489fb04f4fd555b67387ce8886f2e7586a44", "fields": {"nom_de_la_commune": "ST JUST DE CLAIX", "libell_d_acheminement": "ST JUST DE CLAIX", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38409"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecae3a2f1e6570679ca81f96b65bbdb33f7de7d5", "fields": {"nom_de_la_commune": "ST MARCELLIN", "libell_d_acheminement": "ST MARCELLIN", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38416"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd79aed17f3ff362a4f9f8f9f9c7d150bc7e0c5", "fields": {"nom_de_la_commune": "STE MARIE D ALLOIX", "libell_d_acheminement": "STE MARIE D ALLOIX", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38417"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24551e6cf9949194f2a9af7a213be9e5cd0a9cec", "fields": {"nom_de_la_commune": "ST MARTIN D URIAGE", "libell_d_acheminement": "ST MARTIN D URIAGE", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38422"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f869e70468f4d7a30994bf46df4b08ecc3857441", "fields": {"nom_de_la_commune": "ST MICHEL DE ST GEOIRS", "libell_d_acheminement": "ST MICHEL DE ST GEOIRS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38427"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c66b41e85cd3e537ae78d9cb3f2fc85ebefcb0", "fields": {"nom_de_la_commune": "ST NIZIER DU MOUCHEROTTE", "libell_d_acheminement": "ST NIZIER DU MOUCHEROTTE", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38433"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a482b98e7d64b9748af1f44192a31f2dc49ea2", "fields": {"nom_de_la_commune": "ST PAUL D IZEAUX", "libell_d_acheminement": "ST PAUL D IZEAUX", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38437"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4addd355201702fe5240f9c1b058c4d91dd951f", "fields": {"code_postal": "38570", "code_commune_insee": "38439", "libell_d_acheminement": "CRETS EN BELLEDONNE", "ligne_5": "MORETEL DE MAILLES", "nom_de_la_commune": "CRETS EN BELLEDONNE", "coordonnees_gps": [45.3269943353, 6.00916897234]}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b11aa61b4f4c86a266d8b2066c40ab0d4aaece1", "fields": {"nom_de_la_commune": "ST PIERRE DE CHARTREUSE", "libell_d_acheminement": "ST PIERRE DE CHARTREUSE", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38442"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2439e4102c16a2028df926b42421bc457addf2b1", "fields": {"nom_de_la_commune": "ST PIERRE DE CHERENNES", "libell_d_acheminement": "ST PIERRE DE CHERENNES", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38443"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1f72ecb0af4e3dbe6e1c2c9c522e7b8c5d92d21", "fields": {"nom_de_la_commune": "ST QUENTIN FALLAVIER", "libell_d_acheminement": "ST QUENTIN FALLAVIER", "code_postal": "38070", "coordonnees_gps": [45.6394572079, 5.10879262464], "code_commune_insee": "38449"}, "geometry": {"type": "Point", "coordinates": [5.10879262464, 45.6394572079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc18c88925f322c2e34ae9f981a84edd0822565", "fields": {"code_postal": "38070", "code_commune_insee": "38449", "libell_d_acheminement": "ST QUENTIN FALLAVIER", "ligne_5": "FALLAVIER", "nom_de_la_commune": "ST QUENTIN FALLAVIER", "coordonnees_gps": [45.6394572079, 5.10879262464]}, "geometry": {"type": "Point", "coordinates": [5.10879262464, 45.6394572079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992a2c77dd599fd90ebb671d049b10b821438bb3", "fields": {"nom_de_la_commune": "ST ROMAIN DE SURIEU", "libell_d_acheminement": "ST ROMAIN DE SURIEU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38452"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e915aadbbf4c5e208dbe1b4d103eae6cdcb48cff", "fields": {"nom_de_la_commune": "ST SEBASTIEN", "libell_d_acheminement": "ST SEBASTIEN", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38456"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04acc009bb58929ffb798da99a5e0466adc0704", "fields": {"nom_de_la_commune": "ST SIMEON DE BRESSIEUX", "libell_d_acheminement": "ST SIMEON DE BRESSIEUX", "code_postal": "38870", "coordonnees_gps": [45.3123965448, 5.28339736788], "code_commune_insee": "38457"}, "geometry": {"type": "Point", "coordinates": [5.28339736788, 45.3123965448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e901a22afa672b10de1a46e5fa5b4285163b543c", "fields": {"nom_de_la_commune": "ST SORLIN DE MORESTEL", "libell_d_acheminement": "ST SORLIN DE MORESTEL", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38458"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d97267c27fc9b2b34a06c98123c8732e09907b9", "fields": {"nom_de_la_commune": "ST VICTOR DE CESSIEU", "libell_d_acheminement": "ST VICTOR DE CESSIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38464"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dd992a4e099fe6c196ee6ffa1c651358b152d0", "fields": {"nom_de_la_commune": "SALAGNON", "libell_d_acheminement": "SALAGNON", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38467"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229329cfc12ff855728cb410eb50990157f57f2e", "fields": {"nom_de_la_commune": "LA SALETTE FALLAVAUX", "libell_d_acheminement": "LA SALETTE FALLAVAUX", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38469"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b474c9ad78d80a57c10a4b1c48b7ac9996d2622", "fields": {"nom_de_la_commune": "SARDIEU", "libell_d_acheminement": "SARDIEU", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38473"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00bb0fbb76a775654a9295d06a253550024ce6c", "fields": {"nom_de_la_commune": "SATOLAS ET BONCE", "libell_d_acheminement": "SATOLAS ET BONCE", "code_postal": "38290", "coordonnees_gps": [45.6634032734, 5.1509887973], "code_commune_insee": "38475"}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bcdc632048fb10a8f82c58a128215e44a01562a", "fields": {"nom_de_la_commune": "SEPTEME", "libell_d_acheminement": "SEPTEME", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38480"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0ef9c8bd29cf35c9606d2bf1c897212b29fe02", "fields": {"nom_de_la_commune": "SEYSSUEL", "libell_d_acheminement": "SEYSSUEL", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38487"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d33ae9f6b53bb640df14d0fc99141a18af2e5a", "fields": {"nom_de_la_commune": "SONNAY", "libell_d_acheminement": "SONNAY", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38496"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7dbaa246edb4d27ed1b7de83ff59988f4bf46e5", "fields": {"nom_de_la_commune": "SOUSVILLE", "libell_d_acheminement": "SOUSVILLE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38497"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177e706e95b65f041520f966febf51281606bb14", "fields": {"code_postal": "38230", "code_commune_insee": "38507", "libell_d_acheminement": "TIGNIEU JAMEYZIEU", "ligne_5": "JAMEYZIEU", "nom_de_la_commune": "TIGNIEU JAMEYZIEU", "coordonnees_gps": [45.7461483574, 5.17160988161]}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c74cf37b47a37cf5d62890a003b0d4683b8107", "fields": {"nom_de_la_commune": "TORCHEFELON", "libell_d_acheminement": "TORCHEFELON", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38508"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ff6e2a43ad7a2317aad0f5a4844d2292da56fb", "fields": {"nom_de_la_commune": "LE TOUVET", "libell_d_acheminement": "LE TOUVET", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38511"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e2bafb9750fe53f7693be41d61abe3a0931619", "fields": {"nom_de_la_commune": "TULLINS", "libell_d_acheminement": "TULLINS", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38517"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c0d376d8e167c56e24027ffabe01a2d4ba43cf", "fields": {"nom_de_la_commune": "VARACIEUX", "libell_d_acheminement": "VARACIEUX", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38523"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23dea91f256009b7570c9106a4ac98795d2b84c", "fields": {"nom_de_la_commune": "VARCES ALLIERES ET RISSET", "libell_d_acheminement": "VARCES ALLIERES ET RISSET", "code_postal": "38760", "coordonnees_gps": [45.0790840767, 5.65520915705], "code_commune_insee": "38524"}, "geometry": {"type": "Point", "coordinates": [5.65520915705, 45.0790840767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178bfcfc215a81e856c42f90d757e4cf4480e5f2", "fields": {"code_postal": "38410", "code_commune_insee": "38529", "libell_d_acheminement": "VAULNAVEYS LE HAUT", "ligne_5": "URIAGE", "nom_de_la_commune": "VAULNAVEYS LE HAUT", "coordonnees_gps": [45.1312146211, 5.85219394747]}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12003451e0b7ec904bba1fc00a0d6f538fe45768", "fields": {"nom_de_la_commune": "VENOSC", "libell_d_acheminement": "VENOSC", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38534"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a28f74597dff7265590a3942cb4ea3fc204117b7", "fields": {"nom_de_la_commune": "VERTRIEU", "libell_d_acheminement": "VERTRIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38539"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc3d025d9ee2d6b805c6a239d953e7617f602a0", "fields": {"code_postal": "38510", "code_commune_insee": "38543", "libell_d_acheminement": "VEZERONCE CURTIN", "ligne_5": "CURTIN", "nom_de_la_commune": "VEZERONCE CURTIN", "coordonnees_gps": [45.7026691916, 5.45358290741]}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a118192ddbdd87058a2e506b2cdf07acaf72a68f", "fields": {"code_postal": "38190", "code_commune_insee": "38547", "libell_d_acheminement": "VILLARD BONNOT", "ligne_5": "BRIGNOUD", "nom_de_la_commune": "VILLARD BONNOT", "coordonnees_gps": [45.2307367976, 5.94776788691]}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a206ab9fcff171af508c336c6841ceae7b99c25d", "fields": {"nom_de_la_commune": "VILLARD DE LANS", "libell_d_acheminement": "VILLARD DE LANS", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38548"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a41d1160bfeab33ae9df3ba897701e6f38baf78", "fields": {"code_postal": "38280", "code_commune_insee": "38557", "libell_d_acheminement": "VILLETTE D ANTHON", "ligne_5": "ASNIERES", "nom_de_la_commune": "VILLETTE D ANTHON", "coordonnees_gps": [45.7761558636, 5.11926140068]}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d520d653e2e02f583966bef6ee67238aad7f7a42", "fields": {"nom_de_la_commune": "VINAY", "libell_d_acheminement": "VINAY", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38559"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe371d4338ba2f80cbb9abcf16a2c93fcb3c529", "fields": {"nom_de_la_commune": "VOIRON", "libell_d_acheminement": "VOIRON", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38563"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df9d4ae83e01ae0b78eab7b72557ca579cc9f7c", "fields": {"nom_de_la_commune": "AMANGE", "libell_d_acheminement": "AMANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39008"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b62014612af1679c60becaf8d24b2fb0a235e037", "fields": {"nom_de_la_commune": "ANDELOT EN MONTAGNE", "libell_d_acheminement": "ANDELOT EN MONTAGNE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39009"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c0ab40310b6315416bb8668daed309924ba907", "fields": {"code_postal": "39210", "code_commune_insee": "39017", "libell_d_acheminement": "ARLAY", "ligne_5": "ST GERMAIN LES ARLAY", "nom_de_la_commune": "ARLAY", "coordonnees_gps": [46.742636609, 5.62862510157]}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a76fe58f405ea8f1a03dac343647528a6b0960", "fields": {"nom_de_la_commune": "AUDELANGE", "libell_d_acheminement": "AUDELANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39024"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfb71f0461d011169e43e161c3e78f19cabafaf", "fields": {"nom_de_la_commune": "LA BARRE", "libell_d_acheminement": "LA BARRE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39039"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6bb8fa591ed64f715fec4f40331fd2bf6f93600", "fields": {"nom_de_la_commune": "BARRETAINE", "libell_d_acheminement": "BARRETAINE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39040"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3205a04ca56e7bb9b9d7637c2fc050fcaebedf9c", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39047"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69e7281e8dcf32244107d26b860a9e26b0c3bdd", "fields": {"code_postal": "39800", "code_commune_insee": "39049", "libell_d_acheminement": "BERSAILLIN", "ligne_5": "LE BOUCHAUD", "nom_de_la_commune": "BERSAILLIN", "coordonnees_gps": [46.840381623, 5.68546108472]}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bc7aa91bd48291adf364918a42a5f4208dee4c", "fields": {"nom_de_la_commune": "BIARNE", "libell_d_acheminement": "BIARNE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39051"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315f304f3882db4d714c091c4b39287f02a1dd0e", "fields": {"nom_de_la_commune": "BIEFMORIN", "libell_d_acheminement": "BIEFMORIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39054"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2dce9b89c11f43493d97e6d1f89f281ab112f2", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39062"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e8c98c6eb75033cfc34b73a37311eb149b0178", "fields": {"nom_de_la_commune": "BOURG DE SIROD", "libell_d_acheminement": "BOURG DE SIROD", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39070"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cac81b737f917eb80a035dc98c0dad05caf9777", "fields": {"nom_de_la_commune": "BRACON", "libell_d_acheminement": "BRACON", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39072"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a095312b35b49f6181b78ec714c9e63bd000bc7", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16304"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0eed7a6e592264deef5df331562ce6ab20ad6b", "fields": {"nom_de_la_commune": "ST CIERS SUR BONNIEURE", "libell_d_acheminement": "ST CIERS SUR BONNIEURE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16307"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aab88e0f5affbbbd386ba542508da872aad76d4", "fields": {"nom_de_la_commune": "ST COUTANT", "libell_d_acheminement": "ST COUTANT", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16310"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98b5cdabeee3988ed528c5ee7632170ee595282", "fields": {"nom_de_la_commune": "ST GENIS D HIERSAC", "libell_d_acheminement": "ST GENIS D HIERSAC", "code_postal": "16570", "coordonnees_gps": [45.7496501678, 0.052973066949], "code_commune_insee": "16320"}, "geometry": {"type": "Point", "coordinates": [0.052973066949, 45.7496501678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f38e4c28ecbabbf5e197c74c64299edc77c8c0cc", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16332"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99746048391d2c3ec4683959624dfd5ddb83ba7e", "fields": {"code_postal": "16170", "code_commune_insee": "16339", "libell_d_acheminement": "AUGE ST MEDARD", "ligne_5": "ST MEDARD", "nom_de_la_commune": "AUGE ST MEDARD", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcd60f9f020192e3e07237b11e4f57204e075074", "fields": {"nom_de_la_commune": "ST PALAIS DU NE", "libell_d_acheminement": "ST PALAIS DU NE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16342"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80e5f2fedeca0fed788783d3d623e4f01f4574b", "fields": {"nom_de_la_commune": "ST QUENTIN DE CHALAIS", "libell_d_acheminement": "ST QUENTIN DE CHALAIS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16346"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5894f4d769978d4542101fac848cd09b84555e6a", "fields": {"nom_de_la_commune": "STE SEVERE", "libell_d_acheminement": "STE SEVERE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16349"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2954eef33688af84e12dddadad4c43dfee0d78f2", "fields": {"nom_de_la_commune": "ST SEVERIN", "libell_d_acheminement": "ST SEVERIN", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16350"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9f48eb35751c80b1239cc41098f8b71eb5859a", "fields": {"nom_de_la_commune": "STE SOULINE", "libell_d_acheminement": "STE SOULINE", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16354"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab56d4781af2e4de3b4f3885c5afae3e6ccde468", "fields": {"nom_de_la_commune": "ST SULPICE DE COGNAC", "libell_d_acheminement": "ST SULPICE DE COGNAC", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16355"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b10f3024e7ad5355c4f7079c706ca5ed07df0db", "fields": {"nom_de_la_commune": "SEGONZAC", "libell_d_acheminement": "SEGONZAC", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16366"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61713b4bd60c3184a79af54cd32c8ea36e6b64ec", "fields": {"nom_de_la_commune": "TOUVRE", "libell_d_acheminement": "TOUVRE", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16385"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c08149d2db5aa5477d3396e0d0e7084de00fba", "fields": {"nom_de_la_commune": "VARS", "libell_d_acheminement": "VARS", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16393"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc8fddcec9b31162117905ac3779a54e9436e83", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16399"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd120a65fb22428564d1c1b786518e706e5b828", "fields": {"nom_de_la_commune": "VOEUIL ET GIGET", "libell_d_acheminement": "VOEUIL ET GIGET", "code_postal": "16400", "coordonnees_gps": [45.6075102934, 0.129005095086], "code_commune_insee": "16418"}, "geometry": {"type": "Point", "coordinates": [0.129005095086, 45.6075102934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e281ff4fc3505d064eb022bc20438b831e1d14", "fields": {"nom_de_la_commune": "VOUHARTE", "libell_d_acheminement": "VOUHARTE", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16419"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5b5a4c7ddd6379cf743489569bde8d482f4d56", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17008"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ba926506ea5607d5a13f5a9d749920a7059b04", "fields": {"code_postal": "17400", "code_commune_insee": "17013", "libell_d_acheminement": "ANTEZANT LA CHAPELLE", "ligne_5": "LA CHAPELLE BATON", "nom_de_la_commune": "ANTEZANT LA CHAPELLE", "coordonnees_gps": [45.947220271, -0.4881385622]}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a7a32d69370110fda6560e955d59e6b7152dbc", "fields": {"nom_de_la_commune": "ARCES", "libell_d_acheminement": "ARCES", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17015"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb292b3bffec1173ce225e87aa948fbff8eeee19", "fields": {"nom_de_la_commune": "ARDILLIERES", "libell_d_acheminement": "ARDILLIERES", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17018"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb10ba321cde8cc7f8deed67aaadd60a10fd190", "fields": {"nom_de_la_commune": "ARS EN RE", "libell_d_acheminement": "ARS EN RE", "code_postal": "17590", "coordonnees_gps": [46.2211665478, -1.52366655829], "code_commune_insee": "17019"}, "geometry": {"type": "Point", "coordinates": [-1.52366655829, 46.2211665478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f25fd47e6e9b7079b1af49a26ca881e5ce71936", "fields": {"nom_de_la_commune": "ARVERT", "libell_d_acheminement": "ARVERT", "code_postal": "17530", "coordonnees_gps": [45.7468740893, -1.12373181076], "code_commune_insee": "17021"}, "geometry": {"type": "Point", "coordinates": [-1.12373181076, 45.7468740893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79eb42f0d3839c29416a8432e0b7b58c4b19ab0c", "fields": {"nom_de_la_commune": "AVY", "libell_d_acheminement": "AVY", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17027"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0a36691e1868286ed51031d804e5973679b1d7", "fields": {"nom_de_la_commune": "BALLANS", "libell_d_acheminement": "BALLANS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17031"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257d6a03a3a32053277e07e38820e2e331a223b1", "fields": {"nom_de_la_commune": "BARZAN", "libell_d_acheminement": "BARZAN", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17034"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c838bc22dfff5ae52636170d5ec09634a5d8a481", "fields": {"nom_de_la_commune": "BEAUGEAY", "libell_d_acheminement": "BEAUGEAY", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17036"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecae4e5b9921c8c0363ee902bdb580db83b69c8", "fields": {"nom_de_la_commune": "BERCLOUX", "libell_d_acheminement": "BERCLOUX", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17042"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3dd4c45010f61339166523711434f76856f6002", "fields": {"code_postal": "17330", "code_commune_insee": "17043", "libell_d_acheminement": "BERNAY ST MARTIN", "ligne_5": "ST MARTIN DE LA COUDRE", "nom_de_la_commune": "BERNAY ST MARTIN", "coordonnees_gps": [46.0720131414, -0.537761612813]}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee53b30973e532340f24a0cc502376c97910534", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17044"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d39dcaddbf152ad84e7e0a977a926eb18a7a86", "fields": {"nom_de_la_commune": "BIGNAY", "libell_d_acheminement": "BIGNAY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17046"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04dab78da1285a8eec3db77289f9895a7df8ba82", "fields": {"nom_de_la_commune": "BORESSE ET MARTRON", "libell_d_acheminement": "BORESSE ET MARTRON", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17054"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4152f1152df5aa273ea1749bc4ed46c36d47c8", "fields": {"nom_de_la_commune": "BREUIL LA REORTE", "libell_d_acheminement": "BREUIL LA REORTE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17063"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c6af96a5d9a4f7cd13890a0b3c173602109a74", "fields": {"nom_de_la_commune": "BRIE SOUS MATHA", "libell_d_acheminement": "BRIE SOUS MATHA", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17067"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f107ce2dd4d153219e6324106e68766581a9dd54", "fields": {"nom_de_la_commune": "BURIE", "libell_d_acheminement": "BURIE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17072"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6254e83e76a560e7ebaf088fc61e8ed3308aca9", "fields": {"nom_de_la_commune": "BUSSAC FORET", "libell_d_acheminement": "BUSSAC FORET", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17074"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbab73c81c68d52bfedcfd04e3778f45766c4da", "fields": {"nom_de_la_commune": "CHADENAC", "libell_d_acheminement": "CHADENAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17078"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1236be7ffe149a0288d7aabc9fdb51bc6be42b43", "fields": {"nom_de_la_commune": "CHAMOUILLAC", "libell_d_acheminement": "CHAMOUILLAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17081"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4336a3ed40ad71d55510db95ed29fc153d5879a", "fields": {"nom_de_la_commune": "CHAMPDOLENT", "libell_d_acheminement": "CHAMPDOLENT", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17085"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095bb90fe1e1415781cbfcba9abcdd82afcaf11c", "fields": {"nom_de_la_commune": "CHANIERS", "libell_d_acheminement": "CHANIERS", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17086"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7755ffcd5ce001bc6037f2925849327ea73cd722", "fields": {"nom_de_la_commune": "CHANTEMERLE SUR LA SOIE", "libell_d_acheminement": "CHANTEMERLE SUR LA SOIE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17087"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58cef9d64d77b68e61940689d102c7e3d2b0e71", "fields": {"nom_de_la_commune": "LA CHAPELLE DES POTS", "libell_d_acheminement": "LA CHAPELLE DES POTS", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17089"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140943f2c1ada4a76258ef09ecafbf8c3fa7bbdb", "fields": {"nom_de_la_commune": "CHARRON", "libell_d_acheminement": "CHARRON", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17091"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5f6b6c3ecb89e2ff1f532e78fb54b909ddf46a", "fields": {"nom_de_la_commune": "CHATELAILLON PLAGE", "libell_d_acheminement": "CHATELAILLON PLAGE", "code_postal": "17340", "coordonnees_gps": [46.0464260547, -1.04444906455], "code_commune_insee": "17094"}, "geometry": {"type": "Point", "coordinates": [-1.04444906455, 46.0464260547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f7528276e714c5b950c610cdb6e1ee123328fc", "fields": {"nom_de_la_commune": "LA COUARDE SUR MER", "libell_d_acheminement": "LA COUARDE SUR MER", "code_postal": "17670", "coordonnees_gps": [46.2015077019, -1.43667293665], "code_commune_insee": "17121"}, "geometry": {"type": "Point", "coordinates": [-1.43667293665, 46.2015077019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3ca86e838e7ffa181f0427a03d61088bd1bedb5", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17125"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7275a90f66d68525f3f6bf8a962d4a277faa9dd", "fields": {"nom_de_la_commune": "COURCERAC", "libell_d_acheminement": "COURCERAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17126"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927e934447c368ff92b2b50ec47aa097f251a460", "fields": {"nom_de_la_commune": "COURPIGNAC", "libell_d_acheminement": "COURPIGNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17129"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c301180249e0be6094c7e2568a45abf22bc4274", "fields": {"nom_de_la_commune": "CRAMCHABAN", "libell_d_acheminement": "CRAMCHABAN", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17132"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc0b64434b7f5de0d76124eee820864468d5594", "fields": {"nom_de_la_commune": "DAMPIERRE SUR BOUTONNE", "libell_d_acheminement": "DAMPIERRE SUR BOUTONNE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17138"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c76835154bba703a8510a07988bb59abbac437a", "fields": {"nom_de_la_commune": "DOMPIERRE SUR CHARENTE", "libell_d_acheminement": "DOMPIERRE SUR CHARENTE", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17141"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdeae111ea63fb1e2c7e62b1c3a3b697605bdd2", "fields": {"nom_de_la_commune": "ECHILLAIS", "libell_d_acheminement": "ECHILLAIS", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17146"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd62c01054c54eb8830ffaea16dd4e333e41770", "fields": {"nom_de_la_commune": "LA FLOTTE", "libell_d_acheminement": "LA FLOTTE", "code_postal": "17630", "coordonnees_gps": [46.1793340347, -1.32137333806], "code_commune_insee": "17161"}, "geometry": {"type": "Point", "coordinates": [-1.32137333806, 46.1793340347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442a95dec05a1fc4df659d781d33e63a31f49b36", "fields": {"code_postal": "17290", "code_commune_insee": "17166", "libell_d_acheminement": "FORGES", "ligne_5": "PUYDROUARD", "nom_de_la_commune": "FORGES", "coordonnees_gps": [46.0811400523, -0.91821720861]}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3540c32ffd313afa326f0b2f8fde02c29ac2a52", "fields": {"nom_de_la_commune": "LE FOUILLOUX", "libell_d_acheminement": "LE FOUILLOUX", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17167"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04bf81f64b52f63d18979088b2db6d7cccdf564", "fields": {"nom_de_la_commune": "LES GONDS", "libell_d_acheminement": "LES GONDS", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17179"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968ca2c952ec20cbfb5dadb11fa9943e2c13c219", "fields": {"nom_de_la_commune": "GRANDJEAN", "libell_d_acheminement": "GRANDJEAN", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17181"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78da836b365e1430b96ffa7e846f0cd579e5a0d", "fields": {"nom_de_la_commune": "LA GRIPPERIE ST SYMPHORIEN", "libell_d_acheminement": "LA GRIPPERIE ST SYMPHORIEN", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17184"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6849bc928129346ae9dd2c8f2ac8e1851695e989", "fields": {"nom_de_la_commune": "LE GUE D ALLERE", "libell_d_acheminement": "LE GUE D ALLERE", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17186"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad49d3a242f19813952cf0583caa5f0abf65979", "fields": {"nom_de_la_commune": "LA JARRIE", "libell_d_acheminement": "LA JARRIE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17194"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4dc86b64825c3ef8f17da484eeff3191bbc8f1f", "fields": {"nom_de_la_commune": "LA JARRIE AUDOUIN", "libell_d_acheminement": "LA JARRIE AUDOUIN", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17195"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b1a7da258dd934f6b84f80c7f73de3fcaf38dd", "fields": {"nom_de_la_commune": "JONZAC", "libell_d_acheminement": "JONZAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17197"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f5534c47ebb28af30384dc6967af70aa3af8a28", "fields": {"nom_de_la_commune": "JUICQ", "libell_d_acheminement": "JUICQ", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17198"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555090e319a47daeb69b695797f4a26093c074fc", "fields": {"nom_de_la_commune": "LA LAIGNE", "libell_d_acheminement": "LA LAIGNE", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17201"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5a323c7e305c844eff31f403a898d9b3f596e0", "fields": {"nom_de_la_commune": "LEOVILLE", "libell_d_acheminement": "LEOVILLE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17204"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3d32ef5bd574068348cd79fd7d021eed974ec6", "fields": {"nom_de_la_commune": "LOIRE LES MARAIS", "libell_d_acheminement": "LOIRE LES MARAIS", "code_postal": "17870", "coordonnees_gps": [45.997423768, -0.952432247798], "code_commune_insee": "17205"}, "geometry": {"type": "Point", "coordinates": [-0.952432247798, 45.997423768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2ac7b39b5eb5d79bf5160237f8572d2f3b9d499", "fields": {"nom_de_la_commune": "LORIGNAC", "libell_d_acheminement": "LORIGNAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17210"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6015dd15818822dec92aee057042add05d63ae", "fields": {"nom_de_la_commune": "LOULAY", "libell_d_acheminement": "LOULAY", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17211"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75771b6e82664e9cb6c341e0dac29986acce049", "fields": {"nom_de_la_commune": "LOUZIGNAC", "libell_d_acheminement": "LOUZIGNAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17212"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f474ec46f4ea1392316b501f83b017d8701c4eaf", "fields": {"nom_de_la_commune": "MARENNES", "libell_d_acheminement": "MARENNES", "code_postal": "17320", "coordonnees_gps": [45.8153693416, -1.06418747186], "code_commune_insee": "17219"}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb72affd4ac760fdffb595ce8b1a6826bbd4ce3", "fields": {"nom_de_la_commune": "MASSAC", "libell_d_acheminement": "MASSAC", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17223"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f59d9458efee0eba6da36789b63d4745e82e6c7", "fields": {"nom_de_la_commune": "MATHA", "libell_d_acheminement": "MATHA", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17224"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559265a715c54679a36f536f884bcc57ed31af5d", "fields": {"nom_de_la_commune": "MEDIS", "libell_d_acheminement": "MEDIS", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17228"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274d084112bad7024bf973c6fa2910d8186318d9", "fields": {"nom_de_la_commune": "MESCHERS SUR GIRONDE", "libell_d_acheminement": "MESCHERS SUR GIRONDE", "code_postal": "17132", "coordonnees_gps": [45.5729919786, -0.94783085679], "code_commune_insee": "17230"}, "geometry": {"type": "Point", "coordinates": [-0.94783085679, 45.5729919786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4cee3df8a6b728f93325ce72b8c3152cef36dc", "fields": {"nom_de_la_commune": "MEURSAC", "libell_d_acheminement": "MEURSAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17232"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08373c8c33fb4963921192a7d9e3b45ff5548aa8", "fields": {"nom_de_la_commune": "MOEZE", "libell_d_acheminement": "MOEZE", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17237"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d6ad4566706121edc619420c3bf8b682dd6e25", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17239"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0336537e609ed409b0bbb3cfeb00256e6f172284", "fields": {"code_postal": "17130", "code_commune_insee": "17240", "libell_d_acheminement": "MONTENDRE", "ligne_5": "CHARDES", "nom_de_la_commune": "MONTENDRE", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b080e9e48cc57b723815f959c7d01310d7899647", "fields": {"nom_de_la_commune": "MORAGNE", "libell_d_acheminement": "MORAGNE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17246"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca40e697437dce7dbd6fce6d0694325a82823a2a", "fields": {"nom_de_la_commune": "MURON", "libell_d_acheminement": "MURON", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17253"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5a31969bae0ff6b321b6428c38fa894454cdc9", "fields": {"nom_de_la_commune": "NANTILLE", "libell_d_acheminement": "NANTILLE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17256"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162e0c9f3954d34f2b3efd96a4b55a90eb27a980", "fields": {"nom_de_la_commune": "NEUILLAC", "libell_d_acheminement": "NEUILLAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17258"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3aa12bfaeb1e9520414d25585f04360b28129ed", "fields": {"nom_de_la_commune": "NEUVICQ", "libell_d_acheminement": "NEUVICQ", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17260"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dce21cb16d684bdc3b55015c88ff802bb55d88", "fields": {"nom_de_la_commune": "NEUVICQ LE CHATEAU", "libell_d_acheminement": "NEUVICQ LE CHATEAU", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17261"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da762d8419c0eeebea774a2e79161e2e5053649d", "fields": {"nom_de_la_commune": "LES NOUILLERS", "libell_d_acheminement": "LES NOUILLERS", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17266"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272ea0a904ce51b95628c781a26ed073e1ed422b", "fields": {"nom_de_la_commune": "PERE", "libell_d_acheminement": "PERE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17272"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b57422672fa5d0aaefdf5f37d8767bfa1494f9b", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "17180", "coordonnees_gps": [46.1578203899, -1.08917010815], "code_commune_insee": "17274"}, "geometry": {"type": "Point", "coordinates": [-1.08917010815, 46.1578203899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac5a4e448a9743abbd6a8170551c999fe6a168f", "fields": {"nom_de_la_commune": "POMMIERS MOULONS", "libell_d_acheminement": "POMMIERS MOULONS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17282"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852797b11b889117a6855341a8e4f9cda20ed516", "fields": {"nom_de_la_commune": "POUILLAC", "libell_d_acheminement": "POUILLAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17287"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b4ce9c4e4fe887559a7f0af743a32b9311b496", "fields": {"code_postal": "17500", "code_commune_insee": "17295", "libell_d_acheminement": "REAUX SUR TREFLE", "ligne_5": "ST MAURICE DE TAVERNOLE", "nom_de_la_commune": "REAUX SUR TREFLE", "coordonnees_gps": [45.4259589472, -0.405217175017]}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b629f4d7db69ff9c0dab34d267e67e4af285507c", "fields": {"nom_de_la_commune": "ROCHEFORT", "libell_d_acheminement": "ROCHEFORT", "code_postal": "17300", "coordonnees_gps": [45.9492956651, -0.975348891655], "code_commune_insee": "17299"}, "geometry": {"type": "Point", "coordinates": [-0.975348891655, 45.9492956651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748371fb333db7bdfd39d6d5eea4aac92d5988e3", "fields": {"code_postal": "17000", "code_commune_insee": "17300", "libell_d_acheminement": "LA ROCHELLE", "ligne_5": "VILLENEUVE LES SALINES", "nom_de_la_commune": "LA ROCHELLE", "coordonnees_gps": [46.1620724166, -1.17485679534]}, "geometry": {"type": "Point", "coordinates": [-1.17485679534, 46.1620724166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7eace2f14504458c8934eae49ae8ece52adfe44", "fields": {"nom_de_la_commune": "ROMAZIERES", "libell_d_acheminement": "ROMAZIERES", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17301"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665d024acd89a04c1329fe8e7968b00d4ae6c3f4", "fields": {"nom_de_la_commune": "ROMEGOUX", "libell_d_acheminement": "ROMEGOUX", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17302"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e8a21f96d817f74efd7507f257f735789e146c", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17304"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7bd4fafbf0b315d00c3d942e9fd338bdbdb9b0", "fields": {"nom_de_la_commune": "ROYAN", "libell_d_acheminement": "ROYAN", "code_postal": "17200", "coordonnees_gps": [45.6547105842, -1.01223918175], "code_commune_insee": "17306"}, "geometry": {"type": "Point", "coordinates": [-1.01223918175, 45.6547105842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5cb290dd12a6e6f2e11bbb8e41777c0c4bf54b", "fields": {"nom_de_la_commune": "SABLONCEAUX", "libell_d_acheminement": "SABLONCEAUX", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17307"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd03c4eb35fd0e92a458d057ffa0a18e2eae4b6", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17327"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1f2d4a02d145420c4538ba352ccc7c9bd62145", "fields": {"nom_de_la_commune": "ST GEORGES DE DIDONNE", "libell_d_acheminement": "ST GEORGES DE DIDONNE", "code_postal": "17110", "coordonnees_gps": [45.6041837257, -0.980093700371], "code_commune_insee": "17333"}, "geometry": {"type": "Point", "coordinates": [-0.980093700371, 45.6041837257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc23eb636d10e30776e7dbb780e13d244b43a90a", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "CELLIERS", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a09e2b2397ba3f20e25302c5800284808e23833b", "fields": {"nom_de_la_commune": "LE NOYER", "libell_d_acheminement": "LE NOYER", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73192"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca72a0eee27f0516964957015b49570bacf57d8", "fields": {"nom_de_la_commune": "PEISEY NANCROIX", "libell_d_acheminement": "PEISEY NANCROIX", "code_postal": "73210", "coordonnees_gps": [45.5287564298, 6.7268231289], "code_commune_insee": "73197"}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e804b757e6720a8417fc6c786b2c60b7e2ad429a", "fields": {"nom_de_la_commune": "LA PERRIERE", "libell_d_acheminement": "LA PERRIERE", "code_postal": "73120", "coordonnees_gps": [45.3952559904, 6.63957315218], "code_commune_insee": "73198"}, "geometry": {"type": "Point", "coordinates": [6.63957315218, 45.3952559904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d294fc748be550a4599a2fc82907f44c302c106d", "fields": {"nom_de_la_commune": "ROCHEFORT", "libell_d_acheminement": "ROCHEFORT", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73214"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df197a2e469ed8a661b65aac89afd9f5505975c3", "fields": {"nom_de_la_commune": "RUFFIEUX", "libell_d_acheminement": "RUFFIEUX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73218"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42347f13aef43314e665be7d2f717ec3f384e49a", "fields": {"nom_de_la_commune": "ST BALDOPH", "libell_d_acheminement": "ST BALDOPH", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73225"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e8311b135738543b14e3354f4113ab016ba853", "fields": {"nom_de_la_commune": "ST BERON", "libell_d_acheminement": "ST BERON", "code_postal": "73520", "coordonnees_gps": [45.516425766, 5.73063906773], "code_commune_insee": "73226"}, "geometry": {"type": "Point", "coordinates": [5.73063906773, 45.516425766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3af190a4b666e5cc154d65a6a2f43f32c0379c1", "fields": {"nom_de_la_commune": "ST CASSIN", "libell_d_acheminement": "ST CASSIN", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73228"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f5597e270eaac0a44b447592794b730dd08331", "fields": {"nom_de_la_commune": "ST FRANC", "libell_d_acheminement": "ST FRANC", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73233"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e4623776c69637b448a6d360ee0907ebc5ad59", "fields": {"nom_de_la_commune": "ST FRANCOIS DE SALES", "libell_d_acheminement": "ST FRANCOIS DE SALES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73234"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e797511b8976d60ce31c63191738df5e26733e8b", "fields": {"nom_de_la_commune": "ST GENIX SUR GUIERS", "libell_d_acheminement": "ST GENIX SUR GUIERS", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73236"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e199d1c793ea24dcff9444b73ab3870cb6e85c8e", "fields": {"nom_de_la_commune": "ST JEAN DE MAURIENNE", "libell_d_acheminement": "ST JEAN DE MAURIENNE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73248"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc30b3b1487a8f592c8327cb9110e0fc9582b53f", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73253"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa67a3bc6245069aac7bc606d0f5493dd3dc1007", "fields": {"nom_de_la_commune": "STE MARIE D ALVEY", "libell_d_acheminement": "STE MARIE D ALVEY", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73254"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79879374cdb3f164c7085f805de0178e1d35686a", "fields": {"code_postal": "73440", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "LES MENUIRES", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3533056918, 6.49727541624]}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f126ff25881ba58c28d949f312c3a8b46612b6b", "fields": {"code_postal": "73440", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "VAL THORENS", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3533056918, 6.49727541624]}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da84ce24fd0acd1315b2bd0d217178f9e399d829", "fields": {"nom_de_la_commune": "ST MARTIN SUR LA CHAMBRE", "libell_d_acheminement": "ST MARTIN SUR LA CHAMBRE", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73259"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bb9e6b28b3e9acc996d8fc4e864827a7a51260", "fields": {"code_postal": "73140", "code_commune_insee": "73261", "libell_d_acheminement": "ST MICHEL DE MAURIENNE", "ligne_5": "THYL", "nom_de_la_commune": "ST MICHEL DE MAURIENNE", "coordonnees_gps": [45.2191220888, 6.52414175582]}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff3bdaba673919b6c1a73ba87572c4ab2484891", "fields": {"nom_de_la_commune": "ST OURS", "libell_d_acheminement": "ST OURS", "code_postal": "73410", "coordonnees_gps": [45.773124755, 5.93479737577], "code_commune_insee": "73265"}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f79e1b259441594ce4178ed408680ba84adb52a", "fields": {"nom_de_la_commune": "ST PIERRE D ALVEY", "libell_d_acheminement": "ST PIERRE D ALVEY", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73271"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97573a84d104883520541aa6eb97b47b87e21f1", "fields": {"nom_de_la_commune": "ST PIERRE DE CURTILLE", "libell_d_acheminement": "ST PIERRE DE CURTILLE", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73273"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2731468367d50f927a708dc65982e3ae83c97aae", "fields": {"nom_de_la_commune": "ST PIERRE D ENTREMONT", "libell_d_acheminement": "ST PIERRE D ENTREMONT", "code_postal": "73670", "coordonnees_gps": [45.4459970452, 5.88302688379], "code_commune_insee": "73274"}, "geometry": {"type": "Point", "coordinates": [5.88302688379, 45.4459970452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc2fd8ba0627eb528a3e40d9e1e8876db77e369", "fields": {"nom_de_la_commune": "TERMIGNON", "libell_d_acheminement": "TERMIGNON", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73290"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13811e860cf4bafa10964464f2bd8e5ef46cee87", "fields": {"nom_de_la_commune": "THENESOL", "libell_d_acheminement": "THENESOL", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73292"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa7b39d16aef258860f5195ea21ef8a54e9292f", "fields": {"nom_de_la_commune": "TIGNES", "libell_d_acheminement": "TIGNES", "code_postal": "73320", "coordonnees_gps": [45.4813899436, 6.93622536177], "code_commune_insee": "73296"}, "geometry": {"type": "Point", "coordinates": [6.93622536177, 45.4813899436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bd823ff9c3ee6eb334a13509917a5140fbdd460", "fields": {"nom_de_la_commune": "TOURNON", "libell_d_acheminement": "TOURNON", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73297"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00cab4e7617c58b878b827a7bd8eeff7fe1b3f74", "fields": {"nom_de_la_commune": "VERTHEMEX", "libell_d_acheminement": "VERTHEMEX", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73313"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af074bf1aa8f23d6bb314ae5b46023554ee6d1e4", "fields": {"nom_de_la_commune": "VILLAREMBERT", "libell_d_acheminement": "VILLAREMBERT", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73318"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7c72fd5ad160bd9c3fb3db1d439ec34ac2f2e9", "fields": {"nom_de_la_commune": "VIVIERS DU LAC", "libell_d_acheminement": "VIVIERS DU LAC", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73328"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824c6a18d08d2b6e6a511a02eb863cb9f29223aa", "fields": {"nom_de_la_commune": "ALLEVES", "libell_d_acheminement": "ALLEVES", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74004"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281fe738e251f90f9ae8298313c7e6f0a39ad909", "fields": {"code_postal": "74300", "code_commune_insee": "74014", "libell_d_acheminement": "ARACHES LA FRASSE", "ligne_5": "LA FRASSE", "nom_de_la_commune": "ARACHES LA FRASSE", "coordonnees_gps": [46.0342131745, 6.61842009953]}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb9661d335daa914b32a72e29438d03bc2de38f", "fields": {"nom_de_la_commune": "LE BOUCHET", "libell_d_acheminement": "LE BOUCHET MONT CHARVIN", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74045"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a973cee0335d93c3ce0b6ffd55b14b9a5741bcca", "fields": {"nom_de_la_commune": "CHAMPANGES", "libell_d_acheminement": "CHAMPANGES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74057"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0029644b3f61d29fd0dd6eb582491824f7690b", "fields": {"nom_de_la_commune": "LA CHAPELLE D ABONDANCE", "libell_d_acheminement": "LA CHAPELLE D ABONDANCE", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74058"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f492f1e1c80533ff594655202707772e1be5bbe", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MAURICE", "libell_d_acheminement": "LA CHAPELLE ST MAURICE", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74060"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0cb82ed4e5b6114a992d9f7a8b52f70fa63d5d", "fields": {"nom_de_la_commune": "CHAPEIRY", "libell_d_acheminement": "CHAPEIRY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74061"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a872c272a016c2bd7f338a1375de54ef1f651413", "fields": {"nom_de_la_commune": "CHAVANNAZ", "libell_d_acheminement": "CHAVANNAZ", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74066"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ae9774048b9fb2628290bf0a928723e92e9897", "fields": {"nom_de_la_commune": "CHENEX", "libell_d_acheminement": "CHENEX", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74069"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447464b05e1cc8b5a11c9f78a09d82b0fe186149", "fields": {"nom_de_la_commune": "CHEVENOZ", "libell_d_acheminement": "CHEVENOZ", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74073"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b622383f29977c0364d2ff9d41282ff2132d182", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74078"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42454b122c8000fcff0a4ce4484c829a2687b894", "fields": {"nom_de_la_commune": "LES CLEFS", "libell_d_acheminement": "LES CLEFS", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74079"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c0530d88eaff39436544651641e3306cbc1aab", "fields": {"nom_de_la_commune": "LA CLUSAZ", "libell_d_acheminement": "LA CLUSAZ", "code_postal": "74220", "coordonnees_gps": [45.9004131087, 6.4604843221], "code_commune_insee": "74080"}, "geometry": {"type": "Point", "coordinates": [6.4604843221, 45.9004131087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce47fe68b10c2e5c28d3e5d95574e8e277038dc4", "fields": {"nom_de_la_commune": "CLUSES", "libell_d_acheminement": "CLUSES", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74081"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41cbe3cc2e6e61f7a18df92c69f704293585f136", "fields": {"nom_de_la_commune": "COLLONGES SOUS SALEVE", "libell_d_acheminement": "COLLONGES SOUS SALEVE", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74082"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8961518b3c7096cbdf258dec08e650463fdf82f2", "fields": {"nom_de_la_commune": "CONTAMINE SUR ARVE", "libell_d_acheminement": "CONTAMINE SUR ARVE", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74087"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfae50c659b79e18933c682382b784eccd20b3b", "fields": {"nom_de_la_commune": "LA COTE D ARBROZ", "libell_d_acheminement": "LA COTE D ARBROZ", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74091"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7754fb79b8a3ddbb6c87cc79a4f293e5dde06eee", "fields": {"nom_de_la_commune": "CRAN GEVRIER", "libell_d_acheminement": "CRAN GEVRIER", "code_postal": "74960", "coordonnees_gps": [45.9084676642, 6.09877501469], "code_commune_insee": "74093"}, "geometry": {"type": "Point", "coordinates": [6.09877501469, 45.9084676642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6f1a1cb8b7942269cf03dd6b50be3d2eb2e886", "fields": {"nom_de_la_commune": "DEMI QUARTIER", "libell_d_acheminement": "DEMI QUARTIER", "code_postal": "74120", "coordonnees_gps": [45.8402620408, 6.61210896924], "code_commune_insee": "74099"}, "geometry": {"type": "Point", "coordinates": [6.61210896924, 45.8402620408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0f33905b18b001cf1dab08fe93eaab9c8d92fa", "fields": {"nom_de_la_commune": "ESSERT ROMAND", "libell_d_acheminement": "ESSERT ROMAND", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74114"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ef066d9010a471ec1ab3da99c5427398eb29f3", "fields": {"nom_de_la_commune": "FAUCIGNY", "libell_d_acheminement": "FAUCIGNY", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74122"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d708e9d2f09e8b77aad70b5dd7bd88abc8da2f0", "fields": {"nom_de_la_commune": "FAVERGES SEYTHENEX", "libell_d_acheminement": "FAVERGES SEYTHENEX", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74123"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa083931f86aa019aac7ca28612c51e6ba87b44", "fields": {"nom_de_la_commune": "FILLINGES", "libell_d_acheminement": "FILLINGES", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74128"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dbf9c4489533f7ff760e5b205f3fe872180ec78", "fields": {"nom_de_la_commune": "FRANGY", "libell_d_acheminement": "FRANGY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74131"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c9c2158892e9b328abf0a7935424d3bffe5492", "fields": {"nom_de_la_commune": "HERY SUR ALBY", "libell_d_acheminement": "HERY SUR ALBY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74142"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac97b4bab84d58a0f78a8a4b0146a36dd5035cc1", "fields": {"nom_de_la_commune": "JONZIER EPAGNY", "libell_d_acheminement": "JONZIER EPAGNY", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74144"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9da56edf914acfa8b3e63f07254375dddd4948", "fields": {"nom_de_la_commune": "LARRINGES", "libell_d_acheminement": "LARRINGES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74146"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df05ce007ffd2dd4ca930831d62e34ade02ad5ff", "fields": {"nom_de_la_commune": "LYAUD", "libell_d_acheminement": "LYAUD", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74157"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d427b789f15be87d2b9b7c7f536c0314c19884f5", "fields": {"code_postal": "74210", "code_commune_insee": "74167", "libell_d_acheminement": "VAL DE CHAISE", "ligne_5": "CONS STE COLOMBE", "nom_de_la_commune": "VAL DE CHAISE", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c86a739dd4a3058ac6e2217ae691bbffc81a2e", "fields": {"nom_de_la_commune": "MARLIOZ", "libell_d_acheminement": "MARLIOZ", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74168"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757fdc915157ddb7297d472034a7b370bfb514c4", "fields": {"nom_de_la_commune": "MEILLERIE", "libell_d_acheminement": "MEILLERIE", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74175"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364caf51c1dbeb4d61d9f4f7897391dc7eb8895c", "fields": {"nom_de_la_commune": "MENTHONNEX EN BORNES", "libell_d_acheminement": "MENTHONNEX EN BORNES", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74177"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1bf9627b6c7766125b66c8fc8282731bf15a28d", "fields": {"nom_de_la_commune": "MIEUSSY", "libell_d_acheminement": "MIEUSSY", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74183"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16009d38127d24b881028b7c303e621e41fd17e6", "fields": {"nom_de_la_commune": "MONTAGNY LES LANCHES", "libell_d_acheminement": "MONTAGNY LES LANCHES", "code_postal": "74600", "coordonnees_gps": [45.8556562518, 6.080880357], "code_commune_insee": "74186"}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ed1a3afed5b4099dffddfa11c839709230fe2a", "fields": {"nom_de_la_commune": "MONTRIOND", "libell_d_acheminement": "MONTRIOND", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74188"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c659a9c513d9e0cfcfccb06dc209a4348a404b", "fields": {"code_postal": "74110", "code_commune_insee": "74191", "libell_d_acheminement": "MORZINE", "ligne_5": "AVORIAZ", "nom_de_la_commune": "MORZINE", "coordonnees_gps": [46.1857834768, 6.72082435354]}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f06d60e617f746285e0a0cc63e6b508c36efa5a", "fields": {"nom_de_la_commune": "NEUVECELLE", "libell_d_acheminement": "NEUVECELLE", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74200"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5607787e3edbf422a07306a64cb933b91b4b7652", "fields": {"nom_de_la_commune": "PRAZ SUR ARLY", "libell_d_acheminement": "PRAZ SUR ARLY", "code_postal": "74120", "coordonnees_gps": [45.8402620408, 6.61210896924], "code_commune_insee": "74215"}, "geometry": {"type": "Point", "coordinates": [6.61210896924, 45.8402620408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2360a69952c37597f17583284b7038fa1cff9b", "fields": {"nom_de_la_commune": "PRESILLY", "libell_d_acheminement": "PRESILLY", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74216"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119dfb9d1b9498c62b4fdfaf76cdab2939297c18", "fields": {"code_postal": "74370", "code_commune_insee": "74217", "libell_d_acheminement": "PRINGY", "ligne_5": "FERRIERES", "nom_de_la_commune": "PRINGY", "coordonnees_gps": [45.9600301741, 6.15863714117]}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0357750df611c50a94f102eabe63175700550f", "fields": {"code_postal": "74500", "code_commune_insee": "74218", "libell_d_acheminement": "PUBLIER", "ligne_5": "AMPHION LES BAINS", "nom_de_la_commune": "PUBLIER", "coordonnees_gps": [46.3698657211, 6.65530659545]}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f96cb4341a957b35902f25fc9db6378ac314f51c", "fields": {"nom_de_la_commune": "RUMILLY", "libell_d_acheminement": "RUMILLY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74225"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92ea731c67e375fcb2a4a4762af70f11c79baa1", "fields": {"nom_de_la_commune": "ST GERMAIN SUR RHONE", "libell_d_acheminement": "ST GERMAIN SUR RHONE", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74235"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824d117039eb533382a1bfbcde25cfc86a85bd8c", "fields": {"nom_de_la_commune": "ST SYLVESTRE", "libell_d_acheminement": "ST SYLVESTRE", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74254"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad3e8a7ccee60ff98fb8ef3bd39bf2843f66b15", "fields": {"nom_de_la_commune": "SALES", "libell_d_acheminement": "SALES", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74255"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa074638d80b7611b04ff7f912244d7aaf71a587", "fields": {"nom_de_la_commune": "SALLANCHES", "libell_d_acheminement": "SALLANCHES", "code_postal": "74700", "coordonnees_gps": [45.935449139, 6.60325360691], "code_commune_insee": "74256"}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27e1c74a83b373b38c962ff31dc3454f758a534", "fields": {"nom_de_la_commune": "SALLENOVES", "libell_d_acheminement": "SALLENOVES", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74257"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31023e26241c2fbce271504f67afcd12ef835f00", "fields": {"nom_de_la_commune": "SAXEL", "libell_d_acheminement": "SAXEL", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74261"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df0fd1a1f4af335979b229eba9681ab0a3985d6", "fields": {"code_postal": "74600", "code_commune_insee": "74268", "libell_d_acheminement": "SEYNOD", "ligne_5": "VIEUGY", "nom_de_la_commune": "SEYNOD", "coordonnees_gps": [45.8556562518, 6.080880357]}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909a3a9bea039dc45323c77eb7be6246eda75b01", "fields": {"nom_de_la_commune": "SEYTROUX", "libell_d_acheminement": "SEYTROUX", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74271"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30adec35684c9ae78067d6d2a968237e0d6412d8", "fields": {"code_postal": "74150", "code_commune_insee": "74274", "libell_d_acheminement": "VAL DE FIER", "ligne_5": "ST ANDRE VAL DE FIER", "nom_de_la_commune": "VAL DE FIER", "coordonnees_gps": [45.8869887295, 5.94373659019]}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02de0c2912929ff45b63ed1c387ed3315d760afd", "fields": {"nom_de_la_commune": "THORENS GLIERES", "libell_d_acheminement": "THORENS GLIERES", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74282"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300becad418f7c9e8b9f6dbf421297b883e7971c", "fields": {"nom_de_la_commune": "VALLEIRY", "libell_d_acheminement": "VALLEIRY", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74288"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94625535dd465e4b9639f392b2232618a5e730c", "fields": {"nom_de_la_commune": "VALLIERES", "libell_d_acheminement": "VALLIERES", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74289"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a74d2b8bdb76a82d77d7b722913c30d29285df", "fields": {"nom_de_la_commune": "LA VERNAZ", "libell_d_acheminement": "LA VERNAZ", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74295"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57df77268f51104a7c9d0213b7a4f023a3dc07b9", "fields": {"nom_de_la_commune": "VERSONNEX", "libell_d_acheminement": "VERSONNEX", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74297"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d2fd21f5f950ba5ec234ed4b6dfa86b1ea47303", "fields": {"nom_de_la_commune": "VINZIER", "libell_d_acheminement": "VINZIER", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74308"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d4e1e8c91525de45a6a69b456bdd01db4a4fa9", "fields": {"nom_de_la_commune": "VOVRAY EN BORNES", "libell_d_acheminement": "VOVRAY EN BORNES", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74313"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f24690bd1de532fa8821de530897423ea361ed", "fields": {"nom_de_la_commune": "PARIS 11", "libell_d_acheminement": "PARIS", "code_postal": "75011", "coordonnees_gps": [48.8593266337, 2.37986086805], "code_commune_insee": "75111"}, "geometry": {"type": "Point", "coordinates": [2.37986086805, 48.8593266337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa8634ad30f3409cfb2a33d066768b4b6dabf08", "fields": {"nom_de_la_commune": "PARIS 12", "libell_d_acheminement": "PARIS", "code_postal": "75012", "coordonnees_gps": [48.8347421662, 2.42053665524], "code_commune_insee": "75112"}, "geometry": {"type": "Point", "coordinates": [2.42053665524, 48.8347421662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73b238da9209f08d32376627e427adccdcc0c27", "fields": {"nom_de_la_commune": "PARIS 15", "libell_d_acheminement": "PARIS", "code_postal": "75015", "coordonnees_gps": [48.8401714342, 2.29321693746], "code_commune_insee": "75115"}, "geometry": {"type": "Point", "coordinates": [2.29321693746, 48.8401714342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb939158c39a76fc4dab26de9bf67bee4788513a", "fields": {"nom_de_la_commune": "AMFREVILLE LA MI VOIE", "libell_d_acheminement": "AMFREVILLE LA MI VOIE", "code_postal": "76920", "coordonnees_gps": [49.404350421, 1.12446742024], "code_commune_insee": "76005"}, "geometry": {"type": "Point", "coordinates": [1.12446742024, 49.404350421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96033674ec9c7bbd5ff14720bec98fd10de19176", "fields": {"nom_de_la_commune": "AMFREVILLE LES CHAMPS", "libell_d_acheminement": "AMFREVILLE LES CHAMPS", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76006"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9076090dc10229ea2c6b40a1c9321ab46b6b17", "fields": {"nom_de_la_commune": "ANCOURT", "libell_d_acheminement": "ANCOURT", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76008"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b858bef4678eaf35394be57605458976ae52c0", "fields": {"nom_de_la_commune": "ANGERVILLE BAILLEUL", "libell_d_acheminement": "ANGERVILLE BAILLEUL", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76012"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904d9d46f25a970cd0521e6fecd2070bad6e0bfa", "fields": {"nom_de_la_commune": "ANGERVILLE LA MARTEL", "libell_d_acheminement": "ANGERVILLE LA MARTEL", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76013"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a188caa919808524de181372099466526d547c59", "fields": {"nom_de_la_commune": "ANGERVILLE L ORCHER", "libell_d_acheminement": "ANGERVILLE L ORCHER", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76014"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e672f527ef1d359944c2d45012f3527627eb772d", "fields": {"nom_de_la_commune": "ANNOUVILLE VILMESNIL", "libell_d_acheminement": "ANNOUVILLE VILMESNIL", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76021"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f685aa918c30046864930e65daa38cc8247dc1", "fields": {"nom_de_la_commune": "ARQUES LA BATAILLE", "libell_d_acheminement": "ARQUES LA BATAILLE", "code_postal": "76880", "coordonnees_gps": [49.8769596625, 1.14064902475], "code_commune_insee": "76026"}, "geometry": {"type": "Point", "coordinates": [1.14064902475, 49.8769596625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4074ba7f2863381fdc059d87fb8957d6e9054e0", "fields": {"nom_de_la_commune": "AUBEGUIMONT", "libell_d_acheminement": "AUBEGUIMONT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76028"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bed1c7283b3a295020d007ff31d3edc127ac11c", "fields": {"nom_de_la_commune": "QUINS", "libell_d_acheminement": "QUINS", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12194"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732b758be18fb6b43b2a95b63cd5779a06de80e7", "fields": {"nom_de_la_commune": "RIEUPEYROUX", "libell_d_acheminement": "RIEUPEYROUX", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12198"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e138cd98ba883d69f57e3e69c553a01adfc39c", "fields": {"nom_de_la_commune": "RIVIERE SUR TARN", "libell_d_acheminement": "RIVIERE SUR TARN", "code_postal": "12640", "coordonnees_gps": [44.1929221049, 3.13986623915], "code_commune_insee": "12200"}, "geometry": {"type": "Point", "coordinates": [3.13986623915, 44.1929221049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb2c4e1ed997a743c69484fdef7642034c6005d", "fields": {"code_postal": "12640", "code_commune_insee": "12200", "libell_d_acheminement": "RIVIERE SUR TARN", "ligne_5": "BOYNE", "nom_de_la_commune": "RIVIERE SUR TARN", "coordonnees_gps": [44.1929221049, 3.13986623915]}, "geometry": {"type": "Point", "coordinates": [3.13986623915, 44.1929221049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12633d3c4283c551c21d7a800dcec18c1b5636f9", "fields": {"nom_de_la_commune": "RODELLE", "libell_d_acheminement": "RODELLE", "code_postal": "12340", "coordonnees_gps": [44.4656002773, 2.70710459278], "code_commune_insee": "12201"}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04368b2f25cddf8d623df50e6842f8c93424055", "fields": {"nom_de_la_commune": "ST CHELY D AUBRAC", "libell_d_acheminement": "ST CHELY D AUBRAC", "code_postal": "12470", "coordonnees_gps": [44.5816447424, 2.9350498797], "code_commune_insee": "12214"}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "716b1a8d2379ecc8ffaa76bfb3e791d67a123a2d", "fields": {"code_postal": "12420", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "GRAISSAC", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.8196484767, 2.78404543455]}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b243387092a832d7878e7692aba3f882dc52ca", "fields": {"nom_de_la_commune": "ST GENIEZ D OLT ET D AUBRAC", "libell_d_acheminement": "ST GENIEZ D OLT ET D AUBRAC", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12224"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57adbe5b4933262d65387972fa55d8cb7b0476e0", "fields": {"code_postal": "12130", "code_commune_insee": "12224", "libell_d_acheminement": "ST GENIEZ D OLT ET D AUBRAC", "ligne_5": "AURELLE VERLAC", "nom_de_la_commune": "ST GENIEZ D OLT ET D AUBRAC", "coordonnees_gps": [44.4625155533, 2.98303027843]}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c04f10f39655029978ea5a99b3fa9bade0593827", "fields": {"nom_de_la_commune": "ST IZAIRE", "libell_d_acheminement": "ST IZAIRE", "code_postal": "12480", "coordonnees_gps": [43.9974313835, 2.69341373502], "code_commune_insee": "12228"}, "geometry": {"type": "Point", "coordinates": [2.69341373502, 43.9974313835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0f28c7750bf3326e0b1a6268d0670771f21981", "fields": {"nom_de_la_commune": "ST JEAN D ALCAPIES", "libell_d_acheminement": "ST JEAN D ALCAPIES", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12229"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee9a465716502d3ed02dc57787a983c0802de3b", "fields": {"nom_de_la_commune": "ST JEAN ET ST PAUL", "libell_d_acheminement": "ST JEAN ET ST PAUL", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12232"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2bda726397345a12f553e3a6a85b0cdd9b6292", "fields": {"nom_de_la_commune": "ST LAURENT D OLT", "libell_d_acheminement": "ST LAURENT D OLT", "code_postal": "12560", "coordonnees_gps": [44.416656717, 3.07038306451], "code_commune_insee": "12237"}, "geometry": {"type": "Point", "coordinates": [3.07038306451, 44.416656717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "412e6f29b7b2ba046c9d23b5f4c8726a6ee53e94", "fields": {"nom_de_la_commune": "ST LEONS", "libell_d_acheminement": "ST LEONS", "code_postal": "12780", "coordonnees_gps": [44.2546805214, 2.94192655254], "code_commune_insee": "12238"}, "geometry": {"type": "Point", "coordinates": [2.94192655254, 44.2546805214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38273e67b7de0fbc2cd2a0998137398523afa51f", "fields": {"nom_de_la_commune": "ST MARTIN DE LENNE", "libell_d_acheminement": "ST MARTIN DE LENNE", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12239"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dbc310984fc4ace3108f26512eabec7cebe9c6f", "fields": {"nom_de_la_commune": "ST ROME DE CERNON", "libell_d_acheminement": "ST ROME DE CERNON", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12243"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36bf9faa18808ea7729bcc78deb5038bb4ac6910", "fields": {"nom_de_la_commune": "ST SANTIN", "libell_d_acheminement": "ST SANTIN", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12246"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d840bc59073b797408e039316bc835b184d18ed5", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE THENIERES", "libell_d_acheminement": "ST SYMPHORIEN DE THENIERES", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12250"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d97d9a944fc41f5b1f283b30bbba5bf2c5d56e0", "fields": {"code_postal": "12400", "code_commune_insee": "12251", "libell_d_acheminement": "ST VICTOR ET MELVIEU", "ligne_5": "MELVIEU", "nom_de_la_commune": "ST VICTOR ET MELVIEU", "coordonnees_gps": [43.9345919276, 2.84832995912]}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376ff6e1a6906cfe6efb4233f6c8c0b4615862e1", "fields": {"nom_de_la_commune": "CAUSSE ET DIEGE", "libell_d_acheminement": "CAUSSE ET DIEGE", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12257"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dcc32bd8665a0ca743d702b8b4de02332405b67", "fields": {"code_postal": "12700", "code_commune_insee": "12257", "libell_d_acheminement": "CAUSSE ET DIEGE", "ligne_5": "GELLE", "nom_de_la_commune": "CAUSSE ET DIEGE", "coordonnees_gps": [44.5379394985, 2.08098402024]}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb106adaad924ad925034422b1acc9f3e603feda", "fields": {"nom_de_la_commune": "SEVERAC D AVEYRON", "libell_d_acheminement": "SEVERAC D AVEYRON", "code_postal": "12150", "coordonnees_gps": [44.2997462266, 3.08943327061], "code_commune_insee": "12270"}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba76a10718db89f2604830989cbfdba33161cd15", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "BUZEINS", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd5a9472de3eece476fdbc2a14d6968bb23b789", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "LAPANOUSE", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aadeae9c15bbeadda6b081e26812466303e6d4d", "fields": {"nom_de_la_commune": "TOULONJAC", "libell_d_acheminement": "TOULONJAC", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12281"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc79ceada7fb9bc1ce013a52ede831ac4888606", "fields": {"nom_de_la_commune": "VABRES L ABBAYE", "libell_d_acheminement": "VABRES L ABBAYE", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12286"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e7dffe3cba0f5ffc44eb6c7d92aafe1700c22b", "fields": {"nom_de_la_commune": "VAILHOURLES", "libell_d_acheminement": "VAILHOURLES", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12287"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1432c37a623402b2e3a341180658baca42eb37f0", "fields": {"nom_de_la_commune": "VAUREILLES", "libell_d_acheminement": "VAUREILLES", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12290"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d44cd9286cb1499ea4fec2980c38fca78026bcc2", "fields": {"nom_de_la_commune": "VERSOLS ET LAPEYRE", "libell_d_acheminement": "VERSOLS ET LAPEYRE", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12292"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecab1b09309a8f10bb46d16c12c8e8eb07c409b6", "fields": {"nom_de_la_commune": "VIALA DU TARN", "libell_d_acheminement": "VIALA DU TARN", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12296"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981bf57c95e169853e038aa394c7a58b572640e1", "fields": {"code_postal": "13080", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "LUYNES", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5360221556, 5.3983786513]}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73210bd16579604db3621f49477d056a07d8d4a3", "fields": {"nom_de_la_commune": "AIX EN PROVENCE", "libell_d_acheminement": "AIX EN PROVENCE", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13001"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df4325a54b6205a3fb35a86facb6dc6c9d3db38", "fields": {"nom_de_la_commune": "ALLAUCH", "libell_d_acheminement": "ALLAUCH", "code_postal": "13190", "coordonnees_gps": [43.3533311875, 5.51159330997], "code_commune_insee": "13002"}, "geometry": {"type": "Point", "coordinates": [5.51159330997, 43.3533311875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e24ab5034120da46def67f5c3b1f61ee419b5d", "fields": {"code_postal": "13190", "code_commune_insee": "13002", "libell_d_acheminement": "ALLAUCH", "ligne_5": "LE LOGIS NEUF", "nom_de_la_commune": "ALLAUCH", "coordonnees_gps": [43.3533311875, 5.51159330997]}, "geometry": {"type": "Point", "coordinates": [5.51159330997, 43.3533311875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ae0209273c7aa697cd6086e6964405e9064275", "fields": {"code_postal": "13980", "code_commune_insee": "13003", "libell_d_acheminement": "ALLEINS", "ligne_5": "LE BASTIDON", "nom_de_la_commune": "ALLEINS", "coordonnees_gps": [43.7076204697, 5.15079714455]}, "geometry": {"type": "Point", "coordinates": [5.15079714455, 43.7076204697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032c6133499a061fadf28c4ae7bbe1d833a6d2f4", "fields": {"code_postal": "13104", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "MAS THIBERT", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a92f93fa897d97e2a4c3da469ddd7b81c53a4de", "fields": {"code_postal": "13280", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "RAPHELE LES ARLES", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b0bf0e68a39f077652b2748a4b2906cc229cf33", "fields": {"nom_de_la_commune": "AUREILLE", "libell_d_acheminement": "AUREILLE", "code_postal": "13930", "coordonnees_gps": [43.6995718217, 4.94515042516], "code_commune_insee": "13006"}, "geometry": {"type": "Point", "coordinates": [4.94515042516, 43.6995718217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5725c48813169245017cea5505b8ae7e7f7dbc0d", "fields": {"nom_de_la_commune": "AURIOL", "libell_d_acheminement": "AURIOL", "code_postal": "13390", "coordonnees_gps": [43.3606572769, 5.65855124178], "code_commune_insee": "13007"}, "geometry": {"type": "Point", "coordinates": [5.65855124178, 43.3606572769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b7fa344fe9ab913b13bdd0cd808aa3dc3b12cf8", "fields": {"nom_de_la_commune": "LES BAUX DE PROVENCE", "libell_d_acheminement": "LES BAUX DE PROVENCE", "code_postal": "13520", "coordonnees_gps": [43.7214018039, 4.81156485939], "code_commune_insee": "13011"}, "geometry": {"type": "Point", "coordinates": [4.81156485939, 43.7214018039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4255bfa27ae8eece2e09d3029aafa68d9f01142a", "fields": {"code_postal": "13720", "code_commune_insee": "13016", "libell_d_acheminement": "LA BOUILLADISSE", "ligne_5": "LES GORGUETTES", "nom_de_la_commune": "LA BOUILLADISSE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769ef2e90f595f6bbd3305950016894699a3ef27", "fields": {"nom_de_la_commune": "CASSIS", "libell_d_acheminement": "CASSIS", "code_postal": "13260", "coordonnees_gps": [43.2234471201, 5.55039406046], "code_commune_insee": "13022"}, "geometry": {"type": "Point", "coordinates": [5.55039406046, 43.2234471201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c744c35f9dce61041ee7f5b66ddd5ca87fc65eac", "fields": {"code_postal": "13220", "code_commune_insee": "13026", "libell_d_acheminement": "CHATEAUNEUF LES MARTIGUES", "ligne_5": "LA MEDE", "nom_de_la_commune": "CHATEAUNEUF LES MARTIGUES", "coordonnees_gps": [43.3863844311, 5.14761190486]}, "geometry": {"type": "Point", "coordinates": [5.14761190486, 43.3863844311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c3c2744978570ac13a76f50cb82a13b6ef2bc2", "fields": {"nom_de_la_commune": "LA DESTROUSSE", "libell_d_acheminement": "LA DESTROUSSE", "code_postal": "13112", "coordonnees_gps": [43.3765379105, 5.5982047561], "code_commune_insee": "13031"}, "geometry": {"type": "Point", "coordinates": [5.5982047561, 43.3765379105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d19c218238851b3ec2f36dc34e3372c94fc450f", "fields": {"nom_de_la_commune": "GARDANNE", "libell_d_acheminement": "GARDANNE", "code_postal": "13120", "coordonnees_gps": [43.4527470657, 5.47999296124], "code_commune_insee": "13041"}, "geometry": {"type": "Point", "coordinates": [5.47999296124, 43.4527470657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe4e1b469160951d59222c86de7118f7b6ab6d2", "fields": {"nom_de_la_commune": "LAMBESC", "libell_d_acheminement": "LAMBESC", "code_postal": "13410", "coordonnees_gps": [43.6617671034, 5.25220573455], "code_commune_insee": "13050"}, "geometry": {"type": "Point", "coordinates": [5.25220573455, 43.6617671034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb17e5a6a8433cb0d3a1426efe5ff6dc1fd2b83a", "fields": {"nom_de_la_commune": "MAILLANE", "libell_d_acheminement": "MAILLANE", "code_postal": "13910", "coordonnees_gps": [43.8234960522, 4.78499491371], "code_commune_insee": "13052"}, "geometry": {"type": "Point", "coordinates": [4.78499491371, 43.8234960522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f03c68492a564b89f0288f1da94d1f41522649", "fields": {"nom_de_la_commune": "MARTIGUES", "libell_d_acheminement": "MARTIGUES", "code_postal": "13500", "coordonnees_gps": [43.3799117548, 5.04948307536], "code_commune_insee": "13056"}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47f72b5562b3089f6480e4da2e7d59e5b7c3aab", "fields": {"code_postal": "13500", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "LA COURONNE CARRO", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff75b19e626322c629c007550705f3c3a7464c6b", "fields": {"nom_de_la_commune": "MOURIES", "libell_d_acheminement": "MOURIES", "code_postal": "13890", "coordonnees_gps": [43.7008425521, 4.89071425436], "code_commune_insee": "13065"}, "geometry": {"type": "Point", "coordinates": [4.89071425436, 43.7008425521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db433da39169a78cb87bbbdc1720d54be3575a54", "fields": {"code_postal": "13170", "code_commune_insee": "13071", "libell_d_acheminement": "LES PENNES MIRABEAU", "ligne_5": "LA GAVOTTE", "nom_de_la_commune": "LES PENNES MIRABEAU", "coordonnees_gps": [43.4029905656, 5.31524145388]}, "geometry": {"type": "Point", "coordinates": [5.31524145388, 43.4029905656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb2c1e1190b8c5815ea8b3bd6cedd114be6fd18", "fields": {"nom_de_la_commune": "PEYROLLES EN PROVENCE", "libell_d_acheminement": "PEYROLLES EN PROVENCE", "code_postal": "13860", "coordonnees_gps": [43.6284523412, 5.57670538575], "code_commune_insee": "13074"}, "geometry": {"type": "Point", "coordinates": [5.57670538575, 43.6284523412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e4aea13cc89c1d21c639b2efd3603e22dbb1d7", "fields": {"nom_de_la_commune": "PLAN D ORGON", "libell_d_acheminement": "PLAN D ORGON", "code_postal": "13750", "coordonnees_gps": [43.8181633441, 5.00269454327], "code_commune_insee": "13076"}, "geometry": {"type": "Point", "coordinates": [5.00269454327, 43.8181633441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc002c5a7aa5ae6e21d2900be137bcff2c6d661", "fields": {"nom_de_la_commune": "PORT DE BOUC", "libell_d_acheminement": "PORT DE BOUC", "code_postal": "13110", "coordonnees_gps": [43.4229700953, 4.9921852229], "code_commune_insee": "13077"}, "geometry": {"type": "Point", "coordinates": [4.9921852229, 43.4229700953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e0cd95cefcf5e282d4295ed694824de9731686", "fields": {"nom_de_la_commune": "PUYLOUBIER", "libell_d_acheminement": "PUYLOUBIER", "code_postal": "13114", "coordonnees_gps": [43.5188199408, 5.67773327716], "code_commune_insee": "13079"}, "geometry": {"type": "Point", "coordinates": [5.67773327716, 43.5188199408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcbd74836f62e46ea943a361a0051cadbac86bf", "fields": {"code_postal": "13114", "code_commune_insee": "13079", "libell_d_acheminement": "PUYLOUBIER", "ligne_5": "LE BASTIDON", "nom_de_la_commune": "PUYLOUBIER", "coordonnees_gps": [43.5188199408, 5.67773327716]}, "geometry": {"type": "Point", "coordinates": [5.67773327716, 43.5188199408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0c9d4cda0b661274aca27ab85a3dd29d2ee002", "fields": {"nom_de_la_commune": "ROGNES", "libell_d_acheminement": "ROGNES", "code_postal": "13840", "coordonnees_gps": [43.6649387952, 5.35167076528], "code_commune_insee": "13082"}, "geometry": {"type": "Point", "coordinates": [5.35167076528, 43.6649387952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9074ed5663e7e274a1d5bd81d6becf16c5d193ab", "fields": {"nom_de_la_commune": "ROGNONAS", "libell_d_acheminement": "ROGNONAS", "code_postal": "13870", "coordonnees_gps": [43.8999714169, 4.79896042063], "code_commune_insee": "13083"}, "geometry": {"type": "Point", "coordinates": [4.79896042063, 43.8999714169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4663913e627f668fae3fb5dec5a1133422386b77", "fields": {"code_postal": "13360", "code_commune_insee": "13086", "libell_d_acheminement": "ROQUEVAIRE", "ligne_5": "LA BEGUDE", "nom_de_la_commune": "ROQUEVAIRE", "coordonnees_gps": [43.3435929565, 5.59815037095]}, "geometry": {"type": "Point", "coordinates": [5.59815037095, 43.3435929565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44665e802884afc8272ea45afbf72ef30381253", "fields": {"nom_de_la_commune": "ROUSSET", "libell_d_acheminement": "ROUSSET", "code_postal": "13790", "coordonnees_gps": [43.466397869, 5.61228660864], "code_commune_insee": "13087"}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7642be5a4d5737fa510bed1fd556262374d3ac2a", "fields": {"nom_de_la_commune": "ST CHAMAS", "libell_d_acheminement": "ST CHAMAS", "code_postal": "13250", "coordonnees_gps": [43.5560610417, 5.07443840982], "code_commune_insee": "13092"}, "geometry": {"type": "Point", "coordinates": [5.07443840982, 43.5560610417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df9e69e828272a1c843c59f276801a4d0b9e2b9", "fields": {"nom_de_la_commune": "ST MITRE LES REMPARTS", "libell_d_acheminement": "ST MITRE LES REMPARTS", "code_postal": "13920", "coordonnees_gps": [43.4552198835, 5.01538799425], "code_commune_insee": "13098"}, "geometry": {"type": "Point", "coordinates": [5.01538799425, 43.4552198835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942d7c13bc4fda223c134a50e44d825b4250a85a", "fields": {"nom_de_la_commune": "TARASCON", "libell_d_acheminement": "TARASCON", "code_postal": "13150", "coordonnees_gps": [43.811635575, 4.68697564727], "code_commune_insee": "13108"}, "geometry": {"type": "Point", "coordinates": [4.68697564727, 43.811635575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2bf2c6e4526e9993f82a85a038cdf5ef026fb6a", "fields": {"nom_de_la_commune": "VERNEGUES", "libell_d_acheminement": "VERNEGUES", "code_postal": "13116", "coordonnees_gps": [43.6844416811, 5.18849655038], "code_commune_insee": "13115"}, "geometry": {"type": "Point", "coordinates": [5.18849655038, 43.6844416811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79c54996b015cb95b69fb7d71ac0577132b1e9b", "fields": {"nom_de_la_commune": "VERQUIERES", "libell_d_acheminement": "VERQUIERES", "code_postal": "13670", "coordonnees_gps": [43.8324998868, 4.94392199564], "code_commune_insee": "13116"}, "geometry": {"type": "Point", "coordinates": [4.94392199564, 43.8324998868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d666173d7efd9b5b3baa3db2aea4d72b9f6b08e", "fields": {"nom_de_la_commune": "VITROLLES", "libell_d_acheminement": "VITROLLES", "code_postal": "13127", "coordonnees_gps": [43.4499704668, 5.26330452767], "code_commune_insee": "13117"}, "geometry": {"type": "Point", "coordinates": [5.26330452767, 43.4499704668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f690de1b08503649cdf053f062e5c8979e8903", "fields": {"nom_de_la_commune": "CARNOUX EN PROVENCE", "libell_d_acheminement": "CARNOUX EN PROVENCE", "code_postal": "13470", "coordonnees_gps": [43.2588037747, 5.56602474735], "code_commune_insee": "13119"}, "geometry": {"type": "Point", "coordinates": [5.56602474735, 43.2588037747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a695b9e089e15842f74ff9c3b7d267e5abb87eb", "fields": {"nom_de_la_commune": "MARSEILLE 01", "libell_d_acheminement": "MARSEILLE", "code_postal": "13001", "coordonnees_gps": [43.299995472, 5.38294677678], "code_commune_insee": "13201"}, "geometry": {"type": "Point", "coordinates": [5.38294677678, 43.299995472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6d7223ac9e0c8c8316881bac95e0f8d3e5ad0e", "fields": {"nom_de_la_commune": "MARSEILLE 07", "libell_d_acheminement": "MARSEILLE", "code_postal": "13007", "coordonnees_gps": [43.2803351496, 5.34204553112], "code_commune_insee": "13207"}, "geometry": {"type": "Point", "coordinates": [5.34204553112, 43.2803351496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e52462e47fcd8b822df394202798cefde4f26b6", "fields": {"nom_de_la_commune": "MARSEILLE 08", "libell_d_acheminement": "MARSEILLE", "code_postal": "13008", "coordonnees_gps": [43.2388428582, 5.37571442554], "code_commune_insee": "13208"}, "geometry": {"type": "Point", "coordinates": [5.37571442554, 43.2388428582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1832cdf3b5d82317e8553da5c7a6f5e3e55e80f0", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LA BATARELLE", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d729ccc547053ee64ba36f1cd71db55bb4e7be3", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LES OLIVES", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea2f2b86a741e8f3412eee354854b4bfa1f7406", "fields": {"nom_de_la_commune": "MARSEILLE 16", "libell_d_acheminement": "MARSEILLE", "code_postal": "13016", "coordonnees_gps": [43.3653397513, 5.31284148855], "code_commune_insee": "13216"}, "geometry": {"type": "Point", "coordinates": [5.31284148855, 43.3653397513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4ff68ad16ffc7360e1c2ec8968f15d06239432", "fields": {"code_postal": "14240", "code_commune_insee": "14011", "libell_d_acheminement": "ANCTOVILLE", "ligne_5": "FEUGUEROLLES SUR SEULLES", "nom_de_la_commune": "ANCTOVILLE", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784b372d5ece01cc46ab2327a47aadda736bce45", "fields": {"nom_de_la_commune": "ANGOVILLE", "libell_d_acheminement": "ANGOVILLE", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14013"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7a3e0bebe6a22bf45d6070ec29de5904126f7a", "fields": {"nom_de_la_commune": "ANISY", "libell_d_acheminement": "ANISY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14015"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b157f629a55cc33805f10337fb234093a4b6604c", "fields": {"nom_de_la_commune": "ARROMANCHES LES BAINS", "libell_d_acheminement": "ARROMANCHES LES BAINS", "code_postal": "14117", "coordonnees_gps": [49.3341466257, -0.646070140255], "code_commune_insee": "14021"}, "geometry": {"type": "Point", "coordinates": [-0.646070140255, 49.3341466257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b702d552f174833b47328f06d06b95b19a74678", "fields": {"nom_de_la_commune": "ASNELLES", "libell_d_acheminement": "ASNELLES", "code_postal": "14960", "coordonnees_gps": [49.3273918281, -0.583379928435], "code_commune_insee": "14022"}, "geometry": {"type": "Point", "coordinates": [-0.583379928435, 49.3273918281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08eb1d4750d8a6c5d5d81728b8bf174d6dda931b", "fields": {"nom_de_la_commune": "AUTHIE", "libell_d_acheminement": "AUTHIE", "code_postal": "14280", "coordonnees_gps": [49.2095685958, -0.412342557701], "code_commune_insee": "14030"}, "geometry": {"type": "Point", "coordinates": [-0.412342557701, 49.2095685958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053b230a60274ec99a56d1da9e8801ddb6e5949c", "fields": {"nom_de_la_commune": "AUVILLARS", "libell_d_acheminement": "AUVILLARS", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14033"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80aeb9707ca29427206555b6b087c6a5471b92e3", "fields": {"nom_de_la_commune": "BANVILLE", "libell_d_acheminement": "BANVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14038"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d4857d8a85157801ff8bd7eb55db38b8f2fbbf", "fields": {"nom_de_la_commune": "BARBERY", "libell_d_acheminement": "BARBERY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14039"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e69f9c17fbc944b9ad787784acc88c83b0ef9a", "fields": {"nom_de_la_commune": "BEAUMAIS", "libell_d_acheminement": "BEAUMAIS", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14053"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d386c008c8a8cf00cfad185069fbd3ec6210ad", "fields": {"nom_de_la_commune": "BENERVILLE SUR MER", "libell_d_acheminement": "BENERVILLE SUR MER", "code_postal": "14910", "coordonnees_gps": [49.3272172956, 0.0371935485536], "code_commune_insee": "14059"}, "geometry": {"type": "Point", "coordinates": [0.0371935485536, 49.3272172956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92b334018cc5c4fdc2b01a76817fa3699a0ad2e", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ETOUVY", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8940b9f7c7714f418265281b8ef11ddb1bc4196", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LE RECULEY", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584aea27b209e484119eedd9cc757d2a3f6560fd", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MALLOUE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69c6e0ccd2afd12ab09458998674761d72369e7", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MONT BERTRAND", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89812665c349e1b173f44a1c43c8f59bad1f709b", "fields": {"nom_de_la_commune": "BENY SUR MER", "libell_d_acheminement": "BENY SUR MER", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14062"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0e97e083877bb949525ac378fe69ec4c11bc7c", "fields": {"nom_de_la_commune": "BERNIERES D AILLY", "libell_d_acheminement": "BERNIERES D AILLY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14064"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e247177d0166b49accc186f5744acc4bbc0a80a8", "fields": {"nom_de_la_commune": "BIEVILLE BEUVILLE", "libell_d_acheminement": "BIEVILLE BEUVILLE", "code_postal": "14112", "coordonnees_gps": [49.2432109147, -0.336840438637], "code_commune_insee": "14068"}, "geometry": {"type": "Point", "coordinates": [-0.336840438637, 49.2432109147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250d6dbb0513ea82e290587baaa544ba7cfeb9d8", "fields": {"nom_de_la_commune": "BILLY", "libell_d_acheminement": "BILLY", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14074"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad371eaaf1eeb8fa9d6b426ebe9818a1c0c9297", "fields": {"nom_de_la_commune": "BLONVILLE SUR MER", "libell_d_acheminement": "BLONVILLE SUR MER", "code_postal": "14910", "coordonnees_gps": [49.3272172956, 0.0371935485536], "code_commune_insee": "14079"}, "geometry": {"type": "Point", "coordinates": [0.0371935485536, 49.3272172956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa71e8fd9198ebc28e2e68046a199f0baadf9022", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14082"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd4e61ef148ae5e5b2f3c5feda4905ea2e16b8a", "fields": {"nom_de_la_commune": "BONNEBOSQ", "libell_d_acheminement": "BONNEBOSQ", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14083"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3be59fefaf16cb5254d101c38591b86dc80572", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR ODON", "libell_d_acheminement": "BRETTEVILLE SUR ODON", "code_postal": "14760", "coordonnees_gps": [49.173261435, -0.421656892743], "code_commune_insee": "14101"}, "geometry": {"type": "Point", "coordinates": [-0.421656892743, 49.173261435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385293d14250f3e32dcf3d612b5ce8e8fb75e87b", "fields": {"nom_de_la_commune": "BROUAY", "libell_d_acheminement": "BROUAY", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14109"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d267b170ab3fdb45b3f4ecca90a6f73bc6597672", "fields": {"nom_de_la_commune": "CABOURG", "libell_d_acheminement": "CABOURG", "code_postal": "14390", "coordonnees_gps": [49.2648004396, -0.14376856722], "code_commune_insee": "14117"}, "geometry": {"type": "Point", "coordinates": [-0.14376856722, 49.2648004396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486f74cdea8dc78701f555339968535fb3ad86ba", "fields": {"nom_de_la_commune": "CAHAGNOLLES", "libell_d_acheminement": "CAHAGNOLLES", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14121"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f936c98151a422a60c6413ecdbdf4fcd572449e3", "fields": {"nom_de_la_commune": "CAMPANDRE VALCONGRAIN", "libell_d_acheminement": "CAMPANDRE VALCONGRAIN", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14128"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379ea02e6d6b8c9260afda2f10a16ba270537629", "fields": {"nom_de_la_commune": "ANZEX", "libell_d_acheminement": "ANZEX", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47012"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "719b52da930da107c40ba865ebc187b88447b242", "fields": {"nom_de_la_commune": "ARMILLAC", "libell_d_acheminement": "ARMILLAC", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47014"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d55abccdb7ea578263df888c1e153ee2828f7d0d", "fields": {"nom_de_la_commune": "AURIAC SUR DROPT", "libell_d_acheminement": "AURIAC SUR DROPT", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47018"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb7cb921ba3e273c8f2b98a923081a768fecd33", "fields": {"nom_de_la_commune": "BAZENS", "libell_d_acheminement": "BAZENS", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47022"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c978eb09e63430caf4161d5a0fc4b7b749f35d2e", "fields": {"nom_de_la_commune": "BOURGOUGNAGUE", "libell_d_acheminement": "BOURGOUGNAGUE", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47035"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3abbebf319f88d10e6461ce8db5a7f6175411a0", "fields": {"nom_de_la_commune": "BOURRAN", "libell_d_acheminement": "BOURRAN", "code_postal": "47320", "coordonnees_gps": [44.3563868406, 0.403122345242], "code_commune_insee": "47038"}, "geometry": {"type": "Point", "coordinates": [0.403122345242, 44.3563868406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edabfc139f8b34ad1e5bdab58dc3f5579799bb4", "fields": {"nom_de_la_commune": "BUZET SUR BAISE", "libell_d_acheminement": "BUZET SUR BAISE", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47043"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9faf04aff53527ea3a1f1d1a98b9674f10ca1d51", "fields": {"nom_de_la_commune": "CAMBES", "libell_d_acheminement": "CAMBES", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47047"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd790ccc7b67bcb252c984f25d53579a897c3885", "fields": {"nom_de_la_commune": "CASTILLONNES", "libell_d_acheminement": "CASTILLONNES", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47057"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e947c0b7cadc10c868282684378948f615f2160", "fields": {"nom_de_la_commune": "CLERMONT DESSOUS", "libell_d_acheminement": "CLERMONT DESSOUS", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47066"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf58f5efc3663cea260549633f27132eaf1af681", "fields": {"nom_de_la_commune": "CLERMONT SOUBIRAN", "libell_d_acheminement": "CLERMONT SOUBIRAN", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47067"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc103aa6424b4728c0690f17ea2cff0d649702e", "fields": {"nom_de_la_commune": "COURBIAC", "libell_d_acheminement": "COURBIAC", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47072"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8bfc55d1af6a00557bfb9ec845f054464a2144", "fields": {"nom_de_la_commune": "COUTHURES SUR GARONNE", "libell_d_acheminement": "COUTHURES SUR GARONNE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47074"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e06a2b4b2d6687115c9309221fcaaf98ed0656e5", "fields": {"nom_de_la_commune": "DAUSSE", "libell_d_acheminement": "DAUSSE", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47079"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92efc729a7573fd74344b2045bbf9ce20b0f586d", "fields": {"nom_de_la_commune": "DEVILLAC", "libell_d_acheminement": "DEVILLAC", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47080"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ac777ff79b67ebdf21cbcb4f01ceb2340754e4", "fields": {"nom_de_la_commune": "DOUDRAC", "libell_d_acheminement": "DOUDRAC", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47083"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05e065b4b8ae8b571fb55ad073d8ac74d74b00f", "fields": {"nom_de_la_commune": "FAUGUEROLLES", "libell_d_acheminement": "FAUGUEROLLES", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47094"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bcd027de56ffa1dd226d4b82c4911c194ed1a9c", "fields": {"nom_de_la_commune": "FEUGAROLLES", "libell_d_acheminement": "FEUGAROLLES", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47097"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b884756e215ca354a5755f67daeff29679d6999a", "fields": {"nom_de_la_commune": "HAUTEFAGE LA TOUR", "libell_d_acheminement": "HAUTEFAGE LA TOUR", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47117"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd7af03f21b768f01f4aa75aac577319aa8f4cf", "fields": {"nom_de_la_commune": "LABASTIDE CASTEL AMOUROUX", "libell_d_acheminement": "LABASTIDE CASTEL AMOUROUX", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47121"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b01b989c95d149db2de21deefcf223149e631e", "fields": {"nom_de_la_commune": "LAVERGNE", "libell_d_acheminement": "LAVERGNE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47144"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d090020039c6aa63254b8ef6a25776c914552d6", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47150"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cc71114d1bc40cf4ea6e7d676a1756e5753b53", "fields": {"nom_de_la_commune": "MADAILLAN", "libell_d_acheminement": "MADAILLAN", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47155"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3242b8d13e69da322b7264f3946d124ce7706f", "fields": {"nom_de_la_commune": "MARCELLUS", "libell_d_acheminement": "MARCELLUS", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47156"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806b945cb798f34b5194bb30c7999d3a470adc20", "fields": {"nom_de_la_commune": "MASQUIERES", "libell_d_acheminement": "MASQUIERES", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47160"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ae445dfd70f7121c7cf99191d64a2e2e03e1dd", "fields": {"nom_de_la_commune": "MASSELS", "libell_d_acheminement": "MASSELS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47161"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883bc654d36136688c38110214b8f66ed1920d2e", "fields": {"nom_de_la_commune": "MAUVEZIN SUR GUPIE", "libell_d_acheminement": "MAUVEZIN SUR GUPIE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47163"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e10026c4992adcc87b96402b77b584f5fd29f3b", "fields": {"nom_de_la_commune": "MONCLAR", "libell_d_acheminement": "MONCLAR", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47173"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb15bf0877da9860361595919a882418880485f", "fields": {"nom_de_la_commune": "MONFLANQUIN", "libell_d_acheminement": "MONFLANQUIN", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47175"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6df1ee115ecd663e567da7f73cfefde6b0fcb2c", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47183"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce01d11f278b962abb3048973558bafacde8c576", "fields": {"nom_de_la_commune": "MONTESQUIEU", "libell_d_acheminement": "MONTESQUIEU", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47186"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6f5de78e89b3ae9ca3a452a72b7615affab780", "fields": {"nom_de_la_commune": "MONTPOUILLAN", "libell_d_acheminement": "MONTPOUILLAN", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47191"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71deee6fbe699258032aa8064f6ce8c40f98f4ee", "fields": {"nom_de_la_commune": "MOULINET", "libell_d_acheminement": "MOULINET", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47193"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff4e93b1b660a27eb5e0c367a3953911c9209c0", "fields": {"nom_de_la_commune": "NICOLE", "libell_d_acheminement": "NICOLE", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47196"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd2c5403b19d49b8ae586b24790a0f02881cbcc", "fields": {"nom_de_la_commune": "LE PASSAGE", "libell_d_acheminement": "LE PASSAGE", "code_postal": "47520", "coordonnees_gps": [44.1935053326, 0.594202120584], "code_commune_insee": "47201"}, "geometry": {"type": "Point", "coordinates": [0.594202120584, 44.1935053326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e9ac5f1b3981776be238a840914762a40ee5e7", "fields": {"nom_de_la_commune": "PUYMIROL", "libell_d_acheminement": "PUYMIROL", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47217"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3301c1a092c47eabde32ba9c6d5857b8327e4087", "fields": {"nom_de_la_commune": "RAYET", "libell_d_acheminement": "RAYET", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47219"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a24cf45e568a7623bacb5bc6c359a2f0dbb44975", "fields": {"nom_de_la_commune": "REAUP LISSE", "libell_d_acheminement": "REAUP LISSE", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47221"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c1531bdd385c29b548a4b7f4084803c1e0e5a3", "fields": {"nom_de_la_commune": "ST ETIENNE DE FOUGERES", "libell_d_acheminement": "ST ETIENNE DE FOUGERES", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47239"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43c404ec6a18a24ea4b46af280926e368e65f79", "fields": {"nom_de_la_commune": "ST ETIENNE DE VILLEREAL", "libell_d_acheminement": "ST ETIENNE DE VILLEREAL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47240"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4c0c8eea4cda86729905bac98090440ab163c6", "fields": {"nom_de_la_commune": "ST EUTROPE DE BORN", "libell_d_acheminement": "ST EUTROPE DE BORN", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47241"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a69c9578802b5f16ed594da3b8387fa1c85a157", "fields": {"nom_de_la_commune": "ST FRONT SUR LEMANCE", "libell_d_acheminement": "ST FRONT SUR LEMANCE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47242"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23125aaf3bb7cef72787f134bbdb579e66dbf4cb", "fields": {"nom_de_la_commune": "ST JEAN DE THURAC", "libell_d_acheminement": "ST JEAN DE THURAC", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47248"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af73c5bfd736aa5a9d302bfb2de06802041d1ada", "fields": {"nom_de_la_commune": "STE LIVRADE SUR LOT", "libell_d_acheminement": "STE LIVRADE SUR LOT", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47252"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd9edc0e6d307bc15c579dedaf6d38f936c805d", "fields": {"nom_de_la_commune": "STE MARTHE", "libell_d_acheminement": "STE MARTHE", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47253"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0356460b409c945fce50d2b23d1f2aae284c0655", "fields": {"nom_de_la_commune": "ST MAURICE DE LESTAPEL", "libell_d_acheminement": "ST MAURICE DE LESTAPEL", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47259"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759db1476d57b682f2569b2851cd8ee93a95250f", "fields": {"nom_de_la_commune": "ST PARDOUX DU BREUIL", "libell_d_acheminement": "ST PARDOUX DU BREUIL", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47263"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c758527501dcb03c3e0f2870b03c3677519d2d49", "fields": {"nom_de_la_commune": "ST PASTOUR", "libell_d_acheminement": "ST PASTOUR", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47265"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93696d4a1c9f9efdc88bc548234e2238038781e5", "fields": {"nom_de_la_commune": "ST SALVY", "libell_d_acheminement": "ST SALVY", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47275"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0abe15a96222123320f8c380512608725b1ca0f", "fields": {"nom_de_la_commune": "SAUVETERRE ST DENIS", "libell_d_acheminement": "SAUVETERRE ST DENIS", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47293"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6016b3062f11d24c07e639202754e07f7c7a1e79", "fields": {"nom_de_la_commune": "SAVIGNAC SUR LEYZE", "libell_d_acheminement": "SAVIGNAC SUR LEYZE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47295"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976ac895650abc981df1c846c7ea11a8175a24fc", "fields": {"nom_de_la_commune": "SEGALAS", "libell_d_acheminement": "SEGALAS", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47296"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a65c78db104a6c8ed507e1260fe72f6d45b7566", "fields": {"nom_de_la_commune": "SENESTIS", "libell_d_acheminement": "SENESTIS", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47298"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021d9410630108113ae6a304a718d842f46470d9", "fields": {"nom_de_la_commune": "SERIGNAC SUR GARONNE", "libell_d_acheminement": "SERIGNAC SUR GARONNE", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47300"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "938603906c869745efbc000fd038b4898f33e832", "fields": {"code_postal": "47170", "code_commune_insee": "47302", "libell_d_acheminement": "SOS", "ligne_5": "GUEYZE", "nom_de_la_commune": "SOS", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659d6b03d0c0f4acd9a1947186692a8249f43e6b", "fields": {"nom_de_la_commune": "THEZAC", "libell_d_acheminement": "THEZAC", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47307"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fa9c7734e73f4fe810e4bd90a6c2f7a6ddf45f", "fields": {"nom_de_la_commune": "TOURNON D AGENAIS", "libell_d_acheminement": "TOURNON D AGENAIS", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47312"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa97b2b03a72ecb11fc19df84188ae0173831a8", "fields": {"nom_de_la_commune": "VARES", "libell_d_acheminement": "VARES", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47316"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa2b6ac1b6ea25ad68a5946edc2f0b013582646", "fields": {"nom_de_la_commune": "VILLETON", "libell_d_acheminement": "VILLETON", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47325"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e56bca2adf65cee4b88eb13e4a3adf95dab58fd", "fields": {"nom_de_la_commune": "XAINTRAILLES", "libell_d_acheminement": "XAINTRAILLES", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47327"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee90f5b3bcfe691cde4c8d67716d260ef8369278", "fields": {"nom_de_la_commune": "ARZENC DE RANDON", "libell_d_acheminement": "ARZENC DE RANDON", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48008"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24746dde03391dd72e498c2b7322c07c9b8ac59e", "fields": {"code_postal": "48500", "code_commune_insee": "48017", "libell_d_acheminement": "BANASSAC CANILHAC", "ligne_5": "CANILHAC", "nom_de_la_commune": "BANASSAC CANILHAC", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0002ba3d8915c798500d314ddac3e4a767d59a42", "fields": {"nom_de_la_commune": "BRENOUX", "libell_d_acheminement": "BRENOUX", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48030"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67ed3294938b8067e81b026c274020d76d721f4", "fields": {"code_postal": "48310", "code_commune_insee": "48031", "libell_d_acheminement": "BRION", "ligne_5": "LA CHALDETTE", "nom_de_la_commune": "BRION", "coordonnees_gps": [44.7970712517, 3.12612873999]}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3efcc37cade2f5873cac1fa1640034ada6653a", "fields": {"nom_de_la_commune": "LA CANOURGUE", "libell_d_acheminement": "LA CANOURGUE", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48034"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54483b42a081f3ed7aaadc8165def5af61ee313c", "fields": {"nom_de_la_commune": "CHADENET", "libell_d_acheminement": "CHADENET", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48037"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71eb85846cb01cc0dabed57c37952cff41aa24cf", "fields": {"nom_de_la_commune": "CHASSERADES", "libell_d_acheminement": "CHASSERADES", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "48040"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f047e801ed2fe87f2a180c4de7b13d1fd1fb51f3", "fields": {"nom_de_la_commune": "BEDOUES COCURES", "libell_d_acheminement": "BEDOUES COCURES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48050"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33adabe39bf20644eeceb617a0a571ae4e01954e", "fields": {"nom_de_la_commune": "FOURNELS", "libell_d_acheminement": "FOURNELS", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48064"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f098725a434eb8f2e0428c0d737321c57324dd0", "fields": {"nom_de_la_commune": "LACHAMP", "libell_d_acheminement": "LACHAMP", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48078"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6151a69ac185667b8a1d41a162cd7ca2c0632ba3", "fields": {"nom_de_la_commune": "LES LAUBIES", "libell_d_acheminement": "LES LAUBIES", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48083"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426f6ec0aa52a3fca3ee595148e8977710d77a90", "fields": {"nom_de_la_commune": "LA MALENE", "libell_d_acheminement": "LA MALENE", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48088"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe69bf1874da39a421635db24b15393fce5c040", "fields": {"nom_de_la_commune": "LE MALZIEU FORAIN", "libell_d_acheminement": "LE MALZIEU FORAIN", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48089"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d055888002d8688d8862f8610a911c17f951fd8", "fields": {"nom_de_la_commune": "MEYRUEIS", "libell_d_acheminement": "MEYRUEIS", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48096"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae523aa021bdb8e87df57aa8376e2c5bd90fc158", "fields": {"code_postal": "48100", "code_commune_insee": "48099", "libell_d_acheminement": "BOURGS SUR COLAGNE", "ligne_5": "LE MONASTIER PIN MORIES", "nom_de_la_commune": "BOURGS SUR COLAGNE", "coordonnees_gps": [44.5866860441, 3.24770669701]}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1233d0468a837bbea5539d3587bd4beb97ba67c8", "fields": {"nom_de_la_commune": "MONTBEL", "libell_d_acheminement": "MONTBEL", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48100"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a406b0e8cced911da68c9d0d1c65f87c90b56b", "fields": {"nom_de_la_commune": "NASBINALS", "libell_d_acheminement": "NASBINALS", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48104"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9add34e40813dec846ff716c57e912095da43d6c", "fields": {"nom_de_la_commune": "NAUSSAC FONTANES", "libell_d_acheminement": "NAUSSAC FONTANES", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48105"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9381be6fe97f665bde799ae99ad41424e5006c41", "fields": {"nom_de_la_commune": "PALHERS", "libell_d_acheminement": "PALHERS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48107"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4afbe8e380e03e0028d115a7de3bf8d9a40571e1", "fields": {"nom_de_la_commune": "PELOUSE", "libell_d_acheminement": "PELOUSE", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48111"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6026055e7f7a508a647c027651bce79d743bd405", "fields": {"nom_de_la_commune": "PIERREFICHE", "libell_d_acheminement": "PIERREFICHE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48112"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fc79cbd74f5180854743d19a9908e8d39e3ecc", "fields": {"nom_de_la_commune": "LE POMPIDOU", "libell_d_acheminement": "LE POMPIDOU", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48115"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2a3addca0e6bff4b4b16aedf3e1cff8c8fe65a", "fields": {"code_postal": "48220", "code_commune_insee": "48116", "libell_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", "ligne_5": "FRAISSINET DE LOZERE", "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", "coordonnees_gps": [44.3629471664, 3.81136680024]}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be801264a21e15a4eb49a7c6552b3441c9b8f8c3", "fields": {"nom_de_la_commune": "PRINSUEJOLS", "libell_d_acheminement": "PRINSUEJOLS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48120"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36175d94f24911e419ff32e6bbf00f22bdc91a6d", "fields": {"nom_de_la_commune": "RIBENNES", "libell_d_acheminement": "RIBENNES", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48126"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407781c6b605ce00af25b89f525508fabb4efc0d", "fields": {"nom_de_la_commune": "ROUSSES", "libell_d_acheminement": "ROUSSES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48130"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbeea9ac415c53e5f8214db374fec1dfc323e31c", "fields": {"nom_de_la_commune": "ST ANDRE DE LANCIZE", "libell_d_acheminement": "ST ANDRE DE LANCIZE", "code_postal": "48240", "coordonnees_gps": [44.2838225075, 3.82458328852], "code_commune_insee": "48136"}, "geometry": {"type": "Point", "coordinates": [3.82458328852, 44.2838225075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7b86dee4d48f819e9981773d83d0a403f7223c", "fields": {"nom_de_la_commune": "ST BONNET DE CHIRAC", "libell_d_acheminement": "ST BONNET DE CHIRAC", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48138"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a622e0f2b8f0c368b7d3de06e42818309e5e684", "fields": {"nom_de_la_commune": "STE CROIX VALLEE FRANCAISE", "libell_d_acheminement": "STE CROIX VALLEE FRANCAISE", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48144"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c60cf9eca99f7a9bdc54aec20aa111d2e2723a", "fields": {"code_postal": "48210", "code_commune_insee": "48146", "libell_d_acheminement": "STE ENIMIE", "ligne_5": "PRADES", "nom_de_la_commune": "STE ENIMIE", "coordonnees_gps": [44.3288695962, 3.39194126982]}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c629288804be1d535136b5c5d992553f7945e8", "fields": {"nom_de_la_commune": "ST ETIENNE VALLEE FRANCAISE", "libell_d_acheminement": "ST ETIENNE VALLEE FRANCAISE", "code_postal": "48330", "coordonnees_gps": [44.1717142135, 3.8564054126], "code_commune_insee": "48148"}, "geometry": {"type": "Point", "coordinates": [3.8564054126, 44.1717142135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06feb0daf4e7c537ba4f4a48ef2eb7c0a43dcd3a", "fields": {"nom_de_la_commune": "ST FREZAL D ALBUGES", "libell_d_acheminement": "ST FREZAL D ALBUGES", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48151"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c8b10d8f5605d52a0889179dd648cb0fbd79b1", "fields": {"code_postal": "48160", "code_commune_insee": "48152", "libell_d_acheminement": "VENTALON EN CEVENNES", "ligne_5": "ST ANDEOL DE CLERGUEMORT", "nom_de_la_commune": "VENTALON EN CEVENNES", "coordonnees_gps": [44.2409475687, 3.90246721272]}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca06f245434fe29543fcd966f631c56bc129efd9", "fields": {"nom_de_la_commune": "ST GERMAIN DE CALBERTE", "libell_d_acheminement": "ST GERMAIN DE CALBERTE", "code_postal": "48370", "coordonnees_gps": [44.2217314781, 3.81022131996], "code_commune_insee": "48155"}, "geometry": {"type": "Point", "coordinates": [3.81022131996, 44.2217314781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264efd89d8a6bf1b97d7e6b61084945a0829ab5f", "fields": {"code_postal": "48400", "code_commune_insee": "48162", "libell_d_acheminement": "CANS ET CEVENNES", "ligne_5": "ST JULIEN D ARPAON", "nom_de_la_commune": "CANS ET CEVENNES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f27da357dec8a71b49d859dc219ab8a2938fa2", "fields": {"nom_de_la_commune": "ST LEGER DE PEYRE", "libell_d_acheminement": "ST LEGER DE PEYRE", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48168"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a834920d39c6e74d63d1089e61662fdeb5f15b", "fields": {"nom_de_la_commune": "ST PAUL LE FROID", "libell_d_acheminement": "ST PAUL LE FROID", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48174"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284738c04e67605844de5a521355cf2b663f71f1", "fields": {"nom_de_la_commune": "ST PIERRE DES TRIPIERS", "libell_d_acheminement": "ST PIERRE DES TRIPIERS", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48176"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405ea35086ddf3e295303c5086eab0fcf2d528f4", "fields": {"nom_de_la_commune": "LES SALELLES", "libell_d_acheminement": "LES SALELLES", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48185"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066e68cd58297455f10f9784038021dbb2b61be0", "fields": {"nom_de_la_commune": "LES VIGNES", "libell_d_acheminement": "LES VIGNES", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48195"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e656c31f11a74826d9d31842254d09a3a1fd3e57", "fields": {"nom_de_la_commune": "BRIOD", "libell_d_acheminement": "BRIOD", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39079"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe503c804ad16889707c7d7ddcf61fbbd2d52d58", "fields": {"nom_de_la_commune": "CENSEAU", "libell_d_acheminement": "CENSEAU", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39083"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f09d3c37a04c43a304d11713acdf9f32afad20af", "fields": {"nom_de_la_commune": "CERNON", "libell_d_acheminement": "CERNON", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39086"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9608e5b5fe74d58a005560fd45ef8f5cc103491", "fields": {"nom_de_la_commune": "CESANCEY", "libell_d_acheminement": "CESANCEY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39088"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e0c9edde2e1d5439b81a94a10e83696471d6f4", "fields": {"nom_de_la_commune": "LES CHALESMES", "libell_d_acheminement": "LES CHALESMES", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39091"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f43867bd667d83b0a80714ea31892a79ead7185", "fields": {"nom_de_la_commune": "CHAMPAGNEY", "libell_d_acheminement": "CHAMPAGNEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39096"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73b29926d3c9e566de67ae4e1b544eb37f2375e", "fields": {"nom_de_la_commune": "CHAMPAGNOLE", "libell_d_acheminement": "CHAMPAGNOLE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39097"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27484e5a06e3d5d4b2aa8bfbcc253255716640db", "fields": {"nom_de_la_commune": "CHAMPVANS", "libell_d_acheminement": "CHAMPVANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39101"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12ea9e541a7c1f0bea1a856588c6dd9b7af773a", "fields": {"nom_de_la_commune": "CHARCHILLA", "libell_d_acheminement": "CHARCHILLA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39106"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c542b43ba6254448137e317bb1f098cf9282f91f", "fields": {"nom_de_la_commune": "CHARENCY", "libell_d_acheminement": "CHARENCY", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39108"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1870d847df9c1268e5a6b592e0163ea07c6b77", "fields": {"nom_de_la_commune": "CHATEAU CHALON", "libell_d_acheminement": "CHATEAU CHALON", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39114"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58bc97cb5c0b28b11c8b01c0a9f0175a4d8807a7", "fields": {"nom_de_la_commune": "LE CHATELEY", "libell_d_acheminement": "LE CHATELEY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39119"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80c222c7e161f21518d14534f7822c8e1ece1a1", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39122"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ea1d44db93ab9f9befb263d2f8577dbcd66a90", "fields": {"nom_de_la_commune": "CHAUX DES CROTENAY", "libell_d_acheminement": "CHAUX DES CROTENAY", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39129"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c0da4117c329219a00206658f8e1c01f9b43cf", "fields": {"nom_de_la_commune": "LA CHAUX EN BRESSE", "libell_d_acheminement": "LA CHAUX EN BRESSE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39132"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778b0ef96fecf14af3581cfcaa295eddf56ec71b", "fields": {"nom_de_la_commune": "CHEMENOT", "libell_d_acheminement": "CHEMENOT", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39136"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14c7fa78a2ab00c498315dcb304535bf0daa26b9", "fields": {"nom_de_la_commune": "CHEVROTAINE", "libell_d_acheminement": "CHEVROTAINE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39143"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57a740b217ab0d9f3ee220b34c24a580464e067", "fields": {"nom_de_la_commune": "CHOUX", "libell_d_acheminement": "CHOUX", "code_postal": "39370", "coordonnees_gps": [46.2916662197, 5.82108544834], "code_commune_insee": "39151"}, "geometry": {"type": "Point", "coordinates": [5.82108544834, 46.2916662197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517832b4c7334c2c8c02ac35f3a0da5eda10f193", "fields": {"nom_de_la_commune": "CONDES", "libell_d_acheminement": "CONDES", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39163"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9349fcb3b4cc03450c364c1ace6d96eb21fac5", "fields": {"nom_de_la_commune": "COSGES", "libell_d_acheminement": "COSGES", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39167"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c04164b8b644ec9b06c6c4ab511175016c37426e", "fields": {"nom_de_la_commune": "COURBETTE", "libell_d_acheminement": "COURBETTE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39168"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5588801fd0b45eb209d2ee79e46f22acd2769552", "fields": {"nom_de_la_commune": "COUSANCE", "libell_d_acheminement": "COUSANCE", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39173"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b968b1eb71283178224f63293e5f684a1d958425", "fields": {"nom_de_la_commune": "COYRIERE", "libell_d_acheminement": "COYRIERE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39174"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25795bd6c7f0b8ae4472b16bb4d5422148a06948", "fields": {"nom_de_la_commune": "CRANS", "libell_d_acheminement": "CRANS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39178"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8f6c0f21fc073d40d357d45c7b8c8f285c952e", "fields": {"nom_de_la_commune": "CRENANS", "libell_d_acheminement": "CRENANS", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39179"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bbdf76eff19ba6c9f3e1d487a94cd3167d8e1da", "fields": {"nom_de_la_commune": "DARBONNAY", "libell_d_acheminement": "DARBONNAY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39191"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25c53a242bd854072ef73d1a423c3fba6dc0b5e", "fields": {"nom_de_la_commune": "DENEZIERES", "libell_d_acheminement": "DENEZIERES", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39192"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f604635f3fdf274cec4b144241971bbb4b4d95d", "fields": {"nom_de_la_commune": "DESNES", "libell_d_acheminement": "DESNES", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39194"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1380d511da5799020672b275ba063a99fe52f015", "fields": {"nom_de_la_commune": "ECLANS NENON", "libell_d_acheminement": "ECLANS NENON", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39205"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7355b24eb79d81cee3fc51abf2fb31058975975", "fields": {"nom_de_la_commune": "ECLEUX", "libell_d_acheminement": "ECLEUX", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39206"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf3cc4cee83bd51a8a391c4cb91d2f38ed2aadb", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "NANTEY", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eafc599ef6a23bf61c5e7b058d37dc97a1ef52ca", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "POISOUX", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76c380d1a5fc25e384c24cce3e2ea45032c6adaa", "fields": {"code_postal": "39320", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "FLORENTIA", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4076971476, 5.45325429562]}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35220f34e2e80f5f4a91558e61fdfc2b6b44999e", "fields": {"code_postal": "39130", "code_commune_insee": "39216", "libell_d_acheminement": "ETIVAL", "ligne_5": "LES RONCHAUX", "nom_de_la_commune": "ETIVAL", "coordonnees_gps": [46.5974008072, 5.7778821985]}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61584a4a10a910f295ab1fe599cc507bf77b7fb6", "fields": {"nom_de_la_commune": "EVANS", "libell_d_acheminement": "EVANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39219"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4cce58a9424ff56535397e4bdc2d44d4e69e66", "fields": {"nom_de_la_commune": "LA FAVIERE", "libell_d_acheminement": "LA FAVIERE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39221"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c080901b630d4fe380d9a94068a6efcfc1ee310f", "fields": {"nom_de_la_commune": "FETIGNY", "libell_d_acheminement": "FETIGNY", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39224"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "443a574c43f373945216e72e100cdec9829a2391", "fields": {"nom_de_la_commune": "FONCINE LE BAS", "libell_d_acheminement": "FONCINE LE BAS", "code_postal": "39520", "coordonnees_gps": [46.6331027337, 6.0291112084], "code_commune_insee": "39227"}, "geometry": {"type": "Point", "coordinates": [6.0291112084, 46.6331027337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acefdd5dab902ec44d402d61ad76d9f8dcc1d24", "fields": {"nom_de_la_commune": "FRAISANS", "libell_d_acheminement": "FRAISANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39235"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798c5e620c45ac31e8c84ad1937ff7618b296be9", "fields": {"nom_de_la_commune": "FRASNE LES MEULIERES", "libell_d_acheminement": "FRASNE LES MEULIERES", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39238"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2bc40ed48aa48f298cda3d1a8a78e5d6a8edd8", "fields": {"nom_de_la_commune": "LE FRASNOIS", "libell_d_acheminement": "LE FRASNOIS", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39240"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66dde4bf9bff2220ffba8d9956b1bb3e0c0510e", "fields": {"nom_de_la_commune": "GENOD", "libell_d_acheminement": "GENOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39247"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff47434d2cf2b996ddd4ef17e95b12a237c8db55", "fields": {"nom_de_la_commune": "LAINS", "libell_d_acheminement": "LAINS", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39273"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6952a4668b292b07f9475b7cbc7ec00c06ba9cc6", "fields": {"nom_de_la_commune": "LE LARDERET", "libell_d_acheminement": "LE LARDERET", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39277"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a6f56f310c93760380047935edb10f4017a051", "fields": {"nom_de_la_commune": "LARRIVOIRE", "libell_d_acheminement": "LARRIVOIRE", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39280"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c3da5d0e1eae64be06e4aa3a95faa5d869b7e5", "fields": {"code_postal": "39170", "code_commune_insee": "39286", "libell_d_acheminement": "LAVANS LES ST CLAUDE", "ligne_5": "PONTHOUX", "nom_de_la_commune": "LAVANS LES ST CLAUDE", "coordonnees_gps": [46.4122748444, 5.79038088139]}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02192bc49dbbcfe47988c12249420d8153bfe1ec", "fields": {"nom_de_la_commune": "LONGWY SUR LE DOUBS", "libell_d_acheminement": "LONGWY SUR LE DOUBS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39299"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cf32fe5874c95f51fe64875b1bbd750b6cf5c1", "fields": {"nom_de_la_commune": "MACORNAY", "libell_d_acheminement": "MACORNAY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39306"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c88e0ddf7e574cc7deb06bc84a46740f1c5bfb0", "fields": {"nom_de_la_commune": "MALANGE", "libell_d_acheminement": "MALANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39308"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092f62daa8f75a7c72d7485c40c34903598962af", "fields": {"nom_de_la_commune": "MALLEREY", "libell_d_acheminement": "MALLEREY", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39309"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46dde8e9fcef59811c8bfd8699514aeeec79f7e5", "fields": {"nom_de_la_commune": "MARIGNA SUR VALOUSE", "libell_d_acheminement": "MARIGNA SUR VALOUSE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39312"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf51824708c18517a6961a93a9ca8f15ca8a713", "fields": {"nom_de_la_commune": "MESSIA SUR SORNE", "libell_d_acheminement": "MESSIA SUR SORNE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39327"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27c2c5294b2b6b183c3f0eabbc9c8951433fc5b", "fields": {"code_postal": "39250", "code_commune_insee": "39331", "libell_d_acheminement": "MIGNOVILLARD", "ligne_5": "FROIDEFONTAINE", "nom_de_la_commune": "MIGNOVILLARD", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d9ffeb01dc0dbfcb05acb34a7a81b6f9d8258f", "fields": {"nom_de_la_commune": "MOLAMBOZ", "libell_d_acheminement": "MOLAMBOZ", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39337"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5bc577edc98dcccee15ba8864e16e980544fb12", "fields": {"nom_de_la_commune": "MOLINGES", "libell_d_acheminement": "MOLINGES", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39339"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ffa23e6affece57e88c0e7fb54213f9c96246e8", "fields": {"nom_de_la_commune": "LES MOLUNES", "libell_d_acheminement": "LES MOLUNES", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39341"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7686886fc00308d6426f33c9a99a325dbc5d716", "fields": {"nom_de_la_commune": "MONTAIN", "libell_d_acheminement": "MONTAIN", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39349"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82bb200d66bc6efd550b387d52610112f9e3d65", "fields": {"nom_de_la_commune": "MONTHOLIER", "libell_d_acheminement": "MONTHOLIER", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39354"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f95fa6a8661f87c06f4f2920df19c2239a297aa", "fields": {"nom_de_la_commune": "MONTROND", "libell_d_acheminement": "MONTROND", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39364"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d2faeed5b41d950b1f363aae99dfaaaa0e6bdfe", "fields": {"nom_de_la_commune": "MONT SUR MONNET", "libell_d_acheminement": "MONT SUR MONNET", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39366"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c54d8db40b5f8029defef799f92c57ece1fa29", "fields": {"code_postal": "39400", "code_commune_insee": "39368", "libell_d_acheminement": "HAUTS DE BIENNE", "ligne_5": "LA MOUILLE", "nom_de_la_commune": "HAUTS DE BIENNE", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6792f954977d278c43f21592fe843703cad09b", "fields": {"nom_de_la_commune": "LES MOUSSIERES", "libell_d_acheminement": "LES MOUSSIERES", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39373"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fc84eb0659c2f15896d8254a94a8252b6327ba9", "fields": {"nom_de_la_commune": "MOUTOUX", "libell_d_acheminement": "MOUTOUX", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39376"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb76fe9642fac1d96b041e86f3a0ec479b5a3af", "fields": {"nom_de_la_commune": "NEY", "libell_d_acheminement": "NEY", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39389"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648d172d3f0a98bd619a22c1537f3e9a9d35f441", "fields": {"nom_de_la_commune": "ORCHAMPS", "libell_d_acheminement": "ORCHAMPS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39396"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d577ea1feb6b6d45c5389f9fdbd72a7d32523051", "fields": {"nom_de_la_commune": "OUGNEY", "libell_d_acheminement": "OUGNEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39398"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0d022027ea4481ff4ddc88cdbd1fec5fd06de4", "fields": {"nom_de_la_commune": "PICARREAU", "libell_d_acheminement": "PICARREAU", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39418"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b372af09a314c15abdbeaa942508bf5ff1a97191", "fields": {"nom_de_la_commune": "PLAISIA", "libell_d_acheminement": "PLAISIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39423"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de2b838f1d3a78247e418b3d6a8eaef62091721", "fields": {"nom_de_la_commune": "LES PLANCHES EN MONTAGNE", "libell_d_acheminement": "LES PLANCHES EN MONTAGNE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39424"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fefe8b8ff638dfa9c9314c9c044a7e3ea303322d", "fields": {"nom_de_la_commune": "PONT DE POITTE", "libell_d_acheminement": "PONT DE POITTE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39435"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87bfc8fd2017b89461bdde862b887b511ba18af7", "fields": {"code_postal": "39110", "code_commune_insee": "39436", "libell_d_acheminement": "PONT D HERY", "ligne_5": "MOUTAINE", "nom_de_la_commune": "PONT D HERY", "coordonnees_gps": [46.9201409369, 5.90413463996]}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d9b81e5ddc7fb5eb7399ec30b6a552bdb3988d", "fields": {"nom_de_la_commune": "QUINTIGNY", "libell_d_acheminement": "QUINTIGNY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39447"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1708911da7394d9667aee33e43b8d3abd010e1e7", "fields": {"nom_de_la_commune": "RAHON", "libell_d_acheminement": "RAHON", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39448"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b9917a5484daec191f493d54d7c17faddb8ba4", "fields": {"code_postal": "39220", "code_commune_insee": "39470", "libell_d_acheminement": "LES ROUSSES", "ligne_5": "LA CURE", "nom_de_la_commune": "LES ROUSSES", "coordonnees_gps": [46.4870347389, 6.06467102901]}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cad663b9183e44eb17445aa791d67604262151c", "fields": {"code_postal": "39400", "code_commune_insee": "39470", "libell_d_acheminement": "LES ROUSSES", "ligne_5": "LES RIVIERES", "nom_de_la_commune": "LES ROUSSES", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2944299f53ff5125a438dac2c912c8d6825a2a0", "fields": {"nom_de_la_commune": "RUFFEY SUR SEILLE", "libell_d_acheminement": "RUFFEY SUR SEILLE", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39471"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663a2091999d4cc751d7c74f0e821bfe2dd9ff10", "fields": {"nom_de_la_commune": "ST AMOUR", "libell_d_acheminement": "ST AMOUR", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39475"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f293e964335bd30cccb81ed50b1b28a9c37650", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "CINQUETRAL", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe177abc39f5c3d9f29530ce642011ef023d2dc3", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "VALFIN LES ST CLAUDE", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f4479d55c51700867b721ea39616552c8b17151", "fields": {"code_postal": "39600", "code_commune_insee": "39479", "libell_d_acheminement": "ST CYR MONTMALIN", "ligne_5": "MONTMALIN", "nom_de_la_commune": "ST CYR MONTMALIN", "coordonnees_gps": [46.9334374908, 5.75807141934]}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1836a439d62880f7567500c26d510d640e917f3e", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39485"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aaabc1f3702c92bbafa0b176f41882452fd6b4b", "fields": {"nom_de_la_commune": "SAMPANS", "libell_d_acheminement": "SAMPANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39501"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f974a8f4c62764dd5b9b2b1e0de6d33566c5b8", "fields": {"nom_de_la_commune": "SAPOIS", "libell_d_acheminement": "SAPOIS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39503"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee54196c43eb3c46a996425b1f700ba0f76ec6f9", "fields": {"code_postal": "39270", "code_commune_insee": "39504", "libell_d_acheminement": "SARROGNA", "ligne_5": "MARANGEA", "nom_de_la_commune": "SARROGNA", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "530c50adb1512332190f20073259b8aa0a96a596", "fields": {"code_postal": "39270", "code_commune_insee": "39504", "libell_d_acheminement": "SARROGNA", "ligne_5": "NERMIER", "nom_de_la_commune": "SARROGNA", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dac12b8520aa42cc22604405ee686d862e27456", "fields": {"nom_de_la_commune": "SOUCIA", "libell_d_acheminement": "SOUCIA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39519"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7143b906fd300e28379d64f9b1e38cc633b19a", "fields": {"nom_de_la_commune": "TASSENIERES", "libell_d_acheminement": "TASSENIERES", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39525"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898e2022d785bd97693b8a1cc3dfe772873c9e00", "fields": {"nom_de_la_commune": "THERVAY", "libell_d_acheminement": "THERVAY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39528"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b55bf6d617ad02e4e50e1062708a2c7d3a3c99", "fields": {"nom_de_la_commune": "THESY", "libell_d_acheminement": "THESY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39529"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5acd66460783449033c6842d999b9fafb66354", "fields": {"nom_de_la_commune": "THOISSIA", "libell_d_acheminement": "THOISSIA", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39532"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f953f0978e423ae8cace75af4cee8dc29d76b6", "fields": {"nom_de_la_commune": "TRENAL", "libell_d_acheminement": "TRENAL", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39537"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "629a76b538671095af301b3983d932544d10ee85", "fields": {"nom_de_la_commune": "VAUDREY", "libell_d_acheminement": "VAUDREY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39546"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af60efe21d85696d3533e2762d12b2ce1ad7a56", "fields": {"nom_de_la_commune": "VERCIA", "libell_d_acheminement": "VERCIA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39549"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0a03a1792fc84f67945edea14713a6abd6ed1c", "fields": {"nom_de_la_commune": "VERIA", "libell_d_acheminement": "VERIA", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39551"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a5e4d2780b83eecfb52fba958b79b8166e6d8a", "fields": {"nom_de_la_commune": "VERS SOUS SELLIERES", "libell_d_acheminement": "VERS SOUS SELLIERES", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39555"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d753a8e1dc1e5772a53d7099711cd12585713635", "fields": {"nom_de_la_commune": "VILLARDS D HERIA", "libell_d_acheminement": "VILLARDS D HERIA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39561"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1090231d842b7f11aee07352d9baf19b3527517", "fields": {"code_postal": "39150", "code_commune_insee": "39562", "libell_d_acheminement": "VILLARD SUR BIENNE", "ligne_5": "LES CROZATS", "nom_de_la_commune": "VILLARD SUR BIENNE", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb116033983049c234bb0da151341d90f173aa74", "fields": {"nom_de_la_commune": "VILLERS ROBERT", "libell_d_acheminement": "VILLERS ROBERT", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39571"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d850670c8faa3176d094f24273d0d91fe333a8", "fields": {"nom_de_la_commune": "VINCENT FROIDEVILLE", "libell_d_acheminement": "VINCENT FROIDEVILLE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39577"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69d68b4aacf07233052b188e56b8004fa3e1a83", "fields": {"nom_de_la_commune": "VOITEUR", "libell_d_acheminement": "VOITEUR", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39582"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3313a862e572be6159802dba9bff162c856b3b1", "fields": {"nom_de_la_commune": "ST GEORGES DES AGOUTS", "libell_d_acheminement": "ST GEORGES DES AGOUTS", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17335"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e6a735efb8e182c58270d734ad7331a155ea2c", "fields": {"nom_de_la_commune": "ST GERMAIN DE VIBRAC", "libell_d_acheminement": "ST GERMAIN DE VIBRAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17341"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f57d1e43c29858d34aabf9a4b6cd61bb323ff9f", "fields": {"nom_de_la_commune": "ST GREGOIRE D ARDENNES", "libell_d_acheminement": "ST GREGOIRE D ARDENNES", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17343"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48bfa732306a7d31f85c07b587669bda0a99454", "fields": {"nom_de_la_commune": "ST HILAIRE DU BOIS", "libell_d_acheminement": "ST HILAIRE DU BOIS", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17345"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd5e57485d4f1fed539654535ee476c90cdd054", "fields": {"nom_de_la_commune": "ST JEAN DE LIVERSAY", "libell_d_acheminement": "ST JEAN DE LIVERSAY", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17349"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac9bdd688b21a4725f973a0bf437b3a1459417a", "fields": {"nom_de_la_commune": "ST LAURENT DE LA BARRIERE", "libell_d_acheminement": "ST LAURENT DE LA BARRIERE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17352"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15020f582e4224fe93b09fbad033db93fa6966c3", "fields": {"nom_de_la_commune": "ST LAURENT DE LA PREE", "libell_d_acheminement": "ST LAURENT DE LA PREE", "code_postal": "17450", "coordonnees_gps": [45.9868352342, -1.03911420802], "code_commune_insee": "17353"}, "geometry": {"type": "Point", "coordinates": [-1.03911420802, 45.9868352342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc4d6429dc70651a3ec22bceefa44916a704df9", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17359"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c2e932b59be7598f85a33db7b6cfce819a6f7a", "fields": {"nom_de_la_commune": "ST MARTIAL SUR NE", "libell_d_acheminement": "ST MARTIAL SUR NE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17364"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbeac34130be307eb0fd97d086fcd40f1b53727b", "fields": {"nom_de_la_commune": "ST MARTIN DE COUX", "libell_d_acheminement": "ST MARTIN DE COUX", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17366"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9758b6b6c065b6e8d0d3cdf0e39caae284651990", "fields": {"nom_de_la_commune": "ST MARTIN DE JUILLERS", "libell_d_acheminement": "ST MARTIN DE JUILLERS", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17367"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36de509b37d4814f9ae41d2e12c22d8eba70e24a", "fields": {"nom_de_la_commune": "ST MARTIN DE RE", "libell_d_acheminement": "ST MARTIN DE RE", "code_postal": "17410", "coordonnees_gps": [46.1993348422, -1.36709040482], "code_commune_insee": "17369"}, "geometry": {"type": "Point", "coordinates": [-1.36709040482, 46.1993348422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c02185a5380479239ac9fc15c951f5b937e24ce", "fields": {"nom_de_la_commune": "STE MEME", "libell_d_acheminement": "STE MEME", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17374"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f583f1fb36505e47fff42c658af307feb3c5224", "fields": {"nom_de_la_commune": "ST OUEN LA THENE", "libell_d_acheminement": "ST OUEN LA THENE", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17377"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9550c6c72f848e9e96e3de0a62b992b3a656ef87", "fields": {"nom_de_la_commune": "ST PARDOULT", "libell_d_acheminement": "ST PARDOULT", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17381"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52086788f65dd62c92f678b7133eda93e5f6bfca", "fields": {"nom_de_la_commune": "ST PIERRE DE JUILLERS", "libell_d_acheminement": "ST PIERRE DE JUILLERS", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17383"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c4c59e79ba8fc20fc17663ff45ef7e9451df09", "fields": {"nom_de_la_commune": "ST PIERRE D OLERON", "libell_d_acheminement": "ST PIERRE D OLERON", "code_postal": "17310", "coordonnees_gps": [45.9395914955, -1.30493678454], "code_commune_insee": "17385"}, "geometry": {"type": "Point", "coordinates": [-1.30493678454, 45.9395914955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26592fdb88b6f8f7b63a4c252c2e2fd743b6cd8e", "fields": {"nom_de_la_commune": "ST PORCHAIRE", "libell_d_acheminement": "ST PORCHAIRE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17387"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb37b02785f4ea1e5c3553b1f5b682db09a38b3", "fields": {"nom_de_la_commune": "ST SAUVEUR D AUNIS", "libell_d_acheminement": "ST SAUVEUR D AUNIS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17396"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33d083531cda8858fbff0a4e6d87309f072cc7f", "fields": {"nom_de_la_commune": "ST VAIZE", "libell_d_acheminement": "ST VAIZE", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17412"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b243a890523ae7fbdf164a48e980bd36e027808", "fields": {"nom_de_la_commune": "ST VIVIEN", "libell_d_acheminement": "ST VIVIEN", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17413"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46943fb130887fc9a66668c34f13ee70b8c1cdf6", "fields": {"nom_de_la_commune": "THAIRE", "libell_d_acheminement": "THAIRE", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17443"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adcfe2371aca109781d96cf84da67a45d3af7dd", "fields": {"nom_de_la_commune": "THORS", "libell_d_acheminement": "THORS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17446"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8789c0501006bf2a59703e9763a7baa3a76df3", "fields": {"nom_de_la_commune": "TONNAY CHARENTE", "libell_d_acheminement": "TONNAY CHARENTE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17449"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1daf4b2d056adebbf7c2ba3ff5331b7750a72fb", "fields": {"nom_de_la_commune": "TORXE", "libell_d_acheminement": "TORXE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17450"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da0c8c09e41d6ae0e73b27cd6041bc986edcecf", "fields": {"code_postal": "17130", "code_commune_insee": "17454", "libell_d_acheminement": "TUGERAS ST MAURICE", "ligne_5": "ST MAURICE DE LAURENCANNE", "nom_de_la_commune": "TUGERAS ST MAURICE", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fbd2c0c5093845895925bbbca5809c77f2f6cb2", "fields": {"nom_de_la_commune": "VERVANT", "libell_d_acheminement": "VERVANT", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17467"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac94edef09154177c7ca17a8f019f63720aad0d0", "fields": {"nom_de_la_commune": "VILLEDOUX", "libell_d_acheminement": "VILLEDOUX", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17472"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2492064381ddae7d8414b6d6ecec65dab697f1", "fields": {"nom_de_la_commune": "ALLOGNY", "libell_d_acheminement": "ALLOGNY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18004"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b8da27f5f2c035ac7e6cdb1fd9660d42c578cd", "fields": {"nom_de_la_commune": "ANNOIX", "libell_d_acheminement": "ANNOIX", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18006"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d322f80e7763d0f5504645f549d70ed89ae5c7", "fields": {"nom_de_la_commune": "ARCOMPS", "libell_d_acheminement": "ARCOMPS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18009"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61449b5917147393872c239c74915a58459ba821", "fields": {"code_postal": "18200", "code_commune_insee": "18009", "libell_d_acheminement": "ARCOMPS", "ligne_5": "FOSSE NOUVELLE", "nom_de_la_commune": "ARCOMPS", "coordonnees_gps": [46.7360453328, 2.4965207851]}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7ff694489f67adf38655f8fd13cb6a2d677815", "fields": {"nom_de_la_commune": "ARPHEUILLES", "libell_d_acheminement": "ARPHEUILLES", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18013"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf01dcd7cf6abe0304533b0e1e0d4e1fcf56730", "fields": {"nom_de_la_commune": "AZY", "libell_d_acheminement": "AZY", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18019"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcda1cf6e4cb170adda54669841edc55fe7947dd", "fields": {"nom_de_la_commune": "BESSAIS LE FROMENTAL", "libell_d_acheminement": "BESSAIS LE FROMENTAL", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18029"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1dca35c3b75c5d3bc0cfba247f44d50b3b9b88", "fields": {"nom_de_la_commune": "BOUZAIS", "libell_d_acheminement": "BOUZAIS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18034"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68abab394a64984ac903c2abf4219dbcac1a6ed", "fields": {"nom_de_la_commune": "BRUERE ALLICHAMPS", "libell_d_acheminement": "BRUERE ALLICHAMPS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18038"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10e71d602247e5b940f934efc5599bb6432b39c", "fields": {"nom_de_la_commune": "LA CHAPELLE D ANGILLON", "libell_d_acheminement": "LA CHAPELLE D ANGILLON", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18047"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791b96855cb423e5e2a77874d1d0318a810416ee", "fields": {"nom_de_la_commune": "CHARENTONNAY", "libell_d_acheminement": "CHARENTONNAY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18053"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591d405942c916bc6755808343aef2bcedbed35e", "fields": {"nom_de_la_commune": "CHARLY", "libell_d_acheminement": "CHARLY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18054"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95c55e4126f363cd102ef89d0ab78a78075c583", "fields": {"nom_de_la_commune": "LE CHATELET", "libell_d_acheminement": "LE CHATELET", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18059"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce6a1a41dee97a7726733b95f8ccaf60226ac6d", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18060"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b9782d4ca9a9a3766a2dab764ecfe488a52056", "fields": {"nom_de_la_commune": "CLEMONT", "libell_d_acheminement": "CLEMONT", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18067"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cb0a1304add96b233bc6e6a017b90ec97c363a", "fields": {"nom_de_la_commune": "COUARGUES", "libell_d_acheminement": "COUARGUES", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18074"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4641192463de5c19ff7d93bdcd060c11e69db94", "fields": {"nom_de_la_commune": "COURS LES BARRES", "libell_d_acheminement": "COURS LES BARRES", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18075"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada9fd2e2c5e112c6d1c2820d91f80bd1a27f7a3", "fields": {"nom_de_la_commune": "DAMPIERRE EN GRACAY", "libell_d_acheminement": "DAMPIERRE EN GRACAY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18085"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80eca25b2714d85bd92ed69751c809be074197e4", "fields": {"nom_de_la_commune": "GRON", "libell_d_acheminement": "GRON", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18105"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9d3b5eb2b3922a7463d6c69f21943f5abf9e62", "fields": {"nom_de_la_commune": "LA GROUTTE", "libell_d_acheminement": "LA GROUTTE", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18107"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb164275a864026e3078cf976b218ad1a9779d8", "fields": {"nom_de_la_commune": "IVOY LE PRE", "libell_d_acheminement": "IVOY LE PRE", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18115"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca7faa4a9026fa7106b5713b75cb2769c202056", "fields": {"nom_de_la_commune": "JARS", "libell_d_acheminement": "JARS", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18117"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53beed2859caeea4244fffdd79008103e7ea35c6", "fields": {"nom_de_la_commune": "JOUET SUR L AUBOIS", "libell_d_acheminement": "JOUET SUR L AUBOIS", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18118"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67976b8edb8d6bb498ff37f2392d95921293a76", "fields": {"nom_de_la_commune": "LAZENAY", "libell_d_acheminement": "LAZENAY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18124"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d84ab1db3ccb2b22ee20c212fde6448167a58ba", "fields": {"nom_de_la_commune": "MASSAY", "libell_d_acheminement": "MASSAY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18140"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6b037dea41cdb6b8a00679393bfa4c397adbfb", "fields": {"nom_de_la_commune": "MEILLANT", "libell_d_acheminement": "MEILLANT", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18142"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "003b3073ca35c2624cc8f49bdd740105b0f449fa", "fields": {"nom_de_la_commune": "MENETOU SALON", "libell_d_acheminement": "MENETOU SALON", "code_postal": "18510", "coordonnees_gps": [47.241985668, 2.49068531235], "code_commune_insee": "18145"}, "geometry": {"type": "Point", "coordinates": [2.49068531235, 47.241985668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f204fe37803079a6b0291d40eddb17c6d6bd360", "fields": {"nom_de_la_commune": "MENETREOL SOUS SANCERRE", "libell_d_acheminement": "MENETREOL SOUS SANCERRE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18146"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0150937f53a05faf96f62a5d4fc68228e68737b", "fields": {"nom_de_la_commune": "MERY SUR CHER", "libell_d_acheminement": "MERY SUR CHER", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18150"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5da08f1354e7f3090cd8434b485d3152ed55a00", "fields": {"nom_de_la_commune": "MORNAY BERRY", "libell_d_acheminement": "MORNAY BERRY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18154"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "520b0fd0fd136476b9c981c10e8ec83802e4485d", "fields": {"nom_de_la_commune": "NEUILLY EN DUN", "libell_d_acheminement": "NEUILLY EN DUN", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18161"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d8361f414036d24c8b3a934d3f5463c9f976d1", "fields": {"nom_de_la_commune": "NEUILLY EN SANCERRE", "libell_d_acheminement": "NEUILLY EN SANCERRE", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18162"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823185d5ce339acaba7fd3d76e0e5e8fe3dec5f4", "fields": {"nom_de_la_commune": "PARNAY", "libell_d_acheminement": "PARNAY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18177"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afe3843dafaed20f846c2a63c0ba0119a029fbb", "fields": {"nom_de_la_commune": "PIGNY", "libell_d_acheminement": "PIGNY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18179"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13ff25dd4603461a680852d3d03cb8d429fdea1", "fields": {"nom_de_la_commune": "PLAIMPIED GIVAUDINS", "libell_d_acheminement": "PLAIMPIED GIVAUDINS", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18180"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d90defa7e11d2578b7b9e9ada8ebb451df327b", "fields": {"nom_de_la_commune": "PRECY", "libell_d_acheminement": "PRECY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18184"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b60c26f79aff9e149350e7cd7c093f4d8c708b", "fields": {"nom_de_la_commune": "PRESLY", "libell_d_acheminement": "PRESLY", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18185"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956a5fef335684188109847686d03f27b803628c", "fields": {"nom_de_la_commune": "QUANTILLY", "libell_d_acheminement": "QUANTILLY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18189"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b6a6d772bf689a72e2a9bc3c47a2589f0e31a4", "fields": {"nom_de_la_commune": "ST FLORENT SUR CHER", "libell_d_acheminement": "ST FLORENT SUR CHER", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18207"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493545a0646dc4f6ca7bf7e172ea9d16f57d2347", "fields": {"nom_de_la_commune": "ST GERMAIN DU PUY", "libell_d_acheminement": "ST GERMAIN DU PUY", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18213"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d6da245bbae93848999c3f0ec98f6ac3404e36", "fields": {"nom_de_la_commune": "ST HILAIRE DE GONDILLY", "libell_d_acheminement": "ST HILAIRE DE GONDILLY", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18215"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb159d3d4bcf88c05c8665cb816d7985a7ca225d", "fields": {"code_postal": "18350", "code_commune_insee": "18215", "libell_d_acheminement": "ST HILAIRE DE GONDILLY", "ligne_5": "ENTROIS", "nom_de_la_commune": "ST HILAIRE DE GONDILLY", "coordonnees_gps": [46.951233561, 2.80144382232]}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a50725cc285c17a5e8170e30bcb5e2fde653e60", "fields": {"nom_de_la_commune": "ST HILAIRE EN LIGNIERES", "libell_d_acheminement": "ST HILAIRE EN LIGNIERES", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18216"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521c8544a4e381450651a2bab3584549220a45d4", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18219"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d047bfe3537df93c84f218fc872ad08476de3a", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18236"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46fbfa99075d28075e01007d86dcb848760ce5bc", "fields": {"nom_de_la_commune": "SANCERRE", "libell_d_acheminement": "SANCERRE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18241"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca944c8eb2fe662d943fa5a9e3efce08a91ef1f", "fields": {"nom_de_la_commune": "SAVIGNY EN SEPTAINE", "libell_d_acheminement": "SAVIGNY EN SEPTAINE", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18247"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96623a4775ab561d4005e65e1e805e0a5392c113", "fields": {"nom_de_la_commune": "SOULANGIS", "libell_d_acheminement": "SOULANGIS", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18253"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b66ab7cc9909e861d04cf2fc298c8d565b062f", "fields": {"nom_de_la_commune": "TENDRON", "libell_d_acheminement": "TENDRON", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18260"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5363541de6e1bfc4335c84d533b79052e7539080", "fields": {"nom_de_la_commune": "TOUCHAY", "libell_d_acheminement": "TOUCHAY", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18266"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478c112ed56c972c18887f5da4c41947a5edc38a", "fields": {"code_postal": "18190", "code_commune_insee": "18270", "libell_d_acheminement": "VALLENAY", "ligne_5": "BIGNY VALLENAY", "nom_de_la_commune": "VALLENAY", "coordonnees_gps": [46.8350681426, 2.36022988221]}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc1237d6cbe9f0f873730de2f9e4db0a953171f", "fields": {"nom_de_la_commune": "VEAUGUES", "libell_d_acheminement": "VEAUGUES", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18272"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1503548a87b5eb89fb69777357e5e4d8c34cebd", "fields": {"nom_de_la_commune": "VERNAIS", "libell_d_acheminement": "VERNAIS", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18276"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3034af95ccec0860c5055cd98fd5672c0070e94e", "fields": {"nom_de_la_commune": "VIGNOUX SOUS LES AIX", "libell_d_acheminement": "VIGNOUX SOUS LES AIX", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18280"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffbebdf6a309ea9c9666b1db418ed48d25d0b913", "fields": {"nom_de_la_commune": "VILLEQUIERS", "libell_d_acheminement": "VILLEQUIERS", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18286"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30556a197c26597fb77a67b044d0e788b3deb758", "fields": {"nom_de_la_commune": "VOUZERON", "libell_d_acheminement": "VOUZERON", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18290"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf76cd11b9fe366f59856edec89cdd76596037e9", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19020"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aef32a2d73b62abf8c95f60c8c349664ef33b5f", "fields": {"nom_de_la_commune": "BRIVEZAC", "libell_d_acheminement": "BRIVEZAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19032"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda1b98db46e2e48b96931091c445a2ae70c8930", "fields": {"nom_de_la_commune": "BUGEAT", "libell_d_acheminement": "BUGEAT", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19033"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1092113d573b8185db5eb0a1032853f76d31dcc4", "fields": {"nom_de_la_commune": "CHAMBERET", "libell_d_acheminement": "CHAMBERET", "code_postal": "19370", "coordonnees_gps": [45.5888302854, 1.72130640352], "code_commune_insee": "19036"}, "geometry": {"type": "Point", "coordinates": [1.72130640352, 45.5888302854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8beca841538ddb9abef43def134d2a55f47a0c4c", "fields": {"nom_de_la_commune": "CHAMEYRAT", "libell_d_acheminement": "CHAMEYRAT", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19038"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f421d4fbbb4c8f90957cd485a67165075baaefff", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX SAINTS", "libell_d_acheminement": "LA CHAPELLE AUX SAINTS", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19044"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206ee0223ec1c0ee9cdf123e7ffcef5a20f45f85", "fields": {"nom_de_la_commune": "CHAPELLE SPINASSE", "libell_d_acheminement": "CHAPELLE SPINASSE", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19046"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "836a2a2f1c6c59ff86839e1fa10815b1dcb1837a", "fields": {"nom_de_la_commune": "CLERGOUX", "libell_d_acheminement": "CLERGOUX", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19056"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba01a84ccf277f65b76f6f8e272eade74d522065", "fields": {"nom_de_la_commune": "COMBRESSOL", "libell_d_acheminement": "COMBRESSOL", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19058"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0ca0cc04741f4b565e11c035aeaa28a4135047", "fields": {"nom_de_la_commune": "CORREZE", "libell_d_acheminement": "CORREZE", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19062"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de79bbf1bb43a64bb349ab2cf8cf7078548e2919", "fields": {"nom_de_la_commune": "DAMPNIAT", "libell_d_acheminement": "DAMPNIAT", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19068"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc28f4dfaf4abbbf92278200cfccc288764494a9", "fields": {"nom_de_la_commune": "DAVIGNAC", "libell_d_acheminement": "DAVIGNAC", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19071"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea047e81c14a063f9efe52b10f5807455f87802", "fields": {"nom_de_la_commune": "L EGLISE AUX BOIS", "libell_d_acheminement": "L EGLISE AUX BOIS", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19074"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e37f2dbd81a5c57efc114e7016811727b54df5", "fields": {"nom_de_la_commune": "ESPARTIGNAC", "libell_d_acheminement": "ESPARTIGNAC", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19076"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03288ff49690cf1bdffe3f5473f79d1ec40bd4f9", "fields": {"nom_de_la_commune": "EYREIN", "libell_d_acheminement": "EYREIN", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19081"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c063bfc2a15761d83192701a2c135e097728c99", "fields": {"nom_de_la_commune": "GUMOND", "libell_d_acheminement": "GUMOND", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19090"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22de82dc7179a7122d5256063328c5f03e309d25", "fields": {"nom_de_la_commune": "AUZOUVILLE SUR RY", "libell_d_acheminement": "AUZOUVILLE SUR RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76046"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48b714321c8e0eb12be13aa6ce6ecd41a612002", "fields": {"nom_de_la_commune": "AUZOUVILLE SUR SAANE", "libell_d_acheminement": "AUZOUVILLE SUR SAANE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76047"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dac1da47a27ac8b2297186c973ed5454064f934", "fields": {"nom_de_la_commune": "BAILLOLET", "libell_d_acheminement": "BAILLOLET", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76053"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9ace61b5290233a5a24ae26b3b68ee84c31f0b", "fields": {"nom_de_la_commune": "BAONS LE COMTE", "libell_d_acheminement": "BAONS LE COMTE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76055"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd7fe233884aba480e2efe5cafdd216ffc96125", "fields": {"nom_de_la_commune": "BEAUBEC LA ROSIERE", "libell_d_acheminement": "BEAUBEC LA ROSIERE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76060"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f91060421b9391763a2034a015ac5811f9a3a6", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76064"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd4092d46cb594b207753ddfce4a7645eb39a8c", "fields": {"nom_de_la_commune": "BEAUSSAULT", "libell_d_acheminement": "BEAUSSAULT", "code_postal": "76870", "coordonnees_gps": [49.670350783, 1.60614437004], "code_commune_insee": "76065"}, "geometry": {"type": "Point", "coordinates": [1.60614437004, 49.670350783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d94f88b5beb34c06ef1f8520f15491cb22258d", "fields": {"nom_de_la_commune": "BEC DE MORTAGNE", "libell_d_acheminement": "BEC DE MORTAGNE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76068"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e94b0d30cb1197cf79f63730169726bf5d7d9de", "fields": {"nom_de_la_commune": "BENARVILLE", "libell_d_acheminement": "BENARVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76076"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2adb1e8f98da6b9442e43ad074296605b2d67da5", "fields": {"nom_de_la_commune": "BENOUVILLE", "libell_d_acheminement": "BENOUVILLE", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76079"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee9e69046ae3005b326255f718d488feef96c87", "fields": {"nom_de_la_commune": "BERVILLE SUR SEINE", "libell_d_acheminement": "BERVILLE SUR SEINE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76088"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f2c4b1f9b899829ca842ac812f6eb1b693a5b4", "fields": {"nom_de_la_commune": "BIVILLE LA BAIGNARDE", "libell_d_acheminement": "BIVILLE LA BAIGNARDE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76096"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185147c3499c0668bbd8aec0e3f7c2d5f720ecfa", "fields": {"nom_de_la_commune": "BIVILLE LA RIVIERE", "libell_d_acheminement": "BIVILLE LA RIVIERE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76097"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebf7492971ba5b8950c9db221e2fea3c09753aa", "fields": {"nom_de_la_commune": "BLACQUEVILLE", "libell_d_acheminement": "BLACQUEVILLE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76099"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f588243d4193d8f5376ad0f518f1512f39323bc", "fields": {"nom_de_la_commune": "BONSECOURS", "libell_d_acheminement": "BONSECOURS", "code_postal": "76240", "coordonnees_gps": [49.4050423755, 1.13866977273], "code_commune_insee": "76103"}, "geometry": {"type": "Point", "coordinates": [1.13866977273, 49.4050423755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a97bc529ff4312805ef027e307f7a463e27d44", "fields": {"nom_de_la_commune": "BOIS D ENNEBOURG", "libell_d_acheminement": "BOIS D ENNEBOURG", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76106"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bdab97226e43a436628d7d14c118e80a912399", "fields": {"nom_de_la_commune": "BOIS HEROULT", "libell_d_acheminement": "BOIS HEROULT", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76109"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2cdbc546ccb2636f24b1f5148124889f7d0131", "fields": {"nom_de_la_commune": "BOIS HIMONT", "libell_d_acheminement": "BOIS HIMONT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76110"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a50249cf5e146f2c8cbcb48efb4a3fb42cd40279", "fields": {"nom_de_la_commune": "BORDEAUX ST CLAIR", "libell_d_acheminement": "BORDEAUX ST CLAIR", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76117"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a714220da65b7524ade2600504d771c8bfd606", "fields": {"nom_de_la_commune": "BOSVILLE", "libell_d_acheminement": "BOSVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76128"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e72be9674b98aa4c6f91106dc8d498465655c916", "fields": {"nom_de_la_commune": "LE BOURG DUN", "libell_d_acheminement": "LE BOURG DUN", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76133"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e274b7dd22d36a8d2f22a0dbb7e513e17eb66f54", "fields": {"nom_de_la_commune": "BRACHY", "libell_d_acheminement": "BRACHY", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76136"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3330ae168ade64160437264d1b1a0c78b1b5e6", "fields": {"nom_de_la_commune": "BUCHY", "libell_d_acheminement": "BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76146"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e7c333e587550f1f235553ac401b3f4cc43c19", "fields": {"nom_de_la_commune": "BURES EN BRAY", "libell_d_acheminement": "BURES EN BRAY", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76148"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2617066193b741490ca297fb26b40bf1ad557220", "fields": {"nom_de_la_commune": "CANEHAN", "libell_d_acheminement": "CANEHAN", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76155"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa96441551f8ef70a5ad99d8428aec36b15e2227", "fields": {"nom_de_la_commune": "CARVILLE LA FOLLETIERE", "libell_d_acheminement": "CARVILLE LA FOLLETIERE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76160"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bb5e21f81d656c62b51e070d52437791aa1082", "fields": {"nom_de_la_commune": "CARVILLE POT DE FER", "libell_d_acheminement": "CARVILLE POT DE FER", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76161"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99f1305defba3f37fcf4ac260cf80ce9ba7daf", "fields": {"nom_de_la_commune": "LE CATELIER", "libell_d_acheminement": "LE CATELIER", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76162"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b47e5a3797faf3a8cbb8b142e5432232fc498fe3", "fields": {"nom_de_la_commune": "CATENAY", "libell_d_acheminement": "CATENAY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76163"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ae91d9b1b31195ff788096f469196bd8a76404", "fields": {"nom_de_la_commune": "CAUVILLE SUR MER", "libell_d_acheminement": "CAUVILLE SUR MER", "code_postal": "76930", "coordonnees_gps": [49.5712629659, 0.127046049266], "code_commune_insee": "76167"}, "geometry": {"type": "Point", "coordinates": [0.127046049266, 49.5712629659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645310ee9238c3a25bd42455cc059b3b94ea9837", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BOURGAY", "libell_d_acheminement": "LA CHAPELLE DU BOURGAY", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76170"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7063a107c9f28a4701974899407c290104153ca", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR DUN", "libell_d_acheminement": "LA CHAPELLE SUR DUN", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76172"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a04e98b8c0787dc00be45646d76ae4398a5fe59", "fields": {"nom_de_la_commune": "CLAIS", "libell_d_acheminement": "CLAIS", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76175"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a9879520f744bc488374c2b7cad3a2717eef5c", "fields": {"nom_de_la_commune": "CLEVILLE", "libell_d_acheminement": "CLEVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76181"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789ef43adee113d8597d90e9730adbc3b406f5a2", "fields": {"nom_de_la_commune": "CRIQUETOT LE MAUCONDUIT", "libell_d_acheminement": "CRIQUETOT LE MAUCONDUIT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76195"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03cbd9b48c2b2caa8c241f26aa6ea8e3277097e", "fields": {"nom_de_la_commune": "CRIQUETOT SUR LONGUEVILLE", "libell_d_acheminement": "CRIQUETOT SUR LONGUEVILLE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76197"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a332f2e33b2aed694f47ae26fd09dcee7d8b26d", "fields": {"nom_de_la_commune": "CROIXDALLE", "libell_d_acheminement": "CROIXDALLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76202"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b033cd860b1125e50adcf99db1e9006a7caa358", "fields": {"nom_de_la_commune": "DAMPIERRE EN BRAY", "libell_d_acheminement": "DAMPIERRE EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76209"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf4264bd9f3f776c4ba02c9c8d5b4e4c7ab54ab", "fields": {"nom_de_la_commune": "DARNETAL", "libell_d_acheminement": "DARNETAL", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76212"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e8cce3ac7d62cd1d3a47ed9b32f8b5c75a213a", "fields": {"nom_de_la_commune": "DOUVREND", "libell_d_acheminement": "DOUVREND", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76220"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1c5b1f7c73361944a780a08f9c43c051bdacab", "fields": {"nom_de_la_commune": "DUCLAIR", "libell_d_acheminement": "DUCLAIR", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76222"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806104c81095c0b876a6b21c812543dcfc50059b", "fields": {"nom_de_la_commune": "ECRETTEVILLE LES BAONS", "libell_d_acheminement": "ECRETTEVILLE LES BAONS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76225"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728c26eb3a4b5d6b1788a0c100b507aa135388db", "fields": {"nom_de_la_commune": "ELETOT", "libell_d_acheminement": "ELETOT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76232"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06c55035f487d9d65a2ecf5b7bff1f4e535d837", "fields": {"nom_de_la_commune": "ENVRONVILLE", "libell_d_acheminement": "ENVRONVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76236"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fe447cb12d03b87fd1705b6fe26b7795c868d53", "fields": {"nom_de_la_commune": "EPINAY SUR DUCLAIR", "libell_d_acheminement": "EPINAY SUR DUCLAIR", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76237"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7842942ecf367bbcae5084588a755d8831b1c0a", "fields": {"nom_de_la_commune": "EPRETOT", "libell_d_acheminement": "EPRETOT", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76239"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9389a01cb51e4063fd31122f4792e9784e677cb1", "fields": {"nom_de_la_commune": "ESLETTES", "libell_d_acheminement": "ESLETTES", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76245"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fceeaeb6f15b20f6bc35625ca6434668ffe74343", "fields": {"nom_de_la_commune": "EU", "libell_d_acheminement": "EU", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76255"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde42ab30d99a304ca019fcd608b3a585c206dfa", "fields": {"nom_de_la_commune": "FESQUES", "libell_d_acheminement": "FESQUES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76262"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4c98d2bf6c2fbd76c6cc554b3738fc1adf4fda", "fields": {"nom_de_la_commune": "LA FEUILLIE", "libell_d_acheminement": "LA FEUILLIE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76263"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357c36940698301e2db9c04e35292c17f5eed7d6", "fields": {"nom_de_la_commune": "FONGUEUSEMARE", "libell_d_acheminement": "FONGUEUSEMARE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76268"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae43ac2b80bc71b9e5baa67639964a6f39e82c1e", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "BETTEVILLE", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9896da1c8618f8ddbc4d74a1b9066a26e9ab925", "fields": {"nom_de_la_commune": "GANZEVILLE", "libell_d_acheminement": "GANZEVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76298"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0e9303fdd45fa4768ceba0dcc8b02a6ac1ce28", "fields": {"nom_de_la_commune": "GERVILLE", "libell_d_acheminement": "GERVILLE", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76300"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d89444171807e2f3d82c18d1149de4718c22cdb", "fields": {"nom_de_la_commune": "GONNEVILLE SUR SCIE", "libell_d_acheminement": "GONNEVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76308"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ef311c93789411a7314fa063e58a17f5a93ae3", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76311"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fec74f205311f717e9adfd7a99648e879835c0", "fields": {"nom_de_la_commune": "GRAINVILLE SUR RY", "libell_d_acheminement": "GRAINVILLE SUR RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76316"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ab46ef20f54649987612981dd2d45e57eda9b8", "fields": {"nom_de_la_commune": "LE GRAND QUEVILLY", "libell_d_acheminement": "LE GRAND QUEVILLY", "code_postal": "76120", "coordonnees_gps": [49.40932157, 1.03989474856], "code_commune_insee": "76322"}, "geometry": {"type": "Point", "coordinates": [1.03989474856, 49.40932157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e120bdc7c5da58b8d5d69546555afe9e9410dc61", "fields": {"nom_de_la_commune": "GRAVAL", "libell_d_acheminement": "GRAVAL", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76323"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664616803dbe4ed214b0c0e1fb899cb978998dac", "fields": {"nom_de_la_commune": "GRUGNY", "libell_d_acheminement": "GRUGNY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76331"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5617051c49e85c1b8ea67776b6527299180c769c", "fields": {"nom_de_la_commune": "GRUMESNIL", "libell_d_acheminement": "GRUMESNIL", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76332"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f604846534561aef2b8a7669a48ce44f4b6c8d63", "fields": {"nom_de_la_commune": "LA HALLOTIERE", "libell_d_acheminement": "LA HALLOTIERE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76338"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ebbbbd6614ab59b38928943d880a07357b3057", "fields": {"nom_de_la_commune": "HARCANVILLE", "libell_d_acheminement": "HARCANVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76340"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dedee93797f3d6dff526c95041853b6303fd752", "fields": {"nom_de_la_commune": "HARFLEUR", "libell_d_acheminement": "HARFLEUR", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76341"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa46c81af53ce6d623162798f6917c6a587ef69c", "fields": {"nom_de_la_commune": "HAUDRICOURT", "libell_d_acheminement": "HAUDRICOURT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76344"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f284a731db392e5dac4c8645651cab48a787cb", "fields": {"nom_de_la_commune": "HAUTOT LE VATOIS", "libell_d_acheminement": "HAUTOT LE VATOIS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76347"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3bc84bfeffc455ab1adc9e07cb7ebe9b010e3e", "fields": {"nom_de_la_commune": "HERMEVILLE", "libell_d_acheminement": "HERMEVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76357"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b312644fc7e7e7b6f74a4ec000db1f1c38c8175", "fields": {"nom_de_la_commune": "HEUGLEVILLE SUR SCIE", "libell_d_acheminement": "HEUGLEVILLE SUR SCIE", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76360"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3bbdab59aaed56c801a07a06587a78fe332c47", "fields": {"nom_de_la_commune": "HODENG HODENGER", "libell_d_acheminement": "HODENG HODENGER", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76364"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72c0d599d2d3b37b676b1c612b2243466d19e9a", "fields": {"nom_de_la_commune": "LE HOULME", "libell_d_acheminement": "LE HOULME", "code_postal": "76770", "coordonnees_gps": [49.5108089037, 1.07268488267], "code_commune_insee": "76366"}, "geometry": {"type": "Point", "coordinates": [1.07268488267, 49.5108089037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487341193857d845e3d35dcecf85cd371488aff3", "fields": {"nom_de_la_commune": "ILLOIS", "libell_d_acheminement": "ILLOIS", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76372"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a126034502bc9258f34d8ddf3ddcd6d711ee31", "fields": {"nom_de_la_commune": "LAMBERVILLE", "libell_d_acheminement": "LAMBERVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76379"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b2a057856c844c18a988587397c9553bdf36d0", "fields": {"nom_de_la_commune": "LESTANVILLE", "libell_d_acheminement": "LESTANVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76383"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de0eaebbeb93bea5e5cadf0c852dbccf248e6bc", "fields": {"nom_de_la_commune": "LINTOT", "libell_d_acheminement": "LINTOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76388"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597612809e41981b9d2744bdd1c573d97af2d431", "fields": {"nom_de_la_commune": "LES LOGES", "libell_d_acheminement": "LES LOGES", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76390"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d3170e59d78d17396daa4d842d225aace19534", "fields": {"nom_de_la_commune": "LONGUEIL", "libell_d_acheminement": "LONGUEIL", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76395"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29e8157b0c0c6939f2f3c16f7b6f74f74d39ed46", "fields": {"code_postal": "76940", "code_commune_insee": "76401", "libell_d_acheminement": "ARELAUNE EN SEINE", "ligne_5": "ST NICOLAS DE BLIQUETUIT", "nom_de_la_commune": "ARELAUNE EN SEINE", "coordonnees_gps": [49.4548266435, 0.725950851811]}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decd2117f7cf4240d054308c25435e5f41b715a4", "fields": {"nom_de_la_commune": "MALAUNAY", "libell_d_acheminement": "MALAUNAY", "code_postal": "76770", "coordonnees_gps": [49.5108089037, 1.07268488267], "code_commune_insee": "76402"}, "geometry": {"type": "Point", "coordinates": [1.07268488267, 49.5108089037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d7b0c84e04c6cbd60cf5d9ba5f9d03af5ee731", "fields": {"code_postal": "76150", "code_commune_insee": "76410", "libell_d_acheminement": "MAROMME", "ligne_5": "LA MAINE", "nom_de_la_commune": "MAROMME", "coordonnees_gps": [49.4875793097, 1.0078796915]}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2ad5896eb75f5b000ebeba555436d1e3379886", "fields": {"nom_de_la_commune": "MARTAINVILLE EPREVILLE", "libell_d_acheminement": "MARTAINVILLE EPREVILLE", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76412"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ba653d97da6d2619bbdd2ad0ec65a758ffd431", "fields": {"nom_de_la_commune": "MELAMARE", "libell_d_acheminement": "MELAMARE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76421"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc146dfbdfdaa83997f24c11f7fbae8a9e114d4c", "fields": {"nom_de_la_commune": "MESANGUEVILLE", "libell_d_acheminement": "MESANGUEVILLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76426"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad395cb433045ff10f33be2320c656625c08905b", "fields": {"nom_de_la_commune": "MESNIL MAUGER", "libell_d_acheminement": "MESNIL MAUGER", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76432"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26296654ce83589aaee680ded598a706b2ba5234", "fields": {"nom_de_la_commune": "MESNIL RAOUL", "libell_d_acheminement": "MESNIL RAOUL", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76434"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baf863c5d6e6d14bd273fca116804b192924cbd", "fields": {"nom_de_la_commune": "LE MESNIL SOUS JUMIEGES", "libell_d_acheminement": "LE MESNIL SOUS JUMIEGES", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76436"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0524ffe8a12f3fbe4f331d8b1c566a18008a6981", "fields": {"nom_de_la_commune": "MONCHY SUR EU", "libell_d_acheminement": "MONCHY SUR EU", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76442"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57b8a00cb808e481a42cee6d87b43d76767fb6be", "fields": {"nom_de_la_commune": "MONTIVILLIERS", "libell_d_acheminement": "MONTIVILLIERS", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76447"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5b36b73785bc035b8d9b5cc52f0dcfe04316f9", "fields": {"nom_de_la_commune": "MONTVILLE", "libell_d_acheminement": "MONTVILLE", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76452"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8757f5c7f47eb12f12943ad8276cc11c8be10a8d", "fields": {"nom_de_la_commune": "MORGNY LA POMMERAYE", "libell_d_acheminement": "MORGNY LA POMMERAYE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76453"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efb8be666106859a106dc69620600fd099169e6", "fields": {"nom_de_la_commune": "MORTEMER", "libell_d_acheminement": "MORTEMER", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76454"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a73cdf39d6c55459187dd3fd9aca332aa08c6a", "fields": {"nom_de_la_commune": "NOTRE DAME D ALIERMONT", "libell_d_acheminement": "NOTRE DAME D ALIERMONT", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76472"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5118e00f72e775ee7abae068393dda14878631", "fields": {"code_postal": "76170", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "TOUFFREVILLE LA CABLE", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.5137047652, 0.527687035677]}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7521bf41c93e10018c1c9f055830e53132511fa0", "fields": {"code_postal": "76170", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "TRIQUERVILLE", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.5137047652, 0.527687035677]}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0aa80f21f5175bc0c66c64ae93d2318334cf92", "fields": {"nom_de_la_commune": "ORIVAL", "libell_d_acheminement": "ORIVAL", "code_postal": "76500", "coordonnees_gps": [49.3087517455, 0.955689730263], "code_commune_insee": "76486"}, "geometry": {"type": "Point", "coordinates": [0.955689730263, 49.3087517455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9d3ed7992889b4aa907ddc0f151ac70bfbc18f", "fields": {"nom_de_la_commune": "OSMOY ST VALERY", "libell_d_acheminement": "OSMOY ST VALERY", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76487"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbbee53941a471df50f0a0f63164d42ab57b5b4", "fields": {"nom_de_la_commune": "POMMEREVAL", "libell_d_acheminement": "POMMEREVAL", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76506"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8ecf0de05b85e4b043421bfca60e753d55bf78", "fields": {"nom_de_la_commune": "PUISENVAL", "libell_d_acheminement": "PUISENVAL", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76512"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217debafda661c5d4ffc6c69e5be73fd88158186", "fields": {"nom_de_la_commune": "QUIBERVILLE", "libell_d_acheminement": "QUIBERVILLE", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76515"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d86b7898e291a8615426cd5cefa05f581e3dc2d", "fields": {"nom_de_la_commune": "QUIEVRECOURT", "libell_d_acheminement": "QUIEVRECOURT", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76516"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63afe7c0da3795d7eafb3f0cdc05729de0f2cd3", "fields": {"nom_de_la_commune": "REBETS", "libell_d_acheminement": "REBETS", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76521"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d844a03986a2323a0499bb31a345d80d0b886e33", "fields": {"nom_de_la_commune": "CANCHY", "libell_d_acheminement": "CANCHY", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14132"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98cdb8872d780aa5f88d3271ed5e89be4c86578b", "fields": {"nom_de_la_commune": "CARCAGNY", "libell_d_acheminement": "CARCAGNY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14135"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7559fa72544dbd709b23748412255462161bb3e5", "fields": {"nom_de_la_commune": "CARTIGNY L EPINAY", "libell_d_acheminement": "CARTIGNY L EPINAY", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14138"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264937d4e04c62aa03ae3e221e5d36119c6cef17", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14147"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acd71b4bae76f289bb20051efcdbc1d1ca8f221", "fields": {"nom_de_la_commune": "CHEUX", "libell_d_acheminement": "CHEUX", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14157"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f69490f4105684dba5d49781eb8a21f82b36aa", "fields": {"nom_de_la_commune": "COLLEVILLE SUR MER", "libell_d_acheminement": "COLLEVILLE SUR MER", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14165"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79cf7c4782e6b6265628574383bbb85044cc387", "fields": {"nom_de_la_commune": "COLOMBELLES", "libell_d_acheminement": "COLOMBELLES", "code_postal": "14460", "coordonnees_gps": [49.1981545161, -0.294952330301], "code_commune_insee": "14167"}, "geometry": {"type": "Point", "coordinates": [-0.294952330301, 49.1981545161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da368b9596dc5d5a4290344e439f7aa8d5f41916", "fields": {"code_postal": "14110", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "PROUSSY", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.8603879133, -0.538857121596]}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831daa15a5446853bead9714418ba5664ba73455", "fields": {"nom_de_la_commune": "CORMELLES LE ROYAL", "libell_d_acheminement": "CORMELLES LE ROYAL", "code_postal": "14123", "coordonnees_gps": [49.1447730282, -0.352071699287], "code_commune_insee": "14181"}, "geometry": {"type": "Point", "coordinates": [-0.352071699287, 49.1447730282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8825e3d89c7cba4abc0829a0e1a50caf71a89cfa", "fields": {"nom_de_la_commune": "COSSESSEVILLE", "libell_d_acheminement": "COSSESSEVILLE", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14183"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a796f1fba83f33e56c63edf3a1b092063ada1fc8", "fields": {"nom_de_la_commune": "COUDRAY RABUT", "libell_d_acheminement": "COUDRAY RABUT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14185"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8122dca53e968ad3777360218c3c141c97326ed1", "fields": {"nom_de_la_commune": "COURSON", "libell_d_acheminement": "COURSON", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14192"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7bbf85c41d547eca455c29934bd10d2b095bc61", "fields": {"nom_de_la_commune": "COURVAUDON", "libell_d_acheminement": "COURVAUDON", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14195"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7515ac2ea74b970dc8646847cfa080915b7277e", "fields": {"nom_de_la_commune": "CREVECOEUR EN AUGE", "libell_d_acheminement": "CREVECOEUR EN AUGE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14201"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a48ab1c9c922f496133bcc6a621b074bad74f1", "fields": {"nom_de_la_commune": "CUSSY", "libell_d_acheminement": "CUSSY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14214"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67a0536c780f1bae0d4af924226f67d25ff1cd5", "fields": {"nom_de_la_commune": "ECRAMMEVILLE", "libell_d_acheminement": "ECRAMMEVILLE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14235"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4d058a9c8aa161ff804e15a9d779c9279c51d7", "fields": {"nom_de_la_commune": "EPINAY SUR ODON", "libell_d_acheminement": "EPINAY SUR ODON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14241"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25543ff3796a5f1383b352ebc27e4f6c376e7bde", "fields": {"nom_de_la_commune": "ESTREES LA CAMPAGNE", "libell_d_acheminement": "ESTREES LA CAMPAGNE", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14252"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7611acb1e1d131ea0971727f3ed710485ab9845", "fields": {"nom_de_la_commune": "FALAISE", "libell_d_acheminement": "FALAISE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14258"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa66f5c804949655b604eb049775189ce7f1f727", "fields": {"nom_de_la_commune": "FAUGUERNON", "libell_d_acheminement": "FAUGUERNON", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14260"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965651bf09c47851cf332b7ee0bb23fd2992929d", "fields": {"nom_de_la_commune": "FEUGUEROLLES BULLY", "libell_d_acheminement": "FEUGUEROLLES BULLY", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14266"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3260c09f8ab67638628cd839b5c6a69fd6aa85e", "fields": {"nom_de_la_commune": "LA FOLLETIERE ABENON", "libell_d_acheminement": "LA FOLLETIERE ABENON", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14273"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4df809c21baffd4bbf98a983b34822496366b2e", "fields": {"nom_de_la_commune": "FOULOGNES", "libell_d_acheminement": "FOULOGNES", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14282"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39cab7d69115ebe8f0d0b090d46ef0293beb98d5", "fields": {"nom_de_la_commune": "FOURCHES", "libell_d_acheminement": "FOURCHES", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14283"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94df0a45d27693f2ef362240aa4e03f5ba8f2b4b", "fields": {"nom_de_la_commune": "FRENOUVILLE", "libell_d_acheminement": "FRENOUVILLE", "code_postal": "14630", "coordonnees_gps": [49.1466089326, -0.248954415466], "code_commune_insee": "14287"}, "geometry": {"type": "Point", "coordinates": [-0.248954415466, 49.1466089326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5708e3aa5b50b7199a4420c943da0aca3ebf50ee", "fields": {"nom_de_la_commune": "LE FRESNE CAMILLY", "libell_d_acheminement": "LE FRESNE CAMILLY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14288"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429a85b2600621a827ba99239e88b81c56b24d14", "fields": {"nom_de_la_commune": "GAVRUS", "libell_d_acheminement": "GAVRUS", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14297"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dfe0ec5f7c93264ba05c07b5d7a79797df8fe2", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14307"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8284dbdca5f98096c94690d2b6a6cd0d8814cfa7", "fields": {"nom_de_la_commune": "GRANDCAMP MAISY", "libell_d_acheminement": "GRANDCAMP MAISY", "code_postal": "14450", "coordonnees_gps": [49.3773022601, -1.01912663237], "code_commune_insee": "14312"}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f26209397dfaf770f8dd4f42882ef557fdafd7", "fields": {"nom_de_la_commune": "GRIMBOSQ", "libell_d_acheminement": "GRIMBOSQ", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14320"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769dab11b7ce5e413740c6ffa2f74628fceb53d4", "fields": {"nom_de_la_commune": "HERMANVILLE SUR MER", "libell_d_acheminement": "HERMANVILLE SUR MER", "code_postal": "14880", "coordonnees_gps": [49.2791350084, -0.312303050081], "code_commune_insee": "14325"}, "geometry": {"type": "Point", "coordinates": [-0.312303050081, 49.2791350084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cb908985c3b7ae15b2e9bc269f923461e1d89d", "fields": {"nom_de_la_commune": "HONFLEUR", "libell_d_acheminement": "HONFLEUR", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14333"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca2962733cf25bcc0e396d0b4896f3669200b49", "fields": {"nom_de_la_commune": "L HOTELLERIE", "libell_d_acheminement": "L HOTELLERIE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14334"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36ef3a676d1d55f34526accb3acb4ca5cde5be9", "fields": {"nom_de_la_commune": "HOTOT EN AUGE", "libell_d_acheminement": "HOTOT EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14335"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67dd8f0d125bb558491aa6f7bf3e8856e1842697", "fields": {"nom_de_la_commune": "JANVILLE", "libell_d_acheminement": "JANVILLE", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14344"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8caa79af7b0bca6bb0341bcd77df7cfef64ec4", "fields": {"nom_de_la_commune": "LANGRUNE SUR MER", "libell_d_acheminement": "LANGRUNE SUR MER", "code_postal": "14830", "coordonnees_gps": [49.3126227875, -0.378465555981], "code_commune_insee": "14354"}, "geometry": {"type": "Point", "coordinates": [-0.378465555981, 49.3126227875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27586975e9c4f520707f699df3be7b4db3f932d", "fields": {"nom_de_la_commune": "LASSY", "libell_d_acheminement": "LASSY", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14357"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40def82b0d6362b17e868680f3129844848ce543", "fields": {"nom_de_la_commune": "LECAUDE", "libell_d_acheminement": "LECAUDE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14359"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8263a4c34abb5da800e56807a510d24d90fbfa23", "fields": {"nom_de_la_commune": "LION SUR MER", "libell_d_acheminement": "LION SUR MER", "code_postal": "14780", "coordonnees_gps": [49.3009660724, -0.333699780071], "code_commune_insee": "14365"}, "geometry": {"type": "Point", "coordinates": [-0.333699780071, 49.3009660724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c1486558f5939fca70c68a6d69531e3369738d", "fields": {"nom_de_la_commune": "LISIEUX", "libell_d_acheminement": "LISIEUX", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14366"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a861d447bd9ead6b839b22fc4129c40fe9290138", "fields": {"nom_de_la_commune": "LISON", "libell_d_acheminement": "LISON", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14367"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6c9aa183b0c543f6c6c7fb15577645d044778d", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "BELLOU", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2ce90fd4f76694b4c718ad137fb6cf965924e3", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LES AUTELS ST BAZILE", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3f927163ad1f908b8a9926eef9fb7f21a428f7", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LES MOUTIERS HUBERT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4a672581713b9e689327cd1c90dc80d8fafbd3", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "FAMILLY", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca582d2faa5b3acb80186db8420a6ce8027e673", "fields": {"nom_de_la_commune": "LOUCELLES", "libell_d_acheminement": "LOUCELLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14380"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e7872edfe2285671a4b3ae9db4c32dd9f086f9", "fields": {"nom_de_la_commune": "LOUVIERES", "libell_d_acheminement": "LOUVIERES", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14382"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7612dd490548ec4db3002c884b815329c000569d", "fields": {"nom_de_la_commune": "MAIZET", "libell_d_acheminement": "MAIZET", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14393"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0499b8b92e02e462cbcc5c44fffcee26576b4e", "fields": {"nom_de_la_commune": "LE MESNIL MAUGER", "libell_d_acheminement": "LE MESNIL MAUGER", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14422"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac237460b69e5672cbff95b859ac3c70bccf6408", "fields": {"code_postal": "14270", "code_commune_insee": "14422", "libell_d_acheminement": "LE MESNIL MAUGER", "ligne_5": "STE MARIE AUX ANGLAIS", "nom_de_la_commune": "LE MESNIL MAUGER", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c2c2bc4bea50a9a3697bc20f000cff72cc2125", "fields": {"nom_de_la_commune": "MONTS EN BESSIN", "libell_d_acheminement": "MONTS EN BESSIN", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14449"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534130f51a2d63cd2f6a01a68e47cf4b4fb42f32", "fields": {"nom_de_la_commune": "MOUEN", "libell_d_acheminement": "MOUEN", "code_postal": "14790", "coordonnees_gps": [49.1541386997, -0.466148094743], "code_commune_insee": "14454"}, "geometry": {"type": "Point", "coordinates": [-0.466148094743, 49.1541386997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc234d7e549b2a9d2354177a2e240fb2c7e5bc57", "fields": {"nom_de_la_commune": "NOROLLES", "libell_d_acheminement": "NOROLLES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14466"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36be03bb07b9ec5a5b53d45e92980221b3a98f44", "fields": {"nom_de_la_commune": "NORON L ABBAYE", "libell_d_acheminement": "NORON L ABBAYE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14467"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0693aeb0d4726722b1e162ae9265dd7cbde6efab", "fields": {"nom_de_la_commune": "OLENDON", "libell_d_acheminement": "OLENDON", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14476"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e505c4a42fcebd23acfda2fec983b6a7615b4ead", "fields": {"nom_de_la_commune": "ONDEFONTAINE", "libell_d_acheminement": "ONDEFONTAINE", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14477"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad9635aa9ae7f1de245c749b505c44aca44d968", "fields": {"nom_de_la_commune": "ORBEC", "libell_d_acheminement": "ORBEC", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14478"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ad3d866de46f2b4345f37f06bed3401fb9f285", "fields": {"nom_de_la_commune": "OUFFIERES", "libell_d_acheminement": "OUFFIERES", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14483"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37a16b90848e1d0d655dff5094134a947744f42", "fields": {"nom_de_la_commune": "OUILLY DU HOULEY", "libell_d_acheminement": "OUILLY DU HOULEY", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14484"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fce2edd57d31395e86c9b75a46b4b8261aca0f0", "fields": {"nom_de_la_commune": "PARFOURU SUR ODON", "libell_d_acheminement": "PARFOURU SUR ODON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14491"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf6243bf7803a3826f97c9d8d4b45d52bd65a00", "fields": {"nom_de_la_commune": "PERRIERES", "libell_d_acheminement": "PERRIERES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14497"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88215625b47641816b9ab96790090f1fac13ebd", "fields": {"nom_de_la_commune": "PERTHEVILLE NERS", "libell_d_acheminement": "PERTHEVILLE NERS", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14498"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def67d89adc23157a2634b44cad0b6cab45f0f85", "fields": {"nom_de_la_commune": "PLANQUERY", "libell_d_acheminement": "PLANQUERY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14506"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832ea55b8399f2116bd53342bf261f98d1cf138e", "fields": {"nom_de_la_commune": "LE PLESSIS GRIMOULT", "libell_d_acheminement": "LE PLESSIS GRIMOULT", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14508"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47236d829b6b2c9a1adc7eebc8a012b32e11555a", "fields": {"code_postal": "14520", "code_commune_insee": "14515", "libell_d_acheminement": "PORT EN BESSIN HUPPAIN", "ligne_5": "HUPPAIN", "nom_de_la_commune": "PORT EN BESSIN HUPPAIN", "coordonnees_gps": [49.3400701436, -0.771788294928]}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60fa9eb984dc0ac40eba09f97039ca18b17f2e17", "fields": {"nom_de_la_commune": "POTIGNY", "libell_d_acheminement": "POTIGNY", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14516"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6689d883958ae94f7fb4ed792282d09eae2c1bca", "fields": {"nom_de_la_commune": "BIEVILLE QUETIEVILLE", "libell_d_acheminement": "BIEVILLE QUETIEVILLE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14527"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1f1041c86d7c45be3fa94c1de2388f3c31c91c", "fields": {"nom_de_la_commune": "QUETTEVILLE", "libell_d_acheminement": "QUETTEVILLE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14528"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffd1af1ccc9c439ac0156f3004f67e9bd6b66f1", "fields": {"nom_de_la_commune": "LA RIVIERE ST SAUVEUR", "libell_d_acheminement": "LA RIVIERE ST SAUVEUR", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14536"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae8518ddd413b3cd57dedc886f085e9d873e49d", "fields": {"nom_de_la_commune": "ST ANDRE D HEBERTOT", "libell_d_acheminement": "ST ANDRE D HEBERTOT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14555"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "670f384193da1fb264ec8f894b07ee56cd8374e5", "fields": {"nom_de_la_commune": "ST COME DE FRESNE", "libell_d_acheminement": "ST COME DE FRESNE", "code_postal": "14960", "coordonnees_gps": [49.3273918281, -0.583379928435], "code_commune_insee": "14565"}, "geometry": {"type": "Point", "coordinates": [-0.583379928435, 49.3273918281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe467955bfab746cff3dffb42c4282c4e7b9e3d", "fields": {"nom_de_la_commune": "ST ETIENNE LA THILLAYE", "libell_d_acheminement": "ST ETIENNE LA THILLAYE", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14575"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd4994dc942745f078ae9fea4b4c4d26dd628ca2", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "LA CHAPELLE HAUTE GRUE", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc8688652bba78ea013e40d4548c5a105f1b7cd", "fields": {"nom_de_la_commune": "ST GERMAIN DE LIVET", "libell_d_acheminement": "ST GERMAIN DE LIVET", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14582"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82552ed2642dd934063e27d91bf16c56e7429d28", "fields": {"nom_de_la_commune": "ST GERMAIN LE VASSON", "libell_d_acheminement": "ST GERMAIN LE VASSON", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14589"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d759b856832eca6feee8f64a2991e2b005e44b3", "fields": {"nom_de_la_commune": "ST LAURENT DU MONT", "libell_d_acheminement": "ST LAURENT DU MONT", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14604"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d70b7e3291783e9cac5dec0721424e0ede760a", "fields": {"nom_de_la_commune": "ST LAURENT SUR MER", "libell_d_acheminement": "ST LAURENT SUR MER", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14605"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd116cfe9ff247ee275e93634708ddff62b07f6", "fields": {"nom_de_la_commune": "ST LOUP HORS", "libell_d_acheminement": "ST LOUP HORS", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14609"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc351a6488cf2f3c1d0848d052995b03b9ce835", "fields": {"nom_de_la_commune": "ST MARCOUF", "libell_d_acheminement": "ST MARCOUF", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14613"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5315dae92cd05350a55ebb49a8f65a18b074fe4a", "fields": {"nom_de_la_commune": "ST OUEN LE PIN", "libell_d_acheminement": "ST OUEN LE PIN", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14639"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00698e7dbe6490c64cde8d6004c6748f9e90f20", "fields": {"nom_de_la_commune": "ST PAIR", "libell_d_acheminement": "ST PAIR", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14640"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6ad761e5bffeaa727fda29a73bba4def1b1cb4", "fields": {"nom_de_la_commune": "ST PIERRE AZIF", "libell_d_acheminement": "ST PIERRE AZIF", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14645"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030d610d1f6ef5f316026cd2ee8fa97f0762f02e", "fields": {"nom_de_la_commune": "ST SEVER CALVADOS", "libell_d_acheminement": "ST SEVER CALVADOS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14658"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b22ca7ce57b134bfbb5613ec053c97f4f90b65", "fields": {"nom_de_la_commune": "ST VIGOR DES MEZERETS", "libell_d_acheminement": "ST VIGOR DES MEZERETS", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14662"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf3311fc3a410c1a2d42dee97135adc9b6d98b9", "fields": {"nom_de_la_commune": "SANNERVILLE", "libell_d_acheminement": "SANNERVILLE", "code_postal": "14940", "coordonnees_gps": [49.1833480619, -0.224513518796], "code_commune_insee": "14666"}, "geometry": {"type": "Point", "coordinates": [-0.224513518796, 49.1833480619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccddb5c6a1f959cfb9a8e4dbbee87da8be29069d", "fields": {"nom_de_la_commune": "SAONNET", "libell_d_acheminement": "SAONNET", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14668"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5e7fe8068ed48e9240f78d6b17335963bc7737", "fields": {"nom_de_la_commune": "SURRAIN", "libell_d_acheminement": "SURRAIN", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14681"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5e634808bdb416b34a7420c139c2f1a97458bc", "fields": {"nom_de_la_commune": "THAON", "libell_d_acheminement": "THAON", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14685"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eeff6f081cad8aae9d794f884cd8e3e0500acdb", "fields": {"nom_de_la_commune": "LE THEIL EN AUGE", "libell_d_acheminement": "LE THEIL EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14687"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a1ba1e1341de523c15bccc45a703fcab70cd2f", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "CURCY SUR ORNE", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70b3ff3dcf8a3b6f6c13d1264e0acd5b6efb23f", "fields": {"nom_de_la_commune": "TIERCEVILLE", "libell_d_acheminement": "TIERCEVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14690"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec39b46d58db2bf5966cdb374810eb197d33ecf3", "fields": {"nom_de_la_commune": "L OUDON", "libell_d_acheminement": "L OUDON", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14697"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e0dcd78de6f1654d1d6edb0abda03dfc8cfd5df", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "BERVILLE", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9071b5e641a1d8ad0b3b49b317240f491aadf251", "fields": {"nom_de_la_commune": "TRACY BOCAGE", "libell_d_acheminement": "TRACY BOCAGE", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14708"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37e5892e757024267ba8cc0f7f97eb4d67d9444", "fields": {"nom_de_la_commune": "LA VACQUERIE", "libell_d_acheminement": "LA VACQUERIE", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14722"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da56b383192ad53bc9bea1a028d99022f5efd67", "fields": {"nom_de_la_commune": "VARAVILLE", "libell_d_acheminement": "VARAVILLE", "code_postal": "14390", "coordonnees_gps": [49.2648004396, -0.14376856722], "code_commune_insee": "14724"}, "geometry": {"type": "Point", "coordinates": [-0.14376856722, 49.2648004396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "874599555eb781e3d0aa24ac610c010db4f7cc6b", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "VASSY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14359213d5451951ccbcd2db7191a1c6e9970440", "fields": {"nom_de_la_commune": "VAUDELOGES", "libell_d_acheminement": "VAUDELOGES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14729"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d94272e740072ae21c84b12476101742bcc98c", "fields": {"nom_de_la_commune": "VAUX SUR AURE", "libell_d_acheminement": "VAUX SUR AURE", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14732"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8773a9cfca6408fefb487c8c381fe3bf35d2e13e", "fields": {"code_postal": "14170", "code_commune_insee": "14735", "libell_d_acheminement": "VENDEUVRE", "ligne_5": "GRISY", "nom_de_la_commune": "VENDEUVRE", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27383bdabd3887fcf4c49c72c4b168706bd60ae1", "fields": {"nom_de_la_commune": "LA VILLEDIEU", "libell_d_acheminement": "LA VILLEDIEU", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48197"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2a11e30df04b89ff807b366f21176fd82b50e7", "fields": {"nom_de_la_commune": "LES ALLEUDS", "libell_d_acheminement": "LES ALLEUDS", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49001"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1584cb989b956301dc436b9d434c86e2ab3b98ce", "fields": {"code_postal": "49700", "code_commune_insee": "49003", "libell_d_acheminement": "TUFFALUN", "ligne_5": "LOUERRE", "nom_de_la_commune": "TUFFALUN", "coordonnees_gps": [47.2078633163, -0.289977588534]}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f75c2fbfd8cec090e2add4a68a52ac1b9bae8d6", "fields": {"nom_de_la_commune": "ANTOIGNE", "libell_d_acheminement": "ANTOIGNE", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49009"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503def5363ea9921706c4d969ccbf46a9b05a660", "fields": {"nom_de_la_commune": "ARTANNES SUR THOUET", "libell_d_acheminement": "ARTANNES SUR THOUET", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49011"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf132e3b8f68468093c02c33259aa39a76541c5c", "fields": {"nom_de_la_commune": "AUBIGNE SUR LAYON", "libell_d_acheminement": "AUBIGNE SUR LAYON", "code_postal": "49540", "coordonnees_gps": [47.1719461736, -0.518340326258], "code_commune_insee": "49012"}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9641432c8ea7bc2b084188215c08a3188351825", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CHEVIRE LE ROUGE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f23d27037666cae42cbf404bad0474347ddc964", "fields": {"nom_de_la_commune": "ST CYR SUR LOIRE", "libell_d_acheminement": "ST CYR SUR LOIRE", "code_postal": "37540", "coordonnees_gps": [47.4183017245, 0.658102652653], "code_commune_insee": "37214"}, "geometry": {"type": "Point", "coordinates": [0.658102652653, 47.4183017245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7de16d9c626d56e30794eaa6cfef2d73f5c94f9", "fields": {"nom_de_la_commune": "ST MARTIN LE BEAU", "libell_d_acheminement": "ST MARTIN LE BEAU", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37225"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd60adc2b597f7fa53c17e3f3d9a938f474a09c8", "fields": {"nom_de_la_commune": "ST ROCH", "libell_d_acheminement": "ST ROCH", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37237"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd1769e71f1da2c61ac7acfbe36e126f4c22a86", "fields": {"nom_de_la_commune": "SAVIGNY EN VERON", "libell_d_acheminement": "SAVIGNY EN VERON", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37242"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc6924a01e5e3f177a354c19699095fe66311b8", "fields": {"nom_de_la_commune": "SAZILLY", "libell_d_acheminement": "SAZILLY", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37244"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79964747c7043c265e4b152e04bbae4e03471cd", "fields": {"nom_de_la_commune": "SEUILLY", "libell_d_acheminement": "SEUILLY", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37248"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfc92d661544c191994d45b1c8e0dfe5300305b", "fields": {"nom_de_la_commune": "SOUVIGNY DE TOURAINE", "libell_d_acheminement": "SOUVIGNY DE TOURAINE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37252"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8a4e74c098889cb2be0a9a03fc08a4e13dd1a7", "fields": {"nom_de_la_commune": "THENEUIL", "libell_d_acheminement": "THENEUIL", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37256"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d400d12034e01171619766f4ed8c7532cbeb67e3", "fields": {"nom_de_la_commune": "TRUYES", "libell_d_acheminement": "TRUYES", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37263"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb2f08d18f05e0baa3dcdcc66e3813b3073d324", "fields": {"nom_de_la_commune": "VALLERES", "libell_d_acheminement": "VALLERES", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37264"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f18078e6117bcfd94558220f3c32871512e8aa", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37265"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d84736e35f24d15912bae4cbf90a00dab023a03", "fields": {"nom_de_la_commune": "VERNEUIL LE CHATEAU", "libell_d_acheminement": "VERNEUIL LE CHATEAU", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37268"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2830b07b86f28befa050fd16503517854da2a28", "fields": {"nom_de_la_commune": "VERNEUIL SUR INDRE", "libell_d_acheminement": "VERNEUIL SUR INDRE", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37269"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e367ff56a9e5f4c0961d2fcd94c4ffab4a1edf7", "fields": {"nom_de_la_commune": "VILLANDRY", "libell_d_acheminement": "VILLANDRY", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37272"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76901f00271959a4eed20558ab3199f0571ed31", "fields": {"nom_de_la_commune": "L ALBENC", "libell_d_acheminement": "L ALBENC", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38004"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662c2d72405c6d7092e7339ba7dd97c2ab15acd5", "fields": {"nom_de_la_commune": "ANTHON", "libell_d_acheminement": "ANTHON", "code_postal": "38280", "coordonnees_gps": [45.7761558636, 5.11926140068], "code_commune_insee": "38011"}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d1d6b09557f027af9ec47579f468beb8de5b19", "fields": {"nom_de_la_commune": "ARANDON", "libell_d_acheminement": "ARANDON", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38014"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e273edddfaf2c03d9e11a48647cfd5c1b60a18", "fields": {"nom_de_la_commune": "AURIS", "libell_d_acheminement": "AURIS", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38020"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec06bfa0fde5061ed1827c8341a9c48f96d0ffb", "fields": {"code_postal": "38630", "code_commune_insee": "38022", "libell_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", "ligne_5": "VEYRINS THUELLIN", "nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", "coordonnees_gps": [45.6308900094, 5.56433388526]}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0947294cdaef9d7bb37450ed855ce58f5d389538", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38032"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e8f1d9deff6d444640d9088f1b5a6d819e3688c", "fields": {"nom_de_la_commune": "BEAUVOIR DE MARC", "libell_d_acheminement": "BEAUVOIR DE MARC", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38035"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999d938a437e47ec54a6777fc005b983abed534f", "fields": {"nom_de_la_commune": "BELLEGARDE POUSSIEU", "libell_d_acheminement": "BELLEGARDE POUSSIEU", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38037"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60b7367fd54cf63c958502b00c2d3aa610ad633", "fields": {"nom_de_la_commune": "BLANDIN", "libell_d_acheminement": "BLANDIN", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38047"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85a1f4f7739bdae96e39916e3992b35b2ed915c", "fields": {"nom_de_la_commune": "LE BOUCHAGE", "libell_d_acheminement": "LE BOUCHAGE", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38050"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27521562e275758e6cf32889d6ea767d9d3f3275", "fields": {"nom_de_la_commune": "BOURGOIN JALLIEU", "libell_d_acheminement": "BOURGOIN JALLIEU", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38053"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b588867cbfcaa3cbf1361816d4960dae05e189e7", "fields": {"nom_de_la_commune": "BOUVESSE QUIRIEU", "libell_d_acheminement": "BOUVESSE QUIRIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38054"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8607a2dcb8e43a7a3dbb3ed339354ebd85b03aa9", "fields": {"nom_de_la_commune": "BRESSON", "libell_d_acheminement": "BRESSON", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38057"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1c69fb201572fafe8f8987f307ee4a192ee436", "fields": {"nom_de_la_commune": "LA BUISSE", "libell_d_acheminement": "LA BUISSE", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38061"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53d05dfa3c23631d1bc01ca204656e4916c6973", "fields": {"nom_de_la_commune": "CHAMPIER", "libell_d_acheminement": "CHAMPIER", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38069"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27935becce747969e68592cddf62d19b17476184", "fields": {"nom_de_la_commune": "CHAMP SUR DRAC", "libell_d_acheminement": "CHAMP SUR DRAC", "code_postal": "38560", "coordonnees_gps": [45.0939836913, 5.7392474721], "code_commune_insee": "38071"}, "geometry": {"type": "Point", "coordinates": [5.7392474721, 45.0939836913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0feb0a720e6ef26e00962a610eeecd83735047e9", "fields": {"nom_de_la_commune": "CHANAS", "libell_d_acheminement": "CHANAS", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38072"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3106381fc6a05b4e730b0e82d6c5e9366cbffe11", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BARD", "libell_d_acheminement": "LA CHAPELLE DU BARD", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38078"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f065bf5935f658f4d8b504397803bcd0c3f14ff", "fields": {"nom_de_la_commune": "CHATEAUVILAIN", "libell_d_acheminement": "CHATEAUVILAIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38091"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627dd2eb95656c319f275b272d8b1c2713353887", "fields": {"nom_de_la_commune": "LE CHEYLAS", "libell_d_acheminement": "LE CHEYLAS", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38100"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02efcfebdc00274461a5e7b0fe9cd17fa0758f3a", "fields": {"nom_de_la_commune": "CHEZENEUVE", "libell_d_acheminement": "CHEZENEUVE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38102"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c30699e5bcdd0562ed2a03d0227edfc949ab8d", "fields": {"nom_de_la_commune": "CHIRENS", "libell_d_acheminement": "CHIRENS", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38105"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97093cd513711d96383ef0d385984c377c66dda9", "fields": {"nom_de_la_commune": "CHOLONGE", "libell_d_acheminement": "CHOLONGE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38106"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117de063d86daccdff37a897d589a74e6efc536a", "fields": {"nom_de_la_commune": "CORNILLON EN TRIEVES", "libell_d_acheminement": "CORNILLON EN TRIEVES", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38127"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de4a93218952fcffc0ce7eedf26fa474cf991318", "fields": {"nom_de_la_commune": "CORRENCON EN VERCORS", "libell_d_acheminement": "CORRENCON EN VERCORS", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38129"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a122a867ec0d6a84ccb6fa55acd53b8e5fbad8", "fields": {"nom_de_la_commune": "DIEMOZ", "libell_d_acheminement": "DIEMOZ", "code_postal": "38790", "coordonnees_gps": [45.5630185121, 5.09029489838], "code_commune_insee": "38144"}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be082d59079c3befae3d4329b46bea5feff0ad69", "fields": {"nom_de_la_commune": "ENTRE DEUX GUIERS", "libell_d_acheminement": "ENTRE DEUX GUIERS", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38155"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43547f32a0dc9b0bff229e9847678b1185e3fcf4", "fields": {"nom_de_la_commune": "LES EPARRES", "libell_d_acheminement": "LES EPARRES", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38156"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5ec3a07d7128e143625294bf765fcf7370faef", "fields": {"nom_de_la_commune": "EYZIN PINET", "libell_d_acheminement": "EYZIN PINET", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38160"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7558085e818d867da21220eac99b58ba27844efd", "fields": {"nom_de_la_commune": "FONTAINE", "libell_d_acheminement": "FONTAINE", "code_postal": "38600", "coordonnees_gps": [45.1929899154, 5.67742947105], "code_commune_insee": "38169"}, "geometry": {"type": "Point", "coordinates": [5.67742947105, 45.1929899154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af359c11071f95950279f750f13a7c96eed57551", "fields": {"nom_de_la_commune": "GRESSE EN VERCORS", "libell_d_acheminement": "GRESSE EN VERCORS", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38186"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce53b200a47f8d810a1533943620ac3f362435a2", "fields": {"nom_de_la_commune": "LE GUA", "libell_d_acheminement": "LE GUA", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38187"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3768a335ff5c80c475c44daba7b968c6b5b7d5de", "fields": {"nom_de_la_commune": "HIERES SUR AMBY", "libell_d_acheminement": "HIERES SUR AMBY", "code_postal": "38118", "coordonnees_gps": [45.7906226846, 5.32480499353], "code_commune_insee": "38190"}, "geometry": {"type": "Point", "coordinates": [5.32480499353, 45.7906226846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54dfdeebad1bde99a45255ecf763fcca7ab5877b", "fields": {"nom_de_la_commune": "HUEZ", "libell_d_acheminement": "HUEZ", "code_postal": "38750", "coordonnees_gps": [45.0970333607, 6.08483184334], "code_commune_insee": "38191"}, "geometry": {"type": "Point", "coordinates": [6.08483184334, 45.0970333607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de581bdaa5bd84c37d884e2799463696f32e1d6", "fields": {"nom_de_la_commune": "JANNEYRIAS", "libell_d_acheminement": "JANNEYRIAS", "code_postal": "38280", "coordonnees_gps": [45.7761558636, 5.11926140068], "code_commune_insee": "38197"}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f590a9a6fe4f81a86f0cf56cef44d61255fda0", "fields": {"nom_de_la_commune": "LAVALDENS", "libell_d_acheminement": "LAVALDENS", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38207"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38886687103fda4c9d47461d576b6a391a2c0ba", "fields": {"nom_de_la_commune": "LENTIOL", "libell_d_acheminement": "LENTIOL", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38209"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a747879652084c9616fb943a2351bd989883c123", "fields": {"code_postal": "38220", "code_commune_insee": "38212", "libell_d_acheminement": "LIVET ET GAVET", "ligne_5": "GAVET", "nom_de_la_commune": "LIVET ET GAVET", "coordonnees_gps": [45.0661676194, 5.84675560183]}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e30cadb958f25b7ad6f55909b2956509a884b7", "fields": {"nom_de_la_commune": "LONGECHENAL", "libell_d_acheminement": "LONGECHENAL", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38213"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea81496c240369ecf405f7df85fa15307f96e22c", "fields": {"nom_de_la_commune": "MARCILLOLES", "libell_d_acheminement": "MARCILLOLES", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38218"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6de71f0f1e10b5d115d4b89c79ecb2a49a3067", "fields": {"nom_de_la_commune": "MEYLAN", "libell_d_acheminement": "MEYLAN", "code_postal": "38240", "coordonnees_gps": [45.212269792, 5.78440632442], "code_commune_insee": "38229"}, "geometry": {"type": "Point", "coordinates": [5.78440632442, 45.212269792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1582b5bea2d3ee0ea4aa740a0537770b702e4404", "fields": {"nom_de_la_commune": "LE MONESTIER DU PERCY", "libell_d_acheminement": "LE MONESTIER DU PERCY", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38243"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57eac97d60918788ce1de07765a16b067757d4f3", "fields": {"nom_de_la_commune": "MONTAUD", "libell_d_acheminement": "MONTAUD", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38248"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1428bf9532cc2304b1d3c181c2cb0a6f1fa53dfd", "fields": {"code_postal": "38860", "code_commune_insee": "38253", "libell_d_acheminement": "MONT DE LANS", "ligne_5": "L ALPE DE MONT DE LANS", "nom_de_la_commune": "MONT DE LANS", "coordonnees_gps": [44.994660373, 6.12322203081]}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848ac323fad7ef2a496ca874e5fb93737e83d6fc", "fields": {"nom_de_la_commune": "MONTSEVEROUX", "libell_d_acheminement": "MONTSEVEROUX", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38259"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7fe548f353e96ec618993c089356d2115514392", "fields": {"nom_de_la_commune": "LA MORTE", "libell_d_acheminement": "LA MORTE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38264"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6904ae1c6fe25b8caf90276c473108a3b911b784", "fields": {"nom_de_la_commune": "LA MOTTE ST MARTIN", "libell_d_acheminement": "LA MOTTE ST MARTIN", "code_postal": "38770", "coordonnees_gps": [44.9592629252, 5.7197167385], "code_commune_insee": "38266"}, "geometry": {"type": "Point", "coordinates": [5.7197167385, 44.9592629252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c507b094bba2012dc4b803a4ea13c4314ea2d6f", "fields": {"nom_de_la_commune": "NANTOIN", "libell_d_acheminement": "NANTOIN", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38274"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5540bdd33981e7c36f0a343136982316f4e785d", "fields": {"nom_de_la_commune": "NOTRE DAME DE L OSIER", "libell_d_acheminement": "NOTRE DAME DE L OSIER", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38278"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52045e07c7d8cbe2bfdba9dd15d71a47a63bb82d", "fields": {"nom_de_la_commune": "NOYAREY", "libell_d_acheminement": "NOYAREY", "code_postal": "38360", "coordonnees_gps": [45.2140316159, 5.62374044814], "code_commune_insee": "38281"}, "geometry": {"type": "Point", "coordinates": [5.62374044814, 45.2140316159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72dc8900e3756d4e09a466c846eab16f73cbc555", "fields": {"nom_de_la_commune": "OPTEVOZ", "libell_d_acheminement": "OPTEVOZ", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38282"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8fc853fec21f2ebdc919ba52c674e0278069533", "fields": {"nom_de_la_commune": "ORNACIEUX", "libell_d_acheminement": "ORNACIEUX", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38284"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705ed3f99decebacffc4eaaf46309243fa7e55e8", "fields": {"nom_de_la_commune": "PISIEU", "libell_d_acheminement": "PISIEU", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38307"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af3a8c78ba1ca74f618d72ff0eb5541db61409c5", "fields": {"nom_de_la_commune": "POISAT", "libell_d_acheminement": "POISAT", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38309"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be87e734429227ea1229a05ddc0712c79541cfb9", "fields": {"nom_de_la_commune": "POMMIER DE BEAUREPAIRE", "libell_d_acheminement": "POMMIER DE BEAUREPAIRE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38311"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225584f4b42bc46720d12c455ac7de0de629d451", "fields": {"nom_de_la_commune": "POMMIERS LA PLACETTE", "libell_d_acheminement": "POMMIERS LA PLACETTE", "code_postal": "38340", "coordonnees_gps": [45.3011036045, 5.65576728481], "code_commune_insee": "38312"}, "geometry": {"type": "Point", "coordinates": [5.65576728481, 45.3011036045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a06934feb485daf2e46a6f733ddd48e1341139", "fields": {"nom_de_la_commune": "LE PONT DE BEAUVOISIN", "libell_d_acheminement": "LE PONT DE BEAUVOISIN", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38315"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b818dfd0f047bd88aa9b25fb940952bc57ae73c", "fields": {"nom_de_la_commune": "PONT EN ROYANS", "libell_d_acheminement": "PONT EN ROYANS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38319"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175c1c20f4116f22db7c13c57aa10edc7dc28545", "fields": {"nom_de_la_commune": "PROVEYSIEUX", "libell_d_acheminement": "PROVEYSIEUX", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38325"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aeaf8425c102e92f37a7f324dc6ed714ab7192a", "fields": {"nom_de_la_commune": "PRUNIERES", "libell_d_acheminement": "PRUNIERES", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38326"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbfde2a9f4343511b593951371a0784d051b59a2", "fields": {"nom_de_la_commune": "REAUMONT", "libell_d_acheminement": "REAUMONT", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38331"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b22a7e952a627279536c2b7bc89a19a4dcdbb28", "fields": {"nom_de_la_commune": "RENAGE", "libell_d_acheminement": "RENAGE", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38332"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843139436abb3195cfc89c8420959bd6662eb885", "fields": {"nom_de_la_commune": "RENCUREL", "libell_d_acheminement": "RENCUREL", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38333"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38508b4820de132f01dd1d0480f6d6c5b570bdd", "fields": {"nom_de_la_commune": "REVENTIN VAUGRIS", "libell_d_acheminement": "REVENTIN VAUGRIS", "code_postal": "38121", "coordonnees_gps": [45.4752927217, 4.83249057524], "code_commune_insee": "38336"}, "geometry": {"type": "Point", "coordinates": [4.83249057524, 45.4752927217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d966d0aaa64f394b866a383413daa80752ea3015", "fields": {"nom_de_la_commune": "ROISSARD", "libell_d_acheminement": "ROISSARD", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38342"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc95ca2b684925d3c77b4d8d1b268064d78ee94", "fields": {"nom_de_la_commune": "SABLONS", "libell_d_acheminement": "SABLONS", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38349"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ecbe01516fe5b0ab0cc1a077fee335960878cc", "fields": {"nom_de_la_commune": "ST APPOLINARD", "libell_d_acheminement": "ST APPOLINARD", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38360"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84204c81549b135609e6f328e1f738b1b7b78c33", "fields": {"nom_de_la_commune": "ST BUEIL", "libell_d_acheminement": "ST BUEIL", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38372"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05864958e31c242c5056c51cc4f3186ce5cd70b6", "fields": {"nom_de_la_commune": "ST CASSIEN", "libell_d_acheminement": "ST CASSIEN", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38373"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f911fd70bd7b99e50d72b1c9da9de890b628ad3b", "fields": {"nom_de_la_commune": "ST CLAIR DU RHONE", "libell_d_acheminement": "ST CLAIR DU RHONE", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38378"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30bdc838a89287730c06fe3e4d82b9e4854cdcbb", "fields": {"nom_de_la_commune": "ST DIDIER DE LA TOUR", "libell_d_acheminement": "ST DIDIER DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38381"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3eada3bf0e8029e315f9338393886e859b95c1c", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38390"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1303d8cccd0d2e456f5a0352ff9c5331ca5f6ee9", "fields": {"nom_de_la_commune": "ST HILAIRE DU ROSIER", "libell_d_acheminement": "ST HILAIRE DU ROSIER", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38394"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b166e59be24f26d193af87509010dbda32482056", "fields": {"nom_de_la_commune": "ST JEAN DE VAULX", "libell_d_acheminement": "ST JEAN DE VAULX", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38402"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7225d02a1f2cd282916b39dbc9cf86af125042", "fields": {"nom_de_la_commune": "ST JULIEN DE RAZ", "libell_d_acheminement": "ST JULIEN DE RAZ", "code_postal": "38134", "coordonnees_gps": [45.3576664534, 5.68172750392], "code_commune_insee": "38407"}, "geometry": {"type": "Point", "coordinates": [5.68172750392, 45.3576664534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e14c78c3f73e69e6cf0392330efdce85a8158f", "fields": {"nom_de_la_commune": "ST LATTIER", "libell_d_acheminement": "ST LATTIER", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38410"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d6eb44cfab91e99457d7c01411296e33322395b", "fields": {"nom_de_la_commune": "ST MARTIN DE VAULSERRE", "libell_d_acheminement": "ST MARTIN DE VAULSERRE", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38420"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b1c35ec800a8ef230a076ea327ee361f1b9618", "fields": {"nom_de_la_commune": "ST NICOLAS DE MACHERIN", "libell_d_acheminement": "ST NICOLAS DE MACHERIN", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38432"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d7e9b6f0f6c7594f98ba2ea21a275c4918c3bc4", "fields": {"nom_de_la_commune": "ST PANCRASSE", "libell_d_acheminement": "ST PANCRASSE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38435"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139560d8fd0ea0bdfc1d6bdf5d0a76c56278c25f", "fields": {"nom_de_la_commune": "VOSBLES", "libell_d_acheminement": "VOSBLES", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39583"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdc8632e57610153d3b001dd42f09fa2ce61c1d", "fields": {"nom_de_la_commune": "ARESCHES", "libell_d_acheminement": "ARESCHES", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39586"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3625c35ea7ba6ec1c6e84a6e534c7d521c541b23", "fields": {"nom_de_la_commune": "AMOU", "libell_d_acheminement": "AMOU", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40002"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db758299d270b2759deab92ccf65501e2698a88", "fields": {"nom_de_la_commune": "ARSAGUE", "libell_d_acheminement": "ARSAGUE", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40011"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494a0ca2f1990890ff9592b8223a057d526314be", "fields": {"nom_de_la_commune": "ARUE", "libell_d_acheminement": "ARUE", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40014"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe11ed5e0aabc1450509a28acd40434f1172d8a", "fields": {"nom_de_la_commune": "AUDON", "libell_d_acheminement": "AUDON", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40018"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6556a27f9081ba81222d88111ed59f39ae7eb331", "fields": {"nom_de_la_commune": "AZUR", "libell_d_acheminement": "AZUR", "code_postal": "40140", "coordonnees_gps": [43.7629098488, -1.27641282315], "code_commune_insee": "40021"}, "geometry": {"type": "Point", "coordinates": [-1.27641282315, 43.7629098488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fe6ed161d3b950a73263347116c22e1c3d9b4e", "fields": {"nom_de_la_commune": "BELHADE", "libell_d_acheminement": "BELHADE", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40032"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee00b31651904d3de63d1ff2d2ef0a9d5601ac95", "fields": {"nom_de_la_commune": "BIARROTTE", "libell_d_acheminement": "BIARROTTE", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40042"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454350541e75e5c5a115309efe5d33d952446fd9", "fields": {"nom_de_la_commune": "BORDERES ET LAMENSANS", "libell_d_acheminement": "BORDERES ET LAMENSANS", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40049"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d248d73fcbf983d6f2ec346a98d619ff9a20224f", "fields": {"nom_de_la_commune": "BRASSEMPOUY", "libell_d_acheminement": "BRASSEMPOUY", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40054"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948f712806760c0d42a3550efa016de94d6a0954", "fields": {"nom_de_la_commune": "CAGNOTTE", "libell_d_acheminement": "CAGNOTTE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40059"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3036afc003116e6ee844bd1c36a565f2c72e4844", "fields": {"nom_de_la_commune": "CARCARES STE CROIX", "libell_d_acheminement": "CARCARES STE CROIX", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40066"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1359f93f646f15871b6d6ab369111c13635d237", "fields": {"nom_de_la_commune": "CARCEN PONSON", "libell_d_acheminement": "CARCEN PONSON", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40067"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e70ebaf9c23a62cf752048d3767ee7159878c5", "fields": {"nom_de_la_commune": "CAUNEILLE", "libell_d_acheminement": "CAUNEILLE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40077"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14fe9f593e3bec7df4cd5a0da9a4973144d51200", "fields": {"nom_de_la_commune": "CAZERES SUR L ADOUR", "libell_d_acheminement": "CAZERES SUR L ADOUR", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40080"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae550f012d3e036d4d6852a9f6f9bd6f6677a45", "fields": {"nom_de_la_commune": "COUDURES", "libell_d_acheminement": "COUDURES", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40086"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0001323810b98feb2576949914e10ea044c47428", "fields": {"nom_de_la_commune": "ESTIBEAUX", "libell_d_acheminement": "ESTIBEAUX", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40095"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b27b7ab3cacaf6b62a4586d987ae67c0ad59d8", "fields": {"nom_de_la_commune": "ESTIGARDE", "libell_d_acheminement": "ESTIGARDE", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40096"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbaae1ba2c23582eb94676096837887d2423f9e", "fields": {"nom_de_la_commune": "GARREY", "libell_d_acheminement": "GARREY", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40106"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca056a43d95117c6d1cf63d9f0ee1266dd412aa", "fields": {"nom_de_la_commune": "GASTES", "libell_d_acheminement": "GASTES", "code_postal": "40160", "coordonnees_gps": [44.3463280206, -1.04252210773], "code_commune_insee": "40108"}, "geometry": {"type": "Point", "coordinates": [-1.04252210773, 44.3463280206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799e2a33b802de9c5249a70dfd13fdee72e47513", "fields": {"nom_de_la_commune": "GELOUX", "libell_d_acheminement": "GELOUX", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40111"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a47f89f1ca335d530e371f969ca54b6e04f3d5", "fields": {"nom_de_la_commune": "GOOS", "libell_d_acheminement": "GOOS", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40113"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd2dcac249c7afe2871ec546ba6f158f5b8e816", "fields": {"nom_de_la_commune": "GOUSSE", "libell_d_acheminement": "GOUSSE", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40115"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c7b6a85577b9d283630d5322a3c016d9f5ff7e", "fields": {"nom_de_la_commune": "GRENADE SUR L ADOUR", "libell_d_acheminement": "GRENADE SUR L ADOUR", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40117"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c62991f8fe9af1f7f461d62007a0c1e11c8fc7", "fields": {"nom_de_la_commune": "HEUGAS", "libell_d_acheminement": "HEUGAS", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40125"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2cec379749d0a6b00fb9c33953a83e7a14c27f8", "fields": {"nom_de_la_commune": "HINX", "libell_d_acheminement": "HINX", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40126"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6cb1940439a68ab07ebbf1c94bc7bd08836824", "fields": {"nom_de_la_commune": "JOSSE", "libell_d_acheminement": "JOSSE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40129"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e838bb20ec0f700f0cdf5de7d8c4a40736e36cdf", "fields": {"nom_de_la_commune": "LABATUT", "libell_d_acheminement": "LABATUT", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40132"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdf13e7ac7509c0f60d577a04d08c8f5ab7756f", "fields": {"nom_de_la_commune": "LABOUHEYRE", "libell_d_acheminement": "LABOUHEYRE", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40134"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3bc8bd7c2510fbe5efcb10159b7465b5e29430", "fields": {"nom_de_la_commune": "LEON", "libell_d_acheminement": "LEON", "code_postal": "40550", "coordonnees_gps": [43.8558812833, -1.27461526847], "code_commune_insee": "40150"}, "geometry": {"type": "Point", "coordinates": [-1.27461526847, 43.8558812833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043b4ed12c4feb621dfce843bd9be0db82da1744", "fields": {"nom_de_la_commune": "LINXE", "libell_d_acheminement": "LINXE", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40155"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e8e18ef137cb4258d684704f87d55986e836a34", "fields": {"nom_de_la_commune": "LIPOSTHEY", "libell_d_acheminement": "LIPOSTHEY", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40156"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a1688921503e35522664203a2c499fc697a998", "fields": {"nom_de_la_commune": "LUBBON", "libell_d_acheminement": "LUBBON", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40161"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeab37debd8ae60c45db2d6fcebaaa30f9065ab2", "fields": {"nom_de_la_commune": "MAGESCQ", "libell_d_acheminement": "MAGESCQ", "code_postal": "40140", "coordonnees_gps": [43.7629098488, -1.27641282315], "code_commune_insee": "40168"}, "geometry": {"type": "Point", "coordinates": [-1.27641282315, 43.7629098488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dabdd37d7b380ceb02bb6d59d1da7deab5d03a0", "fields": {"nom_de_la_commune": "MANO", "libell_d_acheminement": "MANO", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40171"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dd46d7d614c25fcb2824967245a92fa0319ad9", "fields": {"nom_de_la_commune": "MANT", "libell_d_acheminement": "MANT", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40172"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb75e2eb57511b51f8d26f41a6345deed502a4b", "fields": {"nom_de_la_commune": "MARPAPS", "libell_d_acheminement": "MARPAPS", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40173"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60af2cbd108eac396742c51a2acc5ac04a5c5b2f", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40178"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58ee04d9d76d40189fdb3ee2cbace56c55839a6", "fields": {"nom_de_la_commune": "MOLIETS ET MAA", "libell_d_acheminement": "MOLIETS ET MAA", "code_postal": "40660", "coordonnees_gps": [43.8329015635, -1.36219281408], "code_commune_insee": "40187"}, "geometry": {"type": "Point", "coordinates": [-1.36219281408, 43.8329015635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f346546f6e6a376be2b97252d831299ffb37f2b", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40190"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7fdfd4e1d597ca47ce310c539a9aeacfc3ad20", "fields": {"nom_de_la_commune": "MONTSOUE", "libell_d_acheminement": "MONTSOUE", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40196"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7ec03ec9e0c437bbec7a4ec1480d1287bd0d0c", "fields": {"nom_de_la_commune": "MUGRON", "libell_d_acheminement": "MUGRON", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40201"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa49560ce15440e9de50ba674d2a92fbad3e1ea2", "fields": {"nom_de_la_commune": "NARROSSE", "libell_d_acheminement": "NARROSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40202"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b59722126b7b2ca95c88380953cefae8d97944", "fields": {"nom_de_la_commune": "PAYROS CAZAUTETS", "libell_d_acheminement": "PAYROS CAZAUTETS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40219"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b62839186583ad12243016835767b92ecd523ec", "fields": {"nom_de_la_commune": "PHILONDENX", "libell_d_acheminement": "PHILONDENX", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40225"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76c34c9ae8a6d3533dff86d58d6a068aff8ca23", "fields": {"nom_de_la_commune": "PONTONX SUR L ADOUR", "libell_d_acheminement": "PONTONX SUR L ADOUR", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40230"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687971ba57a5f54035d16c9d2b06d31bf99348c2", "fields": {"nom_de_la_commune": "PRECHACQ LES BAINS", "libell_d_acheminement": "PRECHACQ LES BAINS", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40237"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0c27464542ec0faae5cdfa860482a14de730bc", "fields": {"nom_de_la_commune": "PUYOL CAZALET", "libell_d_acheminement": "PUYOL CAZALET", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40239"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a31c1cd27753ddb13c483f4e4db976c598b3739", "fields": {"nom_de_la_commune": "ST CRICQ CHALOSSE", "libell_d_acheminement": "ST CRICQ CHALOSSE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40253"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d478b973328d2cf2b27992082aff9702041e8a4a", "fields": {"nom_de_la_commune": "ST CRICQ DU GAVE", "libell_d_acheminement": "ST CRICQ DU GAVE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40254"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c6a13957a8eb87c6fe8998adfb7a63f027b430", "fields": {"nom_de_la_commune": "ST CRICQ VILLENEUVE", "libell_d_acheminement": "ST CRICQ VILLENEUVE", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40255"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c59890784780e01239cbf549807a1aa645fbda", "fields": {"nom_de_la_commune": "ST GEIN", "libell_d_acheminement": "ST GEIN", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40259"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a162b73eff814e5c21890cf3e1be5ca274b736", "fields": {"nom_de_la_commune": "ST GEOURS DE MAREMNE", "libell_d_acheminement": "ST GEOURS DE MAREMNE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40261"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503db5276dc28c86419a851051462683b3bf483b", "fields": {"nom_de_la_commune": "ST JUSTIN", "libell_d_acheminement": "ST JUSTIN", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40267"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd57fea292033b99e4adfa8a5b23ebea53ef903", "fields": {"nom_de_la_commune": "ST MARTIN DE SEIGNANX", "libell_d_acheminement": "ST MARTIN DE SEIGNANX", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40273"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e56418e1aa62c9fdd1cc7ee32d21f37649894d", "fields": {"nom_de_la_commune": "ST MARTIN D ONEY", "libell_d_acheminement": "ST MARTIN D ONEY", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40274"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf86544e32e3d6f59aed16d787d2a9cf17770fa1", "fields": {"nom_de_la_commune": "ST PAUL LES DAX", "libell_d_acheminement": "ST PAUL LES DAX", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40279"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b6e1af503b61dd4616e5c54c13b545d6838340", "fields": {"nom_de_la_commune": "ST SEVER", "libell_d_acheminement": "ST SEVER", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40282"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c244820864798edf10117e1ba6f032d27ab2ee", "fields": {"nom_de_la_commune": "SAMADET", "libell_d_acheminement": "SAMADET", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40286"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697e630bee8cd7231e92abe68e3f15d0d13fdec4", "fields": {"nom_de_la_commune": "SINDERES", "libell_d_acheminement": "SINDERES", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40302"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4ceeead18df683d819e6148942e270a51973955", "fields": {"nom_de_la_commune": "TRENSACQ", "libell_d_acheminement": "TRENSACQ", "code_postal": "40630", "coordonnees_gps": [44.158641182, -0.72802164635], "code_commune_insee": "40319"}, "geometry": {"type": "Point", "coordinates": [-0.72802164635, 44.158641182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dbd70b02478e7baa5ef5bf303b32c923aa3e13", "fields": {"nom_de_la_commune": "URGONS", "libell_d_acheminement": "URGONS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40321"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3799808c48ce967eba4883b795c2b15cd1f66ad7", "fields": {"nom_de_la_commune": "VERT", "libell_d_acheminement": "VERT", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40323"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85039b830c155976c80cd0a46008b8857999925f", "fields": {"nom_de_la_commune": "VIELLE ST GIRONS", "libell_d_acheminement": "VIELLE ST GIRONS", "code_postal": "40560", "coordonnees_gps": [43.9396188358, -1.32531698317], "code_commune_insee": "40326"}, "geometry": {"type": "Point", "coordinates": [-1.32531698317, 43.9396188358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc7e61c19594ff881bbb09d46aa57757f08d1f9", "fields": {"nom_de_la_commune": "VIEUX BOUCAU LES BAINS", "libell_d_acheminement": "VIEUX BOUCAU LES BAINS", "code_postal": "40480", "coordonnees_gps": [43.7875634884, -1.396724511], "code_commune_insee": "40328"}, "geometry": {"type": "Point", "coordinates": [-1.396724511, 43.7875634884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b13b4c56fae456f233d429e2c7736b892f2cc2c", "fields": {"nom_de_la_commune": "VILLENAVE", "libell_d_acheminement": "VILLENAVE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40330"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3139cf39f007e47e960df283e031aee77238c048", "fields": {"nom_de_la_commune": "VILLENEUVE DE MARSAN", "libell_d_acheminement": "VILLENEUVE DE MARSAN", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40331"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebd042df4df6ef20d21f6820d7e7784ac9d7111", "fields": {"nom_de_la_commune": "AMBLOY", "libell_d_acheminement": "AMBLOY", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41001"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afea4943270b54e40ee4fc18fa15c1ad200618f3", "fields": {"nom_de_la_commune": "ANGE", "libell_d_acheminement": "ANGE", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41002"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77f01a99f653ddf511cdb687ad0c2c131af7820", "fields": {"nom_de_la_commune": "AREINES", "libell_d_acheminement": "AREINES", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41003"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f91513a0a2c9cd01c90a7eb57900e2e402570a", "fields": {"nom_de_la_commune": "BAIGNEAUX", "libell_d_acheminement": "BAIGNEAUX", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41011"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c7871f80fcaf245f3af59d8bf00d9d3fe98205", "fields": {"nom_de_la_commune": "BILLY", "libell_d_acheminement": "BILLY", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41016"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f55aea331530e0816a896cefbf2b22ebad5a5a", "fields": {"nom_de_la_commune": "BOISSEAU", "libell_d_acheminement": "BOISSEAU", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41019"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8300e1fbcdd6aba1d2f178cfdbffae04a5c81d9", "fields": {"nom_de_la_commune": "CELLE", "libell_d_acheminement": "CELLE", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41030"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c567f7657bb3ff8d8976364f8c92100cab2599ca", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MARTIN EN PLAINE", "libell_d_acheminement": "LA CHAPELLE ST MARTIN EN PLAINE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41039"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ad4bfbe62e2419b6a7ea44223c32e2f892114c", "fields": {"nom_de_la_commune": "CHAUMONT SUR LOIRE", "libell_d_acheminement": "CHAUMONT SUR LOIRE", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41045"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eede4bfa97ddc5b8cb1f5b6c502a84bcb29e5d05", "fields": {"nom_de_la_commune": "CHOUSSY", "libell_d_acheminement": "CHOUSSY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41054"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76cc6cbe1fdcd2ee2853aef32ab541a7e00d380", "fields": {"nom_de_la_commune": "CORMENON", "libell_d_acheminement": "CORMENON", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41060"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327a447f6880f7cc3c143b94abe58279996550f6", "fields": {"nom_de_la_commune": "COUFFY", "libell_d_acheminement": "COUFFY", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41063"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b5ebda4ef2911cf6dd01709243ca1c019e6dc8", "fields": {"nom_de_la_commune": "COULOMMIERS LA TOUR", "libell_d_acheminement": "COULOMMIERS LA TOUR", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41065"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35d0a61f8c8882aafd8034f2669a8bb485e01a8", "fields": {"nom_de_la_commune": "DHUIZON", "libell_d_acheminement": "DHUIZON", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41074"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4269dda4678393550aafad7d63a9b08e469ad1e2", "fields": {"nom_de_la_commune": "EPIAIS", "libell_d_acheminement": "EPIAIS", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41077"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1dcc91e802ef7c21d1a7a9cac73cddb8769510", "fields": {"nom_de_la_commune": "FAVEROLLES SUR CHER", "libell_d_acheminement": "FAVEROLLES SUR CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41080"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1739242c039fcfa8b3ad7f2f10874634def0b0fb", "fields": {"nom_de_la_commune": "FEINGS", "libell_d_acheminement": "FEINGS", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41082"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc9f7c48eb2100c275aee8a8d8333fee496cb0b", "fields": {"nom_de_la_commune": "FONTAINE LES COTEAUX", "libell_d_acheminement": "FONTAINE LES COTEAUX", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41087"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee167ff07c4bb18fca19ee97e3708cef66c76c1", "fields": {"nom_de_la_commune": "GY EN SOLOGNE", "libell_d_acheminement": "GY EN SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41099"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777f60b16301364d2e50fbbc813faefe2b66a3a2", "fields": {"nom_de_la_commune": "LORGES", "libell_d_acheminement": "LORGES", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41119"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a28fe030a641202c6b5665eb0dd2db387f8545f", "fields": {"nom_de_la_commune": "MARCHENOIR", "libell_d_acheminement": "MARCHENOIR", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41123"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33e41b77dc0cd97c4169b13f2163a2826422027", "fields": {"nom_de_la_commune": "MARCILLY EN GAULT", "libell_d_acheminement": "MARCILLY EN GAULT", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41125"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d66ddeec758bd133e6ee4a1f03324667428bb4d", "fields": {"nom_de_la_commune": "LA MAROLLE EN SOLOGNE", "libell_d_acheminement": "LA MAROLLE EN SOLOGNE", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41127"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969f6985cf71abd70647e11f0f8596c4cb6f3361", "fields": {"nom_de_la_commune": "MESLAND", "libell_d_acheminement": "MESLAND", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41137"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4873807ef68c148e850aaac962eaf519d990621", "fields": {"nom_de_la_commune": "MESLAY", "libell_d_acheminement": "MESLAY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41138"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b72b58f288f3fc916d1fc8dee40b3fa1d94447", "fields": {"nom_de_la_commune": "MILLANCAY", "libell_d_acheminement": "MILLANCAY", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41140"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976bdaab8e91e66b7fbdf56d95f2dabc00645727", "fields": {"nom_de_la_commune": "MOISY", "libell_d_acheminement": "MOISY", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41141"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3deecc5f16c4fc340c04c9f54ee6f7bf2ba975", "fields": {"nom_de_la_commune": "MONTHOU SUR CHER", "libell_d_acheminement": "MONTHOU SUR CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41146"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90605ca0ffa4b7aa6a43a0eb6ab6c68cca52adf9", "fields": {"nom_de_la_commune": "MONTLIVAULT", "libell_d_acheminement": "MONTLIVAULT", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41148"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9472d681d6f137e8910d6e0f4f4475c6f66bb1e", "fields": {"nom_de_la_commune": "OUCQUES", "libell_d_acheminement": "OUCQUES", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41171"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b3731a92df318807b833003d6f3178b632e0bb", "fields": {"nom_de_la_commune": "OUZOUER LE DOYEN", "libell_d_acheminement": "OUZOUER LE DOYEN", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41172"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9776f1673a6d4d26ecb0e298d71959045fe70af", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "VERDES", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f15bfd63a18d5f0cee451547992d1e5436371c", "fields": {"nom_de_la_commune": "HAUTEFAGE", "libell_d_acheminement": "HAUTEFAGE", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19091"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641384629d2f6d52c213b244f36e0eb6b8d9fe48", "fields": {"nom_de_la_commune": "LAGRAULIERE", "libell_d_acheminement": "LAGRAULIERE", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19100"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4ceba397abc1a60f36df2805f96e8b92ab7178", "fields": {"nom_de_la_commune": "LAGUENNE", "libell_d_acheminement": "LAGUENNE", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19101"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e837ffb3cdbbfe6b3799563274592a14d2e9160", "fields": {"nom_de_la_commune": "LARCHE", "libell_d_acheminement": "LARCHE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19107"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad89f245eff3cfa486b69e744064954d9c8e626", "fields": {"nom_de_la_commune": "LATRONCHE", "libell_d_acheminement": "LATRONCHE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19110"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4e69275a7a76d54e40d7b9f2ad3e48de5bd4417", "fields": {"nom_de_la_commune": "LESTARDS", "libell_d_acheminement": "LESTARDS", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19112"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c4c75dfaf7bad2c518b8379fd0a506cb2c1f81", "fields": {"nom_de_la_commune": "LIGNEYRAC", "libell_d_acheminement": "LIGNEYRAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19115"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "618e451873542b0f20228344d52d1953d0ec027e", "fields": {"nom_de_la_commune": "LOSTANGES", "libell_d_acheminement": "LOSTANGES", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19119"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7aa46b76c2a97aea5485401fcce60c188c98977", "fields": {"nom_de_la_commune": "MARCILLAC LA CROZE", "libell_d_acheminement": "MARCILLAC LA CROZE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19126"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70754f7434a9c5a05937085c2b0310611c1b8d01", "fields": {"nom_de_la_commune": "MARC LA TOUR", "libell_d_acheminement": "MARC LA TOUR", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19127"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9aedd549b2fe3c0d710adc32ac6f47aaf7184bd", "fields": {"nom_de_la_commune": "MASSERET", "libell_d_acheminement": "MASSERET", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19129"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11ee276e7b5982cefc53067a042651d550fd3518", "fields": {"nom_de_la_commune": "MERLINES", "libell_d_acheminement": "MERLINES", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19134"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceca038514d99cf7ff0a1f5f8cff669664640dc1", "fields": {"nom_de_la_commune": "MILLEVACHES", "libell_d_acheminement": "MILLEVACHES", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19139"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274138359f09975392049bab36b504f9d1d32a44", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "19460", "coordonnees_gps": [45.3151145699, 1.7504787703], "code_commune_insee": "19146"}, "geometry": {"type": "Point", "coordinates": [1.7504787703, 45.3151145699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852e9c80bda1f80782f6596345fb104661a5900c", "fields": {"nom_de_la_commune": "NEUVIC", "libell_d_acheminement": "NEUVIC", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19148"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb23b3774fff9cc841e160debfc17b2f69d92c8", "fields": {"nom_de_la_commune": "PERPEZAC LE BLANC", "libell_d_acheminement": "PERPEZAC LE BLANC", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19161"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4258c1c562f75e9d9b7c53c5fb38ce1bb77215", "fields": {"nom_de_la_commune": "PEYRISSAC", "libell_d_acheminement": "PEYRISSAC", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19165"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c884c1259235c69d457cb57402dcc24ae345d4ce", "fields": {"nom_de_la_commune": "CONFOLENT PORT DIEU", "libell_d_acheminement": "CONFOLENT PORT DIEU", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19167"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e93a252851c2f8100f0c23413c711a33441d3c", "fields": {"nom_de_la_commune": "RILHAC TREIGNAC", "libell_d_acheminement": "RILHAC TREIGNAC", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19172"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3fdae89514d59ff069312d482d927d8d92c5df3", "fields": {"nom_de_la_commune": "SADROC", "libell_d_acheminement": "SADROC", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19178"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3755fa94b65acdd5f719afb73232bc583f6eea", "fields": {"nom_de_la_commune": "ST ANGEL", "libell_d_acheminement": "ST ANGEL", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19180"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f52460171b0fdf3ed439ad0efd3a72ded6ec9c", "fields": {"nom_de_la_commune": "ST BAZILE DE LA ROCHE", "libell_d_acheminement": "ST BAZILE DE LA ROCHE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19183"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f09997ba3dac1c2740a41e9fe8d4287730346d", "fields": {"nom_de_la_commune": "ST BONNET LA RIVIERE", "libell_d_acheminement": "ST BONNET LA RIVIERE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19187"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67192872bd9570a2c0995e74e35a877affc2c1f5", "fields": {"nom_de_la_commune": "ST BONNET LES TOURS DE MERLE", "libell_d_acheminement": "ST BONNET LES TOURS DE MERLE", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19189"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f97f616213da1033a402c3fa52139c1f4030a72", "fields": {"nom_de_la_commune": "ST ETIENNE AUX CLOS", "libell_d_acheminement": "ST ETIENNE AUX CLOS", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19199"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0274e30abcef8cb5536d6d70c22420889fa98b", "fields": {"nom_de_la_commune": "ST GENIEZ O MERLE", "libell_d_acheminement": "ST GENIEZ O MERLE", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19205"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ddb697497721397ee8db64a5c0214392f31d63", "fields": {"nom_de_la_commune": "ST PARDOUX LE VIEUX", "libell_d_acheminement": "ST PARDOUX LE VIEUX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19233"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054c890163253cd5bca94f93904cda7f32d9431a", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19238"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1039687056f2f157021eb4f73183d2220db4c495", "fields": {"nom_de_la_commune": "ST SORNIN LAVOLPS", "libell_d_acheminement": "ST SORNIN LAVOLPS", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19243"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29107aa2ed316e0a774479439a98e246e0c95e67", "fields": {"nom_de_la_commune": "ST YRIEIX LE DEJALAT", "libell_d_acheminement": "ST YRIEIX LE DEJALAT", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19249"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5974b93e52c22a4b5343b7fadb80b3e7f7d1aec", "fields": {"nom_de_la_commune": "SARRAN", "libell_d_acheminement": "SARRAN", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19251"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2614d62405f6558c77e5d8df60aa2c6ba0c7d8ba", "fields": {"nom_de_la_commune": "SEGONZAC", "libell_d_acheminement": "SEGONZAC", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19253"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7960ce30599b94c259bf046428acc9908d41435b", "fields": {"nom_de_la_commune": "SEGUR LE CHATEAU", "libell_d_acheminement": "SEGUR LE CHATEAU", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19254"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c453625278959756b87a9491b4ce4e3fab24de1", "fields": {"nom_de_la_commune": "SEILHAC", "libell_d_acheminement": "SEILHAC", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19255"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1d47a0b26543996eb7bb95a256c4a7dc39965a", "fields": {"nom_de_la_commune": "SIONIAC", "libell_d_acheminement": "SIONIAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19260"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29853e03201e55504d785689e7718f45ead402a1", "fields": {"nom_de_la_commune": "SORNAC", "libell_d_acheminement": "SORNAC", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19261"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf32504b46ef1befa23d383bfd72afcdcb79e6a", "fields": {"nom_de_la_commune": "SOURSAC", "libell_d_acheminement": "SOURSAC", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19264"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a9a34cdb7a5239442dea86d478d62bd5fbbe1fc", "fields": {"nom_de_la_commune": "TUDEILS", "libell_d_acheminement": "TUDEILS", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19271"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1b3235ec5dbee518ee9cf7a416c5fec340d68d", "fields": {"nom_de_la_commune": "VARETZ", "libell_d_acheminement": "VARETZ", "code_postal": "19240", "coordonnees_gps": [45.2278338531, 1.45884900159], "code_commune_insee": "19278"}, "geometry": {"type": "Point", "coordinates": [1.45884900159, 45.2278338531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc42e6699d220d7669f15e4a4cd35d34da4f24e", "fields": {"nom_de_la_commune": "ARCEAU", "libell_d_acheminement": "ARCEAU", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21016"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe364f40f61bda217c53af1bffab3bee28b1f058", "fields": {"nom_de_la_commune": "ATHEE", "libell_d_acheminement": "ATHEE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21028"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b7083753d40d9084fe8e80574ddae388d5c18c", "fields": {"nom_de_la_commune": "AUXANT", "libell_d_acheminement": "AUXANT", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21036"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a640360096d872ab05cf1d460fe94bc37d8805d", "fields": {"nom_de_la_commune": "AUXEY DURESSES", "libell_d_acheminement": "AUXEY DURESSES", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21037"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5293f74ad43b80fdabb027f7bf074337f95eb309", "fields": {"nom_de_la_commune": "AUXONNE", "libell_d_acheminement": "AUXONNE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21038"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a9b135fb8dbb03ad2f96652f5a08ab1bf83d17", "fields": {"nom_de_la_commune": "AVOSNES", "libell_d_acheminement": "AVOSNES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21040"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4740b6eb8c9b5140d931ed9bd9f4bccb842e3b8a", "fields": {"nom_de_la_commune": "BARD LES EPOISSES", "libell_d_acheminement": "BARD LES EPOISSES", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21047"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9394928ae59d5cc7c1e474ecf411b46c5a11316", "fields": {"nom_de_la_commune": "BEIRE LE FORT", "libell_d_acheminement": "BEIRE LE FORT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21057"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4f71670e244fe3b3a393a97d942005fd9fe811d", "fields": {"nom_de_la_commune": "BELLEFOND", "libell_d_acheminement": "BELLEFOND", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21059"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbab7eda5df763bc5d47ee1fa4dc35931932e2ab", "fields": {"nom_de_la_commune": "BELLENOT SOUS POUILLY", "libell_d_acheminement": "BELLENOT SOUS POUILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21062"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c010e4e0034780d8a964168ed44be07024ff4285", "fields": {"nom_de_la_commune": "BENOISEY", "libell_d_acheminement": "BENOISEY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21064"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc75d769839bb75887a892c2c001c9ee251ab24a", "fields": {"nom_de_la_commune": "BESSEY LA COUR", "libell_d_acheminement": "BESSEY LA COUR", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21066"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "500180f15ef6fa11d46008be67dee92ff9a52ba8", "fields": {"nom_de_la_commune": "BEVY", "libell_d_acheminement": "BEVY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21070"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b9b7471b5625478285440e4856a86a77dd65a3", "fields": {"nom_de_la_commune": "BILLEY", "libell_d_acheminement": "BILLEY", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21074"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4db8ef6252b05b19f9bc98d86f760e2e0060c6", "fields": {"code_postal": "21690", "code_commune_insee": "21084", "libell_d_acheminement": "SOURCE SEINE", "ligne_5": "ST GERMAIN SOURCE SEINE", "nom_de_la_commune": "SOURCE SEINE", "coordonnees_gps": [47.4529535112, 4.67833071213]}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9264305f42392622afb120d0a5b9bf7a72cc95bd", "fields": {"nom_de_la_commune": "BOURBERAIN", "libell_d_acheminement": "BOURBERAIN", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21094"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0431e5d8734339dda85969fdbe32fc6fa96cd3e7", "fields": {"nom_de_la_commune": "BOUX SOUS SALMAISE", "libell_d_acheminement": "BOUX SOUS SALMAISE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21098"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948d4de754bb66aa6ffabce94e5619d5165ba9eb", "fields": {"nom_de_la_commune": "BOUZE LES BEAUNE", "libell_d_acheminement": "BOUZE LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21099"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f23b17d3860b5bf8f81357c2114551fb7e3858", "fields": {"nom_de_la_commune": "BRAUX", "libell_d_acheminement": "BRAUX", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21101"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90135bd1caca3d17b1f99955bb926fa995809fda", "fields": {"nom_de_la_commune": "BRION SUR OURCE", "libell_d_acheminement": "BRION SUR OURCE BELAN", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21109"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de017afccf788af5d1144c4dfd52dadb73cb6a70", "fields": {"nom_de_la_commune": "BROCHON", "libell_d_acheminement": "BROCHON", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21110"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec067bf2eae0fa9a60341aaee001e66f1c74b9b", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21119"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3177029b9748aeb13b9c86a8ab67fb83d3720253", "fields": {"nom_de_la_commune": "CHAIGNAY", "libell_d_acheminement": "CHAIGNAY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21127"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5643e19d399ce7f953d6d6d8fb1f860e6bc467ea", "fields": {"nom_de_la_commune": "CHAMBAIN", "libell_d_acheminement": "CHAMBAIN", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21129"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52609d49d8544188b0c9a8e927fccaae94b1c0a2", "fields": {"nom_de_la_commune": "CHAMBOEUF", "libell_d_acheminement": "CHAMBOEUF", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21132"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7398e5d4e1e1a12cf33a139c22dce8e4584ef72", "fields": {"nom_de_la_commune": "CHAMESSON", "libell_d_acheminement": "CHAMESSON", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21134"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afbdda805b5acb7951a9afbd991c1ef1651a706", "fields": {"nom_de_la_commune": "CHAMPEAU EN MORVAN", "libell_d_acheminement": "CHAMPEAU EN MORVAN", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21139"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77c302d57b85cba1c33959ffa5126581887100c", "fields": {"nom_de_la_commune": "CHANCEAUX", "libell_d_acheminement": "CHANCEAUX", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21142"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44576ad603353355147e9d07dae13e49da83da8b", "fields": {"nom_de_la_commune": "CHANNAY", "libell_d_acheminement": "CHANNAY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21143"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc42caeadde068cee4246c73ccaaafa4625d1a1d", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21146"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb719eb84c482b4e040360e7184acb8223a7234", "fields": {"nom_de_la_commune": "CHARREY SUR SAONE", "libell_d_acheminement": "CHARREY SUR SAONE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21148"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b820869e535e4871261fdee3e94d57d19f8e12", "fields": {"nom_de_la_commune": "CHAZEUIL", "libell_d_acheminement": "CHAZEUIL", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21163"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60186eae7e3083698ad1e398c3066e4b151c501", "fields": {"nom_de_la_commune": "CHAZILLY", "libell_d_acheminement": "CHAZILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21164"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e7e89ced0e5533129b21e92c5c7979c8020c22", "fields": {"nom_de_la_commune": "CLAMEREY", "libell_d_acheminement": "CLAMEREY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21177"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be29e767e9bf50960f42bbf2b78c353deb333e1", "fields": {"nom_de_la_commune": "COLLONGES LES BEVY", "libell_d_acheminement": "COLLONGES LES BEVY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21182"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7d1ae41c8d9dc36ec0eb83bdc62cfcacb9ed11", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21184"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5d9e9f69f01865f1283f531bceb209e78a45a3", "fields": {"nom_de_la_commune": "COMMARIN", "libell_d_acheminement": "COMMARIN", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21187"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2613ce2b89d49c081fb878258874f3d10b72b059", "fields": {"nom_de_la_commune": "CORCELLES LES MONTS", "libell_d_acheminement": "CORCELLES LES MONTS", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21192"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec31fc2d7b6c17eec31ad204b839a90395304f30", "fields": {"nom_de_la_commune": "COURCELLES LES SEMUR", "libell_d_acheminement": "COURCELLES LES SEMUR", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21205"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a0be980439466ff66101e9d6ed06c10c86a61f7", "fields": {"nom_de_la_commune": "CRUGEY", "libell_d_acheminement": "CRUGEY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21214"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef3a3f27243305478a154663295846e52c60e92", "fields": {"nom_de_la_commune": "CULETRE", "libell_d_acheminement": "CULETRE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21216"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619af70f1d84fd0a99ac1b5a97b576acb549323e", "fields": {"nom_de_la_commune": "DETAIN ET BRUANT", "libell_d_acheminement": "DETAIN ET BRUANT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21228"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de365ef036311c34e856c4f4bc98137866bfe887", "fields": {"nom_de_la_commune": "DUESME", "libell_d_acheminement": "DUESME", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21235"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731524d83f0956248e49836b98aa167cdaed7952", "fields": {"nom_de_la_commune": "EBATY", "libell_d_acheminement": "EBATY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21236"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5130659cac63c67f6a0c2724b3012d0060ab5efa", "fields": {"nom_de_la_commune": "ESBARRES", "libell_d_acheminement": "ESBARRES", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21249"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284e26d1787b8b642d58e37a4b1b92b8b000c763", "fields": {"nom_de_la_commune": "ESSAROIS", "libell_d_acheminement": "ESSAROIS", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21250"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854c590a246d7c912eef7f1672cd7fcc3a367799", "fields": {"nom_de_la_commune": "FAUVERNEY", "libell_d_acheminement": "FAUVERNEY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21261"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf45bad8efe8cfb1e60d9d71f155596ff07c1340", "fields": {"nom_de_la_commune": "FONTAINE FRANCAISE", "libell_d_acheminement": "FONTAINE FRANCAISE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21277"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f65d1f61f3534711a90ff1081f202f83a8ea37b", "fields": {"nom_de_la_commune": "FUSSEY", "libell_d_acheminement": "FUSSEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21289"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8758a316162628837302b509ad72ddae50104b6", "fields": {"nom_de_la_commune": "GERGUEIL", "libell_d_acheminement": "GERGUEIL", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21293"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea758c6da5a7f3b1ca4a23b6eef92ad2465f5d72", "fields": {"nom_de_la_commune": "GERLAND", "libell_d_acheminement": "GERLAND", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21294"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42929b5d3e421540abe4c101ebdc5b42c721f438", "fields": {"nom_de_la_commune": "GEVROLLES", "libell_d_acheminement": "GEVROLLES", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21296"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f0512815dbf2557e02391b5086b5b5792cffcf", "fields": {"nom_de_la_commune": "GISSEY SUR OUCHE", "libell_d_acheminement": "GISSEY SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21300"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9e70dce4f89d73c3c8cdfd31af4e808486988a", "fields": {"nom_de_la_commune": "GOMMEVILLE", "libell_d_acheminement": "GOMMEVILLE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21302"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b001d540d7d4d69541d5c86c12ffaa642295052f", "fields": {"nom_de_la_commune": "GRIGNON", "libell_d_acheminement": "GRIGNON", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21308"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792d774cfbd5d4de87e9e68e90efb4abf0494101", "fields": {"nom_de_la_commune": "GROSBOIS EN MONTAGNE", "libell_d_acheminement": "GROSBOIS EN MONTAGNE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21310"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4432abcb5a3c2978ab3b7c5469c0c13754fe50", "fields": {"nom_de_la_commune": "GROSBOIS LES TICHEY", "libell_d_acheminement": "GROSBOIS LES TICHEY", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21311"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7684cce5403d5ec327097179fd464f5b125344d8", "fields": {"nom_de_la_commune": "GURGY LA VILLE", "libell_d_acheminement": "GURGY LA VILLE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21312"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff3bb3105c00451a7b849e0f7a9456ab9771d6b", "fields": {"nom_de_la_commune": "HEUILLEY SUR SAONE", "libell_d_acheminement": "HEUILLEY SUR SAONE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21316"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7bedb90070e5e989f0bbf261b90c3a0237d14af", "fields": {"nom_de_la_commune": "LABERGEMENT LES AUXONNE", "libell_d_acheminement": "LABERGEMENT LES AUXONNE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21331"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289c11b8ce9f8672934ef79149c72a9dca4a322d", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21350"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7335af39f958c1e6a9181efc2c8f6a5dfaa3b459", "fields": {"nom_de_la_commune": "LA REMUEE", "libell_d_acheminement": "LA REMUEE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76522"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8bbcd3f0ad8c37ffe7c2a9218a9e3fa7861dd10", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76528"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eaf1192b81f8a1cfcb2d49b9d19f7dc22c95b1e", "fields": {"nom_de_la_commune": "RIVILLE", "libell_d_acheminement": "RIVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76529"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a914a6d6171cf2cd25f39f1275c4bf1dde16479d", "fields": {"nom_de_la_commune": "ROGERVILLE", "libell_d_acheminement": "ROGERVILLE", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76533"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad0d5cafd910c2485790a00ccc439b962afaf73", "fields": {"nom_de_la_commune": "ROSAY", "libell_d_acheminement": "ROSAY", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76538"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75c281b6e9efc77df70c78b6d0ec10455813f91", "fields": {"nom_de_la_commune": "ROUMARE", "libell_d_acheminement": "ROUMARE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76541"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51df0552bb3cb6b10eded63654ecf814e5070acd", "fields": {"nom_de_la_commune": "ROUVILLE", "libell_d_acheminement": "ROUVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76543"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd854962efeb2764bbbe348bc23399ac615291e", "fields": {"nom_de_la_commune": "LA RUE ST PIERRE", "libell_d_acheminement": "LA RUE ST PIERRE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76547"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30ac67b42d5842bfd66225681fc0896373ad946", "fields": {"nom_de_la_commune": "STE ADRESSE", "libell_d_acheminement": "STE ADRESSE", "code_postal": "76310", "coordonnees_gps": [49.5104290594, 0.0781692610368], "code_commune_insee": "76552"}, "geometry": {"type": "Point", "coordinates": [0.0781692610368, 49.5104290594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d8092a1c1a21acc761fc209a74e99a93ea9363", "fields": {"nom_de_la_commune": "ST AIGNAN SUR RY", "libell_d_acheminement": "ST AIGNAN SUR RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76554"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a8e4e93537144fa06b39b57deb2c70eef42095", "fields": {"nom_de_la_commune": "ST ANTOINE LA FORET", "libell_d_acheminement": "ST ANTOINE LA FORET", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76556"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f101d5b692ce4fc55d3d0464d49cb4456307a6c", "fields": {"nom_de_la_commune": "ST CRESPIN", "libell_d_acheminement": "ST CRESPIN", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76570"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d688f15c22c360366d775d7a07624377092338", "fields": {"nom_de_la_commune": "ST EUSTACHE LA FORET", "libell_d_acheminement": "ST EUSTACHE LA FORET", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76576"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25059bd5b1679c19ffbc0803fdf10a1c0e165bb6", "fields": {"nom_de_la_commune": "ST JACQUES D ALIERMONT", "libell_d_acheminement": "ST JACQUES D ALIERMONT", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76590"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c892fff1fbfe7398fbd86f226bbd5d8613ad12", "fields": {"nom_de_la_commune": "ST JOUIN BRUNEVAL", "libell_d_acheminement": "ST JOUIN BRUNEVAL", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76595"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee8f8032cf4d4098ad6fdc6cf6ad9320a824362", "fields": {"nom_de_la_commune": "ST LAURENT DE BREVEDENT", "libell_d_acheminement": "ST LAURENT DE BREVEDENT", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76596"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4074bc67279ce881e80035bb6b988eb0f9dc48fc", "fields": {"nom_de_la_commune": "STE MARGUERITE SUR DUCLAIR", "libell_d_acheminement": "STE MARGUERITE SUR DUCLAIR", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76608"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d66cadd6690ea1782a9c8ccf7f040d26de6a08", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "ST MARTIN EN CAMPAGNE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98aca3ab004144dc62732d14a85d94df505b7ad0", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BRUNVILLE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51a1d1cd4ef2e8f007715b57c019ab0254a07b5", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GLICOURT", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e96dff41052f2792418647c1cf84dbb925c478", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GOUCHAUPRE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ea3b9f80b38071789326b0669b00da3872d3a3", "fields": {"nom_de_la_commune": "ST MICHEL D HALESCOURT", "libell_d_acheminement": "ST MICHEL D HALESCOURT", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76623"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0437c20baca8d6cf20f8026a3f7c71446e690fad", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA TAILLE", "libell_d_acheminement": "ST NICOLAS DE LA TAILLE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76627"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "682056e62d9c879b500fb84f143760f1226fe2c2", "fields": {"nom_de_la_commune": "ST OUEN LE MAUGER", "libell_d_acheminement": "ST OUEN LE MAUGER", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76629"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc165e6118d653992de78eeed7087234a9337b95", "fields": {"nom_de_la_commune": "ST PIERRE EN VAL", "libell_d_acheminement": "ST PIERRE EN VAL", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76638"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e00394e932003a04d9503d233c811c429d399a7", "fields": {"nom_de_la_commune": "ST PIERRE LES ELBEUF", "libell_d_acheminement": "ST PIERRE LES ELBEUF", "code_postal": "76320", "coordonnees_gps": [49.2796174465, 1.0395659245], "code_commune_insee": "76640"}, "geometry": {"type": "Point", "coordinates": [1.0395659245, 49.2796174465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488243b99204e2495a6b1b393c85470da9646392", "fields": {"nom_de_la_commune": "ST ROMAIN DE COLBOSC", "libell_d_acheminement": "ST ROMAIN DE COLBOSC", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76647"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397af1ef0dfefd7f05d6aa25b0bc47f9750ef608", "fields": {"nom_de_la_commune": "ST VAAST DU VAL", "libell_d_acheminement": "ST VAAST DU VAL", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76654"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86ba47003d2acf767a62d1a6a5f14fd40cb67fe", "fields": {"nom_de_la_commune": "ST VICTOR L ABBAYE", "libell_d_acheminement": "ST VICTOR L ABBAYE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76656"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334be782acd349d0469099a41e5bfaea36a2e03d", "fields": {"nom_de_la_commune": "ST VIGOR D YMONVILLE", "libell_d_acheminement": "ST VIGOR D YMONVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76657"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690f1297f43cd529c65375f3d495824fe605bb0f", "fields": {"nom_de_la_commune": "SAUSSAY", "libell_d_acheminement": "SAUSSAY", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76668"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76740bfa04b11552d48d266dd1eb22468e05e889", "fields": {"nom_de_la_commune": "SAUSSEUZEMARE EN CAUX", "libell_d_acheminement": "SAUSSEUZEMARE EN CAUX", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76669"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05465fc171584cd95b1b86c0c2b4fd4c24804774", "fields": {"nom_de_la_commune": "LE THIL RIBERPRE", "libell_d_acheminement": "LE THIL RIBERPRE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76691"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41315b8a88e6803a47d5b9950c9310dd1c28322c", "fields": {"nom_de_la_commune": "TORCY LE GRAND", "libell_d_acheminement": "TORCY LE GRAND", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76697"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4342e26070dea0738c50a75840810ec8a34878fd", "fields": {"nom_de_la_commune": "TOUFFREVILLE SUR EU", "libell_d_acheminement": "TOUFFREVILLE SUR EU", "code_postal": "76910", "coordonnees_gps": [50.002581149, 1.30116674877], "code_commune_insee": "76703"}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65f3ceabf76fecee59d9e55506f59a55518b4ba", "fields": {"nom_de_la_commune": "TOURVILLE LES IFS", "libell_d_acheminement": "TOURVILLE LES IFS", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76706"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80320580a831bf9a2f633302c1ec85de9c66ce17", "fields": {"nom_de_la_commune": "LE TREPORT", "libell_d_acheminement": "LE TREPORT", "code_postal": "76470", "coordonnees_gps": [50.053047753, 1.37179917603], "code_commune_insee": "76711"}, "geometry": {"type": "Point", "coordinates": [1.37179917603, 50.053047753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "701b60551d0d2eb66db19e9cde725e7d50840480", "fields": {"nom_de_la_commune": "LA TRINITE DU MONT", "libell_d_acheminement": "LA TRINITE DU MONT", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76712"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a382a2637eb754392b4b177af3c4164b2c9e791", "fields": {"nom_de_la_commune": "VALLIQUERVILLE", "libell_d_acheminement": "VALLIQUERVILLE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76718"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a88c6c862721180f1154151a67a14ac7a91b5c1", "fields": {"nom_de_la_commune": "VATTEVILLE LA RUE", "libell_d_acheminement": "VATTEVILLE LA RUE", "code_postal": "76940", "coordonnees_gps": [49.4548266435, 0.725950851811], "code_commune_insee": "76727"}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd41f5e66961bb916d549e61bd8e0cc1ecee566f", "fields": {"nom_de_la_commune": "VEAUVILLE LES BAONS", "libell_d_acheminement": "VEAUVILLE LES BAONS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76729"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ad338ee924bc6257a29a98a27b499c999bab25", "fields": {"nom_de_la_commune": "VEULES LES ROSES", "libell_d_acheminement": "VEULES LES ROSES", "code_postal": "76980", "coordonnees_gps": [49.8665948016, 0.785579468309], "code_commune_insee": "76735"}, "geometry": {"type": "Point", "coordinates": [0.785579468309, 49.8665948016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fbd4281f75c13b4cd6c145c40d910ee8b3bc52e", "fields": {"nom_de_la_commune": "VIBEUF", "libell_d_acheminement": "VIBEUF", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76737"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dae917864f87b268f077bcbee178d9fc01a3225", "fields": {"nom_de_la_commune": "VIEUX ROUEN SUR BRESLE", "libell_d_acheminement": "VIEUX ROUEN SUR BRESLE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76739"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241a4f4cf5ed0728f5499cfc31cc7eede66bd25c", "fields": {"nom_de_la_commune": "VILLY SUR YERES", "libell_d_acheminement": "VILLY SUR YERES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76745"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dc68ad8c6414bef816d868d855d688e9ad2f4ca", "fields": {"nom_de_la_commune": "VIRVILLE", "libell_d_acheminement": "VIRVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76747"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "247d9e37ad7d78f0a3fdcbddf077ebd988de8678", "fields": {"nom_de_la_commune": "YEBLERON", "libell_d_acheminement": "YEBLERON", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76751"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ea1a842f3c860d1536bb84305dba272f5d2720", "fields": {"nom_de_la_commune": "YPREVILLE BIVILLE", "libell_d_acheminement": "YPREVILLE BIVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76755"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13cf70eb5c490be1cd0a2aa7314843b6cd7a612", "fields": {"nom_de_la_commune": "YQUEBEUF", "libell_d_acheminement": "YQUEBEUF", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76756"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7e9f5a85b2f11742d9426d9d433462c36f6d2e", "fields": {"nom_de_la_commune": "YVECRIQUE", "libell_d_acheminement": "YVECRIQUE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76757"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e5136fa6f78dc2a8e79d83e874f5d22d75dcab", "fields": {"nom_de_la_commune": "ANNET SUR MARNE", "libell_d_acheminement": "ANNET SUR MARNE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77005"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097292eee381fae781e75b15917f696aa164fd78", "fields": {"nom_de_la_commune": "AUGERS EN BRIE", "libell_d_acheminement": "AUGERS EN BRIE", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77012"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ae7a60da572137b163148d704ebe39d322adcec", "fields": {"nom_de_la_commune": "AULNOY", "libell_d_acheminement": "AULNOY", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77013"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2cc2eab3932d2e23af0c091786908bd2a52e49", "fields": {"nom_de_la_commune": "BABY", "libell_d_acheminement": "BABY", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77015"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb2d53d486a9cc624c1bd915bbec7ab26afe0a5", "fields": {"nom_de_la_commune": "BAGNEAUX SUR LOING", "libell_d_acheminement": "BAGNEAUX SUR LOING", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77016"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760d21e2b12a24fd626400a83104d850efd48799", "fields": {"nom_de_la_commune": "MOREILLES", "libell_d_acheminement": "MOREILLES", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85149"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8929be64031b77d63c19090bc09da5846a69f51", "fields": {"nom_de_la_commune": "MOUILLERON LE CAPTIF", "libell_d_acheminement": "MOUILLERON LE CAPTIF", "code_postal": "85000", "coordonnees_gps": [46.6755378751, -1.41824284991], "code_commune_insee": "85155"}, "geometry": {"type": "Point", "coordinates": [-1.41824284991, 46.6755378751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34df9276062ab64b9086dac1d39158565002ab9f", "fields": {"nom_de_la_commune": "NALLIERS", "libell_d_acheminement": "NALLIERS", "code_postal": "85370", "coordonnees_gps": [46.4559323698, -0.995832045807], "code_commune_insee": "85159"}, "geometry": {"type": "Point", "coordinates": [-0.995832045807, 46.4559323698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb71e1c557dae72b43924382f220c35b6858d038", "fields": {"nom_de_la_commune": "PETOSSE", "libell_d_acheminement": "PETOSSE", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85174"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d8621a0d8a71951c6cf8668c5727c19b650596", "fields": {"nom_de_la_commune": "POIROUX", "libell_d_acheminement": "POIROUX", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85179"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e80be05e5270795c4374556e5cd6e5d8de95d1", "fields": {"nom_de_la_commune": "POUZAUGES", "libell_d_acheminement": "POUZAUGES", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85182"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84e2da1cb2c2c9c580708532347b4e69b7e89473", "fields": {"nom_de_la_commune": "LA REORTHE", "libell_d_acheminement": "LA REORTHE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85188"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b1d83a375870594ba36e7f4d31793fc42024b8", "fields": {"nom_de_la_commune": "LES SABLES D OLONNE", "libell_d_acheminement": "LES SABLES D OLONNE", "code_postal": "85100", "coordonnees_gps": [46.5007435544, -1.79267767146], "code_commune_insee": "85194"}, "geometry": {"type": "Point", "coordinates": [-1.79267767146, 46.5007435544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421861f4ee6d0cf218f4ba3243dc33e04a1fa55a", "fields": {"nom_de_la_commune": "ST ANDRE GOULE D OIE", "libell_d_acheminement": "ST ANDRE GOULE D OIE", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85196"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "617ef46d7e0e25a39e2ae6ae34f2eb04f0804691", "fields": {"code_postal": "85260", "code_commune_insee": "85197", "libell_d_acheminement": "MONTREVERD", "ligne_5": "MORMAISON", "nom_de_la_commune": "MONTREVERD", "coordonnees_gps": [46.8968914818, -1.35853673733]}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee8f0e12a9de4756a5583320c1eeadcd69c6b27", "fields": {"nom_de_la_commune": "ST AVAUGOURD DES LANDES", "libell_d_acheminement": "ST AVAUGOURD DES LANDES", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85200"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f577295aef23a0b6b21572da2db823f83fe4818c", "fields": {"code_postal": "85310", "code_commune_insee": "85213", "libell_d_acheminement": "RIVES DE L YON", "ligne_5": "CHAILLE SOUS LES ORMEAUX", "nom_de_la_commune": "RIVES DE L YON", "coordonnees_gps": [46.6268805827, -1.33228683205]}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c427d465f1ee8f203f042bc95070cfef4dec45", "fields": {"nom_de_la_commune": "ST FULGENT", "libell_d_acheminement": "ST FULGENT", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85215"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0e33664aa1b2ea60c5a50aaa9c904e04894ae6", "fields": {"nom_de_la_commune": "ST GEORGES DE MONTAIGU", "libell_d_acheminement": "ST GEORGES DE MONTAIGU", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85217"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe2bfe7e7b0a921334e50b3bc9345435db23884", "fields": {"nom_de_la_commune": "STE HERMINE", "libell_d_acheminement": "STE HERMINE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85223"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2bb39b89f48713108b8f62fb8654fbe9e8f379", "fields": {"nom_de_la_commune": "ST HILAIRE DE LOULAY", "libell_d_acheminement": "ST HILAIRE DE LOULAY", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85224"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2864b10258893617affb1adc412ce24b5ec0485", "fields": {"nom_de_la_commune": "ST HILAIRE DES LOGES", "libell_d_acheminement": "ST HILAIRE DES LOGES", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85227"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b04139396bec59af70ef4547669612a6494da9", "fields": {"nom_de_la_commune": "ST JULIEN DES LANDES", "libell_d_acheminement": "ST JULIEN DES LANDES", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85236"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369fcb756b311c26918635e3aa7bade50352c546", "fields": {"nom_de_la_commune": "ST MALO DU BOIS", "libell_d_acheminement": "ST MALO DU BOIS", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85240"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51da6c346aa5364c0b986f32f716de78d1fe41b1", "fields": {"nom_de_la_commune": "BREM SUR MER", "libell_d_acheminement": "BREM SUR MER", "code_postal": "85470", "coordonnees_gps": [46.62852373, -1.84475847528], "code_commune_insee": "85243"}, "geometry": {"type": "Point", "coordinates": [-1.84475847528, 46.62852373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dc9d5efc4ef0dc8616826f97514a13d1037c36", "fields": {"nom_de_la_commune": "ST MARTIN DE FRAIGNEAU", "libell_d_acheminement": "ST MARTIN DE FRAIGNEAU", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85244"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76dc4520eb34bcf77e37c8e82d407eb29a9c76c", "fields": {"nom_de_la_commune": "ST MARTIN DES FONTAINES", "libell_d_acheminement": "ST MARTIN DES FONTAINES", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85245"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd5c3a76c6878c81cd6c3057234c962dde0f1f6", "fields": {"nom_de_la_commune": "ST MARTIN DES NOYERS", "libell_d_acheminement": "ST MARTIN DES NOYERS", "code_postal": "85140", "coordonnees_gps": [46.7759741039, -1.24043269403], "code_commune_insee": "85246"}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7ce8e88d9d30f9f33dc92e5a1a101247ca0d17", "fields": {"nom_de_la_commune": "ST MARTIN DES TILLEULS", "libell_d_acheminement": "ST MARTIN DES TILLEULS", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85247"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602a836b067c4391de5e25ee66ea26ccc5a3f365", "fields": {"nom_de_la_commune": "ST MAURICE LE GIRARD", "libell_d_acheminement": "ST MAURICE LE GIRARD", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85252"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42739c02ca8ac1cc946bb067f3e62e16d54b3acc", "fields": {"nom_de_la_commune": "ST MICHEL EN L HERM", "libell_d_acheminement": "ST MICHEL EN L HERM", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85255"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c838a63d6f0efc0cd82393ef8b0598b0b54d77", "fields": {"nom_de_la_commune": "ST PAUL MONT PENIT", "libell_d_acheminement": "ST PAUL MONT PENIT", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85260"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737196a38132fc936b2b76d0b478a27dd5a87375", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85265"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b5872ec93844e7d0fd6318a4f46825e7d3e0c8e", "fields": {"nom_de_la_commune": "ST PROUANT", "libell_d_acheminement": "ST PROUANT", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85266"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60bff44dd1270af9e24bd6ac72612bb0999568f", "fields": {"nom_de_la_commune": "ST VINCENT SUR GRAON", "libell_d_acheminement": "ST VINCENT SUR GRAON", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85277"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fff2d34254bed4a0a97709df137dcf31101cfde", "fields": {"nom_de_la_commune": "ST VINCENT SUR JARD", "libell_d_acheminement": "ST VINCENT SUR JARD", "code_postal": "85520", "coordonnees_gps": [46.4271885, -1.57623760346], "code_commune_insee": "85278"}, "geometry": {"type": "Point", "coordinates": [-1.57623760346, 46.4271885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "432cc0d83ca68671c64ad4c363db90e2cad25197", "fields": {"nom_de_la_commune": "SOULLANS", "libell_d_acheminement": "SOULLANS", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85284"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d27b9cf2e51fde47abd23d0be0197516e4c5fad", "fields": {"nom_de_la_commune": "LE TABLIER", "libell_d_acheminement": "LE TABLIER", "code_postal": "85310", "coordonnees_gps": [46.6268805827, -1.33228683205], "code_commune_insee": "85285"}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae0df132c672d17a6c86365a432b8ff6ebc27ec", "fields": {"nom_de_la_commune": "TRIAIZE", "libell_d_acheminement": "TRIAIZE", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85297"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e50a5d61190573574e05e6643f32b7dc198436", "fields": {"nom_de_la_commune": "VENANSAULT", "libell_d_acheminement": "VENANSAULT", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85300"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145bc0eea0559e39e845b2fa73ee3ac24ee26840", "fields": {"nom_de_la_commune": "ANTRAN", "libell_d_acheminement": "ANTRAN", "code_postal": "86100", "coordonnees_gps": [46.825162468, 0.575853305257], "code_commune_insee": "86007"}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7ca7637f30beba25e0f48116cf179c27474256", "fields": {"nom_de_la_commune": "ASNIERES SUR BLOUR", "libell_d_acheminement": "ASNIERES SUR BLOUR", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86011"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d5bed32b3b4a8e5016bef7643d8e8f5b67b1ced", "fields": {"nom_de_la_commune": "BERTHEGON", "libell_d_acheminement": "BERTHEGON", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86023"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093123e5ad26b5897e13f20cafe8fcbc6db63a11", "fields": {"nom_de_la_commune": "BERUGES", "libell_d_acheminement": "BERUGES", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86024"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1702f94771ee9d53b1c1abb829be2f7b03326b2f", "fields": {"nom_de_la_commune": "BEUXES", "libell_d_acheminement": "BEUXES", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86026"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efa2b6959f7f62bed45cce22565ccc00f4bdd9a", "fields": {"nom_de_la_commune": "BLANZAY", "libell_d_acheminement": "BLANZAY", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86029"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c363f024cd1e8c65db36a6c0946be9b74c581bf2", "fields": {"nom_de_la_commune": "BLASLAY", "libell_d_acheminement": "BLASLAY", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86030"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a659854cb8a0d0374001280f055fa2277059d311", "fields": {"nom_de_la_commune": "BONNES", "libell_d_acheminement": "BONNES", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86031"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c1a260961d4eb448cc6d8befac278ba6c35e2d3", "fields": {"nom_de_la_commune": "BOURESSE", "libell_d_acheminement": "BOURESSE", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86034"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a39a177badd1784a4c809eb66fd3cc29aca08ad", "fields": {"nom_de_la_commune": "BOURG ARCHAMBAULT", "libell_d_acheminement": "BOURG ARCHAMBAULT", "code_postal": "86390", "coordonnees_gps": [46.3309224625, 0.955276450825], "code_commune_insee": "86035"}, "geometry": {"type": "Point", "coordinates": [0.955276450825, 46.3309224625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208e55aa8ceaa671a2aaf8fbb05e4ba1961c1c8f", "fields": {"nom_de_la_commune": "VERSAINVILLE", "libell_d_acheminement": "VERSAINVILLE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14737"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d74d37636888110ca790109a34d6d9be1921556", "fields": {"nom_de_la_commune": "VIEUX FUME", "libell_d_acheminement": "VIEUX FUME", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14749"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f790261e72d784bfbd8cf78322351e1245b8377", "fields": {"nom_de_la_commune": "VIEUX PONT EN AUGE", "libell_d_acheminement": "VIEUX PONT EN AUGE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14750"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45df077c4f2c4872e2bb5b37942dcbba62f91150", "fields": {"nom_de_la_commune": "VILLERS SUR MER", "libell_d_acheminement": "VILLERS SUR MER", "code_postal": "14640", "coordonnees_gps": [49.3070612081, -0.000385070160039], "code_commune_insee": "14754"}, "geometry": {"type": "Point", "coordinates": [-0.000385070160039, 49.3070612081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ce795c91a67ee33b124248dab5a1375bd2411d", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "COULONCES", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf00ffb370f0616ea0f423355c57c3f4d67ac2a4", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "LA LANDE VAUMONT", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95676c9e6cd36d27df6e1b9f7add6a1c4c57fe1d", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "MAISONCELLES LA JOURDAN", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc20060769c11ec3df3707ff7111df3e7e3274b", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "TRUTTEMER LE GRAND", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3f0fcab88f7101168719f25d8d9de80082f2bb", "fields": {"nom_de_la_commune": "ALLY", "libell_d_acheminement": "ALLY", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15003"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "070732fc051b987ac76dafc7da76ac6f703fe4c1", "fields": {"code_postal": "15700", "code_commune_insee": "15003", "libell_d_acheminement": "ALLY", "ligne_5": "DRIGNAC", "nom_de_la_commune": "ALLY", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb44451ed1039dd38e65bbf8ac6865048409b152", "fields": {"nom_de_la_commune": "ANTERRIEUX", "libell_d_acheminement": "ANTERRIEUX", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15007"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2e8fd1e1cf591ee6523b1eff08a3ff2683b4ab", "fields": {"nom_de_la_commune": "ARPAJON SUR CERE", "libell_d_acheminement": "ARPAJON SUR CERE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15012"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46bd00dfc2758af86df31d6edc4fde3d37e7bc6a", "fields": {"nom_de_la_commune": "AURIAC L EGLISE", "libell_d_acheminement": "AURIAC L EGLISE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15013"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77afd5ab4400df74f9e7f79b69ae795066e6f1ac", "fields": {"nom_de_la_commune": "CASSANIOUZE", "libell_d_acheminement": "CASSANIOUZE", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15029"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2415fcd63dbf0ceaba7246cd6a8138b40234fcf4", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15031"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13bd6de54f6f57e44f66249c50a8fb94ba4bd75", "fields": {"nom_de_la_commune": "CHAMPAGNAC", "libell_d_acheminement": "CHAMPAGNAC", "code_postal": "15350", "coordonnees_gps": [45.360785771, 2.38882162229], "code_commune_insee": "15037"}, "geometry": {"type": "Point", "coordinates": [2.38882162229, 45.360785771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7997fa0c04c388ff3f2da6e314db365e13f094e8", "fields": {"nom_de_la_commune": "CHANTERELLE", "libell_d_acheminement": "CHANTERELLE", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15040"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f9c5c2315736bd0d675fa5b1f01559011cf972", "fields": {"nom_de_la_commune": "LA CHAPELLE LAURENT", "libell_d_acheminement": "LA CHAPELLE LAURENT", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15042"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ab202c6e4781132a15bcd3848c7119e62b3743", "fields": {"nom_de_la_commune": "CLAVIERES", "libell_d_acheminement": "CLAVIERES", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15051"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e82f3959144738ba3fbe5ca42ae395784bfc045", "fields": {"nom_de_la_commune": "COLTINES", "libell_d_acheminement": "COLTINES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15053"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc173ffecc32dadaf76e821cefb41906199fce38", "fields": {"nom_de_la_commune": "CRANDELLES", "libell_d_acheminement": "CRANDELLES", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15056"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad1517a63ea71724bb5278d7efc08cefd4d9678", "fields": {"nom_de_la_commune": "DEUX VERGES", "libell_d_acheminement": "DEUX VERGES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15060"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7a19f658ee8ea3390f3380177aafabd82b4e3f", "fields": {"nom_de_la_commune": "LE FAU", "libell_d_acheminement": "LE FAU", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15067"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b500b6b1c2d067fd2688b90273aabe60c80a3e80", "fields": {"nom_de_la_commune": "FREIX ANGLARDS", "libell_d_acheminement": "FREIX ANGLARDS", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15072"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d5cdaed246d9a3c7eafeb5219966db95f4cf06", "fields": {"nom_de_la_commune": "JALEYRAC", "libell_d_acheminement": "JALEYRAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15079"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "678fd0491938502a33b11d2270b140c17eaf4dcf", "fields": {"nom_de_la_commune": "LANDEYRAT", "libell_d_acheminement": "LANDEYRAT", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15091"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3747e6c1887a729c631ceb5643dbf85a6c6cb0", "fields": {"nom_de_la_commune": "LAROQUEBROU", "libell_d_acheminement": "LAROQUEBROU", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15094"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f61105849ff56d96369b47d1d9acf8a0009622", "fields": {"nom_de_la_commune": "LAVEISSENET", "libell_d_acheminement": "LAVEISSENET", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15100"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59cae1f378f064b1b8302e8a2f630782682c6cff", "fields": {"code_postal": "15300", "code_commune_insee": "15101", "libell_d_acheminement": "LAVEISSIERE", "ligne_5": "LE LIORAN", "nom_de_la_commune": "LAVEISSIERE", "coordonnees_gps": [45.1198274459, 2.83644430028]}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b972811d97499ea06f1738f65862c1eb9d5b940", "fields": {"code_postal": "15300", "code_commune_insee": "15101", "libell_d_acheminement": "LAVEISSIERE", "ligne_5": "SUPER LIORAN", "nom_de_la_commune": "LAVEISSIERE", "coordonnees_gps": [45.1198274459, 2.83644430028]}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6883b679d24f8de92ec0353f9ab06475da89142a", "fields": {"nom_de_la_commune": "LEYVAUX", "libell_d_acheminement": "LEYVAUX", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "15105"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428e17a1e29d8b43a01b0b4e4bdbbe5580f21599", "fields": {"nom_de_la_commune": "LORCIERES", "libell_d_acheminement": "LORCIERES", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15107"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dba24b9c6edd559e5406ce44ec64747b4cfe9d5", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "LOUBARESSE", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d40882109bb60ac1c5c88b3b117a1a5bd2ca3fb", "fields": {"code_postal": "15590", "code_commune_insee": "15113", "libell_d_acheminement": "MANDAILLES ST JULIEN", "ligne_5": "ST JULIEN DE JORDANNE", "nom_de_la_commune": "MANDAILLES ST JULIEN", "coordonnees_gps": [45.0490320322, 2.61650882342]}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d62bd56680db516fbdfc93b1f6878c2518a9ff8", "fields": {"nom_de_la_commune": "MOLOMPIZE", "libell_d_acheminement": "MOLOMPIZE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15127"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124f04456b3f2af7230434e12a4d8c08064d092c", "fields": {"nom_de_la_commune": "MONTSALVY", "libell_d_acheminement": "MONTSALVY", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15134"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b851f43b24e631fa56a39035a3f32b579c430579", "fields": {"nom_de_la_commune": "NAUCELLES", "libell_d_acheminement": "NAUCELLES", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15140"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03cd963cc82f1cecc989b87200b91e5fbe3fc1c7", "fields": {"nom_de_la_commune": "NEUSSARGUES MOISSAC", "libell_d_acheminement": "NEUSSARGUES MOISSAC", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15141"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c27f3a2147fc8b0ca8dd44961520c837ed3fd48", "fields": {"nom_de_la_commune": "NEUVEGLISE", "libell_d_acheminement": "NEUVEGLISE", "code_postal": "15260", "coordonnees_gps": [44.930379785, 2.97483208251], "code_commune_insee": "15142"}, "geometry": {"type": "Point", "coordinates": [2.97483208251, 44.930379785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3b9f9341993e28441992584ce9dc7487bdca62", "fields": {"code_postal": "15700", "code_commune_insee": "15153", "libell_d_acheminement": "PLEAUX", "ligne_5": "ST CHRISTOPHE LES GORGES", "nom_de_la_commune": "PLEAUX", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6b8580c6ca45034214662d5d89c119f76dc373", "fields": {"nom_de_la_commune": "PRUNET", "libell_d_acheminement": "PRUNET", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15156"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf2316aef867206c669a9da70349c0903caad49", "fields": {"nom_de_la_commune": "RAGEADE", "libell_d_acheminement": "RAGEADE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15158"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820021151e6946b48f85fb393a2e1a40a627ea11", "fields": {"nom_de_la_commune": "RAULHAC", "libell_d_acheminement": "RAULHAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15159"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0da878cb245a2d7dfaa49c5fe4b402e7241a3f4", "fields": {"nom_de_la_commune": "REILHAC", "libell_d_acheminement": "REILHAC", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15160"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a2a1c260ac29423bd1364b6033fffcaea1c58b", "fields": {"nom_de_la_commune": "SAIGNES", "libell_d_acheminement": "SAIGNES", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15169"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc96e8dbaf068108604f183b4291fdf6544ddbae", "fields": {"nom_de_la_commune": "ST ANTOINE", "libell_d_acheminement": "ST ANTOINE", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15172"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb13c53dd5c755c585dfd94061d159966f0bbaaa", "fields": {"nom_de_la_commune": "ST CHAMANT", "libell_d_acheminement": "ST CHAMANT", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15176"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c17d53a9a55fbc4db7bc537d8dcbb4e7c9e8670", "fields": {"code_postal": "15600", "code_commune_insee": "15181", "libell_d_acheminement": "ST CONSTANT FOURNOULES", "ligne_5": "FOURNOULES", "nom_de_la_commune": "ST CONSTANT FOURNOULES", "coordonnees_gps": [44.7318470612, 2.22537453682]}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77cf9145051d542aa898843b1fa186a61a1256b3", "fields": {"nom_de_la_commune": "ST ETIENNE DE MAURS", "libell_d_acheminement": "ST ETIENNE DE MAURS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15184"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ed300dbc2e29a25a41d9be3a6df3a981753550", "fields": {"nom_de_la_commune": "ST MARTIN SOUS VIGOUROUX", "libell_d_acheminement": "ST MARTIN SOUS VIGOUROUX", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15201"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46c7f2f87f2c28472307f4d275b03327e39cf56", "fields": {"nom_de_la_commune": "ST PROJET DE SALERS", "libell_d_acheminement": "ST PROJET DE SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15208"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbca1037ab31514f09b6a4faadeca2a155bb6bd", "fields": {"nom_de_la_commune": "ST URCIZE", "libell_d_acheminement": "ST URCIZE", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15216"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a65f17d1c203c6a4a974be3b17e0d6bd6857ef3", "fields": {"nom_de_la_commune": "SALERS", "libell_d_acheminement": "SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15219"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11304ef9827f0fa18b976aaf1dd5b62f1e31a20d", "fields": {"nom_de_la_commune": "SALINS", "libell_d_acheminement": "SALINS", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15220"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93e1e47bf601f4eae152915e97ae6a544f28c2ac", "fields": {"nom_de_la_commune": "SAUVAT", "libell_d_acheminement": "SAUVAT", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15223"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e67731d0ca23cea57e0f914fd49d5eff22d4daa", "fields": {"nom_de_la_commune": "LA SEGALASSIERE", "libell_d_acheminement": "LA SEGALASSIERE", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15224"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6669ca9dd536c48e61a858fc38328b8858af5a28", "fields": {"nom_de_la_commune": "SIRAN", "libell_d_acheminement": "SIRAN", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15228"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40aee880dffdb3a8725ca7e338ac0986cce664d1", "fields": {"nom_de_la_commune": "TANAVELLE", "libell_d_acheminement": "TANAVELLE", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15232"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d262e4a25e9815ae5a746704e21aebe74dccc", "fields": {"nom_de_la_commune": "TEISSIERES LES BOULIES", "libell_d_acheminement": "TEISSIERES LES BOULIES", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15234"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9f4b22df49e817b020b0e653eeb36bbad0a6ed", "fields": {"nom_de_la_commune": "LES TERNES", "libell_d_acheminement": "LES TERNES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15235"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f73bcc403ff09fbaf3705d42aa8e0d7389243d", "fields": {"nom_de_la_commune": "VALETTE", "libell_d_acheminement": "VALETTE", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15246"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23859d85eb8ddf9c98589061f32a13c3bff4a62", "fields": {"nom_de_la_commune": "VERNOLS", "libell_d_acheminement": "VERNOLS", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15253"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf23c88610cc1f9a4d19f3c210edc7f0cafad9f", "fields": {"nom_de_la_commune": "VIEILLEVIE", "libell_d_acheminement": "VIEILLEVIE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15260"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ade5a0e98173b9d803b91c318a8f455787992f0", "fields": {"nom_de_la_commune": "YOLET", "libell_d_acheminement": "YOLET", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15266"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f58f53008da6fe6b6b868ec9063dd7d49b0738", "fields": {"nom_de_la_commune": "YTRAC", "libell_d_acheminement": "YTRAC", "code_postal": "15000", "coordonnees_gps": [44.9195092273, 2.3987245584], "code_commune_insee": "15267"}, "geometry": {"type": "Point", "coordinates": [2.3987245584, 44.9195092273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff5abbe173d1ad810f1e5008573a8945c15fb0a", "fields": {"nom_de_la_commune": "LES ADJOTS", "libell_d_acheminement": "LES ADJOTS", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16002"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20456de4b355360819f6e6e9e9610f711508f46", "fields": {"nom_de_la_commune": "ALLOUE", "libell_d_acheminement": "ALLOUE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16007"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80c77369769e0620fd9e701f369f937a35d2780a", "fields": {"nom_de_la_commune": "BARBEZIERES", "libell_d_acheminement": "BARBEZIERES", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16027"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f4c2a8ec6d44161cbafeccaf1783c3ed0e726e", "fields": {"nom_de_la_commune": "BERNAC", "libell_d_acheminement": "BERNAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16039"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ed053efba02d0fbf6549abcc75172be8c7f41c", "fields": {"nom_de_la_commune": "BESSAC", "libell_d_acheminement": "BESSAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16041"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d136b4964e2fce2f12e02d18974ea2a207f470ab", "fields": {"nom_de_la_commune": "BOISBRETEAU", "libell_d_acheminement": "BOISBRETEAU", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16048"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934c12ea731c78da0799322980487b83f578cb84", "fields": {"nom_de_la_commune": "BOUEX", "libell_d_acheminement": "BOUEX", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16055"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76d097eb639c17121da6972b4647858b57c9e63", "fields": {"nom_de_la_commune": "BRETTES", "libell_d_acheminement": "BRETTES", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16059"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a0c00de9e0bcdcbf9bae604f23024c69a0bc7e4", "fields": {"nom_de_la_commune": "BREVILLE", "libell_d_acheminement": "BREVILLE", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16060"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae9f0625fe81ca98fb68bdaa5de8a91e358a0fc", "fields": {"nom_de_la_commune": "BRIGUEUIL", "libell_d_acheminement": "BRIGUEUIL", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16064"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccd4841d5285c58a50972bb114084f2207ae262", "fields": {"nom_de_la_commune": "CELLETTES", "libell_d_acheminement": "CELLETTES", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16069"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3483a7fba6c9e94b6fa54bd6e92284e541d8e7fb", "fields": {"nom_de_la_commune": "CHAMPAGNE MOUTON", "libell_d_acheminement": "CHAMPAGNE MOUTON", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16076"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a39ee0f5e3308255245079db5b99d3662edf67e", "fields": {"nom_de_la_commune": "CHAMPNIERS", "libell_d_acheminement": "CHAMPNIERS", "code_postal": "16430", "coordonnees_gps": [45.7168170917, 0.172931779313], "code_commune_insee": "16078"}, "geometry": {"type": "Point", "coordinates": [0.172931779313, 45.7168170917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20606b94fe55210a43a4faeeb15ea47c569c378c", "fields": {"nom_de_la_commune": "CHARME", "libell_d_acheminement": "CHARME", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16083"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5877d9f2276f3905133b7c41f8632764c10669b1", "fields": {"nom_de_la_commune": "COURLAC", "libell_d_acheminement": "COURLAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16112"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec888cc1ce5c6085c15f886898954487b738333a", "fields": {"nom_de_la_commune": "DOUZAT", "libell_d_acheminement": "DOUZAT", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16121"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20462efecc7e2c41189ea0aaf849c02e65fb18b", "fields": {"nom_de_la_commune": "EBREON", "libell_d_acheminement": "EBREON", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16122"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b52030d65313017152ea055c05f9988d38f1b58", "fields": {"nom_de_la_commune": "EMPURE", "libell_d_acheminement": "EMPURE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16127"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f525143e51a07ec8e36e6a159eb91dc7d893f63", "fields": {"nom_de_la_commune": "ESSE", "libell_d_acheminement": "ESSE", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16131"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a868be5eac945c75b148a072083012486a5e221a", "fields": {"nom_de_la_commune": "FONTCLAIREAU", "libell_d_acheminement": "FONTCLAIREAU", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16140"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce9db3d3d5b3cb8858302fc4707593bada96a38", "fields": {"nom_de_la_commune": "GENAC BIGNAC", "libell_d_acheminement": "GENAC BIGNAC", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16148"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16dd31732f706a166a52cdcc276da49bed1194c7", "fields": {"nom_de_la_commune": "GIMEUX", "libell_d_acheminement": "GIMEUX", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16152"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdcb9211cbf54f0f3a6ca45ac4491d542afed42d", "fields": {"nom_de_la_commune": "JUILLE", "libell_d_acheminement": "JUILLE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16173"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ffc78d9e9d88224cc23f67a5a97ecb06b3f9615", "fields": {"nom_de_la_commune": "JULIENNE", "libell_d_acheminement": "JULIENNE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16174"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa8c4d1db452b06e107a81b000a6432d30d648df", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "MAINFONDS", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8433e46f513f3e6fc1ff08b1c2b9b64ce20610be", "fields": {"nom_de_la_commune": "LADIVILLE", "libell_d_acheminement": "LADIVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16177"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae917484a89d2059943e73839d3d45a153ed415c", "fields": {"nom_de_la_commune": "LE LINDOIS", "libell_d_acheminement": "LE LINDOIS", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16188"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "868ac015db02d2e0962978c7c3fcf650f05f53ce", "fields": {"nom_de_la_commune": "ROUMAZIERES LOUBERT", "libell_d_acheminement": "ROUMAZIERES LOUBERT", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16192"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bfb45680948442cf199f2630c868c223840785", "fields": {"nom_de_la_commune": "MAGNAC LAVALETTE VILLARS", "libell_d_acheminement": "MAGNAC LAVALETTE VILLARS", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16198"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf05ad735445a55cd72c943167e2b99e7f93771", "fields": {"nom_de_la_commune": "MAREUIL", "libell_d_acheminement": "MAREUIL", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16208"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8361300870d28451775011ddf9e48f82b858be59", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16213"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b7aed8d84a7e17b0202637cdf06d4ca9d298f5", "fields": {"nom_de_la_commune": "MEDILLAC", "libell_d_acheminement": "MEDILLAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16215"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b342b1f565a7e0f5ffe462f437c8ca246dd78c2e", "fields": {"nom_de_la_commune": "MONTBRON", "libell_d_acheminement": "MONTBRON", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16223"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f465363fe11239f7712fd336a95f5c6595be1b7", "fields": {"nom_de_la_commune": "MONTIGNAC LE COQ", "libell_d_acheminement": "MONTIGNAC LE COQ", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16227"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6e48792ca985f14881f2b3ab370f4f417e22c1", "fields": {"nom_de_la_commune": "MORNAC", "libell_d_acheminement": "MORNAC", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16232"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b4f20dda13aefbc8df39deb896cfce5d76a1a5", "fields": {"nom_de_la_commune": "ST PIERRE DE MEAROZ", "libell_d_acheminement": "ST PIERRE DE MEAROZ", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38444"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bab2ab3ff7d8201101eec3401073ebf7977867a", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38454"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd7ec4d3997884a8d2e33fd8a3f35f7106a7313", "fields": {"nom_de_la_commune": "ST SORLIN DE VIENNE", "libell_d_acheminement": "ST SORLIN DE VIENNE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38459"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0678612537554117f5be5e5945af8e96ac9d1d74", "fields": {"nom_de_la_commune": "ST THEOFFREY", "libell_d_acheminement": "ST THEOFFREY", "code_postal": "38119", "coordonnees_gps": [44.9763278291, 5.79332397715], "code_commune_insee": "38462"}, "geometry": {"type": "Point", "coordinates": [5.79332397715, 44.9763278291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b5dc8d1c1d7b1737a3fa3d9ee1739894c18ca2", "fields": {"nom_de_la_commune": "ST VICTOR DE MORESTEL", "libell_d_acheminement": "ST VICTOR DE MORESTEL", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38465"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db217e526e116722f73726c45ec578d3ba11c6d", "fields": {"nom_de_la_commune": "SARCENAS", "libell_d_acheminement": "SARCENAS", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38472"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b30ddc2f10feb060d72f700952c3de82bcbb3d", "fields": {"nom_de_la_commune": "SASSENAGE", "libell_d_acheminement": "SASSENAGE", "code_postal": "38360", "coordonnees_gps": [45.2140316159, 5.62374044814], "code_commune_insee": "38474"}, "geometry": {"type": "Point", "coordinates": [5.62374044814, 45.2140316159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7b20a90fa6f6e6f80ec6c763d95f106953b1be", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "BAS DE BONCE", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecf5ee6371d3a4a976034c2f21daba0bd8aae6a9", "fields": {"nom_de_la_commune": "SAVAS MEPIN", "libell_d_acheminement": "SAVAS MEPIN", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38476"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d92f111ab33452029799965b90c756252461c4", "fields": {"code_postal": "38780", "code_commune_insee": "38480", "libell_d_acheminement": "SEPTEME", "ligne_5": "SOUS COTE", "nom_de_la_commune": "SEPTEME", "coordonnees_gps": [45.5202153457, 4.98494519095]}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1d47a42a32c08addc13e456e6122bc659074b8", "fields": {"nom_de_la_commune": "SICCIEU ST JULIEN ET CARISIEU", "libell_d_acheminement": "SICCIEU ST JULIEN ET CARISIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38488"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9608d9a0abfc25d9ffc366c3657923c1359728de", "fields": {"nom_de_la_commune": "SUCCIEU", "libell_d_acheminement": "SUCCIEU", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38498"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5b0532784a239dac1633dad52cb7919d8f7f50", "fields": {"nom_de_la_commune": "SUSVILLE", "libell_d_acheminement": "SUSVILLE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38499"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bb7dc0e3c9208287ccc8283ac8b5c5de23ae9c", "fields": {"nom_de_la_commune": "THEYS", "libell_d_acheminement": "THEYS", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38504"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc0639dfda94795c0148c9569c040722f50072c", "fields": {"nom_de_la_commune": "LA TOUR DU PIN", "libell_d_acheminement": "LA TOUR DU PIN", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38509"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9210fe1e0369eea9626854006fc7097348bc7e", "fields": {"nom_de_la_commune": "TRAMOLE", "libell_d_acheminement": "TRAMOLE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38512"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448c874cf5900787ca81a621da1bfebfc654d8b2", "fields": {"nom_de_la_commune": "VALENCOGNE", "libell_d_acheminement": "VALENCOGNE", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38520"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba7b9dc1ab9aaeec735edc6be3a45f569aad8cd", "fields": {"nom_de_la_commune": "LA VALETTE", "libell_d_acheminement": "LA VALETTE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38521"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a0cc8bf51fea0c43f00a6bfd167330304a04d4", "fields": {"nom_de_la_commune": "VATILIEU", "libell_d_acheminement": "VATILIEU", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38526"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e388db6ed098636255d8e7f86b27f13dc87c282", "fields": {"nom_de_la_commune": "LE VERSOUD", "libell_d_acheminement": "LE VERSOUD", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38538"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa17c4ab329c4dabbc8912da33ec685208025e65", "fields": {"nom_de_la_commune": "VIF", "libell_d_acheminement": "VIF", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38545"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfaa6f0e5cb12942588e564831a290d38987e85", "fields": {"nom_de_la_commune": "VILLARD BONNOT", "libell_d_acheminement": "VILLARD BONNOT", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38547"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b96a0b850dd4f5e83ce0520ea4ab15aafbb635", "fields": {"nom_de_la_commune": "VILLARD NOTRE DAME", "libell_d_acheminement": "VILLARD NOTRE DAME", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38549"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09401dcc41d8d5939b5a26bebf99ba4d22e59dba", "fields": {"nom_de_la_commune": "VILLEFONTAINE", "libell_d_acheminement": "VILLEFONTAINE", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38553"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f642c81c4da2e18867546b87660c2240343d7a", "fields": {"code_postal": "38280", "code_commune_insee": "38557", "libell_d_acheminement": "VILLETTE D ANTHON", "ligne_5": "MONS", "nom_de_la_commune": "VILLETTE D ANTHON", "coordonnees_gps": [45.7761558636, 5.11926140068]}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce516237870528744bdeea4f78fdf5f40e13b9da", "fields": {"nom_de_la_commune": "ABERGEMENT LA RONCE", "libell_d_acheminement": "ABERGEMENT LA RONCE", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39001"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e129cb6037d273e01c3303eb71e82c7327789ba", "fields": {"nom_de_la_commune": "ABERGEMENT LE GRAND", "libell_d_acheminement": "ABERGEMENT LE GRAND", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39002"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d090e414c7129989fa5dbd6df3d96cce1709e3", "fields": {"nom_de_la_commune": "ABERGEMENT LE PETIT", "libell_d_acheminement": "ABERGEMENT LE PETIT", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39003"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bf8891e993f74c51a20422cef78227a7c10e4b", "fields": {"nom_de_la_commune": "ABERGEMENT LES THESY", "libell_d_acheminement": "ABERGEMENT LES THESY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39004"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2278a6f9ee6bb8bbbf2dd35a9cf86c79c4af932", "fields": {"nom_de_la_commune": "AIGLEPIERRE", "libell_d_acheminement": "AIGLEPIERRE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39006"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe3f440342f6a15381a7a3f188881e104b1145c1", "fields": {"nom_de_la_commune": "ARCHELANGE", "libell_d_acheminement": "ARCHELANGE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39014"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb1ede3001a50a42251d9bcfc731e89277a1b4c1", "fields": {"nom_de_la_commune": "AROMAS", "libell_d_acheminement": "AROMAS", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39018"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08502db20e645045bec1c0a9b281a9250afe7cea", "fields": {"code_postal": "39240", "code_commune_insee": "39018", "libell_d_acheminement": "AROMAS", "ligne_5": "CEFFIA", "nom_de_la_commune": "AROMAS", "coordonnees_gps": [46.3647092141, 5.55936987641]}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c84d3860e4342377011631f94eb640457a5467", "fields": {"code_postal": "39270", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "ESSIA", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0257ddc0977c40c447ef68439e0e8e6d5c8df5", "fields": {"nom_de_la_commune": "ASNANS BEAUVOISIN", "libell_d_acheminement": "ASNANS BEAUVOISIN", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39022"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f885f607f6ce24a1bbadeba40a4ce462f71de61", "fields": {"code_postal": "39120", "code_commune_insee": "39022", "libell_d_acheminement": "ASNANS BEAUVOISIN", "ligne_5": "BEAUVOISIN", "nom_de_la_commune": "ASNANS BEAUVOISIN", "coordonnees_gps": [46.9509063875, 5.4122957378]}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2173c096a09bc01576410110448e46fbf6efc6a7", "fields": {"nom_de_la_commune": "AUGISEY", "libell_d_acheminement": "AUGISEY", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39027"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baea2a1ace3e9dfb23836908bf4deb37eea90cab", "fields": {"nom_de_la_commune": "AUTHUME", "libell_d_acheminement": "AUTHUME", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39030"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfed3da3f478ddadf59177018805795144f03088", "fields": {"nom_de_la_commune": "AVIGNON LES ST CLAUDE", "libell_d_acheminement": "AVIGNON LES ST CLAUDE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39032"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9cc7067c173a0790e5c16bcbdfad90e05d3a4b", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39048"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf343cee94d7678f71f0e40a304ad8de8618d154", "fields": {"code_postal": "39800", "code_commune_insee": "39049", "libell_d_acheminement": "BERSAILLIN", "ligne_5": "LE VISENEY", "nom_de_la_commune": "BERSAILLIN", "coordonnees_gps": [46.840381623, 5.68546108472]}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153641d36e20162bcda12b8c491572a89c66a3b1", "fields": {"nom_de_la_commune": "BLOIS SUR SEILLE", "libell_d_acheminement": "BLOIS SUR SEILLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39057"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53f89e2ea19b22a777e7620cb6dc5d0eb81ba82", "fields": {"nom_de_la_commune": "BOURCIA", "libell_d_acheminement": "BOURCIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39069"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2819933137c13b1494348da5ec9a7979dc120581", "fields": {"nom_de_la_commune": "BRAINANS", "libell_d_acheminement": "BRAINANS", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39073"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206642e7db21aa4ae8737ea0208d5fb732aeae5f", "fields": {"nom_de_la_commune": "BRANS", "libell_d_acheminement": "BRANS", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39074"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dce8b7fa8f25d15ac88c8a26bd3455a4793d0ac", "fields": {"nom_de_la_commune": "BROISSIA", "libell_d_acheminement": "BROISSIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39080"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0fa8b6b723d8a0c475e10170ff57b7395c8ed83", "fields": {"nom_de_la_commune": "CHAMOLE", "libell_d_acheminement": "CHAMOLE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39094"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e828b7110c5b2d8e76170fda49499c264a3e675", "fields": {"nom_de_la_commune": "CHAMPDIVERS", "libell_d_acheminement": "CHAMPDIVERS", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39099"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b96ef8d1d2a3c6d8b5e3b4709f259404a520adf", "fields": {"nom_de_la_commune": "CHAPELLE VOLAND", "libell_d_acheminement": "CHAPELLE VOLAND", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39104"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e41c33061e7195ef7f4119a589f6bd0376eba7", "fields": {"nom_de_la_commune": "CHAPOIS", "libell_d_acheminement": "CHAPOIS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39105"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f949229243638824c8e5906065d248f950104761", "fields": {"nom_de_la_commune": "CHAREZIER", "libell_d_acheminement": "CHAREZIER", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39109"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a675c275dc27bb6e2996da2ad9d4cafbce0617", "fields": {"nom_de_la_commune": "CHATEAU DES PRES", "libell_d_acheminement": "CHATEAU DES PRES", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39115"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b0a1fea5c119812bbebf995e1c83b596b622ca", "fields": {"nom_de_la_commune": "CHATELNEUF", "libell_d_acheminement": "CHATELNEUF", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39120"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6725e72de261057937137f6b58e1d8b66b3d32", "fields": {"code_postal": "39150", "code_commune_insee": "39130", "libell_d_acheminement": "NANCHEZ", "ligne_5": "CHAUX DES PRES", "nom_de_la_commune": "NANCHEZ", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a842c07afa2cb502d465882ac4eefc5b2f10cd1", "fields": {"nom_de_la_commune": "CHAUX CHAMPAGNY", "libell_d_acheminement": "CHAUX CHAMPAGNY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39133"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c484ba77a509a8a386f5cf070238ece79659b1", "fields": {"nom_de_la_commune": "CHAVERIA", "libell_d_acheminement": "CHAVERIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39134"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7348e495254881b09b3c8b29cb2c4a627897e992", "fields": {"nom_de_la_commune": "CHEMIN", "libell_d_acheminement": "CHEMIN", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39138"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82f2910c6c601c4e3567c33b9294b5d113088e1", "fields": {"nom_de_la_commune": "CHENE SEC", "libell_d_acheminement": "CHENE SEC", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39140"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2406e0075ee6eecb1f71bd857ab0eb3c8bbdf6e8", "fields": {"nom_de_la_commune": "CHILLY LE VIGNOBLE", "libell_d_acheminement": "CHILLY LE VIGNOBLE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39146"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c01dd7759751aef12bc822763c568a7240e1687", "fields": {"nom_de_la_commune": "CHISSERIA", "libell_d_acheminement": "CHISSERIA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39148"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c15ba96b79663af5ea23788683d7da9e9a84db94", "fields": {"nom_de_la_commune": "CHISSEY SUR LOUE", "libell_d_acheminement": "CHISSEY SUR LOUE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39149"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce9e6ed092e0ba795d5a42421924025019341b10", "fields": {"nom_de_la_commune": "CHOISEY", "libell_d_acheminement": "CHOISEY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39150"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899b3dc03f629d437dc3552af1bc3ba4ac71be2e", "fields": {"nom_de_la_commune": "COLONNE", "libell_d_acheminement": "COLONNE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39159"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53241bf05f153ed90bd38931018cb91a41c233b8", "fields": {"nom_de_la_commune": "CONDAMINE", "libell_d_acheminement": "CONDAMINE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39162"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7805d70d572e355e4430ac1b4b29c408c327ec12", "fields": {"nom_de_la_commune": "CORNOD", "libell_d_acheminement": "CORNOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39166"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfdbc71444f9d1f5131d0b939294091ff4f55fb", "fields": {"nom_de_la_commune": "COURLAOUX", "libell_d_acheminement": "COURLAOUX", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39171"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd7e4ca98330ac3974fa19ea5d9fb4da918a0611", "fields": {"nom_de_la_commune": "COYRON", "libell_d_acheminement": "COYRON", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39175"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a62e72c6c6a0cada19eadc5ce48b767a3c13bc0", "fields": {"nom_de_la_commune": "CRAMANS", "libell_d_acheminement": "CRAMANS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39176"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7252b77e1a0194c3b84ab718e0cdf8ddd3da4f3d", "fields": {"code_postal": "39210", "code_commune_insee": "39177", "libell_d_acheminement": "HAUTEROCHE", "ligne_5": "GRANGES SUR BAUME", "nom_de_la_commune": "HAUTEROCHE", "coordonnees_gps": [46.742636609, 5.62862510157]}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d671b5982afa87af1d67fb4e4ba90ccbfffb5d0", "fields": {"nom_de_la_commune": "CROTENAY", "libell_d_acheminement": "CROTENAY", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39183"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c20ea7069680c718dacb8557046b18ed7ea5edb", "fields": {"nom_de_la_commune": "DESSIA", "libell_d_acheminement": "DESSIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39195"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7138c8725b8dd1c8c1ab73a45852c6c37f547328", "fields": {"nom_de_la_commune": "DIGNA", "libell_d_acheminement": "DIGNA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39197"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53bd4c162c28cb296c8a0fb237a9fb8c65002db", "fields": {"nom_de_la_commune": "DOMPIERRE SUR MONT", "libell_d_acheminement": "DOMPIERRE SUR MONT", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39200"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6572839356f2bdc6514153158846b4ec1f1867", "fields": {"nom_de_la_commune": "VAL D EPY", "libell_d_acheminement": "VAL D EPY", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39209"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f58624429a0c6314c759bc5494d5831f67bc11b", "fields": {"nom_de_la_commune": "FONCINE LE HAUT", "libell_d_acheminement": "FONCINE LE HAUT", "code_postal": "39460", "coordonnees_gps": [46.659334192, 6.06165972209], "code_commune_insee": "39228"}, "geometry": {"type": "Point", "coordinates": [6.06165972209, 46.659334192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5e28c8bb21c3a105bfb6258131ee08e51cbd1a", "fields": {"nom_de_la_commune": "FONTAINEBRUX", "libell_d_acheminement": "FONTAINEBRUX", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39229"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10225f8867d2db9cfda9c4466192a975ba0353f1", "fields": {"nom_de_la_commune": "LA FRASNEE", "libell_d_acheminement": "LA FRASNEE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39239"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5031e2a158af39c0b1998cc8c2970fdf3d90f11", "fields": {"nom_de_la_commune": "FREBUANS", "libell_d_acheminement": "FREBUANS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39241"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca5a1bcb4dd6f310961edd81a1fcf86e131a950", "fields": {"nom_de_la_commune": "GREDISANS", "libell_d_acheminement": "GREDISANS", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39262"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cc9eec675c2904e229a1cfa04946857ad01668", "fields": {"nom_de_la_commune": "IVORY", "libell_d_acheminement": "IVORY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39267"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4840bb9d231978f4daef98644133219da830f40", "fields": {"nom_de_la_commune": "IVREY", "libell_d_acheminement": "IVREY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39268"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f5f09e39d2a33191507d2e94b98e8225605cce", "fields": {"nom_de_la_commune": "JEURRE", "libell_d_acheminement": "JEURRE", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39269"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d114bf05ed92be1f2152357fc5a285b6e3c436", "fields": {"nom_de_la_commune": "LAJOUX", "libell_d_acheminement": "LAJOUX", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "39274"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dfa99f7722c9b713a2cde010369e880e9500d95", "fields": {"nom_de_la_commune": "LAJOUX", "libell_d_acheminement": "LAJOUX", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39274"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e18bce10cec246e3940ddbcbcbdddb87c47973b", "fields": {"nom_de_la_commune": "LAVANGEOT", "libell_d_acheminement": "LAVANGEOT", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39284"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6046a1582599ef963b752bdcf6125a83b1a24569", "fields": {"nom_de_la_commune": "LEMUY", "libell_d_acheminement": "LEMUY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39291"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3d4a3abcd94a61d7e66d02b4ade6d42a692ab2", "fields": {"nom_de_la_commune": "LONGCHAUMOIS", "libell_d_acheminement": "LONGCHAUMOIS", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39297"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd6b71dc2b7cceaaebd8a96badc9f8043d41d0f", "fields": {"nom_de_la_commune": "LA MARRE", "libell_d_acheminement": "LA MARRE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39317"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7d26df4e45ab8d06860d2c45df9c17080c9b9de", "fields": {"nom_de_la_commune": "MERONA", "libell_d_acheminement": "MERONA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39324"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b316b00fd93751effbdf0cc7c181361b1c43e79a", "fields": {"nom_de_la_commune": "MESNAY", "libell_d_acheminement": "MESNAY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39325"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca09bb589779028c69aa37871e37595a877a4657", "fields": {"nom_de_la_commune": "MOIRON", "libell_d_acheminement": "MOIRON", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39334"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6da2aa6a459256e8e670f9c8e5719c782bb2f2d", "fields": {"nom_de_la_commune": "MOISSEY", "libell_d_acheminement": "MOISSEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39335"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0425b4bb0b44e4bf0e062b61ff6ab997c37d4852", "fields": {"nom_de_la_commune": "MONTAGNA LE RECONDUIT", "libell_d_acheminement": "MONTAGNA LE RECONDUIT", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39346"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19a5bab477833e906a33bb985d613935b4f956e", "fields": {"nom_de_la_commune": "MONTFLEUR", "libell_d_acheminement": "MONTFLEUR", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39353"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ea85531d7e7cb7b29e2b3ce4cfd7a06cf1f149", "fields": {"nom_de_la_commune": "MONTMARLON", "libell_d_acheminement": "MONTMARLON", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39359"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99cfd8bdb7f97b8cb914ec9be7fddda786b31dd9", "fields": {"code_postal": "39400", "code_commune_insee": "39368", "libell_d_acheminement": "HAUTS DE BIENNE", "ligne_5": "LEZAT", "nom_de_la_commune": "HAUTS DE BIENNE", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fc1bed3a2e97caed6caf67d82903a740e7a736", "fields": {"nom_de_la_commune": "MOURNANS CHARBONNY", "libell_d_acheminement": "MOURNANS CHARBONNY", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39372"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc05f66884b0f3322b37a061aba8c43afba00948", "fields": {"nom_de_la_commune": "MOUTONNE", "libell_d_acheminement": "MOUTONNE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39375"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffdb2a55a7d1f290f2ef7de1f02e2215c219f18", "fields": {"nom_de_la_commune": "MUTIGNEY", "libell_d_acheminement": "MUTIGNEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39377"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66de77e8c3ae3dee9f51a026de00404ed864f0c8", "fields": {"nom_de_la_commune": "LES NANS", "libell_d_acheminement": "LES NANS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39381"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b8a112885b63de329c67373db155d862396bab", "fields": {"nom_de_la_commune": "LE PLESSIS DORIN", "libell_d_acheminement": "LE PLESSIS DORIN", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41177"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de32ffeef6197372cb541e03996c894af85d674d", "fields": {"nom_de_la_commune": "POUILLE", "libell_d_acheminement": "POUILLE", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41181"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d7f2ce979aecd1fad69a004cf48ea528e41a0a", "fields": {"nom_de_la_commune": "PRUNAY CASSEREAU", "libell_d_acheminement": "PRUNAY CASSEREAU", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41184"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ed3073baf2a5855fa1527bd458dd3bf6410b6a", "fields": {"nom_de_la_commune": "RENAY", "libell_d_acheminement": "RENAY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41187"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07b9efdd7493073b79c684c5bec5b7522654b4a", "fields": {"nom_de_la_commune": "ROCHES", "libell_d_acheminement": "ROCHES", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41191"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6020c0bb540a3ca9c828c61e96d33ae8da09c3", "fields": {"nom_de_la_commune": "RUAN SUR EGVONNE", "libell_d_acheminement": "RUAN SUR EGVONNE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41196"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4bcecf04b5b6ee4454650cd405ed8986933505e", "fields": {"nom_de_la_commune": "ST AMAND LONGPRE", "libell_d_acheminement": "ST AMAND LONGPRE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41199"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8905d39e766ba3231a1be03985d8b914d6a85872", "fields": {"nom_de_la_commune": "ARCHES", "libell_d_acheminement": "ARCHES", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15010"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95458710d1a472dbcee8d7c5cee3cd793f8d786e", "fields": {"nom_de_la_commune": "AURILLAC", "libell_d_acheminement": "AURILLAC", "code_postal": "15000", "coordonnees_gps": [44.9195092273, 2.3987245584], "code_commune_insee": "15014"}, "geometry": {"type": "Point", "coordinates": [2.3987245584, 44.9195092273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc3223383a0dab9483e4a43906c51a2557e88f5", "fields": {"nom_de_la_commune": "BARRIAC LES BOSQUETS", "libell_d_acheminement": "BARRIAC LES BOSQUETS", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15018"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e73643340fdc54043d61c88de34ccf761b718c", "fields": {"nom_de_la_commune": "BONNAC", "libell_d_acheminement": "BONNAC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15022"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c4495929e3cd59eea89868422a77a13000c9a6e", "fields": {"nom_de_la_commune": "BRAGEAC", "libell_d_acheminement": "BRAGEAC", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15024"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844a69212f08eedeada34c87b9010f39b6468005", "fields": {"nom_de_la_commune": "CHALIERS", "libell_d_acheminement": "CHALIERS", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15034"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e7c9ebc4a316b6966fd9290141c890c2ee5206", "fields": {"code_postal": "15270", "code_commune_insee": "15038", "libell_d_acheminement": "CHAMPS SUR TARENTAINE MARCHAL", "ligne_5": "MARCHAL", "nom_de_la_commune": "CHAMPS SUR TARENTAINE MARCHAL", "coordonnees_gps": [45.4132624224, 2.59541322331]}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706fd3b52ecd5b8660cb92e3ed202f5dbae41b18", "fields": {"nom_de_la_commune": "LA CHAPELLE D ALAGNON", "libell_d_acheminement": "LA CHAPELLE D ALAGNON", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15041"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d13b1d776188f3b2e7d8e1ffb1db684336676c", "fields": {"nom_de_la_commune": "CHAVAGNAC", "libell_d_acheminement": "CHAVAGNAC", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15047"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39070bb0345e0e648dbe7b845d6ad9d887f86c3f", "fields": {"nom_de_la_commune": "CHAZELLES", "libell_d_acheminement": "CHAZELLES", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15048"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "716d7f0fa20719256a27ba5e2e5593cb24cf4cf4", "fields": {"nom_de_la_commune": "ESCORAILLES", "libell_d_acheminement": "ESCORAILLES", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15064"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75aae414f76a4c9429f759bc62162a5465f14d8", "fields": {"nom_de_la_commune": "LE FALGOUX", "libell_d_acheminement": "LE FALGOUX", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15066"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5d12efeeb680bb93104a6354d2a571ff9efc31", "fields": {"nom_de_la_commune": "JABRUN", "libell_d_acheminement": "JABRUN", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15078"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d061261d5623d20993ac09e24017b0241ae9e33b", "fields": {"nom_de_la_commune": "LABESSERETTE", "libell_d_acheminement": "LABESSERETTE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15084"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f9ff11884f4e6dbd29abf80960893972865016", "fields": {"nom_de_la_commune": "LACAPELLE DEL FRAISSE", "libell_d_acheminement": "LACAPELLE DEL FRAISSE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15087"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ca3dc41ebda931cd30fa732649ba1fd694846c", "fields": {"nom_de_la_commune": "LACAPELLE VIESCAMP", "libell_d_acheminement": "LACAPELLE VIESCAMP", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15088"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204d388b4531dfdef8f34a4b68cda118ad2e0f15", "fields": {"nom_de_la_commune": "LASCELLE", "libell_d_acheminement": "LASCELLE MANDAILLES", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15096"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1296f1ebf92e068f275787717fbe11628aba67d0", "fields": {"nom_de_la_commune": "LASTIC", "libell_d_acheminement": "LASTIC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15097"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2e984b1998d2b74bef36fcdaca9a8b4c81c785", "fields": {"nom_de_la_commune": "LAVASTRIE", "libell_d_acheminement": "LAVASTRIE", "code_postal": "15260", "coordonnees_gps": [44.930379785, 2.97483208251], "code_commune_insee": "15099"}, "geometry": {"type": "Point", "coordinates": [2.97483208251, 44.930379785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b714e0843cfe47cee928fc898805fc35161f0b", "fields": {"nom_de_la_commune": "LEUCAMP", "libell_d_acheminement": "LEUCAMP", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15103"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb26ef2bf573ccbc82b3743f18a26f9c827e655", "fields": {"nom_de_la_commune": "LIEUTADES", "libell_d_acheminement": "LIEUTADES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15106"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22b8f1d7f8263299665d101637a5335eaaeea4b", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "BOURNONCLES", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64662a12a5c6f92732301a64380b8ba2e328052", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "ST MARC", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1610325edfc71bcde557e26a258c4eff3b8aea", "fields": {"nom_de_la_commune": "MADIC", "libell_d_acheminement": "MADIC", "code_postal": "15210", "coordonnees_gps": [45.3513333268, 2.45227003006], "code_commune_insee": "15111"}, "geometry": {"type": "Point", "coordinates": [2.45227003006, 45.3513333268]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2263ee545351aa3907aca1265285da3d672052b8", "fields": {"nom_de_la_commune": "MARCHASTEL", "libell_d_acheminement": "MARCHASTEL", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15116"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4050763b77aab136aa35758ed966696a7909dfdb", "fields": {"nom_de_la_commune": "MAURIAC", "libell_d_acheminement": "MAURIAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15120"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e166fe5391a80b2b8f64881710626d48bf93af44", "fields": {"nom_de_la_commune": "MENET", "libell_d_acheminement": "MENET", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15124"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c881d5b7659915f18ec6166a5386820d59c707c", "fields": {"nom_de_la_commune": "LA MONSELIE", "libell_d_acheminement": "LA MONSELIE", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15128"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc7f79a71106a63d5db1507d6cdebb65f504e4f", "fields": {"nom_de_la_commune": "MONTGRELEIX", "libell_d_acheminement": "MONTGRELEIX", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15132"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b781b96dfcf4fa16aa6ebfe15cea6866c53cd4", "fields": {"nom_de_la_commune": "MONTMURAT", "libell_d_acheminement": "MONTMURAT", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15133"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9fc0b7fa449a7d9100c2c30d8867e35e5696b29", "fields": {"nom_de_la_commune": "MONTVERT", "libell_d_acheminement": "MONTVERT", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15135"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4128dfca3e51aed65e6d3c129e3c3cf552d61321", "fields": {"nom_de_la_commune": "PIERREFORT", "libell_d_acheminement": "PIERREFORT", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15152"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0755681a55a7297ebc0ee74b93bcbf41ae69a0aa", "fields": {"nom_de_la_commune": "PLEAUX", "libell_d_acheminement": "PLEAUX", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15153"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576c1a8dc5cb4e6fa2d2556718a58b3a8e24b619", "fields": {"code_postal": "15700", "code_commune_insee": "15153", "libell_d_acheminement": "PLEAUX", "ligne_5": "LOUPIAC", "nom_de_la_commune": "PLEAUX", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5dd549e750acd68ba8919a8db5943107c73bfd", "fields": {"nom_de_la_commune": "REZENTIERES", "libell_d_acheminement": "REZENTIERES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15161"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8684f7432e583539eee6eab562a75e3c4e40dd", "fields": {"nom_de_la_commune": "ROANNES ST MARY", "libell_d_acheminement": "ROANNES ST MARY", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15163"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d72bd027b157b9d7704fc85a5cfa1f959158a1d", "fields": {"nom_de_la_commune": "ROFFIAC", "libell_d_acheminement": "ROFFIAC", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15164"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3e6a9b1ae2597a39f216378a907597b846f255", "fields": {"nom_de_la_commune": "ROUMEGOUX", "libell_d_acheminement": "ROUMEGOUX", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15166"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b5d3eaac486b79e5be79ff8fdb715868af3bb6", "fields": {"nom_de_la_commune": "ROUZIERS", "libell_d_acheminement": "ROUZIERS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15167"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0304b7d4641da0fb11f7eaa84e3f97f8b1d19d03", "fields": {"nom_de_la_commune": "ST BONNET DE SALERS", "libell_d_acheminement": "ST BONNET DE SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15174"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd97e60a2a4144c62f1e8d823714af318ed00b9b", "fields": {"nom_de_la_commune": "ST CIRGUES DE MALBERT", "libell_d_acheminement": "ST CIRGUES DE MALBERT", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15179"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af983a660316d863cdf759d40e04ea9820286c9", "fields": {"nom_de_la_commune": "ST CONSTANT FOURNOULES", "libell_d_acheminement": "ST CONSTANT FOURNOULES", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15181"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e746f7920777e49ebc03c99bfcdec749cb8ee8", "fields": {"nom_de_la_commune": "ST ETIENNE CANTALES", "libell_d_acheminement": "ST ETIENNE CANTALES", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15182"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1557a255d8292c9327dc2545ed693c48d9087950", "fields": {"nom_de_la_commune": "ST JACQUES DES BLATS", "libell_d_acheminement": "ST JACQUES DES BLATS", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15192"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1d3e7330ab8242b1019cd7a93d73d73dd0d5de", "fields": {"nom_de_la_commune": "ST JULIEN DE TOURSAC", "libell_d_acheminement": "ST JULIEN DE TOURSAC", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15194"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c725d051726cb9125230896ab5ddc2eebe238f5", "fields": {"nom_de_la_commune": "ST MAMET LA SALVETAT", "libell_d_acheminement": "ST MAMET LA SALVETAT", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15196"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207d1c9b6e7f5c379cc4ecb545d7d5d6f4c4c2b7", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15199"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1363a00f0da394e05bf052411a120044ad9f204f", "fields": {"code_postal": "15140", "code_commune_insee": "15202", "libell_d_acheminement": "ST MARTIN VALMEROUX", "ligne_5": "ST REMY DE SALERS", "nom_de_la_commune": "ST MARTIN VALMEROUX", "coordonnees_gps": [45.1182699241, 2.47506456811]}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6f9c4994948e7e133828143f7f6b963ba3982f", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "15350", "coordonnees_gps": [45.360785771, 2.38882162229], "code_commune_insee": "15206"}, "geometry": {"type": "Point", "coordinates": [2.38882162229, 45.360785771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac33a0e4db170065d10026da67c621e10ba08da", "fields": {"nom_de_la_commune": "ST PONCY", "libell_d_acheminement": "ST PONCY", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15207"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1015a5d9c8f7bf4ce7124f5bbc87845d6486ac", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15217"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb84ae93a3400d82b2f9fde0060abd2160039547", "fields": {"nom_de_la_commune": "TALIZAT", "libell_d_acheminement": "TALIZAT", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15231"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6301d498b126010ac9138ddcb8163d71deb8e61", "fields": {"nom_de_la_commune": "TEISSIERES DE CORNET", "libell_d_acheminement": "TEISSIERES DE CORNET", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15233"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8fd8e73fcf546e022e8b7c6b576d947596de7c", "fields": {"nom_de_la_commune": "THIEZAC", "libell_d_acheminement": "THIEZAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15236"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f58abcfa5e8040c87eb1f95de37ce0d50967b2b", "fields": {"nom_de_la_commune": "TOURNEMIRE", "libell_d_acheminement": "TOURNEMIRE", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15238"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dde7f23b6c6feb3ea98d054951019cc8281f110", "fields": {"nom_de_la_commune": "TREMOUILLE", "libell_d_acheminement": "TREMOUILLE", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15240"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a181d4a286bf08ed210ecfdfe592c61583802bcb", "fields": {"nom_de_la_commune": "TRIZAC", "libell_d_acheminement": "TRIZAC", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15243"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2764a0a0323a2c43d29774ff55caf7ffc8b74ba1", "fields": {"nom_de_la_commune": "USSEL", "libell_d_acheminement": "USSEL", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15244"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb751e64f6fc27bd435990927e7fe6ac0c92d002", "fields": {"nom_de_la_commune": "LE VAULMIER", "libell_d_acheminement": "LE VAULMIER", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15249"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6858f5811fd28a7a1eb38c797067c0429551b9d", "fields": {"nom_de_la_commune": "VIC SUR CERE", "libell_d_acheminement": "VIC SUR CERE", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15258"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15d50045819dba4ffc9a5b704f41880114ffee8", "fields": {"nom_de_la_commune": "VIRARGUES", "libell_d_acheminement": "VIRARGUES", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15263"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684c1d94ca12f6833eb237ea9223fd3470425fa4", "fields": {"nom_de_la_commune": "VITRAC", "libell_d_acheminement": "VITRAC", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15264"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d92cd8d9eb1a43927d01b6fe22d4945880f1cd", "fields": {"nom_de_la_commune": "LE ROUGET PERS", "libell_d_acheminement": "LE ROUGET PERS", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15268"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9911365025d2a6d8b3b124c70b603321e2fb81c", "fields": {"nom_de_la_commune": "ANSAC SUR VIENNE", "libell_d_acheminement": "ANSAC SUR VIENNE", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16016"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1b430131113f079beb26136046287bd2cd860a", "fields": {"code_postal": "16300", "code_commune_insee": "16028", "libell_d_acheminement": "BARBEZIEUX ST HILAIRE", "ligne_5": "ST HILAIRE", "nom_de_la_commune": "BARBEZIEUX ST HILAIRE", "coordonnees_gps": [45.4825627066, -0.162479147759]}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f903f5bfdd5960d978bec7c56132e4a490bb88c9", "fields": {"nom_de_la_commune": "BARRET", "libell_d_acheminement": "BARRET", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16030"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa04b9eb14f8427f1ca5e3ed64f7c10e7882d02b", "fields": {"nom_de_la_commune": "BARRO", "libell_d_acheminement": "BARRO", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16031"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d9dda537efde59409013b17deba8bb61a8746a", "fields": {"nom_de_la_commune": "BAYERS", "libell_d_acheminement": "BAYERS", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16033"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b38a813d455f743d52a49dba4b0c07c2183cc61", "fields": {"nom_de_la_commune": "BAZAC", "libell_d_acheminement": "BAZAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16034"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4a40a8f13cf87896453f0602bc139cd86d36c6", "fields": {"nom_de_la_commune": "BELLON", "libell_d_acheminement": "BELLON", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16037"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c3d56315d706ec5247642a882c409895fa344a", "fields": {"nom_de_la_commune": "BENEST", "libell_d_acheminement": "BENEST", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16038"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2a37f2e2368c1a50ec3965db959a6693c2ffe3", "fields": {"nom_de_la_commune": "BONNES", "libell_d_acheminement": "BONNES", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16049"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83556c280007479cbc703b5ccb3d650a4504f9c", "fields": {"nom_de_la_commune": "BOURG CHARENTE", "libell_d_acheminement": "BOURG CHARENTE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16056"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d95159aca01ed3af1334be1866240bd6c84a77", "fields": {"nom_de_la_commune": "BOUTEVILLE", "libell_d_acheminement": "BOUTEVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16057"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3c5a884e52217d87cfc2d6d01b814a41f44d80", "fields": {"nom_de_la_commune": "BOUTIERS ST TROJAN", "libell_d_acheminement": "BOUTIERS ST TROJAN", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16058"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fb7b18eac0372afe835c88ac03e65152b14aa4", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "16590", "coordonnees_gps": [45.7342044858, 0.26604076185], "code_commune_insee": "16061"}, "geometry": {"type": "Point", "coordinates": [0.26604076185, 45.7342044858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88c9e37e5a2a35ef7fbd515774704b82645f9ae7", "fields": {"nom_de_la_commune": "BRIE SOUS CHALAIS", "libell_d_acheminement": "BRIE SOUS CHALAIS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16063"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3cb20d5950cf0ed939ff0584617fed66af555c0", "fields": {"nom_de_la_commune": "BROSSAC", "libell_d_acheminement": "BROSSAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16066"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac8319c81aee498b46ae9765481b4a904cedb8b", "fields": {"nom_de_la_commune": "CHABANAIS", "libell_d_acheminement": "CHABANAIS", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16070"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4474803ef72bc2cf8e261f2848a58a3cac22a645", "fields": {"code_postal": "16320", "code_commune_insee": "16082", "libell_d_acheminement": "BOISNE LA TUDE", "ligne_5": "JUILLAGUET", "nom_de_la_commune": "BOISNE LA TUDE", "coordonnees_gps": [45.4895091736, 0.297130161872]}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a604b873f063adcbddbf718eed488c4e713b5d", "fields": {"nom_de_la_commune": "CHASSENON", "libell_d_acheminement": "CHASSENON", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16086"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d615599186a4750ecf0ce864a27cdbab9ef58eaa", "fields": {"nom_de_la_commune": "CHATEAUBERNARD", "libell_d_acheminement": "CHATEAUBERNARD", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16089"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37852f25c221da70db819d30f9c464abae89a7f6", "fields": {"nom_de_la_commune": "CHENON", "libell_d_acheminement": "CHENON", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16095"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da52d4b8477f28ab8d9c6d5e8e6e1f3e3269423", "fields": {"nom_de_la_commune": "COGNAC", "libell_d_acheminement": "COGNAC", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16102"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5731fdc0437e91c101a9813b5a8313035f0cd0", "fields": {"nom_de_la_commune": "COMBIERS", "libell_d_acheminement": "COMBIERS", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16103"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a58b02f348a21f6cb2cddf64a4a6f5145ec3a64", "fields": {"nom_de_la_commune": "CONFOLENS", "libell_d_acheminement": "CONFOLENS", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16106"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e932012cf4233ffe33debed01d97bd6ab1d7b317", "fields": {"nom_de_la_commune": "COURCOME", "libell_d_acheminement": "COURCOME", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16110"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781a966fae39880337bd98615af578802ee4641c", "fields": {"nom_de_la_commune": "LA COURONNE", "libell_d_acheminement": "LA COURONNE", "code_postal": "16400", "coordonnees_gps": [45.6075102934, 0.129005095086], "code_commune_insee": "16113"}, "geometry": {"type": "Point", "coordinates": [0.129005095086, 45.6075102934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b851678c2c87c44d9717773129c95688feae6c", "fields": {"nom_de_la_commune": "CRITEUIL LA MAGDELEINE", "libell_d_acheminement": "CRITEUIL LA MAGDELEINE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16116"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9198d3b79ea55795a0edd478a3e64c0fc10986be", "fields": {"nom_de_la_commune": "EPENEDE", "libell_d_acheminement": "EPENEDE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16128"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c020bac77970e6fba3a117bc9563ed8e2cb4ca87", "fields": {"nom_de_la_commune": "ERAVILLE", "libell_d_acheminement": "ERAVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16129"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ef77825989f3c39f968cc6f6e83fe37e08f378f", "fields": {"nom_de_la_commune": "LES ESSARDS", "libell_d_acheminement": "LES ESSARDS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16130"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936ead6c180707e82e27daef76146cf9a844491d", "fields": {"nom_de_la_commune": "EXIDEUIL", "libell_d_acheminement": "EXIDEUIL", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16134"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157e10e6b4a0c1bd58bd96bec2126387dcb9b58f", "fields": {"nom_de_la_commune": "LONGVIC", "libell_d_acheminement": "LONGVIC", "code_postal": "21600", "coordonnees_gps": [47.2634836316, 5.06260029514], "code_commune_insee": "21355"}, "geometry": {"type": "Point", "coordinates": [5.06260029514, 47.2634836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a9debb7ee2c1e8e20f8181abce6e743a9ad0dd", "fields": {"nom_de_la_commune": "LOSNE", "libell_d_acheminement": "LOSNE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21356"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c05ea3aa893e32cf784387dc11d2f7f28d0e780", "fields": {"nom_de_la_commune": "MAGNY LA VILLE", "libell_d_acheminement": "MAGNY LA VILLE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21365"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d43969cd52faacf6ad6b3ed6be5c44b0c59691", "fields": {"nom_de_la_commune": "MALIGNY", "libell_d_acheminement": "MALIGNY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21374"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8423eee2b64c8fde5a72ac0324cb0557f215d5", "fields": {"nom_de_la_commune": "MANLAY", "libell_d_acheminement": "MANLAY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21375"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309db9383a8f8b09b5f75d24155f5da1878c8605", "fields": {"nom_de_la_commune": "MARANDEUIL", "libell_d_acheminement": "MARANDEUIL", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21376"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c54e4befb5480ba5d5125a03fff388486975ef", "fields": {"nom_de_la_commune": "MARCILLY SUR TILLE", "libell_d_acheminement": "MARCILLY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21383"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1beaa191cf610531be5d40f9195950c98fd74e6", "fields": {"nom_de_la_commune": "MAREY LES FUSSEY", "libell_d_acheminement": "MAREY LES FUSSEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21384"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1758c037a704ab21877bfa71c787db42d16cb63e", "fields": {"nom_de_la_commune": "MAREY SUR TILLE", "libell_d_acheminement": "MAREY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21385"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464d4958bddc8c9b77ee8f4886f535a74cd356a9", "fields": {"nom_de_la_commune": "MARIGNY LE CAHOUET", "libell_d_acheminement": "MARIGNY LE CAHOUET", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21386"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852012781a1647c8ac340a61f72d2832c3363c7e", "fields": {"nom_de_la_commune": "MAVILLY MANDELOT", "libell_d_acheminement": "MAVILLY MANDELOT", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21397"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aacebf239c82c6eb2fba8596cda2b94df6dd16f6", "fields": {"nom_de_la_commune": "MENESSAIRE", "libell_d_acheminement": "MENESSAIRE", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21403"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2f6ff1ed0515961000858fc69eaeab4f17a240", "fields": {"nom_de_la_commune": "MESMONT", "libell_d_acheminement": "MESMONT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21406"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ed7695bb031904fa81b64bd465764867a7287a", "fields": {"nom_de_la_commune": "MESSIGNY ET VANTOUX", "libell_d_acheminement": "MESSIGNY ET VANTOUX", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21408"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1c7874dcfeb07705f2f6735be4f6b18ae21f4ae", "fields": {"nom_de_la_commune": "MEURSAULT", "libell_d_acheminement": "MEURSAULT", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21412"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d6dae2e315edd99aa1505765ae43beeb77de41", "fields": {"nom_de_la_commune": "MOLINOT", "libell_d_acheminement": "MOLINOT", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21420"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717909de37c5c4174594e27360041881ff74135c", "fields": {"nom_de_la_commune": "MONTHELIE", "libell_d_acheminement": "MONTHELIE", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21428"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aed8beecf4de2f84b2101bf528e9ca3e69a1d19", "fields": {"nom_de_la_commune": "MONTIGNY SUR ARMANCON", "libell_d_acheminement": "MONTIGNY SUR ARMANCON", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21431"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dedca9d34a7a73134ca35771cb9667994cff732", "fields": {"nom_de_la_commune": "MONTIGNY SUR AUBE", "libell_d_acheminement": "MONTIGNY SUR AUBE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21432"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfc46e3516028fa61a3fe658f97b04d585052da", "fields": {"nom_de_la_commune": "MONT ST JEAN", "libell_d_acheminement": "MONT ST JEAN", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21441"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdfb47bb6af487073564150f099377e031dc1099", "fields": {"nom_de_la_commune": "MOUTIERS ST JEAN", "libell_d_acheminement": "MOUTIERS ST JEAN", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21446"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2099842e99156142bb8daf971e20421ce5b22153", "fields": {"nom_de_la_commune": "NAN SOUS THIL", "libell_d_acheminement": "NAN SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21449"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a16d2018c8d98014b168e4e0f39e0c134e3605", "fields": {"nom_de_la_commune": "NANTOUX", "libell_d_acheminement": "NANTOUX", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21450"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7191d30df4e252cb7631dd236b12903977be9bd", "fields": {"nom_de_la_commune": "NEUILLY LES DIJON", "libell_d_acheminement": "NEUILLY LES DIJON", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21452"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d9437d31e39c494bf9d62197d05696528466ce", "fields": {"nom_de_la_commune": "NOIDAN", "libell_d_acheminement": "NOIDAN", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21457"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5ed58461c528d93823729268b257ac0177f9e4", "fields": {"nom_de_la_commune": "OIGNY", "libell_d_acheminement": "OIGNY", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21466"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f28d096a0303e4f756d281b11cd60525e8457c", "fields": {"nom_de_la_commune": "OISILLY", "libell_d_acheminement": "OISILLY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21467"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d90ddda716ed02d811674f024a100813c5564b4f", "fields": {"nom_de_la_commune": "ORIGNY", "libell_d_acheminement": "ORIGNY", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21470"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5eb0d3a5b9555dc303ce6a40693ab97d68984d9", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21472"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66660107640adcf0275497f36679fb64e96c59c0", "fields": {"nom_de_la_commune": "OUGES", "libell_d_acheminement": "OUGES", "code_postal": "21600", "coordonnees_gps": [47.2634836316, 5.06260029514], "code_commune_insee": "21473"}, "geometry": {"type": "Point", "coordinates": [5.06260029514, 47.2634836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c29e8315203ffe4d65544b311f53d513c219960", "fields": {"nom_de_la_commune": "PAGNY LA VILLE", "libell_d_acheminement": "PAGNY LA VILLE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21474"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18e4ec335baeff15daf8e3c4695891b90151302", "fields": {"nom_de_la_commune": "PAINBLANC", "libell_d_acheminement": "PAINBLANC", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21476"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ad9d35ce1c11981946d72151bebddc187a14df", "fields": {"nom_de_la_commune": "POINCON LES LARREY", "libell_d_acheminement": "POINCON LES LARREY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21488"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a77516f3231482e9905ab6565024262768be96", "fields": {"nom_de_la_commune": "PONCEY LES ATHEE", "libell_d_acheminement": "PONCEY LES ATHEE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21493"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca95c9c3776f87b5ec11f89fc40612901524161d", "fields": {"nom_de_la_commune": "PONCEY SUR L IGNON", "libell_d_acheminement": "PONCEY SUR L IGNON", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21494"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6184e1727bd881a915406e6420b5f5f3114495", "fields": {"nom_de_la_commune": "PONT", "libell_d_acheminement": "PONT", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21495"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ecc36a3f47de0f4af446b34ce110437a6a3d71", "fields": {"nom_de_la_commune": "POUILLY SUR VINGEANNE", "libell_d_acheminement": "POUILLY SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21503"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7fb85d2cf60a75ceb1371a4e547adc722f4b71", "fields": {"code_postal": "21700", "code_commune_insee": "21506", "libell_d_acheminement": "PREMEAUX PRISSEY", "ligne_5": "PRISSEY", "nom_de_la_commune": "PREMEAUX PRISSEY", "coordonnees_gps": [47.1116693022, 4.97977918311]}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f5758b1439a980c056ab39ba011a7b315a201d", "fields": {"nom_de_la_commune": "RECEY SUR OURCE", "libell_d_acheminement": "RECEY SUR OURCE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21519"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680a88cb89658e611f5cd41d335ce669f3c5a554", "fields": {"nom_de_la_commune": "REMILLY SUR TILLE", "libell_d_acheminement": "REMILLY SUR TILLE", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21521"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790ddc0d11f1423d8fcddccd9c954ff73371e233", "fields": {"nom_de_la_commune": "RENEVE", "libell_d_acheminement": "RENEVE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21522"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54f0747f88c17ed90218e5395c95d92fb6772ff", "fields": {"nom_de_la_commune": "REULLE VERGY", "libell_d_acheminement": "REULLE VERGY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21523"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43be08b96637ca71afd9eeb730ccc69077a05e7", "fields": {"nom_de_la_commune": "ROCHEFORT SUR BREVON", "libell_d_acheminement": "ROCHEFORT SUR BREVON", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21526"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5414f3f1dc0c4f7196a4b950c14dd8b8741af5a", "fields": {"nom_de_la_commune": "ROUVRES SOUS MEILLY", "libell_d_acheminement": "ROUVRES SOUS MEILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21533"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145e7fc089fee39c891ebee6abb6d3be581cb5fc", "fields": {"nom_de_la_commune": "RUFFEY LES BEAUNE", "libell_d_acheminement": "RUFFEY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21534"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8cd2e844e9acda270c2d3e640702b5e3f0ca656", "fields": {"nom_de_la_commune": "ST ANDEUX", "libell_d_acheminement": "ST ANDEUX", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21538"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cc59b3c2609fbb2825e2e28872b326a6197601", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21541"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f12160eb3ba9b28eba61e214e299ccc2a992e5c", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21546"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda0e9dd32d8faf7986fcaac4c8b4914a9c67665", "fields": {"nom_de_la_commune": "ST GERMAIN LE ROCHEUX", "libell_d_acheminement": "ST GERMAIN LE ROCHEUX", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21549"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c3de92bafb19ba238ad0929d3b3b59244c7846", "fields": {"nom_de_la_commune": "ST GERMAIN LES SENAILLY", "libell_d_acheminement": "ST GERMAIN LES SENAILLY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21550"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72723d6c3522b8c7da85053e04d2ff0167237933", "fields": {"nom_de_la_commune": "STE MARIE SUR OUCHE", "libell_d_acheminement": "STE MARIE SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21559"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb84e2d76d0d46733b47a307d943756f46121cb", "fields": {"nom_de_la_commune": "ST SEINE L ABBAYE", "libell_d_acheminement": "ST SEINE L ABBAYE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21573"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eed522dd321a770f1dafe6a76600756566f002f", "fields": {"nom_de_la_commune": "ST SEINE SUR VINGEANNE", "libell_d_acheminement": "ST SEINE SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21574"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78f2de8686d732a73feead9da963fc624d31306", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SUR SAONE", "libell_d_acheminement": "ST SYMPHORIEN SUR SAONE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21575"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f95dca87b01371041ffd98709e601494a60be3", "fields": {"nom_de_la_commune": "ST USAGE", "libell_d_acheminement": "ST USAGE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21577"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6101746329a0d3f0844b15668d7e562b5ff7b593", "fields": {"nom_de_la_commune": "SANTENAY", "libell_d_acheminement": "SANTENAY", "code_postal": "21590", "coordonnees_gps": [46.9172633393, 4.69386113985], "code_commune_insee": "21582"}, "geometry": {"type": "Point", "coordinates": [4.69386113985, 46.9172633393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb1910ffd2ecf52059e725c5a02c7d8988805a3", "fields": {"nom_de_la_commune": "SAULIEU", "libell_d_acheminement": "SAULIEU", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21584"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6b93e01b86a6a5a5728211d87dee1ebf5d64dd", "fields": {"nom_de_la_commune": "SAULON LA RUE", "libell_d_acheminement": "SAULON LA RUE", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21586"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b42db2590e7edaa0c16786b177d67605f6a2906", "fields": {"nom_de_la_commune": "SAVIGNY SOUS MALAIN", "libell_d_acheminement": "SAVIGNY SOUS MALAIN", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21592"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8854034f925e3d2988ab5d6ec5cfa77f44db143b", "fields": {"nom_de_la_commune": "SAVOLLES", "libell_d_acheminement": "SAVOLLES", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21595"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a305dc7f509730a605afb345ad6471b27e9660", "fields": {"nom_de_la_commune": "SEMAREY", "libell_d_acheminement": "SEMAREY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21600"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4be33875745c0c17ee48de941692c3b154a0b1e", "fields": {"nom_de_la_commune": "SEMOND", "libell_d_acheminement": "SEMOND", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21602"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efa5762eb4c775764c3f1a5dd3987fede840135", "fields": {"nom_de_la_commune": "SINCEY LES ROUVRAY", "libell_d_acheminement": "SINCEY LES ROUVRAY", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21608"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a1bd48e823ec1954dbf52415828b81e4b54c3", "fields": {"nom_de_la_commune": "TAILLY", "libell_d_acheminement": "TAILLY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21616"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbe3d81ebe504908f6d613ca37f349d3473b08f", "fields": {"nom_de_la_commune": "TALMAY", "libell_d_acheminement": "TALMAY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21618"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a2f56caad4821670153213307ba96629b09d41", "fields": {"nom_de_la_commune": "TARSUL", "libell_d_acheminement": "TARSUL", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21620"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1b34d8451a7f59be14df70685033ac9ed8763a", "fields": {"nom_de_la_commune": "THOIRES", "libell_d_acheminement": "THOIRES", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21628"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0c756b074b0e3efa2ffec60c4cc0c268da5f4f", "fields": {"nom_de_la_commune": "THOISY LA BERCHERE", "libell_d_acheminement": "THOISY LA BERCHERE", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21629"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2794e98acb9b036e4bd6672902c85ab694171800", "fields": {"nom_de_la_commune": "THOMIREY", "libell_d_acheminement": "THOMIREY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21631"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6637a2711e97599b069427d2775938f6c4e2c4c1", "fields": {"nom_de_la_commune": "THOREY EN PLAINE", "libell_d_acheminement": "THOREY EN PLAINE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21632"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a5b2b4136bc91dba36f8c424082568e2f65393", "fields": {"nom_de_la_commune": "THOREY SOUS CHARNY", "libell_d_acheminement": "THOREY SOUS CHARNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21633"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d025d2b7634daaf7d73a9bb3440d6ab08b1ed78f", "fields": {"nom_de_la_commune": "THOREY SUR OUCHE", "libell_d_acheminement": "THOREY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21634"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b244607cbabb11591a3f36b451f1e3a83d242e9", "fields": {"nom_de_la_commune": "TICHEY", "libell_d_acheminement": "TICHEY", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21637"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb27d74fd84aa5abcd79b9f0ca4894ce28648761", "fields": {"nom_de_la_commune": "TOUTRY", "libell_d_acheminement": "TOUTRY", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21642"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb42b0a35c29b667e4f55809b06d8d8ab621530", "fields": {"nom_de_la_commune": "TROUHAUT", "libell_d_acheminement": "TROUHAUT", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21646"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05587abf74a092b18c9544b543dc373d1869fb03", "fields": {"nom_de_la_commune": "VAL SUZON", "libell_d_acheminement": "VAL SUZON", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21651"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe1a27a0156ae38ec7abc8153c85d6632dcc49c", "fields": {"nom_de_la_commune": "VANVEY", "libell_d_acheminement": "VANVEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21655"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4904e19b34d6883c138beead508abefbcde1cdf", "fields": {"nom_de_la_commune": "VAUCHIGNON", "libell_d_acheminement": "VAUCHIGNON", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21658"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91310a110da5e6fccfcf9dd06582514b11b5e761", "fields": {"nom_de_la_commune": "VEILLY", "libell_d_acheminement": "VEILLY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21660"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89573a748ef00b574c784e3c02cfc826aa10b2", "fields": {"nom_de_la_commune": "VELOGNY", "libell_d_acheminement": "VELOGNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21662"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5863495e70dca6bf42d6772fc1a2971b2e390a1c", "fields": {"nom_de_la_commune": "VERNOIS LES VESVRES", "libell_d_acheminement": "VERNOIS LES VESVRES", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21665"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45a1aa3a96a13e284ade18a9146a8a8d6853e7f", "fields": {"nom_de_la_commune": "VEUVEY SUR OUCHE", "libell_d_acheminement": "VEUVEY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21673"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cb439ed8611b5aae3c01338d205b4e3d7d8b02", "fields": {"nom_de_la_commune": "VIEVIGNE", "libell_d_acheminement": "VIEVIGNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21682"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79be0714c512bf6c547013792072c6ccfd4f92ef", "fields": {"nom_de_la_commune": "VIEVY", "libell_d_acheminement": "VIEVY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21683"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ea19e79ee2ab80a85c4601b82001354ff86fdd", "fields": {"nom_de_la_commune": "VIGNOLES", "libell_d_acheminement": "VIGNOLES", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21684"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7800f95dc7fdb0914d2a946994fe0ae2bd187b74", "fields": {"nom_de_la_commune": "VILLARS ET VILLENOTTE", "libell_d_acheminement": "VILLARS ET VILLENOTTE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21689"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962c119aa2f1020033c137e640ef9c331ae1731d", "fields": {"nom_de_la_commune": "VILLECOMTE", "libell_d_acheminement": "VILLECOMTE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21692"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bdb38bf669c51e633f44e2b2505740677aaf1b5", "fields": {"nom_de_la_commune": "VILLIERS LE DUC", "libell_d_acheminement": "VILLIERS LE DUC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21704"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa76ebeb13bf9ba07f3d5d474ae4f31107a6fa6c", "fields": {"nom_de_la_commune": "VILLY EN AUXOIS", "libell_d_acheminement": "VILLY EN AUXOIS", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21707"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731342f3e6171b83570b67bd9c7a6a172f652a60", "fields": {"nom_de_la_commune": "VITTEAUX", "libell_d_acheminement": "VITTEAUX", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21710"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c8921813835cb5b444757ae0bb3880d75aac51", "fields": {"nom_de_la_commune": "VOLNAY", "libell_d_acheminement": "VOLNAY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21712"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c880013008a4f8a79842d92b6fc8963c6b7406e", "fields": {"nom_de_la_commune": "VOUDENAY", "libell_d_acheminement": "VOUDENAY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21715"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a1a49b1e8b401d620b886942c1afbefe28ccaf", "fields": {"nom_de_la_commune": "VOULAINES LES TEMPLIERS", "libell_d_acheminement": "VOULAINES LES TEMPLIERS", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21717"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182ac0bbfa15f4b1c741977920f5c480aa7a8b2e", "fields": {"code_postal": "22810", "code_commune_insee": "22005", "libell_d_acheminement": "BELLE ISLE EN TERRE", "ligne_5": "LOCMARIA", "nom_de_la_commune": "BELLE ISLE EN TERRE", "coordonnees_gps": [48.5216835739, -3.40784365182]}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa5d8133c49f40392e4c5ed915ec07a7b1d5ecb", "fields": {"nom_de_la_commune": "BOURBRIAC", "libell_d_acheminement": "BOURBRIAC", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22013"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc5cd456089708ab153bb24030abdd68fbbcd8c", "fields": {"nom_de_la_commune": "ILE DE BREHAT", "libell_d_acheminement": "ILE DE BREHAT", "code_postal": "22870", "coordonnees_gps": [48.8509128879, -3.00148933967], "code_commune_insee": "22016"}, "geometry": {"type": "Point", "coordinates": [-3.00148933967, 48.8509128879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5b3daba26a30330dd3738a631fccac39941c66", "fields": {"nom_de_la_commune": "BRELIDY", "libell_d_acheminement": "BRELIDY", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22018"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042117a4e3ced5aaa9f306589eb00b5fb0383f4a", "fields": {"code_postal": "22300", "code_commune_insee": "22030", "libell_d_acheminement": "CAOUENNEC LANVEZEAC", "ligne_5": "LANVEZEAC", "nom_de_la_commune": "CAOUENNEC LANVEZEAC", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549bb410f5be09408dc028e2f255fa6419d26732", "fields": {"nom_de_la_commune": "CARNOET", "libell_d_acheminement": "CARNOET", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22031"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100b9cc2560a1925a2a2037f172dff5901598a14", "fields": {"nom_de_la_commune": "COATASCORN", "libell_d_acheminement": "COATASCORN", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22041"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a9324611413d1baea62c761ce66b13c7cbbc3c", "fields": {"nom_de_la_commune": "BOURNAND", "libell_d_acheminement": "BOURNAND", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86036"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658777acaa0d5c151ebf817245856d760e88cbb8", "fields": {"nom_de_la_commune": "LA BUSSIERE", "libell_d_acheminement": "LA BUSSIERE", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86040"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f603a1d2f9b569a6b3e909228c540feacbc63710", "fields": {"nom_de_la_commune": "BUXEROLLES", "libell_d_acheminement": "BUXEROLLES", "code_postal": "86180", "coordonnees_gps": [46.6051296937, 0.369452058547], "code_commune_insee": "86041"}, "geometry": {"type": "Point", "coordinates": [0.369452058547, 46.6051296937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bce545bd8b1832391fe18d494974df56872111", "fields": {"nom_de_la_commune": "CEAUX EN COUHE", "libell_d_acheminement": "CEAUX EN COUHE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86043"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6acc5f88633d5a3d58ac4c6e0a3455fe0d76b78", "fields": {"nom_de_la_commune": "CHAPELLE VIVIERS", "libell_d_acheminement": "CHAPELLE VIVIERS", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86059"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48769a3a4d282f84d5567831a2a858fd175674d4", "fields": {"nom_de_la_commune": "CHATAIN", "libell_d_acheminement": "CHATAIN", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86063"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb6eabcb96066557b3b5ba1b492520fea934046", "fields": {"nom_de_la_commune": "CHATEAU GARNIER", "libell_d_acheminement": "CHATEAU GARNIER", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86064"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69eccdb0febaae6db3565a58f4e4b89e0fe084a", "fields": {"nom_de_la_commune": "CHAUVIGNY", "libell_d_acheminement": "CHAUVIGNY", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86070"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312cb5e90feb409d4a300fcd43df8027a1cfac15", "fields": {"nom_de_la_commune": "CHIRE EN MONTREUIL", "libell_d_acheminement": "CHIRE EN MONTREUIL", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86074"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3e02a31fe6adecd24d58336d5296fe1e895517", "fields": {"nom_de_la_commune": "CIVAUX", "libell_d_acheminement": "CIVAUX", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86077"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24fa73463f27eed15302ae348e406ecc9849fec6", "fields": {"nom_de_la_commune": "CLOUE", "libell_d_acheminement": "CLOUE", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86080"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ef3f1fe043c1607dfedc8477d061191bc017d3", "fields": {"nom_de_la_commune": "COUSSAY LES BOIS", "libell_d_acheminement": "COUSSAY LES BOIS", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86086"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615a645d3b496be659e75780980f08c223eb5fa8", "fields": {"nom_de_la_commune": "CROUTELLE", "libell_d_acheminement": "CROUTELLE", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86088"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde2a04fa32f96a56dda2467b2019ba6bdb8b35a", "fields": {"nom_de_la_commune": "CURZAY SUR VONNE", "libell_d_acheminement": "CURZAY SUR VONNE", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86091"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe71268591abd1aa7ac5bcd568dd71b38c4aa22a", "fields": {"nom_de_la_commune": "DISSAY", "libell_d_acheminement": "DISSAY", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86095"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5174991afab029302363525a10db5646ceb585d9", "fields": {"nom_de_la_commune": "HAIMS", "libell_d_acheminement": "HAIMS", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86110"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e32781d292984afada2d428c3ef8e6468c4f8b6a", "fields": {"nom_de_la_commune": "JAZENEUIL", "libell_d_acheminement": "JAZENEUIL", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86116"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378bc2784556461c070be3e6b0a0219d60f5ab65", "fields": {"nom_de_la_commune": "JOURNET", "libell_d_acheminement": "JOURNET", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86118"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842dfb0738b80896e36d915520a94dfad61b3d34", "fields": {"nom_de_la_commune": "LESIGNY", "libell_d_acheminement": "LESIGNY", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86129"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c7d2cef31c8b7f100dcbaafcc2303dfea72263", "fields": {"nom_de_la_commune": "LUSSAC LES CHATEAUX", "libell_d_acheminement": "LUSSAC LES CHATEAUX", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86140"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4f7f2af315c62036df6de8118fe4e67fc63547", "fields": {"nom_de_la_commune": "MARCAY", "libell_d_acheminement": "MARCAY", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86145"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a2684a875a2634b01a559d13292f8720232246", "fields": {"nom_de_la_commune": "MARIGNY CHEMEREAU", "libell_d_acheminement": "MARIGNY CHEMEREAU", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86147"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be1f725a110c3e2aa5af7acd9916317b20596c0", "fields": {"nom_de_la_commune": "MOUTERRE SUR BLOURDE", "libell_d_acheminement": "MOUTERRE SUR BLOURDE", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86172"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84989020067a1dc1825a8ce51951785f9f1b8290", "fields": {"nom_de_la_commune": "NEUVILLE DE POITOU", "libell_d_acheminement": "NEUVILLE DE POITOU", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86177"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f1d0d85b1643f2e298e208dd136610d67404b2", "fields": {"nom_de_la_commune": "OYRE", "libell_d_acheminement": "OYRE", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86186"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f5034eb00742f923bf21ad67b344d216a9176a", "fields": {"nom_de_la_commune": "PINDRAY", "libell_d_acheminement": "PINDRAY", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86191"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6f19edbc7fe16b0088cbb23ce2392488bec740", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86192"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e0936280ef45a2d825c1f226bda05b54f46538", "fields": {"nom_de_la_commune": "PORT DE PILES", "libell_d_acheminement": "PORT DE PILES", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86195"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08005bd5d224930a1d4a0b6784c4789ce06b3848", "fields": {"nom_de_la_commune": "POUANT", "libell_d_acheminement": "POUANT", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86197"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eebb5b35053a88afbb5b1cdf6c8a42ca8fd42ab", "fields": {"nom_de_la_commune": "POUILLE", "libell_d_acheminement": "POUILLE", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86198"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4db345e0bfa9ffcb01b8cf965e246731c99ece9", "fields": {"nom_de_la_commune": "QUEAUX", "libell_d_acheminement": "QUEAUX", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86203"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f4e43d5e7a9e38880d88886eba4d34ece93286", "fields": {"nom_de_la_commune": "LA ROCHE POSAY", "libell_d_acheminement": "LA ROCHE POSAY", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86207"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4e94e8db66574939b0820fc42e0748803f3f0c", "fields": {"nom_de_la_commune": "ST GERVAIS LES TROIS CLOCHERS", "libell_d_acheminement": "ST GERVAIS LES TROIS CLOCHERS", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86224"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987eeb1878a82e3ac86217c1dca832930c0aa8f0", "fields": {"nom_de_la_commune": "VALDIVIENNE", "libell_d_acheminement": "VALDIVIENNE", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86233"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0273f488dc862a38158016922f8abe8dac35ce2d", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "SALLES EN TOULON", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b361b99a8dee22883cd25e021eadb5964fa007c1", "fields": {"nom_de_la_commune": "ST MARTIN L ARS", "libell_d_acheminement": "ST MARTIN L ARS", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86234"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3f6af9d6df99a0ee058f58b9b89d5a87ee9d1e", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86239"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9283fb18754c4121517d59cf77cb0f40f0442980", "fields": {"nom_de_la_commune": "ST REMY SUR CREUSE", "libell_d_acheminement": "ST REMY SUR CREUSE", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86241"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e9b1bd57a27afd8de24501191d6956ec0d6a9a", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86246"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281b1eb11d612f45b99ae070199bcdded751db88", "fields": {"nom_de_la_commune": "SAIRES", "libell_d_acheminement": "SAIRES", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86249"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31839877d7c4fac413af15902c705e72b2382a19", "fields": {"nom_de_la_commune": "SAVIGNY SOUS FAYE", "libell_d_acheminement": "SAVIGNY SOUS FAYE", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86257"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100bc8ded8184336d64dfd3bdf5ac571f5db1cd5", "fields": {"nom_de_la_commune": "SERIGNY", "libell_d_acheminement": "SERIGNY", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86260"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6fcf275c5e63524cb70245268bb85e466b295c0", "fields": {"nom_de_la_commune": "SILLARS", "libell_d_acheminement": "SILLARS", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86262"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c51527c65ee5f7ea3235b23f74eeca57108f2d8e", "fields": {"nom_de_la_commune": "TERCE", "libell_d_acheminement": "TERCE", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86268"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a1b290dd06523722a01a9bf2bf85d780b87f94", "fields": {"nom_de_la_commune": "LA TRIMOUILLE", "libell_d_acheminement": "LA TRIMOUILLE", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86273"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8339dbd366b92a608ab89a7e9174500c276c7fb6", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86285"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cfc3eca169f727bae5ad100e6a0ade82ec46d6f", "fields": {"nom_de_la_commune": "VERRUE", "libell_d_acheminement": "VERRUE", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86286"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc48062dd56221fe5a323d5ee34c790c58d389ec", "fields": {"nom_de_la_commune": "LE VIGEANT", "libell_d_acheminement": "LE VIGEANT", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86289"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab104068c5446ae846bccc9a06f5307e9d5ba0aa", "fields": {"nom_de_la_commune": "LA VILLEDIEU DU CLAIN", "libell_d_acheminement": "LA VILLEDIEU DU CLAIN", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86290"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218582501cef274be10f0920079f2b8a6f6e698e", "fields": {"nom_de_la_commune": "VILLIERS", "libell_d_acheminement": "VILLIERS", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86292"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323d4df5544cdec812ad3540c0e3b259788f805c", "fields": {"nom_de_la_commune": "VOUILLE", "libell_d_acheminement": "VOUILLE", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86294"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920b084dc8358dd62793d268e4826b80e949bc52", "fields": {"code_postal": "86580", "code_commune_insee": "86297", "libell_d_acheminement": "VOUNEUIL SOUS BIARD", "ligne_5": "POUZIOUX LA JARRIE", "nom_de_la_commune": "VOUNEUIL SOUS BIARD", "coordonnees_gps": [46.580240949, 0.276027039382]}, "geometry": {"type": "Point", "coordinates": [0.276027039382, 46.580240949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05f25b5734b97e3f925dc968267cc4f3edfcad7", "fields": {"nom_de_la_commune": "AMBAZAC", "libell_d_acheminement": "AMBAZAC", "code_postal": "87240", "coordonnees_gps": [45.9667893099, 1.40820306332], "code_commune_insee": "87002"}, "geometry": {"type": "Point", "coordinates": [1.40820306332, 45.9667893099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5182b8755b8a34a0adfb8fd341c424e542714b", "fields": {"nom_de_la_commune": "BEAUMONT DU LAC", "libell_d_acheminement": "BEAUMONT DU LAC", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87009"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48c77f027429336291f9779e2a8525fcf6d47aa", "fields": {"nom_de_la_commune": "BELLAC", "libell_d_acheminement": "BELLAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87011"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f737706a30289eea0cbe5f236ce48ffda89cfc4", "fields": {"nom_de_la_commune": "BERSAC SUR RIVALIER", "libell_d_acheminement": "BERSAC SUR RIVALIER", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87013"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e215f7ce7a01d1c886ba3f185793646909ea51a", "fields": {"nom_de_la_commune": "BURGNAC", "libell_d_acheminement": "BURGNAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87025"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6748545f71455da188f98dbc817037e3be25a6d", "fields": {"nom_de_la_commune": "BUSSIERE GALANT", "libell_d_acheminement": "BUSSIERE GALANT", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87027"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718a775729ccf3fde90e1fda35087c294a3ab2b0", "fields": {"code_postal": "87230", "code_commune_insee": "87027", "libell_d_acheminement": "BUSSIERE GALANT", "ligne_5": "ST NICOLAS COURBEFY", "nom_de_la_commune": "BUSSIERE GALANT", "coordonnees_gps": [45.6620838392, 1.01085910015]}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad02e750c387c99a656d7f5bd2f37ea8396625d7", "fields": {"nom_de_la_commune": "CHAILLAC SUR VIENNE", "libell_d_acheminement": "CHAILLAC SUR VIENNE", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87030"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6651afe7ff4a005e0932ea719dde5bc3db4af8", "fields": {"nom_de_la_commune": "LE CHALARD", "libell_d_acheminement": "LE CHALARD", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87031"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a2862d8f00fc7b1c05a0bfcac4ca8390d9a6f8", "fields": {"nom_de_la_commune": "CHATEAUPONSAC", "libell_d_acheminement": "CHATEAUPONSAC", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87041"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3948f4e8f19732d5c9024a70c71337ed3eaa9563", "fields": {"nom_de_la_commune": "CHEISSOUX", "libell_d_acheminement": "CHEISSOUX", "code_postal": "87460", "coordonnees_gps": [45.8082304662, 1.65843592046], "code_commune_insee": "87043"}, "geometry": {"type": "Point", "coordinates": [1.65843592046, 45.8082304662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ac862f40dfb243e8aba0f4f5ba0aa3125c7ca0", "fields": {"nom_de_la_commune": "CHERONNAC", "libell_d_acheminement": "CHERONNAC", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87044"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bfa3e5abc23afe263f889fc83a8b4ec4774af4", "fields": {"nom_de_la_commune": "CONDAT SUR VIENNE", "libell_d_acheminement": "CONDAT SUR VIENNE", "code_postal": "87920", "coordonnees_gps": [45.7832078836, 1.24019450522], "code_commune_insee": "87048"}, "geometry": {"type": "Point", "coordinates": [1.24019450522, 45.7832078836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788c45b072882fd39eadbb7ff76793097bf65ebc", "fields": {"nom_de_la_commune": "LA CROISILLE SUR BRIANCE", "libell_d_acheminement": "LA CROISILLE SUR BRIANCE", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87051"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c0698f9c26ec3f67a527fb37b2132cd1e2778c", "fields": {"nom_de_la_commune": "DINSAC", "libell_d_acheminement": "DINSAC", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87056"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29818ea3c0ca6e5568c61146985c12957181c0ce", "fields": {"nom_de_la_commune": "GAJOUBERT", "libell_d_acheminement": "GAJOUBERT", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87069"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff453d9661fa7c389f3cc997f530a364fbfb3b3", "fields": {"nom_de_la_commune": "LA GENEYTOUSE", "libell_d_acheminement": "LA GENEYTOUSE", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87070"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f49f38cf025080e2584f8220ca1915eb933f8a", "fields": {"nom_de_la_commune": "GLANGES", "libell_d_acheminement": "GLANGES", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87072"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857aa8ca38d9b3e97896d157b9b48433f361305b", "fields": {"nom_de_la_commune": "ISLE", "libell_d_acheminement": "ISLE", "code_postal": "87170", "coordonnees_gps": [45.8039403646, 1.19507537349], "code_commune_insee": "87075"}, "geometry": {"type": "Point", "coordinates": [1.19507537349, 45.8039403646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325ef2d15665f5654c4aff68bfbff927dfe18cdc", "fields": {"nom_de_la_commune": "JOURGNAC", "libell_d_acheminement": "JOURGNAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87081"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738fd027b7e87776dba7d4911f6dd6d1387e4b2a", "fields": {"nom_de_la_commune": "LIMOGES", "libell_d_acheminement": "LIMOGES", "code_postal": "87000", "coordonnees_gps": [45.8544056025, 1.24905166141], "code_commune_insee": "87085"}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0005438e23ec41e8ea1fd51cb5e6387921b18e8d", "fields": {"nom_de_la_commune": "LIMOGES", "libell_d_acheminement": "LIMOGES", "code_postal": "87100", "coordonnees_gps": [45.8544056025, 1.24905166141], "code_commune_insee": "87085"}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f878a25d7870eab7ef02b108514172f32a9c773c", "fields": {"nom_de_la_commune": "MAILHAC SUR BENAIZE", "libell_d_acheminement": "MAILHAC SUR BENAIZE", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87090"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a7f12d3788b47d014f284121d564127b700e5b", "fields": {"nom_de_la_commune": "MARVAL", "libell_d_acheminement": "MARVAL", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87092"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063a5217ca032b9744f5add437f77b399f61d458", "fields": {"nom_de_la_commune": "MASLEON", "libell_d_acheminement": "MASLEON", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87093"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e62271e323bf7873436fbbc0f8f9f7170eb96e", "fields": {"nom_de_la_commune": "MEUZAC", "libell_d_acheminement": "MEUZAC", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87095"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bfd80c0f59ee3b39fbd982b479822773240c85", "fields": {"nom_de_la_commune": "NEDDE", "libell_d_acheminement": "NEDDE", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87104"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841149e547d42dff96a2bb3a28e44d4e7267d22d", "fields": {"nom_de_la_commune": "NEUVIC ENTIER", "libell_d_acheminement": "NEUVIC ENTIER", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87105"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39faa245ded448ef4c414b66eec43a509c55c584", "fields": {"nom_de_la_commune": "ORADOUR ST GENEST", "libell_d_acheminement": "ORADOUR ST GENEST", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87109"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d528192104d6497af66053611dd6c9f3256f46", "fields": {"nom_de_la_commune": "ORADOUR SUR VAYRES", "libell_d_acheminement": "ORADOUR SUR VAYRES", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87111"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990f3a706163c932b821ed48be3d75a82a552210", "fields": {"nom_de_la_commune": "PAGEAS", "libell_d_acheminement": "PAGEAS", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87112"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a7a2ccee5bb1dc15bdd2acd42170c90e5287b3", "fields": {"nom_de_la_commune": "PENSOL", "libell_d_acheminement": "PENSOL", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87115"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721d549ee77013abc109c0beaf01cdce97cb4e66", "fields": {"nom_de_la_commune": "PEYRAT DE BELLAC", "libell_d_acheminement": "PEYRAT DE BELLAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87116"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8dc4e18134727fdff09774fc3bb2196a31d7950", "fields": {"nom_de_la_commune": "PEYRAT LE CHATEAU", "libell_d_acheminement": "PEYRAT LE CHATEAU", "code_postal": "87470", "coordonnees_gps": [45.8082040567, 1.78200096341], "code_commune_insee": "87117"}, "geometry": {"type": "Point", "coordinates": [1.78200096341, 45.8082040567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9892f81ce993579b4fdb08359dad66c51b88af5a", "fields": {"nom_de_la_commune": "PEYRILHAC", "libell_d_acheminement": "PEYRILHAC", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87118"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a850de031bae714532863d3a6aae393a81e47bad", "fields": {"nom_de_la_commune": "RILHAC RANCON", "libell_d_acheminement": "RILHAC RANCON", "code_postal": "87570", "coordonnees_gps": [45.9072626235, 1.33259631745], "code_commune_insee": "87125"}, "geometry": {"type": "Point", "coordinates": [1.33259631745, 45.9072626235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e53b7c87b01c587262dc08e7856d29aae687bcc", "fields": {"nom_de_la_commune": "ST AMAND MAGNAZEIX", "libell_d_acheminement": "ST AMAND MAGNAZEIX", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87133"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8776ce45926676ce4432da4cac3d0c9334d692", "fields": {"nom_de_la_commune": "ST BAZILE", "libell_d_acheminement": "ST BAZILE", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87137"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283bff29f16904bfdfa49c18fa0f802076dc220e", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87141"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ead945678f39579c3c97d8f56a7bbd32f465154", "fields": {"nom_de_la_commune": "ST JUNIEN", "libell_d_acheminement": "ST JUNIEN", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87154"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c57fdfbfd760430d60438bf49607c21381bc093", "fields": {"nom_de_la_commune": "ST LAURENT LES EGLISES", "libell_d_acheminement": "ST LAURENT LES EGLISES", "code_postal": "87240", "coordonnees_gps": [45.9667893099, 1.40820306332], "code_commune_insee": "87157"}, "geometry": {"type": "Point", "coordinates": [1.40820306332, 45.9667893099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9d08fd0f91aa153b0090773e1176f1ee7d3dbc", "fields": {"nom_de_la_commune": "ST LEONARD DE NOBLAT", "libell_d_acheminement": "ST LEONARD DE NOBLAT", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87161"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d193963bafbb7781021b7d068a921a6a328f33b", "fields": {"nom_de_la_commune": "ST MARTIN LE MAULT", "libell_d_acheminement": "ST MARTIN LE MAULT", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87165"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb79984e04efef89732d941d1827ae90ef1a357c", "fields": {"nom_de_la_commune": "ST OUEN SUR GARTEMPE", "libell_d_acheminement": "ST OUEN SUR GARTEMPE", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87172"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9596e549725815f905b1ecde90a9da517bfabbb", "fields": {"nom_de_la_commune": "ST VICTURNIEN", "libell_d_acheminement": "ST VICTURNIEN", "code_postal": "87420", "coordonnees_gps": [45.8770915845, 1.02789715577], "code_commune_insee": "87185"}, "geometry": {"type": "Point", "coordinates": [1.02789715577, 45.8770915845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754e173031c2298473ae13c7a51f12167a77b84b", "fields": {"nom_de_la_commune": "LES SALLES LAVAUGUYON", "libell_d_acheminement": "LES SALLES LAVAUGUYON", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87189"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4352bbf854272b3b4489d1a77c980442ed56dd0", "fields": {"nom_de_la_commune": "SOLIGNAC", "libell_d_acheminement": "SOLIGNAC", "code_postal": "87110", "coordonnees_gps": [45.746684922, 1.26292425158], "code_commune_insee": "87192"}, "geometry": {"type": "Point", "coordinates": [1.26292425158, 45.746684922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08de599948d57f74d682d725f4f1517afcfd7a46", "fields": {"nom_de_la_commune": "AHEVILLE", "libell_d_acheminement": "AHEVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88002"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f8dc184ad406af036c533993ec693d486fc3ca", "fields": {"nom_de_la_commune": "MOSNAC", "libell_d_acheminement": "MOSNAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16233"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8298eccf6aada4b9ecd9c3069747d028704b07c3", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "MESSEUX", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a728f7edee90031c1ca3f94909aeb3a66e16ac87", "fields": {"nom_de_la_commune": "NONAVILLE", "libell_d_acheminement": "NONAVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16247"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18186e48bfdafabec02bf51fca7efd87792561c", "fields": {"nom_de_la_commune": "ORGEDEUIL", "libell_d_acheminement": "ORGEDEUIL", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16250"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ddfb1e4b2d7d9b1cf52eca05a217bae94ab70c", "fields": {"nom_de_la_commune": "POURSAC", "libell_d_acheminement": "POURSAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16268"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55675fd82215ddddca83ec5ed58b6f74f79d2391", "fields": {"nom_de_la_commune": "ROUILLAC", "libell_d_acheminement": "ROUILLAC", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16286"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e894e8b1b4ef7cc66743d420fb7332c0fb92d52c", "fields": {"nom_de_la_commune": "ROULLET ST ESTEPHE", "libell_d_acheminement": "ROULLET ST ESTEPHE", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16287"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f6d0f2a443c992f1ca9bc957abe22833954c43", "fields": {"nom_de_la_commune": "ROUSSINES", "libell_d_acheminement": "ROUSSINES", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16289"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70863f1ce1c3a6ae4556827cb46c42bab8b583eb", "fields": {"nom_de_la_commune": "ST ADJUTORY", "libell_d_acheminement": "ST ADJUTORY", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16293"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44de0ae4624f6558b1229f43e4de1cc0f000168e", "fields": {"nom_de_la_commune": "ST AMANT DE BONNIEURE", "libell_d_acheminement": "ST AMANT DE BONNIEURE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16296"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c9d5123cea37eeec66c741ca9bbf4a78228c21", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16309"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3ffdf09c17f8154f198fc388aed93dfeddc5db", "fields": {"nom_de_la_commune": "ST EUTROPE", "libell_d_acheminement": "ST EUTROPE", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16314"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0aebdce3b06c8031efc660f44f3f9c45aa5537", "fields": {"nom_de_la_commune": "ST GROUX", "libell_d_acheminement": "ST GROUX", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16326"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487c0b796dbc5b716b694c8dedee2c95412b452c", "fields": {"nom_de_la_commune": "ST LAURENT DE CERIS", "libell_d_acheminement": "ST LAURENT DE CERIS", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16329"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7743423818209e116c4e7cd63f644caa38bcee35", "fields": {"nom_de_la_commune": "ST LAURENT DE COGNAC", "libell_d_acheminement": "ST LAURENT DE COGNAC", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16330"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2bbacd4e968f44d0eb01c9f9f1fff663b820ed", "fields": {"nom_de_la_commune": "ST LAURENT DES COMBES", "libell_d_acheminement": "ST LAURENT DES COMBES", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16331"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6eff19804c6c0a380ef77ddd91857b9ab62e45", "fields": {"nom_de_la_commune": "ST MARTIN DU CLOCHER", "libell_d_acheminement": "ST MARTIN DU CLOCHER", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16335"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b754725357d8dbe325b5fb3a61548b273463f29f", "fields": {"nom_de_la_commune": "ST SULPICE DE RUFFEC", "libell_d_acheminement": "ST SULPICE DE RUFFEC", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16356"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd63cfb87ebe40e7f41b56baaf794fc51d1a8c7", "fields": {"nom_de_la_commune": "ST YRIEIX SUR CHARENTE", "libell_d_acheminement": "ST YRIEIX SUR CHARENTE", "code_postal": "16710", "coordonnees_gps": [45.6816336723, 0.12857222199], "code_commune_insee": "16358"}, "geometry": {"type": "Point", "coordinates": [0.12857222199, 45.6816336723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae905dacc0659e5f293eb3ff2ef3a42890315d60", "fields": {"nom_de_la_commune": "SAULGOND", "libell_d_acheminement": "SAULGOND", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16363"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eeb6d67e58048db9fa17e57c9088d67e5894be0", "fields": {"nom_de_la_commune": "SERS", "libell_d_acheminement": "SERS", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16368"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e758763e33fdda07039e5cd8177469b9be83ce17", "fields": {"nom_de_la_commune": "SOUVIGNE", "libell_d_acheminement": "SOUVIGNE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16373"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14c2fcfb54a7b302ea7d32d667549e013b852b51", "fields": {"nom_de_la_commune": "TRIAC LAUTRAIT", "libell_d_acheminement": "TRIAC LAUTRAIT", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16387"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ace95a725b6de8bd6316a2023b55a84a79b3dc6", "fields": {"code_postal": "16200", "code_commune_insee": "16387", "libell_d_acheminement": "TRIAC LAUTRAIT", "ligne_5": "LANTIN", "nom_de_la_commune": "TRIAC LAUTRAIT", "coordonnees_gps": [45.7157731046, -0.184252292746]}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9612ce5b26245da53a6719e90bb96b394b3256", "fields": {"nom_de_la_commune": "VALENCE", "libell_d_acheminement": "VALENCE", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16392"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312fef48cda4c27f3ee20eb6c0a1c5726f76363f", "fields": {"nom_de_la_commune": "VERVANT", "libell_d_acheminement": "VERVANT", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16401"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7996dc18c2dfef96c56be6c50b1115c4560e0ca1", "fields": {"nom_de_la_commune": "VILLEGATS", "libell_d_acheminement": "VILLEGATS", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16410"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c976f193e251ad56f37ab15da46ffb71c91a0127", "fields": {"nom_de_la_commune": "VILLIERS LE ROUX", "libell_d_acheminement": "VILLIERS LE ROUX", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16413"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9197278a1d0301723de0b82c5f2a2793a859052", "fields": {"nom_de_la_commune": "VITRAC ST VINCENT", "libell_d_acheminement": "VITRAC ST VINCENT", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16416"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c323d6f544a3930fe85c330ca36e3f45133ce2e", "fields": {"nom_de_la_commune": "YVIERS", "libell_d_acheminement": "YVIERS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16424"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3792c355732540473aad46ba2cbe3a7a70ae615", "fields": {"nom_de_la_commune": "AIGREFEUILLE D AUNIS", "libell_d_acheminement": "AIGREFEUILLE D AUNIS", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17003"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e99cd5366c316216c1205c7b66f8ebffb9017e", "fields": {"nom_de_la_commune": "ANGLIERS", "libell_d_acheminement": "ANGLIERS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17009"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2277ea039e560a7e4117f3074c2d7c4ce924c934", "fields": {"nom_de_la_commune": "ANGOULINS", "libell_d_acheminement": "ANGOULINS", "code_postal": "17690", "coordonnees_gps": [46.1067999964, -1.10569913628], "code_commune_insee": "17010"}, "geometry": {"type": "Point", "coordinates": [-1.10569913628, 46.1067999964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f26ff9170a62b5795cba1be6249b8751290ff2", "fields": {"nom_de_la_commune": "ANNEZAY", "libell_d_acheminement": "ANNEZAY", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17012"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b907ebce0c9b6e619145678353b0ff369fdc38ba", "fields": {"nom_de_la_commune": "ANTEZANT LA CHAPELLE", "libell_d_acheminement": "ANTEZANT LA CHAPELLE", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17013"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caec9b6395631876c8718f78b684be4865aab0e2", "fields": {"nom_de_la_commune": "ARCHINGEAY", "libell_d_acheminement": "ARCHINGEAY", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17017"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5154c206832595a79691060a70e7a6d3e4116cc4", "fields": {"code_postal": "17770", "code_commune_insee": "17025", "libell_d_acheminement": "AUMAGNE", "ligne_5": "CHAGNON", "nom_de_la_commune": "AUMAGNE", "coordonnees_gps": [45.8271073503, -0.466918444884]}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef6b49a46aa453d85916700124fac66eb0cb34d", "fields": {"nom_de_la_commune": "BEDENAC", "libell_d_acheminement": "BEDENAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17038"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70e5b74b74c4cf4df27c5f4ce18af5ab2943a97", "fields": {"nom_de_la_commune": "BENON", "libell_d_acheminement": "BENON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17041"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82ea644ca341f480fc0ee3fc7bf4dd4eaa9179c", "fields": {"nom_de_la_commune": "BERNAY ST MARTIN", "libell_d_acheminement": "BERNAY ST MARTIN", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17043"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37aca8fb64bcbc14811633080ca4c0bc0c116db0", "fields": {"nom_de_la_commune": "BOURGNEUF", "libell_d_acheminement": "BOURGNEUF", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17059"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1dcd9f40fcadd58a733b280e7abc35c9d2948c", "fields": {"nom_de_la_commune": "BRIE SOUS ARCHIAC", "libell_d_acheminement": "BRIE SOUS ARCHIAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17066"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb1b939fc53cf7234beffa2220f8649ee809813", "fields": {"nom_de_la_commune": "BRIE SOUS MORTAGNE", "libell_d_acheminement": "BRIE SOUS MORTAGNE", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17068"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e3210111d170a8e1d3d2f26f25a3498f189da6", "fields": {"nom_de_la_commune": "BRIZAMBOURG", "libell_d_acheminement": "BRIZAMBOURG", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17070"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce40c55d54f404c9ea336bacb2916eec5bdcfae", "fields": {"nom_de_la_commune": "LA BROUSSE", "libell_d_acheminement": "LA BROUSSE", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17071"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "393c8d766405bcdb7ba2282dc7ced2a07ab023f6", "fields": {"nom_de_la_commune": "BUSSAC SUR CHARENTE", "libell_d_acheminement": "BUSSAC SUR CHARENTE", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17073"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f959cb98bec4c25d05052aa2299f8ca70f389e6", "fields": {"nom_de_la_commune": "CHAMPAGNAC", "libell_d_acheminement": "CHAMPAGNAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17082"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba61c4c77900d113872176e14193580ed83a412", "fields": {"nom_de_la_commune": "CHAMPAGNE", "libell_d_acheminement": "CHAMPAGNE", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17083"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece6f96b23138ec6021e7437bd6f2793ae059d8b", "fields": {"code_postal": "17230", "code_commune_insee": "17091", "libell_d_acheminement": "CHARRON", "ligne_5": "BOURG CHAPON", "nom_de_la_commune": "CHARRON", "coordonnees_gps": [46.286014889, -1.01509211949]}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8809606d103b7d6e5f56cd5d0daf58e765abf97c", "fields": {"nom_de_la_commune": "CHARTUZAC", "libell_d_acheminement": "CHARTUZAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17092"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7c71e6f7159fd3d0992ab9cf0d8d643052dbe0", "fields": {"nom_de_la_commune": "CHATENET", "libell_d_acheminement": "CHATENET", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17095"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660c12d9d81ea2ff45ad8ed96311762db7f452cb", "fields": {"nom_de_la_commune": "CHAUNAC", "libell_d_acheminement": "CHAUNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17096"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ae1afaab1abcac3862a59eee3e1d8b682d1136", "fields": {"nom_de_la_commune": "CHERAC", "libell_d_acheminement": "CHERAC", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17100"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba49a3f502f324d9cfd22aa01129474056368bd", "fields": {"nom_de_la_commune": "CHERBONNIERES", "libell_d_acheminement": "CHERBONNIERES", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17101"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfdd333edc434281981cbbde7fa46a6081e35cf", "fields": {"nom_de_la_commune": "CHIVES", "libell_d_acheminement": "CHIVES", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17105"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c56745343f189fa88b78c17a5fb0b186f2f0748", "fields": {"nom_de_la_commune": "CORIGNAC", "libell_d_acheminement": "CORIGNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17118"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376274b2d72d0b7ae8ec75a3ce6fce3d9bcf3009", "fields": {"nom_de_la_commune": "COURCOURY", "libell_d_acheminement": "COURCOURY", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17128"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d23581338b063bae8cff412a80b453e80f439ba", "fields": {"nom_de_la_commune": "LA CROIX COMTESSE", "libell_d_acheminement": "LA CROIX COMTESSE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17137"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5488a5b29590dd39bd8abc3685d8e5dba99679", "fields": {"nom_de_la_commune": "DOMPIERRE SUR MER", "libell_d_acheminement": "DOMPIERRE SUR MER", "code_postal": "17139", "coordonnees_gps": [46.1839503995, -1.06844117713], "code_commune_insee": "17142"}, "geometry": {"type": "Point", "coordinates": [-1.06844117713, 46.1839503995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a533a50889eebbba91a822b4779e67da798a6967", "fields": {"nom_de_la_commune": "LE DOUHET", "libell_d_acheminement": "LE DOUHET", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17143"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f04d5cae9b327cb823f50fc433f843de61273ba", "fields": {"nom_de_la_commune": "ECHEBRUNE", "libell_d_acheminement": "ECHEBRUNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17145"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d86ef86d759b22e16f9b46e8dc0b7290b753b9f", "fields": {"nom_de_la_commune": "ECURAT", "libell_d_acheminement": "ECURAT", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17148"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbdf3925ef8abadc3a5375730b1435cd7002bcca", "fields": {"nom_de_la_commune": "EPARGNES", "libell_d_acheminement": "EPARGNES", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17152"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974f47833fc81966698c6f9f3205a9c6e2089147", "fields": {"nom_de_la_commune": "FONTAINES D OZILLAC", "libell_d_acheminement": "FONTAINES D OZILLAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17163"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef68555d29a987cc109156f91a932f665e6cfa4", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17166"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2984210682795a3a89bd8a533b12bfb75a000326", "fields": {"nom_de_la_commune": "GIBOURNE", "libell_d_acheminement": "GIBOURNE", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17176"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef64cbe8f0ef169e2d83d86ac50c22860a861d4f", "fields": {"nom_de_la_commune": "HAIMPS", "libell_d_acheminement": "HAIMPS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17188"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a981c71184d147cce154e2924ecf5120ae72e3f", "fields": {"nom_de_la_commune": "HIERS BROUAGE", "libell_d_acheminement": "HIERS BROUAGE", "code_postal": "17320", "coordonnees_gps": [45.8153693416, -1.06418747186], "code_commune_insee": "17189"}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b56e4cddb5ff89d11cba36a33cd6f2653a1731b", "fields": {"nom_de_la_commune": "LOIX", "libell_d_acheminement": "LOIX", "code_postal": "17111", "coordonnees_gps": [46.2211333939, -1.44505934454], "code_commune_insee": "17207"}, "geometry": {"type": "Point", "coordinates": [-1.44505934454, 46.2211333939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2991c6bc0a656f238699397c257504908e0073e", "fields": {"nom_de_la_commune": "LUSSAC", "libell_d_acheminement": "LUSSAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17215"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "635a92e979f7361b2ca0b5ec717b659df745b2d9", "fields": {"nom_de_la_commune": "MARANS", "libell_d_acheminement": "MARANS", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17218"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305ef634dc1684bcc6e40d83cf1cd1687e28c227", "fields": {"nom_de_la_commune": "MARIGNAC", "libell_d_acheminement": "MARIGNAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17220"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78404ad70390f811ae9475915ce75a88401dbc68", "fields": {"nom_de_la_commune": "MAZERAY", "libell_d_acheminement": "MAZERAY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17226"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d936039d98f3bd326a84c386cc688f0900f0fc0a", "fields": {"nom_de_la_commune": "MERIGNAC", "libell_d_acheminement": "MERIGNAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17229"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca7a6205ec4c81efcabdaada186e0c418b8a35f", "fields": {"nom_de_la_commune": "MIGRE", "libell_d_acheminement": "MIGRE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17234"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c001cc688e487d60623b24db3fac7eb765ce33a4", "fields": {"nom_de_la_commune": "MIRAMBEAU", "libell_d_acheminement": "MIRAMBEAU", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17236"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00b42fc177345e34e96b498c7674600053de695", "fields": {"nom_de_la_commune": "MONTENDRE", "libell_d_acheminement": "MONTENDRE", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17240"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab0344fe64961e69f5d349f31cb04cd4a63c8480", "fields": {"nom_de_la_commune": "MONTLIEU LA GARDE", "libell_d_acheminement": "MONTLIEU LA GARDE", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17243"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e769002bf572690f5bdc6156168023c642df2e", "fields": {"nom_de_la_commune": "LE MUNG", "libell_d_acheminement": "LE MUNG", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17252"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310326a6c9499ce4daf4e0805a9b142730e133e5", "fields": {"code_postal": "17137", "code_commune_insee": "17264", "libell_d_acheminement": "NIEUL SUR MER", "ligne_5": "LAUZIERES", "nom_de_la_commune": "NIEUL SUR MER", "coordonnees_gps": [46.2222024122, -1.1457029757]}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b653702f95ac899f60c8b0a1636ad0d0f7c4b7", "fields": {"nom_de_la_commune": "NIEULLE SUR SEUDRE", "libell_d_acheminement": "NIEULLE SUR SEUDRE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17265"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4df842c65d7e4048cbdad45f299c7aabfef61ab", "fields": {"nom_de_la_commune": "PERIGNAC", "libell_d_acheminement": "PERIGNAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17273"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364dc3e7b927170184678b3fb25ac74c747fed1a", "fields": {"nom_de_la_commune": "PLASSAY", "libell_d_acheminement": "PLASSAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17280"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ec1a9ddfa0665b53353d9ce19d17d968fe0c3f", "fields": {"nom_de_la_commune": "POLIGNAC", "libell_d_acheminement": "POLIGNAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17281"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c3aa88cf3647e1a2b8e28c02a15c4d7dd02c93", "fields": {"nom_de_la_commune": "PONS", "libell_d_acheminement": "PONS", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17283"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef95002e1f00dfb4f63b8891ba3aa4e3504621e4", "fields": {"nom_de_la_commune": "POURSAY GARNAUD", "libell_d_acheminement": "POURSAY GARNAUD", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17288"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "017c53b820daf0211727f8e115e39008a3f9a9e8", "fields": {"nom_de_la_commune": "PRIGNAC", "libell_d_acheminement": "PRIGNAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17290"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa090f20c8990a72b02af40d7c03882c271f357", "fields": {"nom_de_la_commune": "PUILBOREAU", "libell_d_acheminement": "PUILBOREAU", "code_postal": "17138", "coordonnees_gps": [46.202457274, -1.09989389578], "code_commune_insee": "17291"}, "geometry": {"type": "Point", "coordinates": [-1.09989389578, 46.202457274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb257343943424aaa88bf03dc7185e5f8d9a7912", "fields": {"nom_de_la_commune": "PUY DU LAC", "libell_d_acheminement": "PUY DU LAC", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17292"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b166448a38601e593ade8d195d9492d8094336", "fields": {"nom_de_la_commune": "RETAUD", "libell_d_acheminement": "RETAUD", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17296"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abcf46bfd41280051b8bb89fa1fa59e1f1b7df39", "fields": {"nom_de_la_commune": "ST CLEMENT DES BALEINES", "libell_d_acheminement": "ST CLEMENT DES BALEINES", "code_postal": "17590", "coordonnees_gps": [46.2211665478, -1.52366655829], "code_commune_insee": "17318"}, "geometry": {"type": "Point", "coordinates": [-1.52366655829, 46.2211665478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3964775a9195c7472e42f5b2b04f0e30588e69", "fields": {"code_postal": "17590", "code_commune_insee": "17318", "libell_d_acheminement": "ST CLEMENT DES BALEINES", "ligne_5": "LE GILLIEUX", "nom_de_la_commune": "ST CLEMENT DES BALEINES", "coordonnees_gps": [46.2211665478, -1.52366655829]}, "geometry": {"type": "Point", "coordinates": [-1.52366655829, 46.2211665478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e9dd545042176f96c8aa656fa9f394ed43723fd", "fields": {"nom_de_la_commune": "ST COUTANT LE GRAND", "libell_d_acheminement": "ST COUTANT LE GRAND", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17320"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd53f20709d48583b538821e2c40561ec247b256", "fields": {"nom_de_la_commune": "ST GEORGES DE LONGUEPIERRE", "libell_d_acheminement": "ST GEORGES DE LONGUEPIERRE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17334"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12da621768b7ca0a256fd954aa0c418c05f991fe", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "BOYARDVILLE", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b04968070579f2fcad706d3ef89c0a1e3aab0d8", "fields": {"nom_de_la_commune": "ST GEORGES DU BOIS", "libell_d_acheminement": "ST GEORGES DU BOIS", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17338"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff4e57856842fa28e4e627f9fda36633902a863", "fields": {"nom_de_la_commune": "ST GERMAIN DE LUSIGNAN", "libell_d_acheminement": "ST GERMAIN DE LUSIGNAN", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17339"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d145f58d1707a482c81a811518dde08d74b4f14", "fields": {"nom_de_la_commune": "ST JUST LUZAC", "libell_d_acheminement": "ST JUST LUZAC", "code_postal": "17320", "coordonnees_gps": [45.8153693416, -1.06418747186], "code_commune_insee": "17351"}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf5479412dfc4f397802b8d6b4073e52da6af3e", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17354"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35eeae666d2335c37d64752ebfcdbdcd70366f87", "fields": {"nom_de_la_commune": "ST MARTIN D ARY", "libell_d_acheminement": "ST MARTIN D ARY", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17365"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f96cc71df91aa69a0e1a6bab9af606b73f48a6", "fields": {"nom_de_la_commune": "NOGNA", "libell_d_acheminement": "NOGNA", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39390"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3ebba05d81af823bf9a91b25393071c64703ea", "fields": {"nom_de_la_commune": "ORBAGNA", "libell_d_acheminement": "ORBAGNA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39395"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360ad1a0d85bdb86d1f9c994233b18325d9c9208", "fields": {"nom_de_la_commune": "OUNANS", "libell_d_acheminement": "OUNANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39399"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ca1f390504e0f9e42539ce96d48b35241d94e4", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39421"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6efb6977351028efcee04b4acd004c5d435bc284", "fields": {"nom_de_la_commune": "PLASNE", "libell_d_acheminement": "PLASNE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39426"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c95893c239f600f1d840423491255a291cfac1", "fields": {"nom_de_la_commune": "PLENISE", "libell_d_acheminement": "PLENISE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39427"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52dc1e5ae81fbbcbe04cad554af1ec13106dc45d", "fields": {"nom_de_la_commune": "POIDS DE FIOLE", "libell_d_acheminement": "POIDS DE FIOLE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39431"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd6321e1be2155a9bb265ca7ba3de0bba869e85", "fields": {"code_postal": "39110", "code_commune_insee": "39436", "libell_d_acheminement": "PONT D HERY", "ligne_5": "FONTENY", "nom_de_la_commune": "PONT D HERY", "coordonnees_gps": [46.9201409369, 5.90413463996]}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "774b50260d6c2781fae432680832eb013b4e1ac2", "fields": {"nom_de_la_commune": "PRATZ", "libell_d_acheminement": "PRATZ", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39440"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba3561ad1840dcba139740d8d78dcc8d45c9d5e", "fields": {"nom_de_la_commune": "RANCHOT", "libell_d_acheminement": "RANCHOT", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39451"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a72d8ffa647d646976336ca082b3da8d6bf7e892", "fields": {"nom_de_la_commune": "RANS", "libell_d_acheminement": "RANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39452"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cba1e536ec5116562440587af6dd0868b14576f", "fields": {"nom_de_la_commune": "REITHOUSE", "libell_d_acheminement": "REITHOUSE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39455"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206e42cffdbc9496ea175b41ac874d2ffd384007", "fields": {"nom_de_la_commune": "RELANS", "libell_d_acheminement": "RELANS", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39456"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43b3abae57514a41091b6f4792906041a73d06e", "fields": {"nom_de_la_commune": "ROCHEFORT SUR NENON", "libell_d_acheminement": "ROCHEFORT SUR NENON", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39462"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf27bc4c6bc9b64d1f900ca11b8f9812bb1f571", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39464"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000965f1d40e16d18dd5cd6ddab8e8f16b653538", "fields": {"nom_de_la_commune": "ROMANGE", "libell_d_acheminement": "ROMANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39465"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fba844b65d2ced2b5c831257960f79be67b404", "fields": {"nom_de_la_commune": "ROTALIER", "libell_d_acheminement": "ROTALIER", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39467"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e98c1cd4ed0f75658b30439141d44b1259f0a2e2", "fields": {"nom_de_la_commune": "SAFFLOZ", "libell_d_acheminement": "SAFFLOZ", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39473"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315126d17be2cbaa7598d7a526c0da851bc9a96a", "fields": {"nom_de_la_commune": "STE AGNES", "libell_d_acheminement": "STE AGNES", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39474"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d617f0435a5d6d85a87a3ee334d18b31080b0cda", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "39410", "coordonnees_gps": [47.0386263121, 5.33402730171], "code_commune_insee": "39476"}, "geometry": {"type": "Point", "coordinates": [5.33402730171, 47.0386263121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2ef6ec0a098f3e52155f5684cebaf99d0d3693", "fields": {"nom_de_la_commune": "ST BARAING", "libell_d_acheminement": "ST BARAING", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39477"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b1f5476f11bdca2b014b470fa8967573270c35", "fields": {"nom_de_la_commune": "ST CLAUDE", "libell_d_acheminement": "ST CLAUDE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39478"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33587f8d5675742f60d0fcce99357d84256c0c4", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "CHAUMONT", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58c8051f27a52a3ae0cfe3f258da7b41e65d51c", "fields": {"nom_de_la_commune": "ST GERMAIN EN MONTAGNE", "libell_d_acheminement": "ST GERMAIN EN MONTAGNE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39481"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b874b8e7ddc3c40328a045b7bd545c3ac22b6cc", "fields": {"nom_de_la_commune": "ST LAURENT EN GRANDVAUX", "libell_d_acheminement": "ST LAURENT EN GRANDVAUX", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39487"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de7bce0e1313ca94309098cdf172018b08fb811", "fields": {"nom_de_la_commune": "ST LOTHAIN", "libell_d_acheminement": "ST LOTHAIN", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39489"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97861107ab990237d9b68c14784f88dc057b6feb", "fields": {"nom_de_la_commune": "ST MAURICE CRILLAT", "libell_d_acheminement": "ST MAURICE CRILLAT", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39493"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e84b15b0ab821516f134a8dc7f180508017978", "fields": {"nom_de_la_commune": "ST THIEBAUD", "libell_d_acheminement": "ST THIEBAUD", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39495"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16bd3ed0c914e4962527cef170112ac4d9e004c2", "fields": {"nom_de_la_commune": "SELLIERES", "libell_d_acheminement": "SELLIERES", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39508"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132d06b2f5bad5d7d5e77e8a356bcaf5743a3f08", "fields": {"nom_de_la_commune": "SOUVANS", "libell_d_acheminement": "SOUVANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39520"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e391378b82be61ab8b72e32995206be1277a3c13", "fields": {"nom_de_la_commune": "TAVAUX", "libell_d_acheminement": "TAVAUX", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39526"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dabb7280b04571cd2a5a6472808f110073262203", "fields": {"nom_de_la_commune": "LA TOUR DU MEIX", "libell_d_acheminement": "LA TOUR DU MEIX", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39534"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebef8cd2d515e32c81ab556db94c5b80eedcdee", "fields": {"nom_de_la_commune": "VADANS", "libell_d_acheminement": "VADANS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39539"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5d39abb90911ae5cfa4a690d9134e53cec5235", "fields": {"nom_de_la_commune": "LE VAUDIOUX", "libell_d_acheminement": "LE VAUDIOUX", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39545"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee97f34862f12a0b4f66dc469c8db4e68f601dc1", "fields": {"nom_de_la_commune": "VERNANTOIS", "libell_d_acheminement": "VERNANTOIS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39552"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74bd881fba313aa2da55f2161fb6e221fd1bd7d5", "fields": {"nom_de_la_commune": "VILLARD SUR BIENNE", "libell_d_acheminement": "VILLARD SUR BIENNE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39562"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58b028848ca70c23f670be7dcc3f04c5b99e0a9", "fields": {"nom_de_la_commune": "VILLENEUVE D AVAL", "libell_d_acheminement": "VILLENEUVE D AVAL", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39565"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeaa320f2b98bbbe834eed749b1b24ddf00a519a", "fields": {"nom_de_la_commune": "VILLENEUVE LES CHARNOD", "libell_d_acheminement": "VILLENEUVE LES CHARNOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39566"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b70124bd2814f3500d114e4985da12843b7178", "fields": {"nom_de_la_commune": "VILLERS FARLAY", "libell_d_acheminement": "VILLERS FARLAY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39569"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faa762283b15ef20fecd08c5ed6a9a41d91dace", "fields": {"nom_de_la_commune": "VILLERS LES BOIS", "libell_d_acheminement": "VILLERS LES BOIS", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39570"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12c157377a63e6179ef76a632a3cd2a72ad992d", "fields": {"nom_de_la_commune": "VILLEVIEUX", "libell_d_acheminement": "VILLEVIEUX", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39574"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5b7057f33235e3656f1bca995ec9c50601baf0", "fields": {"nom_de_la_commune": "LE VILLEY", "libell_d_acheminement": "LE VILLEY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39575"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bd14f49b4d4c48926a06a80d77d14e70f44ac17", "fields": {"nom_de_la_commune": "ARTASSENX", "libell_d_acheminement": "ARTASSENX", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40012"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f20b2a5f547c1a2356044d768db9a012ba2c053", "fields": {"nom_de_la_commune": "BAIGTS", "libell_d_acheminement": "BAIGTS", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40023"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db31c6186030aaa2e2c050a6d765a2499a7ca53", "fields": {"nom_de_la_commune": "BANOS", "libell_d_acheminement": "BANOS", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40024"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec828cf546111db9e90d2d8064db2074db48274", "fields": {"nom_de_la_commune": "BAUDIGNAN", "libell_d_acheminement": "BAUDIGNAN", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40030"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a471241b84ba0eeda9efa269a66a2d346e1f8b", "fields": {"nom_de_la_commune": "BELIS", "libell_d_acheminement": "BELIS", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40033"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ca31ce090c945abcf7945c1506839875e7203a", "fields": {"nom_de_la_commune": "BELUS", "libell_d_acheminement": "BELUS", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40034"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1542cddeb85086312542078fc6dbc50ab0b957c", "fields": {"nom_de_la_commune": "BENESSE LES DAX", "libell_d_acheminement": "BENESSE LES DAX", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40035"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e62e4ff519390302a432526f3f69d309ae4d55", "fields": {"nom_de_la_commune": "BENESSE MAREMNE", "libell_d_acheminement": "BENESSE MAREMNE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40036"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0555273a252ee7152102a75ab69a4a3611911595", "fields": {"nom_de_la_commune": "BIAS", "libell_d_acheminement": "BIAS", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40043"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97cac7f7f84768e4626291eeab6c50793be14e05", "fields": {"nom_de_la_commune": "BUANES", "libell_d_acheminement": "BUANES", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40057"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117346359b519cebf94fc532c9693ead550896e5", "fields": {"nom_de_la_commune": "CANENX ET REAUT", "libell_d_acheminement": "CANENX ET REAUT", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40064"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4a60f03cda569290e6de42613b8191ebec5104", "fields": {"nom_de_la_commune": "CASTAIGNOS SOUSLENS", "libell_d_acheminement": "CASTAIGNOS SOUSLENS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40069"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dc6f57e07397f51975b0286195bba1a9b36b01d", "fields": {"nom_de_la_commune": "CLASSUN", "libell_d_acheminement": "CLASSUN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40082"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216c854d27296e37775e910e00ada368ae5db8a2", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40084"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e684cdfb4de96324c05be6a1328c78d60fe484", "fields": {"nom_de_la_commune": "CREON D ARMAGNAC", "libell_d_acheminement": "CREON D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40087"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0eae6286f844db3b90b9e8e88f73dbf463eda14", "fields": {"nom_de_la_commune": "EUGENIE LES BAINS", "libell_d_acheminement": "EUGENIE LES BAINS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40097"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee4522aced68564f363b5d67b7ac666819681a0", "fields": {"nom_de_la_commune": "EYRES MONCUBE", "libell_d_acheminement": "EYRES MONCUBE", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40098"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c69c58d7a8e481f5fafde131e18924161382d4", "fields": {"nom_de_la_commune": "LE FRECHE", "libell_d_acheminement": "LE FRECHE", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40100"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3ff802c00252ef729399af0f95dd5bd29790b1", "fields": {"nom_de_la_commune": "GAILLERES", "libell_d_acheminement": "GAILLERES", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40103"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d59c8f2a2913cafc4713e805306f9611927350", "fields": {"nom_de_la_commune": "HABAS", "libell_d_acheminement": "HABAS", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40118"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8398a1f52542cacd3bee3d80a8968da8a70c67", "fields": {"nom_de_la_commune": "HERM", "libell_d_acheminement": "HERM", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40123"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ba1fa3c2c7428df378bf5b18398b36cd4ef9cf", "fields": {"nom_de_la_commune": "HERRE", "libell_d_acheminement": "HERRE", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40124"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8c0a82293055e0b3fff854266440f3a4399d58", "fields": {"nom_de_la_commune": "LABASTIDE CHALOSSE", "libell_d_acheminement": "LABASTIDE CHALOSSE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40130"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf0e9db8cfca05124425e64f4aae7573f575205", "fields": {"nom_de_la_commune": "LABASTIDE D ARMAGNAC", "libell_d_acheminement": "LABASTIDE D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40131"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfcf8123394f5aaafd2ec77655dce9494bd2896", "fields": {"nom_de_la_commune": "LABRIT", "libell_d_acheminement": "LABRIT", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40135"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84e66f47645ce4bc593d56280882bb75c264b0b", "fields": {"nom_de_la_commune": "LACRABE", "libell_d_acheminement": "LACRABE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40138"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983e956e2a0a005c2b12f1fe21d84e945c54ae4b", "fields": {"nom_de_la_commune": "LAGRANGE", "libell_d_acheminement": "LAGRANGE", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40140"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0006fa782f93c7bf60d37b7c1d3feffd4c053761", "fields": {"nom_de_la_commune": "LAHOSSE", "libell_d_acheminement": "LAHOSSE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40141"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e15ad862d42fe10b549b945ccc6b4e0d2cddb68", "fields": {"nom_de_la_commune": "LAMOTHE", "libell_d_acheminement": "LAMOTHE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40143"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099343e302fa8f5e83ac836e9c9f2b265cbcad37", "fields": {"nom_de_la_commune": "LATRILLE", "libell_d_acheminement": "LATRILLE", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40146"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05d74b1fba57f104d959d57edbab85f442f6bde", "fields": {"nom_de_la_commune": "LAURET", "libell_d_acheminement": "LAURET", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40148"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73e5f3939a673bb36a3ead02c9b6f850f6f0506", "fields": {"nom_de_la_commune": "LENCOUACQ", "libell_d_acheminement": "LENCOUACQ", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40149"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef15fb9fe5c3fe3ab2da2ad9d5174dfb51a19d46", "fields": {"nom_de_la_commune": "LESGOR", "libell_d_acheminement": "LESGOR", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40151"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cdcaef2ac972fe983c65679db7b2d4be15af62", "fields": {"nom_de_la_commune": "LESPERON", "libell_d_acheminement": "LESPERON", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40152"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab51e44ff8b36271cf85337434e6164a38a79db1", "fields": {"nom_de_la_commune": "LOUER", "libell_d_acheminement": "LOUER", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40159"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9458b7448d9de35f5613647fb5934604f4351a07", "fields": {"nom_de_la_commune": "LOURQUEN", "libell_d_acheminement": "LOURQUEN", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40160"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb289e33b639ccab1ccf18ce4ba1994c0195e4d", "fields": {"nom_de_la_commune": "RETJONS", "libell_d_acheminement": "RETJONS", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40164"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8f74991c3c913945c2964d3bb61e6b0a936ddb", "fields": {"nom_de_la_commune": "LUXEY", "libell_d_acheminement": "LUXEY", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40167"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d1e121dd40a6e2d3c5cfef8271df74abc96601", "fields": {"nom_de_la_commune": "MAILLAS", "libell_d_acheminement": "MAILLAS", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40169"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078ed093ff5c95f06ffe151df9521a6d3f08da4a", "fields": {"nom_de_la_commune": "MAURIES", "libell_d_acheminement": "MAURIES", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40174"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39cc933525d4424af2e0ecdd46c7cd0092f991a6", "fields": {"nom_de_la_commune": "MESSANGES", "libell_d_acheminement": "MESSANGES", "code_postal": "40660", "coordonnees_gps": [43.8329015635, -1.36219281408], "code_commune_insee": "40181"}, "geometry": {"type": "Point", "coordinates": [-1.36219281408, 43.8329015635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95328352f84981c9354ec8f0a77c9bd7560b01d", "fields": {"nom_de_la_commune": "MEZOS", "libell_d_acheminement": "MEZOS", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40182"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3702e5e1ca47dc4d78f1b47664ccaf132bd9f640", "fields": {"nom_de_la_commune": "MIMIZAN", "libell_d_acheminement": "MIMIZAN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40184"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1040a4352da155f15ad660c3d314d8de8cc6c7bb", "fields": {"nom_de_la_commune": "MISSON", "libell_d_acheminement": "MISSON", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40186"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b270ed48820f0474fe5666491310df291d45eb0", "fields": {"nom_de_la_commune": "MONT DE MARSAN", "libell_d_acheminement": "MONT DE MARSAN", "code_postal": "40000", "coordonnees_gps": [43.8995565919, -0.490387056517], "code_commune_insee": "40192"}, "geometry": {"type": "Point", "coordinates": [-0.490387056517, 43.8995565919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7236bdd8293c5016b290b208b4b2834bdc0c81", "fields": {"nom_de_la_commune": "MOUSCARDES", "libell_d_acheminement": "MOUSCARDES", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40199"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69069981ec49bd7d7b05b9e32cbb8b06b4045284", "fields": {"nom_de_la_commune": "OEYREGAVE", "libell_d_acheminement": "OEYREGAVE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40206"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea898a019224976903aa0bce2494702f6bfc85b", "fields": {"nom_de_la_commune": "OEYRELUY", "libell_d_acheminement": "OEYRELUY", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40207"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f39b3b24d46ec5db2a905ff5aa62134e1d48c9", "fields": {"nom_de_la_commune": "ORX", "libell_d_acheminement": "ORX", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40213"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6709aac5339df51d9c098cbe4ca0a00a9aca9b8d", "fields": {"nom_de_la_commune": "OSSAGES", "libell_d_acheminement": "OSSAGES", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40214"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7532fb09a6a4be8f0bafbc3f3329baa09488df7", "fields": {"nom_de_la_commune": "PEY", "libell_d_acheminement": "PEY", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40222"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1197bd1aef4cd43133ea6ac079107c23d9d88605", "fields": {"nom_de_la_commune": "PEYRE", "libell_d_acheminement": "PEYRE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40223"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e07c5fbc3a32398f3d4c8fef700c0a6371e4b2", "fields": {"nom_de_la_commune": "PISSOS", "libell_d_acheminement": "PISSOS", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40227"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b75f323bf5c4eeb3ea431c98cb22566ad920501", "fields": {"nom_de_la_commune": "PUJO LE PLAN", "libell_d_acheminement": "PUJO LE PLAN", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40238"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9bfe84f6ec0f5d3114dec739fbb7f0b2c32e7f", "fields": {"nom_de_la_commune": "RION DES LANDES", "libell_d_acheminement": "RION DES LANDES", "code_postal": "40370", "coordonnees_gps": [43.9279657957, -0.915942648289], "code_commune_insee": "40243"}, "geometry": {"type": "Point", "coordinates": [-0.915942648289, 43.9279657957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57bc72035d3c3fdf0df13f480c1477be7088362b", "fields": {"nom_de_la_commune": "RIVIERE SAAS ET GOURBY", "libell_d_acheminement": "RIVIERE SAAS ET GOURBY", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40244"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192a5d07d8293fe934c87051bac2f3003991add7", "fields": {"nom_de_la_commune": "ROQUEFORT", "libell_d_acheminement": "ROQUEFORT", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40245"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2e89381b2040c3f9c6821404eeb9b12a8c6e07", "fields": {"nom_de_la_commune": "ST LOUBOUER", "libell_d_acheminement": "ST LOUBOUER", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40270"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae07c7785cf0e33152fd0d5fa49ba6571a7d1597", "fields": {"nom_de_la_commune": "FLEURAC", "libell_d_acheminement": "FLEURAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16139"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9685db4f02ac0c61422c045fee224b1bd45988", "fields": {"nom_de_la_commune": "GARAT", "libell_d_acheminement": "GARAT", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16146"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54e3566eec0f8d80a60938b3b78f0c6205c82c8", "fields": {"nom_de_la_commune": "GARDES LE PONTAROUX", "libell_d_acheminement": "GARDES LE PONTAROUX", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16147"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be949b47f0e4f1e5f3f8298f5e4787aadc63df48", "fields": {"nom_de_la_commune": "HIERSAC", "libell_d_acheminement": "HIERSAC", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16163"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4881e92b1288c34df4db0bfbcea744339fbb7f", "fields": {"nom_de_la_commune": "JUIGNAC", "libell_d_acheminement": "JUIGNAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16170"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa8204d838483d934d6d7245f2cdfec58c0793e9", "fields": {"nom_de_la_commune": "LAPRADE", "libell_d_acheminement": "LAPRADE", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16180"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39cc3b02f13a57dbf4c3c42c1535bf1a3902e40", "fields": {"nom_de_la_commune": "LESTERPS", "libell_d_acheminement": "LESTERPS", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16182"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3098d020f413043411a268fa8495da22d596f69c", "fields": {"nom_de_la_commune": "LINARS", "libell_d_acheminement": "LINARS", "code_postal": "16730", "coordonnees_gps": [45.6636626896, 0.0767104525338], "code_commune_insee": "16187"}, "geometry": {"type": "Point", "coordinates": [0.0767104525338, 45.6636626896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953044c28e17a2b662cfb814820405594e2dda80", "fields": {"nom_de_la_commune": "LONDIGNY", "libell_d_acheminement": "LONDIGNY", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16189"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200c6cc4bdfe538e8b08548e34204270c9d8b5da", "fields": {"nom_de_la_commune": "LONNES", "libell_d_acheminement": "LONNES", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16191"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f22a4c27f95c522102503a1118fa88a8c31475b", "fields": {"code_postal": "16270", "code_commune_insee": "16192", "libell_d_acheminement": "ROUMAZIERES LOUBERT", "ligne_5": "ROUMAZIERES", "nom_de_la_commune": "ROUMAZIERES LOUBERT", "coordonnees_gps": [45.8834000837, 0.571194894473]}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32f007c2fc47a1a907636f15ecebb812a959d00", "fields": {"nom_de_la_commune": "MAINXE", "libell_d_acheminement": "MAINXE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16202"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71b6fa4568835d60e23c1a3a8540bfc26e27aa1", "fields": {"nom_de_la_commune": "MERIGNAC", "libell_d_acheminement": "MERIGNAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16216"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e10699de136ca75182cd3dcf951545f93a7434d", "fields": {"nom_de_la_commune": "MERPINS", "libell_d_acheminement": "MERPINS", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16217"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea9f05e1537e417ac52b0e2682f048f61805f30", "fields": {"nom_de_la_commune": "LES METAIRIES", "libell_d_acheminement": "LES METAIRIES", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16220"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cabd6538478037144379c19b4c980c8387a37884", "fields": {"nom_de_la_commune": "MONTBOYER", "libell_d_acheminement": "MONTBOYER", "code_postal": "16620", "coordonnees_gps": [45.3315117142, 0.0695852872209], "code_commune_insee": "16222"}, "geometry": {"type": "Point", "coordinates": [0.0695852872209, 45.3315117142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62e8e101edb1880cc6f127aa371b810ed07eb58", "fields": {"code_postal": "16300", "code_commune_insee": "16224", "libell_d_acheminement": "MONTMERAC", "ligne_5": "LAMERAC", "nom_de_la_commune": "MONTMERAC", "coordonnees_gps": [45.4825627066, -0.162479147759]}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7578016f2ea31d87e7e15ef1ba42ffbc77d0e4c2", "fields": {"code_postal": "16300", "code_commune_insee": "16224", "libell_d_acheminement": "MONTMERAC", "ligne_5": "MONTCHAUDE", "nom_de_la_commune": "MONTMERAC", "coordonnees_gps": [45.4825627066, -0.162479147759]}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a391c2cf20f804b60ae902a610188b5fc7f314", "fields": {"nom_de_la_commune": "MONTJEAN", "libell_d_acheminement": "MONTJEAN", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16229"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5022476b24b10ac9865c27c90e0dd6d6d56a892", "fields": {"nom_de_la_commune": "MOULIDARS", "libell_d_acheminement": "MOULIDARS", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16234"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7bcf427fa31e5dd56a24cc0f3c560505080749", "fields": {"nom_de_la_commune": "MOUTONNEAU", "libell_d_acheminement": "MOUTONNEAU", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16238"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903338a977e9499a19d549cade56901a65369978", "fields": {"nom_de_la_commune": "NANTEUIL EN VALLEE", "libell_d_acheminement": "NANTEUIL EN VALLEE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16242"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712fd3090adbb779dfab164312c840900659acb8", "fields": {"nom_de_la_commune": "ORADOUR", "libell_d_acheminement": "ORADOUR", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16248"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039af9c8d3bf06e6d9869f8ba28f397597955518", "fields": {"nom_de_la_commune": "ORADOUR FANAIS", "libell_d_acheminement": "ORADOUR FANAIS", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16249"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4388c3f8dbd234af8c43c35de0419afef8d4ff", "fields": {"nom_de_la_commune": "PASSIRAC", "libell_d_acheminement": "PASSIRAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16256"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4097e219ced21e99e2625b7e53b9f0081247f9e9", "fields": {"nom_de_la_commune": "LA PERUSE", "libell_d_acheminement": "LA PERUSE", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16259"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c890485406baa9d145af75733d23204f0dfefe40", "fields": {"nom_de_la_commune": "POULLIGNAC", "libell_d_acheminement": "POULLIGNAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16267"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de4ff238dbac4bd26c34473bffe762e6fb7dad9", "fields": {"nom_de_la_commune": "PRESSIGNAC", "libell_d_acheminement": "PRESSIGNAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16270"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32df95d76320b96f2d6141430dc51936eea8f21", "fields": {"nom_de_la_commune": "RANVILLE BREUILLAUD", "libell_d_acheminement": "RANVILLE BREUILLAUD", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16275"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc499d5516a6ddecc4df2cc18fa74d3337e8bfc", "fields": {"nom_de_la_commune": "REPARSAC", "libell_d_acheminement": "REPARSAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16277"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d2a769afe74366250440c624027ca0e89bf617", "fields": {"nom_de_la_commune": "RIVIERES", "libell_d_acheminement": "RIVIERES", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16280"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c2ebe85c20a060cbec9ee208617dbf6726351c", "fields": {"nom_de_la_commune": "RONSENAC", "libell_d_acheminement": "RONSENAC", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16283"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a6c884d0beb0db6e684420c45b5f05e0f1b3746", "fields": {"code_postal": "16170", "code_commune_insee": "16286", "libell_d_acheminement": "ROUILLAC", "ligne_5": "PLAIZAC", "nom_de_la_commune": "ROUILLAC", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99b6a3550c33c42c6ff9d64e4f676251bed679c", "fields": {"nom_de_la_commune": "RUFFEC", "libell_d_acheminement": "RUFFEC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16292"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f833c59bf3f8811087d646a3f0add06d2cfe6cf", "fields": {"nom_de_la_commune": "GRAVES ST AMANT", "libell_d_acheminement": "GRAVES ST AMANT", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16297"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03222171fd621a8848ab1eaac1ee266b951a758f", "fields": {"nom_de_la_commune": "ST BONNET", "libell_d_acheminement": "ST BONNET", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16303"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ec0eef856526b6f8518d82692c78c81c0f7c65", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16306"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3a209de12a1d8e6ae52993c85bbb969babc904", "fields": {"nom_de_la_commune": "ST CYBARDEAUX", "libell_d_acheminement": "ST CYBARDEAUX", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16312"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a40574bad7ab24366d7c64199a9346b97a79a0", "fields": {"nom_de_la_commune": "ST FORT SUR LE NE", "libell_d_acheminement": "ST FORT SUR LE NE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16316"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1a840bdaadb3e41e50b17f881db305cbec0cee1", "fields": {"nom_de_la_commune": "ST FRONT", "libell_d_acheminement": "ST FRONT", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16318"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045db47f48be69ff8af1929401633bae10c1b89d", "fields": {"nom_de_la_commune": "ST GERMAIN DE MONTBRON", "libell_d_acheminement": "ST GERMAIN DE MONTBRON", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16323"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb2623aea0106b7a37ef73a5b71761995e50553", "fields": {"nom_de_la_commune": "AUGE ST MEDARD", "libell_d_acheminement": "AUGE ST MEDARD", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16339"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0e58e61a6ff8714f94d96511ed9761691f9098", "fields": {"code_postal": "16170", "code_commune_insee": "16339", "libell_d_acheminement": "AUGE ST MEDARD", "ligne_5": "AUGE", "nom_de_la_commune": "AUGE ST MEDARD", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3532fb9d781c72fc4a5e545cc151516bd92fb6d8", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "16470", "coordonnees_gps": [45.6395721277, 0.110227068021], "code_commune_insee": "16341"}, "geometry": {"type": "Point", "coordinates": [0.110227068021, 45.6395721277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cf59c332e442e0f530e300a988ba367f34cbb3", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16352"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e71f69b3f277350c832b715ee7b8efb0bc2db753", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16357"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3dad8953a12983e54c65a7c483e11c58434795", "fields": {"nom_de_la_commune": "SALLES DE VILLEFAGNAN", "libell_d_acheminement": "SALLES DE VILLEFAGNAN", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16361"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064d2d5e7302f6369b29289754fd19d986a062df", "fields": {"nom_de_la_commune": "SALLES LAVALETTE", "libell_d_acheminement": "SALLES LAVALETTE", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16362"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21de88623e1f4b13506e15cbb4205f62ab91894c", "fields": {"nom_de_la_commune": "SAUVAGNAC", "libell_d_acheminement": "SAUVAGNAC", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16364"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1f495c906e297783f3355ffaf13e2ed5f2504b", "fields": {"nom_de_la_commune": "SAUVIGNAC", "libell_d_acheminement": "SAUVIGNAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16365"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1388395bdcc03cf2095782435d8699449daa86c4", "fields": {"nom_de_la_commune": "SIGOGNE", "libell_d_acheminement": "SIGOGNE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16369"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f848e130df6af148728aedde63a7c83c8c0a9a", "fields": {"nom_de_la_commune": "SOYAUX", "libell_d_acheminement": "SOYAUX", "code_postal": "16800", "coordonnees_gps": [45.6393006522, 0.206735846336], "code_commune_insee": "16374"}, "geometry": {"type": "Point", "coordinates": [0.206735846336, 45.6393006522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93676ea63121eb8e92a155afdbc5f34444b1724", "fields": {"nom_de_la_commune": "TAPONNAT FLEURIGNAC", "libell_d_acheminement": "TAPONNAT FLEURIGNAC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16379"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02957a5dc0ae08c973ee56d076fca11c08efc8e", "fields": {"nom_de_la_commune": "THEIL RABIER", "libell_d_acheminement": "THEIL RABIER", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16381"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b8c839a87c1f816e7b4801561c2a011661cbd9", "fields": {"nom_de_la_commune": "TOURRIERS", "libell_d_acheminement": "TOURRIERS", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16383"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48b1cdc11e85ea587ff4d91d4b21b31e0d6ec7f", "fields": {"nom_de_la_commune": "TOUVERAC", "libell_d_acheminement": "TOUVERAC", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16384"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a02d2f44d781f242ce2971dccd166450713995", "fields": {"nom_de_la_commune": "TROIS PALIS", "libell_d_acheminement": "TROIS PALIS", "code_postal": "16730", "coordonnees_gps": [45.6636626896, 0.0767104525338], "code_commune_insee": "16388"}, "geometry": {"type": "Point", "coordinates": [0.0767104525338, 45.6636626896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6086566b7de56c4999a5c8e5f161815e250914", "fields": {"nom_de_la_commune": "TUSSON", "libell_d_acheminement": "TUSSON", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16390"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8133c56a4e45adcd33e851cbeefe45aa89870f4d", "fields": {"nom_de_la_commune": "VAUX LAVALETTE", "libell_d_acheminement": "VAUX LAVALETTE", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16394"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd4258c62ed1082e4b8c53a7b0e4a9834ae1b605", "fields": {"nom_de_la_commune": "VIGNOLLES", "libell_d_acheminement": "VIGNOLLES", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16405"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b7db4c051f6f709c7d3ca47b0ced9c53490806", "fields": {"nom_de_la_commune": "VILLEBOIS LAVALETTE", "libell_d_acheminement": "VILLEBOIS LAVALETTE", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16408"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa57880c2af48cef57f00448a4a6de42c23e5e1", "fields": {"nom_de_la_commune": "VINDELLE", "libell_d_acheminement": "VINDELLE", "code_postal": "16430", "coordonnees_gps": [45.7168170917, 0.172931779313], "code_commune_insee": "16415"}, "geometry": {"type": "Point", "coordinates": [0.172931779313, 45.7168170917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a643f85b8dad84b92fc94b6cc01c115401310d0e", "fields": {"nom_de_la_commune": "VIVILLE", "libell_d_acheminement": "VIVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16417"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b73a933631f7cce627bac26dd50bcbd77effcf00", "fields": {"nom_de_la_commune": "VOUZAN", "libell_d_acheminement": "VOUZAN", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16422"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc5b89e31054d499882295bf13e441679c4d795", "fields": {"nom_de_la_commune": "ILE D AIX", "libell_d_acheminement": "ILE D AIX", "code_postal": "17123", "coordonnees_gps": [46.0185702951, -1.16933710138], "code_commune_insee": "17004"}, "geometry": {"type": "Point", "coordinates": [-1.16933710138, 46.0185702951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ae57b6c386fea32ec55d30aa4c496bab99d83c", "fields": {"nom_de_la_commune": "ALLAS BOCAGE", "libell_d_acheminement": "ALLAS BOCAGE", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17005"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf9f5c37f346c308e11ef2f7679305afeb5d94bd", "fields": {"nom_de_la_commune": "ANAIS", "libell_d_acheminement": "ANAIS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17007"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbfe33523caab83469a9857037c55225b00989b", "fields": {"nom_de_la_commune": "ARTHENAC", "libell_d_acheminement": "ARTHENAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17020"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b122aa6881f2871a462cc8575b6026556601b0", "fields": {"nom_de_la_commune": "AUMAGNE", "libell_d_acheminement": "AUMAGNE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17025"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dce8f4c97028a9d75b98b8f8ca306a716baeff", "fields": {"nom_de_la_commune": "AUTHON EBEON", "libell_d_acheminement": "AUTHON EBEON", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17026"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a87fa577e935da31b3d84e1a7b544046f5a9393", "fields": {"code_postal": "17770", "code_commune_insee": "17026", "libell_d_acheminement": "AUTHON EBEON", "ligne_5": "EBEON", "nom_de_la_commune": "AUTHON EBEON", "coordonnees_gps": [45.8271073503, -0.466918444884]}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52d0a4e67dc9d7ab29f7ae3f2962e431b1cdb9f", "fields": {"nom_de_la_commune": "AYTRE", "libell_d_acheminement": "AYTRE", "code_postal": "17440", "coordonnees_gps": [46.1344639343, -1.11333325523], "code_commune_insee": "17028"}, "geometry": {"type": "Point", "coordinates": [-1.11333325523, 46.1344639343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e77687643f974a7d5ec6d59bc0951cd2daf640", "fields": {"nom_de_la_commune": "BAGNIZEAU", "libell_d_acheminement": "BAGNIZEAU", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17029"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7f0cddac851650c65d72aa7f982ff483873587", "fields": {"nom_de_la_commune": "LA BARDE", "libell_d_acheminement": "LA BARDE", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17033"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d98b040e4f4ae4f08c6393be763cbb5bc3388353", "fields": {"nom_de_la_commune": "BAZAUGES", "libell_d_acheminement": "BAZAUGES", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17035"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98273c35718d079211449477c6f0c1fa5a0f891a", "fields": {"nom_de_la_commune": "BELLUIRE", "libell_d_acheminement": "BELLUIRE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17039"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9cb71993bf2116187b219c9d30793439834252", "fields": {"nom_de_la_commune": "BIRON", "libell_d_acheminement": "BIRON", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17047"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61eddd42ca8abab6f1df6592ccf66f9df6bb847e", "fields": {"nom_de_la_commune": "BLANZAY SUR BOUTONNE", "libell_d_acheminement": "BLANZAY SUR BOUTONNE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17049"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078a719a6699ecd4fe2b94ced1e4a9c0d7efa33a", "fields": {"nom_de_la_commune": "BORDS", "libell_d_acheminement": "BORDS", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17053"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afffc7c7fdecc5e4e9355014f5bdac1b67966e8e", "fields": {"nom_de_la_commune": "BOUHET", "libell_d_acheminement": "BOUHET", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17057"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a89f118e9e015e7fae919a8f85bb5d5351ed071e", "fields": {"nom_de_la_commune": "BRAN", "libell_d_acheminement": "BRAN", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17061"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64975b8d3441afb620503e3379de7bdb2535529d", "fields": {"nom_de_la_commune": "BREUIL MAGNE", "libell_d_acheminement": "BREUIL MAGNE", "code_postal": "17870", "coordonnees_gps": [45.997423768, -0.952432247798], "code_commune_insee": "17065"}, "geometry": {"type": "Point", "coordinates": [-0.952432247798, 45.997423768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43964d1268b3a158e8dc6d326a95a4cf9942088c", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17076"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ee4b69c8a21acb25d102478c7642fee1a90f19", "fields": {"nom_de_la_commune": "CERCOUX", "libell_d_acheminement": "CERCOUX", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17077"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36fcddb4cf80e57287a7ccde7852b7bb57d7a617", "fields": {"nom_de_la_commune": "CHAMPAGNOLLES", "libell_d_acheminement": "CHAMPAGNOLLES", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17084"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6968ddc09ceea8ad72122a247b31864a4e0a8c0", "fields": {"nom_de_la_commune": "LE CHATEAU D OLERON", "libell_d_acheminement": "LE CHATEAU D OLERON", "code_postal": "17480", "coordonnees_gps": [45.8814200371, -1.21657707924], "code_commune_insee": "17093"}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275f9037d7c2c2848c4534698818fe8b8b33ee95", "fields": {"nom_de_la_commune": "CHERVETTES", "libell_d_acheminement": "CHERVETTES", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17103"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f1480b6a1ba6d3e58248f88cbbfda6e8e1565a", "fields": {"nom_de_la_commune": "CLAM", "libell_d_acheminement": "CLAM", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17108"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac5d3863babdc150184e33654fce7764cad621a", "fields": {"nom_de_la_commune": "CLAVETTE", "libell_d_acheminement": "CLAVETTE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17109"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7609fccdafe3f720206b4d19b1b0165dcbf099d", "fields": {"nom_de_la_commune": "CONTRE", "libell_d_acheminement": "CONTRE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17117"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49880e6c3aea80e566f342e78941ba401c9ef311", "fields": {"nom_de_la_commune": "COURCON", "libell_d_acheminement": "COURCON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17127"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cabf6d5fb1ccae8e3e76cf4111e826b6bf677c", "fields": {"nom_de_la_commune": "CRESSE", "libell_d_acheminement": "CRESSE", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17135"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8827364ba91c9fb5af6f04ee3d45101db598ee12", "fields": {"nom_de_la_commune": "DOEUIL SUR LE MIGNON", "libell_d_acheminement": "DOEUIL SUR LE MIGNON", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17139"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab6c1995919ad882894713cbf363f8bd3e63abd", "fields": {"nom_de_la_commune": "LES EGLISES D ARGENTEUIL", "libell_d_acheminement": "LES EGLISES D ARGENTEUIL", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17150"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129dcc0637c6dbce8def0eaf0de04e9435d54c8b", "fields": {"nom_de_la_commune": "ESNANDES", "libell_d_acheminement": "ESNANDES", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17153"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136f6858ac7874e70892d39747c99ffd4465f8ed", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17158"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1cb0a9674f9a017d326ec2a6feb7a34012d9e9", "fields": {"nom_de_la_commune": "FLOIRAC", "libell_d_acheminement": "FLOIRAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17160"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fcbc55792f0a40fe1a9813fa0ff238f1aaf6566", "fields": {"nom_de_la_commune": "LA FREDIERE", "libell_d_acheminement": "LA FREDIERE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17169"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eceac78577e1c89bcda15a5ed87cb5f0b4a026a", "fields": {"nom_de_la_commune": "GERMIGNAC", "libell_d_acheminement": "GERMIGNAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17175"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2ef911b8994431b6962d8b704e62afbffb7a715", "fields": {"nom_de_la_commune": "GIVREZAC", "libell_d_acheminement": "GIVREZAC", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17178"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a5714b5fea121224cf98810e5437838496ed9f", "fields": {"nom_de_la_commune": "COATREVEN", "libell_d_acheminement": "COATREVEN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22042"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80f954ecb06a4f8cbb8c9631d092d317764e7b12", "fields": {"nom_de_la_commune": "COETMIEUX", "libell_d_acheminement": "COETMIEUX", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22044"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b279d7c992bff580ca36902ca26225a312941f80", "fields": {"nom_de_la_commune": "DINAN", "libell_d_acheminement": "DINAN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22050"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38baf96cbddf3d17da01b87b2e8a5459fb333ed1", "fields": {"nom_de_la_commune": "DUAULT", "libell_d_acheminement": "DUAULT", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22052"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f8c4c6ddd8261dda843c97737737d1d443acd1", "fields": {"code_postal": "22430", "code_commune_insee": "22054", "libell_d_acheminement": "ERQUY", "ligne_5": "LES HOPITAUX", "nom_de_la_commune": "ERQUY", "coordonnees_gps": [48.6189302635, -2.45852814283]}, "geometry": {"type": "Point", "coordinates": [-2.45852814283, 48.6189302635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a67c6a4595dc420868b117c9f91489eceb1d340", "fields": {"nom_de_la_commune": "LE FOEIL", "libell_d_acheminement": "LE FOEIL", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22059"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c54d3eb6077737a1f937a19ce27a6792275bbb", "fields": {"nom_de_la_commune": "GOUAREC", "libell_d_acheminement": "GOUAREC", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22064"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a95e1e7a76fbfe7bd9cdacf167dde64719baed2f", "fields": {"nom_de_la_commune": "GRACE UZEL", "libell_d_acheminement": "GRACE UZEL", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22068"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5930db318a20c0232264a90911023e558b8638ec", "fields": {"nom_de_la_commune": "LE HAUT CORLAY", "libell_d_acheminement": "LE HAUT CORLAY", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22074"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5887243b2d870b26092dee161e57541efcbc0ae3", "fields": {"nom_de_la_commune": "HENANBIHEN", "libell_d_acheminement": "HENANBIHEN", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22076"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c160dadd0be7519cb93ba254c7ad249dd638f6e", "fields": {"nom_de_la_commune": "HENANSAL", "libell_d_acheminement": "HENANSAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22077"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9740cd804464b271839cf16d40c3f9da065432ab", "fields": {"nom_de_la_commune": "LE HINGLE", "libell_d_acheminement": "LE HINGLE", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22082"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322b7278f4d1c63a724a4e9e34b40ad77b69d85b", "fields": {"code_postal": "22270", "code_commune_insee": "22084", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "ligne_5": "LESCOUET JUGON", "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "coordonnees_gps": [48.4388729687, -2.34282802999]}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdf6276f3abcc5679f97b3fe799d3bad4e7d8ac", "fields": {"nom_de_la_commune": "KERBORS", "libell_d_acheminement": "KERBORS", "code_postal": "22610", "coordonnees_gps": [48.8387667808, -3.14072269056], "code_commune_insee": "22085"}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1edfb989926b443d032c265143d92bcb6a4ffdb8", "fields": {"nom_de_la_commune": "KERPERT", "libell_d_acheminement": "KERPERT", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22092"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d9c8dbcab691033ee8c90b07128936126aca4d", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "MAROUE", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742694c7f1c7fa52a1fa7feae53a6baaf5db65a2", "fields": {"nom_de_la_commune": "LANISCAT", "libell_d_acheminement": "LANISCAT", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22107"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ea9c31a55eeb1101dfe21f29b9302ca8c1dff1", "fields": {"nom_de_la_commune": "LANRIVAIN", "libell_d_acheminement": "LANRIVAIN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22115"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0eff5be2aeb15c90448848d29f6b8b5ca35759", "fields": {"code_postal": "22100", "code_commune_insee": "22118", "libell_d_acheminement": "LANVALLAY", "ligne_5": "TRESSAINT", "nom_de_la_commune": "LANVALLAY", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310d0933c1a7d6293d54a0ce6abf32de499063b4", "fields": {"nom_de_la_commune": "LOUARGAT", "libell_d_acheminement": "LOUARGAT", "code_postal": "22540", "coordonnees_gps": [48.5672822265, -3.30848163045], "code_commune_insee": "22135"}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15eb12ec02d3314bf703ac0bc0c9f571128ce636", "fields": {"code_postal": "22540", "code_commune_insee": "22135", "libell_d_acheminement": "LOUARGAT", "ligne_5": "ST ELOI", "nom_de_la_commune": "LOUARGAT", "coordonnees_gps": [48.5672822265, -3.30848163045]}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ab339a3591c68bf243cc8e9ff8bd735e24e377", "fields": {"nom_de_la_commune": "LOUDEAC", "libell_d_acheminement": "LOUDEAC", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22136"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2303e679b8b0781f01ff9f8e17de6ae58425eb1", "fields": {"nom_de_la_commune": "MAEL PESTIVIEN", "libell_d_acheminement": "MAEL PESTIVIEN", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22138"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9281e062d250b0e0984d323d77b9d51d6203f960", "fields": {"nom_de_la_commune": "PAULE", "libell_d_acheminement": "PAULE", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22163"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2449ee95d7b9eff95cac7552fe13cb77667bdbba", "fields": {"code_postal": "22540", "code_commune_insee": "22164", "libell_d_acheminement": "PEDERNEC", "ligne_5": "LE QUINQUIS", "nom_de_la_commune": "PEDERNEC", "coordonnees_gps": [48.5672822265, -3.30848163045]}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0033a3074cb9aff35f2b120179e06b36cb6ebeb", "fields": {"code_postal": "22710", "code_commune_insee": "22166", "libell_d_acheminement": "PENVENAN", "ligne_5": "BUGUELES", "nom_de_la_commune": "PENVENAN", "coordonnees_gps": [48.815824264, -3.30211967596]}, "geometry": {"type": "Point", "coordinates": [-3.30211967596, 48.815824264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a11c290b0093d5b5d594d0ace4570482d2cd17", "fields": {"nom_de_la_commune": "PERRET", "libell_d_acheminement": "PERRET", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22167"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe1183b6f38d53cf445a7b0d476481bc0eeec89", "fields": {"code_postal": "22700", "code_commune_insee": "22168", "libell_d_acheminement": "PERROS GUIREC", "ligne_5": "LA CLARTE", "nom_de_la_commune": "PERROS GUIREC", "coordonnees_gps": [48.7941225989, -3.4412963824]}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b477f2a7a34ef9bd8ad43fa134f3723bd204f4b4", "fields": {"nom_de_la_commune": "PLELAN LE PETIT", "libell_d_acheminement": "PLELAN LE PETIT", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22180"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b9d4358ed53265153d6b865b65d98c239cad5f", "fields": {"nom_de_la_commune": "PLELAUFF", "libell_d_acheminement": "PLELAUFF", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22181"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61082bde73427529c3541c327b32931717bfa31", "fields": {"nom_de_la_commune": "PLELO", "libell_d_acheminement": "PLELO", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22182"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66937793452f59d60d5324906ba83bb17f8974c9", "fields": {"code_postal": "22190", "code_commune_insee": "22187", "libell_d_acheminement": "PLERIN", "ligne_5": "ST LAURENT DE LA MER", "nom_de_la_commune": "PLERIN", "coordonnees_gps": [48.5437270249, -2.77055983387]}, "geometry": {"type": "Point", "coordinates": [-2.77055983387, 48.5437270249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8390a8d1483235d74476a36fc579fea01f6e0605", "fields": {"nom_de_la_commune": "PLESIDY", "libell_d_acheminement": "PLESIDY", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22189"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5e520bb680bed74101c40d19b5b9b3230e07eac", "fields": {"code_postal": "22490", "code_commune_insee": "22190", "libell_d_acheminement": "PLESLIN TRIGAVOU", "ligne_5": "TRIGAVOU", "nom_de_la_commune": "PLESLIN TRIGAVOU", "coordonnees_gps": [48.5318949869, -2.03987229623]}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d3546e4222fd01472ef9fb997e86b057c3b18b", "fields": {"nom_de_la_commune": "PLESTIN LES GREVES", "libell_d_acheminement": "PLESTIN LES GREVES", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22194"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26caf9056fdfd440b3808fdcba132350f48b95c1", "fields": {"nom_de_la_commune": "PLEUMEUR BODOU", "libell_d_acheminement": "PLEUMEUR BODOU", "code_postal": "22560", "coordonnees_gps": [48.7801847576, -3.53025413579], "code_commune_insee": "22198"}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0a14fe9e9c76b445fe1509289503b49c357fdc", "fields": {"nom_de_la_commune": "PLEVEN", "libell_d_acheminement": "PLEVEN", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22200"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e29cd351bcec662edd2378ea568ab1fee5ae400", "fields": {"code_postal": "22150", "code_commune_insee": "22203", "libell_d_acheminement": "PLOEUC L HERMITAGE", "ligne_5": "L HERMITAGE LORGE", "nom_de_la_commune": "PLOEUC L HERMITAGE", "coordonnees_gps": [48.3345820629, -2.7121618919]}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c511bfc957e10d9642fe9c9eeb2c5d6cbb1a774", "fields": {"nom_de_la_commune": "PLOUASNE", "libell_d_acheminement": "PLOUASNE", "code_postal": "22830", "coordonnees_gps": [48.3117069746, -2.00817684583], "code_commune_insee": "22208"}, "geometry": {"type": "Point", "coordinates": [-2.00817684583, 48.3117069746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35c05458b9336e468a27716b82ab46af6bdac6c", "fields": {"code_postal": "22620", "code_commune_insee": "22210", "libell_d_acheminement": "PLOUBAZLANEC", "ligne_5": "LOGUIVY DE LA MER", "nom_de_la_commune": "PLOUBAZLANEC", "coordonnees_gps": [48.8054371509, -3.04487100542]}, "geometry": {"type": "Point", "coordinates": [-3.04487100542, 48.8054371509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f108b62741744336749e73702e401651bf96b23e", "fields": {"nom_de_la_commune": "PLOUEC DU TRIEUX", "libell_d_acheminement": "PLOUEC DU TRIEUX", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22212"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf54888a9201d0a73e6650af32409c7f78e77c5", "fields": {"nom_de_la_commune": "PLOUGRAS", "libell_d_acheminement": "PLOUGRAS", "code_postal": "22780", "coordonnees_gps": [48.5213777811, -3.52574815356], "code_commune_insee": "22217"}, "geometry": {"type": "Point", "coordinates": [-3.52574815356, 48.5213777811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b432f4ac9b2bad2624c535f2da7dd14d8d17b7", "fields": {"nom_de_la_commune": "PLOUGRESCANT", "libell_d_acheminement": "PLOUGRESCANT", "code_postal": "22820", "coordonnees_gps": [48.8392172818, -3.24081832109], "code_commune_insee": "22218"}, "geometry": {"type": "Point", "coordinates": [-3.24081832109, 48.8392172818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d99f6e4b3b7df3ee16f5bab90b8fd5eb0b2aecb", "fields": {"nom_de_la_commune": "PLOUGUERNEVEL", "libell_d_acheminement": "PLOUGUERNEVEL", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22220"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7bff75e5f38ca95632ad5ae943764de9d7b9667", "fields": {"nom_de_la_commune": "PLOUGUIEL", "libell_d_acheminement": "PLOUGUIEL", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22221"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f28b3bda62e41d7750a2c6a09d29da915906ba", "fields": {"nom_de_la_commune": "PLOULEC H", "libell_d_acheminement": "PLOULEC H", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22224"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c42b07b5bdf7951b0edd76fcdb75a3d15f0a6be", "fields": {"code_postal": "22300", "code_commune_insee": "22224", "libell_d_acheminement": "PLOULEC H", "ligne_5": "LE YAUDET", "nom_de_la_commune": "PLOULEC H", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064b8975941c229c0f73f6c92c2601330ce19fd8", "fields": {"nom_de_la_commune": "PLUDUNO", "libell_d_acheminement": "PLUDUNO", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22237"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67dac2f535a90ada3785b90f30e0ba2cbe56592a", "fields": {"nom_de_la_commune": "PLUFUR", "libell_d_acheminement": "PLUFUR", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22238"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41edc92e7425bba192f310a162089b68af105f7", "fields": {"nom_de_la_commune": "PLUMAUGAT", "libell_d_acheminement": "PLUMAUGAT", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22240"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe7001caeea1e8be681a086cc0c5460ceac1a60", "fields": {"nom_de_la_commune": "PLUMIEUX", "libell_d_acheminement": "PLUMIEUX", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22241"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44030d156a832e476c22753fd64e44fb929f32d4", "fields": {"nom_de_la_commune": "POMMERIT LE VICOMTE", "libell_d_acheminement": "POMMERIT LE VICOMTE", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22248"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3298fc3e0e76f9560b3e7b34d0fc7f46b8af4da5", "fields": {"nom_de_la_commune": "QUINTIN", "libell_d_acheminement": "QUINTIN", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22262"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7c391c0ce92dde0e6a0acae2bdcca190de9452", "fields": {"nom_de_la_commune": "RUCA", "libell_d_acheminement": "RUCA", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22268"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b5bcf4d89a0c8fae197632dbb19937f7062f5a", "fields": {"nom_de_la_commune": "ST BARNABE", "libell_d_acheminement": "ST BARNABE", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22275"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac4cfd22e406b2e097da487fb63a00355239861", "fields": {"nom_de_la_commune": "ST BIHY", "libell_d_acheminement": "ST BIHY", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22276"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d72f50391e85be9ddc7ad79709e5dfe87b5920", "fields": {"nom_de_la_commune": "ST ETIENNE DU GUE DE L ISLE", "libell_d_acheminement": "ST ETIENNE DU GUE DE L ISLE", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22288"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4432a50604bbbcf4c5553b8c02936d8aed7baabf", "fields": {"nom_de_la_commune": "ST JUVAT", "libell_d_acheminement": "ST JUVAT", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22308"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a0da716166d0c558a59b0440c9001766164a777", "fields": {"nom_de_la_commune": "ST LORMEL", "libell_d_acheminement": "ST LORMEL", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22311"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc96e0632eaabb64f7b403d63a78cd43318cb42", "fields": {"nom_de_la_commune": "ST QUAY PORTRIEUX", "libell_d_acheminement": "ST QUAY PORTRIEUX", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22325"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "604fb574094b56f2619fa0ea044b323937b2fe30", "fields": {"nom_de_la_commune": "ST SERVAIS", "libell_d_acheminement": "ST SERVAIS", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22328"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2256cc1bc765af75a02f5a3f6bfa750218ecac6b", "fields": {"nom_de_la_commune": "ST IGEAUX", "libell_d_acheminement": "ST IGEAUX", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22334"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7cb681d87f147a616185dd55f3c06ebcdd63ec", "fields": {"nom_de_la_commune": "TADEN", "libell_d_acheminement": "TADEN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22339"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f37130c3169f77b5f169f0026ce9775e0d42770", "fields": {"code_postal": "22300", "code_commune_insee": "22349", "libell_d_acheminement": "TREDREZ LOCQUEMEAU", "ligne_5": "LOCQUEMEAU", "nom_de_la_commune": "TREDREZ LOCQUEMEAU", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953efd5e11042daf8ebb6b45333bd47b34f1e2a4", "fields": {"nom_de_la_commune": "TREGROM", "libell_d_acheminement": "TREGROM", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22359"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd8577216871dab29d84dffb39d0fb955d32bb2", "fields": {"code_postal": "22950", "code_commune_insee": "22360", "libell_d_acheminement": "TREGUEUX", "ligne_5": "CREAC H TREGUEUX", "nom_de_la_commune": "TREGUEUX", "coordonnees_gps": [48.480585356, -2.74472433795]}, "geometry": {"type": "Point", "coordinates": [-2.74472433795, 48.480585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0223a6e28092c0f7ac9714146680d35ffbc2c6c9", "fields": {"nom_de_la_commune": "TREMARGAT", "libell_d_acheminement": "TREMARGAT", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22365"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f1867f406c25f1ced888f4efb9f03d6aa24091", "fields": {"nom_de_la_commune": "TREMEREUC", "libell_d_acheminement": "TREMEREUC", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22368"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02579da99d4d5467858f35eead8b4a5f90dfd823", "fields": {"nom_de_la_commune": "TREMOREL", "libell_d_acheminement": "TREMOREL", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22371"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6a5a67e4fe072e8338eeaa6e4b3d219209abda", "fields": {"nom_de_la_commune": "TREMUSON", "libell_d_acheminement": "TREMUSON", "code_postal": "22440", "coordonnees_gps": [48.4956130543, -2.82108365648], "code_commune_insee": "22372"}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d11c388d83b40ab388feaee2fd35c402cd22a61e", "fields": {"nom_de_la_commune": "TREVEREC", "libell_d_acheminement": "TREVEREC", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22378"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f74ffdb6e451b27dc5f2f3d7869db1cc29b688", "fields": {"nom_de_la_commune": "TREVRON", "libell_d_acheminement": "TREVRON", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22380"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e9e05389db1be6c0aa645c4dfe8a87064b4dec", "fields": {"nom_de_la_commune": "ARRENES", "libell_d_acheminement": "ARRENES", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23006"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6911e2322326aac2c1805c87266d8cad3401b46", "fields": {"nom_de_la_commune": "AUGERES", "libell_d_acheminement": "AUGERES", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23010"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048185e5052eb65129035a74b828c3283c338182", "fields": {"nom_de_la_commune": "BASVILLE", "libell_d_acheminement": "BASVILLE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23017"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c9b7093694d4a072581657b107165a6942eac5", "fields": {"nom_de_la_commune": "LE BOURG D HEM", "libell_d_acheminement": "LE BOURG D HEM", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23029"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5712ae3badc8d0223232330cdccbed4b2e3a62", "fields": {"nom_de_la_commune": "BOUSSAC", "libell_d_acheminement": "BOUSSAC", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23031"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e7d772e4a05ba91085c811523ef280d1f981966", "fields": {"nom_de_la_commune": "CHAMPAGNAT", "libell_d_acheminement": "CHAMPAGNAT", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23048"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522995da30377bc13e9dabd2b0d52b1ce016ecdc", "fields": {"nom_de_la_commune": "LA CHAPELLE BALOUE", "libell_d_acheminement": "LA CHAPELLE BALOUE", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23050"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa12cbb483767264be49eeee056932bcf5c5357", "fields": {"nom_de_la_commune": "LE CHAUCHET", "libell_d_acheminement": "LE CHAUCHET", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23058"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c157169784df9ab26511dc5a56019cc1d7f6d6a8", "fields": {"nom_de_la_commune": "CHENIERS", "libell_d_acheminement": "CHENIERS", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23062"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bfeb54aaa9c9f08296f1bd64cde5d659af9224", "fields": {"nom_de_la_commune": "LA COURTINE", "libell_d_acheminement": "LA COURTINE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23067"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed71a93dcbc5b8d70d6e0d76b11b71621c51c678", "fields": {"nom_de_la_commune": "CROCQ", "libell_d_acheminement": "CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23069"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c2106cc9a6c8fa9b8a0ae3ff5e2313d4b1442e", "fields": {"nom_de_la_commune": "DOMEYROT", "libell_d_acheminement": "DOMEYROT", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23072"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad921b27c99171d8068060e1199ceef719c0f10", "fields": {"nom_de_la_commune": "FAUX LA MONTAGNE", "libell_d_acheminement": "FAUX LA MONTAGNE", "code_postal": "23340", "coordonnees_gps": [45.7675202312, 1.97700019659], "code_commune_insee": "23077"}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc90d44e243ce590ab310a4419e220c64aea6502", "fields": {"nom_de_la_commune": "FENIERS", "libell_d_acheminement": "FENIERS", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23080"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4fda80400b70095353a9358ad677646ce649e0", "fields": {"nom_de_la_commune": "FLAYAT", "libell_d_acheminement": "FLAYAT", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23081"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7359d45ef1ad1d755bf1b42549f4767a5a8d30", "fields": {"nom_de_la_commune": "FLEURAT", "libell_d_acheminement": "FLEURAT", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23082"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d23ad17291b22881ec8aad2b0ddb5af19fe105", "fields": {"nom_de_la_commune": "LA FORET DU TEMPLE", "libell_d_acheminement": "LA FORET DU TEMPLE", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23084"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7273a975340a5f6db96d0b8e66b50eaaa547a98a", "fields": {"nom_de_la_commune": "FRESSELINES", "libell_d_acheminement": "FRESSELINES", "code_postal": "23450", "coordonnees_gps": [46.3780749476, 1.6990945184], "code_commune_insee": "23087"}, "geometry": {"type": "Point", "coordinates": [1.6990945184, 46.3780749476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ff2f0c3d7c19de552a7e945210b8a59c4e67ee", "fields": {"nom_de_la_commune": "GENOUILLAC", "libell_d_acheminement": "GENOUILLAC", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23089"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610a96327efa31a162477718f369a8d21a46e6fe", "fields": {"code_postal": "23340", "code_commune_insee": "23090", "libell_d_acheminement": "GENTIOUX PIGEROLLES", "ligne_5": "PIGEROLLES", "nom_de_la_commune": "GENTIOUX PIGEROLLES", "coordonnees_gps": [45.7675202312, 1.97700019659]}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2b8f0d221cf6687355efe58662be3d69f380c8", "fields": {"nom_de_la_commune": "GOUZON", "libell_d_acheminement": "GOUZON", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23093"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3522edee593ad358a1bd08957b52180d79a9150", "fields": {"nom_de_la_commune": "LADAPEYRE", "libell_d_acheminement": "LADAPEYRE", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23102"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88930f92e0d4a0e26a786ccca89cfdd1d41432b1", "fields": {"nom_de_la_commune": "LEPINAS", "libell_d_acheminement": "LEPINAS", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23107"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51df351d26fef5975b0b43c603481f77b7d58f73", "fields": {"nom_de_la_commune": "LOURDOUEIX ST PIERRE", "libell_d_acheminement": "LOURDOUEIX ST PIERRE", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23112"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca0b5642181ecba222b0b6e1567123406662bdd", "fields": {"code_postal": "23360", "code_commune_insee": "23112", "libell_d_acheminement": "LOURDOUEIX ST PIERRE", "ligne_5": "LIGNAUD", "nom_de_la_commune": "LOURDOUEIX ST PIERRE", "coordonnees_gps": [46.4079400107, 1.81197289592]}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f04b6afb825ceffb26ee99eeb8d13c2290a9421", "fields": {"nom_de_la_commune": "LUPERSAT", "libell_d_acheminement": "LUPERSAT", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23113"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a702d903b2e2a42b12fcd763c0d537c537ce08a0", "fields": {"nom_de_la_commune": "MAUTES", "libell_d_acheminement": "MAUTES", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23127"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d501ff0221a2f01b007563f0643a104d2991394e", "fields": {"nom_de_la_commune": "MAZEIRAT", "libell_d_acheminement": "MAZEIRAT", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23128"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf2c47574292a126aed8548aacebf0ae309825a", "fields": {"nom_de_la_commune": "ARCHETTES", "libell_d_acheminement": "ARCHETTES", "code_postal": "88380", "coordonnees_gps": [48.1218845084, 6.52949097702], "code_commune_insee": "88012"}, "geometry": {"type": "Point", "coordinates": [6.52949097702, 48.1218845084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85a8d5b79c3fe0f9eff7d2d37ff4d3ae377500f", "fields": {"nom_de_la_commune": "BAINVILLE AUX SAULES", "libell_d_acheminement": "BAINVILLE AUX SAULES", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88030"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8db1ca5a04f7135b35c5a1085300df565f2c56", "fields": {"nom_de_la_commune": "BAZOILLES ET MENIL", "libell_d_acheminement": "BAZOILLES ET MENIL", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88043"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5f8d15d0ee7a78c04558f076641d6c848aa9f1", "fields": {"nom_de_la_commune": "BEGNECOURT", "libell_d_acheminement": "BEGNECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88047"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0375603c72d562ef82c0d35e7e45cab9b5d6da6", "fields": {"nom_de_la_commune": "BELMONT SUR VAIR", "libell_d_acheminement": "BELMONT SUR VAIR", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88051"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef092628ff99f78e29747280673fff2d9e4c37b8", "fields": {"nom_de_la_commune": "BIECOURT", "libell_d_acheminement": "BIECOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88058"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8c007e195d805aecd39b8f59967a5c8c0bc45c", "fields": {"nom_de_la_commune": "BLEMEREY", "libell_d_acheminement": "BLEMEREY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88060"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d8ae4591ef9d581dcd5eab91ec28600102ce76a", "fields": {"nom_de_la_commune": "BOUZEMONT", "libell_d_acheminement": "BOUZEMONT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88071"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b0de037bd3251c3b8dc431dde116b3dd6ca94c", "fields": {"nom_de_la_commune": "CERTILLEUX", "libell_d_acheminement": "CERTILLEUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88083"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49157bc60fc0f35fa71ed9b5503d22d0e58bb1b", "fields": {"nom_de_la_commune": "CHANTRAINE", "libell_d_acheminement": "CHANTRAINE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88087"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05454a7f8cb7f2aff4915da1559633fc5b6e466", "fields": {"nom_de_la_commune": "CHARMOIS DEVANT BRUYERES", "libell_d_acheminement": "CHARMOIS DEVANT BRUYERES", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88091"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "debc2322091013b09f6e348039eb5bcfa2c39d06", "fields": {"nom_de_la_commune": "CHAUMOUSEY", "libell_d_acheminement": "CHAUMOUSEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88098"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc10c6d61572fe8ce9f20909d14db5cad883055", "fields": {"nom_de_la_commune": "CIRCOURT SUR MOUZON", "libell_d_acheminement": "CIRCOURT SUR MOUZON", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88104"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49e0c79137c707db94ff7a2b393a45b7af6084f", "fields": {"nom_de_la_commune": "BAN SUR MEURTHE CLEFCY", "libell_d_acheminement": "BAN SUR MEURTHE CLEFCY", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88106"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82e440cc95d3b3c12f530948352cf23e55e0c8a", "fields": {"nom_de_la_commune": "CLEZENTAINE", "libell_d_acheminement": "CLEZENTAINE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88110"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71be302df9cf180dbee85fc36d591b90ac2c86a9", "fields": {"nom_de_la_commune": "COINCHES", "libell_d_acheminement": "COINCHES", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88111"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0bb1f6eb89ac8de5ce0280c44bd2478819c262", "fields": {"nom_de_la_commune": "CORNIMONT", "libell_d_acheminement": "CORNIMONT", "code_postal": "88310", "coordonnees_gps": [47.9567015163, 6.87250847131], "code_commune_insee": "88116"}, "geometry": {"type": "Point", "coordinates": [6.87250847131, 47.9567015163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44259d4777ca56994f0d950073c2f1d0489697d0", "fields": {"nom_de_la_commune": "COURCELLES SOUS CHATENOIS", "libell_d_acheminement": "COURCELLES SOUS CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88117"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adabac45429f9f849b16227f8a2a748f1e769fe7", "fields": {"nom_de_la_commune": "DAMAS ET BETTEGNEY", "libell_d_acheminement": "DAMAS ET BETTEGNEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88122"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f760356ccdddf7eca66251ae5a2e9e1a8af5d03a", "fields": {"nom_de_la_commune": "DARNEY AUX CHENES", "libell_d_acheminement": "DARNEY AUX CHENES", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88125"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ea00cbd134a1851c8a02f51a3ac43cbc5a07db", "fields": {"nom_de_la_commune": "DERBAMONT", "libell_d_acheminement": "DERBAMONT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88129"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9640550b17b7039d6be0aacb959173823a260c39", "fields": {"nom_de_la_commune": "DESTORD", "libell_d_acheminement": "DESTORD", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88130"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26cf2f8715a39c6c497cf60abdfa08d47ed352ab", "fields": {"nom_de_la_commune": "DEYVILLERS", "libell_d_acheminement": "DEYVILLERS", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88132"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd50cf131b6d91ff97b4239e1a3eb21b65d208c7", "fields": {"nom_de_la_commune": "DOMEVRE SOUS MONTFORT", "libell_d_acheminement": "DOMEVRE SOUS MONTFORT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88144"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63531a9355dbdeeb51f54cda58ad66753642839e", "fields": {"nom_de_la_commune": "DOMJULIEN", "libell_d_acheminement": "DOMJULIEN", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88146"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1dcf7db8280332470ec3d3a84750b79b753560", "fields": {"nom_de_la_commune": "DOMMARTIN AUX BOIS", "libell_d_acheminement": "DOMMARTIN AUX BOIS", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88147"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1967bd17c91cd9409d75fee166d9650010b3caec", "fields": {"nom_de_la_commune": "FERDRUPT", "libell_d_acheminement": "FERDRUPT", "code_postal": "88360", "coordonnees_gps": [47.9275982656, 6.67734911799], "code_commune_insee": "88170"}, "geometry": {"type": "Point", "coordinates": [6.67734911799, 47.9275982656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660c199f5dc679c4c0104c248e408381926aef67", "fields": {"nom_de_la_commune": "LA FORGE", "libell_d_acheminement": "LA FORGE", "code_postal": "88530", "coordonnees_gps": [48.0852406406, 6.73632940481], "code_commune_insee": "88177"}, "geometry": {"type": "Point", "coordinates": [6.73632940481, 48.0852406406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd04f9dd1c25876341cd08d3f4910a6645eea947", "fields": {"nom_de_la_commune": "FRAIN", "libell_d_acheminement": "FRAIN", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88180"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd62346cfe7439e10c34a3af97b0852133b8d4d1", "fields": {"nom_de_la_commune": "FREBECOURT", "libell_d_acheminement": "FREBECOURT", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88183"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b950bf1d68aa987ff321c619c378f286e18b95", "fields": {"nom_de_la_commune": "FRENELLE LA PETITE", "libell_d_acheminement": "FRENELLE LA PETITE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88186"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98ac15d2eceac13b335d006517df25b5f5860d0", "fields": {"nom_de_la_commune": "FRIZON", "libell_d_acheminement": "FRIZON", "code_postal": "88440", "coordonnees_gps": [48.2939351767, 6.36082179338], "code_commune_insee": "88190"}, "geometry": {"type": "Point", "coordinates": [6.36082179338, 48.2939351767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561390b88f7847dc9aa0dec136820f6abb100e18", "fields": {"nom_de_la_commune": "GIRECOURT SUR DURBION", "libell_d_acheminement": "GIRECOURT SUR DURBION", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88203"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58cb6c910dba7c38d9968e7575df3270279787a9", "fields": {"nom_de_la_commune": "LA GRANDE FOSSE", "libell_d_acheminement": "LA GRANDE FOSSE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88213"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3598d75998baec42f4de0e86b7b73275332f63", "fields": {"nom_de_la_commune": "GRANDRUPT DE BAINS", "libell_d_acheminement": "GRANDRUPT DE BAINS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88214"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b72854a4e98379e70c9e957908dde11da0b6ffc", "fields": {"nom_de_la_commune": "GREUX", "libell_d_acheminement": "GREUX", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88219"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d478f267085a9e0cb74aeb8fa23ebbc332b6d6", "fields": {"nom_de_la_commune": "GUGNECOURT", "libell_d_acheminement": "GUGNECOURT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88222"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a97a3931b8693e35e969068df2344cf1b23f6e", "fields": {"code_postal": "88300", "code_commune_insee": "88227", "libell_d_acheminement": "HAGNEVILLE ET RONCOURT", "ligne_5": "RONCOURT", "nom_de_la_commune": "HAGNEVILLE ET RONCOURT", "coordonnees_gps": [48.3526627725, 5.74997889486]}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116604ac74348eae086fb7d111b3530dcd816e88", "fields": {"nom_de_la_commune": "HARCHECHAMP", "libell_d_acheminement": "HARCHECHAMP", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88229"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bb9fae521f5690c5b7cf44ea036ebf550476df", "fields": {"nom_de_la_commune": "HARMONVILLE", "libell_d_acheminement": "HARMONVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88232"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8515005a6d9e6ed635916468be561463280ec960", "fields": {"nom_de_la_commune": "LA HAYE", "libell_d_acheminement": "LA HAYE", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88236"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e1772c8149c38909e727cead5d511e4ff69f95", "fields": {"nom_de_la_commune": "HENNEZEL", "libell_d_acheminement": "HENNEZEL", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88238"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16415fda8a67bf3fe5bc8c4d16cf9539b075619", "fields": {"nom_de_la_commune": "HERPELMONT", "libell_d_acheminement": "HERPELMONT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88240"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad70bc63c85d795d43e8c441b8f78713ce649f6", "fields": {"nom_de_la_commune": "HOUECOURT", "libell_d_acheminement": "HOUECOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88241"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65531e1e243c94f07eed8070ccdcf838cfb4bd37", "fields": {"nom_de_la_commune": "ISCHES", "libell_d_acheminement": "ISCHES", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88248"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a929a07db1659261a851a8b65281b0532d399ace", "fields": {"nom_de_la_commune": "LAVELINE DU HOUX", "libell_d_acheminement": "LAVELINE DU HOUX", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88263"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef093e6aecfceb9a627320a07ce34417c1f76992", "fields": {"nom_de_la_commune": "LESSEUX", "libell_d_acheminement": "LESSEUX", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88268"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38ac8e99aa87b94a91e7a4196d5fa5653f329d4", "fields": {"nom_de_la_commune": "LIRONCOURT", "libell_d_acheminement": "LIRONCOURT", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88272"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f48a38ca1a046e136b61864c54d9af932a8049e", "fields": {"nom_de_la_commune": "LUVIGNY", "libell_d_acheminement": "LUVIGNY", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88277"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032ce38812c5b333144fc0fdcb632e723c8706a9", "fields": {"nom_de_la_commune": "MADONNE ET LAMEREY", "libell_d_acheminement": "MADONNE ET LAMEREY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88281"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64127e1b9cc029972e1b91787ca755248c09d1b9", "fields": {"nom_de_la_commune": "MAREY", "libell_d_acheminement": "MAREY", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88287"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc47515259ee706bcad541b6ab2693ca19ce7e0", "fields": {"nom_de_la_commune": "MATTAINCOURT", "libell_d_acheminement": "MATTAINCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88292"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3534abb5f4c769b072021ad6238fcb3fea1d6c", "fields": {"nom_de_la_commune": "MAXEY SUR MEUSE", "libell_d_acheminement": "MAXEY SUR MEUSE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88293"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25a7ecdfc3b4da19942bb71cc741d15e7f87ce9", "fields": {"nom_de_la_commune": "MAZELEY", "libell_d_acheminement": "MAZELEY", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88294"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73a2dda61d586e4023ba635c13197c2236117fa", "fields": {"nom_de_la_commune": "MENIL SUR BELVITTE", "libell_d_acheminement": "MENIL SUR BELVITTE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88301"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed6caa12fd42358658f10b09d99f533ee78005e", "fields": {"nom_de_la_commune": "MONT LES LAMARCHE", "libell_d_acheminement": "MONT LES LAMARCHE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88307"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7dffa74ad00a1d4632b4641a67465e4a6055e5", "fields": {"nom_de_la_commune": "MONTHUREUX LE SEC", "libell_d_acheminement": "MONTHUREUX LE SEC", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88309"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d572d994801a28e4735ea7d0d9e06c6665c5b9", "fields": {"nom_de_la_commune": "MONTMOTIER", "libell_d_acheminement": "MONTMOTIER", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88311"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac387eb3a09d175eadf9cdcd785e381afb78a5ba", "fields": {"nom_de_la_commune": "MORIZECOURT", "libell_d_acheminement": "MORIZECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88314"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cfab563558534d78a6a520912b9a06f0f772da", "fields": {"nom_de_la_commune": "NEUFCHATEAU", "libell_d_acheminement": "NEUFCHATEAU", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88321"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b59d2ef8e9ff3088a30aa3f976b85d72c9307f2", "fields": {"code_postal": "88600", "code_commune_insee": "88322", "libell_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", "ligne_5": "ST JEAN DU MARCHE", "nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", "coordonnees_gps": [48.2228084318, 6.69811489698]}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7283ecba1c5613f3311537b35913424fea9d432b", "fields": {"nom_de_la_commune": "NOSSONCOURT", "libell_d_acheminement": "NOSSONCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88333"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a26505c74abb00c170efdf5a6ef9fa887a56336", "fields": {"nom_de_la_commune": "PAIR ET GRANDRUPT", "libell_d_acheminement": "PAIR ET GRANDRUPT", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88341"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75bc79b603bc54b81f2a66b239c787b9d6ed0e7d", "fields": {"nom_de_la_commune": "PAREY SOUS MONTFORT", "libell_d_acheminement": "PAREY SOUS MONTFORT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88343"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974ba2e3683a1916d06bccdda2d9fd232ec4de8f", "fields": {"nom_de_la_commune": "LA PETITE FOSSE", "libell_d_acheminement": "LA PETITE FOSSE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88345"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd2cf57aa478cac56e83cc4c818bf0c87a33645", "fields": {"nom_de_la_commune": "PLEUVEZAIN", "libell_d_acheminement": "PLEUVEZAIN", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88350"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e772885b41cfa9f3f45e12430a01ec0cbd09d7", "fields": {"nom_de_la_commune": "PONT LES BONFAYS", "libell_d_acheminement": "PONT LES BONFAYS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88353"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d41732cc142f3d782ce51747f7c6fd282ca9464", "fields": {"nom_de_la_commune": "PONT SUR MADON", "libell_d_acheminement": "PONT SUR MADON", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88354"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bf78ede6929542dba31dd04667176d05bc2297", "fields": {"nom_de_la_commune": "LES POULIERES", "libell_d_acheminement": "LES POULIERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88356"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ce4e9a0ac182d8c66b59f63a7c7667915f3e7a", "fields": {"nom_de_la_commune": "PROVENCHERES LES DARNEY", "libell_d_acheminement": "PROVENCHERES LES DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88360"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081d5bf06f9687a382146fb9b0821e735163afba", "fields": {"nom_de_la_commune": "PUZIEUX", "libell_d_acheminement": "PUZIEUX", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88364"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374a1f77119a80a9c72454bbd3ed9bea3e3e0a68", "fields": {"nom_de_la_commune": "RAINVILLE", "libell_d_acheminement": "RAINVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88366"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310d7f517c71746253e0d057481d21580dfa1056", "fields": {"nom_de_la_commune": "RAON SUR PLAINE", "libell_d_acheminement": "RAON SUR PLAINE", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88373"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb6a6631de9ea214f1696add2ffc8146eafb2b3", "fields": {"nom_de_la_commune": "RAPEY", "libell_d_acheminement": "RAPEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88374"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0485bc5959fbfbdc0b9fec855247eb71918bd4c0", "fields": {"nom_de_la_commune": "RAVES", "libell_d_acheminement": "RAVES", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88375"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c3d3fc9a47d2de48a6bb6ea8e3ceb2a6ebdd1d", "fields": {"nom_de_la_commune": "REGNEVELLE", "libell_d_acheminement": "REGNEVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88377"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "280c5fb64c6865be0471e6f1dc4637bff8e33908", "fields": {"nom_de_la_commune": "REGNEY", "libell_d_acheminement": "REGNEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88378"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e9153231244cebd1091d551fce0eb303518d6a", "fields": {"nom_de_la_commune": "RUPPES", "libell_d_acheminement": "RUPPES", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88407"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e96d11f161067c74ad928a78b8cf7a2c634baa9b", "fields": {"nom_de_la_commune": "STE MARGUERITE", "libell_d_acheminement": "STE MARGUERITE", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88424"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88c76e9827c7579669f7574105b22d4a298d13cb", "fields": {"nom_de_la_commune": "ST MICHEL SUR MEURTHE", "libell_d_acheminement": "ST MICHEL SUR MEURTHE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88428"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cd613bf20242cefb66ab22969fc68ffb244173", "fields": {"nom_de_la_commune": "ST PIERREMONT", "libell_d_acheminement": "ST PIERREMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88432"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8c79603b4fae11cb0a8fb57852c1438261a16e", "fields": {"nom_de_la_commune": "SONCOURT", "libell_d_acheminement": "SONCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88459"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8a840d99165d30c7a8fd56f303c22771a6ae61", "fields": {"nom_de_la_commune": "TAINTRUX", "libell_d_acheminement": "TAINTRUX", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88463"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18ee0090ab3136d9f7d0cb74a9ac071673f4543", "fields": {"nom_de_la_commune": "TENDON", "libell_d_acheminement": "TENDON", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88464"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986205c0c38dac5b26510b4bff12490a363cfd64", "fields": {"code_postal": "88150", "code_commune_insee": "88465", "libell_d_acheminement": "CAPAVENIR VOSGES", "ligne_5": "THAON LES VOSGES", "nom_de_la_commune": "CAPAVENIR VOSGES", "coordonnees_gps": [48.2558226475, 6.42027850113]}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16122962a6b6ad93de550487e7a0d283287e2106", "fields": {"nom_de_la_commune": "LE THOLY", "libell_d_acheminement": "LE THOLY", "code_postal": "88530", "coordonnees_gps": [48.0852406406, 6.73632940481], "code_commune_insee": "88470"}, "geometry": {"type": "Point", "coordinates": [6.73632940481, 48.0852406406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a47728539981a65bb19e42892001d5811832a7e", "fields": {"nom_de_la_commune": "TOTAINVILLE", "libell_d_acheminement": "TOTAINVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88476"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b7476c90f3a94b13494f47644ca1ee7a503c8c", "fields": {"nom_de_la_commune": "UBEXY", "libell_d_acheminement": "UBEXY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88480"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b11c83e02053ee1bd0ae2aa71b8c0e66126db16", "fields": {"nom_de_la_commune": "LA VACHERESSE ET LA ROUILLIE", "libell_d_acheminement": "LA VACHERESSE ET LA ROUILLIE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88485"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f48b2dc7951326f125d93f69acec04f7251897", "fields": {"nom_de_la_commune": "VERVEZELLE", "libell_d_acheminement": "VERVEZELLE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88502"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9bcd8c2edc098979a711173d6054547aa648897", "fields": {"nom_de_la_commune": "VEXAINCOURT", "libell_d_acheminement": "VEXAINCOURT", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88503"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90451a3a3223d99fe246da02e78c7f0d22597260", "fields": {"nom_de_la_commune": "VIENVILLE", "libell_d_acheminement": "VIENVILLE", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88505"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476a9ff150a903c1f00c1fc5cce4b6d4a4a4609d", "fields": {"nom_de_la_commune": "VIMENIL", "libell_d_acheminement": "VIMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88512"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91f207caab94d1dbaf98b549de88d011ca03435", "fields": {"nom_de_la_commune": "LES VOIVRES", "libell_d_acheminement": "LES VOIVRES", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88520"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c91a4d05bdedf3ca649e23eb2148700a980177", "fields": {"nom_de_la_commune": "WISEMBACH", "libell_d_acheminement": "WISEMBACH", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88526"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d56c0609ac0acfdab59375b74f402da55ff8391", "fields": {"nom_de_la_commune": "XARONVAL", "libell_d_acheminement": "XARONVAL", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88529"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b91eafdd1e106bc20d53fde63cf014c1d3c8e1", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89002"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa047802e45d6c419c7ac43c4a3c5a249515a26e", "fields": {"nom_de_la_commune": "AILLANT SUR THOLON", "libell_d_acheminement": "AILLANT SUR THOLON", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89003"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4da6236a9fc48459d17060c418b99e0b7519a65", "fields": {"nom_de_la_commune": "ANGELY", "libell_d_acheminement": "ANGELY", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89008"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47855a6aa57b03378a4aa90c5de8b7a15a8c44bd", "fields": {"code_postal": "89320", "code_commune_insee": "89014", "libell_d_acheminement": "ARCES DILO", "ligne_5": "DILO", "nom_de_la_commune": "ARCES DILO", "coordonnees_gps": [48.1363744746, 3.52794249897]}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a74b729062dcae01a680b696d7c40df11e4abba", "fields": {"nom_de_la_commune": "ST PALAIS DE NEGRIGNAC", "libell_d_acheminement": "ST PALAIS DE NEGRIGNAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17378"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd5cbe46e918c8fbb6d681f751c2b6c6d4c669b", "fields": {"code_postal": "17310", "code_commune_insee": "17385", "libell_d_acheminement": "ST PIERRE D OLERON", "ligne_5": "LA COTINIERE", "nom_de_la_commune": "ST PIERRE D OLERON", "coordonnees_gps": [45.9395914955, -1.30493678454]}, "geometry": {"type": "Point", "coordinates": [-1.30493678454, 45.9395914955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c7b0ec0db06ad133118e3bf6561d7c7fbc5c25", "fields": {"nom_de_la_commune": "ST PIERRE DU PALAIS", "libell_d_acheminement": "ST PIERRE DU PALAIS", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17386"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a1ec1d99f71f300df36d775690adacc435998d", "fields": {"nom_de_la_commune": "ST SAUVANT", "libell_d_acheminement": "ST SAUVANT", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17395"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b5f441272c94accc627ed79edbd8752e851fef", "fields": {"code_postal": "17350", "code_commune_insee": "17397", "libell_d_acheminement": "ST SAVINIEN", "ligne_5": "COULONGE SUR CHARENTE", "nom_de_la_commune": "ST SAVINIEN", "coordonnees_gps": [45.8646141177, -0.657370480976]}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4df23483aa3684d683771dcb9e65cd92c3a1ce", "fields": {"nom_de_la_commune": "ST SEURIN DE PALENNE", "libell_d_acheminement": "ST SEURIN DE PALENNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17398"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd284caba1601bafa94aa725a08d009f910bcd72", "fields": {"nom_de_la_commune": "SAINTES", "libell_d_acheminement": "SAINTES", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17415"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0dfa2c57e2dc6a96e423eee9d3677c6262868c2", "fields": {"nom_de_la_commune": "SALIGNAC SUR CHARENTE", "libell_d_acheminement": "SALIGNAC SUR CHARENTE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17418"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bda8f43ca2bc2d022c2565688f1abf1fe03a7ce", "fields": {"nom_de_la_commune": "SEIGNE", "libell_d_acheminement": "SEIGNE", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17422"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c40e2b8dd9fd76284b52ae3bcaba360f2b1547", "fields": {"nom_de_la_commune": "SOUMERAS", "libell_d_acheminement": "SOUMERAS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17432"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a587bf9e2a69849d216f7b123bb487ce5aa8c479", "fields": {"nom_de_la_commune": "TALMONT SUR GIRONDE", "libell_d_acheminement": "TALMONT SUR GIRONDE", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17437"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5848fd9b0b6895894a01203326194c1f84a881b3", "fields": {"nom_de_la_commune": "TANZAC", "libell_d_acheminement": "TANZAC", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17438"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483655b19fb6960f4e9705dbfe254caade7859e8", "fields": {"nom_de_la_commune": "TAUGON", "libell_d_acheminement": "TAUGON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17439"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e774e174f431f2b97a6ab33da8fb607d5a2a55a9", "fields": {"nom_de_la_commune": "TESSON", "libell_d_acheminement": "TESSON", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17441"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1e3861b820b5559674e642d9216a5396a7271b", "fields": {"nom_de_la_commune": "THAIMS", "libell_d_acheminement": "THAIMS", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17442"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354dfd543055e122a9535bd4f32f2689ec45b012", "fields": {"nom_de_la_commune": "THENAC", "libell_d_acheminement": "THENAC", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17444"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3456a80dbac4a357333edec375210c3f0a39f664", "fields": {"nom_de_la_commune": "TONNAY BOUTONNE", "libell_d_acheminement": "TONNAY BOUTONNE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17448"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be358e96a2cee03ce0159f828125d94e6a1370ca", "fields": {"nom_de_la_commune": "TUGERAS ST MAURICE", "libell_d_acheminement": "TUGERAS ST MAURICE", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17454"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0511244000066ff8176ca1adea9ce8bebb17dd33", "fields": {"nom_de_la_commune": "VENERAND", "libell_d_acheminement": "VENERAND", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17462"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ce21dd8eb59cc6243659e06031e265587173fc", "fields": {"nom_de_la_commune": "VERGNE", "libell_d_acheminement": "VERGNE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17464"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e422128f4462604414181891835151a46c26bfd5", "fields": {"nom_de_la_commune": "VERINES", "libell_d_acheminement": "VERINES", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17466"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677ec8c8d01936cfb5e703bc1378a58b8967a424", "fields": {"nom_de_la_commune": "LA VILLEDIEU", "libell_d_acheminement": "LA VILLEDIEU", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17471"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ecac2d012399d5b5857cfa43593eaa9f6238455", "fields": {"nom_de_la_commune": "VILLEMORIN", "libell_d_acheminement": "VILLEMORIN", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17473"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf37ccb5f1c8ccf2ec32b64bfcd1786e35ae2187", "fields": {"code_postal": "17330", "code_commune_insee": "17474", "libell_d_acheminement": "VILLENEUVE LA COMTESSE", "ligne_5": "VILLENOUVELLE", "nom_de_la_commune": "VILLENEUVE LA COMTESSE", "coordonnees_gps": [46.0720131414, -0.537761612813]}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2f26dd731c35ed9de3e0bb431eea15ea18fea4", "fields": {"nom_de_la_commune": "VIROLLET", "libell_d_acheminement": "VIROLLET", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17479"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7c72893a870fc16783922776900aecc2167796", "fields": {"nom_de_la_commune": "VOUHE", "libell_d_acheminement": "VOUHE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17482"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a53f797168e98253d2b152f6eb1fa6e42ef833", "fields": {"nom_de_la_commune": "PORT DES BARQUES", "libell_d_acheminement": "PORT DES BARQUES", "code_postal": "17730", "coordonnees_gps": [45.9419121802, -1.07339342344], "code_commune_insee": "17484"}, "geometry": {"type": "Point", "coordinates": [-1.07339342344, 45.9419121802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50eb6ca1096f5169d8070884f171eaf256928f5", "fields": {"nom_de_la_commune": "LA BREE LES BAINS", "libell_d_acheminement": "LA BREE LES BAINS", "code_postal": "17840", "coordonnees_gps": [46.0079537352, -1.35107498739], "code_commune_insee": "17486"}, "geometry": {"type": "Point", "coordinates": [-1.35107498739, 46.0079537352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa5f35c784ce93892f4c8d6457009b4366003ed", "fields": {"nom_de_la_commune": "ALLOUIS", "libell_d_acheminement": "ALLOUIS", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18005"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9b1e92c5628e0fc3508bd50cd1a1acaea9efd7", "fields": {"nom_de_la_commune": "APREMONT SUR ALLIER", "libell_d_acheminement": "APREMONT SUR ALLIER", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18007"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118f7c6955c0e900119f5d61d86c96da3eaa5f33", "fields": {"nom_de_la_commune": "AUBIGNY SUR NERE", "libell_d_acheminement": "AUBIGNY SUR NERE", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18015"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fae3730ab3e40d12fd99fbbe5502abd4ee4aa1", "fields": {"nom_de_la_commune": "BEDDES", "libell_d_acheminement": "BEDDES", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18024"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b3ec82bc98bfbd2dd95ed16fadff24ce545437", "fields": {"nom_de_la_commune": "BENGY SUR CRAON", "libell_d_acheminement": "BENGY SUR CRAON", "code_postal": "18520", "coordonnees_gps": [47.0138708859, 2.70198329329], "code_commune_insee": "18027"}, "geometry": {"type": "Point", "coordinates": [2.70198329329, 47.0138708859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5d90608beea190f8db0e93455960cc742ef282", "fields": {"nom_de_la_commune": "BLET", "libell_d_acheminement": "BLET", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18031"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597c00e44f17710613be5d0de8ee135f3d8003cb", "fields": {"nom_de_la_commune": "BOURGES", "libell_d_acheminement": "BOURGES", "code_postal": "18000", "coordonnees_gps": [47.0747448585, 2.40489595766], "code_commune_insee": "18033"}, "geometry": {"type": "Point", "coordinates": [2.40489595766, 47.0747448585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76930624b7558b9a977930f10cca8bb977689621", "fields": {"nom_de_la_commune": "BRINAY", "libell_d_acheminement": "BRINAY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18036"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4666cef8bd3664d5e37b04717067c790e2971a0", "fields": {"nom_de_la_commune": "BRINON SUR SAULDRE", "libell_d_acheminement": "BRINON SUR SAULDRE", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18037"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973738553f1928968b73e3af764e568f34933ff6", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTLINARD", "libell_d_acheminement": "LA CHAPELLE MONTLINARD", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18049"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af2d20514b3add10fec3966e1ae9dcd3b1274d7", "fields": {"nom_de_la_commune": "CHAROST", "libell_d_acheminement": "CHAROST", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18055"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42021c4ee47ef0e81c9abb7bd00708f16a4eae27", "fields": {"nom_de_la_commune": "CHASSY", "libell_d_acheminement": "CHASSY", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18056"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744d64801f97e8457a74121a5049429a66d351ac", "fields": {"nom_de_la_commune": "CHATEAUMEILLANT", "libell_d_acheminement": "CHATEAUMEILLANT", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18057"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2baf8c62109818660f41c10ec190bdde9c8ce64", "fields": {"nom_de_la_commune": "LE CHAUTAY", "libell_d_acheminement": "LE CHAUTAY", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18062"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d16a285c8e780a4d2f3d71e8aee006872481c8e", "fields": {"nom_de_la_commune": "CONTRES", "libell_d_acheminement": "CONTRES", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18071"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824ba888a9285302996420355a190ae1f3af6e88", "fields": {"nom_de_la_commune": "CORNUSSE", "libell_d_acheminement": "CORNUSSE", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18072"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6791f408734f5799763939532dc146479ba51797", "fields": {"nom_de_la_commune": "CROISY", "libell_d_acheminement": "CROISY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18080"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf816f7355491daf686daaa0b55988ba2a5226f", "fields": {"nom_de_la_commune": "EPINEUIL LE FLEURIEL", "libell_d_acheminement": "EPINEUIL LE FLEURIEL", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18089"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff955d8f6dcc8f9e9bc842b65cf006a6d6ec4c1b", "fields": {"nom_de_la_commune": "GARDEFORT", "libell_d_acheminement": "GARDEFORT", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18098"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b697d848656085c4c6ee5e94b6d1b6224c5661cb", "fields": {"nom_de_la_commune": "GRACAY", "libell_d_acheminement": "GRACAY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18103"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82bd4532940074eaa0f4a091408aef3a44b0a2d9", "fields": {"nom_de_la_commune": "GROSSOUVRE", "libell_d_acheminement": "GROSSOUVRE", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18106"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2594966b921229f9aadea1faf2c5c2576e6f517", "fields": {"nom_de_la_commune": "IGNOL", "libell_d_acheminement": "IGNOL", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18113"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2858603e8ce5f3a3c02b9e662280f9d850e85f29", "fields": {"nom_de_la_commune": "JUSSY LE CHAUDRIER", "libell_d_acheminement": "JUSSY LE CHAUDRIER", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18120"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e762897135432e1b9ea281f8f997aafef03cd6", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18127"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50d14ce78ce9696dff0e528d36fd0dba29a674f", "fields": {"nom_de_la_commune": "LOYE SUR ARNON", "libell_d_acheminement": "LOYE SUR ARNON", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18130"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3335679a3dbafe794247a2950b9d0544dea6f43", "fields": {"nom_de_la_commune": "LUGNY CHAMPAGNE", "libell_d_acheminement": "LUGNY CHAMPAGNE", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18132"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdba54cce67e0ad6e98c7c969157014a791ab48b", "fields": {"nom_de_la_commune": "MARCAIS", "libell_d_acheminement": "MARCAIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18136"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d13f14cca507b0e739afedf970980e001d0346", "fields": {"nom_de_la_commune": "MARSEILLES LES AUBIGNY", "libell_d_acheminement": "MARSEILLES LES AUBIGNY", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18139"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d62aee77cb53c25f1a25608c0739ca778890f91", "fields": {"nom_de_la_commune": "MEHUN SUR YEVRE", "libell_d_acheminement": "MEHUN SUR YEVRE", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18141"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a894c6d35cffa8291aabad241a266f36420d81", "fields": {"nom_de_la_commune": "MENETOU COUTURE", "libell_d_acheminement": "MENETOU COUTURE", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18143"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18bec633a734b4468b9560e7103bda931b276d3", "fields": {"nom_de_la_commune": "MENETREOL SUR SAULDRE", "libell_d_acheminement": "MENETREOL SUR SAULDRE", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18147"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41382ad2cc55f5badf06c0212c0756343a11a1a6", "fields": {"nom_de_la_commune": "MONTLOUIS", "libell_d_acheminement": "MONTLOUIS", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18152"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4575fe0a62106d97bc6e69992c3b442d0728be10", "fields": {"nom_de_la_commune": "MORTHOMIERS", "libell_d_acheminement": "MORTHOMIERS", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18157"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc2c3aceb66b58f858accc21c3c5e74e03de39f", "fields": {"nom_de_la_commune": "NANCAY", "libell_d_acheminement": "NANCAY", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18159"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81a4e37ec58e82f915bcf01c3133274caa4cb361", "fields": {"nom_de_la_commune": "NEUVY DEUX CLOCHERS", "libell_d_acheminement": "NEUVY DEUX CLOCHERS", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18163"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60346188bed078e90614aa908f6f8e0630558a1e", "fields": {"nom_de_la_commune": "LE NOYER", "libell_d_acheminement": "LE NOYER", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18168"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6090dfdcae2d480502a0e81a4185c5e5c02c3d52", "fields": {"nom_de_la_commune": "OUROUER LES BOURDELINS", "libell_d_acheminement": "OUROUER LES BOURDELINS", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18175"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2118a1206c5ae7bab917abdfb13baaf77b013dd2", "fields": {"code_postal": "10180", "code_commune_insee": "10349", "libell_d_acheminement": "ST LYE", "ligne_5": "BARBEREY AUX MOINES", "nom_de_la_commune": "ST LYE", "coordonnees_gps": [48.3538390298, 4.00019128511]}, "geometry": {"type": "Point", "coordinates": [4.00019128511, 48.3538390298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e187ee1139f78aff208435f0699d96adcbf3b4db", "fields": {"nom_de_la_commune": "ST LEGER SOUS BRIENNE", "libell_d_acheminement": "ST LEGER SOUS BRIENNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10345"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d806cf52fbbb617cccf9dee2a8247e4fb2daebe", "fields": {"nom_de_la_commune": "ST BENOIST SUR VANNE", "libell_d_acheminement": "ST BENOIST SUR VANNE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10335"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b693c5fcc0b919361d6e8f2f948599b830ed110c", "fields": {"nom_de_la_commune": "ST BENOIT SUR SEINE", "libell_d_acheminement": "ST BENOIT SUR SEINE", "code_postal": "10180", "coordonnees_gps": [48.3538390298, 4.00019128511], "code_commune_insee": "10336"}, "geometry": {"type": "Point", "coordinates": [4.00019128511, 48.3538390298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5659f7f38c9c249a79d53098c59b1f8c472725", "fields": {"nom_de_la_commune": "SOULAINES DHUYS", "libell_d_acheminement": "SOULAINES DHUYS", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10372"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5c88d464d32bc2a9886a2ff56116171da659b3", "fields": {"nom_de_la_commune": "ROUILLY ST LOUP", "libell_d_acheminement": "ROUILLY ST LOUP", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10329"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544b443958eb108e82bd6e6a557e9cb5ee0b0a6e", "fields": {"nom_de_la_commune": "STE SAVINE", "libell_d_acheminement": "STE SAVINE", "code_postal": "10300", "coordonnees_gps": [48.3017985875, 3.94562270532], "code_commune_insee": "10362"}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b994a13ad02bc4cb8c0a7d3891093574c0e973", "fields": {"nom_de_la_commune": "ST FLAVY", "libell_d_acheminement": "ST FLAVY", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10339"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892bf1040fac6cac132fac5034cd4e11a7cc12ad", "fields": {"nom_de_la_commune": "SAULCY", "libell_d_acheminement": "SAULCY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10366"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476476ed2e2d55e171b76c86fa0e400e4a92966e", "fields": {"nom_de_la_commune": "SPOY", "libell_d_acheminement": "SPOY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10374"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7142ec3f3acf22f6c3b5c4e3961e83cbbb548d1d", "fields": {"nom_de_la_commune": "LA VILLENEUVE AU CHENE", "libell_d_acheminement": "LA VILLENEUVE AU CHENE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10423"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348e42ababefc04a925846ec6c766db849fa0e29", "fields": {"nom_de_la_commune": "BELVIANES ET CAVIRAC", "libell_d_acheminement": "BELVIANES ET CAVIRAC", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11035"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83cc65bdd4da10a45901f016d7b8ef434e1f2bd7", "fields": {"nom_de_la_commune": "BELFORT SUR REBENTY", "libell_d_acheminement": "BELFORT SUR REBENTY", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11031"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8b3fb0a10bff7b6d4122f2da826d0901f673c7", "fields": {"nom_de_la_commune": "BESSEDE DE SAULT", "libell_d_acheminement": "BESSEDE DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11038"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d68b41fd0e93728a3d6a32577029b1ce8c65d4", "fields": {"nom_de_la_commune": "ARQUETTES EN VAL", "libell_d_acheminement": "ARQUETTES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11016"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e73fec80db7a66bdc5162118f703a2e9063252", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11001"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee258de84db9d7e0bead7eac3f230572d9be342b", "fields": {"nom_de_la_commune": "BELFLOU", "libell_d_acheminement": "BELFLOU", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11030"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c994f48e38cc3b2ee7d2df4dd63b0d0293356b7", "fields": {"nom_de_la_commune": "AURIAC", "libell_d_acheminement": "AURIAC", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11020"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18758ce466534f78fdf486fdbd0f194ed1ebbf1e", "fields": {"nom_de_la_commune": "ARAGON", "libell_d_acheminement": "ARAGON", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11011"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d155dae2d3b6d058faed52c6103a275d0c44ddae", "fields": {"nom_de_la_commune": "VOUE", "libell_d_acheminement": "VOUE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10442"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8add32e701368ac69ecf710441cb95f224ff0aa", "fields": {"nom_de_la_commune": "VILLENEUVE AU CHEMIN", "libell_d_acheminement": "VILLENEUVE AU CHEMIN", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10422"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b782a2470ff60b61d8879164aa4df63707686bee", "fields": {"nom_de_la_commune": "VILLEMOIRON EN OTHE", "libell_d_acheminement": "VILLEMOIRON EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10417"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120282e574a79c503291ffc0a4d651144e4afe83", "fields": {"nom_de_la_commune": "VALLENTIGNY", "libell_d_acheminement": "VALLENTIGNY", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10393"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49264ae613fb35ddc216c78ea4a7f10ab18a9f3", "fields": {"nom_de_la_commune": "VAUCHASSIS", "libell_d_acheminement": "VAUCHASSIS", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10396"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e755ee075ab76b14576b7081f76305da50244b", "fields": {"nom_de_la_commune": "VERRICOURT", "libell_d_acheminement": "VERRICOURT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10405"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161e829dad2dad0bcdf2ee0a8ee3f2dd64fe9681", "fields": {"nom_de_la_commune": "VALLIERES", "libell_d_acheminement": "VALLIERES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10394"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca157cc4f5f4d049d495b562b70f444a298554ad", "fields": {"nom_de_la_commune": "VILLADIN", "libell_d_acheminement": "VILLADIN", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10410"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c483046a15d01bdf787aac3644401b991b44bb31", "fields": {"nom_de_la_commune": "VAUCOGNE", "libell_d_acheminement": "VAUCOGNE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10398"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140dda7ddbea9ada61f8207cd36720512edd629f", "fields": {"nom_de_la_commune": "TRAINEL", "libell_d_acheminement": "TRAINEL", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10382"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a63513af6435558e882f9f5017b63fdbaca9c9d9", "fields": {"nom_de_la_commune": "TURGY", "libell_d_acheminement": "TURGY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10388"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805ee5fd283e5607de42935db7b5671130bb32f4", "fields": {"nom_de_la_commune": "OBERSTEINBACH", "libell_d_acheminement": "OBERSTEINBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67353"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc00ca4bdcc6c8638df59230b3dddfc7d78be5c0", "fields": {"nom_de_la_commune": "OFFENDORF", "libell_d_acheminement": "OFFENDORF", "code_postal": "67850", "coordonnees_gps": [48.7239519575, 7.9191715322], "code_commune_insee": "67356"}, "geometry": {"type": "Point", "coordinates": [7.9191715322, 48.7239519575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd371326d185e73f7936b4b191797558c2e12a49", "fields": {"nom_de_la_commune": "OFFWILLER", "libell_d_acheminement": "OFFWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67358"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f96947427dff5d55d4ba24ba3a7fc5c9f7f61e5", "fields": {"nom_de_la_commune": "OHLUNGEN", "libell_d_acheminement": "OHLUNGEN", "code_postal": "67590", "coordonnees_gps": [48.811939028, 7.71713029127], "code_commune_insee": "67359"}, "geometry": {"type": "Point", "coordinates": [7.71713029127, 48.811939028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bdc3159001b93674b80e80bc6c381d139900d86", "fields": {"nom_de_la_commune": "OTTERSTHAL", "libell_d_acheminement": "OTTERSTHAL", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67366"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c79e62352aba7b35eb8c6ab101744f9bf80d07", "fields": {"nom_de_la_commune": "ST MARTIN DE HINX", "libell_d_acheminement": "ST MARTIN DE HINX", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40272"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54ab6b3dc52aede27cceadf27e9e02d437a9be7", "fields": {"nom_de_la_commune": "ST MAURICE SUR ADOUR", "libell_d_acheminement": "ST MAURICE SUR ADOUR", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40275"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af39b1e626937b0c325893a1b383390e32cc06a9", "fields": {"nom_de_la_commune": "SANGUINET", "libell_d_acheminement": "SANGUINET", "code_postal": "40460", "coordonnees_gps": [44.4779199683, -1.06448797901], "code_commune_insee": "40287"}, "geometry": {"type": "Point", "coordinates": [-1.06448797901, 44.4779199683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c04e9f4c1f70e767a22bb16efcaee5554e37b2", "fields": {"nom_de_la_commune": "SERRES GASTON", "libell_d_acheminement": "SERRES GASTON", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40298"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8bd284afbd3ea1163249f376009dfd00085b3a7", "fields": {"nom_de_la_commune": "SEYRESSE", "libell_d_acheminement": "SEYRESSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40300"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cc14794eb845b4296a216236de06f5ae797aca", "fields": {"nom_de_la_commune": "SOORTS HOSSEGOR", "libell_d_acheminement": "SOORTS HOSSEGOR", "code_postal": "40150", "coordonnees_gps": [43.6643756035, -1.39445931936], "code_commune_insee": "40304"}, "geometry": {"type": "Point", "coordinates": [-1.39445931936, 43.6643756035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f629927a1a097cd8ee095daebbbc98747a8efc", "fields": {"nom_de_la_commune": "SORBETS", "libell_d_acheminement": "SORBETS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40305"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96398ae92f83655988b471bf385480692a2043d", "fields": {"nom_de_la_commune": "SORDE L ABBAYE", "libell_d_acheminement": "SORDE L ABBAYE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40306"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2141ae858007a87af15e5e8c3680d86547d80388", "fields": {"nom_de_la_commune": "SORE", "libell_d_acheminement": "SORE", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40307"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec47dc867565f09e61ddac53981dbe837de77a5", "fields": {"nom_de_la_commune": "SORT EN CHALOSSE", "libell_d_acheminement": "SORT EN CHALOSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40308"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330a5dad65ff60f90ec6e3fb129dc5ae0960a960", "fields": {"code_postal": "40560", "code_commune_insee": "40326", "libell_d_acheminement": "VIELLE ST GIRONS", "ligne_5": "ST GIRONS PLAGE", "nom_de_la_commune": "VIELLE ST GIRONS", "coordonnees_gps": [43.9396188358, -1.32531698317]}, "geometry": {"type": "Point", "coordinates": [-1.32531698317, 43.9396188358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a0ba5476432b3fd422819c0a3f935a20109d67", "fields": {"nom_de_la_commune": "VIELLE SOUBIRAN", "libell_d_acheminement": "VIELLE SOUBIRAN", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40327"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66fa03ec25341fbddb7f727bdc55f2954dac0861", "fields": {"nom_de_la_commune": "AZE", "libell_d_acheminement": "AZE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41010"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e629ba1f78af1dac3a87f4e93aa1fd3a79312dde", "fields": {"nom_de_la_commune": "BAILLOU", "libell_d_acheminement": "BAILLOU", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41012"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beef60f283bf5ed801033c555052e4a49cbba0d8", "fields": {"nom_de_la_commune": "BINAS", "libell_d_acheminement": "BINAS", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41017"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177158211dfc16c1c9475ba7b89f3da092ad9725", "fields": {"nom_de_la_commune": "BOUFFRY", "libell_d_acheminement": "BOUFFRY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41022"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8628c202af2f898b0b3ea6f1bc4d1bd2ffcdf629", "fields": {"nom_de_la_commune": "BOURSAY", "libell_d_acheminement": "BOURSAY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41024"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49f7942908ca322c70a63ecbeebe5a3a0c5edf7", "fields": {"nom_de_la_commune": "BRIOU", "libell_d_acheminement": "BRIOU", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41027"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62bef8a6062b1139e2c87d99fba20312b3b61aa5", "fields": {"nom_de_la_commune": "CANDE SUR BEUVRON", "libell_d_acheminement": "CANDE SUR BEUVRON", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41029"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551f9b24d1907e8138ca95fa57968d560ab3d456", "fields": {"nom_de_la_commune": "CHAMBON SUR CISSE", "libell_d_acheminement": "CHAMBON SUR CISSE", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41033"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465494b438bf6a644caff139e3986eccfdb35688", "fields": {"nom_de_la_commune": "LA CHAPELLE VICOMTESSE", "libell_d_acheminement": "LA CHAPELLE VICOMTESSE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41041"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2f076fc8d6163f6f8f62c8c232132bfdc0f4a4", "fields": {"nom_de_la_commune": "LA CHAUSSEE ST VICTOR", "libell_d_acheminement": "LA CHAUSSEE ST VICTOR", "code_postal": "41260", "coordonnees_gps": [47.6111029317, 1.35770492094], "code_commune_insee": "41047"}, "geometry": {"type": "Point", "coordinates": [1.35770492094, 47.6111029317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464d4921563b59b0e52997b46da6bacd5785be06", "fields": {"nom_de_la_commune": "CHAUVIGNY DU PERCHE", "libell_d_acheminement": "CHAUVIGNY DU PERCHE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41048"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bac8510e03fa97914afc254f4910057ad7c3cfa", "fields": {"nom_de_la_commune": "CHEVERNY", "libell_d_acheminement": "CHEVERNY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41050"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117c7b9385c01db94fa162a414a8e14ec49b2f29", "fields": {"nom_de_la_commune": "COUDDES", "libell_d_acheminement": "COUDDES", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41062"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7567c55844cbe16dfa03deb835ea91cebae2a4ac", "fields": {"nom_de_la_commune": "COUR CHEVERNY", "libell_d_acheminement": "COUR CHEVERNY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41067"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc9ca9d7558ce5fcf0e0fb9fd05733a715b2201", "fields": {"nom_de_la_commune": "COURMEMIN", "libell_d_acheminement": "COURMEMIN", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41068"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2731e361cab3b7151d97897c449f75753f68ee8f", "fields": {"nom_de_la_commune": "CROUY SUR COSSON", "libell_d_acheminement": "CROUY SUR COSSON", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41071"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f89e21d41469c17e76f2363d8c7e5df4343ebc", "fields": {"nom_de_la_commune": "DANZE", "libell_d_acheminement": "DANZE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41073"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe209e6fbceefcadc0d7f6dc0463be838ce93d4", "fields": {"nom_de_la_commune": "DROUE", "libell_d_acheminement": "DROUE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41075"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fc2c2ebd57798da38ef0254c63a603e5e5a9e9", "fields": {"nom_de_la_commune": "FAYE", "libell_d_acheminement": "FAYE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41081"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845bd60b6cc18c0818f205003408d943bf46244f", "fields": {"nom_de_la_commune": "LA FERTE ST CYR", "libell_d_acheminement": "LA FERTE ST CYR", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41085"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37dedba94601db1669b92d1e6befd55b68a0e5a6", "fields": {"nom_de_la_commune": "FORTAN", "libell_d_acheminement": "FORTAN", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41090"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ea1f70bf2a1cef3d93baa582b61433447793f9", "fields": {"nom_de_la_commune": "FRETEVAL", "libell_d_acheminement": "FRETEVAL", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41095"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f563a2322605218ee14ddc59396756875aacae0", "fields": {"nom_de_la_commune": "LE GAULT PERCHE", "libell_d_acheminement": "LE GAULT PERCHE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41096"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a635ba40c8168bc68dfaaa048ce5fc995cbcaa7a", "fields": {"nom_de_la_commune": "HOUSSAY", "libell_d_acheminement": "HOUSSAY", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41102"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f9865a54107bbf2c327c2195df2a1a6a78725d", "fields": {"nom_de_la_commune": "JOSNES", "libell_d_acheminement": "JOSNES", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41105"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb5cadf04ec80afd6eba62d703584bca32d41de", "fields": {"nom_de_la_commune": "LANGON", "libell_d_acheminement": "LANGON", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41110"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef3ca242df824d82f4f72896de1dd1be363dda7", "fields": {"nom_de_la_commune": "LASSAY SUR CROISNE", "libell_d_acheminement": "LASSAY SUR CROISNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41112"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa34ce9c50e88d718791ac3d3166ed9ccd8a2f6", "fields": {"nom_de_la_commune": "LISLE", "libell_d_acheminement": "LISLE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41116"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be90284b662f7abd6f5bc2ff6fa53aace84c4cb", "fields": {"nom_de_la_commune": "MARAY", "libell_d_acheminement": "MARAY", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41122"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ca69829bbbf910d69223d4470d8a4fb21fc6fb", "fields": {"nom_de_la_commune": "MARCILLY EN BEAUCE", "libell_d_acheminement": "MARCILLY EN BEAUCE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41124"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64592e08a0970b67f7640163d3091dda607aa88", "fields": {"nom_de_la_commune": "MEHERS", "libell_d_acheminement": "MEHERS", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41132"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a8b16aa1888244f2355b5ed7b7df81475641bf", "fields": {"nom_de_la_commune": "MONTEAUX", "libell_d_acheminement": "MONTEAUX", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41144"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbcf65643e864a2659595e7f47e7ebb5b683e51b", "fields": {"code_postal": "41800", "code_commune_insee": "41149", "libell_d_acheminement": "MONTOIRE SUR LE LOIR", "ligne_5": "ST QUENTIN LES TROO", "nom_de_la_commune": "MONTOIRE SUR LE LOIR", "coordonnees_gps": [47.7461003393, 0.784594265215]}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab84cf534393f798a96820973edd49a354c91d28", "fields": {"nom_de_la_commune": "MONT PRES CHAMBORD", "libell_d_acheminement": "MONT PRES CHAMBORD", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41150"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65fc4c70d2a2060e10d79a5a6a5f6633d59ca132", "fields": {"nom_de_la_commune": "MONTRICHARD VAL DE CHER", "libell_d_acheminement": "MONTRICHARD VAL DE CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41151"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1345e4528c60ce3e6ddf4d8338e71e20f93b45c0", "fields": {"nom_de_la_commune": "MONTRIEUX EN SOLOGNE", "libell_d_acheminement": "MONTRIEUX EN SOLOGNE", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41152"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "213fe7f2f5b92a5ae21df7ed4ded161dea437860", "fields": {"nom_de_la_commune": "MONTROUVEAU", "libell_d_acheminement": "MONTROUVEAU", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41153"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac5ce0f489fe76ab88de23dd453f0956ee8b87e", "fields": {"nom_de_la_commune": "MUIDES SUR LOIRE", "libell_d_acheminement": "MUIDES SUR LOIRE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41155"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b8f635e9b3d3b6c2391276be9b18ac55d9cd883", "fields": {"nom_de_la_commune": "NOYERS SUR CHER", "libell_d_acheminement": "NOYERS SUR CHER", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41164"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d4023412b859e3c6ce7b14f93aac9dca31a8b2", "fields": {"nom_de_la_commune": "OIGNY", "libell_d_acheminement": "OIGNY", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41165"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c9e327f1256fa6303a0eddfd277a67103cfb4b", "fields": {"nom_de_la_commune": "OUCHAMPS", "libell_d_acheminement": "OUCHAMPS", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41170"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b55b54e67b0229b36ac236215685750cc872b1f", "fields": {"code_postal": "41160", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "SEMERVILLE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.9130390568, 1.2078402544]}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee81de051eee9bab751546f733d72d06977220f", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "MEMBROLLES", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26195f297372c3148bd912cedfe86fb761d08fe", "fields": {"nom_de_la_commune": "PEZOU", "libell_d_acheminement": "PEZOU", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41175"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1cc585c68d864c8b6e275837d3952fef9a0e501", "fields": {"nom_de_la_commune": "LE POISLAY", "libell_d_acheminement": "LE POISLAY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41179"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f885ba8cffcb9194b775bee586d0817edcaa2a", "fields": {"nom_de_la_commune": "PRAY", "libell_d_acheminement": "PRAY", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41182"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07db3b9e6c1d96af17d04aa8fb0a7fd55241d8ec", "fields": {"nom_de_la_commune": "RHODON", "libell_d_acheminement": "RHODON", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41188"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e957e100f764db29aec7e24c1504be33807e3b46", "fields": {"nom_de_la_commune": "RILLY SUR LOIRE", "libell_d_acheminement": "RILLY SUR LOIRE", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41189"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d568de3d421892c167e19c28e775d40cabb582", "fields": {"nom_de_la_commune": "ROMORANTIN LANTHENAY", "libell_d_acheminement": "ROMORANTIN LANTHENAY", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41194"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf549e3538f4efa702fe1845950517217f58ab8", "fields": {"nom_de_la_commune": "ST GOURGON", "libell_d_acheminement": "ST GOURGON", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41213"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2bd9a45c9159162b4cc3429c9520758560de79", "fields": {"nom_de_la_commune": "ST JACQUES DES GUERETS", "libell_d_acheminement": "ST JACQUES DES GUERETS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41215"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b401464ece37e45b3e4f723ef8f6cd0b6f88a6b", "fields": {"nom_de_la_commune": "ST JULIEN SUR CHER", "libell_d_acheminement": "ST JULIEN SUR CHER", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41218"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923dcc81f94d11b1ef0e498d283fd6156ad3d2a9", "fields": {"nom_de_la_commune": "ST MARC DU COR", "libell_d_acheminement": "ST MARC DU COR", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41224"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534dd7296e5892442eb30707eb9f6b827479bfc2", "fields": {"nom_de_la_commune": "ST ROMAIN SUR CHER", "libell_d_acheminement": "ST ROMAIN SUR CHER", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41229"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca2104fb7b9ac2d6b3c63579faf486a2d5df136", "fields": {"nom_de_la_commune": "ST VIATRE", "libell_d_acheminement": "ST VIATRE", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41231"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaf4c8f6aaae16b4ba3836d97e0db1832874602", "fields": {"nom_de_la_commune": "SELLES ST DENIS", "libell_d_acheminement": "SELLES ST DENIS", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41241"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6c55e8a62edf35661b9e8f7843d7bde2306087", "fields": {"nom_de_la_commune": "SELLES SUR CHER", "libell_d_acheminement": "SELLES SUR CHER", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41242"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "301e470784f183dded664c2b7c7657989fbd23f8", "fields": {"nom_de_la_commune": "SOUGE", "libell_d_acheminement": "SOUGE", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41250"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ca1177e10115da5972b38466d943cff99cadd6", "fields": {"nom_de_la_commune": "SOUVIGNY EN SOLOGNE", "libell_d_acheminement": "SOUVIGNY EN SOLOGNE", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41251"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d461d2b207b1266cadb4714322d15c80c8817b", "fields": {"nom_de_la_commune": "THOURY", "libell_d_acheminement": "THOURY", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41260"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a56e9a984fbab284c89b69728a7861c289e1a6a", "fields": {"nom_de_la_commune": "TOUR EN SOLOGNE", "libell_d_acheminement": "TOUR EN SOLOGNE", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41262"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3187516ccae220e974bc6691558067b8c3aa62eb", "fields": {"nom_de_la_commune": "VALLIERES LES GRANDES", "libell_d_acheminement": "VALLIERES LES GRANDES", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41267"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5a952a102a8bcd4b7612404b083748ef743a5d", "fields": {"nom_de_la_commune": "VEILLEINS", "libell_d_acheminement": "VEILLEINS", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41268"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e332c985a229360174caae8932f540a3df7d038", "fields": {"nom_de_la_commune": "VERNOU EN SOLOGNE", "libell_d_acheminement": "VERNOU EN SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41271"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e06f2ffacce202bffbfbcf11efb34644835ff6", "fields": {"code_postal": "41290", "code_commune_insee": "41273", "libell_d_acheminement": "VIEVY LE RAYE", "ligne_5": "LA BOSSE", "nom_de_la_commune": "VIEVY LE RAYE", "coordonnees_gps": [47.8184890364, 1.28159581607]}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0a3691d120a78209ce3f995757556df8372d5b", "fields": {"nom_de_la_commune": "VILLECHAUVE", "libell_d_acheminement": "VILLECHAUVE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41278"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54fc35e70fb8b4855983db55312b634437cae71", "fields": {"nom_de_la_commune": "VILLEDIEU LE CHATEAU", "libell_d_acheminement": "VILLEDIEU LE CHATEAU", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41279"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b1f79d5d2a04747c73af42dbd018cf3e01d7a14", "fields": {"nom_de_la_commune": "VILLEFRANCOEUR", "libell_d_acheminement": "VILLEFRANCOEUR", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41281"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97af15412759f79134b924786c550377313485d", "fields": {"nom_de_la_commune": "VILLENEUVE FROUVILLE", "libell_d_acheminement": "VILLENEUVE FROUVILLE", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41284"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd23cf42586ee3de01c34cb5b3be539bdcd94df8", "fields": {"nom_de_la_commune": "VILLERBON", "libell_d_acheminement": "VILLERBON", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41288"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c3e1f9503701f80f159df33e3a386b00a5ed84", "fields": {"nom_de_la_commune": "VOUZON", "libell_d_acheminement": "VOUZON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41296"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f049a33518e6b17f0921e130f47b01c4ec67ef33", "fields": {"nom_de_la_commune": "YVOY LE MARRON", "libell_d_acheminement": "YVOY LE MARRON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41297"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f036fecd45439ce440c004c086dd2b81437beb57", "fields": {"nom_de_la_commune": "ARCINGES", "libell_d_acheminement": "ARCINGES", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42007"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e392edba96b447a00ec98a537d84097801e0005a", "fields": {"nom_de_la_commune": "BOEN SUR LIGNON", "libell_d_acheminement": "BOEN SUR LIGNON", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42019"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5574e3d22c6f3cf34077c6e7b9950af39b15f3b6", "fields": {"nom_de_la_commune": "BOISSET LES MONTROND", "libell_d_acheminement": "BOISSET LES MONTROND", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42020"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63398739d655c6244202e47f36eea9cddb81fce", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42029"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793d431583985d41f4469a928cde9da652f98a82", "fields": {"nom_de_la_commune": "CHAGNON", "libell_d_acheminement": "CHAGNON", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42036"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943b5f95b47a279c4b240ab83ec07c27d7c3c2e9", "fields": {"nom_de_la_commune": "CHALAIN D UZORE", "libell_d_acheminement": "CHALAIN D UZORE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42037"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75cd532459c409438490b5f4a03d911e79c9cb1", "fields": {"nom_de_la_commune": "CHAMPOLY", "libell_d_acheminement": "CHAMPOLY", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42047"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cbfc5a7bc674085cfd0a2f7f6205fb9eff265c", "fields": {"nom_de_la_commune": "CHANDON", "libell_d_acheminement": "CHANDON", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42048"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7a48e416d3f8bf874f2b188b7e0467727021f1", "fields": {"nom_de_la_commune": "CHANGY", "libell_d_acheminement": "CHANGY", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42049"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff0c18d14d93d31244c9fe66ea6b15c87f8ed71", "fields": {"nom_de_la_commune": "LA CHAPELLE EN LAFAYE", "libell_d_acheminement": "LA CHAPELLE EN LAFAYE", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42050"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "391aef0cd26569ca6caaca5d261ef26f097c6ace", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42053"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158709c02cb730bdaa9b94a9d6d5aea66eeae8bf", "fields": {"nom_de_la_commune": "CHAVANAY", "libell_d_acheminement": "CHAVANAY", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42056"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21071efdb471404998dc0c051d73e7b08fdc640d", "fields": {"nom_de_la_commune": "CHENEREILLES", "libell_d_acheminement": "CHENEREILLES", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42060"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a05512e3ae86942bdcd88db9cba34301e2cb292", "fields": {"nom_de_la_commune": "CHIRASSIMONT", "libell_d_acheminement": "CHIRASSIMONT", "code_postal": "42114", "coordonnees_gps": [45.9115558204, 4.30459179806], "code_commune_insee": "42063"}, "geometry": {"type": "Point", "coordinates": [4.30459179806, 45.9115558204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4f1d2a0dd9bab8700f87d28abec3c02ebdc39c", "fields": {"nom_de_la_commune": "CHUYER", "libell_d_acheminement": "CHUYER", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42064"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edce94a4cdea2df759f6148b3d678cd122e32508", "fields": {"nom_de_la_commune": "COMMELLE VERNAY", "libell_d_acheminement": "COMMELLE VERNAY", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42069"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b2c1f21617722571aab7c3b393a33078b5d08cb", "fields": {"nom_de_la_commune": "LA GREVE SUR MIGNON", "libell_d_acheminement": "LA GREVE SUR MIGNON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17182"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010dce4e079a31f306b1fc20019c5d09b96472e7", "fields": {"nom_de_la_commune": "GREZAC", "libell_d_acheminement": "GREZAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17183"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e97d1233cfd752325053344470e94a67f9f373", "fields": {"nom_de_la_commune": "LE GUA", "libell_d_acheminement": "LE GUA", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17185"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9043478e728d5ce774401705e5f1dae232c3aa16", "fields": {"nom_de_la_commune": "L HOUMEAU", "libell_d_acheminement": "L HOUMEAU", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17190"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a974aaeff752b38f20f33285119097c7abf4491", "fields": {"nom_de_la_commune": "LA JARD", "libell_d_acheminement": "LA JARD", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17191"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19057b51c51a0cbb99bd3b6b3f163477b8a7cb21", "fields": {"nom_de_la_commune": "JARNAC CHAMPAGNE", "libell_d_acheminement": "JARNAC CHAMPAGNE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17192"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dccd5ec30e90c7c4aa2e7ff0ac47168c12b973ef", "fields": {"nom_de_la_commune": "JUSSAS", "libell_d_acheminement": "JUSSAS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17199"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035d27495e79c3f71487d884e582e3d6e8a0a6bf", "fields": {"nom_de_la_commune": "LANDES", "libell_d_acheminement": "LANDES", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17202"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b5a4241576393fa2c5c767887491a663eec1528", "fields": {"nom_de_la_commune": "LUCHAT", "libell_d_acheminement": "LUCHAT", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17214"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca2245d559adc881f8a9a0029a734dcb3e5e3dc", "fields": {"nom_de_la_commune": "MACQUEVILLE", "libell_d_acheminement": "MACQUEVILLE", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17217"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc9e63fcc5d468b66eafccbecc3c82110910d91", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17227"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30820adbbf792d23b95c08b7d314d4180c04c779", "fields": {"nom_de_la_commune": "MESSAC", "libell_d_acheminement": "MESSAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17231"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fee6960efb61e6baf7a0a7a69712d101c76ca36", "fields": {"nom_de_la_commune": "MONTROY", "libell_d_acheminement": "MONTROY", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17245"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42c2a6f13b3366b21b81375f7a2ad78f82e34ff", "fields": {"nom_de_la_commune": "NEULLES", "libell_d_acheminement": "NEULLES", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17259"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42651ec188f9aae70fbe2c4e3ac4ac501b0f334e", "fields": {"nom_de_la_commune": "NUAILLE SUR BOUTONNE", "libell_d_acheminement": "NUAILLE SUR BOUTONNE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17268"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9a77e8a603b890c5311c378ffebe43b3847ef62", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17276"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe768a8807b13308a3bc2846fb632971ed409d3d", "fields": {"nom_de_la_commune": "PLASSAC", "libell_d_acheminement": "PLASSAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17279"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a005ac3b7cbabac2a0ed9ec89d54aad2ee1161f", "fields": {"code_postal": "17130", "code_commune_insee": "17282", "libell_d_acheminement": "POMMIERS MOULONS", "ligne_5": "MOULONS", "nom_de_la_commune": "POMMIERS MOULONS", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042005bec47e69e54481a4bd0bb03619b6b1b9e6", "fields": {"nom_de_la_commune": "PONT L ABBE D ARNOULT", "libell_d_acheminement": "PONT L ABBE D ARNOULT", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17284"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cafe93abaca9bff537035cccb4eafe39048139f", "fields": {"nom_de_la_commune": "REAUX SUR TREFLE", "libell_d_acheminement": "REAUX SUR TREFLE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17295"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5df5a0a2433bf5f56a5bd9728d06426474d5be5", "fields": {"code_postal": "17500", "code_commune_insee": "17295", "libell_d_acheminement": "REAUX SUR TREFLE", "ligne_5": "MOINGS", "nom_de_la_commune": "REAUX SUR TREFLE", "coordonnees_gps": [45.4259589472, -0.405217175017]}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da7c9eebf47e5d09868f76de090b389f689636a5", "fields": {"nom_de_la_commune": "LA RONDE", "libell_d_acheminement": "LA RONDE", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17303"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fbfbc88c1397ac09ba963bfbb807efc68c705f", "fields": {"nom_de_la_commune": "ROUFFIGNAC", "libell_d_acheminement": "ROUFFIGNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17305"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d7a7aa3422a1dbe1bac91c918c8c11120dce6b", "fields": {"nom_de_la_commune": "ST AIGULIN", "libell_d_acheminement": "ST AIGULIN", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17309"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7d02041c23a47e94df82099b33e6d1832456ee", "fields": {"nom_de_la_commune": "ST BONNET SUR GIRONDE", "libell_d_acheminement": "ST BONNET SUR GIRONDE", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17312"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98fbf16cadbda956e228ea54d91fa50c49781e8b", "fields": {"nom_de_la_commune": "ST CESAIRE", "libell_d_acheminement": "ST CESAIRE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17314"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1d27ae98ae49c7dc3257b4265b2da61a952fad3", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17315"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5378652b8b7372b64cb67c4578000713c333856", "fields": {"nom_de_la_commune": "ST CIERS DU TAILLON", "libell_d_acheminement": "ST CIERS DU TAILLON", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17317"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ee8faa64d8ada69e04b1f7d5ce684e4aba8181", "fields": {"nom_de_la_commune": "ST DIZANT DU GUA", "libell_d_acheminement": "ST DIZANT DU GUA", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17325"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f72351b5a163285d411532627b264c6e47fae6e", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17330"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a35b181759fe6e87f758280642cf2bc4cc9fdf59", "fields": {"code_postal": "17240", "code_commune_insee": "17332", "libell_d_acheminement": "ST GEORGES ANTIGNAC", "ligne_5": "ANTIGNAC", "nom_de_la_commune": "ST GEORGES ANTIGNAC", "coordonnees_gps": [45.4692153488, -0.625972195864]}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a997fbdc3d41a7aa5673541f8b35c6b7a1ba41e7", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "DOMINO", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9cf51467f494b1ef7abd50079656a5e4a5846c", "fields": {"nom_de_la_commune": "ST GERMAIN DE MARENCENNES", "libell_d_acheminement": "ST GERMAIN DE MARENCENNES", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17340"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c377eef7732130936af7dc72944dd17b2068a68", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17346"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f56ed11590980b5add5aa5f12f5f7472577bc10", "fields": {"nom_de_la_commune": "ST JEAN D ANGLE", "libell_d_acheminement": "ST JEAN D ANGLE", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17348"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892f5a7feda694581965fcfa1c8355f08d7cf6e0", "fields": {"nom_de_la_commune": "ST JULIEN DE L ESCAP", "libell_d_acheminement": "ST JULIEN DE L ESCAP", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17350"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a9474c01ebfc3b36a3cd6521f3b45f1251c2a8", "fields": {"nom_de_la_commune": "STE LHEURINE", "libell_d_acheminement": "STE LHEURINE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17355"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e030c67d888c39703327620bb48bf7904eba3ca", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17356"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757dc426b82ede3a11344a8acb381e86389f202a", "fields": {"nom_de_la_commune": "ST MARTIAL DE VITATERNE", "libell_d_acheminement": "ST MARTIAL DE VITATERNE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17363"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c83d0cf03dfb61c23b7f51a8df2a49ff3b05f00", "fields": {"nom_de_la_commune": "ST MEDARD D AUNIS", "libell_d_acheminement": "ST MEDARD D AUNIS", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17373"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa58aa2ec9a917948062363478708417bfdae42", "fields": {"nom_de_la_commune": "ST PALAIS SUR MER", "libell_d_acheminement": "ST PALAIS SUR MER", "code_postal": "17420", "coordonnees_gps": [45.6577191552, -1.10207482154], "code_commune_insee": "17380"}, "geometry": {"type": "Point", "coordinates": [-1.10207482154, 45.6577191552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39574a3c92c0d65403ef15e1c02e5f4350cc14c1", "fields": {"code_postal": "17420", "code_commune_insee": "17380", "libell_d_acheminement": "ST PALAIS SUR MER", "ligne_5": "COURLAY SUR MER", "nom_de_la_commune": "ST PALAIS SUR MER", "coordonnees_gps": [45.6577191552, -1.10207482154]}, "geometry": {"type": "Point", "coordinates": [-1.10207482154, 45.6577191552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6951edc17ce1b8f39c6fd8100fb8b6bd143bf7", "fields": {"nom_de_la_commune": "ST PIERRE D AMILLY", "libell_d_acheminement": "ST PIERRE D AMILLY", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17382"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96017015a22dc0a801e11aae58ca398a9ae4ac3e", "fields": {"nom_de_la_commune": "ST PIERRE DE L ISLE", "libell_d_acheminement": "ST PIERRE DE L ISLE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17384"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a1a9a28c561ac884bdfabeedba286ddaf731b7", "fields": {"nom_de_la_commune": "STE RAMEE", "libell_d_acheminement": "STE RAMEE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17390"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c26edacded27afcf9751cb1cb03c0bcc16ca143", "fields": {"nom_de_la_commune": "ST ROMAIN DE BENET", "libell_d_acheminement": "ST ROMAIN DE BENET", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17393"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305ba571dcd4557c23622819676fc53e41461db9", "fields": {"nom_de_la_commune": "ST SATURNIN DU BOIS", "libell_d_acheminement": "ST SATURNIN DU BOIS", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17394"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0f3df8f11875e476045cf0dc51cf743050caa9", "fields": {"nom_de_la_commune": "ST SAVINIEN", "libell_d_acheminement": "ST SAVINIEN", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17397"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52d761127e46eacc01027be61c392e4e16dba26", "fields": {"nom_de_la_commune": "ST SIMON DE PELLOUAILLE", "libell_d_acheminement": "ST SIMON DE PELLOUAILLE", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17404"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db65c3e4a54b5b91dab6333379e86dfb8da050b", "fields": {"nom_de_la_commune": "ST SORLIN DE CONAC", "libell_d_acheminement": "ST SORLIN DE CONAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17405"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91847aefee3db561f6bc405ab37ee968de5bee17", "fields": {"nom_de_la_commune": "STE SOULLE", "libell_d_acheminement": "STE SOULLE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17407"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c81c56b3188c83ca8fe3e2cc3b3fa745a90db92", "fields": {"nom_de_la_commune": "ST SULPICE D ARNOULT", "libell_d_acheminement": "ST SULPICE D ARNOULT", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17408"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da436b5fba40bb5c190162cd22f646bc365b284d", "fields": {"nom_de_la_commune": "ST SULPICE DE ROYAN", "libell_d_acheminement": "ST SULPICE DE ROYAN", "code_postal": "17200", "coordonnees_gps": [45.6547105842, -1.01223918175], "code_commune_insee": "17409"}, "geometry": {"type": "Point", "coordinates": [-1.01223918175, 45.6547105842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86849b3abacc35f8a23a4c0e1d9753e0d1ca9f9", "fields": {"nom_de_la_commune": "ST THOMAS DE CONAC", "libell_d_acheminement": "ST THOMAS DE CONAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17410"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccdcb77ce7556fc8a77554897b8fe9fcbec1493", "fields": {"nom_de_la_commune": "ST TROJAN LES BAINS", "libell_d_acheminement": "ST TROJAN LES BAINS", "code_postal": "17370", "coordonnees_gps": [45.8397665492, -1.23126758244], "code_commune_insee": "17411"}, "geometry": {"type": "Point", "coordinates": [-1.23126758244, 45.8397665492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c6eff419a1fa9a078b503a4ff2eddb4f01d83f", "fields": {"nom_de_la_commune": "SEMOUSSAC", "libell_d_acheminement": "SEMOUSSAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17424"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe03ce4a100db2b8a9e2b380bdd83eb17b24665b", "fields": {"nom_de_la_commune": "LE SEURE", "libell_d_acheminement": "LE SEURE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17426"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae253d3d624ed44c26a6d7a74943914d1da1d0a3", "fields": {"nom_de_la_commune": "SIECQ", "libell_d_acheminement": "SIECQ", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17427"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba2c90c73da5876f00438078288ffb60fa64147", "fields": {"nom_de_la_commune": "SOUBISE", "libell_d_acheminement": "SOUBISE", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17429"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96149196fd591c1648435488e7f81ee3c1d07c01", "fields": {"nom_de_la_commune": "SOUBRAN", "libell_d_acheminement": "SOUBRAN", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17430"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103902b379a1d4dd533c07e07a22df5de2cb54ba", "fields": {"nom_de_la_commune": "VANZAC", "libell_d_acheminement": "VANZAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17458"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a641e55f483cc1e2c1a29c6b7e978b7c3c5bf8b", "fields": {"nom_de_la_commune": "VERGEROUX", "libell_d_acheminement": "VERGEROUX", "code_postal": "17300", "coordonnees_gps": [45.9492956651, -0.975348891655], "code_commune_insee": "17463"}, "geometry": {"type": "Point", "coordinates": [-0.975348891655, 45.9492956651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27655273bc9336d8829970cff00e8742dcbaf2a2", "fields": {"code_postal": "17340", "code_commune_insee": "17483", "libell_d_acheminement": "YVES", "ligne_5": "LES BOUCHOLEURS", "nom_de_la_commune": "YVES", "coordonnees_gps": [46.0464260547, -1.04444906455]}, "geometry": {"type": "Point", "coordinates": [-1.04444906455, 46.0464260547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d935e6d326844c63631b26d637c7d4adf23159", "fields": {"nom_de_la_commune": "ARCAY", "libell_d_acheminement": "ARCAY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18008"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189e9e4a3fcdb487f9453bec73b4521a2a528564", "fields": {"nom_de_la_commune": "ARDENAIS", "libell_d_acheminement": "ARDENAIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18010"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7fd5f0a994d929d5d41e015060e02d1091dbe24", "fields": {"nom_de_la_commune": "ARGENT SUR SAULDRE", "libell_d_acheminement": "ARGENT SUR SAULDRE", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18011"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f6fd96598808c4db3c357d40954ee4492af076", "fields": {"nom_de_la_commune": "AUBINGES", "libell_d_acheminement": "AUBINGES", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18016"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6b6c70681db45d682b08f7efb1c612933fa20a", "fields": {"nom_de_la_commune": "AUGY SUR AUBOIS", "libell_d_acheminement": "AUGY SUR AUBOIS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18017"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca4682dcb3f0f26a43c7c168891359cb3f28b80", "fields": {"nom_de_la_commune": "AVORD", "libell_d_acheminement": "AVORD", "code_postal": "18520", "coordonnees_gps": [47.0138708859, 2.70198329329], "code_commune_insee": "18018"}, "geometry": {"type": "Point", "coordinates": [2.70198329329, 47.0138708859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d1d022ed2237b4fbf18b362fc691eb50ccf86d", "fields": {"nom_de_la_commune": "BARLIEU", "libell_d_acheminement": "BARLIEU", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18022"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a786f7a6a11a40c14afe0302edf2d88e8ef2f890", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18023"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb9a29c9482bb13ebe47143260e5922db9648a0", "fields": {"nom_de_la_commune": "BELLEVILLE SUR LOIRE", "libell_d_acheminement": "BELLEVILLE SUR LOIRE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18026"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfb93c619ce040383df06c47ed8d3b7ca62395d", "fields": {"nom_de_la_commune": "BUE", "libell_d_acheminement": "BUE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18039"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed11def52f69ec6443d5cf3ce0e198bb83e93d6f", "fields": {"nom_de_la_commune": "LA CELLE CONDE", "libell_d_acheminement": "LA CELLE CONDE", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18043"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc56ada25b434f3df4dc1d098a286ea5713d544", "fields": {"nom_de_la_commune": "CERBOIS", "libell_d_acheminement": "CERBOIS", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18044"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8e1748143bc02816a58a1f73c74866d9130741", "fields": {"nom_de_la_commune": "CHALIVOY MILON", "libell_d_acheminement": "CHALIVOY MILON", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18045"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474c3178f5513287cc49ec36e2c3fd9bbbac84c6", "fields": {"nom_de_la_commune": "CHARENTON DU CHER", "libell_d_acheminement": "CHARENTON DU CHER", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18052"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28ca8996ef27ef31c95d7d04d2d2051f4e6df89", "fields": {"code_postal": "18800", "code_commune_insee": "18056", "libell_d_acheminement": "CHASSY", "ligne_5": "DEJOINTES", "nom_de_la_commune": "CHASSY", "coordonnees_gps": [47.0880340091, 2.73431909926]}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c006cbfb4d1940dd2fed2004f1e78f88e6b674", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR CHER", "libell_d_acheminement": "CHATEAUNEUF SUR CHER", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18058"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9d901c8fa956b3de3a52b479f12e9a7586254d", "fields": {"nom_de_la_commune": "CHERY", "libell_d_acheminement": "CHERY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18064"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea4f624e2ec1b9b195032a0a30cf4dc25fcc30e", "fields": {"nom_de_la_commune": "CHEZAL BENOIT", "libell_d_acheminement": "CHEZAL BENOIT", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18065"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71265bbc9e1850de7c2753a29d242499d7291bbf", "fields": {"nom_de_la_commune": "COUY", "libell_d_acheminement": "COUY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18077"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd153e272f776087b025a1f73d6fafd888b8a884", "fields": {"nom_de_la_commune": "DREVANT", "libell_d_acheminement": "DREVANT", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18086"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb75ada1482319585702de43aa1ae4a416308dbf", "fields": {"nom_de_la_commune": "ENNORDRES", "libell_d_acheminement": "ENNORDRES", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18088"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ac93f085940dd926f3b46dfa1d4d8cdefcda86", "fields": {"nom_de_la_commune": "FARGES ALLICHAMPS", "libell_d_acheminement": "FARGES ALLICHAMPS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18091"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5c17a5fcb478d9ba9b4511bdd7f77ce2c9a381", "fields": {"nom_de_la_commune": "FLAVIGNY", "libell_d_acheminement": "FLAVIGNY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18095"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdee1789e143ce8a1126a3bb5077a9d7dca208c", "fields": {"nom_de_la_commune": "GENOUILLY", "libell_d_acheminement": "GENOUILLY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18100"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a70873b70949ec6188dc97df6a040b6efa97fa", "fields": {"nom_de_la_commune": "GERMIGNY L EXEMPT", "libell_d_acheminement": "GERMIGNY L EXEMPT", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18101"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9dfeddb044b2c9438872894202c8f019b599a2", "fields": {"nom_de_la_commune": "HERRY", "libell_d_acheminement": "HERRY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18110"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8fa46e9bab85ec9e59e31900c4ffc5e3ac3862a", "fields": {"nom_de_la_commune": "INEUIL", "libell_d_acheminement": "INEUIL", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18114"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e19cf034b6b5320b5627523c1a4e358b77da687", "fields": {"nom_de_la_commune": "JALOGNES", "libell_d_acheminement": "JALOGNES", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18116"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0792f94d7a7f91ae697e7ccb04d5d11168ac171c", "fields": {"nom_de_la_commune": "JUSSY CHAMPAGNE", "libell_d_acheminement": "JUSSY CHAMPAGNE", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18119"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684e31d34aac6fc03ef2d40167374b83e3d8bc88", "fields": {"nom_de_la_commune": "LANTAN", "libell_d_acheminement": "LANTAN", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18121"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54357da7971aff7e45e9463ada04e826680d1364", "fields": {"nom_de_la_commune": "LAPAN", "libell_d_acheminement": "LAPAN", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18122"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bead41b355d07da9773c0a2254c5491077d61d", "fields": {"nom_de_la_commune": "LEVET", "libell_d_acheminement": "LEVET", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18126"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b669104ab79536365da206eb4242fdf60a96c18f", "fields": {"nom_de_la_commune": "LIMEUX", "libell_d_acheminement": "LIMEUX", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18128"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ffbfbb2d3aef5307eaba43bdb06149ba9645d96", "fields": {"nom_de_la_commune": "LUNERY", "libell_d_acheminement": "LUNERY", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18133"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03916f4c224b658ba0a613325ca56f2b6d21993b", "fields": {"nom_de_la_commune": "MAREUIL SUR ARNON", "libell_d_acheminement": "MAREUIL SUR ARNON", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18137"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb18ed436887da1057e8700b17b85ab703e349e", "fields": {"nom_de_la_commune": "MARMAGNE", "libell_d_acheminement": "MARMAGNE", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18138"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd09a79546af12a42c0789826ad2bace860389b", "fields": {"nom_de_la_commune": "MENETOU RATEL", "libell_d_acheminement": "MENETOU RATEL", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18144"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82876a8b4d270a2be8f6df728e4d6604d6ed5530", "fields": {"nom_de_la_commune": "MEASNES", "libell_d_acheminement": "MEASNES", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23130"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ae43a06b21c42c7bdbefe4ba2d6efb20f3c454", "fields": {"nom_de_la_commune": "MONTBOUCHER", "libell_d_acheminement": "MONTBOUCHER", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23133"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92d2ce51ee82c69d4c5bf3267eeaf32b1455559", "fields": {"nom_de_la_commune": "NAILLAT", "libell_d_acheminement": "NAILLAT", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23141"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718952ccf8181fe3f8343cfd220ce71e85475d5f", "fields": {"nom_de_la_commune": "NOUZERINES", "libell_d_acheminement": "NOUZERINES", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23146"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8615c87e188176b6b6d63fec1070ed329d191392", "fields": {"nom_de_la_commune": "NOUZIERS", "libell_d_acheminement": "NOUZIERS", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23148"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be9f35305383d16a39666d7225d72a40b79e622", "fields": {"nom_de_la_commune": "PEYRABOUT", "libell_d_acheminement": "PEYRABOUT", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23150"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad943a91c6a4806b581a66c7bf4947e004c672a7", "fields": {"nom_de_la_commune": "PONTCHARRAUD", "libell_d_acheminement": "PONTCHARRAUD", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23156"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec91270e2a48df9f4f98cbc9e60ac28b1384201", "fields": {"nom_de_la_commune": "SAGNAT", "libell_d_acheminement": "SAGNAT", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23166"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f2809ca0f08b5574c5f420ec940376edc22dcc", "fields": {"nom_de_la_commune": "SAVENNES", "libell_d_acheminement": "SAVENNES", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23170"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920f308206226d6dd14bbe6ce68c5e0b4279c648", "fields": {"nom_de_la_commune": "LA SERRE BUSSIERE VIEILLE", "libell_d_acheminement": "LA SERRE BUSSIERE VIEILLE", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23172"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cd2615cc6016142cd6d4bae5ec658912a2e203", "fields": {"nom_de_la_commune": "SOUMANS", "libell_d_acheminement": "SOUMANS", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23174"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482f173886db3eaa2a92ae7e43084039c6a05360", "fields": {"nom_de_la_commune": "SOUS PARSAT", "libell_d_acheminement": "SOUS PARSAT", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23175"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad2207d517298f142c01e1246efe366af60f30af", "fields": {"nom_de_la_commune": "LA SOUTERRAINE", "libell_d_acheminement": "LA SOUTERRAINE", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23176"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a90676aa9da4cceb83bcd8d1073e14db520a873d", "fields": {"nom_de_la_commune": "ST AGNANT PRES CROCQ", "libell_d_acheminement": "ST AGNANT PRES CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23178"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426d80ef4f19875d3781906f6d18c8ed1ee7b7b4", "fields": {"nom_de_la_commune": "ST DIZIER LA TOUR", "libell_d_acheminement": "ST DIZIER LA TOUR", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23187"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324dfef5923f9bba607e1a7b752eefd82b03cbb4", "fields": {"nom_de_la_commune": "ST DIZIER LES DOMAINES", "libell_d_acheminement": "ST DIZIER LES DOMAINES", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23188"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2502aa930a9b2f032d0e8efa78cfce827309441e", "fields": {"nom_de_la_commune": "ST DIZIER LEYRENNE", "libell_d_acheminement": "ST DIZIER LEYRENNE", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23189"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a2cbf603d1dc4a7a6110ff2c3ae237eef709aa", "fields": {"nom_de_la_commune": "ST DOMET", "libell_d_acheminement": "ST DOMET", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23190"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7627e1c754dddaad209302327218a71c536aa481", "fields": {"nom_de_la_commune": "ST ETIENNE DE FURSAC", "libell_d_acheminement": "ST ETIENNE DE FURSAC", "code_postal": "23290", "coordonnees_gps": [46.1460504091, 1.51372481085], "code_commune_insee": "23192"}, "geometry": {"type": "Point", "coordinates": [1.51372481085, 46.1460504091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7663245a3f65db2f86187b98b2afe165b27d615", "fields": {"nom_de_la_commune": "ST GOUSSAUD", "libell_d_acheminement": "ST GOUSSAUD", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23200"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ae7b171badd8ee384f531342f08ac29f760383", "fields": {"nom_de_la_commune": "ST JUNIEN LA BREGERE", "libell_d_acheminement": "ST JUNIEN LA BREGERE", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23205"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c842621b7574c6e3cbd7b8ea8b3d1fbe91c41883", "fields": {"nom_de_la_commune": "ST LEGER LE GUERETOIS", "libell_d_acheminement": "ST LEGER LE GUERETOIS", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23208"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73cc3c166e6c11461bb4dad6b5ffa45927296d08", "fields": {"nom_de_la_commune": "ST MAIXANT", "libell_d_acheminement": "ST MAIXANT", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23210"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad6b8051f3387dd8a162e9d000d9f91b1439e5b", "fields": {"nom_de_la_commune": "ST MARC A LOUBAUD", "libell_d_acheminement": "ST MARC A LOUBAUD", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23212"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ad32696ffe3bc715bbf07454d25adb6760115c", "fields": {"nom_de_la_commune": "ST PARDOUX D ARNET", "libell_d_acheminement": "ST PARDOUX D ARNET", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23226"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f312e879a351640793700f3c7c66b3ffed159811", "fields": {"nom_de_la_commune": "ST PIERRE CHERIGNAT", "libell_d_acheminement": "ST PIERRE CHERIGNAT", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23230"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67c4c0870261a07f27d3e110db79b887ba12c28", "fields": {"code_postal": "23460", "code_commune_insee": "23232", "libell_d_acheminement": "ST PIERRE BELLEVUE", "ligne_5": "LE COMPEIX", "nom_de_la_commune": "ST PIERRE BELLEVUE", "coordonnees_gps": [45.8611581486, 1.91070196951]}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9df1bf96a2c933efebfae166ddba136cf5673b", "fields": {"nom_de_la_commune": "ST PIERRE LE BOST", "libell_d_acheminement": "ST PIERRE LE BOST", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23233"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb6c9e86dd1134231cba673f4c3d9b9306b02bc", "fields": {"nom_de_la_commune": "ST SEBASTIEN", "libell_d_acheminement": "ST SEBASTIEN", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23239"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb4e7a459d2e5c58fea0634e9bd6df648f40e4e", "fields": {"nom_de_la_commune": "ST SILVAIN MONTAIGUT", "libell_d_acheminement": "ST SILVAIN MONTAIGUT", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23242"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0964843572a23ded777f93614141e9ddd2b9e47", "fields": {"nom_de_la_commune": "ST SILVAIN SOUS TOULX", "libell_d_acheminement": "ST SILVAIN SOUS TOULX", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23243"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13827760cb95adfe0e2c0bea81264f29fa6e926b", "fields": {"nom_de_la_commune": "ST SULPICE LES CHAMPS", "libell_d_acheminement": "ST SULPICE LES CHAMPS", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23246"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6214c5e69b62da44c7a0dfd82c6430a9fceb486", "fields": {"nom_de_la_commune": "ST VAURY", "libell_d_acheminement": "ST VAURY", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23247"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596cfe99ab971145d3a021cb9f2a61ed513b66e4", "fields": {"nom_de_la_commune": "ST VICTOR EN MARCHE", "libell_d_acheminement": "ST VICTOR EN MARCHE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23248"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9992247fbede365bab6ac8e1a7824ae8cff224", "fields": {"nom_de_la_commune": "ST YRIEIX LES BOIS", "libell_d_acheminement": "ST YRIEIX LES BOIS", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23250"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e80942ab705868edee6438c7381e7f032f7513", "fields": {"nom_de_la_commune": "TARDES", "libell_d_acheminement": "TARDES", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23251"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644ab8465aee43d4debf14a08ec6fd0c906ab99e", "fields": {"nom_de_la_commune": "VIDAILLAT", "libell_d_acheminement": "VIDAILLAT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23260"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78651f34ced75fbfbc4f228b4fa3e1ae2cf743d3", "fields": {"nom_de_la_commune": "LA VILLEDIEU", "libell_d_acheminement": "LA VILLEDIEU", "code_postal": "23340", "coordonnees_gps": [45.7675202312, 1.97700019659], "code_commune_insee": "23264"}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb74878a12532f578ee6109d7217758fde9ca87", "fields": {"nom_de_la_commune": "ANGOISSE", "libell_d_acheminement": "ANGOISSE", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24008"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712e80a3ca1a01cde9c1b683b763a4e4e8a3b060", "fields": {"nom_de_la_commune": "AUGIGNAC", "libell_d_acheminement": "AUGIGNAC", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24016"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b07a62d8d5fd05893a0c4ff36b5e6d305319ec3", "fields": {"nom_de_la_commune": "LA BACHELLERIE", "libell_d_acheminement": "LA BACHELLERIE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24020"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527be6f5a93f93f27f9ff58ec09aaf51add42fd9", "fields": {"nom_de_la_commune": "BARS", "libell_d_acheminement": "BARS", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24025"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8aca28edc2a70f75ddf4fbb2810546df65ea42", "fields": {"nom_de_la_commune": "BAYAC", "libell_d_acheminement": "BAYAC", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24027"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3d0264a67d980c5fdf34797bd4008357f8825f", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "BORN DE CHAMPS", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9310680408504c4ec0fa1e9e239f0dc187b9cf7", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "STE SABINE BORN", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dba62af29b7fda7fbf30a48f7fd0a5111bdf4e8", "fields": {"nom_de_la_commune": "BONNEVILLE ET ST AVIT DE FUMADIERES", "libell_d_acheminement": "BONNEVILLE ST AVIT DE FUMADIERES", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24048"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e12af7cc7579d1927f50d71e33f8bc072c248ffc", "fields": {"nom_de_la_commune": "BOURDEILLES", "libell_d_acheminement": "BOURDEILLES", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24055"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2700409bd25253ea804a6c182a3943435f8168d9", "fields": {"nom_de_la_commune": "BOURG DES MAISONS", "libell_d_acheminement": "BOURG DES MAISONS", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24057"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ee3ab011e5cee8c3eea133c95e804f7f7aeeaf", "fields": {"nom_de_la_commune": "BOURG DU BOST", "libell_d_acheminement": "BOURG DU BOST", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24058"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed53728ceb9bf1bb29464902324ceaf93ea63107", "fields": {"nom_de_la_commune": "BOUZIC", "libell_d_acheminement": "BOUZIC", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24063"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52ed522d0c44fa822326b02a11aced1aec69f4c", "fields": {"nom_de_la_commune": "CALES", "libell_d_acheminement": "CALES", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24073"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c37ce1bd6f9832172e53456abdc466b4267c77c5", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24076"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76909c4956ec8bdedf0f71c6bfe0317022911a86", "fields": {"nom_de_la_commune": "CARLUX", "libell_d_acheminement": "CARLUX", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24081"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b48e24bb2e56f339934d97ef28a81d8f2246561", "fields": {"nom_de_la_commune": "CARVES", "libell_d_acheminement": "CARVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24084"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbce89891c2eac84003830e986e8558d5c91532e", "fields": {"nom_de_la_commune": "CASTELNAUD LA CHAPELLE", "libell_d_acheminement": "CASTELNAUD LA CHAPELLE", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24086"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f749ab9d819b5cf69b46785518ed98bf74cf7a0", "fields": {"nom_de_la_commune": "CASTELS", "libell_d_acheminement": "CASTELS", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24087"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6f315b65124c8551edbd885e6dd676d85d2a4a", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24090"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b64f07b5dfc3dcca4b0ca45a025759aa9d60dc", "fields": {"nom_de_la_commune": "CENAC ET ST JULIEN", "libell_d_acheminement": "CENAC ET ST JULIEN", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24091"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc73747a7f3e3e208a6365fe554d8b055a9cb4e1", "fields": {"nom_de_la_commune": "LE CHANGE", "libell_d_acheminement": "LE CHANGE", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24103"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2115babb9eb0e6111c939e9b1e0b2b33fcefade", "fields": {"nom_de_la_commune": "LA CHAPELLE AUBAREIL", "libell_d_acheminement": "LA CHAPELLE AUBAREIL", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24106"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96bee32c4ed87ec06e089e1f974cdb07da544e2", "fields": {"nom_de_la_commune": "CLERMONT DE BEAUREGARD", "libell_d_acheminement": "CLERMONT DE BEAUREGARD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24123"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55551cd0709302223ae0991d8f0dafb42aaa4d00", "fields": {"nom_de_la_commune": "CONDAT SUR VEZERE", "libell_d_acheminement": "CONDAT SUR VEZERE", "code_postal": "24570", "coordonnees_gps": [45.1179534965, 1.2304363146], "code_commune_insee": "24130"}, "geometry": {"type": "Point", "coordinates": [1.2304363146, 45.1179534965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650f6804458fceb7471815ea65e9a2629c9f5c83", "fields": {"nom_de_la_commune": "COUBJOURS", "libell_d_acheminement": "COUBJOURS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24136"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b1cc7956553ee954470b220f49548f6ec5665f", "fields": {"nom_de_la_commune": "COUZE ET ST FRONT", "libell_d_acheminement": "COUZE ET ST FRONT", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24143"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b16a148bfd400a98df0ccd4d9f5abe32dfeb3d2", "fields": {"nom_de_la_commune": "DAGLAN", "libell_d_acheminement": "DAGLAN", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24150"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3273eb6495047162f7f23d1b3879f2750a05a582", "fields": {"code_postal": "24560", "code_commune_insee": "24168", "libell_d_acheminement": "PLAISANCE", "ligne_5": "MANDACOU", "nom_de_la_commune": "PLAISANCE", "coordonnees_gps": [44.7422356439, 0.603161629803]}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135f8a6372d60027355487a62ad00b4a420296a0", "fields": {"nom_de_la_commune": "LES EYZIES DE TAYAC SIREUIL", "libell_d_acheminement": "LES EYZIES DE TAYAC SIREUIL", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24172"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0173150c2ab6f5b94d32fda7a727895659f6bf20", "fields": {"code_postal": "24620", "code_commune_insee": "24172", "libell_d_acheminement": "LES EYZIES DE TAYAC SIREUIL", "ligne_5": "SIREUIL", "nom_de_la_commune": "LES EYZIES DE TAYAC SIREUIL", "coordonnees_gps": [44.9543754146, 1.07528659092]}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5433dd4105dd3f158e681343b4da6d71d901fc02", "fields": {"nom_de_la_commune": "FANLAC", "libell_d_acheminement": "FANLAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24174"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476fc9b494f2b8f8909a230f778909c082d2cb9f", "fields": {"nom_de_la_commune": "FESTALEMPS", "libell_d_acheminement": "FESTALEMPS", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24178"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68daf4bdec5519e748d9949e743c31a8cdd13f5f", "fields": {"nom_de_la_commune": "LA FEUILLADE", "libell_d_acheminement": "LA FEUILLADE", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24179"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236299d290d9f0c389717bd010facf55e1167d1b", "fields": {"nom_de_la_commune": "FONROQUE", "libell_d_acheminement": "FONROQUE", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24186"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bedc45bafc5080cc0a97b7e630c4544c573a8ac5", "fields": {"nom_de_la_commune": "GARDONNE", "libell_d_acheminement": "GARDONNE", "code_postal": "24680", "coordonnees_gps": [44.8327905083, 0.37087813465], "code_commune_insee": "24194"}, "geometry": {"type": "Point", "coordinates": [0.37087813465, 44.8327905083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f61c6ec47c36885622877bc5948a584db024254", "fields": {"nom_de_la_commune": "LA GONTERIE BOULOUNEIX", "libell_d_acheminement": "LA GONTERIE BOULOUNEIX", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24198"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd52af036b8459c461d00ac5ced9f78f673ac15", "fields": {"nom_de_la_commune": "ISSAC", "libell_d_acheminement": "ISSAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24211"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d682bc58cae9e2f60f9f79ae68e185cd64b4702", "fields": {"nom_de_la_commune": "JOURNIAC", "libell_d_acheminement": "JOURNIAC", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24217"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600a983823ef1d78f26b88067cf24d012abe8f6c", "fields": {"nom_de_la_commune": "JUMILHAC LE GRAND", "libell_d_acheminement": "JUMILHAC LE GRAND", "code_postal": "24630", "coordonnees_gps": [45.5052399015, 1.08073517571], "code_commune_insee": "24218"}, "geometry": {"type": "Point", "coordinates": [1.08073517571, 45.5052399015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4411ed4bd6ed95f09869201fd57d50213ede86f9", "fields": {"nom_de_la_commune": "LA FORCE", "libell_d_acheminement": "LA FORCE", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24222"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3e89747c76c13ea9789dea35c6600a799d0770a", "fields": {"nom_de_la_commune": "LANQUAIS", "libell_d_acheminement": "LANQUAIS", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24228"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58446b513abf4632dfbdca5e115208fb2f16d5f6", "fields": {"nom_de_la_commune": "LE LARDIN ST LAZARE", "libell_d_acheminement": "LE LARDIN ST LAZARE", "code_postal": "24570", "coordonnees_gps": [45.1179534965, 1.2304363146], "code_commune_insee": "24229"}, "geometry": {"type": "Point", "coordinates": [1.2304363146, 45.1179534965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aadda779da49bec0749ad91de1ed2bd2b13591c", "fields": {"nom_de_la_commune": "LAVALADE", "libell_d_acheminement": "LAVALADE", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24231"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe72f6bf50f29698da7758f746216bb85f199c9d", "fields": {"nom_de_la_commune": "LIMEYRAT", "libell_d_acheminement": "LIMEYRAT", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24241"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14644456581d23c19a1f323f5e7e35026881751d", "fields": {"nom_de_la_commune": "MAREUIL", "libell_d_acheminement": "MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24253"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9cab74a78f025c3400d64a096e49ddb2bed3fa3", "fields": {"nom_de_la_commune": "MAUZAC ET GRAND CASTANG", "libell_d_acheminement": "MAUZAC ET GRAND CASTANG", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24260"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd4a927a76e03c8142047699ad014672e0b1f91", "fields": {"nom_de_la_commune": "MIALET", "libell_d_acheminement": "MIALET", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24269"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c72de15276f19527b4a539d4008fd26ef0f773", "fields": {"nom_de_la_commune": "MONPAZIER", "libell_d_acheminement": "MONPAZIER", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24280"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845d223722570e872268fba3cc78d9ba018ac3bf", "fields": {"nom_de_la_commune": "MONSAC", "libell_d_acheminement": "MONSAC", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24281"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3343efc1b4fe878c2914d06998eb95e0eb7b968e", "fields": {"nom_de_la_commune": "MONSAGUEL", "libell_d_acheminement": "MONSAGUEL", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24282"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf12109950cea395475e77cbc5371463405dffd", "fields": {"nom_de_la_commune": "MONSEC", "libell_d_acheminement": "MONSEC", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24283"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279363bc91bf2d52b0336141c95aa155b4aaf0a9", "fields": {"nom_de_la_commune": "MONTAGNAC D AUBEROCHE", "libell_d_acheminement": "MONTAGNAC D AUBEROCHE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24284"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bcc469810c2aea40a03d8e7b7394ec0fe9374d8", "fields": {"nom_de_la_commune": "MONTAGRIER", "libell_d_acheminement": "MONTAGRIER", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24286"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d837d0f17d9422917e550cd6aecea135e881fb50", "fields": {"nom_de_la_commune": "MONTREM", "libell_d_acheminement": "MONTREM", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24295"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b553f100bbf02522238c74bb8797c352a5c50c3", "fields": {"nom_de_la_commune": "MUSSIDAN", "libell_d_acheminement": "MUSSIDAN", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24299"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff35a149e4818a320a127004cead55125c9a4aa", "fields": {"nom_de_la_commune": "NOTRE DAME DE SANILHAC", "libell_d_acheminement": "NOTRE DAME DE SANILHAC", "code_postal": "24660", "coordonnees_gps": [45.1436833144, 0.700878346896], "code_commune_insee": "24312"}, "geometry": {"type": "Point", "coordinates": [0.700878346896, 45.1436833144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba524b7284b9433c792adb570e8d451b07cc117", "fields": {"nom_de_la_commune": "PAULIN", "libell_d_acheminement": "PAULIN", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24317"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0be75f14bb46eb2e708f5702de87d33dbb380d6", "fields": {"nom_de_la_commune": "PAUNAT", "libell_d_acheminement": "PAUNAT", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24318"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e800ca12192f94ff2e226094a4f3406aa3e3e3f6", "fields": {"nom_de_la_commune": "PETIT BERSAC", "libell_d_acheminement": "PETIT BERSAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24323"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2204771a59135741f3816fe21452838ad742897", "fields": {"nom_de_la_commune": "PONTOURS", "libell_d_acheminement": "PONTOURS", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24334"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686098b0645fcf29986d64bd339be896af165da2", "fields": {"nom_de_la_commune": "PREYSSAC D EXCIDEUIL", "libell_d_acheminement": "PREYSSAC D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24339"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646fb21d537895e161ad82b56f41f2fdade28a52", "fields": {"nom_de_la_commune": "RAMPIEUX", "libell_d_acheminement": "RAMPIEUX", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24347"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74c6f6c1c51793d965d84104617b42a3b304218", "fields": {"nom_de_la_commune": "ARMEAU", "libell_d_acheminement": "ARMEAU", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89018"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e946148a1f89fece129e7d6496917b6d5f2e70", "fields": {"nom_de_la_commune": "ASQUINS", "libell_d_acheminement": "ASQUINS", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89021"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da8a4f54bf97d0f98ad73e37fc4bd2af66536f98", "fields": {"nom_de_la_commune": "AUGY", "libell_d_acheminement": "AUGY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89023"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecd7b95b2f4989e16c0fa1a5c9a9dab70dad211", "fields": {"nom_de_la_commune": "BEUGNON", "libell_d_acheminement": "BEUGNON", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89041"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e6c4d3957f06b67dd39c367dc4089fcb717831", "fields": {"nom_de_la_commune": "BLANNAY", "libell_d_acheminement": "BLANNAY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89044"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3513bb79f05f047575e650b2b7a765ed50e43134", "fields": {"nom_de_la_commune": "BONNARD", "libell_d_acheminement": "BONNARD", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89050"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed6d5ac59bb1ccd1132e19aabcfe319ee1ae34c", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89058"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85a8f498902b3cc28b8146967f547bd508aa7f8", "fields": {"nom_de_la_commune": "BUTTEAUX", "libell_d_acheminement": "BUTTEAUX", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89061"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02873dbaa192d230319ca0c4697bfbb1d6762035", "fields": {"nom_de_la_commune": "CARISEY", "libell_d_acheminement": "CARISEY", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89062"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a0806bf500e62932d1e1d8bf1b8a6a3e1312f8", "fields": {"nom_de_la_commune": "LA CELLE ST CYR", "libell_d_acheminement": "LA CELLE ST CYR", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89063"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e92df92faf76c871b3cb4220c45dfbcb17ffbd", "fields": {"nom_de_la_commune": "CEZY", "libell_d_acheminement": "CEZY", "code_postal": "89410", "coordonnees_gps": [47.9724194151, 3.31445831227], "code_commune_insee": "89067"}, "geometry": {"type": "Point", "coordinates": [3.31445831227, 47.9724194151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade4c5df0f239770802c71ac6994ff3997b66170", "fields": {"nom_de_la_commune": "CHAMPVALLON", "libell_d_acheminement": "CHAMPVALLON", "code_postal": "89710", "coordonnees_gps": [47.9188469839, 3.34212763493], "code_commune_insee": "89078"}, "geometry": {"type": "Point", "coordinates": [3.34212763493, 47.9188469839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd04c1f5f5853b8c4b38a861ec114db56696541e", "fields": {"nom_de_la_commune": "CHARBUY", "libell_d_acheminement": "CHARBUY", "code_postal": "89113", "coordonnees_gps": [47.8595932276, 3.45642824955], "code_commune_insee": "89083"}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70735aecc3776521c62ec640cc4a8f13e5bd41f1", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "ST DENIS SUR OUANNE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a8c0e8961aa79034c25a2425bfcf35710db449", "fields": {"nom_de_la_commune": "CHASTELLUX SUR CURE", "libell_d_acheminement": "CHASTELLUX SUR CURE", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89089"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00117d24ac9121f4ba48013ac14d6a5198f80743", "fields": {"nom_de_la_commune": "CHAUMOT", "libell_d_acheminement": "CHAUMOT", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89094"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4942d01f87d0fd634fefd6e8decc4ca34aa941", "fields": {"nom_de_la_commune": "CHEMILLY SUR YONNE", "libell_d_acheminement": "CHEMILLY SUR YONNE", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89096"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1019dcfd0418b1e0877afbc87e27456fb2a47484", "fields": {"nom_de_la_commune": "CHENEY", "libell_d_acheminement": "CHENEY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89098"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7291aa4b5b3d769e902a60afad2abfbb760bc29c", "fields": {"nom_de_la_commune": "CHICHERY", "libell_d_acheminement": "CHICHERY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89105"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3baef85cb9fe6e96616b8195bebde47f39606675", "fields": {"nom_de_la_commune": "CHITRY", "libell_d_acheminement": "CHITRY", "code_postal": "89530", "coordonnees_gps": [47.7489653756, 3.67103097653], "code_commune_insee": "89108"}, "geometry": {"type": "Point", "coordinates": [3.67103097653, 47.7489653756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d9da8264a5986a0dc4785434968abb2597a4ea", "fields": {"nom_de_la_commune": "CISERY", "libell_d_acheminement": "CISERY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89109"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdac8c194a737cdf485477c151f3f89e6d942ab7", "fields": {"nom_de_la_commune": "COLLEMIERS", "libell_d_acheminement": "COLLEMIERS", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89113"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b899568c70b592114c0ec2d407e070a484d1e225", "fields": {"nom_de_la_commune": "COULANGERON", "libell_d_acheminement": "COULANGERON", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89117"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a28dfc34034fcee24edd805a7b9cfb5e86526e6", "fields": {"nom_de_la_commune": "CRAVANT", "libell_d_acheminement": "CRAVANT", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89130"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5961c80e934b8fddf22ad1d39d4acc299839a946", "fields": {"nom_de_la_commune": "DOMECY SUR LE VAULT", "libell_d_acheminement": "DOMECY SUR LE VAULT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89146"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ed6e58c6afc081bccb438275277e086c82d4be", "fields": {"nom_de_la_commune": "ESCOLIVES STE CAMILLE", "libell_d_acheminement": "ESCOLIVES STE CAMILLE", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89155"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc63fb71332bb7d13eafb79579581a1663351936", "fields": {"nom_de_la_commune": "FOISSY SUR VANNE", "libell_d_acheminement": "FOISSY SUR VANNE", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89171"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9455b9c3fe2eaadbbd60362e8ce60758f27974", "fields": {"nom_de_la_commune": "FONTENAY SOUS FOURONNES", "libell_d_acheminement": "FONTENAY SOUS FOURONNES", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89177"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda18527d3cb0e0cb3d05743fb84ae6a2da73549", "fields": {"nom_de_la_commune": "FONTENOY", "libell_d_acheminement": "FONTENOY", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89179"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b4e60ddc4fee655a88554381eb283153181129", "fields": {"code_postal": "89110", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "LADUZ", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8527025116, 3.31027533122]}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44a8758d251905049e59fc8abc96be626f17c5a", "fields": {"code_postal": "89113", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "GUERCHY", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8595932276, 3.45642824955]}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40055b67a84569878e61603fe29849d545ff82c1", "fields": {"code_postal": "89113", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "NEUILLY", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8595932276, 3.45642824955]}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d4ab6fc2f4656020a4b540a30df71d6876c247", "fields": {"nom_de_la_commune": "HAUTERIVE", "libell_d_acheminement": "HAUTERIVE", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89200"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce61f00b6b1deb584005f0550da065caa12d9cc9", "fields": {"nom_de_la_commune": "JOUY", "libell_d_acheminement": "JOUY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89209"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6342a695f55d60d068e6a27296cee78c71b9b7e8", "fields": {"nom_de_la_commune": "LAINSECQ", "libell_d_acheminement": "LAINSECQ", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89216"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29157cf83626145c90c9d353fb3f41d4158f46d2", "fields": {"nom_de_la_commune": "LALANDE", "libell_d_acheminement": "LALANDE", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89217"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c686922df4d9b0b5a2b41c6561cfb43f46a64015", "fields": {"nom_de_la_commune": "LAROCHE ST CYDROINE", "libell_d_acheminement": "LAROCHE ST CYDROINE", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89218"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4fd457cbf043261783e3a4bf3e25ae0598b914", "fields": {"nom_de_la_commune": "LASSON", "libell_d_acheminement": "LASSON", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89219"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52e3c95f08027b0491e3726d1696e033611894e", "fields": {"nom_de_la_commune": "LEUGNY", "libell_d_acheminement": "LEUGNY", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89221"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7c3bafe387c80007fb21374eb490f276c98bd9", "fields": {"nom_de_la_commune": "LUCY SUR CURE", "libell_d_acheminement": "LUCY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89233"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d050e8565d206dac26fb39cf4d06f81c8353d2e", "fields": {"nom_de_la_commune": "MAGNY", "libell_d_acheminement": "MAGNY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89235"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e88b3e425c9bc04ba3bccf4134ad5d0aeb26af", "fields": {"nom_de_la_commune": "MALIGNY", "libell_d_acheminement": "MALIGNY", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89242"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31bd3cc1f50cc92e73c11dbb9f74c24f50a952d", "fields": {"code_postal": "89440", "code_commune_insee": "89246", "libell_d_acheminement": "MASSANGIS", "ligne_5": "CIVRY SUR SEREIN", "nom_de_la_commune": "MASSANGIS", "coordonnees_gps": [47.6035566151, 3.94438817513]}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83175aa40188da9f9ba800244d586c873b366a4d", "fields": {"nom_de_la_commune": "MERRY SEC", "libell_d_acheminement": "MERRY SEC", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89252"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ecc7bdef86fed951c01262953c47010f45b118", "fields": {"nom_de_la_commune": "MERRY SUR YONNE", "libell_d_acheminement": "MERRY SUR YONNE", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89253"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1832030e22c82b0b2386ece1269e21c3cabcf40e", "fields": {"nom_de_la_commune": "MOLESMES", "libell_d_acheminement": "MOLESMES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89260"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41815fb65c24264cb983406f59ff08b7a92df52b", "fields": {"nom_de_la_commune": "MOUFFY", "libell_d_acheminement": "MOUFFY", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89270"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5afb74496230822285475069f815cac19e9444", "fields": {"nom_de_la_commune": "NEUVY SAUTOUR", "libell_d_acheminement": "NEUVY SAUTOUR", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89276"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d53afaa78d9a66630b9be1337598b2feb06d93e", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89282"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b8a5f74fd8e7c92f51dde37ac3a753b90396e3", "fields": {"nom_de_la_commune": "PAROY SUR THOLON", "libell_d_acheminement": "PAROY SUR THOLON", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89289"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9613015352ad81911485c44728951415d19009b", "fields": {"nom_de_la_commune": "PIFFONDS", "libell_d_acheminement": "PIFFONDS", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89298"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "614337b6b403e695fd29c8f86c8e22305f771f31", "fields": {"nom_de_la_commune": "PIMELLES", "libell_d_acheminement": "PIMELLES", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89299"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99b538945458393c4d560473210fe6db1f2ce2e", "fields": {"nom_de_la_commune": "POILLY SUR THOLON", "libell_d_acheminement": "POILLY SUR THOLON", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89304"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb63cef0317e03f577f22fb8952a271193287b17", "fields": {"nom_de_la_commune": "PONTAUBERT", "libell_d_acheminement": "PONTAUBERT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89306"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b027a0daf84e897f353c24d82d19e282108c3cc0", "fields": {"nom_de_la_commune": "PONT SUR VANNE", "libell_d_acheminement": "PONT SUR VANNE", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89308"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f6631c2b4aa00de0c6c5963ab61c5b968b0a3c", "fields": {"nom_de_la_commune": "PONT SUR YONNE", "libell_d_acheminement": "PONT SUR YONNE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89309"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc00c5ad891becc476cc2306da3157e77f8fc12b", "fields": {"nom_de_la_commune": "PROVENCY", "libell_d_acheminement": "PROVENCY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89316"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fa764c086ea921da664f586d9168cf132f21f2", "fields": {"nom_de_la_commune": "QUARRE LES TOMBES", "libell_d_acheminement": "QUARRE LES TOMBES", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89318"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5633aaea6124213ce12aecc0c6e7bc76279ca003", "fields": {"nom_de_la_commune": "ROUVRAY", "libell_d_acheminement": "ROUVRAY", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89328"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c8446ff4f51eb675ef0caa847ce235884df263", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89332"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaab22a295c3678590f3b3af473fb706a33a95a0", "fields": {"nom_de_la_commune": "ST DENIS LES SENS", "libell_d_acheminement": "ST DENIS LES SENS", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89342"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03663cc64cc4d158d198ee3802b6d533705690f7", "fields": {"nom_de_la_commune": "ST FLORENTIN", "libell_d_acheminement": "ST FLORENTIN", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89345"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6498203faeab7b5e4a497ef8c1df6ed0abe96cde", "fields": {"nom_de_la_commune": "ST JULIEN DU SAULT", "libell_d_acheminement": "ST JULIEN DU SAULT", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89348"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a812d7b3c53f2291bb15b703539224c968d55f44", "fields": {"nom_de_la_commune": "ST LEGER VAUBAN", "libell_d_acheminement": "ST LEGER VAUBAN", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89349"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027cf0e21da2e661fdb8d218964d40c2fc0f25ba", "fields": {"nom_de_la_commune": "ST MARTIN DU TERTRE", "libell_d_acheminement": "ST MARTIN DU TERTRE", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89354"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50020b8f0c407c03c076d8ed1677d3dcbb4c5ab2", "fields": {"nom_de_la_commune": "ST MAURICE AUX RICHES HOMMES", "libell_d_acheminement": "ST MAURICE AUX RICHES HOMMES", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89359"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c80e288decada22124c9005ddbbfe26a610265", "fields": {"nom_de_la_commune": "ST PERE", "libell_d_acheminement": "ST PERE", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89364"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592f42b5fbd6473b550d915d511f7bb2c7cc7c06", "fields": {"nom_de_la_commune": "SALIGNY", "libell_d_acheminement": "SALIGNY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89373"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00daf4409a8a98f818b28c4455e726c8d3960609", "fields": {"nom_de_la_commune": "SANTIGNY", "libell_d_acheminement": "SANTIGNY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89375"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc5b8079843a9db5814d82b00330ebea1248e566", "fields": {"nom_de_la_commune": "SARRY", "libell_d_acheminement": "SARRY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89376"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826a1a6a894f6e7235cb01e8ec39efcd74fc39eb", "fields": {"nom_de_la_commune": "SAUVIGNY LE BEUREAL", "libell_d_acheminement": "SAUVIGNY LE BEUREAL", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89377"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0908f91e35103d34d18ab507fc84a7faffdad40", "fields": {"nom_de_la_commune": "SENNEVOY LE BAS", "libell_d_acheminement": "SENNEVOY LE BAS", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89385"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b1d7392b5f9df0f75bcccbb7555034f0878785", "fields": {"nom_de_la_commune": "SERBONNES", "libell_d_acheminement": "SERBONNES", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89390"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32489bb5390c4f9553a7cd50d3021a4b013895d", "fields": {"nom_de_la_commune": "SOUMAINTRAIN", "libell_d_acheminement": "SOUMAINTRAIN", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89402"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d462b070c20d9417881fadacafca39a8c542170", "fields": {"nom_de_la_commune": "STIGNY", "libell_d_acheminement": "STIGNY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89403"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02e62a249a44e803a1cd16ccb17c3550a756d67", "fields": {"nom_de_la_commune": "THURY", "libell_d_acheminement": "THURY", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89416"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43aa911d31eba087566cab2cd11d0286fb34ddc6", "fields": {"nom_de_la_commune": "TONNERRE", "libell_d_acheminement": "TONNERRE", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89418"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4488af3e359e94fcdf032142bd703ec31ded08ff", "fields": {"nom_de_la_commune": "TOUCY", "libell_d_acheminement": "TOUCY", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89419"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8728515c50fe89d3cd9c7e7b35764810d330c4a", "fields": {"nom_de_la_commune": "TRONCHOY", "libell_d_acheminement": "TRONCHOY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89423"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8172d0b04937d9a7c52e216f741fbe17922a9689", "fields": {"nom_de_la_commune": "VAL DE MERCY", "libell_d_acheminement": "VAL DE MERCY", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89426"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56637ac734e5ee1fb68694cc78c27c04d1635eab", "fields": {"code_postal": "89600", "code_commune_insee": "89439", "libell_d_acheminement": "VERGIGNY", "ligne_5": "BOUILLY", "nom_de_la_commune": "VERGIGNY", "coordonnees_gps": [47.9775250716, 3.71821754522]}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ce51f532504c71eb61f139c57817ea17aea005", "fields": {"code_postal": "89270", "code_commune_insee": "89441", "libell_d_acheminement": "VERMENTON", "ligne_5": "SACY", "nom_de_la_commune": "VERMENTON", "coordonnees_gps": [47.6119078009, 3.74587483538]}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6b9092d70bf7612842cb2a7e519e6e8e6d3cbe", "fields": {"nom_de_la_commune": "VIGNES", "libell_d_acheminement": "VIGNES", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89448"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d064118f4fdd9bbc037099a9cfebdf14df9fe27a", "fields": {"nom_de_la_commune": "VILLEBLEVIN", "libell_d_acheminement": "VILLEBLEVIN", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89449"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ddff66a2094543b8ddce660bc46c1a8df878b3", "fields": {"nom_de_la_commune": "VILLEBOUGIS", "libell_d_acheminement": "VILLEBOUGIS", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89450"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f19ecb4a68b61c5c86216e9514d0a3ed1e2bea", "fields": {"nom_de_la_commune": "VILLECHETIVE", "libell_d_acheminement": "VILLECHETIVE", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89451"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0486d5a1a436693aaeea48784678ea122412dd", "fields": {"nom_de_la_commune": "VILLEFARGEAU", "libell_d_acheminement": "VILLEFARGEAU", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89453"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705a1bcee9e227ab69d0e2cae5063e112d1e3cb0", "fields": {"nom_de_la_commune": "VILLENEUVE LA DONDAGRE", "libell_d_acheminement": "VILLENEUVE LA DONDAGRE", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89459"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec41dee92cfd402b1a503a52834234a97466299", "fields": {"nom_de_la_commune": "VILLENEUVE LA GUYARD", "libell_d_acheminement": "VILLENEUVE LA GUYARD", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89460"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f01467a0fa9527b6bb951b95f7e5884d0b9a9d3", "fields": {"nom_de_la_commune": "VILLENEUVE LES GENETS", "libell_d_acheminement": "VILLENEUVE LES GENETS", "code_postal": "89350", "coordonnees_gps": [47.7773444304, 3.09490527015], "code_commune_insee": "89462"}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f84767aa6864e75816ab38de422412ad233fde", "fields": {"nom_de_la_commune": "VILLENEUVE SUR YONNE", "libell_d_acheminement": "VILLENEUVE SUR YONNE", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89464"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc6b5db998c4a5fc2ec58a7485d567fd161d601", "fields": {"nom_de_la_commune": "VILLEVALLIER", "libell_d_acheminement": "VILLEVALLIER", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89468"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95dc552907d598ba70862c46049a5752dd68a887", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "PLESSIS DU MEE", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb61bd23bb11e206dea7ebbb93a8800c8e3f353a", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "SOGNES", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad3d578eb34a826b0decbf530fd1fd4cbe70321", "fields": {"nom_de_la_commune": "VILLIERS SUR THOLON", "libell_d_acheminement": "VILLIERS SUR THOLON", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89473"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1132deae24393804d2bfec9ca5e74356ccdb325f", "fields": {"nom_de_la_commune": "VILLY", "libell_d_acheminement": "VILLY", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89477"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378655efd90368a1a0fa2fa3653181b254653e3c", "fields": {"nom_de_la_commune": "VIVIERS", "libell_d_acheminement": "VIVIERS", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89482"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661daf405d1ccb463884bb8bdd8b7e9087889f4a", "fields": {"nom_de_la_commune": "YROUERRE", "libell_d_acheminement": "YROUERRE", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89486"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87166117564aed17c0ddbdff26d13d725286c9ac", "fields": {"nom_de_la_commune": "AUXELLES HAUT", "libell_d_acheminement": "AUXELLES HAUT", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90006"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acfad541fc27f57fe0a28ef76d57f47c47b1f2b0", "fields": {"nom_de_la_commune": "BORON", "libell_d_acheminement": "BORON", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90014"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ec9ce50edb2db163649851895e4d9a1e45f208", "fields": {"nom_de_la_commune": "OTTWILLER", "libell_d_acheminement": "OTTWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67369"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aefd8dee9b085ab0abb5ea7467a6b06f425e231", "fields": {"nom_de_la_commune": "PETERSBACH", "libell_d_acheminement": "PETERSBACH", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67370"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1353fa55daecf7855b01fcc0c7dc745e1fc4797", "fields": {"nom_de_la_commune": "PRINTZHEIM", "libell_d_acheminement": "PRINTZHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67380"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89dc15bc949b8e3968f297cec4a5ce9de5221b8", "fields": {"nom_de_la_commune": "RANRUPT", "libell_d_acheminement": "RANRUPT", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67384"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a0f1ba05455c18078e724663db3d4603707f50", "fields": {"nom_de_la_commune": "REUTENBOURG", "libell_d_acheminement": "REUTENBOURG", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67395"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03c9997bfecd30839a35602617f0a31b1c25ecf", "fields": {"nom_de_la_commune": "RITTERSHOFFEN", "libell_d_acheminement": "RITTERSHOFFEN", "code_postal": "67690", "coordonnees_gps": [48.893568383, 7.99177649059], "code_commune_insee": "67404"}, "geometry": {"type": "Point", "coordinates": [7.99177649059, 48.893568383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30c8c77129c65f5eb60c950e8b24207ec4ade2b", "fields": {"nom_de_la_commune": "ROESCHWOOG", "libell_d_acheminement": "ROESCHWOOG", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67405"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d56e0b02c8cccc3dd08ff7bdbd9cd1774660878", "fields": {"nom_de_la_commune": "ROSHEIM", "libell_d_acheminement": "ROSHEIM", "code_postal": "67560", "coordonnees_gps": [48.4928593453, 7.41301977896], "code_commune_insee": "67411"}, "geometry": {"type": "Point", "coordinates": [7.41301977896, 48.4928593453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ff098442638fb94b246555e7c0e55bc7a2e8765", "fields": {"code_postal": "67130", "code_commune_insee": "67420", "libell_d_acheminement": "RUSS", "ligne_5": "SCHWARZBACH", "nom_de_la_commune": "RUSS", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12544527a1c59ac1bc874747ab1e512579f7d069", "fields": {"code_postal": "67130", "code_commune_insee": "67420", "libell_d_acheminement": "RUSS", "ligne_5": "STEINBACH", "nom_de_la_commune": "RUSS", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb2a71be52f37d4c27072ce0f2dd75737e80018", "fields": {"nom_de_la_commune": "ST BLAISE LA ROCHE", "libell_d_acheminement": "ST BLAISE LA ROCHE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67424"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89a207d4052eaf79cacb92bc799f8e8b571325c", "fields": {"nom_de_la_commune": "ST JEAN SAVERNE", "libell_d_acheminement": "ST JEAN SAVERNE", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67425"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d462b3ca6bdf77f21c63b22b254124364e7437ae", "fields": {"nom_de_la_commune": "SCHAEFFERSHEIM", "libell_d_acheminement": "SCHAEFFERSHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67438"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bf6b444fa30b13c0f302e0f6b7b3f6045091bd", "fields": {"nom_de_la_commune": "SCHAFFHOUSE SUR ZORN", "libell_d_acheminement": "SCHAFFHOUSE SUR ZORN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67439"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd8629668e38817edd87b2ff8db3e7eeedf0cff", "fields": {"nom_de_la_commune": "SCHEIBENHARD", "libell_d_acheminement": "SCHEIBENHARD", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67443"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad83c3e14c37fe74fed305c8833942a3bb4fb09", "fields": {"nom_de_la_commune": "SCHLEITHAL", "libell_d_acheminement": "SCHLEITHAL", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67451"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3409e670b8361c38ef208beae4613443d0a1bbd", "fields": {"nom_de_la_commune": "SCHOENBOURG", "libell_d_acheminement": "SCHOENBOURG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67454"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c850c6d4470c0a1a0410f14375e9e9505f8d5b35", "fields": {"nom_de_la_commune": "SCHWEIGHOUSE SUR MODER", "libell_d_acheminement": "SCHWEIGHOUSE SUR MODER", "code_postal": "67590", "coordonnees_gps": [48.811939028, 7.71713029127], "code_commune_insee": "67458"}, "geometry": {"type": "Point", "coordinates": [7.71713029127, 48.811939028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ab3ab58fe489bc156600478ad79103d233a3b1", "fields": {"nom_de_la_commune": "SOLBACH", "libell_d_acheminement": "SOLBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67470"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc4e6d23ae2a1e1f5f65ed77f9dc811fae2c84c", "fields": {"nom_de_la_commune": "STEINBOURG", "libell_d_acheminement": "STEINBOURG", "code_postal": "67790", "coordonnees_gps": [48.7643439424, 7.4141890121], "code_commune_insee": "67478"}, "geometry": {"type": "Point", "coordinates": [7.4141890121, 48.7643439424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4da496af38adfa252aa1b9db95be088ff647778", "fields": {"nom_de_la_commune": "STRASBOURG", "libell_d_acheminement": "STRASBOURG", "code_postal": "67000", "coordonnees_gps": [48.5716222333, 7.76768232804], "code_commune_insee": "67482"}, "geometry": {"type": "Point", "coordinates": [7.76768232804, 48.5716222333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218da8502702ea40a2cdb00a4b0ad970baf3e60e", "fields": {"nom_de_la_commune": "THAL DRULINGEN", "libell_d_acheminement": "THAL DRULINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67488"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6223226a2f422ee5d28e910424a300148b965504", "fields": {"nom_de_la_commune": "TRAENHEIM", "libell_d_acheminement": "TRAENHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67492"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219a5c78176014b10626b1b7da92909fbdb57440", "fields": {"nom_de_la_commune": "UHLWILLER", "libell_d_acheminement": "UHLWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67497"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1023624501a951e3bef4297bc8481100e7d9a656", "fields": {"nom_de_la_commune": "WALDOLWISHEIM", "libell_d_acheminement": "WALDOLWISHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67515"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317d6cf5edc9d005c00e28e3bee06ac3565164cd", "fields": {"nom_de_la_commune": "WANGEN", "libell_d_acheminement": "WANGEN", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67517"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98a663bf15008aee3427146755e5c94bd3081ba", "fields": {"nom_de_la_commune": "WESTHOFFEN", "libell_d_acheminement": "WESTHOFFEN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67525"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8db9615d9b788fb0a9055299ceeded66bb0f05", "fields": {"nom_de_la_commune": "WINDSTEIN", "libell_d_acheminement": "WINDSTEIN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67536"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10e007689dd4fb8e205b0c28ef0aae725e6e27f2", "fields": {"nom_de_la_commune": "WINGEN", "libell_d_acheminement": "WINGEN", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67537"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a95edfa2f26d544be5069d55652c616feffb009", "fields": {"code_postal": "67510", "code_commune_insee": "67537", "libell_d_acheminement": "WINGEN", "ligne_5": "PETIT WINGEN", "nom_de_la_commune": "WINGEN", "coordonnees_gps": [49.0227242639, 7.76839928059]}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad14eb2d02fd18baca103b8c260f09ecf6a98c", "fields": {"code_postal": "67170", "code_commune_insee": "67539", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "ligne_5": "MITTELHAUSEN", "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "coordonnees_gps": [48.7372742925, 7.70176270666]}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd92e5d9a9417cd7b46e318523c29ce5c9d6bce", "fields": {"code_postal": "67130", "code_commune_insee": "67543", "libell_d_acheminement": "WISCHES", "ligne_5": "NETZENBACH", "nom_de_la_commune": "WISCHES", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ed0c25f126cd15c9d9dda8f2c3b7a325da9d05", "fields": {"nom_de_la_commune": "WITTERNHEIM", "libell_d_acheminement": "WITTERNHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67545"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22db32af13376ab68a2612fcaa0fe0e30c9fbcd8", "fields": {"nom_de_la_commune": "WITTERSHEIM", "libell_d_acheminement": "WITTERSHEIM", "code_postal": "67670", "coordonnees_gps": [48.7613693186, 7.64473130495], "code_commune_insee": "67546"}, "geometry": {"type": "Point", "coordinates": [7.64473130495, 48.7613693186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73eaf7cca42761f7175db7d76490caa034bf5deb", "fields": {"nom_de_la_commune": "ZEINHEIM", "libell_d_acheminement": "ZEINHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67556"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcccdaddfef75e708830c64d753c0f98e40d3f44", "fields": {"nom_de_la_commune": "ALGOLSHEIM", "libell_d_acheminement": "ALGOLSHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68001"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9655c142ea1c5ec3580626e958ff62ab9e7995e7", "fields": {"nom_de_la_commune": "ASPACH LE BAS", "libell_d_acheminement": "ASPACH LE BAS", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68011"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73cedc0e3cc13227e996b314882872671133e2db", "fields": {"nom_de_la_commune": "ASPACH MICHELBACH", "libell_d_acheminement": "ASPACH MICHELBACH", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68012"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb56c774d085ac5057ea3d62e1af731a10896a2", "fields": {"code_postal": "68700", "code_commune_insee": "68012", "libell_d_acheminement": "ASPACH MICHELBACH", "ligne_5": "MICHELBACH", "nom_de_la_commune": "ASPACH MICHELBACH", "coordonnees_gps": [47.8077826523, 7.1623079719]}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2fa1813bce82f2b0458229598c2ebaef358335", "fields": {"nom_de_la_commune": "AUBURE", "libell_d_acheminement": "AUBURE", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68014"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30453dfc6e1d3449a2e0f280de915f6e2ce469ae", "fields": {"nom_de_la_commune": "BERRWILLER", "libell_d_acheminement": "BERRWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68032"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e97cbb629a2b21f4d8c3e1ba94054b5ee54600e", "fields": {"nom_de_la_commune": "BIESHEIM", "libell_d_acheminement": "BIESHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68036"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1464997d0ba2cf532c276ff2a6d0d5133ac1dc68", "fields": {"nom_de_la_commune": "BISCHWIHR", "libell_d_acheminement": "BISCHWIHR", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68038"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6e8ccda4d170537b5a4a05b061c95bb23d390b", "fields": {"nom_de_la_commune": "BISEL", "libell_d_acheminement": "BISEL", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68039"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a4c85edf1b75f7b66317946393f71b0325b8cd", "fields": {"nom_de_la_commune": "BOURBACH LE BAS", "libell_d_acheminement": "BOURBACH LE BAS", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68045"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a96a1604821152c3a0d6820f02aa0cea0ef8c85", "fields": {"nom_de_la_commune": "BRECHAUMONT", "libell_d_acheminement": "BRECHAUMONT", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68050"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2e235de0ac42eaecd14b18ad7e1be12483a5d6", "fields": {"nom_de_la_commune": "BRINCKHEIM", "libell_d_acheminement": "BRINCKHEIM", "code_postal": "68870", "coordonnees_gps": [47.6331033531, 7.48190833837], "code_commune_insee": "68054"}, "geometry": {"type": "Point", "coordinates": [7.48190833837, 47.6331033531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e89c86b5cc695a768ca3647bf9364e64f10427", "fields": {"nom_de_la_commune": "BUHL", "libell_d_acheminement": "BUHL", "code_postal": "68530", "coordonnees_gps": [47.9213082038, 7.15976445089], "code_commune_insee": "68058"}, "geometry": {"type": "Point", "coordinates": [7.15976445089, 47.9213082038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcbd63880cdb58d2efb071e182d68f2f1a9fd80", "fields": {"nom_de_la_commune": "BURNHAUPT LE BAS", "libell_d_acheminement": "BURNHAUPT LE BAS", "code_postal": "68520", "coordonnees_gps": [47.7328574448, 7.15152670714], "code_commune_insee": "68059"}, "geometry": {"type": "Point", "coordinates": [7.15152670714, 47.7328574448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a1db6595eb8054c2c94f766c7fd39a0038840d", "fields": {"nom_de_la_commune": "BUSCHWILLER", "libell_d_acheminement": "BUSCHWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68061"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95575ce3862e3a836060cfc6ab9a0ce2c0612ed2", "fields": {"nom_de_la_commune": "CARSPACH", "libell_d_acheminement": "CARSPACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68062"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5f2da7db184ea3123d6008399d844a5983720f", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68081"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34de8d60be62ba5786817e5fec56f3f6cadd6fe4", "fields": {"nom_de_la_commune": "FELDKIRCH", "libell_d_acheminement": "FELDKIRCH", "code_postal": "68540", "coordonnees_gps": [47.8545137602, 7.25864777821], "code_commune_insee": "68088"}, "geometry": {"type": "Point", "coordinates": [7.25864777821, 47.8545137602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93118a59ca47b9865a70e1ac841d4999f1248734", "fields": {"nom_de_la_commune": "FISLIS", "libell_d_acheminement": "FISLIS", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68092"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82b0862dcab6c84d49f40e63ce8a3cbb180a9c7", "fields": {"nom_de_la_commune": "FLAXLANDEN", "libell_d_acheminement": "FLAXLANDEN", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68093"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95fc999ce3e612a988c803a918f51b7b6e326e0", "fields": {"nom_de_la_commune": "FOLGENSBOURG", "libell_d_acheminement": "FOLGENSBOURG", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68094"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d878715e5f31f10fc577f5e411ca3914b0f337", "fields": {"nom_de_la_commune": "FRANKEN", "libell_d_acheminement": "FRANKEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68096"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7038ba3d09cdf86e4b97d2d68e0dfaab6e32aceb", "fields": {"nom_de_la_commune": "GUEBWILLER", "libell_d_acheminement": "GUEBWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68112"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec50a123f989bef5fa3dc8a8aa3d75ea4d347c68", "fields": {"nom_de_la_commune": "GUEMAR", "libell_d_acheminement": "GUEMAR", "code_postal": "68970", "coordonnees_gps": [48.1892811938, 7.42820187148], "code_commune_insee": "68113"}, "geometry": {"type": "Point", "coordinates": [7.42820187148, 48.1892811938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903b6392b43e943b3a6969890df40307e1f861ed", "fields": {"nom_de_la_commune": "GUNDOLSHEIM", "libell_d_acheminement": "GUNDOLSHEIM", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68116"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e196c20d6f6176e93295c1c6779208096375a150", "fields": {"nom_de_la_commune": "HABSHEIM", "libell_d_acheminement": "HABSHEIM", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68118"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560709fe50be1755f1c74abba9ae915321c69f85", "fields": {"nom_de_la_commune": "HAGENBACH", "libell_d_acheminement": "HAGENBACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68119"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decc686bcc23b05c9727a940fcf6d2864878c416", "fields": {"nom_de_la_commune": "HATTSTATT", "libell_d_acheminement": "HATTSTATT", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68123"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6428ff683bdb08ff6647357bf6ce7a1dea344060", "fields": {"nom_de_la_commune": "HEITEREN", "libell_d_acheminement": "HEITEREN", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68130"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97dc0cf83860a6b4f85fc97138a90f42cc2fc1b0", "fields": {"nom_de_la_commune": "HEIWILLER", "libell_d_acheminement": "HEIWILLER", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68131"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19792b9b10caa70e4e8965ed6d958a91a1e68a88", "fields": {"nom_de_la_commune": "HELFRANTZKIRCH", "libell_d_acheminement": "HELFRANTZKIRCH", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68132"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8ff6e32a44449e2a65b057a83ad3a35914e2fa", "fields": {"nom_de_la_commune": "HINDLINGEN", "libell_d_acheminement": "HINDLINGEN", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68137"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf981dc946927bf2da14d1637639cc31ef1b265", "fields": {"nom_de_la_commune": "HIRSINGUE", "libell_d_acheminement": "HIRSINGUE", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68138"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918524201cd59f3e5fca29bf403738f38514bbb0", "fields": {"nom_de_la_commune": "HIRTZBACH", "libell_d_acheminement": "HIRTZBACH", "code_postal": "68118", "coordonnees_gps": [47.5908691291, 7.20858159411], "code_commune_insee": "68139"}, "geometry": {"type": "Point", "coordinates": [7.20858159411, 47.5908691291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da44fd0458fc57c5b7199c8642affa71b74d721", "fields": {"nom_de_la_commune": "HUNINGUE", "libell_d_acheminement": "HUNINGUE", "code_postal": "68330", "coordonnees_gps": [47.5891444048, 7.58037007257], "code_commune_insee": "68149"}, "geometry": {"type": "Point", "coordinates": [7.58037007257, 47.5891444048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721c324a3507feea09d5cb7f86a1007d06b4b624", "fields": {"nom_de_la_commune": "HUSSEREN WESSERLING", "libell_d_acheminement": "HUSSEREN WESSERLING", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68151"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aea8c083f04948b7cd8b5b610d9dfcfe5758db3", "fields": {"nom_de_la_commune": "ILLHAEUSERN", "libell_d_acheminement": "ILLHAEUSERN", "code_postal": "68970", "coordonnees_gps": [48.1892811938, 7.42820187148], "code_commune_insee": "68153"}, "geometry": {"type": "Point", "coordinates": [7.42820187148, 48.1892811938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470de80f80d4b617107490534b31abd7eca7be31", "fields": {"nom_de_la_commune": "INGERSHEIM", "libell_d_acheminement": "INGERSHEIM", "code_postal": "68040", "coordonnees_gps": [48.1012258852, 7.31090196932], "code_commune_insee": "68155"}, "geometry": {"type": "Point", "coordinates": [7.31090196932, 48.1012258852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faaf14603f2b4204e8e2880d281e74bccecf219d", "fields": {"nom_de_la_commune": "KAYSERSBERG VIGNOBLE", "libell_d_acheminement": "KAYSERSBERG VIGNOBLE", "code_postal": "68240", "coordonnees_gps": [48.1678355817, 7.21603176483], "code_commune_insee": "68162"}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df2857b568f0fb35cf787cb22048f5f211be3bc", "fields": {"nom_de_la_commune": "KIRCHBERG", "libell_d_acheminement": "KIRCHBERG", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68167"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ca4fd43d141b6426cad198042621f50520ed69", "fields": {"nom_de_la_commune": "KRUTH", "libell_d_acheminement": "KRUTH", "code_postal": "68820", "coordonnees_gps": [47.9620965361, 6.96343945607], "code_commune_insee": "68171"}, "geometry": {"type": "Point", "coordinates": [6.96343945607, 47.9620965361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7961ccd969daeb1af9efe1238f854b2aa30c35", "fields": {"code_postal": "68610", "code_commune_insee": "68178", "libell_d_acheminement": "LAUTENBACHZELL", "ligne_5": "SENGERN", "nom_de_la_commune": "LAUTENBACHZELL", "coordonnees_gps": [47.9413913563, 7.11100776725]}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fb34d6b54360ae6ade01f837ca35621e920ae3", "fields": {"nom_de_la_commune": "LAUW", "libell_d_acheminement": "LAUW", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68179"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d21b16f3ed1cafab0f7df3ced158bab7ca363d5f", "fields": {"nom_de_la_commune": "LEVONCOURT", "libell_d_acheminement": "LEVONCOURT", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68181"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6e266e2263f8af84719b7e7b94c02566bb946b", "fields": {"nom_de_la_commune": "LEYMEN", "libell_d_acheminement": "LEYMEN", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68182"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863a58365716a6504aee7b64dbcc4212364098e2", "fields": {"nom_de_la_commune": "LIGSDORF", "libell_d_acheminement": "LIGSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68186"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd387629c06adab57e3e9f2e29d587d9f72a7ce", "fields": {"nom_de_la_commune": "LINTHAL", "libell_d_acheminement": "LINTHAL", "code_postal": "68610", "coordonnees_gps": [47.9413913563, 7.11100776725], "code_commune_insee": "68188"}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27aa9354e88e84c90f31c4fa801cf49ce9f8d48c", "fields": {"nom_de_la_commune": "MAGSTATT LE BAS", "libell_d_acheminement": "MAGSTATT LE BAS", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68197"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920d26634022991bf9a921a4c2976f5a94ac392d", "fields": {"nom_de_la_commune": "MAGSTATT LE HAUT", "libell_d_acheminement": "MAGSTATT LE HAUT", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68198"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54bf85a6fd945133d5429b670625b1724827d5c5", "fields": {"nom_de_la_commune": "MANSPACH", "libell_d_acheminement": "MANSPACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68200"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee89404de12da9cac14b4845e7bc3cea68fb8693", "fields": {"nom_de_la_commune": "MASEVAUX NIEDERBRUCK", "libell_d_acheminement": "MASEVAUX NIEDERBRUCK", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68201"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179cb9d9597d427a5c9e41d7634acd25f7a02ca5", "fields": {"nom_de_la_commune": "MEYENHEIM", "libell_d_acheminement": "MEYENHEIM", "code_postal": "68890", "coordonnees_gps": [47.9000897431, 7.37306716667], "code_commune_insee": "68205"}, "geometry": {"type": "Point", "coordinates": [7.37306716667, 47.9000897431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120c8c3eaa071ccdf34421b393b002b28ee35c2b", "fields": {"nom_de_la_commune": "MOOSLARGUE", "libell_d_acheminement": "MOOSLARGUE", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68216"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081550ef39d26bb10bbe1ad5659a18a37bd496d1", "fields": {"code_postal": "68780", "code_commune_insee": "68219", "libell_d_acheminement": "LE HAUT SOULTZBACH", "ligne_5": "SOPPE LE HAUT", "nom_de_la_commune": "LE HAUT SOULTZBACH", "coordonnees_gps": [47.7234740275, 7.06962991753]}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79678f6e8efba683a05dbcf4effe8f3f79082b40", "fields": {"nom_de_la_commune": "MULHOUSE", "libell_d_acheminement": "MULHOUSE", "code_postal": "68100", "coordonnees_gps": [47.7494423807, 7.32540160105], "code_commune_insee": "68224"}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7775fd78c8faae00cd25a17fa74c8c748c4837d4", "fields": {"nom_de_la_commune": "MUNTZENHEIM", "libell_d_acheminement": "MUNTZENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68227"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af82716e1eef58664fd111481a6bea8843e917e", "fields": {"nom_de_la_commune": "MUNWILLER", "libell_d_acheminement": "MUNWILLER", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68228"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b808d55be3d66a9f1e64b8699506ae483b76763", "fields": {"nom_de_la_commune": "NAMBSHEIM", "libell_d_acheminement": "NAMBSHEIM", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68230"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc0ed23e103d3da66c025b22b6558d7b0ba6c85", "fields": {"nom_de_la_commune": "OBERENTZEN", "libell_d_acheminement": "OBERENTZEN", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68241"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dee06c7882cb6b4c0c0db539157f1b246aa7eec", "fields": {"nom_de_la_commune": "ORBEY", "libell_d_acheminement": "ORBEY", "code_postal": "68370", "coordonnees_gps": [48.1152669785, 7.13528480248], "code_commune_insee": "68249"}, "geometry": {"type": "Point", "coordinates": [7.13528480248, 48.1152669785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6047ae08907111c351bed4c38c39738355cc3b7", "fields": {"nom_de_la_commune": "ORSCHWIHR", "libell_d_acheminement": "ORSCHWIHR", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68250"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f44b2f408b82ecfb47a844ad694134170f41778", "fields": {"nom_de_la_commune": "PFAFFENHEIM", "libell_d_acheminement": "PFAFFENHEIM", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68255"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2b502e445970a47e763d2653a5788825d31093", "fields": {"nom_de_la_commune": "PFASTATT", "libell_d_acheminement": "PFASTATT", "code_postal": "68120", "coordonnees_gps": [47.7768307965, 7.2881348904], "code_commune_insee": "68256"}, "geometry": {"type": "Point", "coordinates": [7.2881348904, 47.7768307965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b9f9b4208f808351ca68c87edf36c4c91b2fa5", "fields": {"nom_de_la_commune": "PULVERSHEIM", "libell_d_acheminement": "PULVERSHEIM", "code_postal": "68840", "coordonnees_gps": [47.8416797177, 7.29887323727], "code_commune_insee": "68258"}, "geometry": {"type": "Point", "coordinates": [7.29887323727, 47.8416797177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01f918e3a39d9183501a731dc5d615c954db2fb", "fields": {"nom_de_la_commune": "RANSPACH LE BAS", "libell_d_acheminement": "RANSPACH LE BAS", "code_postal": "68730", "coordonnees_gps": [47.5988584111, 7.47970961294], "code_commune_insee": "68263"}, "geometry": {"type": "Point", "coordinates": [7.47970961294, 47.5988584111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a3be261fe7b3d22676fdff3f1dffb23350ac5da", "fields": {"nom_de_la_commune": "COTTANCE", "libell_d_acheminement": "COTTANCE", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42073"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6539c303a6588116e6dc6c4907d3d39b717cde87", "fields": {"nom_de_la_commune": "CROIZET SUR GAND", "libell_d_acheminement": "CROIZET SUR GAND", "code_postal": "42540", "coordonnees_gps": [45.8845566287, 4.25261617322], "code_commune_insee": "42077"}, "geometry": {"type": "Point", "coordinates": [4.25261617322, 45.8845566287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a363f586913a72ab77babd479d53305567366898", "fields": {"nom_de_la_commune": "EPERCIEUX ST PAUL", "libell_d_acheminement": "EPERCIEUX ST PAUL", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42088"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380d6049ec2bfb43a0cb51ceaf6a011b13db038c", "fields": {"nom_de_la_commune": "ESTIVAREILLES", "libell_d_acheminement": "ESTIVAREILLES", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42091"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b8f6dd6b59335f74a51a8ceba309fb0fe115d7", "fields": {"nom_de_la_commune": "FIRMINY", "libell_d_acheminement": "FIRMINY", "code_postal": "42700", "coordonnees_gps": [45.3787938421, 4.28860986848], "code_commune_insee": "42095"}, "geometry": {"type": "Point", "coordinates": [4.28860986848, 45.3787938421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c7cbcbd1c69a98459c4065f9ce3c7b30ba4474", "fields": {"nom_de_la_commune": "LA GRESLE", "libell_d_acheminement": "LA GRESLE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42104"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28a7895b4777e8d59cb9e9982d8c594fbdf18d8", "fields": {"nom_de_la_commune": "SICHAMPS", "libell_d_acheminement": "SICHAMPS", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58279"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0062c0d530025c7e4c9b17351644f15f5ac17bf", "fields": {"nom_de_la_commune": "TAMNAY EN BAZOIS", "libell_d_acheminement": "TAMNAY EN BAZOIS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58285"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e561620d0c7cd86774942223972afbaf98eed76", "fields": {"nom_de_la_commune": "TEIGNY", "libell_d_acheminement": "TEIGNY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58288"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab2ab2c023aebc8b22b37433d2f263eb0fdb5eb", "fields": {"nom_de_la_commune": "THAIX", "libell_d_acheminement": "THAIX", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58290"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10e194f182a7b413765da5a9870f62d5f0b2fd4", "fields": {"nom_de_la_commune": "THIANGES", "libell_d_acheminement": "THIANGES", "code_postal": "58260", "coordonnees_gps": [46.9023530657, 3.46382245029], "code_commune_insee": "58291"}, "geometry": {"type": "Point", "coordinates": [3.46382245029, 46.9023530657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385478fb43c5667c2f81cf06d47df7e7238b6b96", "fields": {"nom_de_la_commune": "VARENNES VAUZELLES", "libell_d_acheminement": "VARENNES VAUZELLES", "code_postal": "58640", "coordonnees_gps": [47.036954747, 3.14362608015], "code_commune_insee": "58303"}, "geometry": {"type": "Point", "coordinates": [3.14362608015, 47.036954747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2574a86f188b87df6f2ccce99b96f4f3f31f629", "fields": {"nom_de_la_commune": "VIELMANAY", "libell_d_acheminement": "VIELMANAY", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58307"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26616a1f7ac9246fe9948eb134254cc93ce3c52d", "fields": {"nom_de_la_commune": "AMFROIPRET", "libell_d_acheminement": "AMFROIPRET", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59006"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c8e369ed991a5a508a89005814be02335fc50c", "fields": {"nom_de_la_commune": "ANHIERS", "libell_d_acheminement": "ANHIERS", "code_postal": "59194", "coordonnees_gps": [50.4161128378, 3.14174159912], "code_commune_insee": "59007"}, "geometry": {"type": "Point", "coordinates": [3.14174159912, 50.4161128378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e08e50a3055f25a08ab933803624860105cb14b", "fields": {"nom_de_la_commune": "VILLENEUVE D ASCQ", "libell_d_acheminement": "VILLENEUVE D ASCQ", "code_postal": "59491", "coordonnees_gps": [50.6323253006, 3.15291340611], "code_commune_insee": "59009"}, "geometry": {"type": "Point", "coordinates": [3.15291340611, 50.6323253006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f0f8c66650bde94373e8bd298ca509d2352095", "fields": {"nom_de_la_commune": "ANNOEULLIN", "libell_d_acheminement": "ANNOEULLIN", "code_postal": "59112", "coordonnees_gps": [50.524811889, 2.93444929776], "code_commune_insee": "59011"}, "geometry": {"type": "Point", "coordinates": [2.93444929776, 50.524811889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e412afa8fc4c0d366f3c71c13e307e289726ec89", "fields": {"nom_de_la_commune": "ANSTAING", "libell_d_acheminement": "ANSTAING", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59013"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd82dc90e0895c7143b0fbe4a9e80176ccf44316", "fields": {"nom_de_la_commune": "ARLEUX", "libell_d_acheminement": "ARLEUX", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59015"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5a86bcf045b06c77ba33e648a75bf2240565cf", "fields": {"nom_de_la_commune": "ATTICHES", "libell_d_acheminement": "ATTICHES", "code_postal": "59551", "coordonnees_gps": [50.5114163439, 3.06811658517], "code_commune_insee": "59022"}, "geometry": {"type": "Point", "coordinates": [3.06811658517, 50.5114163439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4490c196c9903ae412ac2e20a3b83ed936a48cc1", "fields": {"nom_de_la_commune": "AUBERS", "libell_d_acheminement": "AUBERS", "code_postal": "59249", "coordonnees_gps": [50.6028600602, 2.83634213579], "code_commune_insee": "59025"}, "geometry": {"type": "Point", "coordinates": [2.83634213579, 50.6028600602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f10cd8f0eae1770700d9d654b510f376559ade", "fields": {"nom_de_la_commune": "AUBIGNY AU BAC", "libell_d_acheminement": "AUBIGNY AU BAC", "code_postal": "59265", "coordonnees_gps": [50.2606708685, 3.16534687395], "code_commune_insee": "59026"}, "geometry": {"type": "Point", "coordinates": [3.16534687395, 50.2606708685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26cb2a39008437b607c92fec397d78d16b4551cd", "fields": {"nom_de_la_commune": "AVESNELLES", "libell_d_acheminement": "AVESNELLES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59035"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4989153fe06cf529d5d4031fbcf80eb6e1b760c", "fields": {"nom_de_la_commune": "BACHANT", "libell_d_acheminement": "BACHANT", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59041"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2829675899b4114e8582c84c3e9980994ca18456", "fields": {"code_postal": "59270", "code_commune_insee": "59043", "libell_d_acheminement": "BAILLEUL", "ligne_5": "MONT NOIR", "nom_de_la_commune": "BAILLEUL", "coordonnees_gps": [50.744872534, 2.69409590473]}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9b339a735e29feb259c19140aa2b93612fef1a", "fields": {"nom_de_la_commune": "BAVAY", "libell_d_acheminement": "BAVAY", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59053"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41859ff454bc3f10219ddbed368f88ea5deafe7", "fields": {"nom_de_la_commune": "BETTIGNIES", "libell_d_acheminement": "BETTIGNIES", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59076"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b71b0bbd657af17bd3165a26ceb0e8bbbbbaac4", "fields": {"nom_de_la_commune": "BIERNE", "libell_d_acheminement": "BIERNE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59082"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa83865b27369d244aab91ca19f7b74cb50e3091", "fields": {"nom_de_la_commune": "BOESEGHEM", "libell_d_acheminement": "BOESEGHEM", "code_postal": "59189", "coordonnees_gps": [50.6676916499, 2.47249399478], "code_commune_insee": "59087"}, "geometry": {"type": "Point", "coordinates": [2.47249399478, 50.6676916499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01adfe37927bc9ce93f5830bcebcb83008c8530d", "fields": {"nom_de_la_commune": "BOIS GRENIER", "libell_d_acheminement": "BOIS GRENIER", "code_postal": "59280", "coordonnees_gps": [50.6683510107, 2.87630050545], "code_commune_insee": "59088"}, "geometry": {"type": "Point", "coordinates": [2.87630050545, 50.6683510107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0f0166383bc8bc86da208f99f6a809f21be532", "fields": {"nom_de_la_commune": "BOULOGNE SUR HELPE", "libell_d_acheminement": "BOULOGNE SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59093"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82ae91aa927cc7320c6523dd0e976b516281f36", "fields": {"nom_de_la_commune": "BOURSIES", "libell_d_acheminement": "BOURSIES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59097"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca433a38574ffafd62de15acacfebaf39c59e4bc", "fields": {"nom_de_la_commune": "BOUSIES", "libell_d_acheminement": "BOUSIES", "code_postal": "59222", "coordonnees_gps": [50.1472445748, 3.59180512772], "code_commune_insee": "59099"}, "geometry": {"type": "Point", "coordinates": [3.59180512772, 50.1472445748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c402c37d1108c51d158ad12bf4ecb9bbee36c10b", "fields": {"nom_de_la_commune": "BOUSIGNIES", "libell_d_acheminement": "BOUSIGNIES", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59100"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad8c14bff02e17e2e17c3dc02cf886d2cf508f5", "fields": {"nom_de_la_commune": "BROUCKERQUE", "libell_d_acheminement": "BROUCKERQUE", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59110"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516c42173169967a1aa0e9e5f7560e5b3f27604e", "fields": {"nom_de_la_commune": "BROXEELE", "libell_d_acheminement": "BROXEELE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59111"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45e5153fc0fdcceb49173a6259e2f36049e9ed8", "fields": {"code_postal": "59400", "code_commune_insee": "59122", "libell_d_acheminement": "CAMBRAI", "ligne_5": "MORENCHIES", "nom_de_la_commune": "CAMBRAI", "coordonnees_gps": [50.1533767412, 3.19681716574]}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fec9bb9579089a71db87634dae9631e75588c5", "fields": {"nom_de_la_commune": "CAMPHIN EN PEVELE", "libell_d_acheminement": "CAMPHIN EN PEVELE", "code_postal": "59780", "coordonnees_gps": [50.6106542416, 3.2436665711], "code_commune_insee": "59124"}, "geometry": {"type": "Point", "coordinates": [3.2436665711, 50.6106542416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab39c986eda028c41c1c8a8944c7c81c6397960", "fields": {"nom_de_la_commune": "CAPPELLE EN PEVELE", "libell_d_acheminement": "CAPPELLE EN PEVELE", "code_postal": "59242", "coordonnees_gps": [50.5245553237, 3.18527549865], "code_commune_insee": "59129"}, "geometry": {"type": "Point", "coordinates": [3.18527549865, 50.5245553237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fcee5cd1099f56effdd23680180bf10e0110a7", "fields": {"nom_de_la_commune": "CARNIERES", "libell_d_acheminement": "CARNIERES", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59132"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d2774c187a5704f1c1bfdbc849a9d595d6306f", "fields": {"nom_de_la_commune": "LE CATEAU CAMBRESIS", "libell_d_acheminement": "LE CATEAU CAMBRESIS", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59136"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5094f2f8e9a3c117c33764c601808fa5e9a77d", "fields": {"nom_de_la_commune": "CAUROIR", "libell_d_acheminement": "CAUROIR", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59141"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8565f203b9ab12929aba5beeaf57b35c6ffe947e", "fields": {"nom_de_la_commune": "LA CHAPELLE D ARMENTIERES", "libell_d_acheminement": "LA CHAPELLE D ARMENTIERES", "code_postal": "59930", "coordonnees_gps": [50.6658483202, 2.89526444812], "code_commune_insee": "59143"}, "geometry": {"type": "Point", "coordinates": [2.89526444812, 50.6658483202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cdd84439c25363a1cb942cb4a8771598735e19", "fields": {"nom_de_la_commune": "CHERENG", "libell_d_acheminement": "CHERENG", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59146"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2bf86b55e08cd7e92622615caadd1d635803ac", "fields": {"nom_de_la_commune": "CHOISIES", "libell_d_acheminement": "CHOISIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59147"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992eac83ac62b1b53187641bff0a1fc5217aa596", "fields": {"nom_de_la_commune": "CONDE SUR L ESCAUT", "libell_d_acheminement": "CONDE SUR L ESCAUT", "code_postal": "59163", "coordonnees_gps": [50.4613685751, 3.61604638041], "code_commune_insee": "59153"}, "geometry": {"type": "Point", "coordinates": [3.61604638041, 50.4613685751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cea878b141f4c2309eb68678cc4a4ce02cfa55f", "fields": {"nom_de_la_commune": "COUSOLRE", "libell_d_acheminement": "COUSOLRE", "code_postal": "59149", "coordonnees_gps": [50.2443056992, 4.15095520104], "code_commune_insee": "59157"}, "geometry": {"type": "Point", "coordinates": [4.15095520104, 50.2443056992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e6dc4f1c5c211b5508fad523801f2b456c78b1", "fields": {"nom_de_la_commune": "COUTICHES", "libell_d_acheminement": "COUTICHES", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59158"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1621dfc237aa6e31bd2cb281f559267335f55d", "fields": {"nom_de_la_commune": "CROIX", "libell_d_acheminement": "CROIX", "code_postal": "59170", "coordonnees_gps": [50.6738575684, 3.15497190967], "code_commune_insee": "59163"}, "geometry": {"type": "Point", "coordinates": [3.15497190967, 50.6738575684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8151053b1cd0d90ffdc91ec427fb22f1597d7692", "fields": {"nom_de_la_commune": "CROIX CALUYAU", "libell_d_acheminement": "CROIX CALUYAU", "code_postal": "59222", "coordonnees_gps": [50.1472445748, 3.59180512772], "code_commune_insee": "59164"}, "geometry": {"type": "Point", "coordinates": [3.59180512772, 50.1472445748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02aac7175a9cbafc27c77bae2a8da7a32e6e5d49", "fields": {"nom_de_la_commune": "DEULEMONT", "libell_d_acheminement": "DEULEMONT", "code_postal": "59890", "coordonnees_gps": [50.7190929543, 2.99204569056], "code_commune_insee": "59173"}, "geometry": {"type": "Point", "coordinates": [2.99204569056, 50.7190929543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3d493ef760ba3a091fdee94c1ce3d186febc86", "fields": {"nom_de_la_commune": "DOMPIERRE SUR HELPE", "libell_d_acheminement": "DOMPIERRE SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59177"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c1b4bfca43b9d5ba6224c2eab45f82f2e6e6b3", "fields": {"nom_de_la_commune": "DOUCHY LES MINES", "libell_d_acheminement": "DOUCHY LES MINES", "code_postal": "59282", "coordonnees_gps": [50.2922712188, 3.38676423014], "code_commune_insee": "59179"}, "geometry": {"type": "Point", "coordinates": [3.38676423014, 50.2922712188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0a819a91e017aff163f5c28390270ca203f495", "fields": {"code_postal": "59430", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "ST POL SUR MER", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2327396ebedf2992367e0c0a20b1d18d3dd22109", "fields": {"nom_de_la_commune": "EECKE", "libell_d_acheminement": "EECKE", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59189"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a7614aec82e6db720672cce4642fea20ca3cc1f", "fields": {"nom_de_la_commune": "EMMERIN", "libell_d_acheminement": "EMMERIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59193"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043d4fd646bfa19659dc1d777e9732d536bd7841", "fields": {"nom_de_la_commune": "ERINGHEM", "libell_d_acheminement": "ERINGHEM", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59200"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e09706e58e3024ddc6ced1b199eb57a3662ea9c", "fields": {"nom_de_la_commune": "ESCAUTPONT", "libell_d_acheminement": "ESCAUTPONT", "code_postal": "59278", "coordonnees_gps": [50.4241815246, 3.55318997832], "code_commune_insee": "59207"}, "geometry": {"type": "Point", "coordinates": [3.55318997832, 50.4241815246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32e763de36e1f423576240cd601b69b8661a189", "fields": {"nom_de_la_commune": "ESQUELBECQ", "libell_d_acheminement": "ESQUELBECQ", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59210"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b587aee542a0e6e5d905871b164b8d54cc4cf459", "fields": {"nom_de_la_commune": "FAMARS", "libell_d_acheminement": "FAMARS", "code_postal": "59300", "coordonnees_gps": [50.3420089884, 3.52240338554], "code_commune_insee": "59221"}, "geometry": {"type": "Point", "coordinates": [3.52240338554, 50.3420089884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830853ffbadf0804fa6a431fe28058dedb1bf8fc", "fields": {"nom_de_la_commune": "FAUMONT", "libell_d_acheminement": "FAUMONT", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59222"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742cfefa63b4c0a65cd9d6ed4fcc84bd17269ebb", "fields": {"nom_de_la_commune": "LE FAVRIL", "libell_d_acheminement": "LE FAVRIL", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59223"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c020316ac3ed08e1aceb03bcaabc4173015cb1", "fields": {"nom_de_la_commune": "FEIGNIES", "libell_d_acheminement": "FEIGNIES", "code_postal": "59750", "coordonnees_gps": [50.2946256893, 3.9087235949], "code_commune_insee": "59225"}, "geometry": {"type": "Point", "coordinates": [3.9087235949, 50.2946256893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a8874acc676fedd6f053b3f726c8b9e28d8a98", "fields": {"code_postal": "59750", "code_commune_insee": "59225", "libell_d_acheminement": "FEIGNIES", "ligne_5": "DOUZIES FEIGNIES", "nom_de_la_commune": "FEIGNIES", "coordonnees_gps": [50.2946256893, 3.9087235949]}, "geometry": {"type": "Point", "coordinates": [3.9087235949, 50.2946256893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820c93a373aa035e864b1be79a8ce8a346d4ed2e", "fields": {"nom_de_la_commune": "FELLERIES", "libell_d_acheminement": "FELLERIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59226"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d1a4de9519cebb62344d09a86a0fb6faffc7b2", "fields": {"nom_de_la_commune": "FLAUMONT WAUDRECHIES", "libell_d_acheminement": "FLAUMONT WAUDRECHIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59233"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ed9c11e3ed5b08f8f8e51f4ef7cd9a3b30f9cc", "fields": {"nom_de_la_commune": "FLERS EN ESCREBIEUX", "libell_d_acheminement": "FLERS EN ESCREBIEUX", "code_postal": "59128", "coordonnees_gps": [50.4015294936, 3.05071987726], "code_commune_insee": "59234"}, "geometry": {"type": "Point", "coordinates": [3.05071987726, 50.4015294936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be55e216ee4f06ec884c6971b3cbc00fd59b863d", "fields": {"nom_de_la_commune": "FLETRE", "libell_d_acheminement": "FLETRE", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59237"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5cb0c22e855651f0dfe02cb5e23cee649ba543f", "fields": {"nom_de_la_commune": "FOREST SUR MARQUE", "libell_d_acheminement": "FOREST SUR MARQUE", "code_postal": "59510", "coordonnees_gps": [50.6531377734, 3.19228219738], "code_commune_insee": "59247"}, "geometry": {"type": "Point", "coordinates": [3.19228219738, 50.6531377734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c171328dbeba5b2b37a0447657214d971e6d98", "fields": {"nom_de_la_commune": "FOURNES EN WEPPES", "libell_d_acheminement": "FOURNES EN WEPPES", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59250"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8273c16054965de429062e046713be665010111a", "fields": {"nom_de_la_commune": "FRESSAIN", "libell_d_acheminement": "FRESSAIN", "code_postal": "59234", "coordonnees_gps": [50.2968410353, 3.19491530905], "code_commune_insee": "59254"}, "geometry": {"type": "Point", "coordinates": [3.19491530905, 50.2968410353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e061d88a7eff377044985bf9314b43387bde28", "fields": {"nom_de_la_commune": "FRESSIES", "libell_d_acheminement": "FRESSIES", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59255"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0787dac33b179a898ba6682d77ef9337c0a044ed", "fields": {"nom_de_la_commune": "GHYVELDE", "libell_d_acheminement": "GHYVELDE", "code_postal": "59254", "coordonnees_gps": [51.0489395206, 2.51310280891], "code_commune_insee": "59260"}, "geometry": {"type": "Point", "coordinates": [2.51310280891, 51.0489395206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb0321adc9b80313e647bf84ad0d9b90e48b7a2", "fields": {"nom_de_la_commune": "GOEULZIN", "libell_d_acheminement": "GOEULZIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59263"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40e56291bf98b2ec33c2eca7b6aaccc260364a6", "fields": {"nom_de_la_commune": "LA GORGUE", "libell_d_acheminement": "LA GORGUE", "code_postal": "59253", "coordonnees_gps": [50.6312139913, 2.73914884324], "code_commune_insee": "59268"}, "geometry": {"type": "Point", "coordinates": [2.73914884324, 50.6312139913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f09cce4ed35cdb449b88369a4a1f8d1ee2465f4", "fields": {"nom_de_la_commune": "GOUZEAUCOURT", "libell_d_acheminement": "GOUZEAUCOURT", "code_postal": "59231", "coordonnees_gps": [50.065671657, 3.13135649355], "code_commune_insee": "59269"}, "geometry": {"type": "Point", "coordinates": [3.13135649355, 50.065671657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02409c2ead1529a9b3e2ecdcad833b5b21d9f22b", "fields": {"nom_de_la_commune": "GUESNAIN", "libell_d_acheminement": "GUESNAIN", "code_postal": "59287", "coordonnees_gps": [50.3426420903, 3.15765827403], "code_commune_insee": "59276"}, "geometry": {"type": "Point", "coordinates": [3.15765827403, 50.3426420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8486bd870e1f5474da3a31c5348b71897fc93b94", "fields": {"nom_de_la_commune": "GUSSIGNIES", "libell_d_acheminement": "GUSSIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59277"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a20c462ba088697af57348ee638caaf4f5b3795", "fields": {"nom_de_la_commune": "HALLENNES LEZ HAUBOURDIN", "libell_d_acheminement": "HALLENNES LEZ HAUBOURDIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59278"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647e073a62380fc7d35d7a19cd8a5ee45ba8c542", "fields": {"nom_de_la_commune": "HAUBOURDIN", "libell_d_acheminement": "HAUBOURDIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59286"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87212ba13381f3355ed9dea6914f99cf0ad81dfd", "fields": {"nom_de_la_commune": "HAUCOURT EN CAMBRESIS", "libell_d_acheminement": "HAUCOURT EN CAMBRESIS", "code_postal": "59191", "coordonnees_gps": [50.1001907619, 3.36864533682], "code_commune_insee": "59287"}, "geometry": {"type": "Point", "coordinates": [3.36864533682, 50.1001907619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534b5b680ff8f81def0d86ae0a019579eda4484f", "fields": {"nom_de_la_commune": "HECQ", "libell_d_acheminement": "HECQ", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59296"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf24f1fca42ac295123a3512945c64ff4589d61", "fields": {"nom_de_la_commune": "HERRIN", "libell_d_acheminement": "HERRIN", "code_postal": "59147", "coordonnees_gps": [50.5444177471, 2.98104516318], "code_commune_insee": "59304"}, "geometry": {"type": "Point", "coordinates": [2.98104516318, 50.5444177471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2063e1486a72b5a7c2ee6cf60a5d7d2e670218c7", "fields": {"nom_de_la_commune": "HESTRUD", "libell_d_acheminement": "HESTRUD", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59306"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fadaa31919c0d516f545ab652475ae432125e1e", "fields": {"nom_de_la_commune": "HONNECOURT SUR ESCAUT", "libell_d_acheminement": "HONNECOURT SUR ESCAUT", "code_postal": "59266", "coordonnees_gps": [50.0472384043, 3.20499874057], "code_commune_insee": "59312"}, "geometry": {"type": "Point", "coordinates": [3.20499874057, 50.0472384043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8583cb0245572edb9a081e2059179873f096b893", "fields": {"nom_de_la_commune": "JOLIMETZ", "libell_d_acheminement": "JOLIMETZ", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59325"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900a7d7ba4d21caa66e3441ca7cc19f9cd6a82f5", "fields": {"nom_de_la_commune": "LAMBRES LEZ DOUAI", "libell_d_acheminement": "LAMBRES LEZ DOUAI", "code_postal": "59552", "coordonnees_gps": [50.3521392693, 3.05547051543], "code_commune_insee": "59329"}, "geometry": {"type": "Point", "coordinates": [3.05547051543, 50.3521392693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7418a6eb89f9e573c18e722e2403a4462281ba", "fields": {"nom_de_la_commune": "LANDAS", "libell_d_acheminement": "LANDAS", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59330"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fde403505c83f88535004d241326abaaa83912", "fields": {"nom_de_la_commune": "LEDRINGHEM", "libell_d_acheminement": "LEDRINGHEM", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59338"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a975470980c3cc4f81397b8ddd7c539b6e132bf4", "fields": {"nom_de_la_commune": "LESDAIN", "libell_d_acheminement": "LESDAIN", "code_postal": "59258", "coordonnees_gps": [50.0777482818, 3.25663233924], "code_commune_insee": "59341"}, "geometry": {"type": "Point", "coordinates": [3.25663233924, 50.0777482818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d8acdb49fd14bffd124b9fefdad92fe50c83a2", "fields": {"nom_de_la_commune": "LEZ FONTAINE", "libell_d_acheminement": "LEZ FONTAINE", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59342"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8406fed97f678241e179c9c1b8349aef9ed7e93e", "fields": {"nom_de_la_commune": "LOCQUIGNOL", "libell_d_acheminement": "LOCQUIGNOL", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59353"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9fd0fe09258610dd6af823390f880fc354b76e", "fields": {"nom_de_la_commune": "LYNDE", "libell_d_acheminement": "LYNDE", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59366"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2dc434d306c8a8892165f49aa7b00d24ce9549a", "fields": {"nom_de_la_commune": "LE MAISNIL", "libell_d_acheminement": "LE MAISNIL", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59371"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167842873a18a9b29210bec073d74b5a056b239d", "fields": {"nom_de_la_commune": "MARCQ EN OSTREVENT", "libell_d_acheminement": "MARCQ EN OSTREVENT", "code_postal": "59252", "coordonnees_gps": [50.2842668858, 3.25374088253], "code_commune_insee": "59379"}, "geometry": {"type": "Point", "coordinates": [3.25374088253, 50.2842668858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bbc9e7ec69f92992ff292a1cc8366aeead64aad", "fields": {"nom_de_la_commune": "MARLY", "libell_d_acheminement": "MARLY", "code_postal": "59770", "coordonnees_gps": [50.3453173952, 3.54884560677], "code_commune_insee": "59383"}, "geometry": {"type": "Point", "coordinates": [3.54884560677, 50.3453173952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb90fb6fbecdedae5c6c9f0fda5e8c53585258cc", "fields": {"nom_de_la_commune": "MARQUILLIES", "libell_d_acheminement": "MARQUILLIES", "code_postal": "59274", "coordonnees_gps": [50.5510293561, 2.86946965317], "code_commune_insee": "59388"}, "geometry": {"type": "Point", "coordinates": [2.86946965317, 50.5510293561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0ebc2f6f5a70b32536bb2d24d019a1733d0968", "fields": {"code_postal": "59600", "code_commune_insee": "59392", "libell_d_acheminement": "MAUBEUGE", "ligne_5": "DOUZIES", "nom_de_la_commune": "MAUBEUGE", "coordonnees_gps": [50.3120023096, 3.98953050481]}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d5c55627d4b56bc92b7d132873546e3471049c4", "fields": {"nom_de_la_commune": "MAULDE", "libell_d_acheminement": "MAULDE", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59393"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69af79e2c3e7aa08b4ed23d107653e0199277b51", "fields": {"nom_de_la_commune": "MAZINGHIEN", "libell_d_acheminement": "MAZINGHIEN", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59395"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ff1eb874b8659471e5857a2d34ce3c848c0952", "fields": {"nom_de_la_commune": "MOROGUES", "libell_d_acheminement": "MOROGUES", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18156"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079a936faae0c94df9de69a002bd1dab3837836f", "fields": {"nom_de_la_commune": "MOULINS SUR YEVRE", "libell_d_acheminement": "MOULINS SUR YEVRE", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18158"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faef6942c72f4a3b49752522e554d336f5968ef5", "fields": {"nom_de_la_commune": "NERONDES", "libell_d_acheminement": "NERONDES", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18160"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754fc76f29f80714278d80e6b389db3e1f29376a", "fields": {"nom_de_la_commune": "NEUVY LE BARROIS", "libell_d_acheminement": "NEUVY LE BARROIS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18164"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b3e56a5baab5f0603847f83cfbc01883a2cf6a", "fields": {"nom_de_la_commune": "NOHANT EN GRACAY", "libell_d_acheminement": "NOHANT EN GRACAY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18167"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c70c64399ab157b8b7a1ff92ef8ff375596ce1e", "fields": {"nom_de_la_commune": "NOZIERES", "libell_d_acheminement": "NOZIERES", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18169"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3047a90fd0ae1b7b5800c3a415a53cf4a03a44a8", "fields": {"nom_de_la_commune": "OSMERY", "libell_d_acheminement": "OSMERY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18173"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3477a19b3a61b29d80c0d6c63704171e1514e8be", "fields": {"nom_de_la_commune": "OSMOY", "libell_d_acheminement": "OSMOY", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18174"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e474f063fd57bbc356454b9e51ee06d4730f28", "fields": {"nom_de_la_commune": "PARASSY", "libell_d_acheminement": "PARASSY", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18176"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863429610354e4f28de1bbd2b2c2b37b657f0660", "fields": {"nom_de_la_commune": "PREUILLY", "libell_d_acheminement": "PREUILLY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18186"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a112dcd324f044426e2ffe0f089a0090829e5b", "fields": {"nom_de_la_commune": "PREVERANGES", "libell_d_acheminement": "PREVERANGES", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18187"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80c1af1bfef87fd6c7f27ebc0f9e936488d59621", "fields": {"nom_de_la_commune": "REIGNY", "libell_d_acheminement": "REIGNY", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18192"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c600cf0bd69669f470d542a629619555f191fcd9", "fields": {"nom_de_la_commune": "RIANS", "libell_d_acheminement": "RIANS", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18194"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cfd57d2163f940500af1e127ad51ff2db9aafc2", "fields": {"nom_de_la_commune": "ST GEORGES SUR MOULON", "libell_d_acheminement": "ST GEORGES SUR MOULON", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18211"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9dd89559a6c8550df0479ce53bfe19785db756", "fields": {"nom_de_la_commune": "ST GERMAIN DES BOIS", "libell_d_acheminement": "ST GERMAIN DES BOIS", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18212"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602c68e093727e5c3ee5fb95858582b39127da94", "fields": {"nom_de_la_commune": "ST HILAIRE DE COURT", "libell_d_acheminement": "ST HILAIRE DE COURT", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18214"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59502514662ba2e8dbbdebea0b35e2b1968f7d11", "fields": {"nom_de_la_commune": "ST JEANVRIN", "libell_d_acheminement": "ST JEANVRIN", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18217"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ee006b7100486c3c3b3523863bf18073bb7bf9", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18225"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496028846c51657a2eb723f133828024bc2de287", "fields": {"nom_de_la_commune": "STE SOLANGE", "libell_d_acheminement": "STE SOLANGE", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18235"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "011756b048443b8c91799a3f9baf48fc08ca7ebb", "fields": {"nom_de_la_commune": "SALIGNY LE VIF", "libell_d_acheminement": "SALIGNY LE VIF", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18239"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee1c77176b69cc0ab1f3e687c2ac09edc3a33c0c", "fields": {"nom_de_la_commune": "SANTRANGES", "libell_d_acheminement": "SANTRANGES", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18243"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310017e75a4375dac5f3e8883bc106c653de06f6", "fields": {"nom_de_la_commune": "LE SUBDRAY", "libell_d_acheminement": "LE SUBDRAY", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18255"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf09f72f4b527d91d12b2aadc3a35e192d0b077d", "fields": {"nom_de_la_commune": "SUBLIGNY", "libell_d_acheminement": "SUBLIGNY", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18256"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31d263fc92482015ee02e444ce70a4f0a967801", "fields": {"nom_de_la_commune": "SURY PRES LERE", "libell_d_acheminement": "SURY PRES LERE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18257"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d64e632de750a9a58a05c0ac8a06202d10e89551", "fields": {"nom_de_la_commune": "SURY EN VAUX", "libell_d_acheminement": "SURY EN VAUX", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18258"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13630497b29e32ae6844584b079107cbf46b47c4", "fields": {"nom_de_la_commune": "THENIOUX", "libell_d_acheminement": "THENIOUX", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18263"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656cb72582290de0e1310423639eec8eedf3e026", "fields": {"nom_de_la_commune": "TORTERON", "libell_d_acheminement": "TORTERON", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18265"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab62436d83ef6567202b5f31bfd3e3a525097080", "fields": {"nom_de_la_commune": "VENESMES", "libell_d_acheminement": "VENESMES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18273"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa79490ab6b62078a8dffabb8b048e3256743e6a", "fields": {"nom_de_la_commune": "VERDIGNY", "libell_d_acheminement": "VERDIGNY", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18274"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e38faa99dafd3963c3afed0b5105c1a6718413f", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18277"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69246de24734e81b9134ddf5abbef0a48397fa9", "fields": {"nom_de_la_commune": "VILLECELIN", "libell_d_acheminement": "VILLECELIN", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18283"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a362b63b229f940db0011943ba44068d57d45d", "fields": {"nom_de_la_commune": "VILLENEUVE SUR CHER", "libell_d_acheminement": "VILLENEUVE SUR CHER", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18285"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de9b2f126fe54ac1df774d6528dbd65ad86f747", "fields": {"nom_de_la_commune": "VORLY", "libell_d_acheminement": "VORLY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18288"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64134a37a635399d9271c53b4e3292522c0b8467", "fields": {"nom_de_la_commune": "ALLEYRAT", "libell_d_acheminement": "ALLEYRAT", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19006"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff7a23563ef48155a8cad4f25ddba43792f8633", "fields": {"nom_de_la_commune": "ARGENTAT", "libell_d_acheminement": "ARGENTAT", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19010"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7b20ff6b3ca075a27e73dff6caac6b51c9d54d", "fields": {"nom_de_la_commune": "AYEN", "libell_d_acheminement": "AYEN", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19015"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a94f577b77b56670c04f70157e18a5f7578e926e", "fields": {"nom_de_la_commune": "BRANCEILLES", "libell_d_acheminement": "BRANCEILLES", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19029"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0125388f1aaa1fef4b442548cdfa22a13690e6", "fields": {"nom_de_la_commune": "BRIGNAC LA PLAINE", "libell_d_acheminement": "BRIGNAC LA PLAINE", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19030"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8101b68f09c457f1d22f6851edb802a0956740e6", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX BROCS", "libell_d_acheminement": "LA CHAPELLE AUX BROCS", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19043"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a54fd79d166c9b88163d3a228811a3be48c504b", "fields": {"nom_de_la_commune": "LA CHAPELLE ST GERAUD", "libell_d_acheminement": "LA CHAPELLE ST GERAUD", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19045"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46aece595ef99dcbe46fc6172a7b9445b7a4b73c", "fields": {"nom_de_la_commune": "CHARTRIER FERRIERE", "libell_d_acheminement": "CHARTRIER FERRIERE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19047"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693319158a4d4e5be503e6640b472cf10e51efb7", "fields": {"nom_de_la_commune": "CHAVEROCHE", "libell_d_acheminement": "CHAVEROCHE", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19053"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffac1baa6043f84558aef2a4565b3349b2975a7", "fields": {"nom_de_la_commune": "CHENAILLER MASCHEIX", "libell_d_acheminement": "CHENAILLER MASCHEIX", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19054"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3698bac88701ea0b5dc98d5f61ed5a1541f2357", "fields": {"nom_de_la_commune": "COSNAC", "libell_d_acheminement": "COSNAC", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19063"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1932904e79ec9e8dc20170201b7c662781d135", "fields": {"nom_de_la_commune": "COUFFY SUR SARSONNE", "libell_d_acheminement": "COUFFY SUR SARSONNE", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19064"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1302f55c23a65f357ae7df4767eb68c6e8ca15", "fields": {"nom_de_la_commune": "ESPAGNAC", "libell_d_acheminement": "ESPAGNAC", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19075"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f705d2c532fa554d55c5800f45dd01c86087b148", "fields": {"nom_de_la_commune": "ESTIVAUX", "libell_d_acheminement": "ESTIVAUX", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19078"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4092f25dd26b6bf5410d6a0a35e081b69a97dd", "fields": {"nom_de_la_commune": "FEYT", "libell_d_acheminement": "FEYT", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19083"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c155bef8c3551787d6f22a46fef0f81419d9be1", "fields": {"nom_de_la_commune": "JUGEALS NAZARETH", "libell_d_acheminement": "JUGEALS NAZARETH", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19093"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ca8ce78ad96c0009d27e93d9fd4dad3ba6bf30", "fields": {"nom_de_la_commune": "LAPLEAU", "libell_d_acheminement": "LAPLEAU", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19106"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63e030b0598b46a1d2547e16a467b996c44f3733", "fields": {"nom_de_la_commune": "LIGINIAC", "libell_d_acheminement": "LIGINIAC", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19113"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627ea5b426aa913e3f20bd3c5b2356e68d5698a2", "fields": {"nom_de_la_commune": "LIOURDRES", "libell_d_acheminement": "LIOURDRES", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19116"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88d41f2f64c734e00e9d4b8cf9e155156547d1b", "fields": {"nom_de_la_commune": "LISSAC SUR COUZE", "libell_d_acheminement": "LISSAC SUR COUZE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19117"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "564f2bd23e78b89d26ca4bb684db9190fce4f565", "fields": {"nom_de_la_commune": "LOUIGNAC", "libell_d_acheminement": "LOUIGNAC", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19120"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f41a1e994bb3228bb24c73a34eb943dbd661df5", "fields": {"nom_de_la_commune": "MARGERIDES", "libell_d_acheminement": "MARGERIDES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19128"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ae09ec8b704020ff4d979550b17da71884510f", "fields": {"nom_de_la_commune": "MENOIRE", "libell_d_acheminement": "MENOIRE", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19132"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c76c9d7cdab5a42ac7cdefa47e2789190cc680", "fields": {"nom_de_la_commune": "MEYMAC", "libell_d_acheminement": "MEYMAC", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19136"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72db77759ffb65e216da29aef681e323f13bc2d2", "fields": {"nom_de_la_commune": "MEYSSAC", "libell_d_acheminement": "MEYSSAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19138"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722633762a97ab83225c92d7d28b70d3af0e06ef", "fields": {"nom_de_la_commune": "MONESTIER MERLINES", "libell_d_acheminement": "MONESTIER MERLINES", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19141"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2e4b21bb682617e30f05e221fdb1075ac5fde6", "fields": {"nom_de_la_commune": "NEUVILLE", "libell_d_acheminement": "NEUVILLE", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19149"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42bd9fb0376d593c2e80b2b35df83c1d5f23f2e", "fields": {"nom_de_la_commune": "NOAILHAC", "libell_d_acheminement": "NOAILHAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19150"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cefe1c89e48c37af7809bbfc984ad87596a429b3", "fields": {"nom_de_la_commune": "ORGNAC SUR VEZERE", "libell_d_acheminement": "ORGNAC SUR VEZERE", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19154"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08bb95c879ae8920dbdbfc5196b6893149e2474b", "fields": {"nom_de_la_commune": "PALAZINGES", "libell_d_acheminement": "PALAZINGES", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19156"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d408d4877e92de5d8e3a4a6164d549368de4418", "fields": {"nom_de_la_commune": "PERET BEL AIR", "libell_d_acheminement": "PERET BEL AIR", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19159"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7dda0944211b4ed88e80c9f00fed52198fb5ea", "fields": {"nom_de_la_commune": "PEROLS SUR VEZERE", "libell_d_acheminement": "PEROLS SUR VEZERE", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19160"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f640b4b1fe04f243ba7a8a2ba9b8a28376c63da1", "fields": {"nom_de_la_commune": "ROSIERS DE JUILLAC", "libell_d_acheminement": "ROSIERS DE JUILLAC", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19177"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c432dd1d11373e43f46c38edbae6ce8225a4b0", "fields": {"nom_de_la_commune": "ST AUGUSTIN", "libell_d_acheminement": "ST AUGUSTIN", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19181"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4a3e54f166942e800a3bffd3de8959e544580d", "fields": {"nom_de_la_commune": "ST CIRGUES LA LOUTRE", "libell_d_acheminement": "ST CIRGUES LA LOUTRE", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19193"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baea23c5d3dcc464d8b4c72d16d3ad4791af8c04", "fields": {"nom_de_la_commune": "ST ETIENNE LA GENESTE", "libell_d_acheminement": "ST ETIENNE LA GENESTE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19200"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad48688501da8b8a47985a0f1b409481043fcf19", "fields": {"nom_de_la_commune": "ST GERMAIN LES VERGNES", "libell_d_acheminement": "ST GERMAIN LES VERGNES", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19207"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fa8201b2a9ea4a4c7a977decd2672a91582091", "fields": {"nom_de_la_commune": "ST HILAIRE PEYROUX", "libell_d_acheminement": "ST HILAIRE PEYROUX", "code_postal": "19560", "coordonnees_gps": [45.2125739554, 1.64194849457], "code_commune_insee": "19211"}, "geometry": {"type": "Point", "coordinates": [1.64194849457, 45.2125739554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276d7ff751933683d6ec24623e58315abbef092f", "fields": {"nom_de_la_commune": "ST HILAIRE TAURIEUX", "libell_d_acheminement": "ST HILAIRE TAURIEUX", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19212"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57024d949680bb84a35264b2c0aff782cf234d77", "fields": {"nom_de_la_commune": "ST JULIEN MAUMONT", "libell_d_acheminement": "ST JULIEN MAUMONT", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19217"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2055836bb6c804e0c5da14e11293b4b890cd44df", "fields": {"nom_de_la_commune": "STE MARIE LAPANOUZE", "libell_d_acheminement": "STE MARIE LAPANOUZE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19219"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f68b4dbfc26e4198ca6431e36e77d8f98b2c623", "fields": {"nom_de_la_commune": "ST MERD LES OUSSINES", "libell_d_acheminement": "ST MERD LES OUSSINES", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19226"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b1a3f30601bc4eaa5587bdf397392ee62e0ada", "fields": {"nom_de_la_commune": "ST PARDOUX LA CROISILLE", "libell_d_acheminement": "ST PARDOUX LA CROISILLE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19231"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718d197d3ad8c7225baf2caa6c22bab1cb41c950", "fields": {"nom_de_la_commune": "ST SOLVE", "libell_d_acheminement": "ST SOLVE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19242"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b1e2889e135143615a3bc0463f63aa339aaba9", "fields": {"nom_de_la_commune": "ST YBARD", "libell_d_acheminement": "ST YBARD", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19248"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74623bef24315f2eb877c8b5b8023629cd682f3c", "fields": {"nom_de_la_commune": "SERILHAC", "libell_d_acheminement": "SERILHAC", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19257"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265974e9df2ff4bd80d76d85dff13200523a45e4", "fields": {"nom_de_la_commune": "SERVIERES LE CHATEAU", "libell_d_acheminement": "SERVIERES LE CHATEAU", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19258"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e223e154e3c9b5dd532e1dd8d29d6b45bcc32ae1", "fields": {"nom_de_la_commune": "SOUDEILLES", "libell_d_acheminement": "SOUDEILLES", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19263"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7085127ce0b9fd1b10c02c973e5ec6ccba2824d6", "fields": {"nom_de_la_commune": "THALAMY", "libell_d_acheminement": "THALAMY", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19266"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817e091957203444721b56652a7d3051b7f8be8b", "fields": {"nom_de_la_commune": "TROCHE", "libell_d_acheminement": "TROCHE", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19270"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61df8095dc1e7c02684b768a32f5a5640685549", "fields": {"nom_de_la_commune": "TURENNE", "libell_d_acheminement": "TURENNE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19273"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633bf2779ffb1971b2c2847ad4aa07bdce2f5918", "fields": {"nom_de_la_commune": "VARS SUR ROSEIX", "libell_d_acheminement": "VARS SUR ROSEIX", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19279"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08559cec571c6caf11adcd1b984763347a3175f4", "fields": {"nom_de_la_commune": "VITRAC SUR MONTANE", "libell_d_acheminement": "VITRAC SUR MONTANE", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19287"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ae57a77c912a45493fd1e788ced7c471532bb5", "fields": {"nom_de_la_commune": "AHUY", "libell_d_acheminement": "AHUY", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21003"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4a4ef158ed9d5d1be8cf12a97d9073bbcd8cc8", "fields": {"nom_de_la_commune": "AIGNAY LE DUC", "libell_d_acheminement": "AIGNAY LE DUC", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21004"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7541a9e0316a17af4f3dcf45ec8d30e25f774c67", "fields": {"nom_de_la_commune": "ALOXE CORTON", "libell_d_acheminement": "ALOXE CORTON", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21010"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14700daf4f4119c1b815687434890a92291a70d7", "fields": {"nom_de_la_commune": "AMPILLY LES BORDES", "libell_d_acheminement": "AMPILLY LES BORDES", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21011"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80559b0a83a0dbc8061e075ce15b564452cb8882", "fields": {"nom_de_la_commune": "ARCEY", "libell_d_acheminement": "ARCEY", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21018"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78078366c00380b006239614b5bad66cda1344a2", "fields": {"nom_de_la_commune": "ARCONCEY", "libell_d_acheminement": "ARCONCEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21020"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c7c215ed72106a1889499ee73d42d3e9e61b6b", "fields": {"nom_de_la_commune": "ARC SUR TILLE", "libell_d_acheminement": "ARC SUR TILLE", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21021"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ceb17833fb832847264faab584e19ce289d994", "fields": {"nom_de_la_commune": "ARGILLY", "libell_d_acheminement": "ARGILLY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21022"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827beb954b4e2bddd9229d0a688c4a0e0d277f0c", "fields": {"nom_de_la_commune": "ARNAY LE DUC", "libell_d_acheminement": "ARNAY LE DUC", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21023"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ff630c52675fc2c4af6198548eaca486897c52", "fields": {"nom_de_la_commune": "ASNIERES EN MONTAGNE", "libell_d_acheminement": "ASNIERES EN MONTAGNE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21026"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24948d52499af5b122a11aa274dceba8405795c", "fields": {"nom_de_la_commune": "ATHIE", "libell_d_acheminement": "ATHIE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21029"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fa6b697033e61fe074288488a6a47b36c11b99", "fields": {"nom_de_la_commune": "AUBIGNY EN PLAINE", "libell_d_acheminement": "AUBIGNY EN PLAINE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21031"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999c7428b61b58a9c434fcf0e98498269b1dc3c5", "fields": {"nom_de_la_commune": "AVOT", "libell_d_acheminement": "AVOT", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21041"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93e9dcfa589019d3fef0f75bf1a89cfb2082b6a", "fields": {"nom_de_la_commune": "BAGNOT", "libell_d_acheminement": "BAGNOT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21042"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84096b094f409f72e6b4dcb550b140b208f384ca", "fields": {"nom_de_la_commune": "RIBERAC", "libell_d_acheminement": "RIBERAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24352"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e61d79bede4a000147ef5cf4cdd4038063d6dc0", "fields": {"code_postal": "24580", "code_commune_insee": "24356", "libell_d_acheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", "ligne_5": "ST CERNIN DE REILLAC", "nom_de_la_commune": "ROUFFIGNAC ST CERNIN DE REILHAC", "coordonnees_gps": [45.0387588745, 0.994420883545]}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050f2ecd6bb7833c8f40fff5086dd36034f091e9", "fields": {"nom_de_la_commune": "ROUFFIGNAC DE SIGOULES", "libell_d_acheminement": "ROUFFIGNAC DE SIGOULES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24357"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a722218edba1de3bbfc971906c0bd684dd954f", "fields": {"nom_de_la_commune": "ST ANTOINE D AUBEROCHE", "libell_d_acheminement": "ST ANTOINE D AUBEROCHE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24369"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d39af676322ef38a4212639314fe4a1d883aeab", "fields": {"nom_de_la_commune": "ST AUBIN DE CADELECH", "libell_d_acheminement": "ST AUBIN DE CADELECH", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24373"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4c7dd14651fbc4eb448125aaaa8533ad6c1371", "fields": {"nom_de_la_commune": "ST CAPRAISE D EYMET", "libell_d_acheminement": "ST CAPRAISE D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24383"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4229818ce3b57cb62d9dcc7fd114026b89b05b33", "fields": {"nom_de_la_commune": "ST CYBRANET", "libell_d_acheminement": "ST CYBRANET", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24395"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "babd60eb4088fb69b811295fcbd4264b182fd1d1", "fields": {"nom_de_la_commune": "STE FOY DE BELVES", "libell_d_acheminement": "STE FOY DE BELVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24406"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcca379432d9a0c2d9888f40e3dfbb0a3e29c457", "fields": {"nom_de_la_commune": "STE FOY DE LONGAS", "libell_d_acheminement": "STE FOY DE LONGAS", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24407"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c906d54010eac6d7e43e627b7f3d2bca73760586", "fields": {"nom_de_la_commune": "ST FRONT SUR NIZONNE", "libell_d_acheminement": "ST FRONT SUR NIZONNE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24411"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13adcdded0c8db008a73d875b84951c77c354b4e", "fields": {"nom_de_la_commune": "ST GERMAIN DU SALEMBRE", "libell_d_acheminement": "ST GERMAIN DU SALEMBRE", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24418"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0793c5ec8fb2917e8f0c0dda36f1f1106c574ce", "fields": {"nom_de_la_commune": "ST GERMAIN ET MONS", "libell_d_acheminement": "ST GERMAIN ET MONS", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24419"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf1932da6cc6094a6047bb14aecc5eb170be7f8", "fields": {"nom_de_la_commune": "ST GEYRAC", "libell_d_acheminement": "ST GEYRAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24421"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e769ff6f478c53d8a78be9e7cccd246b590f760b", "fields": {"nom_de_la_commune": "ST HILAIRE D ESTISSAC", "libell_d_acheminement": "ST HILAIRE D ESTISSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24422"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c685b7eacce7ad1778dbafcf9a95c1e247b57", "fields": {"nom_de_la_commune": "ST JORY DE CHALAIS", "libell_d_acheminement": "ST JORY DE CHALAIS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24428"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba416ae71863ab0842321aca927f2158ebd642cc", "fields": {"nom_de_la_commune": "ST MARCEL DU PERIGORD", "libell_d_acheminement": "ST MARCEL DU PERIGORD", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24445"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b4abb1ea10d74269cdd43a2c759e44e97c2306", "fields": {"nom_de_la_commune": "ST MARTIAL DE NABIRAT", "libell_d_acheminement": "ST MARTIAL DE NABIRAT", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24450"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25284604d483f917f0bd1c1b7ccc7e07c3c0922", "fields": {"nom_de_la_commune": "ST MAIME DE PEREYROL", "libell_d_acheminement": "ST MAIME DE PEREYROL", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24459"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cae6c3e223cc4486ea170c40356c2406b08a935", "fields": {"nom_de_la_commune": "ST MICHEL DE VILLADEIX", "libell_d_acheminement": "ST MICHEL DE VILLADEIX", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24468"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b02c53ccd1742479bd57acd61d3df87c7ee7344", "fields": {"nom_de_la_commune": "ST PANTALY D ANS", "libell_d_acheminement": "ST PANTALY D ANS", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24475"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af9d489285d2c696215be85647991f2f8277794", "fields": {"nom_de_la_commune": "ST PIERRE DE CHIGNAC", "libell_d_acheminement": "ST PIERRE DE CHIGNAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24484"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140b55ec3d2946de3f2aac90d8dd274f335b34d8", "fields": {"nom_de_la_commune": "ST PIERRE DE FRUGIE", "libell_d_acheminement": "ST PIERRE DE FRUGIE", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24486"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44a01eac16d877d66cafc37c78955fc943738ad", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24494"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce802c842869bbbd7baadf72230e8117dfc815b6", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24499"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c5345caad9757d6e71bf34f4254d4d84a354ae", "fields": {"nom_de_la_commune": "ST SEVERIN D ESTISSAC", "libell_d_acheminement": "ST SEVERIN D ESTISSAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24502"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb382442aa145de35d77ba6688ac0d57fc4439e", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24508"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b58e10c1e0779bc8a4ea65841bff785fe329b96", "fields": {"nom_de_la_commune": "SALLES DE BELVES", "libell_d_acheminement": "SALLES DE BELVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24517"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2303017319b444571313b69f213e71a40206f47", "fields": {"nom_de_la_commune": "SALON", "libell_d_acheminement": "SALON", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24518"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e53d39375630f24f6361df311dc9733c8e3428", "fields": {"nom_de_la_commune": "SERGEAC", "libell_d_acheminement": "SERGEAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24531"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56305372703db2ea43409df57a06f16ebe87807", "fields": {"nom_de_la_commune": "SERRES ET MONTGUYARD", "libell_d_acheminement": "SERRES ET MONTGUYARD", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24532"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda7c07483d88309d495a75acf4a7e7410a325cc", "fields": {"code_postal": "24460", "code_commune_insee": "24540", "libell_d_acheminement": "SORGES ET LIGUEUX EN PERIGORD", "ligne_5": "LIGUEUX", "nom_de_la_commune": "SORGES ET LIGUEUX EN PERIGORD", "coordonnees_gps": [45.2956832726, 0.780250609832]}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee2d44b7eeba4230ab34bca651c48ac49fb7d25", "fields": {"nom_de_la_commune": "SOUDAT", "libell_d_acheminement": "SOUDAT", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24541"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dac5eb12bc1e43e49dd3a7f33bc4dc54c0da46", "fields": {"nom_de_la_commune": "VALEUIL", "libell_d_acheminement": "VALEUIL", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24561"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a06e8e5cc32b371d1641cfca55801fdf3f9686", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24566"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9224b85477fccb6e79f537a07ae915016f1715bb", "fields": {"nom_de_la_commune": "VEYRIGNAC", "libell_d_acheminement": "VEYRIGNAC", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24574"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f4abbbc503a7cc1df8908a380d566628090e11", "fields": {"nom_de_la_commune": "VEYRINES DE DOMME", "libell_d_acheminement": "VEYRINES DE DOMME", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24575"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7183d392c9ef4d9c949eded75968717d2f1476a", "fields": {"nom_de_la_commune": "VEZAC", "libell_d_acheminement": "VEZAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24577"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e8d43f31e6c9f45ea9d1615e2febfaf017e1005", "fields": {"nom_de_la_commune": "VIEUX MAREUIL", "libell_d_acheminement": "VIEUX MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24579"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc2067777c4930cb2537c801fa185cedc89b02c", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24582"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edeee4ef675a5630d0b19f03fdf98baf02ada7c8", "fields": {"nom_de_la_commune": "ABBANS DESSUS", "libell_d_acheminement": "ABBANS DESSUS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25002"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfeaa24391cdc7682a706656836f84983aefce29", "fields": {"nom_de_la_commune": "AISSEY", "libell_d_acheminement": "AISSEY", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25009"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffcf3f8977af19c0f74cd4a53aa33ce92a471322", "fields": {"nom_de_la_commune": "APPENANS", "libell_d_acheminement": "APPENANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25019"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ebb6c3dc347cd41b47a89091ce8a2242dd0c2c", "fields": {"nom_de_la_commune": "AUDEUX", "libell_d_acheminement": "AUDEUX", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25030"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed640337c65328417cf08de1f6b043ec560d122", "fields": {"nom_de_la_commune": "LES AUXONS", "libell_d_acheminement": "LES AUXONS", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25035"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e2ea4cfaab7470405c2294a26753b5b56842e2", "fields": {"code_postal": "25870", "code_commune_insee": "25035", "libell_d_acheminement": "LES AUXONS", "ligne_5": "AUXON DESSOUS", "nom_de_la_commune": "LES AUXONS", "coordonnees_gps": [47.3323567525, 6.03683480624]}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825430c8a794ca139333f7ada4464fcdd3716ab2", "fields": {"nom_de_la_commune": "BART", "libell_d_acheminement": "BART", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25043"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e527b31e402fd4a87339908e2f30813604de69c5", "fields": {"nom_de_la_commune": "BATTENANS LES MINES", "libell_d_acheminement": "BATTENANS LES MINES", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25045"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d6830346357cefb675838bc61a249fb5b922d4", "fields": {"nom_de_la_commune": "BLUSSANS", "libell_d_acheminement": "BLUSSANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25067"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf042be87b6b4c317e4dfcc317dd9ff403cb307c", "fields": {"nom_de_la_commune": "BONDEVAL", "libell_d_acheminement": "BONDEVAL", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25071"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6276f0721a3284db5fd3083b2b6d6141a65411", "fields": {"nom_de_la_commune": "BRECONCHAUX", "libell_d_acheminement": "BRECONCHAUX", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25088"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e748ef9edf52facfa5477292fd5b6b48a1b338", "fields": {"nom_de_la_commune": "BREMONDANS", "libell_d_acheminement": "BREMONDANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25089"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebabf15357a8c7d2c33ff323f02125a78fd15c0b", "fields": {"nom_de_la_commune": "BREY ET MAISON DU BOIS", "libell_d_acheminement": "BREY ET MAISON DU BOIS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25096"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442b9e5e6e3917913c19cbdb3887ee815b207b52", "fields": {"nom_de_la_commune": "BY", "libell_d_acheminement": "BY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25104"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e99c434a047f55096adc3098b634ef7b80256d5", "fields": {"nom_de_la_commune": "CESSEY", "libell_d_acheminement": "CESSEY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25109"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6f37cc21a966fcca08d675f4b6cac6a8af3439", "fields": {"nom_de_la_commune": "CHAMESOL", "libell_d_acheminement": "CHAMESOL", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25114"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eafb495e54b487de672912c2412da6e6dda58fd", "fields": {"nom_de_la_commune": "CHAMPAGNEY", "libell_d_acheminement": "CHAMPAGNEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25115"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c83baa9b95662a769bf14c0d87fd6528202c81f7", "fields": {"nom_de_la_commune": "CHAMPVANS LES MOULINS", "libell_d_acheminement": "CHAMPVANS LES MOULINS", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25119"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c2d69d6369ba682af3c5bb92863557fe4edf1f", "fields": {"nom_de_la_commune": "CHAPELLE D HUIN", "libell_d_acheminement": "CHAPELLE D HUIN", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25122"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "084d64d3e8098b75859ffe13f528a5bde4d9a6cb", "fields": {"nom_de_la_commune": "CHARMAUVILLERS", "libell_d_acheminement": "CHARMAUVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25124"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a9ddb5040919e3c0cc41a626634be32b5b59b7", "fields": {"nom_de_la_commune": "LA CHAUX", "libell_d_acheminement": "LA CHAUX", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25139"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf7c30047b81a16713e42111653428847d8c96c", "fields": {"nom_de_la_commune": "CHAZOT", "libell_d_acheminement": "CHAZOT", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25145"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c470616ff1eb06f6a392855eb026f792c83a2ed", "fields": {"nom_de_la_commune": "CHEVIGNEY SUR L OGNON", "libell_d_acheminement": "CHEVIGNEY SUR L OGNON", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25150"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8a7e6a170543867a3a842ef84a235eb2b25e29", "fields": {"nom_de_la_commune": "CHOUZELOT", "libell_d_acheminement": "CHOUZELOT", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25154"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be36b404ecd03b4a5594ab12a044ffc6a77504b5", "fields": {"nom_de_la_commune": "CROSEY LE GRAND", "libell_d_acheminement": "CROSEY LE GRAND", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25177"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bb4f85c9421487bb49e8e1fe9342d9755e8301", "fields": {"nom_de_la_commune": "CROUZET MIGETTE", "libell_d_acheminement": "CROUZET MIGETTE", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25180"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5a7013d3beac9276e62272908f66ee7e1c3a66", "fields": {"nom_de_la_commune": "CUBRY", "libell_d_acheminement": "CUBRY", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25182"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "340c7a2e8680136a7aff7e2e9d66e391fbdf6f6e", "fields": {"nom_de_la_commune": "CUSSEY SUR LISON", "libell_d_acheminement": "CUSSEY SUR LISON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25185"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505fceab1fe57a2a6a156b45a10e8b6a4f0864b8", "fields": {"nom_de_la_commune": "CUSSEY SUR L OGNON", "libell_d_acheminement": "CUSSEY SUR L OGNON", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25186"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350ab308d87fb5db9ca2aeb00084f1b757b2671e", "fields": {"nom_de_la_commune": "DAMBELIN", "libell_d_acheminement": "DAMBELIN", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25187"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9f9c366dde78aeb3590fb99eb4d4f8563fcf8b", "fields": {"nom_de_la_commune": "DAMPIERRE LES BOIS", "libell_d_acheminement": "DAMPIERRE LES BOIS", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25190"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ff10d534865cc7579d32e657d392373a3608e1", "fields": {"nom_de_la_commune": "DELUZ", "libell_d_acheminement": "DELUZ", "code_postal": "25960", "coordonnees_gps": [47.2973840074, 6.1928999339], "code_commune_insee": "25197"}, "geometry": {"type": "Point", "coordinates": [6.1928999339, 47.2973840074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3658456670deea6288744b43b69d18f7b56789a3", "fields": {"nom_de_la_commune": "DEVECEY", "libell_d_acheminement": "DEVECEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25200"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3485b5213417a391953d12b9f430d09699820a9c", "fields": {"nom_de_la_commune": "DOMPREL", "libell_d_acheminement": "DOMPREL", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25203"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016571663d67f045f8a0b34ee8c764f6c11c84d0", "fields": {"nom_de_la_commune": "ECHEVANNES", "libell_d_acheminement": "ECHEVANNES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25211"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f7166b6e38c942396659b852e72a3414db012c", "fields": {"nom_de_la_commune": "ECURCEY", "libell_d_acheminement": "ECURCEY", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25216"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e767093f3c0a0a82ccfd02401c3375eba5740e1", "fields": {"nom_de_la_commune": "EPENOY", "libell_d_acheminement": "EPENOY", "code_postal": "25800", "coordonnees_gps": [47.1494559066, 6.34818353393], "code_commune_insee": "25219"}, "geometry": {"type": "Point", "coordinates": [6.34818353393, 47.1494559066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e39c55241d0535c07e771a115b2c84d458c54d", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "ALAISE", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3f951c60ded200fb6d66cfb46ca1d3c4ce6221", "fields": {"nom_de_la_commune": "EVILLERS", "libell_d_acheminement": "EVILLERS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25229"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d08307b7f63b1e71675994949058d5ab332300f", "fields": {"nom_de_la_commune": "FALLERANS", "libell_d_acheminement": "FALLERANS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25233"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74465a47d7e49bc8b8fc586c0d679def1dcbd025", "fields": {"nom_de_la_commune": "FERRIERES LE LAC", "libell_d_acheminement": "FERRIERES LE LAC", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25234"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bffde53d8f2515b18df7999c434d0a26995289f0", "fields": {"nom_de_la_commune": "FERRIERES LES BOIS", "libell_d_acheminement": "FERRIERES LES BOIS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25235"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f4d62696b7d682ccf4592845c5f9e8ffe45651", "fields": {"nom_de_la_commune": "FEULE", "libell_d_acheminement": "FEULE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25239"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9608eab0ea1a86b0cf56cb2fe821d24a3f25214", "fields": {"nom_de_la_commune": "LES FINS", "libell_d_acheminement": "LES FINS", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25240"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5fa73d78fa5411b5f94dd8e31bbdd72e7b1304", "fields": {"nom_de_la_commune": "FOUCHERANS", "libell_d_acheminement": "FOUCHERANS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25250"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d255350371b6c1a651aaa480aee213e34975bde", "fields": {"nom_de_la_commune": "LES FOURGS", "libell_d_acheminement": "LES FOURGS", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25254"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4317514e012097bc71f8b6ad23eb239e2b54bbc0", "fields": {"nom_de_la_commune": "FRAMBOUHANS", "libell_d_acheminement": "FRAMBOUHANS", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25256"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9843fcda71cfc9de78b397ddf198c68b6c6dba0a", "fields": {"nom_de_la_commune": "GENNES", "libell_d_acheminement": "GENNES", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25267"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b580f92e9fd3dafc7ef41ac0e8d1b35693f6e13a", "fields": {"nom_de_la_commune": "GLERE", "libell_d_acheminement": "GLERE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25275"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c846a03f7dcb1c3a1d4bc2a85bfaf9ffa1b6cb0", "fields": {"nom_de_la_commune": "GOUHELANS", "libell_d_acheminement": "GOUHELANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25279"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13298398214ba4be15ab6b1e91e700843477e7ac", "fields": {"nom_de_la_commune": "GOUX SOUS LANDET", "libell_d_acheminement": "GOUX SOUS LANDET", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25283"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59b69d173494932f28e441e1c07a690e93ac179b", "fields": {"code_postal": "25390", "code_commune_insee": "25288", "libell_d_acheminement": "FOURNETS LUISANS", "ligne_5": "LUISANS", "nom_de_la_commune": "FOURNETS LUISANS", "coordonnees_gps": [47.1343270529, 6.53620847764]}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6c998c4aac21f88af2d627a714fa2da4842bb2", "fields": {"nom_de_la_commune": "LA GRANGE", "libell_d_acheminement": "LA GRANGE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25290"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebce36314124c315bcd5eacaefa57ced687a7fd9", "fields": {"nom_de_la_commune": "GRANGES NARBOZ", "libell_d_acheminement": "GRANGES NARBOZ", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25293"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35c44c191145c5d613fc80acf3505fc46f46a10", "fields": {"nom_de_la_commune": "LE GRATTERIS", "libell_d_acheminement": "LE GRATTERIS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25297"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e63ebd00ed3fb23f584e48f826e8e801f84499", "fields": {"nom_de_la_commune": "GUILLON LES BAINS", "libell_d_acheminement": "GUILLON LES BAINS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25299"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a1742798906c93b6ef28b04ce06e1fc3938ccf", "fields": {"nom_de_la_commune": "HAUTERIVE LA FRESSE", "libell_d_acheminement": "HAUTERIVE LA FRESSE", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25303"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de5fcd8d5d7d5b4dd534df82b5ea0435415bccd", "fields": {"nom_de_la_commune": "HERIMONCOURT", "libell_d_acheminement": "HERIMONCOURT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25304"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c78150fc17175b63da210288bb5755cddae77f6", "fields": {"nom_de_la_commune": "L HOPITAL DU GROSBOIS", "libell_d_acheminement": "L HOPITAL DU GROSBOIS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25305"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c95c1b632b90de7529054f14e5a5b7c2defae954", "fields": {"nom_de_la_commune": "L HOPITAL ST LIEFFROY", "libell_d_acheminement": "L HOPITAL ST LIEFFROY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25306"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f832779adeb7a6ee31c47a93a7b86fe642521b8d", "fields": {"nom_de_la_commune": "HYEVRE MAGNY", "libell_d_acheminement": "HYEVRE MAGNY", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25312"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ab1549ae36468abdad80de3b730fc6f58fda50", "fields": {"nom_de_la_commune": "BREBOTTE", "libell_d_acheminement": "BREBOTTE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90018"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e178b17502e5ef5c505fa9785427aeae9155b18", "fields": {"nom_de_la_commune": "CHATENOIS LES FORGES", "libell_d_acheminement": "CHATENOIS LES FORGES", "code_postal": "90700", "coordonnees_gps": [47.558771629, 6.83344122988], "code_commune_insee": "90022"}, "geometry": {"type": "Point", "coordinates": [6.83344122988, 47.558771629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519913ee1b29c74b36cbf4547b330336f9a3cf4b", "fields": {"nom_de_la_commune": "CRAVANCHE", "libell_d_acheminement": "CRAVANCHE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90029"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c4ae304387b3d3b8b79eaec0d4cb488cca58d9", "fields": {"nom_de_la_commune": "CROIX", "libell_d_acheminement": "CROIX", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90030"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da2d7eec17fe29b6ac97cb2ca287ef0db130537", "fields": {"nom_de_la_commune": "CUNELIERES", "libell_d_acheminement": "CUNELIERES", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90031"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1ce91cfa7081526c80e2db44eac08b246787c7", "fields": {"nom_de_la_commune": "DANJOUTIN", "libell_d_acheminement": "DANJOUTIN", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90032"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec877de28f3817bcf3e0481b17380af5a0453b63", "fields": {"nom_de_la_commune": "DELLE", "libell_d_acheminement": "DELLE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90033"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc06722da4cb8e9cb1394dd04d0f62ca22155dc", "fields": {"nom_de_la_commune": "DENNEY", "libell_d_acheminement": "DENNEY", "code_postal": "90160", "coordonnees_gps": [47.6449615689, 6.92104396254], "code_commune_insee": "90034"}, "geometry": {"type": "Point", "coordinates": [6.92104396254, 47.6449615689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0059d1521a391a456d1aea7c0d72aa15abe3f1e", "fields": {"nom_de_la_commune": "EVETTE SALBERT", "libell_d_acheminement": "EVETTE SALBERT", "code_postal": "90350", "coordonnees_gps": [47.6724055836, 6.79689520982], "code_commune_insee": "90042"}, "geometry": {"type": "Point", "coordinates": [6.79689520982, 47.6724055836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3291d607c9f3d5bc777d2ce9fd3b54bc92a7c52d", "fields": {"nom_de_la_commune": "FELON", "libell_d_acheminement": "FELON", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90044"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18a2e117dea385c0b3c8714de532244abb2bced", "fields": {"nom_de_la_commune": "FONTENELLE", "libell_d_acheminement": "FONTENELLE", "code_postal": "90340", "coordonnees_gps": [47.6213054353, 6.94143825655], "code_commune_insee": "90048"}, "geometry": {"type": "Point", "coordinates": [6.94143825655, 47.6213054353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e4ae1fccd20f00aa10e634aff7e7402c644948", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS ROUGEMONT", "libell_d_acheminement": "LACHAPELLE SOUS ROUGEMONT", "code_postal": "90360", "coordonnees_gps": [47.7176330768, 7.01311046997], "code_commune_insee": "90058"}, "geometry": {"type": "Point", "coordinates": [7.01311046997, 47.7176330768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a3d511c3ee52fbedf7d120351f0f217bd5ce18", "fields": {"nom_de_la_commune": "MONTREUX CHATEAU", "libell_d_acheminement": "MONTREUX CHATEAU", "code_postal": "90130", "coordonnees_gps": [47.605567769, 6.99078617872], "code_commune_insee": "90071"}, "geometry": {"type": "Point", "coordinates": [6.99078617872, 47.605567769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4faef3062367e6136f1e8edf966fe43664b74d", "fields": {"nom_de_la_commune": "PETITEFONTAINE", "libell_d_acheminement": "PETITEFONTAINE", "code_postal": "90360", "coordonnees_gps": [47.7176330768, 7.01311046997], "code_commune_insee": "90078"}, "geometry": {"type": "Point", "coordinates": [7.01311046997, 47.7176330768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ad7f5f91adc6e1a1c3069d003197bad1c47194", "fields": {"nom_de_la_commune": "REPPE", "libell_d_acheminement": "REPPE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90084"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f761de2a3f62a5a5f12afdd22058b8fd0286d5db", "fields": {"nom_de_la_commune": "ROMAGNY SOUS ROUGEMONT", "libell_d_acheminement": "ROMAGNY SOUS ROUGEMONT", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90086"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec5db504e1af7de0259f7b9f7438447b6eb78e83", "fields": {"nom_de_la_commune": "ROUGEGOUTTE", "libell_d_acheminement": "ROUGEGOUTTE", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90088"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce99326439c70ae443c72aa7a3b510e8546de86a", "fields": {"nom_de_la_commune": "VALDOIE", "libell_d_acheminement": "VALDOIE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90099"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c902d5df3ce96f6208bb1b89c979e4d6856000f", "fields": {"nom_de_la_commune": "ARPAJON", "libell_d_acheminement": "ARPAJON", "code_postal": "91290", "coordonnees_gps": [48.5844568763, 2.25774325874], "code_commune_insee": "91021"}, "geometry": {"type": "Point", "coordinates": [2.25774325874, 48.5844568763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e948f94e49947f780be9003555bb00ee33d63f51", "fields": {"nom_de_la_commune": "BOIS HERPIN", "libell_d_acheminement": "BOIS HERPIN", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91075"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b99e6205b02790d79cfe4b1d70416a0d61fbb4", "fields": {"nom_de_la_commune": "BOISSY LE CUTTE", "libell_d_acheminement": "BOISSY LE CUTTE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91080"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e04b350f2f6fa16a53ef8d807b4c9a3c487d39", "fields": {"nom_de_la_commune": "BONDOUFLE", "libell_d_acheminement": "BONDOUFLE", "code_postal": "91070", "coordonnees_gps": [48.6140963234, 2.38013275618], "code_commune_insee": "91086"}, "geometry": {"type": "Point", "coordinates": [2.38013275618, 48.6140963234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87da1e84f858008de161ae743128ede1fc71700e", "fields": {"nom_de_la_commune": "BOUSSY ST ANTOINE", "libell_d_acheminement": "BOUSSY ST ANTOINE", "code_postal": "91800", "coordonnees_gps": [48.6944519423, 2.51253975836], "code_commune_insee": "91097"}, "geometry": {"type": "Point", "coordinates": [2.51253975836, 48.6944519423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc5a8404c954437713fbcf0fe86fac28bad3742", "fields": {"nom_de_la_commune": "BRIERES LES SCELLES", "libell_d_acheminement": "BRIERES LES SCELLES", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91109"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ae350fd2c2157c7c862ee84dc31e36b8fce637", "fields": {"nom_de_la_commune": "BURES SUR YVETTE", "libell_d_acheminement": "BURES SUR YVETTE", "code_postal": "91440", "coordonnees_gps": [48.6930082592, 2.15803236368], "code_commune_insee": "91122"}, "geometry": {"type": "Point", "coordinates": [2.15803236368, 48.6930082592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f76b573c518274dede05f652590e9da301f50a2", "fields": {"code_postal": "91440", "code_commune_insee": "91122", "libell_d_acheminement": "BURES SUR YVETTE", "ligne_5": "MONTJAY", "nom_de_la_commune": "BURES SUR YVETTE", "coordonnees_gps": [48.6930082592, 2.15803236368]}, "geometry": {"type": "Point", "coordinates": [2.15803236368, 48.6930082592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39eeaa0b1f0bb5ff262bf47cf17df57520eddf0", "fields": {"nom_de_la_commune": "CHILLY MAZARIN", "libell_d_acheminement": "CHILLY MAZARIN", "code_postal": "91380", "coordonnees_gps": [48.7073972153, 2.311761729], "code_commune_insee": "91161"}, "geometry": {"type": "Point", "coordinates": [2.311761729, 48.7073972153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982ab5abf6a08fc9d996c9e60ff512ebf5c76424", "fields": {"nom_de_la_commune": "CORBEIL ESSONNES", "libell_d_acheminement": "CORBEIL ESSONNES", "code_postal": "91100", "coordonnees_gps": [48.598553411, 2.4642298382], "code_commune_insee": "91174"}, "geometry": {"type": "Point", "coordinates": [2.4642298382, 48.598553411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20b6f8fd8bc5d44fd7fc1937ce2f045189e32878", "fields": {"code_postal": "91830", "code_commune_insee": "91179", "libell_d_acheminement": "LE COUDRAY MONTCEAUX", "ligne_5": "LE PLESSIS CHENET", "nom_de_la_commune": "LE COUDRAY MONTCEAUX", "coordonnees_gps": [48.5482208788, 2.48758633681]}, "geometry": {"type": "Point", "coordinates": [2.48758633681, 48.5482208788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12414cf987c79047822e31a8a33c0cf8968a685c", "fields": {"nom_de_la_commune": "COURDIMANCHE SUR ESSONNE", "libell_d_acheminement": "COURDIMANCHE SUR ESSONNE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91184"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dc5de8f1ac2ab66c3effca51a5e82e233bd37c", "fields": {"nom_de_la_commune": "DANNEMOIS", "libell_d_acheminement": "DANNEMOIS", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91195"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf53911322f79203514b8d775f2e807c815fe97", "fields": {"nom_de_la_commune": "DRAVEIL", "libell_d_acheminement": "DRAVEIL", "code_postal": "91210", "coordonnees_gps": [48.677993062, 2.42118499004], "code_commune_insee": "91201"}, "geometry": {"type": "Point", "coordinates": [2.42118499004, 48.677993062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2de554a95405bde81db6ffecdc9237eba66da1", "fields": {"code_postal": "91210", "code_commune_insee": "91201", "libell_d_acheminement": "DRAVEIL", "ligne_5": "MAINVILLE", "nom_de_la_commune": "DRAVEIL", "coordonnees_gps": [48.677993062, 2.42118499004]}, "geometry": {"type": "Point", "coordinates": [2.42118499004, 48.677993062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b535e25f8c339f44435ec801d89c82f9211c0cb", "fields": {"nom_de_la_commune": "ECHARCON", "libell_d_acheminement": "ECHARCON", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91204"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe33067d1e7ae87f98eec1d471f4d716dae4b96a", "fields": {"nom_de_la_commune": "FONTENAY LE VICOMTE", "libell_d_acheminement": "FONTENAY LE VICOMTE", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91244"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c8a84c6030ec43757014ec4eee1db20844b57f", "fields": {"nom_de_la_commune": "ITTEVILLE", "libell_d_acheminement": "ITTEVILLE", "code_postal": "91760", "coordonnees_gps": [48.5146150874, 2.34402793795], "code_commune_insee": "91315"}, "geometry": {"type": "Point", "coordinates": [2.34402793795, 48.5146150874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf02b22fc880beeae2057286972d06305fb7f2a1", "fields": {"nom_de_la_commune": "JANVRY", "libell_d_acheminement": "JANVRY", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91319"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd55d617ee26e7bdd54b1cab3f84092262c5013", "fields": {"nom_de_la_commune": "LIMOURS", "libell_d_acheminement": "LIMOURS", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91338"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541d4d696e258a1cee66e2532a6bd8b8ec6f37b4", "fields": {"code_postal": "91160", "code_commune_insee": "91345", "libell_d_acheminement": "LONGJUMEAU", "ligne_5": "BALIZY", "nom_de_la_commune": "LONGJUMEAU", "coordonnees_gps": [48.6879154099, 2.28155441875]}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2e3ecb00c7f3971ba312d401429b5fe634e6e6", "fields": {"nom_de_la_commune": "MEREVILLE", "libell_d_acheminement": "MEREVILLE", "code_postal": "91660", "coordonnees_gps": [48.3164697421, 2.08354530112], "code_commune_insee": "91390"}, "geometry": {"type": "Point", "coordinates": [2.08354530112, 48.3164697421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f910a8d0954fbe3f546cfd00bafb70e98f99ff2", "fields": {"nom_de_la_commune": "MORIGNY CHAMPIGNY", "libell_d_acheminement": "MORIGNY CHAMPIGNY", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91433"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c198405a17fdc152a305b4a5f63147f1ee35c19", "fields": {"nom_de_la_commune": "OLLAINVILLE", "libell_d_acheminement": "OLLAINVILLE", "code_postal": "91340", "coordonnees_gps": [48.6059418434, 2.21857687683], "code_commune_insee": "91461"}, "geometry": {"type": "Point", "coordinates": [2.21857687683, 48.6059418434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a51e7282a4966c1831eacae50b9898b7e519025d", "fields": {"nom_de_la_commune": "ORVEAU", "libell_d_acheminement": "ORVEAU", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91473"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2587ef5c8fbde8862ab833d0b8b847f6c43a12b", "fields": {"code_postal": "94390", "code_commune_insee": "91479", "libell_d_acheminement": "PARAY VIEILLE POSTE", "ligne_5": "ORLY AEROGARE", "nom_de_la_commune": "PARAY VIEILLE POSTE", "coordonnees_gps": [48.7243019764, 2.36018622898]}, "geometry": {"type": "Point", "coordinates": [2.36018622898, 48.7243019764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e0583ce39fcfe6bc0cc44d03dfc9551fe39f11", "fields": {"nom_de_la_commune": "PRUNAY SUR ESSONNE", "libell_d_acheminement": "PRUNAY SUR ESSONNE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91507"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da542b07c7611f5c77479862cd553d06d6a0eb4", "fields": {"nom_de_la_commune": "PUISELET LE MARAIS", "libell_d_acheminement": "PUISELET LE MARAIS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91508"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bc37ca7b75bfa3dfa53d54176411f999389a54", "fields": {"nom_de_la_commune": "RIS ORANGIS", "libell_d_acheminement": "RIS ORANGIS", "code_postal": "91130", "coordonnees_gps": [48.645695033, 2.40878195835], "code_commune_insee": "91521"}, "geometry": {"type": "Point", "coordinates": [2.40878195835, 48.645695033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ab753fb268dccaec352937a2958f856d701982", "fields": {"nom_de_la_commune": "ROINVILLE", "libell_d_acheminement": "ROINVILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91525"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fbb61e25daeb86fe43ff2eccd16df458195fca", "fields": {"code_postal": "91190", "code_commune_insee": "91538", "libell_d_acheminement": "ST AUBIN", "ligne_5": "VILLERAS", "nom_de_la_commune": "ST AUBIN", "coordonnees_gps": [48.709665031, 2.12766544978]}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4360944b9974f031d19431204c4f3893ea8488", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "91780", "coordonnees_gps": [48.4201119171, 2.04444826512], "code_commune_insee": "91556"}, "geometry": {"type": "Point", "coordinates": [2.04444826512, 48.4201119171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "630821d2690a601b0407ae48a0d370a98a257dce", "fields": {"nom_de_la_commune": "ST JEAN DE BEAUREGARD", "libell_d_acheminement": "ST JEAN DE BEAUREGARD", "code_postal": "91940", "coordonnees_gps": [48.6746009432, 2.16779886217], "code_commune_insee": "91560"}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f5dbe57ae1049f6a43e50ae0b42958e7ea5cd4", "fields": {"nom_de_la_commune": "ST PIERRE DU PERRAY", "libell_d_acheminement": "ST PIERRE DU PERRAY", "code_postal": "91280", "coordonnees_gps": [48.6057166854, 2.51721713178], "code_commune_insee": "91573"}, "geometry": {"type": "Point", "coordinates": [2.51721713178, 48.6057166854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662a02b32e7977e3a8534bcb70f6db65b0678cec", "fields": {"nom_de_la_commune": "CONGERVILLE THIONVILLE", "libell_d_acheminement": "CONGERVILLE THIONVILLE", "code_postal": "91740", "coordonnees_gps": [48.3700823354, 2.00542911555], "code_commune_insee": "91613"}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a947a0ffd3cd8d1c09ece8198be37d0108c64d", "fields": {"nom_de_la_commune": "LE VAL ST GERMAIN", "libell_d_acheminement": "LE VAL ST GERMAIN", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91630"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f233448e01f4bd1b439925a0737de8a8c7902af", "fields": {"nom_de_la_commune": "VAYRES SUR ESSONNE", "libell_d_acheminement": "VAYRES SUR ESSONNE", "code_postal": "91820", "coordonnees_gps": [48.4347578682, 2.37891668976], "code_commune_insee": "91639"}, "geometry": {"type": "Point", "coordinates": [2.37891668976, 48.4347578682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30902d3e6a610051bcbf4ecfb4155280df778916", "fields": {"nom_de_la_commune": "VILLABE", "libell_d_acheminement": "VILLABE", "code_postal": "91100", "coordonnees_gps": [48.598553411, 2.4642298382], "code_commune_insee": "91659"}, "geometry": {"type": "Point", "coordinates": [2.4642298382, 48.598553411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa1054642a48885da72d88249571f3080e1912d5", "fields": {"nom_de_la_commune": "YERRES", "libell_d_acheminement": "YERRES", "code_postal": "91330", "coordonnees_gps": [48.7164530971, 2.4933117108], "code_commune_insee": "91691"}, "geometry": {"type": "Point", "coordinates": [2.4933117108, 48.7164530971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b8a598f3187ce2160e8f4af118df021c046b02", "fields": {"nom_de_la_commune": "CLAMART", "libell_d_acheminement": "CLAMART", "code_postal": "92140", "coordonnees_gps": [48.7967176819, 2.25385173895], "code_commune_insee": "92023"}, "geometry": {"type": "Point", "coordinates": [2.25385173895, 48.7967176819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d09b3f5c221dc74b31f13f12790d485d73055ff9", "fields": {"nom_de_la_commune": "SERMAGES", "libell_d_acheminement": "SERMAGES", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58277"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9536ee073a3255c64938fa1f85bc229917f552b1", "fields": {"nom_de_la_commune": "SUILLY LA TOUR", "libell_d_acheminement": "SUILLY LA TOUR", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58281"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2527bbd6fee981ba2368f1fb73147df18b31d2", "fields": {"nom_de_la_commune": "TAZILLY", "libell_d_acheminement": "TAZILLY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58287"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a34760bd43ac22bf204d6c2f9d48330e4d2e4f", "fields": {"nom_de_la_commune": "TROIS VEVRES", "libell_d_acheminement": "TROIS VEVRES", "code_postal": "58260", "coordonnees_gps": [46.9023530657, 3.46382245029], "code_commune_insee": "58297"}, "geometry": {"type": "Point", "coordinates": [3.46382245029, 46.9023530657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65acf11b421d04719f698e1676eda487df20df12", "fields": {"nom_de_la_commune": "TRUCY L ORGUEILLEUX", "libell_d_acheminement": "TRUCY L ORGUEILLEUX", "code_postal": "58460", "coordonnees_gps": [47.436143333, 3.39666081915], "code_commune_insee": "58299"}, "geometry": {"type": "Point", "coordinates": [3.39666081915, 47.436143333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ba152ab177df29eace1ca01f3616a891013eda", "fields": {"nom_de_la_commune": "VANDENESSE", "libell_d_acheminement": "VANDENESSE", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58301"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7506ff4f748a2058bb876300425f49ea1f623c7b", "fields": {"nom_de_la_commune": "VAUCLAIX", "libell_d_acheminement": "VAUCLAIX", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58305"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c133158395f4e7ec176b88cfc4d8f8a2dc17c97", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58310"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402b6d4e9a332855a7820f64162c781c73b36026", "fields": {"nom_de_la_commune": "VILLIERS SUR YONNE", "libell_d_acheminement": "VILLIERS SUR YONNE", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58312"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722eddfb3ca32cb022c594dcbdc2d4ff0157f41b", "fields": {"nom_de_la_commune": "VITRY LACHE", "libell_d_acheminement": "VITRY LACHE", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58313"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a855a4f0fb9a0f4f5b48ebccbe2737abb38ae51", "fields": {"nom_de_la_commune": "ANICHE", "libell_d_acheminement": "ANICHE", "code_postal": "59580", "coordonnees_gps": [50.322452087, 3.25533634496], "code_commune_insee": "59008"}, "geometry": {"type": "Point", "coordinates": [3.25533634496, 50.322452087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1f9c9443b6055d73d844d81121df71cf68b05e", "fields": {"nom_de_la_commune": "VILLENEUVE D ASCQ", "libell_d_acheminement": "VILLENEUVE D ASCQ", "code_postal": "59650", "coordonnees_gps": [50.6323253006, 3.15291340611], "code_commune_insee": "59009"}, "geometry": {"type": "Point", "coordinates": [3.15291340611, 50.6323253006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09cea3760fd9bc03af1229d92b8c04a4e90ff65", "fields": {"nom_de_la_commune": "ANZIN", "libell_d_acheminement": "ANZIN", "code_postal": "59410", "coordonnees_gps": [50.3751838237, 3.51087057943], "code_commune_insee": "59014"}, "geometry": {"type": "Point", "coordinates": [3.51087057943, 50.3751838237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "966745c54e036b16ae5e72bed00525bc1064931f", "fields": {"nom_de_la_commune": "ARMBOUTS CAPPEL", "libell_d_acheminement": "ARMBOUTS CAPPEL", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59016"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8733aed880b0e3194aef473b1aa7e2ab6af0066a", "fields": {"nom_de_la_commune": "AUBENCHEUL AU BAC", "libell_d_acheminement": "AUBENCHEUL AU BAC", "code_postal": "59265", "coordonnees_gps": [50.2606708685, 3.16534687395], "code_commune_insee": "59023"}, "geometry": {"type": "Point", "coordinates": [3.16534687395, 50.2606708685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c63bde570cb02e86b51817ea1edf5c105abfb23", "fields": {"nom_de_la_commune": "AUBERCHICOURT", "libell_d_acheminement": "AUBERCHICOURT", "code_postal": "59165", "coordonnees_gps": [50.330006531, 3.22790879686], "code_commune_insee": "59024"}, "geometry": {"type": "Point", "coordinates": [3.22790879686, 50.330006531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3b542d9184fc87e804e59eae41aefb6dc6b6f6", "fields": {"nom_de_la_commune": "AULNOYE AYMERIES", "libell_d_acheminement": "AULNOYE AYMERIES", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59033"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4cd97db62c8b8bc78f9922a1deb5267772ad97", "fields": {"nom_de_la_commune": "AWOINGT", "libell_d_acheminement": "AWOINGT", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59039"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a6e7389b367f0dfb9c3cdcb23ff9721126c7024", "fields": {"nom_de_la_commune": "BANTEUX", "libell_d_acheminement": "BANTEUX", "code_postal": "59266", "coordonnees_gps": [50.0472384043, 3.20499874057], "code_commune_insee": "59047"}, "geometry": {"type": "Point", "coordinates": [3.20499874057, 50.0472384043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70a5d91757ad23a4843c5cd31402e7b747e1e13", "fields": {"nom_de_la_commune": "BEAUCAMPS LIGNY", "libell_d_acheminement": "BEAUCAMPS LIGNY", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59056"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d53d9b0a1c034c2e3a5bffae9b634d5d079c48e3", "fields": {"nom_de_la_commune": "BEAUMONT EN CAMBRESIS", "libell_d_acheminement": "BEAUMONT EN CAMBRESIS", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59059"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ece71cf04caa686902d1a543b2c5643f8adac89", "fields": {"nom_de_la_commune": "BEAURAIN", "libell_d_acheminement": "BEAURAIN", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59060"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b358336526ae2bcec29bc19b53f424aaa224db", "fields": {"nom_de_la_commune": "BEAUREPAIRE SUR SAMBRE", "libell_d_acheminement": "BEAUREPAIRE SUR SAMBRE", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59061"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867bb20668b4eaddb9d335935750b4b265401f13", "fields": {"nom_de_la_commune": "BERELLES", "libell_d_acheminement": "BERELLES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59066"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c47ae09de20386a74c5873ed84e8ef791d57578", "fields": {"nom_de_la_commune": "BERMERAIN", "libell_d_acheminement": "BERMERAIN", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59069"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16344a14a37388dd0ee75129ebd9eaa873de20f7", "fields": {"nom_de_la_commune": "BERMERIES", "libell_d_acheminement": "BERMERIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59070"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6709d88d3d1292f47018d47e7afb5791c0c45cb4", "fields": {"nom_de_la_commune": "BEUVRY LA FORET", "libell_d_acheminement": "BEUVRY LA FORET", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59080"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4698eadddc481862fb56f76d9c54d11c84a115", "fields": {"nom_de_la_commune": "BRUILLE LEZ MARCHIENNES", "libell_d_acheminement": "BRUILLE LEZ MARCHIENNES", "code_postal": "59490", "coordonnees_gps": [50.3590143857, 3.26743195481], "code_commune_insee": "59113"}, "geometry": {"type": "Point", "coordinates": [3.26743195481, 50.3590143857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b12556f0965a25e1f23e618e5e71a42a4130990", "fields": {"nom_de_la_commune": "BRUILLE ST AMAND", "libell_d_acheminement": "BRUILLE ST AMAND", "code_postal": "59199", "coordonnees_gps": [50.4740272864, 3.52059057701], "code_commune_insee": "59114"}, "geometry": {"type": "Point", "coordinates": [3.52059057701, 50.4740272864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed554f95793475a279c2663529b367436983815d", "fields": {"nom_de_la_commune": "CAMPHIN EN CAREMBAULT", "libell_d_acheminement": "CAMPHIN EN CAREMBAULT", "code_postal": "59133", "coordonnees_gps": [50.5122341221, 3.00761898471], "code_commune_insee": "59123"}, "geometry": {"type": "Point", "coordinates": [3.00761898471, 50.5122341221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328b262ade2a6841d8118457f4256342cc3a6d05", "fields": {"nom_de_la_commune": "CANTAING SUR ESCAUT", "libell_d_acheminement": "CANTAING SUR ESCAUT", "code_postal": "59267", "coordonnees_gps": [50.14197399, 3.16014006865], "code_commune_insee": "59125"}, "geometry": {"type": "Point", "coordinates": [3.16014006865, 50.14197399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da3a5ff7344d0b8b852db513a9d0c3bd66f7b27", "fields": {"nom_de_la_commune": "CAPPELLE LA GRANDE", "libell_d_acheminement": "CAPPELLE LA GRANDE", "code_postal": "59180", "coordonnees_gps": [50.9961987515, 2.36937134629], "code_commune_insee": "59131"}, "geometry": {"type": "Point", "coordinates": [2.36937134629, 50.9961987515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2481975200b20e5fef9000a96a95f79ba55ffdfa", "fields": {"nom_de_la_commune": "CATILLON SUR SAMBRE", "libell_d_acheminement": "CATILLON SUR SAMBRE", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59137"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285dd68d366f645b7f226c68d2602c3fe2a716de", "fields": {"code_postal": "59540", "code_commune_insee": "59139", "libell_d_acheminement": "CAUDRY", "ligne_5": "AUDENCOURT", "nom_de_la_commune": "CAUDRY", "coordonnees_gps": [50.1250979725, 3.43223199835]}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386430e66a553615b4d11419275eea73de076232", "fields": {"nom_de_la_commune": "COBRIEUX", "libell_d_acheminement": "COBRIEUX", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59150"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31346b1e6defa019ffebf1153cb289ff60aa44b3", "fields": {"nom_de_la_commune": "COUDEKERQUE BRANCHE", "libell_d_acheminement": "COUDEKERQUE BRANCHE", "code_postal": "59210", "coordonnees_gps": [51.0182528801, 2.39561804985], "code_commune_insee": "59155"}, "geometry": {"type": "Point", "coordinates": [2.39561804985, 51.0182528801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5eaf3dc9e4bafcadfad0ad4a07cd4f30cdbdcc4", "fields": {"nom_de_la_commune": "CREVECOEUR SUR L ESCAUT", "libell_d_acheminement": "CREVECOEUR SUR L ESCAUT", "code_postal": "59258", "coordonnees_gps": [50.0777482818, 3.25663233924], "code_commune_insee": "59161"}, "geometry": {"type": "Point", "coordinates": [3.25663233924, 50.0777482818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af929bcf85307943b82d3012635106106bfedc60", "fields": {"nom_de_la_commune": "CROCHTE", "libell_d_acheminement": "CROCHTE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59162"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad5576f29e4f374ece6d7e030d3dca2529136bb", "fields": {"nom_de_la_commune": "CUINCY", "libell_d_acheminement": "CUINCY", "code_postal": "59553", "coordonnees_gps": [50.3821215945, 3.02404153046], "code_commune_insee": "59165"}, "geometry": {"type": "Point", "coordinates": [3.02404153046, 50.3821215945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357b55beb1ccf816b551594bc085b5ffa54fbce0", "fields": {"nom_de_la_commune": "DEHERIES", "libell_d_acheminement": "DEHERIES", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59171"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c16b18f6a6b78a5bfb91f6fce8ab58d0bc8335", "fields": {"code_postal": "59500", "code_commune_insee": "59178", "libell_d_acheminement": "DOUAI", "ligne_5": "FRAIS MARAIS", "nom_de_la_commune": "DOUAI", "coordonnees_gps": [50.382032933, 3.09129729986]}, "geometry": {"type": "Point", "coordinates": [3.09129729986, 50.382032933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29478816f01042ee60254bd6aa681b640398905c", "fields": {"nom_de_la_commune": "LE DOULIEU", "libell_d_acheminement": "LE DOULIEU", "code_postal": "59940", "coordonnees_gps": [50.6663981785, 2.70159427049], "code_commune_insee": "59180"}, "geometry": {"type": "Point", "coordinates": [2.70159427049, 50.6663981785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62bd41fd196123f93019dc84fde155807e4857b", "fields": {"nom_de_la_commune": "RANTZWILLER", "libell_d_acheminement": "RANTZWILLER", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68265"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15622baadc2fcc407c2edd6211ed33e48d14fc30", "fields": {"nom_de_la_commune": "REININGUE", "libell_d_acheminement": "REININGUE", "code_postal": "68950", "coordonnees_gps": [47.7551167473, 7.22009499349], "code_commune_insee": "68267"}, "geometry": {"type": "Point", "coordinates": [7.22009499349, 47.7551167473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4296b11df6c58911bc64d6320740ee5cda730c23", "fields": {"nom_de_la_commune": "RIMBACH PRES MASEVAUX", "libell_d_acheminement": "RIMBACH PRES MASEVAUX", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68275"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2df1cf0e9f41a2ffc3c1b9a01fd2766bb55cca1", "fields": {"nom_de_la_commune": "RIXHEIM", "libell_d_acheminement": "RIXHEIM", "code_postal": "68170", "coordonnees_gps": [47.7496210375, 7.40714177659], "code_commune_insee": "68278"}, "geometry": {"type": "Point", "coordinates": [7.40714177659, 47.7496210375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a580bdaf5cf0754a11cefdaafc5a000dbb83c20", "fields": {"nom_de_la_commune": "ROPPENTZWILLER", "libell_d_acheminement": "ROPPENTZWILLER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68284"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e0abe8a8ceca98364974466084537168bb3f5c4", "fields": {"nom_de_la_commune": "STE MARIE AUX MINES", "libell_d_acheminement": "STE MARIE AUX MINES", "code_postal": "68160", "coordonnees_gps": [48.2436580194, 7.18389066901], "code_commune_insee": "68298"}, "geometry": {"type": "Point", "coordinates": [7.18389066901, 48.2436580194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c31e28f30db1ed4d3300aa849c99fbc783b73e", "fields": {"nom_de_la_commune": "SEPPOIS LE BAS", "libell_d_acheminement": "SEPPOIS LE BAS", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68305"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84409de07ab2fd0e1519fe6490f01706a004263b", "fields": {"nom_de_la_commune": "SOULTZMATT", "libell_d_acheminement": "SOULTZMATT", "code_postal": "68570", "coordonnees_gps": [47.9749178852, 7.21383132729], "code_commune_insee": "68318"}, "geometry": {"type": "Point", "coordinates": [7.21383132729, 47.9749178852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ca96a0d3705deb7f9b3120a9f20735a187e561a", "fields": {"nom_de_la_commune": "STEINBRUNN LE BAS", "libell_d_acheminement": "STEINBRUNN LE BAS", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68323"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17c32fe4c4c1d6e2224c64eff127ade0b6af6cd0", "fields": {"nom_de_la_commune": "STEINSOULTZ", "libell_d_acheminement": "STEINSOULTZ", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68325"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a72c15a3e68d1f6e920abf4b5804da69069271", "fields": {"nom_de_la_commune": "STORCKENSOHN", "libell_d_acheminement": "STORCKENSOHN", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68328"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea314f202439c6963a1bb6cc39a8e650bb0cdfc", "fields": {"nom_de_la_commune": "STOSSWIHR", "libell_d_acheminement": "STOSSWIHR", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68329"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d625f5f88302387b2bbfa937d8041c742ea8fc75", "fields": {"nom_de_la_commune": "TURCKHEIM", "libell_d_acheminement": "TURCKHEIM", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68338"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be551aeb90288b589a94194f0efca11cc5bdd0e9", "fields": {"nom_de_la_commune": "UEBERSTRASS", "libell_d_acheminement": "UEBERSTRASS", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68340"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a487bb46c6d6a31edc9f2eebf2cc833bf9c10c", "fields": {"nom_de_la_commune": "WAHLBACH", "libell_d_acheminement": "WAHLBACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68353"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd89d12bd4f6ff24ac040e3c82c9decb7cc6d548", "fields": {"nom_de_la_commune": "WALDIGHOFEN", "libell_d_acheminement": "WALDIGHOFEN", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68355"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab5df931587a4e11007564f367ef3db2e09f60d", "fields": {"nom_de_la_commune": "WALTENHEIM", "libell_d_acheminement": "WALTENHEIM", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68357"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2f6fc40cdd9a00db6fc21a98d336b4dcc47fa0", "fields": {"nom_de_la_commune": "WEGSCHEID", "libell_d_acheminement": "WEGSCHEID", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68361"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbaa0e4c118527b3e7d89c7af6196e69f1743f31", "fields": {"nom_de_la_commune": "WESTHALTEN", "libell_d_acheminement": "WESTHALTEN", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68364"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0df18a59d573791eb3e49302e540199eae8ec45", "fields": {"nom_de_la_commune": "WICKERSCHWIHR", "libell_d_acheminement": "WICKERSCHWIHR", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68366"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84da476674e0659105d562b78dc78ce5a307fa6a", "fields": {"nom_de_la_commune": "WIDENSOLEN", "libell_d_acheminement": "WIDENSOLEN", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68367"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e1b9e525c10ab4fc959e795fa4205897ef9cb6", "fields": {"nom_de_la_commune": "WILDENSTEIN", "libell_d_acheminement": "WILDENSTEIN", "code_postal": "68820", "coordonnees_gps": [47.9620965361, 6.96343945607], "code_commune_insee": "68370"}, "geometry": {"type": "Point", "coordinates": [6.96343945607, 47.9620965361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7224e868a1941cfdb2f080d2cbbb5f115cde670", "fields": {"nom_de_la_commune": "WILLER", "libell_d_acheminement": "WILLER", "code_postal": "68960", "coordonnees_gps": [47.5717118449, 7.32148674865], "code_commune_insee": "68371"}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b44f8214ee7c3debe504b3f055ebe473df84ab", "fields": {"nom_de_la_commune": "AFFOUX", "libell_d_acheminement": "AFFOUX", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69001"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dbfd18a9022c8c76c8400c2535e48fbac59546", "fields": {"nom_de_la_commune": "LES ARDILLATS", "libell_d_acheminement": "LES ARDILLATS", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69012"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0527af255581178101c40c4f0030a4e27fd9dd9f", "fields": {"nom_de_la_commune": "BAGNOLS", "libell_d_acheminement": "BAGNOLS", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69017"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f2e183a7733d6700b9f4b8216154523e86f325", "fields": {"code_postal": "69430", "code_commune_insee": "69018", "libell_d_acheminement": "BEAUJEU", "ligne_5": "LE MOLARD", "nom_de_la_commune": "BEAUJEU", "coordonnees_gps": [46.1511962743, 4.57003815415]}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff81bc735084e3521d685dd7f4c30849487d549", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69026"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb1339c8588b5adcf47d063b8378d1e0d8604bf", "fields": {"nom_de_la_commune": "BRINDAS", "libell_d_acheminement": "BRINDAS", "code_postal": "69126", "coordonnees_gps": [45.7205048437, 4.70327696534], "code_commune_insee": "69028"}, "geometry": {"type": "Point", "coordinates": [4.70327696534, 45.7205048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa6dab29f6896f2f69f3b3fb62162168b91e3b7", "fields": {"nom_de_la_commune": "BRON", "libell_d_acheminement": "BRON", "code_postal": "69500", "coordonnees_gps": [45.7346457421, 4.91141333381], "code_commune_insee": "69029"}, "geometry": {"type": "Point", "coordinates": [4.91141333381, 45.7346457421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e684f50d69f98e7686a995cb918ceef04012f195", "fields": {"nom_de_la_commune": "BRUSSIEU", "libell_d_acheminement": "BRUSSIEU", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69031"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bdce0046bfd04d11b58789eb76975582c440f7", "fields": {"nom_de_la_commune": "BULLY", "libell_d_acheminement": "BULLY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69032"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4010066a8688f7c1d0afced28ca5f43f57dd464b", "fields": {"nom_de_la_commune": "CAILLOUX SUR FONTAINES", "libell_d_acheminement": "CAILLOUX SUR FONTAINES", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69033"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3394e012278a9bfc16f72a41f31c3ed58607c9d1", "fields": {"nom_de_la_commune": "CENVES", "libell_d_acheminement": "CENVES", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69035"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9feb33d8909c4acf462e60d41adec8706dd97bc", "fields": {"nom_de_la_commune": "CHAMBOST ALLIERES", "libell_d_acheminement": "CHAMBOST ALLIERES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69037"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca46582a46baa3f58a255454d6b95b4270ff5e7", "fields": {"nom_de_la_commune": "CHAMPAGNE AU MONT D OR", "libell_d_acheminement": "CHAMPAGNE AU MONT D OR", "code_postal": "69410", "coordonnees_gps": [45.7982711813, 4.7865623795], "code_commune_insee": "69040"}, "geometry": {"type": "Point", "coordinates": [4.7865623795, 45.7982711813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1114adbc8c43ca3406b7c32a71753e679b1477c2", "fields": {"nom_de_la_commune": "CHASSAGNY", "libell_d_acheminement": "CHASSAGNY", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69048"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8983fd0fdbd0f2a797484004e4cbae548069a61a", "fields": {"nom_de_la_commune": "CHAZAY D AZERGUES", "libell_d_acheminement": "CHAZAY D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69052"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6a8a05d700f135c724086c98e7f490066b3c13", "fields": {"nom_de_la_commune": "CHENAS", "libell_d_acheminement": "CHENAS", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69053"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f69ef8282855648a75c407196747fe01ca75d01", "fields": {"nom_de_la_commune": "CHENELETTE", "libell_d_acheminement": "CHENELETTE", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69054"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674fb1efa676d0a37fa02324a5edd3db1cdb8cbc", "fields": {"nom_de_la_commune": "CLAVEISOLLES", "libell_d_acheminement": "CLAVEISOLLES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69060"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0145bc2b7abbb520a8b0bd0233e9c2c19c9fe9c7", "fields": {"nom_de_la_commune": "COURZIEU", "libell_d_acheminement": "COURZIEU", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69067"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ead175151d4c9313d69ac9b8df6525d0748617f", "fields": {"nom_de_la_commune": "COUZON AU MONT D OR", "libell_d_acheminement": "COUZON AU MONT D OR", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69068"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef484e2f4698bd5a4a7717e074b823feda5701bc", "fields": {"nom_de_la_commune": "CURIS AU MONT D OR", "libell_d_acheminement": "CURIS AU MONT D OR", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69071"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1673f1a38a6d85f99a990f7feafd501e4e167e6", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69076"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbe00eadeca1beeed7a51143f4bbc005c6c58130", "fields": {"nom_de_la_commune": "DRACE", "libell_d_acheminement": "DRACE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69077"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81666d743dd14c4ee49c1367bc7abc47b25e49c", "fields": {"nom_de_la_commune": "ECHALAS", "libell_d_acheminement": "ECHALAS", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69080"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f1edc0f9abb978c9b8c669dbc04ca17244e716", "fields": {"nom_de_la_commune": "FLEURIEUX SUR L ARBRESLE", "libell_d_acheminement": "FLEURIEUX SUR L ARBRESLE", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69086"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b414f882bb0b6637754d9fc7be855bd60144ff", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "69340", "coordonnees_gps": [45.7373345831, 4.75568378052], "code_commune_insee": "69089"}, "geometry": {"type": "Point", "coordinates": [4.75568378052, 45.7373345831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b31d43658358ca2e2a3f23a90c4ee2b06b29f3", "fields": {"nom_de_la_commune": "GRIGNY", "libell_d_acheminement": "GRIGNY", "code_postal": "69520", "coordonnees_gps": [45.6083167424, 4.78671247905], "code_commune_insee": "69096"}, "geometry": {"type": "Point", "coordinates": [4.78671247905, 45.6083167424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6f89bc34683e531300ded2fc1ecd9ee95a2c12", "fields": {"nom_de_la_commune": "IRIGNY", "libell_d_acheminement": "IRIGNY", "code_postal": "69540", "coordonnees_gps": [45.6747732887, 4.81732510509], "code_commune_insee": "69100"}, "geometry": {"type": "Point", "coordinates": [4.81732510509, 45.6747732887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33ea454a8c17c6a93e357be2ae717f256a5d744", "fields": {"nom_de_la_commune": "LANCIE", "libell_d_acheminement": "LANCIE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69108"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52b267e7bca6eccf91449c49b7640bb121e4924", "fields": {"nom_de_la_commune": "LARAJASSE", "libell_d_acheminement": "LARAJASSE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69110"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a0874ad8907e5c128d804c9dc31661a917979a", "fields": {"code_postal": "69400", "code_commune_insee": "69114", "libell_d_acheminement": "LIERGUES", "ligne_5": "LA COMBE", "nom_de_la_commune": "LIERGUES", "coordonnees_gps": [45.9927200348, 4.70137722216]}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc58ba40314cb764a0192856ba045e27ef15deb", "fields": {"nom_de_la_commune": "LIMAS", "libell_d_acheminement": "LIMAS", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69115"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af124ead811a3f12ffa4fd392ffd400b2485fad", "fields": {"nom_de_la_commune": "LONGESSAIGNE", "libell_d_acheminement": "LONGESSAIGNE", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69120"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b685cd4aea2e3b3a5e885664d2dedf7066d21b33", "fields": {"nom_de_la_commune": "MONTROTTIER", "libell_d_acheminement": "MONTROTTIER", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69139"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df2cdb77f5e8e00c196f3365aaae645c57386e4", "fields": {"nom_de_la_commune": "ODENAS", "libell_d_acheminement": "ODENAS", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69145"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb6bb8828b9d8520a12dc654fc395c36440c1bcb", "fields": {"nom_de_la_commune": "LES OLMES", "libell_d_acheminement": "LES OLMES", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69147"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9e2318c5c3772638474eecb7ef432021c66bf3", "fields": {"code_postal": "69530", "code_commune_insee": "69148", "libell_d_acheminement": "ORLIENAS", "ligne_5": "LE BOULARD", "nom_de_la_commune": "ORLIENAS", "coordonnees_gps": [45.6692860968, 4.73618397789]}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e26b8d3e17b0d4bdcb32e4e153ec0bcb6b3f150", "fields": {"nom_de_la_commune": "OUROUX", "libell_d_acheminement": "OUROUX", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69150"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7599c17d8c07e4c5e5bd119e82420bf7215c8343", "fields": {"nom_de_la_commune": "LE PERREON", "libell_d_acheminement": "LE PERREON", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69151"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bdb28807509b751dd369898033a94c78d4b2bfc", "fields": {"code_postal": "69650", "code_commune_insee": "69163", "libell_d_acheminement": "QUINCIEUX", "ligne_5": "VEISSIEUX", "nom_de_la_commune": "QUINCIEUX", "coordonnees_gps": [45.9066632168, 4.77988649685]}, "geometry": {"type": "Point", "coordinates": [4.77988649685, 45.9066632168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c5b807bb7a967a88dc69db23d50e5b7b903d7b", "fields": {"nom_de_la_commune": "ROCHETAILLEE SUR SAONE", "libell_d_acheminement": "ROCHETAILLEE SUR SAONE", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69168"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79113a0f2f4b13bfe226639f856edb21d9e754e5", "fields": {"nom_de_la_commune": "RONNO", "libell_d_acheminement": "RONNO", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69169"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854e620ef2df74c54895e81e9fcf7d9cf6948384", "fields": {"nom_de_la_commune": "SAIN BEL", "libell_d_acheminement": "SAIN BEL", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69171"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0bbbf05c150bad624bf962ca89a97177b89c78", "fields": {"nom_de_la_commune": "SOURCIEUX LES MINES", "libell_d_acheminement": "SOURCIEUX LES MINES", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69177"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bce84ab0f81196004c58b9ff64d31339eeaf946", "fields": {"nom_de_la_commune": "ST ANDEOL LE CHATEAU", "libell_d_acheminement": "ST ANDEOL LE CHATEAU", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69179"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ea151f7a3286e432e4d8a01d999301e5828c79", "fields": {"nom_de_la_commune": "ST ANDRE LA COTE", "libell_d_acheminement": "ST ANDRE LA COTE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69180"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a64cb04b77f89a4bdee3f476ad16e0dbfbb319f", "fields": {"nom_de_la_commune": "STE CATHERINE", "libell_d_acheminement": "STE CATHERINE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69184"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c263a85384069b62daf221d83e9d339b9c8ffd0", "fields": {"code_postal": "69440", "code_commune_insee": "69184", "libell_d_acheminement": "STE CATHERINE", "ligne_5": "BARROT", "nom_de_la_commune": "STE CATHERINE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319b95977841c359ff7cf1ec6d02ca42c3474d87", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69185"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177e760e2f2daf7aea702b7ab4d0306ee027d70c", "fields": {"nom_de_la_commune": "ST CLEMENT DE VERS", "libell_d_acheminement": "ST CLEMENT DE VERS", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69186"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61168d9c99a4e68f47e2a2839b7579d5ea82bdeb", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "69560", "coordonnees_gps": [45.5296436366, 4.83023010495], "code_commune_insee": "69189"}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6314e4994967cd08792090c19446d7d5f74a21", "fields": {"nom_de_la_commune": "ST CYR SUR LE RHONE", "libell_d_acheminement": "ST CYR SUR LE RHONE", "code_postal": "69560", "coordonnees_gps": [45.5296436366, 4.83023010495], "code_commune_insee": "69193"}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9ecaef777d5323cd43fd97ae59862ab8ed86e6", "fields": {"nom_de_la_commune": "ST GENIS LES OLLIERES", "libell_d_acheminement": "ST GENIS LES OLLIERES", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69205"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad67f6e806334b1bf225ce43db6dfa7f77e1f962", "fields": {"nom_de_la_commune": "ST GERMAIN AU MONT D OR", "libell_d_acheminement": "ST GERMAIN AU MONT D OR", "code_postal": "69650", "coordonnees_gps": [45.9066632168, 4.77988649685], "code_commune_insee": "69207"}, "geometry": {"type": "Point", "coordinates": [4.77988649685, 45.9066632168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fdaccaa3c56ad7fd0153d09fff629d014253d4a", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69215"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb656f14e53407ccef9d1ffb78cef36d0f3eb24", "fields": {"nom_de_la_commune": "ST MARCEL L ECLAIRE", "libell_d_acheminement": "ST MARCEL L ECLAIRE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69225"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5b8a339e9ab94bb380f7453ba73dd5cf64939c", "fields": {"code_postal": "69850", "code_commune_insee": "69227", "libell_d_acheminement": "ST MARTIN EN HAUT", "ligne_5": "ROCHEFORT", "nom_de_la_commune": "ST MARTIN EN HAUT", "coordonnees_gps": [45.6632329556, 4.55020035776]}, "geometry": {"type": "Point", "coordinates": [4.55020035776, 45.6632329556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1df8217ef2f177e88f74cb20567a3bf0892c96a1", "fields": {"nom_de_la_commune": "ST ROMAIN AU MONT D OR", "libell_d_acheminement": "ST ROMAIN AU MONT D OR", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69233"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c025d7cb09fcac5e3802d1940ae93c5e4f9e8bc", "fields": {"nom_de_la_commune": "ST ROMAIN EN GAL", "libell_d_acheminement": "ST ROMAIN EN GAL", "code_postal": "69560", "coordonnees_gps": [45.5296436366, 4.83023010495], "code_commune_insee": "69235"}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274a9499cb6cb838244a8be1c698f2dcd195c363", "fields": {"nom_de_la_commune": "ST VERAND", "libell_d_acheminement": "ST VERAND", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69239"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74177a35f8b3e768f1842f100d59d4e64f0c7324", "fields": {"nom_de_la_commune": "TAPONAS", "libell_d_acheminement": "TAPONAS", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69242"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdc8b36bede35a1bd87c7d1f77eeafdd345569f9", "fields": {"nom_de_la_commune": "THURINS", "libell_d_acheminement": "THURINS", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69249"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2707af92e550c1f720ef09900ee081f116f936", "fields": {"nom_de_la_commune": "LA TOUR DE SALVAGNY", "libell_d_acheminement": "LA TOUR DE SALVAGNY", "code_postal": "69890", "coordonnees_gps": [45.8097134421, 4.71196164213], "code_commune_insee": "69250"}, "geometry": {"type": "Point", "coordinates": [4.71196164213, 45.8097134421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e375a5546289b4729a163bdd6a5fdb644dce1bf6", "fields": {"nom_de_la_commune": "VILLIE MORGON", "libell_d_acheminement": "VILLIE MORGON", "code_postal": "69910", "coordonnees_gps": [46.1593907338, 4.67166639897], "code_commune_insee": "69267"}, "geometry": {"type": "Point", "coordinates": [4.67166639897, 46.1593907338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705b1bafef7c9a1692a26be7e2437325a5a5cf89", "fields": {"nom_de_la_commune": "VOURLES", "libell_d_acheminement": "VOURLES", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69268"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7cd3e9c07cfada420644f9b130a8966ce2f12f", "fields": {"nom_de_la_commune": "GENAY", "libell_d_acheminement": "GENAY", "code_postal": "69730", "coordonnees_gps": [45.8983689584, 4.83774935928], "code_commune_insee": "69278"}, "geometry": {"type": "Point", "coordinates": [4.83774935928, 45.8983689584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620d1468a143e0640b4e8afa3f53e1c958a16fc9", "fields": {"nom_de_la_commune": "JONAGE", "libell_d_acheminement": "JONAGE", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69279"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3cd877f23991cb5fd7494cca193a51b6454ada7", "fields": {"nom_de_la_commune": "MEYZIEU", "libell_d_acheminement": "MEYZIEU", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69282"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576b0df41f3329947e6b7e5b1a9dff4e6d67ad06", "fields": {"nom_de_la_commune": "MONTANAY", "libell_d_acheminement": "MONTANAY", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69284"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d61d41e6ff618525b1a17056e3520348c219c0", "fields": {"nom_de_la_commune": "RILLIEUX LA PAPE", "libell_d_acheminement": "RILLIEUX LA PAPE", "code_postal": "69140", "coordonnees_gps": [45.8205814087, 4.8985536958], "code_commune_insee": "69286"}, "geometry": {"type": "Point", "coordinates": [4.8985536958, 45.8205814087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2067617eb0b7a8323c93a505f1156171d1684011", "fields": {"nom_de_la_commune": "SIMANDRES", "libell_d_acheminement": "SIMANDRES", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69295"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab3221a285ac7fd3d78df879ce80cbc6bdc1c38", "fields": {"nom_de_la_commune": "LYON 03", "libell_d_acheminement": "LYON", "code_postal": "69003", "coordonnees_gps": [45.7534327031, 4.86924413945], "code_commune_insee": "69383"}, "geometry": {"type": "Point", "coordinates": [4.86924413945, 45.7534327031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98cad0f7064a0cf6b1aa107af276125711f294e", "fields": {"nom_de_la_commune": "ABONCOURT GESINCOURT", "libell_d_acheminement": "ABONCOURT GESINCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70002"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bab217e76cc3b7012965afbea99c173fe17b0ee", "fields": {"nom_de_la_commune": "AILLONCOURT", "libell_d_acheminement": "AILLONCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70007"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d52673938e4491559c67bc9cce684140756b0b", "fields": {"nom_de_la_commune": "AISEY ET RICHECOURT", "libell_d_acheminement": "AISEY ET RICHECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70009"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896f7f57ab9c546bf49296565f1d918e73a3e56e", "fields": {"nom_de_la_commune": "AMBIEVILLERS", "libell_d_acheminement": "AMBIEVILLERS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70013"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2b19a067b999153b45db4e339bdf33ff19c89d", "fields": {"nom_de_la_commune": "AMONCOURT", "libell_d_acheminement": "AMONCOURT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70015"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977e44420a40d934ca2ff00d93866d818756c9bb", "fields": {"nom_de_la_commune": "MILLAM", "libell_d_acheminement": "MILLAM", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59402"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f197844c991b91fa39546d72b8525da65275f15", "fields": {"nom_de_la_commune": "MONCHEAUX", "libell_d_acheminement": "MONCHEAUX", "code_postal": "59283", "coordonnees_gps": [50.4428439273, 3.0985365481], "code_commune_insee": "59408"}, "geometry": {"type": "Point", "coordinates": [3.0985365481, 50.4428439273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc5ce2c7f07f090562dac36036a435bcd76eb7f7", "fields": {"nom_de_la_commune": "LA NEUVILLE", "libell_d_acheminement": "LA NEUVILLE", "code_postal": "59239", "coordonnees_gps": [50.4822908809, 3.06005458434], "code_commune_insee": "59427"}, "geometry": {"type": "Point", "coordinates": [3.06005458434, 50.4822908809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a394873353e6a7feaf8b7d7f1479bce0641b49", "fields": {"nom_de_la_commune": "NIERGNIES", "libell_d_acheminement": "NIERGNIES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59432"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6df9651eb199415be846b434ff8d9924c5a22b0", "fields": {"nom_de_la_commune": "NIVELLE", "libell_d_acheminement": "NIVELLE", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59434"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f9f36b3f3678786c6d484a7b1c0366053db9e2", "fields": {"nom_de_la_commune": "NOORDPEENE", "libell_d_acheminement": "NOORDPEENE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59436"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb6dbb1a15c41b015865db7ab6807c4380af01fa", "fields": {"nom_de_la_commune": "NOYELLES SUR SAMBRE", "libell_d_acheminement": "NOYELLES SUR SAMBRE", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59439"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a8f488142e1fc535b1cff4323656726ef061ce", "fields": {"nom_de_la_commune": "PERENCHIES", "libell_d_acheminement": "PERENCHIES", "code_postal": "59840", "coordonnees_gps": [50.6641115451, 2.96705892746], "code_commune_insee": "59457"}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ef7df55d7d5551d633deaee9da6176a083faf4", "fields": {"nom_de_la_commune": "POTELLE", "libell_d_acheminement": "POTELLE", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59468"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "224d41e3226ac9f510fb989c09ba476004501a31", "fields": {"code_postal": "59840", "code_commune_insee": "59470", "libell_d_acheminement": "PREMESQUES", "ligne_5": "MONT DE PREMESQUES", "nom_de_la_commune": "PREMESQUES", "coordonnees_gps": [50.6641115451, 2.96705892746]}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e2ab03d3c90110242fab3b75c48acf7c35d056", "fields": {"nom_de_la_commune": "PRESEAU", "libell_d_acheminement": "PRESEAU", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59471"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b944ff735cbceb2784722799407f4582684153e1", "fields": {"nom_de_la_commune": "PREUX AU SART", "libell_d_acheminement": "PREUX AU SART", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59473"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19165390e66c0e206bf2b8f758526f6d8904596a", "fields": {"nom_de_la_commune": "PROUVY", "libell_d_acheminement": "PROUVY", "code_postal": "59121", "coordonnees_gps": [50.3179624806, 3.43822520712], "code_commune_insee": "59475"}, "geometry": {"type": "Point", "coordinates": [3.43822520712, 50.3179624806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f3727dcb234b64019bb4f5fa3be50967261a44", "fields": {"nom_de_la_commune": "RAIMBEAUCOURT", "libell_d_acheminement": "RAIMBEAUCOURT", "code_postal": "59283", "coordonnees_gps": [50.4428439273, 3.0985365481], "code_commune_insee": "59489"}, "geometry": {"type": "Point", "coordinates": [3.0985365481, 50.4428439273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9059c663a7c5f55033e1e89ea8669f1e64efa042", "fields": {"nom_de_la_commune": "RONCQ", "libell_d_acheminement": "RONCQ", "code_postal": "59223", "coordonnees_gps": [50.7470750929, 3.11795880142], "code_commune_insee": "59508"}, "geometry": {"type": "Point", "coordinates": [3.11795880142, 50.7470750929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd48774eac2a5a7ea6057ee6dbcad1c19a359b1d", "fields": {"nom_de_la_commune": "ROSULT", "libell_d_acheminement": "ROSULT", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59511"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94aae11a277a339990c863873cf7bd86e6f80dc7", "fields": {"nom_de_la_commune": "RUESNES", "libell_d_acheminement": "RUESNES", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59518"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914a3e05b1bd6dc26847657c649797e033ce6fb6", "fields": {"nom_de_la_commune": "RUMEGIES", "libell_d_acheminement": "RUMEGIES", "code_postal": "59226", "coordonnees_gps": [50.480222772, 3.38511026562], "code_commune_insee": "59519"}, "geometry": {"type": "Point", "coordinates": [3.38511026562, 50.480222772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f681ae0d55f6a7591ea14bcd652271b961c97afa", "fields": {"nom_de_la_commune": "ST HILAIRE LEZ CAMBRAI", "libell_d_acheminement": "ST HILAIRE LEZ CAMBRAI", "code_postal": "59292", "coordonnees_gps": [50.1809987528, 3.41776654843], "code_commune_insee": "59533"}, "geometry": {"type": "Point", "coordinates": [3.41776654843, 50.1809987528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38e907c8bd8b98b23a5b90566d61645f3ba1a5cd", "fields": {"nom_de_la_commune": "ST PIERRE BROUCK", "libell_d_acheminement": "ST PIERRE BROUCK", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59539"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f412e36788c1bee3acb754083c60361215e26d7", "fields": {"nom_de_la_commune": "SALESCHES", "libell_d_acheminement": "SALESCHES", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59549"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fe47f78636348fd9da3a91fba2cecdbfcd0361", "fields": {"nom_de_la_commune": "SALOME", "libell_d_acheminement": "SALOME", "code_postal": "59496", "coordonnees_gps": [50.5368972316, 2.84563657471], "code_commune_insee": "59550"}, "geometry": {"type": "Point", "coordinates": [2.84563657471, 50.5368972316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d52c9b9834f59ad010ed598c1c2e30edeab6e4", "fields": {"nom_de_la_commune": "SAULZOIR", "libell_d_acheminement": "SAULZOIR", "code_postal": "59227", "coordonnees_gps": [50.2500185431, 3.45009234347], "code_commune_insee": "59558"}, "geometry": {"type": "Point", "coordinates": [3.45009234347, 50.2500185431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af97de1a3dd599dee814cb47af10fa1c02dd952", "fields": {"nom_de_la_commune": "SOMAIN", "libell_d_acheminement": "SOMAIN", "code_postal": "59490", "coordonnees_gps": [50.3590143857, 3.26743195481], "code_commune_insee": "59574"}, "geometry": {"type": "Point", "coordinates": [3.26743195481, 50.3590143857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5c30c4ba166de6542d59b4b3cff6136eb3b9ae", "fields": {"nom_de_la_commune": "STEENVOORDE", "libell_d_acheminement": "STEENVOORDE", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59580"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330e166d866fb69c470fe22288b4b2c510cd2bb5", "fields": {"nom_de_la_commune": "TEMPLEUVE EN PEVELE", "libell_d_acheminement": "TEMPLEUVE EN PEVELE", "code_postal": "59242", "coordonnees_gps": [50.5245553237, 3.18527549865], "code_commune_insee": "59586"}, "geometry": {"type": "Point", "coordinates": [3.18527549865, 50.5245553237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17d6a32989ca5ae52cb966c658c485e7637fc2f", "fields": {"nom_de_la_commune": "VERTAIN", "libell_d_acheminement": "VERTAIN", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59612"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7f52eb126529684adc3397bdefde0bb4eab145", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "59970", "coordonnees_gps": [50.4323433177, 3.57545124255], "code_commune_insee": "59613"}, "geometry": {"type": "Point", "coordinates": [3.57545124255, 50.4323433177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cc9653cd65a116f92fbd5fa907a8c17577a4f9", "fields": {"nom_de_la_commune": "VRED", "libell_d_acheminement": "VRED", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59629"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c866c2170abaebb410cec74bb5dabfc8403515c5", "fields": {"nom_de_la_commune": "WALLON CAPPEL", "libell_d_acheminement": "WALLON CAPPEL", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59634"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0710ffe6df062d15d5f8597a984d5137b2616ef", "fields": {"nom_de_la_commune": "WAMBAIX", "libell_d_acheminement": "WAMBAIX", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59635"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be4386879ac7ef9152ab9a1d5e9abeef39d1ddb", "fields": {"nom_de_la_commune": "WAMBRECHIES", "libell_d_acheminement": "WAMBRECHIES", "code_postal": "59118", "coordonnees_gps": [50.6955049755, 3.04758137438], "code_commune_insee": "59636"}, "geometry": {"type": "Point", "coordinates": [3.04758137438, 50.6955049755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5f8f3caf69dc54937637363e7334d0c1e1c0af", "fields": {"nom_de_la_commune": "WATTEN", "libell_d_acheminement": "WATTEN", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59647"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e13c9517d0bb32049a46e2f4fbe09e72576630e", "fields": {"nom_de_la_commune": "WERVICQ SUD", "libell_d_acheminement": "WERVICQ SUD", "code_postal": "59117", "coordonnees_gps": [50.7611699069, 3.05057612291], "code_commune_insee": "59656"}, "geometry": {"type": "Point", "coordinates": [3.05057612291, 50.7611699069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06732820c50d65997090b623eb3e79d8269364", "fields": {"nom_de_la_commune": "WICRES", "libell_d_acheminement": "WICRES", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59658"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f54a7407e51e45726ee3c000130730416ddc5d2", "fields": {"nom_de_la_commune": "WULVERDINGHE", "libell_d_acheminement": "WULVERDINGHE", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59664"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25e523ee141fbe2afaf4d63c47b20dc07e3c6cb", "fields": {"nom_de_la_commune": "ACHY", "libell_d_acheminement": "ACHY", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60004"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d6eed405c25bac5905e35657d4c84a8ba64017", "fields": {"nom_de_la_commune": "LES AGEUX", "libell_d_acheminement": "LES AGEUX", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60006"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359cb926ff843e94c0f6fa233c98b77f9b7ca31b", "fields": {"nom_de_la_commune": "ANSACQ", "libell_d_acheminement": "ANSACQ", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60016"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a25036a9bdebbe85547db013e1c0dcbdb120672e", "fields": {"nom_de_la_commune": "ANSAUVILLERS", "libell_d_acheminement": "ANSAUVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60017"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7ee45ca45caf6e5ebcb2bbc0bec0c81176bbac", "fields": {"nom_de_la_commune": "APPILLY", "libell_d_acheminement": "APPILLY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60021"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079f7cb027bfb0ba6465db9f4307db22ab3163f0", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60022"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c029f8acbb091717b4aca9cec2ae41252c57c321", "fields": {"nom_de_la_commune": "ARSY", "libell_d_acheminement": "ARSY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60024"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31194ff8623f7a96eaa6ead7c6cced8edda19f58", "fields": {"nom_de_la_commune": "AUCHY LA MONTAGNE", "libell_d_acheminement": "AUCHY LA MONTAGNE", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60026"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212f1c85b520b09484ff60b57741c569e9d3f92e", "fields": {"nom_de_la_commune": "AUTEUIL", "libell_d_acheminement": "AUTEUIL", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60030"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac63df35872cf1d42323900285cf566320ca13c", "fields": {"nom_de_la_commune": "AVILLY ST LEONARD", "libell_d_acheminement": "AVILLY ST LEONARD", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60033"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c24a72afcb9b05885d9f2efdf6b55f092216a049", "fields": {"nom_de_la_commune": "AVRICOURT", "libell_d_acheminement": "AVRICOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60035"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078035ce914e996f861e95dcc3d5021c982deef5", "fields": {"nom_de_la_commune": "BAILLEUL SUR THERAIN", "libell_d_acheminement": "BAILLEUL SUR THERAIN", "code_postal": "60930", "coordonnees_gps": [49.3849304239, 2.23102446472], "code_commune_insee": "60041"}, "geometry": {"type": "Point", "coordinates": [2.23102446472, 49.3849304239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9738fbd8a2a4895ebfc897d4fd7f68b148c9883", "fields": {"nom_de_la_commune": "BARGNY", "libell_d_acheminement": "BARGNY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60046"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fd9193e294fd83bd652a3e2528cd28712d452a", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60047"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b62332e2e16974cb1afccc39473a501c0f147d", "fields": {"nom_de_la_commune": "BAZANCOURT", "libell_d_acheminement": "BAZANCOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60049"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a80ac617fb21f859b611332bff69825cac3100", "fields": {"nom_de_la_commune": "BEAUVAIS", "libell_d_acheminement": "BEAUVAIS", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60057"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4a2c93f1072565091d3ce567e05fc76cd86b91", "fields": {"nom_de_la_commune": "BERLANCOURT", "libell_d_acheminement": "BERLANCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60062"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97880b5079a391e3f56979adeb888dd643b7ab5", "fields": {"nom_de_la_commune": "BITRY", "libell_d_acheminement": "BITRY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60072"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7c3da818d2346174eada5a637327590948a769", "fields": {"nom_de_la_commune": "BONVILLERS", "libell_d_acheminement": "BONVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60085"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ee927da231fc9f0309782445f5b16c4bbb144b", "fields": {"nom_de_la_commune": "BORAN SUR OISE", "libell_d_acheminement": "BORAN SUR OISE", "code_postal": "60820", "coordonnees_gps": [49.175670181, 2.35110636224], "code_commune_insee": "60086"}, "geometry": {"type": "Point", "coordinates": [2.35110636224, 49.175670181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0080ed8b675b18048bcf1c26319ac8e3db3e5d08", "fields": {"nom_de_la_commune": "BOREST", "libell_d_acheminement": "BOREST", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60087"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492b9570cf8439dc6151dbdaaf83017fee5b929d", "fields": {"code_postal": "60540", "code_commune_insee": "60088", "libell_d_acheminement": "BORNEL", "ligne_5": "ANSERVILLE", "nom_de_la_commune": "BORNEL", "coordonnees_gps": [49.1970454016, 2.20454103263]}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4771015c564e0384473e8174c5ba3479665f34f6", "fields": {"code_postal": "60540", "code_commune_insee": "60088", "libell_d_acheminement": "BORNEL", "ligne_5": "FOSSEUSE", "nom_de_la_commune": "BORNEL", "coordonnees_gps": [49.1970454016, 2.20454103263]}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a618b96aaa5035387a28d7a7bb28a2d260252294", "fields": {"nom_de_la_commune": "BOUBIERS", "libell_d_acheminement": "BOUBIERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60089"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737d0ecd5cbb20fe2e85856b351740cfd5572e46", "fields": {"nom_de_la_commune": "BOURSONNE", "libell_d_acheminement": "BOURSONNE", "code_postal": "60141", "coordonnees_gps": [49.1992405168, 3.02501632067], "code_commune_insee": "60094"}, "geometry": {"type": "Point", "coordinates": [3.02501632067, 49.1992405168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a8ee842a559d58f8daac05d6fcf834a080f59b", "fields": {"nom_de_la_commune": "BRAISNES SUR ARONDE", "libell_d_acheminement": "BRAISNES SUR ARONDE", "code_postal": "60113", "coordonnees_gps": [49.468392159, 2.74988902801], "code_commune_insee": "60099"}, "geometry": {"type": "Point", "coordinates": [2.74988902801, 49.468392159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c916ac6dc567edc4c357ed1106ebe5fb35b049fe", "fields": {"nom_de_la_commune": "BRIOT", "libell_d_acheminement": "BRIOT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60108"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ba2db6f5b6599532f974556a125ff50e4bce07", "fields": {"nom_de_la_commune": "BURY", "libell_d_acheminement": "BURY", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60116"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5e1919429597086f669cb322abd4543f0dea65", "fields": {"nom_de_la_commune": "CAISNES", "libell_d_acheminement": "CAISNES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60118"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7774bec7649a257f51b9bbf6439849be93920307", "fields": {"nom_de_la_commune": "CAMPEAUX", "libell_d_acheminement": "CAMPEAUX", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60122"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9495b786e8127ab724cb9f9f865ddad1109c1b25", "fields": {"nom_de_la_commune": "CAMPREMY", "libell_d_acheminement": "CAMPREMY", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60123"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c01962f7dad0c3f91e2d002fd9b735e6d4c253b", "fields": {"nom_de_la_commune": "CANNY SUR MATZ", "libell_d_acheminement": "CANNY SUR MATZ", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60127"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969446a2ffdec6a1faeeb3ba933c669e6d132e00", "fields": {"nom_de_la_commune": "CATENOY", "libell_d_acheminement": "CATENOY", "code_postal": "60840", "coordonnees_gps": [49.3800366036, 2.49101738028], "code_commune_insee": "60130"}, "geometry": {"type": "Point", "coordinates": [2.49101738028, 49.3800366036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb4be816383e60cd0f21a1d0ecbbd4a2f1209ea", "fields": {"nom_de_la_commune": "CATHEUX", "libell_d_acheminement": "CATHEUX", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60131"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65859504f97133aa3ad18f72a5a3d15fb45a8c8c", "fields": {"nom_de_la_commune": "CHAMBLY", "libell_d_acheminement": "CHAMBLY", "code_postal": "60230", "coordonnees_gps": [49.1718983919, 2.24616345056], "code_commune_insee": "60139"}, "geometry": {"type": "Point", "coordinates": [2.24616345056, 49.1718983919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62d0e730ba8ecc34e1f007df4317fdbb6c48e703", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60157"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dc3c5cccff4b62f8b86a49c47dd585f22621dc", "fields": {"nom_de_la_commune": "COIVREL", "libell_d_acheminement": "COIVREL", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60158"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "154cef09a61f55ac4c54de2bda76ff64f6059107", "fields": {"nom_de_la_commune": "CONCHY LES POTS", "libell_d_acheminement": "CONCHY LES POTS", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60160"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ddb1cb99837e2a4e0b9985d2cd4d37674b440a", "fields": {"nom_de_la_commune": "COURTEUIL", "libell_d_acheminement": "COURTEUIL", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60170"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce095ef80e0a9f4cdb14970d89e0b131c92598e9", "fields": {"nom_de_la_commune": "CREPY EN VALOIS", "libell_d_acheminement": "CREPY EN VALOIS", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60176"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa665c3ea69cc312ef9d4de63a4a7631d4df551", "fields": {"nom_de_la_commune": "CREVECOEUR LE PETIT", "libell_d_acheminement": "CREVECOEUR LE PETIT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60179"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81fc0f48d361f375a6ae128853177569a0bef53c", "fields": {"nom_de_la_commune": "CRILLON", "libell_d_acheminement": "CRILLON", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60180"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f18b1165eedab97b3531a82b4dc29db71de2835", "fields": {"nom_de_la_commune": "CUVERGNON", "libell_d_acheminement": "CUVERGNON", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60190"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c33f5c2632f1d0fe41d4d0b1ecbd43fe8e3abb", "fields": {"nom_de_la_commune": "CUY", "libell_d_acheminement": "CUY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60192"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5636eaafad4829733c1400f9036b1dc81c999427", "fields": {"nom_de_la_commune": "DAMERAUCOURT", "libell_d_acheminement": "DAMERAUCOURT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60193"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23086389e9e5f6389bf00be56f2a41a53a8b33d", "fields": {"nom_de_la_commune": "DOMELIERS", "libell_d_acheminement": "DOMELIERS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60199"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf63e73ebe7aef94955c06de9dca5dd2df50e201", "fields": {"nom_de_la_commune": "ENENCOURT LEAGE", "libell_d_acheminement": "ENENCOURT LEAGE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60208"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ce1dde1f52a337eddc5fb4518bc0afef6e8251", "fields": {"nom_de_la_commune": "ENENCOURT LE SEC", "libell_d_acheminement": "ENENCOURT LE SEC", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60209"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2caabc387dd3f19e5a3cba7be2a5e923a9fc2b61", "fields": {"nom_de_la_commune": "ERMENONVILLE", "libell_d_acheminement": "ERMENONVILLE", "code_postal": "60950", "coordonnees_gps": [49.1189792735, 2.6960856018], "code_commune_insee": "60213"}, "geometry": {"type": "Point", "coordinates": [2.6960856018, 49.1189792735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c8e930811ddc3fd158b13461806aaad57e03a7", "fields": {"nom_de_la_commune": "ERNEMONT BOUTAVENT", "libell_d_acheminement": "ERNEMONT BOUTAVENT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60214"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f81b4a0cc561c2d6b621664c00b618e2e5c6d5", "fields": {"nom_de_la_commune": "ESCAMES", "libell_d_acheminement": "ESCAMES", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60217"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f55b246d493326bb4a92e68f7998d37b56e0341", "fields": {"nom_de_la_commune": "ESTREES ST DENIS", "libell_d_acheminement": "ESTREES ST DENIS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60223"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b9a29429e13b588d1812f378d6292e6018e0c4", "fields": {"nom_de_la_commune": "LE FAY ST QUENTIN", "libell_d_acheminement": "LE FAY ST QUENTIN", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60230"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c7b11e141508136f6c2b65dd6abe2c3a71e872", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60232"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319d2be577a26d4b0874fbbb2f00413613d98829", "fields": {"nom_de_la_commune": "FLECHY", "libell_d_acheminement": "FLECHY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60237"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843111be7dba9cac935819841b32e0367ecb1426", "fields": {"nom_de_la_commune": "FONTAINE ST LUCIEN", "libell_d_acheminement": "FONTAINE ST LUCIEN", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60243"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f10c01cd01d20fd9c3a3b423a3687f4be37531", "fields": {"nom_de_la_commune": "FONTENAY TORCY", "libell_d_acheminement": "FONTENAY TORCY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60244"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9924a92ddabade6a774410892ab814de6fb87b", "fields": {"nom_de_la_commune": "FRANCIERES", "libell_d_acheminement": "FRANCIERES", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60254"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bed240af2a23037973f7555e1ee84fc163e98b", "fields": {"nom_de_la_commune": "FRESNEAUX MONTCHEVREUIL", "libell_d_acheminement": "FRESNEAUX MONTCHEVREUIL", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60256"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd79c910bb08adc538a764466873af439e1b7e25", "fields": {"nom_de_la_commune": "FRESNE LEGUILLON", "libell_d_acheminement": "FRESNE LEGUILLON", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60257"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8789be6162f20034d0e8301ef3ef3c8da3200507", "fields": {"nom_de_la_commune": "FRESNOY LE LUAT", "libell_d_acheminement": "FRESNOY LE LUAT", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60261"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198262a8fdb07639625be6417b30d7e6100c5d67", "fields": {"nom_de_la_commune": "GLAIGNES", "libell_d_acheminement": "GLAIGNES", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60274"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b4681b64ce27c18c9182aade09181e1b5c181c", "fields": {"nom_de_la_commune": "GODENVILLERS", "libell_d_acheminement": "GODENVILLERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60276"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555df21ed83835190cfc2da8ad02911684ba864a", "fields": {"nom_de_la_commune": "GOINCOURT", "libell_d_acheminement": "GOINCOURT", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60277"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af09a3e129503e4dac4debea387894a3133b819", "fields": {"nom_de_la_commune": "BARD LE REGULIER", "libell_d_acheminement": "BARD LE REGULIER", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21046"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76341ebf2addcd437d90dc055900367fac7a15a", "fields": {"nom_de_la_commune": "BEAUNOTTE", "libell_d_acheminement": "BEAUNOTTE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21055"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991a6861cd63d84853f14a12f794ff16ff6950c1", "fields": {"nom_de_la_commune": "BELAN SUR OURCE", "libell_d_acheminement": "BELAN SUR OURCE", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21058"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35926b9c8d98381d2649066e04b47337093e1b7", "fields": {"nom_de_la_commune": "BILLY LES CHANCEAUX", "libell_d_acheminement": "BILLY LES CHANCEAUX", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21075"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9d2015855ecff726fbfe012da46a0bf24c8f2c", "fields": {"nom_de_la_commune": "BISSEY LA PIERRE", "libell_d_acheminement": "BISSEY LA PIERRE", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21078"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91c86aac656fd60d056b5dbf67cb23dbeee5bcd", "fields": {"nom_de_la_commune": "BLANCEY", "libell_d_acheminement": "BLANCEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21082"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505fab07f7ac5c98eab226305ff60981888767c3", "fields": {"nom_de_la_commune": "BLANOT", "libell_d_acheminement": "BLANOT", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21083"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c4449d930a038989189326d451b8ec3f7aa6fa", "fields": {"nom_de_la_commune": "SOURCE SEINE", "libell_d_acheminement": "SOURCE SEINE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21084"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64a7d79f3b1852ca4d4e232f021c833669bbf365", "fields": {"nom_de_la_commune": "BLIGNY SUR OUCHE", "libell_d_acheminement": "BLIGNY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21087"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2904c35702ad72d5c645b90560e1b4a4486b4b97", "fields": {"nom_de_la_commune": "BONNENCONTRE", "libell_d_acheminement": "BONNENCONTRE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21089"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b33f25198ebb4d1ea60262773025ca48e8425c", "fields": {"nom_de_la_commune": "BOUHEY", "libell_d_acheminement": "BOUHEY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21091"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2248ae83c9f137b5201c7a863dee417b52d2c7", "fields": {"nom_de_la_commune": "BOUSSELANGE", "libell_d_acheminement": "BOUSSELANGE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21095"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b2916253029f8853a36bb7980fa648dafbe486", "fields": {"nom_de_la_commune": "BRAIN", "libell_d_acheminement": "BRAIN", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21100"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e13ad1189c3bf92a7a6cfd1e359467cc130b61", "fields": {"nom_de_la_commune": "BRESSEY SUR TILLE", "libell_d_acheminement": "BRESSEY SUR TILLE", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21105"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "304f2591df515686b6fb7bc45195becded69bb87", "fields": {"nom_de_la_commune": "BROGNON", "libell_d_acheminement": "BROGNON", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21111"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417903fe95d04429a83589cd5e01cc803f87ccad", "fields": {"nom_de_la_commune": "CERILLY", "libell_d_acheminement": "CERILLY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21125"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776d19070c97d1ed489b944588255e0ba3569ce2", "fields": {"nom_de_la_commune": "CHASSAGNE MONTRACHET", "libell_d_acheminement": "CHASSAGNE MONTRACHET", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21150"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4c38d1253d8a4fead1ca40df9ea62f08c3d1f2", "fields": {"nom_de_la_commune": "CHASSEY", "libell_d_acheminement": "CHASSEY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21151"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee1b87a1b2c1d210172460fd5981822be21e392", "fields": {"code_postal": "21610", "code_commune_insee": "21158", "libell_d_acheminement": "CHAUME ET COURCHAMP", "ligne_5": "COURCHAMP", "nom_de_la_commune": "CHAUME ET COURCHAMP", "coordonnees_gps": [47.5437721668, 5.38811246138]}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3fc6d851ddad77f5220804475f1977ad6cc65a", "fields": {"nom_de_la_commune": "CHAUME LES BAIGNEUX", "libell_d_acheminement": "CHAUME LES BAIGNEUX", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21160"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16887961cada8246fa08e874ef355ff512637160", "fields": {"nom_de_la_commune": "CHAUMONT LE BOIS", "libell_d_acheminement": "CHAUMONT LE BOIS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21161"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5f76c585ee4e95f35b6e8626578b42759c5870", "fields": {"nom_de_la_commune": "CHEMIN D AISEY", "libell_d_acheminement": "CHEMIN D AISEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21165"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841337ef1009dc9f2db64d3f742be0cce9cfc077", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21169"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fa2f49b332d02d67f0d5c599c3c17286babbcd", "fields": {"nom_de_la_commune": "CHEVIGNY ST SAUVEUR", "libell_d_acheminement": "CHEVIGNY ST SAUVEUR", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21171"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48635503c3e6f2fc9b660dba40196dd94f7077b", "fields": {"nom_de_la_commune": "CLENAY", "libell_d_acheminement": "CLENAY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21179"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b0b0e3dad270c7ac0edd1704fd9a80572fbc42", "fields": {"nom_de_la_commune": "CLERY", "libell_d_acheminement": "CLERY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21180"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75989dd5b3fa7fde44241509dcc3fb3e2b24ffb", "fields": {"nom_de_la_commune": "CLOMOT", "libell_d_acheminement": "CLOMOT", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21181"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9f5b45ba0049083d243b09ded55418cd468990", "fields": {"nom_de_la_commune": "COLLONGES LES PREMIERES", "libell_d_acheminement": "COLLONGES LES PREMIERES", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21183"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c227dda9f157a12c2de17e944c931b44f5ee3286", "fields": {"nom_de_la_commune": "COMBLANCHIEN", "libell_d_acheminement": "COMBLANCHIEN", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21186"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf5a31aa8118379b71d275e7bdac1d4d1ee2320", "fields": {"nom_de_la_commune": "CORCELLES LES ARTS", "libell_d_acheminement": "CORCELLES LES ARTS", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21190"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b72ad7601c21bbb37fbdd9fe51d5bd1ca45d6f5", "fields": {"nom_de_la_commune": "CORPOYER LA CHAPELLE", "libell_d_acheminement": "CORPOYER LA CHAPELLE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21197"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78f2f1e5f453c641047339676d341af64c82d22", "fields": {"nom_de_la_commune": "COURBAN", "libell_d_acheminement": "COURBAN", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21202"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "023b4efc87a17f147be1204c280af58d79097c6a", "fields": {"nom_de_la_commune": "CRECEY SUR TILLE", "libell_d_acheminement": "CRECEY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21211"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ecdfe068a5bcb936fbff96569522e303126c67", "fields": {"nom_de_la_commune": "CRIMOLOIS", "libell_d_acheminement": "CRIMOLOIS", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21213"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebe1ee92a2a7fe45bdceec3aa6f560d0bf7e974", "fields": {"nom_de_la_commune": "CURTIL VERGY", "libell_d_acheminement": "CURTIL VERGY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21219"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6f3c2a48eb75d508421025a392871c593bd160", "fields": {"nom_de_la_commune": "CUSSY LA COLONNE", "libell_d_acheminement": "CUSSY LA COLONNE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21221"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9000fd010253ee908eab3844e898a960fdf86102", "fields": {"nom_de_la_commune": "DAMPIERRE ET FLEE", "libell_d_acheminement": "DAMPIERRE ET FLEE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21225"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63327a830475dd6f26aa9d59e0ebeb8b1edd9ec", "fields": {"nom_de_la_commune": "DRAMBON", "libell_d_acheminement": "DRAMBON", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21233"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060212ecf51e9cb3cf3053651eb441e12243cb2a", "fields": {"nom_de_la_commune": "ECHEVANNES", "libell_d_acheminement": "ECHEVANNES", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21240"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a099da3447d37a2ecc98d0c7f3553ec6667ab2", "fields": {"nom_de_la_commune": "ECHEVRONNE", "libell_d_acheminement": "ECHEVRONNE", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21241"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239bc2f84bd394b7020d3dd61a9ad736b8b5254a", "fields": {"nom_de_la_commune": "ECHIGEY", "libell_d_acheminement": "ECHIGEY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21242"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b59fee46c682432f104ba8ef3743dc9b2b6b2c", "fields": {"nom_de_la_commune": "EGUILLY", "libell_d_acheminement": "EGUILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21244"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2520211e3da441dc5e37b2f87e27f239f9af14c9", "fields": {"nom_de_la_commune": "EPOISSES", "libell_d_acheminement": "EPOISSES", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21247"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032e4bf5f5c6570224f7ff86a6f39a841a82cbba", "fields": {"nom_de_la_commune": "ETALANTE", "libell_d_acheminement": "ETALANTE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21253"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94bd40684cbdb903e97cff607b17fb0f5c48fc55", "fields": {"nom_de_la_commune": "ETEVAUX", "libell_d_acheminement": "ETEVAUX", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21256"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c24ce75e844a2dbf389461648622d29629fd881", "fields": {"nom_de_la_commune": "ETROCHEY", "libell_d_acheminement": "ETROCHEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21258"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45c68574d66bf1ff9bdb37d070371000ac86b6b", "fields": {"nom_de_la_commune": "FAIN LES MOUTIERS", "libell_d_acheminement": "FAIN LES MOUTIERS", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21260"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5875a4ef4dcfd8c1c280c5f1e20c0cad9ea4862b", "fields": {"nom_de_la_commune": "FLAMMERANS", "libell_d_acheminement": "FLAMMERANS", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21269"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e203cd0bd2943ef17b0b8ec19a323400926b04a7", "fields": {"nom_de_la_commune": "FLAVIGNY SUR OZERAIN", "libell_d_acheminement": "FLAVIGNY SUR OZERAIN", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21271"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc8d0022420e9f8e545d9fe8e0d58770b47a8f3", "fields": {"nom_de_la_commune": "FLEUREY SUR OUCHE", "libell_d_acheminement": "FLEUREY SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21273"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aabbf6c8c1af75de19594bf507e9336236ae4860", "fields": {"nom_de_la_commune": "FONTAINES EN DUESMOIS", "libell_d_acheminement": "FONTAINES EN DUESMOIS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21276"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e502621bcc31285becd6fb7367b68571f79fae", "fields": {"nom_de_la_commune": "FORLEANS", "libell_d_acheminement": "FORLEANS", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21282"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05afaa2de2ad3c47910f0a9584ca26ee40341a7e", "fields": {"nom_de_la_commune": "FRENOIS", "libell_d_acheminement": "FRENOIS", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21286"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20530f05bc9e2b911e44974ad0aa74f8e73b7557", "fields": {"nom_de_la_commune": "GISSEY SOUS FLAVIGNY", "libell_d_acheminement": "GISSEY SOUS FLAVIGNY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21299"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e3a2dd66e67aee5c63fdabfd0ee31e205a30ab", "fields": {"nom_de_la_commune": "GLANON", "libell_d_acheminement": "GLANON", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21301"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1a8b62ae5380a8722f8eda32100e4920fe2f09", "fields": {"nom_de_la_commune": "GRISELLES", "libell_d_acheminement": "GRISELLES", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21309"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b210ed35a5d8e050ab83c0a98580dc1d30f6d740", "fields": {"nom_de_la_commune": "IS SUR TILLE", "libell_d_acheminement": "IS SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21317"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2b86051f23e1df011029c39f6d8f3ec0cc252b2", "fields": {"nom_de_la_commune": "IZEURE", "libell_d_acheminement": "IZEURE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21319"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2dd5c3768221a73c215f47445b9099cc19904e", "fields": {"nom_de_la_commune": "JOUEY", "libell_d_acheminement": "JOUEY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21325"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7abd93a56455e1ff2e70d99efe602f320bfd34c1", "fields": {"code_postal": "21340", "code_commune_insee": "21327", "libell_d_acheminement": "VAL MONT", "ligne_5": "IVRY EN MONTAGNE", "nom_de_la_commune": "VAL MONT", "coordonnees_gps": [46.9889799591, 4.61638229862]}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0158ed0ffe5ea5cdb956a8f3e5acdb7558d98bf7", "fields": {"nom_de_la_commune": "LABERGEMENT FOIGNEY", "libell_d_acheminement": "LABERGEMENT FOIGNEY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21330"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "583f4e16dbab5bf38887fc08c68231563abd1225", "fields": {"nom_de_la_commune": "LACOUR D ARCENAY", "libell_d_acheminement": "LACOUR D ARCENAY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21335"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471b6e0bc9848a38d5be1650501705d056c7a790", "fields": {"nom_de_la_commune": "LAPERRIERE SUR SAONE", "libell_d_acheminement": "LAPERRIERE SUR SAONE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21342"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ee255c8b0f587f73cc86adea8f83c5b369d95d", "fields": {"nom_de_la_commune": "MACONGE", "libell_d_acheminement": "MACONGE", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21362"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5f58db06e915dd039d876ae446e7b94369d720", "fields": {"nom_de_la_commune": "MAGNY SUR TILLE", "libell_d_acheminement": "MAGNY SUR TILLE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21370"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cea4985289e20faaeb10eb7044de1df18eec631", "fields": {"nom_de_la_commune": "MARCENAY", "libell_d_acheminement": "MARCENAY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21378"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9879552345149c47727e3fa5b656f81bb40ef54", "fields": {"nom_de_la_commune": "MARIGNY LES REULLEE", "libell_d_acheminement": "MARIGNY LES REULLEE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21387"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78563cb5098faa6e8495dc736c863dca98812944", "fields": {"nom_de_la_commune": "MARMAGNE", "libell_d_acheminement": "MARMAGNE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21389"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22cdfa0b99f7a93b07dddca0c2c6e4d1320162e", "fields": {"nom_de_la_commune": "MARTROIS", "libell_d_acheminement": "MARTROIS", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21392"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b574797cbcbd3f8fbd52c0e8d2ecf6e26aa8a5", "fields": {"nom_de_la_commune": "MASSINGY", "libell_d_acheminement": "MASSINGY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21393"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d98fe30dec8d6fcedaccc8b5590f9b322aab41", "fields": {"nom_de_la_commune": "MEILLY SUR ROUVRES", "libell_d_acheminement": "MEILLY SUR ROUVRES", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21399"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3827128e17edb14ecb2dcd1d0f0c674ed3a0ea76", "fields": {"code_postal": "21380", "code_commune_insee": "21408", "libell_d_acheminement": "MESSIGNY ET VANTOUX", "ligne_5": "VANTOUX LES DIJON", "nom_de_la_commune": "MESSIGNY ET VANTOUX", "coordonnees_gps": [47.4355367845, 5.01535981996]}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea8e86efea93eda2c040581872b55f7d2b19eb9", "fields": {"nom_de_la_commune": "MEUILLEY", "libell_d_acheminement": "MEUILLEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21409"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab304ac4ea029d08312d9b6de84e9d53454539c9", "fields": {"nom_de_la_commune": "MISSERY", "libell_d_acheminement": "MISSERY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21417"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a52679c6a75ac1506beec78534369579b8f8d86", "fields": {"nom_de_la_commune": "MOLPHEY", "libell_d_acheminement": "MOLPHEY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21422"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efc9cba3add820814ae36da9f98aa2ceadfcc2e", "fields": {"nom_de_la_commune": "MONTBARD", "libell_d_acheminement": "MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21425"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0708c75e0d8413aceee52f401bcd24e73660231d", "fields": {"nom_de_la_commune": "MONTBERTHAULT", "libell_d_acheminement": "MONTBERTHAULT", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21426"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab926e20b8732260b603a7a9a7cd754d973d7532", "fields": {"nom_de_la_commune": "MONTIGNY MONTFORT", "libell_d_acheminement": "MONTIGNY MONTFORT", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21429"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec74c78c9e060cf667ac3e3cd2733fc182175d2", "fields": {"nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", "libell_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21433"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f3861e1ca60e8a1bc5f306952f8b6869a35ac89", "fields": {"code_postal": "21610", "code_commune_insee": "21433", "libell_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", "ligne_5": "LA VILLENEUVE SUR VINGEANNE", "nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", "coordonnees_gps": [47.5437721668, 5.38811246138]}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c5b23ec04ebd0ac82ff72c48a0a18dee3daa04", "fields": {"nom_de_la_commune": "MONTOILLOT", "libell_d_acheminement": "MONTOILLOT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21439"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9121e9d7b2bf3cba75034e12c27702d87bc4029", "fields": {"nom_de_la_commune": "MONTOT", "libell_d_acheminement": "MONTOT", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21440"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d3056a8b42e843cda2ac716da1e051ec66e920", "fields": {"nom_de_la_commune": "MOREY ST DENIS", "libell_d_acheminement": "MOREY ST DENIS", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21442"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b8f9cfe0a6300d4894c3fb04b2c56d3983c4560", "fields": {"nom_de_la_commune": "NOD SUR SEINE", "libell_d_acheminement": "NOD SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21455"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11eadbd0cb3c2e09d99a3ea9cb89d66ba8cc1d03", "fields": {"nom_de_la_commune": "NOGENT LES MONTBARD", "libell_d_acheminement": "NOGENT LES MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21456"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1396b314b63773b64705458b3a5f282239011b29", "fields": {"nom_de_la_commune": "NUITS ST GEORGES", "libell_d_acheminement": "NUITS ST GEORGES", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21464"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b900ff7841f40a8320dd902bd1c2e84bed914a4", "fields": {"nom_de_la_commune": "PELLEREY", "libell_d_acheminement": "PELLEREY", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21479"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2e93188641b3f99e60b8a417c3926915cedece", "fields": {"nom_de_la_commune": "PERNAND VERGELESSES", "libell_d_acheminement": "PERNAND VERGELESSES", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21480"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389f04094068beb7c1b4685a16ea8ac1c3626bcb", "fields": {"nom_de_la_commune": "PERRIGNY LES DIJON", "libell_d_acheminement": "PERRIGNY LES DIJON", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21481"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0075526884e01e9ec18603612e1a726b90aeec4", "fields": {"nom_de_la_commune": "PICHANGES", "libell_d_acheminement": "PICHANGES", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21483"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f2f74e1ad1adfce2b115860218960403230cf4", "fields": {"nom_de_la_commune": "PRENOIS", "libell_d_acheminement": "PRENOIS", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21508"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79cc5e192b6e81bb556000093669582ef6f1901", "fields": {"nom_de_la_commune": "QUEMIGNY POISOT", "libell_d_acheminement": "QUEMIGNY POISOT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21513"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7373d8130deea4b927f3e605ceaff4022508ad25", "fields": {"nom_de_la_commune": "QUETIGNY", "libell_d_acheminement": "QUETIGNY", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21515"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662b35793a69761f6d6589d9178d2f19bfec0219", "fields": {"nom_de_la_commune": "RIEL LES EAUX", "libell_d_acheminement": "RIEL LES EAUX", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21524"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb58c72fa60823bd030b17193a6752e8f52da6f8", "fields": {"nom_de_la_commune": "LA ROCHEPOT", "libell_d_acheminement": "LA ROCHEPOT", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21527"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b33c4e412e9f22d535c4e9f6b05c2117627393", "fields": {"nom_de_la_commune": "LA ROCHE VANNEAU", "libell_d_acheminement": "LA ROCHE VANNEAU", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21528"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218fc995d3db7264193ad727b3d8f465cf6fdfe3", "fields": {"nom_de_la_commune": "ROILLY", "libell_d_acheminement": "ROILLY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21529"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e43a86614a6ddc93569642af97a0ec6b19fead", "fields": {"nom_de_la_commune": "ROUGEMONT", "libell_d_acheminement": "ROUGEMONT", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21530"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fad73ddc07d0a68dbbef998cba1c65f0e0baf87", "fields": {"nom_de_la_commune": "ROUVRES EN PLAINE", "libell_d_acheminement": "ROUVRES EN PLAINE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21532"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb35a991ae7fe8ad839e686bfafd385b20c934a7", "fields": {"nom_de_la_commune": "ST ANTHOT", "libell_d_acheminement": "ST ANTHOT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21539"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5ba3fd7d0230aea433e1b7b7f32d088bde5830", "fields": {"code_postal": "25160", "code_commune_insee": "25320", "libell_d_acheminement": "LABERGEMENT STE MARIE", "ligne_5": "GRANGES STE MARIE", "nom_de_la_commune": "LABERGEMENT STE MARIE", "coordonnees_gps": [46.8056943645, 6.28142603625]}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0a5a057bee627880913bb2b4cc721902b973a3", "fields": {"nom_de_la_commune": "LANTENNE VERTIERE", "libell_d_acheminement": "LANTENNE VERTIERE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25326"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514c33e1af0b19091a6b94d40fea1e365eb85248", "fields": {"nom_de_la_commune": "LAVANS QUINGEY", "libell_d_acheminement": "LAVANS QUINGEY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25330"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca853ef26d387ada25e9642d3a0d5cbe374a265", "fields": {"nom_de_la_commune": "LAVERNAY", "libell_d_acheminement": "LAVERNAY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25332"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92db5e04755ae65485b3a64fb9d37b0794527d5", "fields": {"nom_de_la_commune": "LA LONGEVILLE", "libell_d_acheminement": "LA LONGEVILLE", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25347"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc9363ae3eb04a0d0db99a4565fcb91e18c84e4", "fields": {"nom_de_la_commune": "LORAY", "libell_d_acheminement": "LORAY", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25349"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2707f55f6862aab58f8dfdd7a5e65d476810bcb3", "fields": {"nom_de_la_commune": "MAICHE", "libell_d_acheminement": "MAICHE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25356"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce786ddc7eb9be1bb2021e090f28083fd44361a", "fields": {"nom_de_la_commune": "MAMIROLLE", "libell_d_acheminement": "MAMIROLLE", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25364"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cd08dc03fb7e362e299d721e84046a42cad161", "fields": {"nom_de_la_commune": "MANCENANS", "libell_d_acheminement": "MANCENANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25365"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29da113a92bfa48fb2d12e9b0326cd06d6f8fc2", "fields": {"nom_de_la_commune": "LE MEMONT", "libell_d_acheminement": "LE MEMONT", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25373"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a020835e2544ce53c1ed3bc46ec07cfb4f1529fd", "fields": {"nom_de_la_commune": "MESANDANS", "libell_d_acheminement": "MESANDANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25377"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5915d9808fbcb9beccb978570904b9717fef9aea", "fields": {"nom_de_la_commune": "MESLIERES", "libell_d_acheminement": "MESLIERES", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25378"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4d18e74cf894e220f6d3e38f0968c9f1986bbb", "fields": {"nom_de_la_commune": "MONTBENOIT", "libell_d_acheminement": "MONTBENOIT", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25390"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959df8a7b33a8d4098757ce2d4548e9f2955bf8a", "fields": {"nom_de_la_commune": "MONT DE VOUGNEY", "libell_d_acheminement": "MONT DE VOUGNEY", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25392"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b24783b7e312221aecd48461a55834d42e8997", "fields": {"nom_de_la_commune": "MONTGESOYE", "libell_d_acheminement": "MONTGESOYE", "code_postal": "25111", "coordonnees_gps": [47.0882417813, 6.19256236303], "code_commune_insee": "25400"}, "geometry": {"type": "Point", "coordinates": [6.19256236303, 47.0882417813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed2758f18c06c6f92bbe728b0f4cb33651e8df2", "fields": {"nom_de_la_commune": "MONTMAHOUX", "libell_d_acheminement": "MONTMAHOUX", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25404"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73eda3086f198c74ffb4a8a4390c7e49a48aafe", "fields": {"nom_de_la_commune": "MONTPERREUX", "libell_d_acheminement": "MONTPERREUX", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25405"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59b23137132e8290763307ed007ff4665e240a3", "fields": {"nom_de_la_commune": "MONTUSSAINT", "libell_d_acheminement": "MONTUSSAINT", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25408"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc69013ba647cf85e7fd77acc52e65a67d121fd9", "fields": {"nom_de_la_commune": "MOUTHIER HAUTE PIERRE", "libell_d_acheminement": "MOUTHIER HAUTE PIERRE", "code_postal": "25920", "coordonnees_gps": [47.0343690776, 6.27573267444], "code_commune_insee": "25415"}, "geometry": {"type": "Point", "coordinates": [6.27573267444, 47.0343690776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce59f78feacec9802fa58198fcb1cd39d1a98c6", "fields": {"nom_de_la_commune": "NANS SOUS STE ANNE", "libell_d_acheminement": "NANS SOUS STE ANNE", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25420"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79deaa969b0b9657e4bab3cf5f484e6ff022666", "fields": {"nom_de_la_commune": "NOIREFONTAINE", "libell_d_acheminement": "NOIREFONTAINE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25426"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f41d1e1b6290fe67250f55bc93b55583d1ad8c4", "fields": {"nom_de_la_commune": "NOMMAY", "libell_d_acheminement": "NOMMAY", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25428"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f384a5a7e39c9404fbfe00a5d298285f89e7cade", "fields": {"nom_de_la_commune": "OLLANS", "libell_d_acheminement": "OLLANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25430"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81d2cecea5ca9861ddeb309cc524decb4fd254f", "fields": {"nom_de_la_commune": "ORSANS", "libell_d_acheminement": "ORSANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25435"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1bb4ce3dbd6c042d9660ae7338bce801165d929", "fields": {"nom_de_la_commune": "PAROY", "libell_d_acheminement": "PAROY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25445"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1f5e39a10050b9615e509644202a5615a6d454", "fields": {"nom_de_la_commune": "PIERREFONTAINE LES VARANS", "libell_d_acheminement": "PIERREFONTAINE LES VARANS", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25453"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336bf19fcd51aaf30c9be2d8d4aa673492ed026b", "fields": {"nom_de_la_commune": "POMPIERRE SUR DOUBS", "libell_d_acheminement": "POMPIERRE SUR DOUBS", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25461"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2509250c881a2ef1f39ce7522a70e5a411da64", "fields": {"nom_de_la_commune": "PONTARLIER", "libell_d_acheminement": "PONTARLIER", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25462"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aa7998e19cb68f08d66e961a390b1e57591219", "fields": {"nom_de_la_commune": "PROVENCHERE", "libell_d_acheminement": "PROVENCHERE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25471"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1218c370af4152a9e3f081df25c9b46af8b13b5a", "fields": {"nom_de_la_commune": "RAHON", "libell_d_acheminement": "RAHON", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25476"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ed282c2f068d7f434527da3bdd490f0814a9b8", "fields": {"nom_de_la_commune": "RENNES SUR LOUE", "libell_d_acheminement": "RENNES SUR LOUE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25488"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71bc4b4316b8c0f882c4a9e1d28a393504e25d0", "fields": {"nom_de_la_commune": "ROCHE LEZ BEAUPRE", "libell_d_acheminement": "ROCHE LEZ BEAUPRE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25495"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9081c5b1fb4ba6966d51489b2c35ea4432e3dce", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25499"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845e0ee63125fa32b19b83287eca933fb65ad5ce", "fields": {"nom_de_la_commune": "ROSIERES SUR BARBECHE", "libell_d_acheminement": "ROSIERES SUR BARBECHE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25503"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa9b034eb44b6694f5fa1af93130b7b525ca5f0", "fields": {"code_postal": "25680", "code_commune_insee": "25505", "libell_d_acheminement": "ROUGEMONT", "ligne_5": "CHAZELOT", "nom_de_la_commune": "ROUGEMONT", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93e720963d53d8b9150ce43651e6dc9e8200398", "fields": {"nom_de_la_commune": "LE RUSSEY", "libell_d_acheminement": "LE RUSSEY", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25512"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6efcab02e1526e98417215a364a0f1a1ce6f9b6b", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25513"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae50a21e66057ce15b4e3a43a845687405d836df", "fields": {"nom_de_la_commune": "ST ANTOINE", "libell_d_acheminement": "ST ANTOINE", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25514"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9364ca784a88643328c6f2f797dc2af8dc5ea7", "fields": {"nom_de_la_commune": "ST GEORGES ARMONT", "libell_d_acheminement": "ST GEORGES ARMONT", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25516"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3088fa6cc84f2dd799a56d25735aa20ac3cbf055", "fields": {"nom_de_la_commune": "ST GORGON MAIN", "libell_d_acheminement": "ST GORGON MAIN", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25517"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f730ee2519b09a7ec7dcc3ed6326fe56e9eeec", "fields": {"code_postal": "25190", "code_commune_insee": "25519", "libell_d_acheminement": "ST HIPPOLYTE", "ligne_5": "MOUILLEVILLERS", "nom_de_la_commune": "ST HIPPOLYTE", "coordonnees_gps": [47.3299526188, 6.81205544169]}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8e5c0f19f26359b11bc43bde65b93eca0a19b7", "fields": {"nom_de_la_commune": "ST POINT LAC", "libell_d_acheminement": "ST POINT LAC", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25525"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2322734a58667970562f227a83802afe68163748", "fields": {"code_postal": "25430", "code_commune_insee": "25529", "libell_d_acheminement": "SANCEY", "ligne_5": "SANCEY LE LONG", "nom_de_la_commune": "SANCEY", "coordonnees_gps": [47.3146994609, 6.55846338064]}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674780445f2a16cbbac628e5d5e9541c4ba5a766", "fields": {"nom_de_la_commune": "SARAZ", "libell_d_acheminement": "SARAZ", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25533"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdc9664ee2b52270f511c9e6819fabbba410822", "fields": {"nom_de_la_commune": "SOMBACOUR", "libell_d_acheminement": "SOMBACOUR", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25549"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca9382fcbcf8d64faeda26fcee044868b81b314", "fields": {"nom_de_la_commune": "TARCENAY", "libell_d_acheminement": "TARCENAY", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25558"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891a1784b7d938264b86c543f84eacd3ab46a8cf", "fields": {"nom_de_la_commune": "TORPES", "libell_d_acheminement": "TORPES", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25564"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2cbe7f159c921676f8b7799db58ef614dbdd58", "fields": {"nom_de_la_commune": "TRESSANDANS", "libell_d_acheminement": "TRESSANDANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25570"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a9decdcecc6c154e90024700d7fa98e4d1d008e", "fields": {"nom_de_la_commune": "TROUVANS", "libell_d_acheminement": "TROUVANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25572"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a31db24396c26a23407b3c13c1af1c2d7d2142", "fields": {"nom_de_la_commune": "VALENTIGNEY", "libell_d_acheminement": "VALENTIGNEY", "code_postal": "25700", "coordonnees_gps": [47.450787456, 6.79182503855], "code_commune_insee": "25580"}, "geometry": {"type": "Point", "coordinates": [6.79182503855, 47.450787456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a3c1bac94ddc0c3e75ec6e1ff3fb9025f9d1d2", "fields": {"nom_de_la_commune": "VELESMES ESSARTS", "libell_d_acheminement": "VELESMES ESSARTS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25594"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35cf1683a8b14f48c9ace5f203b37ccc44cc325", "fields": {"nom_de_la_commune": "VELLEVANS", "libell_d_acheminement": "VELLEVANS", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25597"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66851b183e5caf19260de225edc72d1573b384f", "fields": {"nom_de_la_commune": "VENISE", "libell_d_acheminement": "VENISE", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25598"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2db72361e41a750081dd707e76f9b581ca8179", "fields": {"nom_de_la_commune": "VENNANS", "libell_d_acheminement": "VENNANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25599"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91686654846b9f45b439df830158a870e74f27ff", "fields": {"nom_de_la_commune": "VERNOIS LES BELVOIR", "libell_d_acheminement": "VERNOIS LES BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25607"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a79ccc93710872045fdb4e5b7c33c019174d6fc", "fields": {"nom_de_la_commune": "VERRIERES DE JOUX", "libell_d_acheminement": "VERRIERES DE JOUX", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25609"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b2e4923d59879511be7194dedb9f83618c0edb", "fields": {"nom_de_la_commune": "VIEUX CHARMONT", "libell_d_acheminement": "VIEUX CHARMONT", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25614"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14db0d4f69d36551e282fc45090f118661467405", "fields": {"nom_de_la_commune": "VILLENEUVE D AMONT", "libell_d_acheminement": "VILLENEUVE D AMONT", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25621"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa03540424cdedfc8d166d6b5dcdb03eec7fc65", "fields": {"nom_de_la_commune": "VILLERS SOUS CHALAMONT", "libell_d_acheminement": "VILLERS SOUS CHALAMONT", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25627"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7919f1186f0ac8495694733d142fa83979a204df", "fields": {"nom_de_la_commune": "VILLERS SOUS MONTROND", "libell_d_acheminement": "VILLERS SOUS MONTROND", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25628"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb604f4988bd7c68cbb611bcd75c1ac843c3a113", "fields": {"nom_de_la_commune": "VORGES LES PINS", "libell_d_acheminement": "VORGES LES PINS", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25631"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d034604e9ee0d9767ac8b97957e2b49c994f2e", "fields": {"nom_de_la_commune": "ALLEX", "libell_d_acheminement": "ALLEX", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26006"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6fe62f1f7c542dd473b2317d0de4d8448d15b5", "fields": {"nom_de_la_commune": "AUCELON", "libell_d_acheminement": "AUCELON", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26017"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "995ad9b72b796c2a76998c3d95d4e292005f6e28", "fields": {"nom_de_la_commune": "AULAN", "libell_d_acheminement": "AULAN", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26018"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ce5895118369d4cadacc5c98b11dc9c1407d19", "fields": {"nom_de_la_commune": "AUTICHAMP", "libell_d_acheminement": "AUTICHAMP", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26021"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c1feccdaea925b4812966f9f17e1b16576e82d", "fields": {"nom_de_la_commune": "LA BATIE ROLLAND", "libell_d_acheminement": "LA BATIE ROLLAND", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26031"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd04fe2270c28f793981bf4139c7de9f67c0f0ec", "fields": {"nom_de_la_commune": "BEAUMONT MONTEUX", "libell_d_acheminement": "BEAUMONT MONTEUX", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26038"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13df3332ae07a049ea10a9dda374fc232ca29c40", "fields": {"code_postal": "26410", "code_commune_insee": "26055", "libell_d_acheminement": "BOULC", "ligne_5": "BONNEVAL EN DIOIS", "nom_de_la_commune": "BOULC", "coordonnees_gps": [44.6917619163, 5.54713177432]}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb8141a7af519e218e48396ae0e4b04e53eff79", "fields": {"nom_de_la_commune": "CHALANCON", "libell_d_acheminement": "CHALANCON", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26067"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeaea14712ea13ccaf9b8d9aabe650e7e2686911", "fields": {"nom_de_la_commune": "LE CHALON", "libell_d_acheminement": "LE CHALON", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26068"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f4e3d69ccf815b56aae1902a4c92b5b2e031e8", "fields": {"nom_de_la_commune": "CHAMALOC", "libell_d_acheminement": "CHAMALOC", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26069"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a15e9e257c8c51babf5eaa618632c2c630d223", "fields": {"nom_de_la_commune": "CHANOS CURSON", "libell_d_acheminement": "CHANOS CURSON", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26071"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9133a43eba26140b2373444d142766fadba169e1", "fields": {"nom_de_la_commune": "CHARPEY", "libell_d_acheminement": "CHARPEY", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26079"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7765fdd5cea3229f0aaa0fea2809b2ab48d104", "fields": {"nom_de_la_commune": "CHASTEL ARNAUD", "libell_d_acheminement": "CHASTEL ARNAUD", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26080"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840861b0b939c14f5043b472a5d8ec8495010e31", "fields": {"nom_de_la_commune": "CHATEAUNEUF DU RHONE", "libell_d_acheminement": "CHATEAUNEUF DU RHONE", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26085"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39eed859bc87f9dab26eaf3f86e44778fc47759e", "fields": {"nom_de_la_commune": "CHATUZANGE LE GOUBET", "libell_d_acheminement": "CHATUZANGE LE GOUBET", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26088"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760c9f2656856d90017309bbf11f3fdfb7608de0", "fields": {"code_postal": "26300", "code_commune_insee": "26088", "libell_d_acheminement": "CHATUZANGE LE GOUBET", "ligne_5": "PIZANCON", "nom_de_la_commune": "CHATUZANGE LE GOUBET", "coordonnees_gps": [44.9876949669, 5.0803109859]}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc322c245e09af1974142383bef6c16ba36059d4", "fields": {"code_postal": "26510", "code_commune_insee": "26091", "libell_d_acheminement": "CHAUVAC LAUX MONTAUX", "ligne_5": "LAUX MONTAUX", "nom_de_la_commune": "CHAUVAC LAUX MONTAUX", "coordonnees_gps": [44.3964498388, 5.38709638398]}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bcb4f02e551676524468e258fb663b7d8094443", "fields": {"nom_de_la_commune": "COMPS", "libell_d_acheminement": "COMPS", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26101"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea0d9886913da0a82671598c253a76e484f8911", "fields": {"nom_de_la_commune": "CROZES HERMITAGE", "libell_d_acheminement": "CROZES HERMITAGE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26110"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4518dafdf62433222030a841670bc492ccfe0c7b", "fields": {"nom_de_la_commune": "ECHEVIS", "libell_d_acheminement": "ECHEVIS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26117"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0444dc4ba21083ae3ad1f5cf66f77a3c1720bdb3", "fields": {"nom_de_la_commune": "EYMEUX", "libell_d_acheminement": "EYMEUX", "code_postal": "26730", "coordonnees_gps": [45.0482944782, 5.20163673449], "code_commune_insee": "26129"}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb9cf78e70b587b56bdaf0e6abd7856030fe3da", "fields": {"nom_de_la_commune": "FERRASSIERES", "libell_d_acheminement": "FERRASSIERES", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26135"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dadb5e501bcba33c6bda68a79ff009c8cd5a6059", "fields": {"code_postal": "26310", "code_commune_insee": "26136", "libell_d_acheminement": "VAL MARAVEL", "ligne_5": "LA BATIE CREMEZIN", "nom_de_la_commune": "VAL MARAVEL", "coordonnees_gps": [44.5689961906, 5.50488176905]}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77dff9aaeff191793eb55d674ab76dd69b55157", "fields": {"nom_de_la_commune": "GLANDAGE", "libell_d_acheminement": "GLANDAGE", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26142"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db599af5e648980d97ce4cf1a04b2548de9eee7", "fields": {"nom_de_la_commune": "LE GRAND SERRE", "libell_d_acheminement": "LE GRAND SERRE", "code_postal": "26530", "coordonnees_gps": [45.2627729683, 5.1022578725], "code_commune_insee": "26143"}, "geometry": {"type": "Point", "coordinates": [5.1022578725, 45.2627729683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfd8276de2ffabe392d0cb7130e8c9c332fca51", "fields": {"nom_de_la_commune": "GRIGNAN", "libell_d_acheminement": "GRIGNAN", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26146"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f0dd44f6ded400d2164aa20625e9b14d81c690", "fields": {"nom_de_la_commune": "GUMIANE", "libell_d_acheminement": "GUMIANE", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26147"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17f700f3f96d77a94849842f16edd12ca42509d", "fields": {"nom_de_la_commune": "LACHAU", "libell_d_acheminement": "LACHAU", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26154"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cca761eb59582a1fe5ff2f45a5fb12b6da4cfa", "fields": {"nom_de_la_commune": "LEMPS", "libell_d_acheminement": "LEMPS", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26161"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d17512628fd5fdc97cd557f637290fe31655397a", "fields": {"nom_de_la_commune": "LEONCEL", "libell_d_acheminement": "LEONCEL", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26163"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e286376fbe6a89af68adc978e7407d9cb7053a76", "fields": {"nom_de_la_commune": "LESCHES EN DIOIS", "libell_d_acheminement": "LESCHES EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26164"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd8e68c83ecc192f3cabf9061ba7b54b390375eb", "fields": {"nom_de_la_commune": "LIVRON SUR DROME", "libell_d_acheminement": "LIVRON SUR DROME", "code_postal": "26250", "coordonnees_gps": [44.7874591799, 4.83851475178], "code_commune_insee": "26165"}, "geometry": {"type": "Point", "coordinates": [4.83851475178, 44.7874591799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a021f7c521d4d02b9b5ef1427954329e3fb38c", "fields": {"nom_de_la_commune": "MANTHES", "libell_d_acheminement": "MANTHES", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26172"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0713d6e469a36f5fd056cbc082eb6df29872e748", "fields": {"nom_de_la_commune": "MARCHES", "libell_d_acheminement": "MARCHES", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26173"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c9397e6db886bbc9dcad74a4a0253a11a478e9", "fields": {"nom_de_la_commune": "MARGES", "libell_d_acheminement": "MARGES", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26174"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8611d7dae89a687db941916be92077785b3bb5da", "fields": {"nom_de_la_commune": "MARSANNE", "libell_d_acheminement": "MARSANNE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26176"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54363b869dc692faf9073188e886ebb4ff8f7ef", "fields": {"nom_de_la_commune": "MIRABEL AUX BARONNIES", "libell_d_acheminement": "MIRABEL AUX BARONNIES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26182"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c03f0360c6686ff8fcf98e9e3ea02cc00318c3", "fields": {"nom_de_la_commune": "MISCON", "libell_d_acheminement": "MISCON", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26186"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417e1aebbebac99fddd85deec36154458f0ab110", "fields": {"nom_de_la_commune": "MONTELEGER", "libell_d_acheminement": "MONTELEGER", "code_postal": "26760", "coordonnees_gps": [44.8676636246, 4.93984005309], "code_commune_insee": "26196"}, "geometry": {"type": "Point", "coordinates": [4.93984005309, 44.8676636246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348dfdf70276ac1548e1168601a40faf71025cc8", "fields": {"nom_de_la_commune": "DUNKERQUE", "libell_d_acheminement": "DUNKERQUE", "code_postal": "59140", "coordonnees_gps": [51.0306940868, 2.33760634], "code_commune_insee": "59183"}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bbef5c4333ae9c7cab669653120a7989edd92ca", "fields": {"nom_de_la_commune": "DUNKERQUE", "libell_d_acheminement": "DUNKERQUE", "code_postal": "59640", "coordonnees_gps": [51.0306940868, 2.33760634], "code_commune_insee": "59183"}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1ca44401eae09b191bfa406d1b3a6a9568fda6", "fields": {"code_postal": "59640", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "PETITE SYNTHE", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0524887817e9e367a00b758f25bb2e0a6de2ff63", "fields": {"nom_de_la_commune": "ECAILLON", "libell_d_acheminement": "ECAILLON", "code_postal": "59176", "coordonnees_gps": [50.3439205555, 3.20295217014], "code_commune_insee": "59185"}, "geometry": {"type": "Point", "coordinates": [3.20295217014, 50.3439205555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832632ca87527e3aceb6a784e958a0ef7337f0f3", "fields": {"nom_de_la_commune": "ECCLES", "libell_d_acheminement": "ECCLES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59186"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c74b29925e319388bec2b3ec465c5174cc5d0e", "fields": {"nom_de_la_commune": "ENGLEFONTAINE", "libell_d_acheminement": "ENGLEFONTAINE", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59194"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de29ac8d025e7907cadde85af61bedf298a7f98", "fields": {"nom_de_la_commune": "ENGLOS", "libell_d_acheminement": "ENGLOS", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59195"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c146e90f254f93afe6aae4c0ead5823c0722f69", "fields": {"nom_de_la_commune": "ENNETIERES EN WEPPES", "libell_d_acheminement": "ENNETIERES EN WEPPES", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59196"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348279234b56cdcc8331f6f448ebcc8f7a2593e0", "fields": {"nom_de_la_commune": "ERCHIN", "libell_d_acheminement": "ERCHIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59199"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ddfc2bf239061a0287ea8c0de1ae789fead3b0", "fields": {"nom_de_la_commune": "ERRE", "libell_d_acheminement": "ERRE", "code_postal": "59171", "coordonnees_gps": [50.3694204804, 3.33834111863], "code_commune_insee": "59203"}, "geometry": {"type": "Point", "coordinates": [3.33834111863, 50.3694204804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34645310de21b65cf68f56074e8420342048407", "fields": {"nom_de_la_commune": "ESCAUDAIN", "libell_d_acheminement": "ESCAUDAIN", "code_postal": "59124", "coordonnees_gps": [50.3337837416, 3.34122519611], "code_commune_insee": "59205"}, "geometry": {"type": "Point", "coordinates": [3.34122519611, 50.3337837416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dde2b19c5de0c6195719788e392b271e72baa6c", "fields": {"nom_de_la_commune": "ESQUERCHIN", "libell_d_acheminement": "ESQUERCHIN", "code_postal": "59553", "coordonnees_gps": [50.3821215945, 3.02404153046], "code_commune_insee": "59211"}, "geometry": {"type": "Point", "coordinates": [3.02404153046, 50.3821215945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8d0603af37fa7a30347e97062f011584046b55", "fields": {"nom_de_la_commune": "ESTREES", "libell_d_acheminement": "ESTREES", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59214"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4203279f1411dae516146a636248e05e274f80fc", "fields": {"nom_de_la_commune": "ETH", "libell_d_acheminement": "ETH", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59217"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be672ed7db41cb7b70d9ed30a73f22564bec1e8", "fields": {"nom_de_la_commune": "FECHAIN", "libell_d_acheminement": "FECHAIN", "code_postal": "59247", "coordonnees_gps": [50.2609478069, 3.2199473962], "code_commune_insee": "59224"}, "geometry": {"type": "Point", "coordinates": [3.2199473962, 50.2609478069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882cb8de02ce5f9ad4a7e08f395d372075607482", "fields": {"nom_de_la_commune": "FENAIN", "libell_d_acheminement": "FENAIN", "code_postal": "59179", "coordonnees_gps": [50.3673176665, 3.30029992694], "code_commune_insee": "59227"}, "geometry": {"type": "Point", "coordinates": [3.30029992694, 50.3673176665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f741d080e2fcbd098eca441052cbd9e895eecf0c", "fields": {"nom_de_la_commune": "FERRIERE LA GRANDE", "libell_d_acheminement": "FERRIERE LA GRANDE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59230"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421d16dafe5c439273440c127995c7de946ef1d2", "fields": {"nom_de_la_commune": "FERRIERE LA PETITE", "libell_d_acheminement": "FERRIERE LA PETITE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59231"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c652b5693218099e8c2ac47e2a5f1edf9714e6e", "fields": {"nom_de_la_commune": "FLESQUIERES", "libell_d_acheminement": "FLESQUIERES", "code_postal": "59267", "coordonnees_gps": [50.14197399, 3.16014006865], "code_commune_insee": "59236"}, "geometry": {"type": "Point", "coordinates": [3.16014006865, 50.14197399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5ef8f82ab9abd3cbd650c7a001cf18720247b0", "fields": {"nom_de_la_commune": "FLOYON", "libell_d_acheminement": "FLOYON", "code_postal": "59219", "coordonnees_gps": [50.0518032549, 3.92131798693], "code_commune_insee": "59241"}, "geometry": {"type": "Point", "coordinates": [3.92131798693, 50.0518032549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a446e87370e8133e82b296e2af6d08aaa36f6e", "fields": {"nom_de_la_commune": "FOURMIES", "libell_d_acheminement": "FOURMIES", "code_postal": "59610", "coordonnees_gps": [50.0219945971, 4.04376753743], "code_commune_insee": "59249"}, "geometry": {"type": "Point", "coordinates": [4.04376753743, 50.0219945971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537fe46fb837e67ffdaa4320e717573708892af2", "fields": {"nom_de_la_commune": "GENECH", "libell_d_acheminement": "GENECH", "code_postal": "59242", "coordonnees_gps": [50.5245553237, 3.18527549865], "code_commune_insee": "59258"}, "geometry": {"type": "Point", "coordinates": [3.18527549865, 50.5245553237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64963d82dc485c1b33d500de33968864da27491b", "fields": {"nom_de_la_commune": "GOGNIES CHAUSSEE", "libell_d_acheminement": "GOGNIES CHAUSSEE", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59264"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1b031e641c1359554a2ab2e33eb467906a4c43", "fields": {"nom_de_la_commune": "GRUSON", "libell_d_acheminement": "GRUSON", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59275"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb72fd191afaea0eb83b14c58793c4234e1c737b", "fields": {"nom_de_la_commune": "HALLUIN", "libell_d_acheminement": "HALLUIN", "code_postal": "59250", "coordonnees_gps": [50.7748561237, 3.12664134814], "code_commune_insee": "59279"}, "geometry": {"type": "Point", "coordinates": [3.12664134814, 50.7748561237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2978ff332680ef0fbacbe49ac717bdc7bdda5f", "fields": {"nom_de_la_commune": "HAULCHIN", "libell_d_acheminement": "HAULCHIN", "code_postal": "59121", "coordonnees_gps": [50.3179624806, 3.43822520712], "code_commune_insee": "59288"}, "geometry": {"type": "Point", "coordinates": [3.43822520712, 50.3179624806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67da01a6ef67c7aa85bb0ef33fc7e2a2be10506", "fields": {"nom_de_la_commune": "HEM LENGLET", "libell_d_acheminement": "HEM LENGLET", "code_postal": "59247", "coordonnees_gps": [50.2609478069, 3.2199473962], "code_commune_insee": "59300"}, "geometry": {"type": "Point", "coordinates": [3.2199473962, 50.2609478069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a57d5d0bc7e2e4a1a093ec0db3599d7e801fcd22", "fields": {"nom_de_la_commune": "HERZEELE", "libell_d_acheminement": "HERZEELE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59305"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f31966d389a97e0e36c4bca34edf167fecbc77fa", "fields": {"nom_de_la_commune": "HORNAING", "libell_d_acheminement": "HORNAING", "code_postal": "59171", "coordonnees_gps": [50.3694204804, 3.33834111863], "code_commune_insee": "59314"}, "geometry": {"type": "Point", "coordinates": [3.33834111863, 50.3694204804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45065aabc050c6c8e02bde02b82fd847978dc7a4", "fields": {"nom_de_la_commune": "HOUDAIN LEZ BAVAY", "libell_d_acheminement": "HOUDAIN LEZ BAVAY", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59315"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981713c842cfc4992ca17036772be863f6584913", "fields": {"nom_de_la_commune": "HOYMILLE", "libell_d_acheminement": "HOYMILLE", "code_postal": "59492", "coordonnees_gps": [50.9731202124, 2.45595476593], "code_commune_insee": "59319"}, "geometry": {"type": "Point", "coordinates": [2.45595476593, 50.9731202124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf20b40bf6d4a11950d6297595442afeb672c88", "fields": {"nom_de_la_commune": "ILLIES", "libell_d_acheminement": "ILLIES", "code_postal": "59480", "coordonnees_gps": [50.5558128425, 2.82300533087], "code_commune_insee": "59320"}, "geometry": {"type": "Point", "coordinates": [2.82300533087, 50.5558128425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7658510da01390eff0a5c135f77d784e55e5165b", "fields": {"nom_de_la_commune": "IWUY", "libell_d_acheminement": "IWUY", "code_postal": "59141", "coordonnees_gps": [50.2278844933, 3.31468451895], "code_commune_insee": "59322"}, "geometry": {"type": "Point", "coordinates": [3.31468451895, 50.2278844933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dda92e696850703f94501bf3c071b4b504c46f8", "fields": {"nom_de_la_commune": "JENLAIN", "libell_d_acheminement": "JENLAIN", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59323"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e204d5c3ad9097911da3c68ec9662724c9ce68", "fields": {"nom_de_la_commune": "LANNOY", "libell_d_acheminement": "LANNOY", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59332"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0b3a5ccef459b8dc76778bc14ce15aba5ef583", "fields": {"nom_de_la_commune": "LAUWIN PLANQUE", "libell_d_acheminement": "LAUWIN PLANQUE", "code_postal": "59553", "coordonnees_gps": [50.3821215945, 3.02404153046], "code_commune_insee": "59334"}, "geometry": {"type": "Point", "coordinates": [3.02404153046, 50.3821215945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a6db9c38d3c7f147969d4965e273e352829423", "fields": {"nom_de_la_commune": "LESQUIN", "libell_d_acheminement": "LESQUIN", "code_postal": "59810", "coordonnees_gps": [50.589824451, 3.11249692688], "code_commune_insee": "59343"}, "geometry": {"type": "Point", "coordinates": [3.11249692688, 50.589824451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f7185d2e7f2f4038d67703c16bd93da94fc2a0", "fields": {"nom_de_la_commune": "LEVAL", "libell_d_acheminement": "LEVAL", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59344"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e98dcbb245501cc218ebd4ede58a46212e671e", "fields": {"nom_de_la_commune": "LIEU ST AMAND", "libell_d_acheminement": "LIEU ST AMAND", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59348"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375c6dbe3d42d8183be0bcf0c466f52622506627", "fields": {"nom_de_la_commune": "LOURCHES", "libell_d_acheminement": "LOURCHES", "code_postal": "59156", "coordonnees_gps": [50.3112742663, 3.35786360934], "code_commune_insee": "59361"}, "geometry": {"type": "Point", "coordinates": [3.35786360934, 50.3112742663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2f7296261d1b983bb5ae0a4f2b2059141a4558", "fields": {"nom_de_la_commune": "LOUVIL", "libell_d_acheminement": "LOUVIL", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59364"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3caca3154c7aab9bac9d40f58c82ff357b250c6", "fields": {"nom_de_la_commune": "LOUVROIL", "libell_d_acheminement": "LOUVROIL", "code_postal": "59720", "coordonnees_gps": [50.2582944612, 3.95362771167], "code_commune_insee": "59365"}, "geometry": {"type": "Point", "coordinates": [3.95362771167, 50.2582944612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb53e0f3f707cc62f7d3d5f18c7f0c69bf0db452", "fields": {"nom_de_la_commune": "MARBAIX", "libell_d_acheminement": "MARBAIX", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59374"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cf553b93ae65f317366b0a67fe1fdfb767a593", "fields": {"nom_de_la_commune": "MAROILLES", "libell_d_acheminement": "MAROILLES", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59384"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff1aeab91ba290b48713d7e0a290f501c6f31ea", "fields": {"nom_de_la_commune": "MARPENT", "libell_d_acheminement": "MARPENT", "code_postal": "59164", "coordonnees_gps": [50.2907082338, 4.07704109923], "code_commune_insee": "59385"}, "geometry": {"type": "Point", "coordinates": [4.07704109923, 50.2907082338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0cf662afec97ef3d9f111a79081ca82cdfedc0", "fields": {"nom_de_la_commune": "MASNIERES", "libell_d_acheminement": "MASNIERES", "code_postal": "59241", "coordonnees_gps": [50.1048543757, 3.20159625651], "code_commune_insee": "59389"}, "geometry": {"type": "Point", "coordinates": [3.20159625651, 50.1048543757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613370d0d7a3ae14ca1b56dd2afc6edccf180e5f", "fields": {"nom_de_la_commune": "MASTAING", "libell_d_acheminement": "MASTAING", "code_postal": "59172", "coordonnees_gps": [50.3090205997, 3.30898360738], "code_commune_insee": "59391"}, "geometry": {"type": "Point", "coordinates": [3.30898360738, 50.3090205997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4544824920c1a659667ca5d87059a4c645dd8030", "fields": {"nom_de_la_commune": "MAUBEUGE", "libell_d_acheminement": "MAUBEUGE", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59392"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b1dfc39e822b82b1655ccf8b173800d7c3d3d8", "fields": {"nom_de_la_commune": "MECQUIGNIES", "libell_d_acheminement": "MECQUIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59396"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cda4993f41e3c9ad1b98eed177a9e39c24b7c80", "fields": {"nom_de_la_commune": "MOEUVRES", "libell_d_acheminement": "MOEUVRES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59405"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522ba5a7269ef5841f3b8c4829d7b82280b08963", "fields": {"nom_de_la_commune": "MONCEAU ST WAAST", "libell_d_acheminement": "MONCEAU ST WAAST", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59406"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c0e1fc71fc0e4a0661e9a06c26a6c2dc2eee1c", "fields": {"nom_de_la_commune": "MOUSTIER EN FAGNE", "libell_d_acheminement": "MOUSTIER EN FAGNE", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59420"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd909941f95540e79f84f304c925fa549a2201cb", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59422"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3462c03ec1c3a4af697d5622964806eb05cb7d88", "fields": {"nom_de_la_commune": "NEUVILLE EN FERRAIN", "libell_d_acheminement": "NEUVILLE EN FERRAIN", "code_postal": "59960", "coordonnees_gps": [50.7531316756, 3.1593674762], "code_commune_insee": "59426"}, "geometry": {"type": "Point", "coordinates": [3.1593674762, 50.7531316756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b3415a0396789eff573f0efdefd957416f7103", "fields": {"nom_de_la_commune": "NEUVILLE ST REMY", "libell_d_acheminement": "NEUVILLE ST REMY", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59428"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde4d4ef59e8a1b71ce671a337bb11b379b22abc", "fields": {"nom_de_la_commune": "NEUVILLE SUR ESCAUT", "libell_d_acheminement": "NEUVILLE SUR ESCAUT", "code_postal": "59293", "coordonnees_gps": [50.290457369, 3.35088715056], "code_commune_insee": "59429"}, "geometry": {"type": "Point", "coordinates": [3.35088715056, 50.290457369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d19edf420d5204b36b245d10afaaff3dfd779467", "fields": {"nom_de_la_commune": "OBRECHIES", "libell_d_acheminement": "OBRECHIES", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59442"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f99459fb08fa6fab9634a6e7a80f751c60aec5f", "fields": {"nom_de_la_commune": "OCHTEZEELE", "libell_d_acheminement": "OCHTEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59443"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b3be8d8478c45cfa864e1f4b658ebac447f4523", "fields": {"nom_de_la_commune": "OISY", "libell_d_acheminement": "OISY", "code_postal": "59195", "coordonnees_gps": [50.3552982371, 3.44360395869], "code_commune_insee": "59446"}, "geometry": {"type": "Point", "coordinates": [3.44360395869, 50.3552982371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1811e4902501646182cc06e422e9b644b5e50948", "fields": {"nom_de_la_commune": "ORS", "libell_d_acheminement": "ORS", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59450"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7182d8ebb6b9565779af4894f114d01ac093fb7a", "fields": {"nom_de_la_commune": "PAILLENCOURT", "libell_d_acheminement": "PAILLENCOURT", "code_postal": "59295", "coordonnees_gps": [50.2473645343, 3.27148479456], "code_commune_insee": "59455"}, "geometry": {"type": "Point", "coordinates": [3.27148479456, 50.2473645343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1809551d0c9b35969ee536d949d6d585fe8bc0", "fields": {"nom_de_la_commune": "PRADELLES", "libell_d_acheminement": "PRADELLES", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59469"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cace1a52e70ffb562a9e41f40b29f176ad0e9baa", "fields": {"nom_de_la_commune": "PREUX AU BOIS", "libell_d_acheminement": "PREUX AU BOIS", "code_postal": "59288", "coordonnees_gps": [50.1648610983, 3.65523511962], "code_commune_insee": "59472"}, "geometry": {"type": "Point", "coordinates": [3.65523511962, 50.1648610983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91fcdf38dacc825a7ea977dd1dfb78a565ab5dba", "fields": {"nom_de_la_commune": "PRISCHES", "libell_d_acheminement": "PRISCHES", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59474"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ebe855bea119757d06302673f79cd639f89cbe", "fields": {"nom_de_la_commune": "PROVIN", "libell_d_acheminement": "PROVIN", "code_postal": "59185", "coordonnees_gps": [50.5136397804, 2.91107802772], "code_commune_insee": "59477"}, "geometry": {"type": "Point", "coordinates": [2.91107802772, 50.5136397804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a89ab1cf77db5c33ec92355916d820d49e49513", "fields": {"nom_de_la_commune": "QUERENAING", "libell_d_acheminement": "QUERENAING", "code_postal": "59269", "coordonnees_gps": [50.2865936592, 3.53807571429], "code_commune_insee": "59480"}, "geometry": {"type": "Point", "coordinates": [3.53807571429, 50.2865936592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358188aa81948b7b32fc2c9cb1a4f86c5cd3bf42", "fields": {"nom_de_la_commune": "LE QUESNOY", "libell_d_acheminement": "LE QUESNOY", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59481"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7b14d9faa4c946cda96318528efb95cb035266", "fields": {"nom_de_la_commune": "QUESNOY SUR DEULE", "libell_d_acheminement": "QUESNOY SUR DEULE", "code_postal": "59890", "coordonnees_gps": [50.7190929543, 2.99204569056], "code_commune_insee": "59482"}, "geometry": {"type": "Point", "coordinates": [2.99204569056, 50.7190929543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9110fc3593f325e7cf4d3c8f9ffd67c964664e12", "fields": {"nom_de_la_commune": "RADINGHEM EN WEPPES", "libell_d_acheminement": "RADINGHEM EN WEPPES", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59487"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2f72a4b8b2828a5796ee8520fb8ec178f8710a", "fields": {"nom_de_la_commune": "RAILLENCOURT STE OLLE", "libell_d_acheminement": "RAILLENCOURT STE OLLE", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59488"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab309dca907644c28bf1dafb6b1b7597e3344abc", "fields": {"nom_de_la_commune": "RAINSARS", "libell_d_acheminement": "RAINSARS", "code_postal": "59177", "coordonnees_gps": [50.0919119818, 4.0256341447], "code_commune_insee": "59490"}, "geometry": {"type": "Point", "coordinates": [4.0256341447, 50.0919119818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024dbba82bc9d985137bf7f64391e55eaa25e538", "fields": {"nom_de_la_commune": "RAMOUSIES", "libell_d_acheminement": "RAMOUSIES", "code_postal": "59177", "coordonnees_gps": [50.0919119818, 4.0256341447], "code_commune_insee": "59493"}, "geometry": {"type": "Point", "coordinates": [4.0256341447, 50.0919119818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e7df2cb1c3e2b8f2608191dbb79ac5ea640971", "fields": {"nom_de_la_commune": "RAUCOURT AU BOIS", "libell_d_acheminement": "RAUCOURT AU BOIS", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59494"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0f55126483c0845bda897ce7e0e7e5524ead03", "fields": {"nom_de_la_commune": "ROBERSART", "libell_d_acheminement": "ROBERSART", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59503"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe16c0f1f07ccc1cc06f78ba67e5f8f2fe5c178", "fields": {"nom_de_la_commune": "ROMBIES ET MARCHIPONT", "libell_d_acheminement": "ROMBIES ET MARCHIPONT", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59505"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08515060b00d4cb27f48e99c9030358e019bed33", "fields": {"nom_de_la_commune": "ROMERIES", "libell_d_acheminement": "ROMERIES", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59506"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cbefd106f3878ae621fdf924d403219b6a3e2b", "fields": {"nom_de_la_commune": "ST GEORGES SUR L AA", "libell_d_acheminement": "ST GEORGES SUR L AA", "code_postal": "59820", "coordonnees_gps": [50.98845491, 2.14774710721], "code_commune_insee": "59532"}, "geometry": {"type": "Point", "coordinates": [2.14774710721, 50.98845491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1a64dfedfe674dbfd46159e9f53942bf50a058", "fields": {"nom_de_la_commune": "ST MARTIN SUR ECAILLON", "libell_d_acheminement": "ST MARTIN SUR ECAILLON", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59537"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e84846726cec049749d6c24ed08831bf0174dfc", "fields": {"nom_de_la_commune": "ST REMY DU NORD", "libell_d_acheminement": "ST REMY DU NORD", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59543"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a39713bbaf7a998da9a9b3343e665995b5b5552", "fields": {"nom_de_la_commune": "ST SAULVE", "libell_d_acheminement": "ST SAULVE", "code_postal": "59880", "coordonnees_gps": [50.3751640424, 3.56650612222], "code_commune_insee": "59544"}, "geometry": {"type": "Point", "coordinates": [3.56650612222, 50.3751640424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7dbdc916e77a7700bc0fdc446dbfa776f1777b", "fields": {"nom_de_la_commune": "SANCOURT", "libell_d_acheminement": "SANCOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59552"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a392a070f777ba02a059e03f695bbc8034595ecd", "fields": {"nom_de_la_commune": "SECLIN", "libell_d_acheminement": "SECLIN", "code_postal": "59113", "coordonnees_gps": [50.5467570223, 3.03452224851], "code_commune_insee": "59560"}, "geometry": {"type": "Point", "coordinates": [3.03452224851, 50.5467570223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65363cb3405216fa5204c35354890fca5906a0a2", "fields": {"nom_de_la_commune": "LA SENTINELLE", "libell_d_acheminement": "LA SENTINELLE", "code_postal": "59174", "coordonnees_gps": [50.3488891853, 3.47519285702], "code_commune_insee": "59564"}, "geometry": {"type": "Point", "coordinates": [3.47519285702, 50.3488891853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6424de62f9b7aa3e9963168d40df005c6fc2514", "fields": {"nom_de_la_commune": "SOCX", "libell_d_acheminement": "SOCX", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59570"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896038721f0fde8163542f2b2f9ddd9965e816a6", "fields": {"nom_de_la_commune": "SOMMAING", "libell_d_acheminement": "SOMMAING", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59575"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fccd7d117e8723b8ad4dfe5c03ed5420d4215a64", "fields": {"nom_de_la_commune": "STEENBECQUE", "libell_d_acheminement": "STEENBECQUE", "code_postal": "59189", "coordonnees_gps": [50.6676916499, 2.47249399478], "code_commune_insee": "59578"}, "geometry": {"type": "Point", "coordinates": [2.47249399478, 50.6676916499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e3e222e7cf70734ab596c430271d972eda48d8", "fields": {"nom_de_la_commune": "STRAZEELE", "libell_d_acheminement": "STRAZEELE", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59582"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846440bbc83210892c2d5176cc9573f9ae509c3c", "fields": {"nom_de_la_commune": "TAISNIERES SUR HON", "libell_d_acheminement": "TAISNIERES SUR HON", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59584"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51a1492c519c2bf9fed61f20401f5e701cebe82", "fields": {"nom_de_la_commune": "TERDEGHEM", "libell_d_acheminement": "TERDEGHEM", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59587"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b670876c4b9d39ab80343cc6cd031be30d9a3e", "fields": {"code_postal": "59380", "code_commune_insee": "59588", "libell_d_acheminement": "TETEGHEM COUDEKERQUE VILLAGE", "ligne_5": "COUDEKERQUE VILLAGE", "nom_de_la_commune": "TETEGHEM COUDEKERQUE VILLAGE", "coordonnees_gps": [50.9638309272, 2.43403587067]}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b1337023a881cac29467dc9c4ea4499ac35a13a", "fields": {"nom_de_la_commune": "THUMERIES", "libell_d_acheminement": "THUMERIES", "code_postal": "59239", "coordonnees_gps": [50.4822908809, 3.06005458434], "code_commune_insee": "59592"}, "geometry": {"type": "Point", "coordinates": [3.06005458434, 50.4822908809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0196d296f2f6aad24a72f433db27fb3d01cad7", "fields": {"nom_de_la_commune": "THUN L EVEQUE", "libell_d_acheminement": "THUN L EVEQUE", "code_postal": "59141", "coordonnees_gps": [50.2278844933, 3.31468451895], "code_commune_insee": "59593"}, "geometry": {"type": "Point", "coordinates": [3.31468451895, 50.2278844933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93e35d339ebc6008ac630cafe1d50666d74140eb", "fields": {"nom_de_la_commune": "TILLOY LEZ MARCHIENNES", "libell_d_acheminement": "TILLOY LEZ MARCHIENNES", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59596"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4765a40f6209c198a018434bed82810358329af", "fields": {"nom_de_la_commune": "TOURCOING", "libell_d_acheminement": "TOURCOING", "code_postal": "59200", "coordonnees_gps": [50.7261026624, 3.15984468995], "code_commune_insee": "59599"}, "geometry": {"type": "Point", "coordinates": [3.15984468995, 50.7261026624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99cfd6548fd2db17340031048e2791290698e607", "fields": {"nom_de_la_commune": "UXEM", "libell_d_acheminement": "UXEM", "code_postal": "59229", "coordonnees_gps": [51.0183217327, 2.46486695201], "code_commune_insee": "59605"}, "geometry": {"type": "Point", "coordinates": [2.46486695201, 51.0183217327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05bb8486b3d353dec0030395904f024daa969eb", "fields": {"nom_de_la_commune": "VENDEVILLE", "libell_d_acheminement": "VENDEVILLE", "code_postal": "59175", "coordonnees_gps": [50.5711630173, 3.06780468809], "code_commune_insee": "59609"}, "geometry": {"type": "Point", "coordinates": [3.06780468809, 50.5711630173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da44667d14471f0977f05eaff3d007baed78a633", "fields": {"nom_de_la_commune": "VERLINGHEM", "libell_d_acheminement": "VERLINGHEM", "code_postal": "59237", "coordonnees_gps": [50.682527052, 3.00082043063], "code_commune_insee": "59611"}, "geometry": {"type": "Point", "coordinates": [3.00082043063, 50.682527052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ca1400a8971f559568aac06a71ed6e26e0e035", "fields": {"nom_de_la_commune": "VIEUX RENG", "libell_d_acheminement": "VIEUX RENG", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59618"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e69a552e1e20d33d24434aa4fd686112975b32f", "fields": {"nom_de_la_commune": "VILLERS EN CAUCHIES", "libell_d_acheminement": "VILLERS EN CAUCHIES", "code_postal": "59188", "coordonnees_gps": [50.2124042637, 3.41180746227], "code_commune_insee": "59622"}, "geometry": {"type": "Point", "coordinates": [3.41180746227, 50.2124042637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79e1ff3f6db9ecfb8c1e831ae85f07cc1f0538b", "fields": {"nom_de_la_commune": "WAHAGNIES", "libell_d_acheminement": "WAHAGNIES", "code_postal": "59261", "coordonnees_gps": [50.4845027228, 3.02972071236], "code_commune_insee": "59630"}, "geometry": {"type": "Point", "coordinates": [3.02972071236, 50.4845027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4804cc243165e6eaa22dc1bf8ebef68e599254a0", "fields": {"nom_de_la_commune": "AMONT ET EFFRENEY", "libell_d_acheminement": "AMONT ET EFFRENEY", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70016"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da4669eccd9512597e77d674e0ca93f7f1fbe14", "fields": {"nom_de_la_commune": "ARBECEY", "libell_d_acheminement": "ARBECEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70025"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e7b15e3707115b998547a307abff1711a70f3f3", "fields": {"nom_de_la_commune": "ARC LES GRAY", "libell_d_acheminement": "ARC LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70026"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a90214371b3c78c44474a8c4e3826a6f639afe85", "fields": {"nom_de_la_commune": "ARGILLIERES", "libell_d_acheminement": "ARGILLIERES", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70027"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ace62122927d052dd5708845fcd90c0b275425f", "fields": {"nom_de_la_commune": "ARPENANS", "libell_d_acheminement": "ARPENANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70029"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae69b9f779714bbef8ad041ef85ae1e678036e6f", "fields": {"code_postal": "70110", "code_commune_insee": "70031", "libell_d_acheminement": "ATHESANS ETROITEFONTAINE", "ligne_5": "ETROITEFONTAINE", "nom_de_la_commune": "ATHESANS ETROITEFONTAINE", "coordonnees_gps": [47.5606005441, 6.44969851367]}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045e8c4fd68ce86314fb7fff79247596de3796ac", "fields": {"nom_de_la_commune": "BARD LES PESMES", "libell_d_acheminement": "BARD LES PESMES", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70048"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfa0b5d68907d64ff88a2dc749d6de609acd0a5", "fields": {"nom_de_la_commune": "BATTRANS", "libell_d_acheminement": "BATTRANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70054"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94b8b8b7fd03fa46db04c6d262d00a68a3e2371d", "fields": {"nom_de_la_commune": "BAUDONCOURT", "libell_d_acheminement": "BAUDONCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70055"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c81729752d1f66aefe03fe5e740a73ab2ec581b", "fields": {"nom_de_la_commune": "BETONCOURT ST PANCRAS", "libell_d_acheminement": "BETONCOURT ST PANCRAS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70069"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc5093b21a5659e02c17ae476bfbc2111420f60", "fields": {"nom_de_la_commune": "BETONCOURT SUR MANCE", "libell_d_acheminement": "BETONCOURT SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70070"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2ee0f6fa7ea74bae5c6fb82babcede28a4e0759", "fields": {"nom_de_la_commune": "BOUHANS LES MONTBOZON", "libell_d_acheminement": "BOUHANS LES MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70082"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ab901c0db905ead754f10c827691a24898cb2b", "fields": {"nom_de_la_commune": "BOULT", "libell_d_acheminement": "BOULT", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70085"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd0e58d0fd69e7e410f666d92bbcae54f1e0b22", "fields": {"nom_de_la_commune": "BOURSIERES", "libell_d_acheminement": "BOURSIERES", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70090"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c380e8697040bc6c887e98175f6c02400c488e8c", "fields": {"nom_de_la_commune": "BOUSSERAUCOURT", "libell_d_acheminement": "BOUSSERAUCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70091"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83fba4fdc6ecf415bc247df7e1942a77cf5718d1", "fields": {"nom_de_la_commune": "BREUCHOTTE", "libell_d_acheminement": "BREUCHOTTE", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70094"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f607b0a124e9bedc6b7e6c01046208455c3a2c", "fields": {"nom_de_la_commune": "BROTTE LES LUXEUIL", "libell_d_acheminement": "BROTTE LES LUXEUIL", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70098"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15950b58f00e6a8277bebdf0fdb144505fd29f87", "fields": {"nom_de_la_commune": "CENANS", "libell_d_acheminement": "CENANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70113"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a0c55b914003f67457af18c4c6f8fbf2654bec", "fields": {"nom_de_la_commune": "CERRE LES NOROY", "libell_d_acheminement": "CERRE LES NOROY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70115"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ce9640bb6c1afb4c53a57b05331316ff291eb3", "fields": {"nom_de_la_commune": "CHAMPAGNEY", "libell_d_acheminement": "CHAMPAGNEY", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70120"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289a94612dc94b84f22d3bb0d63482452c464aeb", "fields": {"nom_de_la_commune": "CHAMPLITTE", "libell_d_acheminement": "CHAMPLITTE", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70122"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5623d3952e6bf0b8da3c38b3bf765a453e14cd09", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "LEFFOND", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253520827d119beb5243a2a434725222ca4b4a1a", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "NEUVELLE LES CHAMPLITTE", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05148ffcee159a54dbabb0e150c1c0c13a670bc4", "fields": {"nom_de_la_commune": "CHAMPTONNAY", "libell_d_acheminement": "CHAMPTONNAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70124"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea08b6780f3b2eac882d46158d8e4827d43b6a8", "fields": {"nom_de_la_commune": "CHAMPVANS", "libell_d_acheminement": "CHAMPVANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70125"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c9cfc4f18315a7d7d2cf576a89a72f223314c3", "fields": {"nom_de_la_commune": "LA CHAPELLE LES LUXEUIL", "libell_d_acheminement": "LA CHAPELLE LES LUXEUIL", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70128"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9729b88f0ecf1813a2c103e53803cba3d0cc8e69", "fields": {"nom_de_la_commune": "CHATENEY", "libell_d_acheminement": "CHATENEY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70140"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2ec67058cbc6a20e3958fe55de8386f5c9e80e", "fields": {"nom_de_la_commune": "CHAUVIREY LE CHATEL", "libell_d_acheminement": "CHAUVIREY LE CHATEL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70143"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1945e1bbd57a0a08f496fe92b4333c130193326", "fields": {"nom_de_la_commune": "CHAUVIREY LE VIEIL", "libell_d_acheminement": "CHAUVIREY LE VIEIL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70144"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed08b588e23a334140481aeb9fb5c4c6a0d0984", "fields": {"nom_de_la_commune": "CHEVIGNEY", "libell_d_acheminement": "CHEVIGNEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70151"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e7c3b9c4434c1d51ce29076bafcac1d592b76a", "fields": {"nom_de_la_commune": "CHOYE", "libell_d_acheminement": "CHOYE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70152"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f34226970e9e0713fd6eb370749df1fb32e134c", "fields": {"nom_de_la_commune": "CINTREY", "libell_d_acheminement": "CINTREY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70153"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2764909f3546749271f40115bc6ec67aaa8e5f9a", "fields": {"nom_de_la_commune": "COISEVAUX", "libell_d_acheminement": "COISEVAUX", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70160"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d9acb196dad93c6fb92896cb9cdc9b34b8a3fc", "fields": {"nom_de_la_commune": "CONFLANDEY", "libell_d_acheminement": "CONFLANDEY", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70167"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9384fec17abb39b989568606f4a71b8021a43079", "fields": {"nom_de_la_commune": "CORBENAY", "libell_d_acheminement": "CORBENAY", "code_postal": "70320", "coordonnees_gps": [47.9247841994, 6.33509809591], "code_commune_insee": "70171"}, "geometry": {"type": "Point", "coordinates": [6.33509809591, 47.9247841994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0907c9bb223db723fe2489b23c5a18f5eb0fb832", "fields": {"nom_de_la_commune": "LA CORBIERE", "libell_d_acheminement": "LA CORBIERE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70172"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec67aa7ea075dd54c60922a2101631197cffe1fb", "fields": {"nom_de_la_commune": "CORDONNET", "libell_d_acheminement": "CORDONNET", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70174"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5660da928b3a958d31278efe9bcb97b73df59508", "fields": {"nom_de_la_commune": "COULEVON", "libell_d_acheminement": "COULEVON", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70179"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d808d74e1efad6ad6a569bf213ffc182685bd597", "fields": {"nom_de_la_commune": "COURTESOULT ET GATEY", "libell_d_acheminement": "COURTESOULT ET GATEY", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70183"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3fc02d6f3f4187818df453c88028a46d1e990b", "fields": {"nom_de_la_commune": "LA CREUSE", "libell_d_acheminement": "LA CREUSE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70186"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282c88b97bcea273d3d0511ebb416875f263c369", "fields": {"nom_de_la_commune": "CREVENEY", "libell_d_acheminement": "CREVENEY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70188"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7309b088c351e9e60a365bbc8be3d51425fe919e", "fields": {"nom_de_la_commune": "CULT", "libell_d_acheminement": "CULT", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70193"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33346c61520d4965489badb0f48b052b52b3122b", "fields": {"nom_de_la_commune": "DAMPIERRE SUR LINOTTE", "libell_d_acheminement": "DAMPIERRE SUR LINOTTE", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70197"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fa97790bf039cbafc34e82b3ad2c78ef12d3c3", "fields": {"code_postal": "70230", "code_commune_insee": "70197", "libell_d_acheminement": "DAMPIERRE SUR LINOTTE", "ligne_5": "TREVEY", "nom_de_la_commune": "DAMPIERRE SUR LINOTTE", "coordonnees_gps": [47.4966875875, 6.24277918181]}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fa44ac2f79082dcb7e904310288e2271b7af33", "fields": {"nom_de_la_commune": "DAMPIERRE SUR SALON", "libell_d_acheminement": "DAMPIERRE SUR SALON", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70198"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0a076a71e9c27005a0dab8b5995597ca9a4399", "fields": {"nom_de_la_commune": "DEMANGEVELLE", "libell_d_acheminement": "DEMANGEVELLE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70202"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68dbd1fc77141ce3200726a385c5b03c4088ff08", "fields": {"nom_de_la_commune": "ECHENOZ LA MELINE", "libell_d_acheminement": "ECHENOZ LA MELINE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70207"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc342817e42785c34d11c1404e7eb076bf76730f", "fields": {"nom_de_la_commune": "ECHENOZ LE SEC", "libell_d_acheminement": "ECHENOZ LE SEC", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70208"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6a7f3406fe52a230c2cd473c67a36a993c8e6a", "fields": {"nom_de_la_commune": "EQUEVILLEY", "libell_d_acheminement": "EQUEVILLEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70214"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc6053d66f04eed0a50c36bc6652247e20e25ca", "fields": {"nom_de_la_commune": "ESMOULIERES", "libell_d_acheminement": "ESMOULIERES", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70217"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67b62a6d58284008cebdc51cc80e5b74ac18121", "fields": {"nom_de_la_commune": "ETRELLES ET LA MONTBLEUSE", "libell_d_acheminement": "ETRELLES ET LA MONTBLEUSE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70222"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a3b44742c03fd8f7abb660a211205f0d109043", "fields": {"nom_de_la_commune": "FAVERNEY", "libell_d_acheminement": "FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70228"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce762e322c977c0334edf426ca8e621e684c4f65", "fields": {"nom_de_la_commune": "FEDRY", "libell_d_acheminement": "FEDRY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70230"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8c851b5b9cd23d323aad52b91e80821771d4a0", "fields": {"nom_de_la_commune": "FERRIERES LES RAY", "libell_d_acheminement": "FERRIERES LES RAY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70231"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5703229a3548d4aa1893e44e3ad831bc02ef1c", "fields": {"nom_de_la_commune": "LES FESSEY", "libell_d_acheminement": "LES FESSEY", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70233"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7111755402bb056c17330df6fa36c5c34adf9b", "fields": {"nom_de_la_commune": "FONTENOIS LES MONTBOZON", "libell_d_acheminement": "FONTENOIS LES MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70243"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cc697a1f22714eab79658cbf20d9f7c82c9363", "fields": {"code_postal": "70600", "code_commune_insee": "70247", "libell_d_acheminement": "FOUVENT ST ANDOCHE", "ligne_5": "FOUVENT LE BAS", "nom_de_la_commune": "FOUVENT ST ANDOCHE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765dd78edb79ffe7681622e4483e4cb0a8f7541f", "fields": {"nom_de_la_commune": "FRANCOURT", "libell_d_acheminement": "FRANCOURT", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70251"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4927d79e740ea164369305936f2019474ef67cd6", "fields": {"nom_de_la_commune": "GOUHENANS", "libell_d_acheminement": "GOUHENANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70271"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf97b8017b2da7fefd447294c9938269f1f1ad9", "fields": {"nom_de_la_commune": "GRAY LA VILLE", "libell_d_acheminement": "GRAY LA VILLE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70280"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "773bcc90de3e94f504c0bfec1327ac0b6fe746fb", "fields": {"nom_de_la_commune": "HAUT DU THEM CHATEAU LAMBERT", "libell_d_acheminement": "HAUT DU THEM CHATEAU LAMBERT", "code_postal": "70440", "coordonnees_gps": [47.8263854039, 6.71661809603], "code_commune_insee": "70283"}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba241e333e2d3834fd7f5cfc994c86f922bb524", "fields": {"nom_de_la_commune": "HAUTEVELLE", "libell_d_acheminement": "HAUTEVELLE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70284"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc9474c60c182deff94e7f667f63b4e0fa557d79", "fields": {"nom_de_la_commune": "IGNY", "libell_d_acheminement": "IGNY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70289"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493668b9d44f6d3777ed86a49f7c002d40ac5641", "fields": {"nom_de_la_commune": "JASNEY", "libell_d_acheminement": "JASNEY", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70290"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0fdbe31bc9268171d10a52b7cad6198950532e", "fields": {"code_postal": "70500", "code_commune_insee": "70292", "libell_d_acheminement": "JUSSEY", "ligne_5": "NOROY LES JUSSEY", "nom_de_la_commune": "JUSSEY", "coordonnees_gps": [47.8418489668, 5.8916124162]}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ef125b0798eeab04f9428827ad1a38703d6538", "fields": {"nom_de_la_commune": "LINEXERT", "libell_d_acheminement": "LINEXERT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70304"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a254cb75ba6306a8bc06c94a5e002e74b12645", "fields": {"nom_de_la_commune": "LOMONT", "libell_d_acheminement": "LOMONT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70306"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cf6b23bc3aff62145bd5e0c79e105aac84e772", "fields": {"nom_de_la_commune": "LA LONGINE", "libell_d_acheminement": "LA LONGINE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70308"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5405fe1ebe4367412644b33e1b9224adb8a1e304", "fields": {"nom_de_la_commune": "LOULANS VERCHAMP", "libell_d_acheminement": "LOULANS VERCHAMP", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70309"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b83665bdf9276624415cabc2bf82d4560111fa", "fields": {"nom_de_la_commune": "LUZE", "libell_d_acheminement": "LUZE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70312"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ee2af87beab39ed836cdfaa3c8eef3296ac0cb", "fields": {"nom_de_la_commune": "MAGNY DANIGON", "libell_d_acheminement": "MAGNY DANIGON", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70318"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcad35b69a534c419dcf0e9b5bc6354c6ed53f0f", "fields": {"nom_de_la_commune": "MAILLERONCOURT CHARETTE", "libell_d_acheminement": "MAILLERONCOURT CHARETTE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70322"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8daedddda11635c71b3dbeaa762c6e45306370e", "fields": {"nom_de_la_commune": "MAILLERONCOURT ST PANCRAS", "libell_d_acheminement": "MAILLERONCOURT ST PANCRAS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70323"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e83a124fdc73cb9083ba222f2ca982d033a92c", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70325"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8299394e4e31f701ad7ec766f30f1252c9aff84e", "fields": {"nom_de_la_commune": "MELISEY", "libell_d_acheminement": "MELISEY", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70339"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5e3f9047c91a49bca6fa920dae72b5c0b64a59", "fields": {"nom_de_la_commune": "MENOUX", "libell_d_acheminement": "MENOUX", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70341"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e830dd12f2cc1c8eb3812c1f47a2349d3358ef", "fields": {"nom_de_la_commune": "MERSUAY", "libell_d_acheminement": "MERSUAY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70343"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5507e09973a208163f25276535a11ebe0d25633f", "fields": {"nom_de_la_commune": "MOFFANS ET VACHERESSE", "libell_d_acheminement": "MOFFANS ET VACHERESSE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70348"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f61c77c707605c2d3255824f000f26d4beaf81d", "fields": {"nom_de_la_commune": "MOIMAY", "libell_d_acheminement": "MOIMAY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70349"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef59d1009e088cb802bf6c681525fd520e5d239", "fields": {"nom_de_la_commune": "MONTUREUX LES BAULAY", "libell_d_acheminement": "MONTUREUX LES BAULAY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70372"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb0b65366624669c655ac5a2caf59a04265b98b", "fields": {"nom_de_la_commune": "NANTILLY", "libell_d_acheminement": "NANTILLY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70376"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67b2b8f4d2fc44ccce68c306bd458746e177700", "fields": {"nom_de_la_commune": "NEUVELLE LES LA CHARITE", "libell_d_acheminement": "NEUVELLE LES LA CHARITE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70384"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84608d7edd432136521ab7a8a84c8a197b2fcd6", "fields": {"nom_de_la_commune": "LA NEUVELLE LES SCEY", "libell_d_acheminement": "LA NEUVELLE LES SCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70386"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c788ae3b2a21e9dffd3c41612603c96337f40b", "fields": {"nom_de_la_commune": "NOIDANS LES VESOUL", "libell_d_acheminement": "NOIDANS LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70388"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b3b551240a9ad5a2e6aeb852e74ea7aead91ad", "fields": {"nom_de_la_commune": "OPPENANS", "libell_d_acheminement": "OPPENANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70395"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5a515961e26a08486414c6cfe5a0be03c37b1f", "fields": {"nom_de_la_commune": "ORMOICHE", "libell_d_acheminement": "ORMOICHE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70398"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2000ddf0255e89087c91229c1e7fc4b6154214", "fields": {"nom_de_la_commune": "PALANTE", "libell_d_acheminement": "PALANTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70403"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ada525e5815f749f311737bc757e7aa408ce12", "fields": {"nom_de_la_commune": "PERCEY LE GRAND", "libell_d_acheminement": "PERCEY LE GRAND", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70406"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0325b877494aa0f4478dd0b91644a0ccb11e54f2", "fields": {"nom_de_la_commune": "PESMES", "libell_d_acheminement": "PESMES", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70408"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e82350245a69f7e783400bf0df85f00c6f8d33a", "fields": {"nom_de_la_commune": "PLAINEMONT", "libell_d_acheminement": "PLAINEMONT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70412"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a7f806f1d1bd494735b0ff0371e04150f0ec86", "fields": {"nom_de_la_commune": "PLANCHER BAS", "libell_d_acheminement": "PLANCHER BAS", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70413"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "916e63c038ff7ead3e211415deaf0d53253eaaad", "fields": {"nom_de_la_commune": "PONT DU BOIS", "libell_d_acheminement": "PONT DU BOIS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70419"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069bda3dbee4aebffef792292a2b1c9b228a5ad0", "fields": {"nom_de_la_commune": "POYANS", "libell_d_acheminement": "POYANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70422"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d923aaa16a7c6ee5dcb4c15b4a68050115e6ec3d", "fields": {"nom_de_la_commune": "LA PROISELIERE ET LANGLE", "libell_d_acheminement": "LA PROISELIERE ET LANGLE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70425"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c2229bff36c47947b1a0de9c40baff85dc48f9c", "fields": {"nom_de_la_commune": "PURGEROT", "libell_d_acheminement": "PURGEROT", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70427"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656bfe9688b0c56647f9ea43be1dbfb3a137e344", "fields": {"nom_de_la_commune": "QUENOCHE", "libell_d_acheminement": "QUENOCHE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70431"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4831eba97785bd1c8857ffa2f80188d9391ebe", "fields": {"nom_de_la_commune": "LA GRANDE RESIE", "libell_d_acheminement": "LA GRANDE RESIE", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70443"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e56e1cec52a5519f5748170119d48726117883", "fields": {"nom_de_la_commune": "ROCHE ET RAUCOURT", "libell_d_acheminement": "ROCHE ET RAUCOURT", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70448"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae99f5baeb2138db1d05e403c7af09f75f71abed", "fields": {"nom_de_la_commune": "ST BRESSON", "libell_d_acheminement": "ST BRESSON", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70460"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e07c9ff4f7af67025169eb3c8e72c2ca98de3fc", "fields": {"nom_de_la_commune": "ST BROING", "libell_d_acheminement": "ST BROING", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70461"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1dcc4ba28ee37568cebb39c433fbb79a7bf928a", "fields": {"nom_de_la_commune": "GOLANCOURT", "libell_d_acheminement": "GOLANCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60278"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf4ef29bae3f0c7a854a1156cad7ace780d14ca", "fields": {"nom_de_la_commune": "GOURNAY SUR ARONDE", "libell_d_acheminement": "GOURNAY SUR ARONDE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60281"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb7bfb51e8af55376378c194b8f411e35fcc55d", "fields": {"nom_de_la_commune": "GRANDFRESNOY", "libell_d_acheminement": "GRANDFRESNOY", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60284"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac56211203a16686641523fa93cd72dca96f672f", "fields": {"nom_de_la_commune": "GRANDRU", "libell_d_acheminement": "GRANDRU", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60287"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921080c396bf9d7aba5bf8fff3e239d786656176", "fields": {"nom_de_la_commune": "HALLOY", "libell_d_acheminement": "HALLOY", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60295"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8ac5b182500fe7b31149f590cc27637987ff5b", "fields": {"nom_de_la_commune": "HANVOILE", "libell_d_acheminement": "HANVOILE", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60298"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c7210a9a69e78dc08ebc59290c9ed9cf345071", "fields": {"nom_de_la_commune": "HAUCOURT", "libell_d_acheminement": "HAUCOURT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60301"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbb1bdc4895d4d55e80e04e571c01648576fffd", "fields": {"nom_de_la_commune": "HAUDIVILLERS", "libell_d_acheminement": "HAUDIVILLERS", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60302"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386b666c38007db916ec9e5e4b7a23b497118351", "fields": {"nom_de_la_commune": "HEILLES", "libell_d_acheminement": "HEILLES", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60307"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356f0583359082fb42aa09db76efea03669e8723", "fields": {"nom_de_la_commune": "HODENC EN BRAY", "libell_d_acheminement": "HODENC EN BRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60315"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ccc7213b731d1e337b3138c04a5f2444b334c07", "fields": {"nom_de_la_commune": "JAULZY", "libell_d_acheminement": "JAULZY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60324"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bd90cbdcf0b007756f8cadd5f5e17d90729015", "fields": {"nom_de_la_commune": "JOUY SOUS THELLE", "libell_d_acheminement": "JOUY SOUS THELLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60327"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d0030bb0cea05e3a4d9b152feaca1980d0451c", "fields": {"nom_de_la_commune": "LABERLIERE", "libell_d_acheminement": "LABERLIERE", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60329"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fafb367461183f42bcebe2d8d59748ed778cbc", "fields": {"nom_de_la_commune": "LAGNY LE SEC", "libell_d_acheminement": "LAGNY LE SEC", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60341"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34223221c62ac3d16ed7ed4caf456e55a22644e", "fields": {"nom_de_la_commune": "LALANDE EN SON", "libell_d_acheminement": "LALANDE EN SON", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60343"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36289b772e9222b4018846f266793afd19ad3471", "fields": {"nom_de_la_commune": "LALANDELLE", "libell_d_acheminement": "LALANDELLE", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60344"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b8c4bda2ff49de2722db509381dd10c51b8d1e", "fields": {"nom_de_la_commune": "LEGLANTIERS", "libell_d_acheminement": "LEGLANTIERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60357"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebe2a79c94b49376a5c8feefb91dd9d995a005c", "fields": {"nom_de_la_commune": "LIANCOURT ST PIERRE", "libell_d_acheminement": "LIANCOURT ST PIERRE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60361"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a55d02328ce04d9d4ca4bc1123ea457316dd41f", "fields": {"nom_de_la_commune": "MAREST SUR MATZ", "libell_d_acheminement": "MAREST SUR MATZ", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60378"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f627115d008a7e5f9ef67829bc7e92ce5ecf88", "fields": {"nom_de_la_commune": "MAREUIL SUR OURCQ", "libell_d_acheminement": "MAREUIL SUR OURCQ", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60380"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b2252532289cea5f58ae6329ab53db3085a85f", "fields": {"nom_de_la_commune": "MARGNY LES COMPIEGNE", "libell_d_acheminement": "MARGNY LES COMPIEGNE", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60382"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ade555141e3a729868afa243b28e9172a99148b", "fields": {"nom_de_la_commune": "MARGNY SUR MATZ", "libell_d_acheminement": "MARGNY SUR MATZ", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60383"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5340ec0a77885916b4f08e0ac39e6e3d893ed3b6", "fields": {"nom_de_la_commune": "MERU", "libell_d_acheminement": "MERU", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60395"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffbf75e4e798a40a1d6aa79ac05b44d932347ce", "fields": {"nom_de_la_commune": "LE MESNIL CONTEVILLE", "libell_d_acheminement": "LE MESNIL CONTEVILLE", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60397"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a04ec257035374ef5c0a2928661475a8be0ad66", "fields": {"nom_de_la_commune": "MILLY SUR THERAIN", "libell_d_acheminement": "MILLY SUR THERAIN", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60403"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8601c4eace8006d6632e8afe46d923ac73b559f9", "fields": {"nom_de_la_commune": "MONCEAUX", "libell_d_acheminement": "MONCEAUX", "code_postal": "60940", "coordonnees_gps": [49.322780883, 2.53673238341], "code_commune_insee": "60406"}, "geometry": {"type": "Point", "coordinates": [2.53673238341, 49.322780883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619f8a06e0329bf254b5603a421c7114e40ffe7d", "fields": {"nom_de_la_commune": "MONCHY HUMIERES", "libell_d_acheminement": "MONCHY HUMIERES", "code_postal": "60113", "coordonnees_gps": [49.468392159, 2.74988902801], "code_commune_insee": "60408"}, "geometry": {"type": "Point", "coordinates": [2.74988902801, 49.468392159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824d42da2418f05bb491277eba241abedd37b7e6", "fields": {"nom_de_la_commune": "MONDESCOURT", "libell_d_acheminement": "MONDESCOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60410"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db78fabafa0166da0dedd1fd22ab217c6c0f1b9", "fields": {"nom_de_la_commune": "MONTATAIRE", "libell_d_acheminement": "MONTATAIRE", "code_postal": "60160", "coordonnees_gps": [49.2602503231, 2.43049140584], "code_commune_insee": "60414"}, "geometry": {"type": "Point", "coordinates": [2.43049140584, 49.2602503231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0249a3c323c1c3b73188f68de63d816e3adeb69", "fields": {"nom_de_la_commune": "MORLINCOURT", "libell_d_acheminement": "MORLINCOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60431"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20580de6b3b7325a622f7e827c9d1a8f928641c", "fields": {"nom_de_la_commune": "MORTEFONTAINE EN THELLE", "libell_d_acheminement": "MORTEFONTAINE EN THELLE", "code_postal": "60570", "coordonnees_gps": [49.2740563361, 2.16701620037], "code_commune_insee": "60433"}, "geometry": {"type": "Point", "coordinates": [2.16701620037, 49.2740563361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919b281ed636cc8f8660c06ebf51a9a2c3e10bd9", "fields": {"nom_de_la_commune": "MUIDORGE", "libell_d_acheminement": "MUIDORGE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60442"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65193dccf9698c1d101bb892f531abdd9bf62cf9", "fields": {"nom_de_la_commune": "NAMPCEL", "libell_d_acheminement": "NAMPCEL", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60445"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11a85b2cff882f79d04041482e2e0fb51526437", "fields": {"nom_de_la_commune": "NANTEUIL LE HAUDOUIN", "libell_d_acheminement": "NANTEUIL LE HAUDOUIN", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60446"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706d42dd859d416b808c52c17c95d977e1367a32", "fields": {"nom_de_la_commune": "NEUILLY EN THELLE", "libell_d_acheminement": "NEUILLY EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60450"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "070ac02700014f76dfd2d54097ac9b58caa74509", "fields": {"nom_de_la_commune": "NOVILLERS", "libell_d_acheminement": "NOVILLERS", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60469"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f34d1558361dc9925515f3d0472f760cf0f19b", "fields": {"nom_de_la_commune": "OGNON", "libell_d_acheminement": "OGNON", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60475"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e93f0a025a160012c389b17fdbad7a65f30360", "fields": {"nom_de_la_commune": "OROER", "libell_d_acheminement": "OROER", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60480"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f11fdcee83348a92e32ca105545c64b0b60e0b8", "fields": {"nom_de_la_commune": "PARNES", "libell_d_acheminement": "PARNES", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60487"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4550e60101eca79d8414ef7bba30537f5ca8ebd5", "fields": {"nom_de_la_commune": "PIERREFITTE EN BEAUVAISIS", "libell_d_acheminement": "PIERREFITTE EN BEAUVAISIS", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60490"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75bc56bb00f6a2ed25adec481aa3ac5104e47fa9", "fields": {"nom_de_la_commune": "LE PLESSIER SUR ST JUST", "libell_d_acheminement": "LE PLESSIER SUR ST JUST", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60498"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c0071b9c5009e46c11108d585fec8dd74236c1", "fields": {"nom_de_la_commune": "LE PLESSIS BELLEVILLE", "libell_d_acheminement": "LE PLESSIS BELLEVILLE", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60500"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3e178604236a95801c789f1841f341c9d856b4", "fields": {"nom_de_la_commune": "PONCHON", "libell_d_acheminement": "PONCHON", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60504"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c024ce52f51e7fea71c6c6d8b84a50b5dbd5fd2", "fields": {"nom_de_la_commune": "PONT L EVEQUE", "libell_d_acheminement": "PONT L EVEQUE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60506"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99de93ffa11dd678bf7b2a2dda4e54d5ba96048f", "fields": {"nom_de_la_commune": "PRECY SUR OISE", "libell_d_acheminement": "PRECY SUR OISE", "code_postal": "60460", "coordonnees_gps": [49.2147031001, 2.35428386438], "code_commune_insee": "60513"}, "geometry": {"type": "Point", "coordinates": [2.35428386438, 49.2147031001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2ab67c9bd534adbfd21b07e8bd7d8cc5620380", "fields": {"nom_de_la_commune": "PREVILLERS", "libell_d_acheminement": "PREVILLERS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60514"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c06285fbdfecc771bca19cc9e85aabf09b5685f9", "fields": {"nom_de_la_commune": "RESSONS L ABBAYE", "libell_d_acheminement": "RESSONS L ABBAYE", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60532"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf6eafb4082ec10a9a4dca75159658ec84a3366f", "fields": {"nom_de_la_commune": "RETHONDES", "libell_d_acheminement": "RETHONDES", "code_postal": "60153", "coordonnees_gps": [49.4286489851, 2.94512781411], "code_commune_insee": "60534"}, "geometry": {"type": "Point", "coordinates": [2.94512781411, 49.4286489851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf80086bcc84ed41247973d7c69d57bd67ba7ac1", "fields": {"nom_de_la_commune": "ST AUBIN SOUS ERQUERY", "libell_d_acheminement": "ST AUBIN SOUS ERQUERY", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60568"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "025767e905d1c01bebc8fb2151dabd094be02693", "fields": {"nom_de_la_commune": "ST CREPIN AUX BOIS", "libell_d_acheminement": "ST CREPIN AUX BOIS", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60569"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271fc466b82a9718506fb9e88b8846c681b47036", "fields": {"nom_de_la_commune": "STE EUSOYE", "libell_d_acheminement": "STE EUSOYE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60573"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0a08e6dfd4efefc87fcc3e07de8793b538683c", "fields": {"nom_de_la_commune": "ST MAXIMIN", "libell_d_acheminement": "ST MAXIMIN", "code_postal": "60740", "coordonnees_gps": [49.2238838207, 2.45915508591], "code_commune_insee": "60589"}, "geometry": {"type": "Point", "coordinates": [2.45915508591, 49.2238838207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f01c4e5808dd8c9107b0ba467be80a7dbdd6eb7", "fields": {"nom_de_la_commune": "ST PIERRE LES BITRY", "libell_d_acheminement": "ST PIERRE LES BITRY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60593"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566609bba6ac00974bcd8d748ff5d5d53c0b73b3", "fields": {"nom_de_la_commune": "ST SAMSON LA POTERIE", "libell_d_acheminement": "ST SAMSON LA POTERIE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60596"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636cebe79416f81ba459b8fe45cc17bb9d661e44", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60597"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658bce178d34fe64e2d935dcf71b251a8754eab3", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60598"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd2ec9f4c281ed915ef6100e9c85fafe2cb9842", "fields": {"nom_de_la_commune": "ST VAAST LES MELLO", "libell_d_acheminement": "ST VAAST LES MELLO", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60601"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c6d794abf14e6e9a35d80737b859690f9547ed", "fields": {"nom_de_la_commune": "LE SAULCHOY", "libell_d_acheminement": "LE SAULCHOY", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60608"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b15fd1c01f016dbe9d59881e3fffdbacf8366351", "fields": {"nom_de_la_commune": "SAVIGNIES", "libell_d_acheminement": "SAVIGNIES", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60609"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11beeec462f7361d015127b6005eaab160c64641", "fields": {"nom_de_la_commune": "SERANS", "libell_d_acheminement": "SERANS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60614"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1dea39fe629ecbf58155ed639cbaa0d3b85b83", "fields": {"nom_de_la_commune": "SOLENTE", "libell_d_acheminement": "SOLENTE", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60621"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18e9a2734d0b3da25d310f7229be82375032d36", "fields": {"nom_de_la_commune": "SONGEONS", "libell_d_acheminement": "SONGEONS", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60623"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfaaf112fea2f7694a7f5a67d119c40bacaa6f98", "fields": {"nom_de_la_commune": "THERDONNE", "libell_d_acheminement": "THERDONNE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60628"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d987f84e3bdd8a90c0c6493bdd1a54145987905", "fields": {"nom_de_la_commune": "THIBIVILLERS", "libell_d_acheminement": "THIBIVILLERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60630"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc208a0a183053f9c63366904b2fde620487931", "fields": {"nom_de_la_commune": "THIEUX", "libell_d_acheminement": "THIEUX", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60634"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2741f19aa1716001b35ff3dc6293bfedd072a047", "fields": {"nom_de_la_commune": "THURY EN VALOIS", "libell_d_acheminement": "THURY EN VALOIS", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60637"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebe648dcce05b19553a9d92b9d8513f3d156468", "fields": {"nom_de_la_commune": "TRACY LE MONT", "libell_d_acheminement": "TRACY LE MONT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60641"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a69264a86c4e636b54cc4d205456e545e4d38c4", "fields": {"code_postal": "60170", "code_commune_insee": "60641", "libell_d_acheminement": "TRACY LE MONT", "ligne_5": "OLLENCOURT", "nom_de_la_commune": "TRACY LE MONT", "coordonnees_gps": [49.4914347292, 2.97702281469]}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c207ec41f2a4364c7c7b8f6c8537bce735aa4f8", "fields": {"nom_de_la_commune": "TRICOT", "libell_d_acheminement": "TRICOT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60643"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67a6f94d3afabbde548c7e0cf23a1abde9d5e39", "fields": {"nom_de_la_commune": "TRIE LA VILLE", "libell_d_acheminement": "TRIE LA VILLE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60645"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f6874e88bda825970d0b6cc96152a9db588cba", "fields": {"nom_de_la_commune": "TROUSSENCOURT", "libell_d_acheminement": "TROUSSENCOURT", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60648"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9f5f9e72030efb4529b6a85ad7cd9d94d68837", "fields": {"nom_de_la_commune": "VALDAMPIERRE", "libell_d_acheminement": "VALDAMPIERRE", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60652"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2374652f176fc1727d9c41cca5b9ccf197e94ef5", "fields": {"nom_de_la_commune": "VELENNES", "libell_d_acheminement": "VELENNES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60663"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c153af275f22607f591f0a2a8a53b96fe505d14a", "fields": {"nom_de_la_commune": "VENETTE", "libell_d_acheminement": "VENETTE", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60665"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a93094704dcc9c8e0ec38653f7784c46be06f27a", "fields": {"nom_de_la_commune": "VER SUR LAUNETTE", "libell_d_acheminement": "VER SUR LAUNETTE", "code_postal": "60950", "coordonnees_gps": [49.1189792735, 2.6960856018], "code_commune_insee": "60666"}, "geometry": {"type": "Point", "coordinates": [2.6960856018, 49.1189792735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21aea4c8f80cd681d7606d40f9d2cd5acf4cedac", "fields": {"nom_de_la_commune": "VIGNEMONT", "libell_d_acheminement": "VIGNEMONT", "code_postal": "60162", "coordonnees_gps": [49.4989023316, 2.74608596543], "code_commune_insee": "60675"}, "geometry": {"type": "Point", "coordinates": [2.74608596543, 49.4989023316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd38aca90ab054ab59a0168706a87a569d98a1d", "fields": {"nom_de_la_commune": "VILLEMBRAY", "libell_d_acheminement": "VILLEMBRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60677"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e8d1e44d19bf10f4a7539d73180aae7a7fe066", "fields": {"nom_de_la_commune": "VILLERS ST FRAMBOURG", "libell_d_acheminement": "VILLERS ST FRAMBOURG", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60682"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f60e1214364f2a28edeb0b65d55e9bafaed111", "fields": {"nom_de_la_commune": "VILLERS VICOMTE", "libell_d_acheminement": "VILLERS VICOMTE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60692"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5d2049cdf4d68bf6c851924e7c4abeffc0cdb1", "fields": {"nom_de_la_commune": "VILLESELVE", "libell_d_acheminement": "VILLESELVE", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60693"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3267ccefb64e1438c868a75588ca6e2c2f6cee8c", "fields": {"nom_de_la_commune": "VINEUIL ST FIRMIN", "libell_d_acheminement": "VINEUIL ST FIRMIN", "code_postal": "60500", "coordonnees_gps": [49.1857324224, 2.48739707813], "code_commune_insee": "60695"}, "geometry": {"type": "Point", "coordinates": [2.48739707813, 49.1857324224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ca80033b5ecb4d52af05c79a507296f92d73e5", "fields": {"nom_de_la_commune": "AUX MARAIS", "libell_d_acheminement": "AUX MARAIS", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60703"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96efe1a9efa176bb22ddbc6b3d7c05c0064c585f", "fields": {"nom_de_la_commune": "APPENAI SOUS BELLEME", "libell_d_acheminement": "APPENAI SOUS BELLEME", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61005"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73b3bcfbaf97c5c50b59d1cf1d2d237ecd46f42", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "LES TOURAILLES", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c03db664467200e657bc16634803658a82ab97", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "SEGRIE FONTAINE", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048611ec54a7d8bc15c9b1169cd40172a9041841", "fields": {"nom_de_la_commune": "AUBE", "libell_d_acheminement": "AUBE", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61008"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0a1225f9cd0392e6fcdfe6642e3a291b90562c", "fields": {"nom_de_la_commune": "AUBRY EN EXMES", "libell_d_acheminement": "AUBRY EN EXMES", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61009"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d897754dc273f8ef374fe30f70adba6a6dfb272", "fields": {"nom_de_la_commune": "AUBUSSON", "libell_d_acheminement": "AUBUSSON", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61011"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea585fe886fca5735d2fdce81696d27aa5f669b", "fields": {"nom_de_la_commune": "AUNOU LE FAUCON", "libell_d_acheminement": "AUNOU LE FAUCON", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61014"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395a047989acbd1df911afe1bac57d798c7dced3", "fields": {"nom_de_la_commune": "BANVOU", "libell_d_acheminement": "BANVOU", "code_postal": "61450", "coordonnees_gps": [48.6630002344, -0.54676985736], "code_commune_insee": "61024"}, "geometry": {"type": "Point", "coordinates": [-0.54676985736, 48.6630002344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6736ce48f25d256f83a465a870ec5c00ee8527a4", "fields": {"nom_de_la_commune": "BELLAVILLIERS", "libell_d_acheminement": "BELLAVILLIERS", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61037"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828055a1e441e2db329208e51463810fb73e2b96", "fields": {"nom_de_la_commune": "BELLEME", "libell_d_acheminement": "BELLEME", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61038"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4236280dc4273365044f9f773bd77304796c2fd2", "fields": {"nom_de_la_commune": "BONSMOULINS", "libell_d_acheminement": "BONSMOULINS", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61053"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f503058cdefa625754693463ba5799a98d16c8d1", "fields": {"nom_de_la_commune": "LE BOSC RENOULT", "libell_d_acheminement": "LE BOSC RENOULT", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61054"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362a652b2ce6b10b68e3c2025349379bece93571", "fields": {"nom_de_la_commune": "CARROUGES", "libell_d_acheminement": "CARROUGES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61074"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f483a9e469c2e026c3be96e7d7771312ce595f81", "fields": {"nom_de_la_commune": "CHAHAINS", "libell_d_acheminement": "CHAHAINS", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61080"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49e8635ee4328ab1f862f39ec2285cdca836c8f", "fields": {"nom_de_la_commune": "LE CHALANGE", "libell_d_acheminement": "LE CHALANGE", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61082"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f50f2a1c86f6e18dd1fe41a587c4195bd468f3", "fields": {"nom_de_la_commune": "CHAMPEAUX SUR SARTHE", "libell_d_acheminement": "CHAMPEAUX SUR SARTHE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61087"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7850184de74a529182e5857abdf2fc33e94b24", "fields": {"nom_de_la_commune": "CHAMP HAUT", "libell_d_acheminement": "CHAMP HAUT", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61088"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61194c6bc6abb387d63643c1e2ba9e9f832b2a23", "fields": {"nom_de_la_commune": "LE CHATELLIER", "libell_d_acheminement": "LE CHATELLIER", "code_postal": "61450", "coordonnees_gps": [48.6630002344, -0.54676985736], "code_commune_insee": "61102"}, "geometry": {"type": "Point", "coordinates": [-0.54676985736, 48.6630002344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4853e4a616e55a1c7bca317053107d61a4833cd1", "fields": {"nom_de_la_commune": "ST BROING LES MOINES", "libell_d_acheminement": "ST BROING LES MOINES", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21543"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4472cbe8992b0effcef9c6d801eecdb3c0187c", "fields": {"nom_de_la_commune": "ST HELIER", "libell_d_acheminement": "ST HELIER", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21552"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698e796d92ab6bc94d800808fa0203492b8a3026", "fields": {"code_postal": "21410", "code_commune_insee": "21559", "libell_d_acheminement": "STE MARIE SUR OUCHE", "ligne_5": "PONT DE PANY", "nom_de_la_commune": "STE MARIE SUR OUCHE", "coordonnees_gps": [47.2781985678, 4.79910147091]}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0aaa35bb96fb253e68bd42508ac799207654f00", "fields": {"nom_de_la_commune": "ST MARTIN DE LA MER", "libell_d_acheminement": "ST MARTIN DE LA MER", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21560"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a56e149a3402c3a69ce650ad3fec665e9616bd8", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21563"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d4df155881c742ff8c3de3265e8629fe971504", "fields": {"nom_de_la_commune": "ST SEINE EN BACHE", "libell_d_acheminement": "ST SEINE EN BACHE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21572"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c96112f575ccb14c15b1278c4bc6cc0a7336f22", "fields": {"nom_de_la_commune": "SALMAISE", "libell_d_acheminement": "SALMAISE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21580"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9728e65ea2bae16e822e5f48e1a8eb78347fcc6b", "fields": {"nom_de_la_commune": "SAVIGNY LES BEAUNE", "libell_d_acheminement": "SAVIGNY LES BEAUNE", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21590"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65236d881eabef36339ab3418a0e6f539e19987d", "fields": {"nom_de_la_commune": "SAVILLY", "libell_d_acheminement": "SAVILLY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21593"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d565363b45a0b49613f82228efab52bcc372224", "fields": {"nom_de_la_commune": "SAVOUGES", "libell_d_acheminement": "SAVOUGES", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21596"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0293fd5d8d801566717fac814fc7946760212a", "fields": {"nom_de_la_commune": "SEGROIS", "libell_d_acheminement": "SEGROIS", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21597"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb702a5f20107accc98fff56d64f7b0bceac324e", "fields": {"nom_de_la_commune": "SEMEZANGES", "libell_d_acheminement": "SEMEZANGES", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21601"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8517a0757dc3daa927bbab0df3487e53f951f908", "fields": {"nom_de_la_commune": "SENAILLY", "libell_d_acheminement": "SENAILLY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21604"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff09a23c1cd2edd75b4fbeacdd5aae7e7153e01a", "fields": {"nom_de_la_commune": "SEURRE", "libell_d_acheminement": "SEURRE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21607"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0efe6f1c157158cef9acb952143bb286cc578d09", "fields": {"nom_de_la_commune": "TART LE BAS", "libell_d_acheminement": "TART LE BAS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21622"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ab327eed6a8393339af7bf31e702553d8d804b", "fields": {"nom_de_la_commune": "THOSTE", "libell_d_acheminement": "THOSTE", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21635"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a94dada27400fcb1a0f249b02f7442eb31ac0e5", "fields": {"nom_de_la_commune": "TORCY ET POULIGNY", "libell_d_acheminement": "TORCY ET POULIGNY", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21640"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807b69772b73afc0703e8730030e22358f5b67de", "fields": {"nom_de_la_commune": "TOUILLON", "libell_d_acheminement": "TOUILLON", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21641"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67dd83c647ef9fbfbfbeef6177c2e22000a0290", "fields": {"nom_de_la_commune": "TROCHERES", "libell_d_acheminement": "TROCHERES", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21644"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1092c42592f62065b62109198ec2d6a6c6bb05", "fields": {"nom_de_la_commune": "TURCEY", "libell_d_acheminement": "TURCEY", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21648"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2706ffe50f7b4366c82329015b93b09bc9bcbfbe", "fields": {"nom_de_la_commune": "URCY", "libell_d_acheminement": "URCY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21650"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f141052673c1e64c08ab5a8ef6b9b34d9d5c6b43", "fields": {"nom_de_la_commune": "VANDENESSE EN AUXOIS", "libell_d_acheminement": "VANDENESSE EN AUXOIS", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21652"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3a0e098c9871888e7f22f27d0ee1210dc3fdc0", "fields": {"nom_de_la_commune": "VANNAIRE", "libell_d_acheminement": "VANNAIRE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21653"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e78f69c848d520043438bc1adf1ee51599e1f72", "fields": {"nom_de_la_commune": "VERNOT", "libell_d_acheminement": "VERNOT", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21666"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a135f56722a1ed55597a672b59add6d5ba25fc86", "fields": {"nom_de_la_commune": "VERONNES", "libell_d_acheminement": "VERONNES", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21667"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc58fbc0c89de81b588718d35466138c75e4bb2", "fields": {"nom_de_la_commune": "VERTAULT", "libell_d_acheminement": "VERTAULT", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21671"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483695b8d6b8436b5b40f188807ae75045189eae", "fields": {"nom_de_la_commune": "VIC SOUS THIL", "libell_d_acheminement": "VIC SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21678"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07effad8968a8f35191662610fbb9e559a0e5661", "fields": {"nom_de_la_commune": "VILLAINES EN DUESMOIS", "libell_d_acheminement": "VILLAINES EN DUESMOIS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21685"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dcd6d0568614c41ffe9216c1c80efe55f447de", "fields": {"nom_de_la_commune": "VILLAINES LES PREVOTES", "libell_d_acheminement": "VILLAINES LES PREVOTES", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21686"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764897ede53ad27ac1bbee26dcc1070c0c9f0bf2", "fields": {"nom_de_la_commune": "VILLEFERRY", "libell_d_acheminement": "VILLEFERRY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21694"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68d22a6b4093e0d06c5910040184bcd8cf1332e", "fields": {"nom_de_la_commune": "VIX", "libell_d_acheminement": "VIX", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21711"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd827e6412b1ad3a62ccc81f27c2f7dbda1e909", "fields": {"nom_de_la_commune": "VOUGEOT", "libell_d_acheminement": "VOUGEOT", "code_postal": "21640", "coordonnees_gps": [47.1699047121, 4.99001555579], "code_commune_insee": "21716"}, "geometry": {"type": "Point", "coordinates": [4.99001555579, 47.1699047121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c20ee479bff83e509b90621809ee34f10773cab", "fields": {"code_postal": "22140", "code_commune_insee": "22004", "libell_d_acheminement": "BEGARD", "ligne_5": "BOTLEZAN", "nom_de_la_commune": "BEGARD", "coordonnees_gps": [48.6535314003, -3.30873251878]}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af33e57cc407af1e13dad2da7afe895af09d2f8f", "fields": {"code_postal": "22140", "code_commune_insee": "22004", "libell_d_acheminement": "BEGARD", "ligne_5": "TREZELAN", "nom_de_la_commune": "BEGARD", "coordonnees_gps": [48.6535314003, -3.30873251878]}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d27aeea4756fb20bea5dda932bb0acf57dcc28ff", "fields": {"nom_de_la_commune": "BRINGOLO", "libell_d_acheminement": "BRINGOLO", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22019"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35d33a24c6b4997cc6937344e9a71a3dd63793f", "fields": {"nom_de_la_commune": "BROONS", "libell_d_acheminement": "BROONS", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22020"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b200f2eeb69143117babaf7134ae9d17d0748f", "fields": {"nom_de_la_commune": "BRUSVILY", "libell_d_acheminement": "BRUSVILY", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22021"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4081552b05625c637abaf0a9a690aafd92a948", "fields": {"nom_de_la_commune": "CALANHEL", "libell_d_acheminement": "CALANHEL", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22024"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9441b477f48f8eb6ee12745f4ea8e51d2cd1d348", "fields": {"nom_de_la_commune": "LE CAMBOUT", "libell_d_acheminement": "LE CAMBOUT", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22027"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ffcd0c8a84711c2ecd9350b854471173b183c8c", "fields": {"nom_de_la_commune": "CAVAN", "libell_d_acheminement": "CAVAN", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22034"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f41ab644df0efc776fcb844c36660d013762ca", "fields": {"nom_de_la_commune": "LA CHAPELLE BLANCHE", "libell_d_acheminement": "LA CHAPELLE BLANCHE", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22036"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1e1a49869c46b8b466b86750f9b960d4cce0b6", "fields": {"nom_de_la_commune": "LA CHAPELLE NEUVE", "libell_d_acheminement": "LA CHAPELLE NEUVE", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22037"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736f40e2b006d2915e007bebab18324b55c7a81e", "fields": {"nom_de_la_commune": "CHATELAUDREN", "libell_d_acheminement": "CHATELAUDREN", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22038"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5b35136352af0a1e68d1104da2049a597cac7f", "fields": {"nom_de_la_commune": "LA CHEZE", "libell_d_acheminement": "LA CHEZE", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22039"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dcf4f5685fb692c465f5734c02b0a44efd156a0", "fields": {"nom_de_la_commune": "COHINIAC", "libell_d_acheminement": "COHINIAC", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22045"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dfc82cff21ee84b5df196441a1dfd2ec3470b1", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "ST GOUENO", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203da63233a2ac0c0742ab2295a5c97278555222", "fields": {"nom_de_la_commune": "EVRAN", "libell_d_acheminement": "EVRAN", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22056"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ca994404c8e223ab8a7bcfb97a5f053db60690", "fields": {"nom_de_la_commune": "GAUSSON", "libell_d_acheminement": "GAUSSON", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22060"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b9d974edc4e461b64a8c73d2b31821b9beef2b", "fields": {"nom_de_la_commune": "GRACES", "libell_d_acheminement": "GRACES", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22067"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a1fb96325da799b4c5e7617197aca4efd81cee", "fields": {"nom_de_la_commune": "GUENROC", "libell_d_acheminement": "GUENROC", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22069"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f90de784b0ccd1380262361de159ff8268f2c74", "fields": {"nom_de_la_commune": "GUITTE", "libell_d_acheminement": "GUITTE", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22071"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "688951cbb59f125062fec1dbd03b09adb0755b39", "fields": {"nom_de_la_commune": "GURUNHUEL", "libell_d_acheminement": "GURUNHUEL", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22072"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5317fb1d74279c31f6364ac8e2fbbf552c3c1bd0", "fields": {"nom_de_la_commune": "LA HARMOYE", "libell_d_acheminement": "LA HARMOYE", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22073"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51f2ad809dc15a5cd0f56972be3d020a2e7cd2f", "fields": {"nom_de_la_commune": "HENGOAT", "libell_d_acheminement": "HENGOAT", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22078"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951417cae51f31ece4f2ccca8c5d6fefae8181f4", "fields": {"code_postal": "22120", "code_commune_insee": "22081", "libell_d_acheminement": "HILLION", "ligne_5": "ST RENE HILLION", "nom_de_la_commune": "HILLION", "coordonnees_gps": [48.462144605, -2.65332605915]}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3da4fe102dd16a48b26373095a52a7eb6f79487", "fields": {"nom_de_la_commune": "ILLIFAUT", "libell_d_acheminement": "ILLIFAUT", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22083"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74020b1882cc9c224864d6c4f01b9de73bf0bda", "fields": {"nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22084"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89fb612ce71bedb083fc04aaaf72eb2a95eda826", "fields": {"code_postal": "22270", "code_commune_insee": "22084", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "ligne_5": "ST IGNEUC", "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "coordonnees_gps": [48.4388729687, -2.34282802999]}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab34655088aafe5a6698a6b0fd2e99abfe5f74b0", "fields": {"nom_de_la_commune": "LAMBALLE", "libell_d_acheminement": "LAMBALLE", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22093"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08c40feac3664f7652ee489fcfd72a5ad17736a", "fields": {"nom_de_la_commune": "LANGAST", "libell_d_acheminement": "LANGAST", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22100"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b131556bf7b45293175252221e8b23714aa3267", "fields": {"nom_de_la_commune": "LANGUENAN", "libell_d_acheminement": "LANGUENAN", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22105"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5809bcf87f172ab0c81fa57d5f4d71fda66409a4", "fields": {"code_postal": "22360", "code_commune_insee": "22106", "libell_d_acheminement": "LANGUEUX", "ligne_5": "LES GREVES LANGUEUX", "nom_de_la_commune": "LANGUEUX", "coordonnees_gps": [48.5000567544, -2.71042685567]}, "geometry": {"type": "Point", "coordinates": [-2.71042685567, 48.5000567544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5f4f6d6e3c800bfc96ddc3f7924207f8c6d77c", "fields": {"nom_de_la_commune": "LANNEBERT", "libell_d_acheminement": "LANNEBERT", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22112"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1755680199bc9eab8598501c2bb0151d8e1c20", "fields": {"nom_de_la_commune": "LANRELAS", "libell_d_acheminement": "LANRELAS", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22114"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817d54c8a9886a638579c2a585370a261e60b327", "fields": {"nom_de_la_commune": "LE LESLAY", "libell_d_acheminement": "LE LESLAY", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22126"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130562448193274d18f8e7b7833f6b0d38f6243a", "fields": {"nom_de_la_commune": "LOC ENVEL", "libell_d_acheminement": "LOC ENVEL", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22129"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7377b4163878700eeb2cd343bbdb3ba556097d79", "fields": {"nom_de_la_commune": "LOSCOUET SUR MEU", "libell_d_acheminement": "LOSCOUET SUR MEU", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22133"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab253210e7334d99ac1660a5e7b33ebc8370254c", "fields": {"nom_de_la_commune": "MEGRIT", "libell_d_acheminement": "MEGRIT", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22145"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f42ffdd91c40010bbb88c20c2a0998d89f5f6", "fields": {"nom_de_la_commune": "PABU", "libell_d_acheminement": "PABU", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22161"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7948d9cfc4154a2cb6beb8c6a0db52cf6e0273", "fields": {"nom_de_la_commune": "PENGUILY", "libell_d_acheminement": "PENGUILY", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22165"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbe7207f11375ee90ee260cd79c0d8ec646ac20e", "fields": {"nom_de_la_commune": "PENVENAN", "libell_d_acheminement": "PENVENAN", "code_postal": "22710", "coordonnees_gps": [48.815824264, -3.30211967596], "code_commune_insee": "22166"}, "geometry": {"type": "Point", "coordinates": [-3.30211967596, 48.815824264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0d50904dcaaba497bed3d92ce83ae8454146c7", "fields": {"nom_de_la_commune": "PLAINE HAUTE", "libell_d_acheminement": "PLAINE HAUTE", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22170"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496278336577a201ce251a642f112423aeaadec0", "fields": {"nom_de_la_commune": "PLANGUENOUAL", "libell_d_acheminement": "PLANGUENOUAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22173"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c380fb93a38c3d94666330c0c04c535d334be6", "fields": {"nom_de_la_commune": "FREHEL", "libell_d_acheminement": "FREHEL", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22179"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43acd1083cc64de816fd02f56480fed6e097281a", "fields": {"code_postal": "22240", "code_commune_insee": "22179", "libell_d_acheminement": "FREHEL", "ligne_5": "LA CARQUOIS", "nom_de_la_commune": "FREHEL", "coordonnees_gps": [48.6228539052, -2.37843201672]}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da0390fb551672284277eb1c659c2be2b7e2c95", "fields": {"nom_de_la_commune": "PLENEUF VAL ANDRE", "libell_d_acheminement": "PLENEUF VAL ANDRE", "code_postal": "22370", "coordonnees_gps": [48.5838806672, -2.52922353223], "code_commune_insee": "22186"}, "geometry": {"type": "Point", "coordinates": [-2.52922353223, 48.5838806672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830bd8b8b72f3372ba2f97e5f01f6db3b5db4cca", "fields": {"nom_de_la_commune": "PLERIN", "libell_d_acheminement": "PLERIN", "code_postal": "22190", "coordonnees_gps": [48.5437270249, -2.77055983387], "code_commune_insee": "22187"}, "geometry": {"type": "Point", "coordinates": [-2.77055983387, 48.5437270249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d530178a9a505c52e624505693a6743a607c820e", "fields": {"nom_de_la_commune": "PLERNEUF", "libell_d_acheminement": "PLERNEUF", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22188"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cf5409743109df2fe69da29b3d94286a3d87a8", "fields": {"nom_de_la_commune": "PLESLIN TRIGAVOU", "libell_d_acheminement": "PLESLIN TRIGAVOU", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22190"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a3c7feb8d698908b26b31a8e2b585a15ef3909", "fields": {"code_postal": "22310", "code_commune_insee": "22194", "libell_d_acheminement": "PLESTIN LES GREVES", "ligne_5": "ST EFFLAM", "nom_de_la_commune": "PLESTIN LES GREVES", "coordonnees_gps": [48.6314281059, -3.60402882378]}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b2bee9df3e5278d8712ddca9e9d2a61eda55cf", "fields": {"code_postal": "22560", "code_commune_insee": "22198", "libell_d_acheminement": "PLEUMEUR BODOU", "ligne_5": "LANDRELLEC", "nom_de_la_commune": "PLEUMEUR BODOU", "coordonnees_gps": [48.7801847576, -3.53025413579]}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da034ff1d8f7cb96de3d8703429758c4916f5d0", "fields": {"nom_de_la_commune": "PLEUMEUR GAUTIER", "libell_d_acheminement": "PLEUMEUR GAUTIER", "code_postal": "22740", "coordonnees_gps": [48.7862156131, -3.14241829352], "code_commune_insee": "22199"}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59a878a7d28b24265c7a6b7b54e369f798557b8", "fields": {"nom_de_la_commune": "PLEVENON", "libell_d_acheminement": "PLEVENON", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22201"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb84d8c08db2e4dbe9683e8270bbc4ddddb3b8d", "fields": {"nom_de_la_commune": "PLOEUC L HERMITAGE", "libell_d_acheminement": "PLOEUC L HERMITAGE", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22203"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf074cbd23033518b043925671ed944ff6a6c118", "fields": {"nom_de_la_commune": "PLOEZAL", "libell_d_acheminement": "PLOEZAL", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22204"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9cbdcec411f8c05f3a0c41394b6483e37b01f1f", "fields": {"nom_de_la_commune": "PLOREC SUR ARGUENON", "libell_d_acheminement": "PLOREC SUR ARGUENON", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22205"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be362222040dcfa55370707395224c9c3e594a9", "fields": {"nom_de_la_commune": "PLOUBAZLANEC", "libell_d_acheminement": "PLOUBAZLANEC", "code_postal": "22620", "coordonnees_gps": [48.8054371509, -3.04487100542], "code_commune_insee": "22210"}, "geometry": {"type": "Point", "coordinates": [-3.04487100542, 48.8054371509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9474cb1d317e9767d5a9c24a8f5c478823841da0", "fields": {"nom_de_la_commune": "PLOUEZEC", "libell_d_acheminement": "PLOUEZEC", "code_postal": "22470", "coordonnees_gps": [48.7387311378, -2.97896349388], "code_commune_insee": "22214"}, "geometry": {"type": "Point", "coordinates": [-2.97896349388, 48.7387311378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bd35b9b06fae4e48ff3ebf5cb34a8419931a82", "fields": {"nom_de_la_commune": "PLOUFRAGAN", "libell_d_acheminement": "PLOUFRAGAN", "code_postal": "22440", "coordonnees_gps": [48.4956130543, -2.82108365648], "code_commune_insee": "22215"}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c926bff2da835afa382ceb38826edff4ea9899b", "fields": {"code_postal": "22440", "code_commune_insee": "22215", "libell_d_acheminement": "PLOUFRAGAN", "ligne_5": "LES CROIX", "nom_de_la_commune": "PLOUFRAGAN", "coordonnees_gps": [48.4956130543, -2.82108365648]}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "269e75768e23a2ca574832d3c3c37e581bb3b2a9", "fields": {"nom_de_la_commune": "PLOUGUENAST", "libell_d_acheminement": "PLOUGUENAST", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22219"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769490de48294f0733ecb10368069563fc32534c", "fields": {"nom_de_la_commune": "PLOURIVO", "libell_d_acheminement": "PLOURIVO", "code_postal": "22860", "coordonnees_gps": [48.7413548455, -3.09260877353], "code_commune_insee": "22233"}, "geometry": {"type": "Point", "coordinates": [-3.09260877353, 48.7413548455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d89398d4b36b39a9139ec03d2af3b463c7eed1b", "fields": {"nom_de_la_commune": "PLUSQUELLEC", "libell_d_acheminement": "PLUSQUELLEC", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22243"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb94c450055dad492da8d16213c9823e6453570", "fields": {"nom_de_la_commune": "PLUSSULIEN", "libell_d_acheminement": "PLUSSULIEN", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22244"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a46c1a58bfb4bd86c3da2888cdb50734e9a7528", "fields": {"nom_de_la_commune": "PONTRIEUX", "libell_d_acheminement": "PONTRIEUX", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22250"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d98ab329a97fef47fbd924509c996b2352935873", "fields": {"nom_de_la_commune": "PORDIC", "libell_d_acheminement": "PORDIC", "code_postal": "22590", "coordonnees_gps": [48.5695461938, -2.84144566596], "code_commune_insee": "22251"}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3900c8f905b0c014838fd4e1787b5072e2542e", "fields": {"nom_de_la_commune": "PRAT", "libell_d_acheminement": "PRAT", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22254"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194db698ac8ab9ad98cbafa05b5abe73d7ee1b8e", "fields": {"nom_de_la_commune": "QUEMPERVEN", "libell_d_acheminement": "QUEMPERVEN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22257"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f537a8f6be39d19e6c22211da9aad142c8fb97d", "fields": {"code_postal": "22120", "code_commune_insee": "22258", "libell_d_acheminement": "QUESSOY", "ligne_5": "L HOPITAL", "nom_de_la_commune": "QUESSOY", "coordonnees_gps": [48.462144605, -2.65332605915]}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272641983cdefbf56604e9aa77344585e371b9b0", "fields": {"nom_de_la_commune": "QUINTENIC", "libell_d_acheminement": "QUINTENIC", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22261"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d002d721ada01a4833afde8b42fbe37dc3a114e", "fields": {"nom_de_la_commune": "MONTFROC", "libell_d_acheminement": "MONTFROC", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26200"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ad59038ac4bda8eda9683096c8beeb9d2f3828", "fields": {"nom_de_la_commune": "MONTJOUX", "libell_d_acheminement": "MONTJOUX", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26202"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afd5953df19c54121ee263b7fe0d656f00aa65b", "fields": {"nom_de_la_commune": "MONTMAUR EN DIOIS", "libell_d_acheminement": "MONTMAUR EN DIOIS", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26205"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db747b3ffd903b0f52a6aea84243abb50b1881a", "fields": {"nom_de_la_commune": "MONTOISON", "libell_d_acheminement": "MONTOISON", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26208"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372c874c31dda9e3f95a9ef43ab0298444466a16", "fields": {"nom_de_la_commune": "MONTRIGAUD", "libell_d_acheminement": "MONTRIGAUD", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26210"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10104060e3c34bf83769b79b78da91edc92955a2", "fields": {"nom_de_la_commune": "MORNANS", "libell_d_acheminement": "MORNANS", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26214"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b663482c90eca4f4cf040e310fb3d91d1c0b0c17", "fields": {"nom_de_la_commune": "MUREILS", "libell_d_acheminement": "MUREILS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26219"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58adee51758e5fb733f7c25725ba8ca5b324d4e0", "fields": {"nom_de_la_commune": "PEYRINS", "libell_d_acheminement": "PEYRINS", "code_postal": "26380", "coordonnees_gps": [45.1000761768, 5.04599201889], "code_commune_insee": "26231"}, "geometry": {"type": "Point", "coordinates": [5.04599201889, 45.1000761768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d129aea6f3d02ff01bd4543c4fbfd02dd0db3305", "fields": {"nom_de_la_commune": "PIERRELONGUE", "libell_d_acheminement": "PIERRELONGUE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26236"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6063786409417d989d0f9644c9cbd90f74c321a0", "fields": {"nom_de_la_commune": "LE POET CELARD", "libell_d_acheminement": "LE POET CELARD", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26241"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52383120573ec563a99cb5c8de704c682bce662", "fields": {"nom_de_la_commune": "POMMEROL", "libell_d_acheminement": "POMMEROL", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26245"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb55fa42c8a738abf9546046b174234f687ae4d6", "fields": {"nom_de_la_commune": "REAUVILLE", "libell_d_acheminement": "REAUVILLE", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26261"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51ce602fd7ff18139598e06fb141f47578410455", "fields": {"nom_de_la_commune": "LA ROCHETTE DU BUIS", "libell_d_acheminement": "LA ROCHETTE DU BUIS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26279"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cfd1b5ef3e368b1d78bf00aea32407eb87e5f5c", "fields": {"nom_de_la_commune": "ROTTIER", "libell_d_acheminement": "ROTTIER", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26283"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276c7ac5f777c9611aeac13c01c33a7f59373cc8", "fields": {"nom_de_la_commune": "ROUSSAS", "libell_d_acheminement": "ROUSSAS", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26284"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0c8290861f86e008bffd48ab0557295ebb6d02", "fields": {"nom_de_la_commune": "ST AGNAN EN VERCORS", "libell_d_acheminement": "ST AGNAN EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26290"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "849259f1a28572abfc8d1e68397bb1ad4d9858a5", "fields": {"code_postal": "26420", "code_commune_insee": "26290", "libell_d_acheminement": "ST AGNAN EN VERCORS", "ligne_5": "ROUSSET EN VERCORS", "nom_de_la_commune": "ST AGNAN EN VERCORS", "coordonnees_gps": [44.9365927101, 5.42231201851]}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1eaff39a4a78e49c7c2a22b39b9d133bf40311", "fields": {"nom_de_la_commune": "ST ANDEOL", "libell_d_acheminement": "ST ANDEOL", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26291"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e6b0dee660614e41dd574b0d2e076cd201126f", "fields": {"nom_de_la_commune": "ST BONNET DE VALCLERIEUX", "libell_d_acheminement": "ST BONNET DE VALCLERIEUX", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26297"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c19f3e54ee9058fcf786bfff4ad5a0c0340b5b", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26299"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76757379aeb281911b9d01e991bebb6cb7cc1339", "fields": {"nom_de_la_commune": "ST LAURENT D ONAY", "libell_d_acheminement": "ST LAURENT D ONAY", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26310"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d254365d03a8ca207c95227072be74e6e7bde035", "fields": {"nom_de_la_commune": "ST MARCEL LES VALENCE", "libell_d_acheminement": "ST MARCEL LES VALENCE", "code_postal": "26320", "coordonnees_gps": [44.972353462, 4.95110624516], "code_commune_insee": "26313"}, "geometry": {"type": "Point", "coordinates": [4.95110624516, 44.972353462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6011bc1bc703e3d66a66607ec577a6507f0c89", "fields": {"nom_de_la_commune": "ST MAY", "libell_d_acheminement": "ST MAY", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26318"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66262b5f81f3bf67508f67fe9c2bf38b570e7a49", "fields": {"nom_de_la_commune": "ST PAUL TROIS CHATEAUX", "libell_d_acheminement": "ST PAUL TROIS CHATEAUX", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26324"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4259f315d16cca25a2160899c1776fc1b7b489", "fields": {"code_postal": "26270", "code_commune_insee": "26337", "libell_d_acheminement": "SAULCE SUR RHONE", "ligne_5": "LES REYS DE SAULCE", "nom_de_la_commune": "SAULCE SUR RHONE", "coordonnees_gps": [44.7168044995, 4.81795152107]}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1c3149703a1001554ed3b17458aecbe24bdcc8", "fields": {"nom_de_la_commune": "SOLERIEUX", "libell_d_acheminement": "SOLERIEUX", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26342"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3968a4266aad196e7827ae2947123fb8819969", "fields": {"nom_de_la_commune": "SOYANS", "libell_d_acheminement": "SOYANS", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26344"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccbe15acf0c2ca4d1c818e9ae8ac85fd856f9f36", "fields": {"nom_de_la_commune": "SUZE LA ROUSSE", "libell_d_acheminement": "SUZE LA ROUSSE", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26345"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd90459885a55af65a1b2fe8f4cb5aee0daa4e4", "fields": {"nom_de_la_commune": "TAULIGNAN", "libell_d_acheminement": "TAULIGNAN", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26348"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f7fd21f199087961a0a1615f6d18f9a42795e8", "fields": {"nom_de_la_commune": "LES TONILS", "libell_d_acheminement": "LES TONILS", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26351"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93906f713a71912a21135ada024c8ab1562a874", "fields": {"nom_de_la_commune": "TRIORS", "libell_d_acheminement": "TRIORS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26355"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a98ce9a0bae14c599b79e2e20e1662b422a89c", "fields": {"nom_de_la_commune": "VENTEROL", "libell_d_acheminement": "VENTEROL", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26367"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba33dc316a2e4e3dcbd05b2ae1c6ef949f221f50", "fields": {"nom_de_la_commune": "VERS SUR MEOUGE", "libell_d_acheminement": "VERS SUR MEOUGE", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26372"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52a3c0ca4ac73e99a53c9280c335a3c774c00254", "fields": {"nom_de_la_commune": "GERVANS", "libell_d_acheminement": "GERVANS", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26380"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07475ffce15bb751b7a476236b596cccf351f717", "fields": {"nom_de_la_commune": "ALIZAY", "libell_d_acheminement": "ALIZAY", "code_postal": "27460", "coordonnees_gps": [49.3216784952, 1.17178716844], "code_commune_insee": "27008"}, "geometry": {"type": "Point", "coordinates": [1.17178716844, 49.3216784952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb36d64c2a5e2fa71a3b560098707d75306d0e5", "fields": {"nom_de_la_commune": "AMFREVILLE LES CHAMPS", "libell_d_acheminement": "AMFREVILLE LES CHAMPS", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27012"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ac12d13447d6ff155c7d54ea3bd1ad7ae2e14d", "fields": {"nom_de_la_commune": "AMFREVILLE SOUS LES MONTS", "libell_d_acheminement": "AMFREVILLE SOUS LES MONTS", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27013"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c7e3aa5afc9f90462c0165645425cd90933461", "fields": {"nom_de_la_commune": "ANDE", "libell_d_acheminement": "ANDE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27015"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74bb265d5bf2b8b12bb80a499a19b6a9d7d0b589", "fields": {"nom_de_la_commune": "AULNAY SUR ITON", "libell_d_acheminement": "AULNAY SUR ITON", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27023"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cfd1ae09f907412215101bf58811137ce353c4", "fields": {"nom_de_la_commune": "AUTHEVERNES", "libell_d_acheminement": "AUTHEVERNES", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27026"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1989c929984601a5be457b7769cde7de133e34", "fields": {"code_postal": "27240", "code_commune_insee": "27032", "libell_d_acheminement": "CHAMBOIS", "ligne_5": "CORNEUIL", "nom_de_la_commune": "CHAMBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6591b0ec0bde9d65f71371971cdcf3949a30fc0", "fields": {"nom_de_la_commune": "BACQUEPUIS", "libell_d_acheminement": "BACQUEPUIS", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27033"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff59fad05772b0ad1ffa044f3c522dca62c51633", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "ST PIERRE DU MESNIL", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04acdaadb3e1a2409feebf1363fbed808931fd2e", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "BEAUMESNIL", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88db6eb639afc068490b75e3461ee603887da006", "fields": {"nom_de_la_commune": "LE BOIS HELLAIN", "libell_d_acheminement": "LE BOIS HELLAIN", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27071"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015b74f25928f0ae0d239475d19ee2cc675249b4", "fields": {"nom_de_la_commune": "BOIS JEROME ST OUEN", "libell_d_acheminement": "BOIS JEROME ST OUEN", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27072"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fabb63d955b4245feeca54c12aac1dd9c68762cc", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "INFREVILLE", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b768e653214ab77bc9bc58c47922e9f467981962", "fields": {"nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", "libell_d_acheminement": "BOURNAINVILLE FAVEROLLES", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27106"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c6f35ac7a35f754566adef88e9f0e627328be18", "fields": {"nom_de_la_commune": "BREUX SUR AVRE", "libell_d_acheminement": "BREUX SUR AVRE", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27115"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fd7d9635ec683ca953941cd65ef82da531d469", "fields": {"nom_de_la_commune": "CALLEVILLE", "libell_d_acheminement": "CALLEVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27125"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aaab87735dfc123ad1ebe261ffe64260d2e0ce1", "fields": {"nom_de_la_commune": "CAMPIGNY", "libell_d_acheminement": "CAMPIGNY", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27126"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2192d8a6e4669e36ed17c70ad19ec581bb21aa1f", "fields": {"nom_de_la_commune": "CANAPPEVILLE", "libell_d_acheminement": "CANAPPEVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27127"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b826e655ec6c20ebec472005ed33475da6a75bd8", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27133"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50742294867b8e3c7666479600e4895ffae6f5aa", "fields": {"nom_de_la_commune": "CAUVERVILLE EN ROUMOIS", "libell_d_acheminement": "CAUVERVILLE EN ROUMOIS", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27134"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a250f4edf0d0ae29fbf8716b1e645e346f530a6", "fields": {"nom_de_la_commune": "CHAMPIGNOLLES", "libell_d_acheminement": "CHAMPIGNOLLES", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27143"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec80ede799f3cbd1d2b44a5ea9c5f3aaea3fdd8", "fields": {"nom_de_la_commune": "LA CHAPELLE BAYVEL", "libell_d_acheminement": "LA CHAPELLE BAYVEL", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27146"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4327287b91c430e03501751597f0c14cbde9567c", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BOIS DES FAULX", "libell_d_acheminement": "LA CHAPELLE DU BOIS DES FAULX", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27147"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d214887f3c0afb79e3ee3188b5298c53abfcdd8e", "fields": {"nom_de_la_commune": "LA CHAPELLE REANVILLE", "libell_d_acheminement": "LA CHAPELLE REANVILLE", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27150"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88fb3e85a261a61d1c6658f14dd9be1e0980016", "fields": {"nom_de_la_commune": "CHARLEVAL", "libell_d_acheminement": "CHARLEVAL", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27151"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bd7beb22e6086c8ff492df0cd0f743378d2f4e", "fields": {"nom_de_la_commune": "CLAVILLE", "libell_d_acheminement": "CLAVILLE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27161"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acfd3d05a61c4d8bc22632d6cca4841e9b68e70b", "fields": {"nom_de_la_commune": "CONDE SUR RISLE", "libell_d_acheminement": "CONDE SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27167"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c352df4472ed81c0f3a259cc00d9e2772c51ab", "fields": {"nom_de_la_commune": "CONNELLES", "libell_d_acheminement": "CONNELLES", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27168"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ad0c61df37f5f1e411c980cc005fecb33053cb", "fields": {"nom_de_la_commune": "CORMEILLES", "libell_d_acheminement": "CORMEILLES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27170"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28ab0d5eabd6d53e67d76b166eabacfe7a17b2b", "fields": {"nom_de_la_commune": "CORNY", "libell_d_acheminement": "CORNY", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27175"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba197701efd41beb56b646ed675859c4561ab3b", "fields": {"nom_de_la_commune": "COURCELLES SUR SEINE", "libell_d_acheminement": "COURCELLES SUR SEINE", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27180"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cda97e104e1d9467daef64439c4084cb66a2e40", "fields": {"nom_de_la_commune": "COURTEILLES", "libell_d_acheminement": "COURTEILLES", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27182"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d253e49316fa44116c0353130511b48764e532", "fields": {"nom_de_la_commune": "CUVERVILLE", "libell_d_acheminement": "CUVERVILLE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27194"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3c98fd16581bb36e17bca21c97fb432ab246b0", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LE RONCENAY", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38d2bd617670ba3ab0d87e0e7c56e4933aea3a8", "fields": {"nom_de_la_commune": "DARDEZ", "libell_d_acheminement": "DARDEZ", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27200"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00d19dc071585b31893573f978f935db66b8a1d", "fields": {"code_postal": "27420", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "CAHAIGNES", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.2104555744, 1.59282946064]}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347becd8a4e449d5c306000f75376e113dbde154", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "ECOS", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad404d37e1f3c3e3e6cf206a626571f6ee46fde", "fields": {"nom_de_la_commune": "EMALLEVILLE", "libell_d_acheminement": "EMALLEVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27216"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68be1e0bc1247c6758fbbdaffc29b6a8d770f67b", "fields": {"nom_de_la_commune": "EZY SUR EURE", "libell_d_acheminement": "EZY SUR EURE", "code_postal": "27530", "coordonnees_gps": [48.8601800798, 1.38794601132], "code_commune_insee": "27230"}, "geometry": {"type": "Point", "coordinates": [1.38794601132, 48.8601800798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a5f0dab2222a6c9c8e5cffdcf3e1e77f453214", "fields": {"nom_de_la_commune": "FAINS", "libell_d_acheminement": "FAINS", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27231"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f620dd9730f6cb4c2bcc129315dd4884cd63ff8", "fields": {"nom_de_la_commune": "LE FIDELAIRE", "libell_d_acheminement": "LE FIDELAIRE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27242"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e042b2fcec3ad548702e444afde1ba3922d89a7", "fields": {"nom_de_la_commune": "FOLLEVILLE", "libell_d_acheminement": "FOLLEVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27248"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcaf0e1f05af0bcb40befac377b53bb64ef245ca", "fields": {"nom_de_la_commune": "FORT MOVILLE", "libell_d_acheminement": "FORT MOVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27258"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b13bde5c45b6e6fb4ec70c1b23ab0a55e1ffe5", "fields": {"nom_de_la_commune": "FOULBEC", "libell_d_acheminement": "FOULBEC", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27260"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a86315d32dbb4c817c7d76daefff99a61188cb", "fields": {"nom_de_la_commune": "FRANQUEVILLE", "libell_d_acheminement": "FRANQUEVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27266"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f47cbec56b146a12bd98541acb16c2be7c5658", "fields": {"nom_de_la_commune": "FRENEUSE SUR RISLE", "libell_d_acheminement": "FRENEUSE SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27267"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46761e2f00edf62706185d5a394ef90c7beceb00", "fields": {"nom_de_la_commune": "GAILLARDBOIS CRESSENVILLE", "libell_d_acheminement": "GAILLARDBOIS CRESSENVILLE", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27274"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660cbf15144a53aa68761d9887767898fa498105", "fields": {"code_postal": "27220", "code_commune_insee": "27277", "libell_d_acheminement": "LA BARONNIE", "ligne_5": "QUESSIGNY", "nom_de_la_commune": "LA BARONNIE", "coordonnees_gps": [48.9045809856, 1.2729790086]}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efdcbac7fa3bc1d93dd753b9e4f2d56966e69df", "fields": {"nom_de_la_commune": "GAUCIEL", "libell_d_acheminement": "GAUCIEL", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27280"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d976f35a1d3717594d09b1c68086bba61c2493c2", "fields": {"nom_de_la_commune": "GIVERNY", "libell_d_acheminement": "GIVERNY", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27285"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946fdeb232745b55a85d70e2d743f7bc783cf677", "fields": {"nom_de_la_commune": "GLOS SUR RISLE", "libell_d_acheminement": "GLOS SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27288"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03674c74d9f6728d1ee3053042f87e6397ec4e31", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27290"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1217cf2f1fa091de0924c5f29ed29c2ea321cc", "fields": {"code_postal": "27240", "code_commune_insee": "27297", "libell_d_acheminement": "GRANDVILLIERS", "ligne_5": "HELLENVILLIERS", "nom_de_la_commune": "GRANDVILLIERS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3d736cb69b522aca865399945e128b757a9cd8", "fields": {"nom_de_la_commune": "GRAVERON SEMERVILLE", "libell_d_acheminement": "GRAVERON SEMERVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27298"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a1b5d2346043649624c38d14c94cee49af2e1e", "fields": {"nom_de_la_commune": "GUERNY", "libell_d_acheminement": "GUERNY", "code_postal": "27720", "coordonnees_gps": [49.2458400494, 1.68182274332], "code_commune_insee": "27304"}, "geometry": {"type": "Point", "coordinates": [1.68182274332, 49.2458400494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd18e2c57d926c2566df9a181ed196716f524f16", "fields": {"nom_de_la_commune": "L HABIT", "libell_d_acheminement": "L HABIT", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27309"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae38bbda5b83d4cbaf96725f932d804453e4f53c", "fields": {"nom_de_la_commune": "HARCOURT", "libell_d_acheminement": "HARCOURT", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27311"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade9a57ba5ae50ca9411cde946a4134c3b933035", "fields": {"nom_de_la_commune": "LA HAYE DE ROUTOT", "libell_d_acheminement": "LA HAYE DE ROUTOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27319"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33850baf960c6a269eec512056470d010cb61a23", "fields": {"nom_de_la_commune": "HECTOMARE", "libell_d_acheminement": "HECTOMARE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27327"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0ab451b1d1c91435cd5a180e31db583645726a", "fields": {"nom_de_la_commune": "LA HEUNIERE", "libell_d_acheminement": "LA HEUNIERE", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27336"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea9af11d633f9a4c96b5337f94c0083b6768742", "fields": {"nom_de_la_commune": "HUEST", "libell_d_acheminement": "HUEST", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27347"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae676b223c24653f849316404d37af898f41a2f9", "fields": {"nom_de_la_commune": "INCARVILLE", "libell_d_acheminement": "INCARVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27351"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b911867a4fa3f11102509bb11185ce687392d22", "fields": {"nom_de_la_commune": "IRREVILLE", "libell_d_acheminement": "IRREVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27353"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d091ae683e5636ef7fd201db840bb099523f8e1", "fields": {"nom_de_la_commune": "LA LANDE ST LEGER", "libell_d_acheminement": "LA LANDE ST LEGER", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27361"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2340828ec45b1ecef4b2ce390466e4a079a5648d", "fields": {"nom_de_la_commune": "LERY", "libell_d_acheminement": "LERY", "code_postal": "27690", "coordonnees_gps": [49.2875079068, 1.19484259841], "code_commune_insee": "27365"}, "geometry": {"type": "Point", "coordinates": [1.19484259841, 49.2875079068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89aba2f0a68485c55e56ef62585907d139ad848a", "fields": {"nom_de_la_commune": "LYONS LA FORET", "libell_d_acheminement": "LYONS LA FORET", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27377"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf0ba17e616e61dacadb1bd3d8ca6151fca8f50", "fields": {"nom_de_la_commune": "WALINCOURT SELVIGNY", "libell_d_acheminement": "WALINCOURT SELVIGNY", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59631"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1a4d691dbc219df43b8fc21287e6a3145b6845", "fields": {"code_postal": "59135", "code_commune_insee": "59632", "libell_d_acheminement": "WALLERS", "ligne_5": "ARENBERG", "nom_de_la_commune": "WALLERS", "coordonnees_gps": [50.3789593982, 3.39834366175]}, "geometry": {"type": "Point", "coordinates": [3.39834366175, 50.3789593982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76aa8975700c875b848fd4cf28d8c3a1993e834", "fields": {"nom_de_la_commune": "WARGNIES LE GRAND", "libell_d_acheminement": "WARGNIES LE GRAND", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59639"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9461ee13e57ee2a853c38195199c17a9d5f8a9", "fields": {"nom_de_la_commune": "WARHEM", "libell_d_acheminement": "WARHEM", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59641"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6981295e545718baa88c2a87eec68696ab9c509", "fields": {"nom_de_la_commune": "WARNETON", "libell_d_acheminement": "WARNETON", "code_postal": "59560", "coordonnees_gps": [50.7487126349, 3.00528149313], "code_commune_insee": "59643"}, "geometry": {"type": "Point", "coordinates": [3.00528149313, 50.7487126349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9206d212421fd7b57aa9755cb1391667fdd65e0", "fields": {"nom_de_la_commune": "WASQUEHAL", "libell_d_acheminement": "WASQUEHAL", "code_postal": "59290", "coordonnees_gps": [50.6754695389, 3.12791085358], "code_commune_insee": "59646"}, "geometry": {"type": "Point", "coordinates": [3.12791085358, 50.6754695389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d06a812e25fee152e6321f1342f5da95c429694", "fields": {"nom_de_la_commune": "WATTIGNIES", "libell_d_acheminement": "WATTIGNIES", "code_postal": "59139", "coordonnees_gps": [50.5828466691, 3.03623136309], "code_commune_insee": "59648"}, "geometry": {"type": "Point", "coordinates": [3.03623136309, 50.5828466691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d956edf033ee35064c2a5cfbf66011fdc8652a46", "fields": {"nom_de_la_commune": "WATTRELOS", "libell_d_acheminement": "WATTRELOS", "code_postal": "59150", "coordonnees_gps": [50.7054867072, 3.21637731319], "code_commune_insee": "59650"}, "geometry": {"type": "Point", "coordinates": [3.21637731319, 50.7054867072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88f330768f2dc2023db397aa72c1e5fcf00aed1", "fields": {"nom_de_la_commune": "WAVRIN", "libell_d_acheminement": "WAVRIN", "code_postal": "59136", "coordonnees_gps": [50.5721804568, 2.93301420675], "code_commune_insee": "59653"}, "geometry": {"type": "Point", "coordinates": [2.93301420675, 50.5721804568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c90cd9932965f757262dfbb2ca025ada36188d", "fields": {"nom_de_la_commune": "WIGNEHIES", "libell_d_acheminement": "WIGNEHIES", "code_postal": "59212", "coordonnees_gps": [50.0124583549, 4.0070087606], "code_commune_insee": "59659"}, "geometry": {"type": "Point", "coordinates": [4.0070087606, 50.0124583549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ddc3c7acf129ee020b8fa0382df249a6fa04b73", "fields": {"nom_de_la_commune": "WORMHOUT", "libell_d_acheminement": "WORMHOUT", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59663"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5434742e94fd208ad8775dbcc6d93fd23a919b", "fields": {"nom_de_la_commune": "ZUYTPEENE", "libell_d_acheminement": "ZUYTPEENE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59669"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037b73327e15b031d3e4d971c78c746ac65fdffd", "fields": {"nom_de_la_commune": "ABANCOURT", "libell_d_acheminement": "ABANCOURT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60001"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30e4ebc13e00e865cc52737cceac09a45f8cd3c", "fields": {"nom_de_la_commune": "AGNETZ", "libell_d_acheminement": "AGNETZ", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60007"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962bdd915b1dbafaf8a0fe4eda43cbc1b752acc4", "fields": {"nom_de_la_commune": "ARMANCOURT", "libell_d_acheminement": "ARMANCOURT", "code_postal": "60880", "coordonnees_gps": [49.3809036755, 2.75739000766], "code_commune_insee": "60023"}, "geometry": {"type": "Point", "coordinates": [2.75739000766, 49.3809036755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e46d9cf27fcd7102728f630760342433b39ddb", "fields": {"nom_de_la_commune": "AUMONT EN HALATTE", "libell_d_acheminement": "AUMONT EN HALATTE", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60028"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b8b7ee258a7d314e741621acccc7c087c66218", "fields": {"nom_de_la_commune": "AUTHEUIL EN VALOIS", "libell_d_acheminement": "AUTHEUIL EN VALOIS", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60031"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f09e019dd0fd276b63aa366808fc882745e18ff", "fields": {"nom_de_la_commune": "AUTRECHES", "libell_d_acheminement": "AUTRECHES", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60032"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aedea3047dcf6ff7e8bf2cfb7ebb5243a5a08bc5", "fields": {"nom_de_la_commune": "AVRECHY", "libell_d_acheminement": "AVRECHY", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60034"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae367bdcc53b2b921716744ae772141d080588b", "fields": {"nom_de_la_commune": "BACHIVILLERS", "libell_d_acheminement": "BACHIVILLERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60038"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b52470f5cd66f7a2c8486614b7a2ff79c22ba8", "fields": {"nom_de_la_commune": "BACOUEL", "libell_d_acheminement": "BACOUEL", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60039"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a626f98e4130c53341bf2966cae4b30e3be83d8", "fields": {"nom_de_la_commune": "BARBERY", "libell_d_acheminement": "BARBERY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60045"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5792d2039cb7be5c2fe59db5763e604291b5120a", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60048"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d79166c4a40e3df7b62d7e14fe1553f6ac16253", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60056"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30fc328b2fc8c17554f6fb8fd845fea2d3927795", "fields": {"nom_de_la_commune": "BELLE EGLISE", "libell_d_acheminement": "BELLE EGLISE", "code_postal": "60540", "coordonnees_gps": [49.1970454016, 2.20454103263], "code_commune_insee": "60060"}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1978ba91d4bcf59d5f745bee465a6db04d1da4a6", "fields": {"nom_de_la_commune": "BERNEUIL EN BRAY", "libell_d_acheminement": "BERNEUIL EN BRAY", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60063"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9013645f1fb35d0a057f4cadaa1a6227dcdac4d3", "fields": {"nom_de_la_commune": "BERNEUIL SUR AISNE", "libell_d_acheminement": "BERNEUIL SUR AISNE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60064"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c955f731ba1d31aa03dffb5ed6894b0974271f1a", "fields": {"nom_de_la_commune": "BONNEUIL LES EAUX", "libell_d_acheminement": "BONNEUIL LES EAUX", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60082"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4c53bbdba7d4926e11a5ad3f2845045eefce83", "fields": {"nom_de_la_commune": "BONNIERES", "libell_d_acheminement": "BONNIERES", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60084"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dbe7e5cfd606dc401dbc1a9dbc6a30d21c3b00", "fields": {"nom_de_la_commune": "BOULOGNE LA GRASSE", "libell_d_acheminement": "BOULOGNE LA GRASSE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60093"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d82aced08ecbc9cf00e5ee8b5c65e14038ea2da", "fields": {"nom_de_la_commune": "BRENOUILLE", "libell_d_acheminement": "BRENOUILLE", "code_postal": "60870", "coordonnees_gps": [49.2979695646, 2.51851013647], "code_commune_insee": "60102"}, "geometry": {"type": "Point", "coordinates": [2.51851013647, 49.2979695646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4fc58b30320d7928a28d2ab225ecce89aa251c", "fields": {"nom_de_la_commune": "BUICOURT", "libell_d_acheminement": "BUICOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60114"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faef56a645a5f7c3663d3a3522b56c16273327ed", "fields": {"nom_de_la_commune": "CAMBRONNE LES CLERMONT", "libell_d_acheminement": "CAMBRONNE LES CLERMONT", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60120"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb70ced54f8ad2abdf61259c0673895ecdd71ee0", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60121"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e37f4fb27fdb6def5518a8f108838e78005dbc", "fields": {"nom_de_la_commune": "CAUFFRY", "libell_d_acheminement": "CAUFFRY", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60134"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2f7e58bb537eabd2d4f8ad6e40d2185ab95864", "fields": {"nom_de_la_commune": "CAUVIGNY", "libell_d_acheminement": "CAUVIGNY", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60135"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f840046355344e1bccc14ddad9e9a183517a87f", "fields": {"nom_de_la_commune": "CEMPUIS", "libell_d_acheminement": "CEMPUIS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60136"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68d7826d7f8d4d98ac80bf69ed32c4b151c89b5", "fields": {"nom_de_la_commune": "CHANTILLY", "libell_d_acheminement": "CHANTILLY", "code_postal": "60500", "coordonnees_gps": [49.1857324224, 2.48739707813], "code_commune_insee": "60141"}, "geometry": {"type": "Point", "coordinates": [2.48739707813, 49.1857324224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779a74d737e57201befe4e019a21380356c361fa", "fields": {"nom_de_la_commune": "CHEVINCOURT", "libell_d_acheminement": "CHEVINCOURT", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60147"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5579d6f4d56104f3c9c6f5854e8300c96b038457", "fields": {"nom_de_la_commune": "CLAIROIX", "libell_d_acheminement": "CLAIROIX", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60156"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8645998e7b2f0370efffe8186f402cea2c82286e", "fields": {"nom_de_la_commune": "COURCELLES EPAYELLES", "libell_d_acheminement": "COURCELLES EPAYELLES", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60168"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a665a482b36be82d50c74ac82fa1b3a75edf1b8c", "fields": {"nom_de_la_commune": "CROUY EN THELLE", "libell_d_acheminement": "CROUY EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60185"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c51006e6e560b41cf67be42a0bcf209e506a95c", "fields": {"nom_de_la_commune": "DARGIES", "libell_d_acheminement": "DARGIES", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60194"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66505f191b621e368626b80d44d232d384084bc", "fields": {"nom_de_la_commune": "ELINCOURT STE MARGUERITE", "libell_d_acheminement": "ELINCOURT STE MARGUERITE", "code_postal": "60157", "coordonnees_gps": [49.5314159909, 2.82743399592], "code_commune_insee": "60206"}, "geometry": {"type": "Point", "coordinates": [2.82743399592, 49.5314159909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5092967ef30f4b4fa68b280bab944c88fbc9f419", "fields": {"nom_de_la_commune": "EMEVILLE", "libell_d_acheminement": "EMEVILLE", "code_postal": "60123", "coordonnees_gps": [49.2803594207, 2.98767047499], "code_commune_insee": "60207"}, "geometry": {"type": "Point", "coordinates": [2.98767047499, 49.2803594207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5cf035248f406e3551e72907a02380e5a85468", "fields": {"nom_de_la_commune": "ERQUINVILLERS", "libell_d_acheminement": "ERQUINVILLERS", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60216"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6baf95bcbde3bdb85a859de8bfab4bff3c3047c4", "fields": {"nom_de_la_commune": "ESSUILES", "libell_d_acheminement": "ESSUILES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60222"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee40ee96097a6ee8bc9d0b1abb9e87d57f8b919", "fields": {"nom_de_la_commune": "ETAVIGNY", "libell_d_acheminement": "ETAVIGNY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60224"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663ffab706e87f828963dbaee3a7599af5e9700a", "fields": {"nom_de_la_commune": "EVE", "libell_d_acheminement": "EVE", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60226"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1d72625af416a9a1933a6a09fd9dd0ff415fb5", "fields": {"nom_de_la_commune": "FLAVACOURT", "libell_d_acheminement": "FLAVACOURT", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60235"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5bd270840d0f676f70baaee0ed91e76c0f86b17", "fields": {"nom_de_la_commune": "FONTAINE CHAALIS", "libell_d_acheminement": "FONTAINE CHAALIS", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60241"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aae129fb83a161d40746bc878416f228f592db5", "fields": {"nom_de_la_commune": "FONTAINE LAVAGANNE", "libell_d_acheminement": "FONTAINE LAVAGANNE", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60242"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17961249f770dd07a21a13667b613ad28324899e", "fields": {"nom_de_la_commune": "FOUQUEROLLES", "libell_d_acheminement": "FOUQUEROLLES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60251"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70d79f5ebac67a34c86f23e5f4154e5f3b6a269", "fields": {"nom_de_la_commune": "FRANCASTEL", "libell_d_acheminement": "FRANCASTEL", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60253"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c66471e85fd07dc999f1c2773707e82836958de", "fields": {"nom_de_la_commune": "FRENICHES", "libell_d_acheminement": "FRENICHES", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60255"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db208297b32d5631383696d1dd7332ffd57f21ec", "fields": {"nom_de_la_commune": "FRESNOY LA RIVIERE", "libell_d_acheminement": "FRESNOY LA RIVIERE", "code_postal": "60127", "coordonnees_gps": [49.3037551422, 2.92944456621], "code_commune_insee": "60260"}, "geometry": {"type": "Point", "coordinates": [2.92944456621, 49.3037551422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4962fff637bfef0811a7564fe44c8a007db7e3a9", "fields": {"nom_de_la_commune": "FROCOURT", "libell_d_acheminement": "FROCOURT", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60264"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8a0148d99bfc9ffb467edd4fd5161a2f46563b", "fields": {"nom_de_la_commune": "FROISSY", "libell_d_acheminement": "FROISSY", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60265"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e05cf61a7d4156a8bf97a150c7e6d2cd42804d4", "fields": {"nom_de_la_commune": "GENVRY", "libell_d_acheminement": "GENVRY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60270"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df253b3c12c0213e7a876e04b9970a8f35a14510", "fields": {"nom_de_la_commune": "GERBEROY", "libell_d_acheminement": "GERBEROY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60271"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37feddf25a2ffc48e40a893b403fbf6400c1c719", "fields": {"nom_de_la_commune": "GONDREVILLE", "libell_d_acheminement": "GONDREVILLE", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60279"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d0cfe9e6b48ff6e8c746cdb60fb9a1a3cdfb28", "fields": {"nom_de_la_commune": "GOUVIEUX", "libell_d_acheminement": "GOUVIEUX", "code_postal": "60270", "coordonnees_gps": [49.1893342399, 2.42064865725], "code_commune_insee": "60282"}, "geometry": {"type": "Point", "coordinates": [2.42064865725, 49.1893342399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a431157a89799277e69862aab490e90800ce0d44", "fields": {"nom_de_la_commune": "GUISCARD", "libell_d_acheminement": "GUISCARD", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60291"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd87152a535c6070964f01c2e12fa07b725e52de", "fields": {"nom_de_la_commune": "GURY", "libell_d_acheminement": "GURY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60292"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7d7953d2e68a3ee5f6c5bbb7931d4ecd7d6940", "fields": {"nom_de_la_commune": "HADANCOURT LE HAUT CLOCHER", "libell_d_acheminement": "HADANCOURT LE HAUT CLOCHER", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60293"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf1c4421ed183b2f4b7948f68215ac8e1407a8e", "fields": {"nom_de_la_commune": "LE HAMEL", "libell_d_acheminement": "LE HAMEL", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60297"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347d22583d198079a461957d75d7feac750d3b41", "fields": {"nom_de_la_commune": "HAUTBOS", "libell_d_acheminement": "HAUTBOS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60303"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc565a2d0a1a3baada5488b77dc2d867b247c205", "fields": {"nom_de_la_commune": "HAUTEFONTAINE", "libell_d_acheminement": "HAUTEFONTAINE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60305"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8698fa4669b9f7e296df0bd06a84e1d8bbaa0b72", "fields": {"nom_de_la_commune": "HECOURT", "libell_d_acheminement": "HECOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60306"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c00bf48d433c922eb3b0d52a6bef0231708740a", "fields": {"nom_de_la_commune": "HOUDANCOURT", "libell_d_acheminement": "HOUDANCOURT", "code_postal": "60710", "coordonnees_gps": [49.343381616, 2.66813985407], "code_commune_insee": "60318"}, "geometry": {"type": "Point", "coordinates": [2.66813985407, 49.343381616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43153efc17f59f6bf702818133a2b36eefa7b84f", "fields": {"nom_de_la_commune": "IVRY LE TEMPLE", "libell_d_acheminement": "IVRY LE TEMPLE", "code_postal": "60173", "coordonnees_gps": [49.232278412, 2.02986222365], "code_commune_insee": "60321"}, "geometry": {"type": "Point", "coordinates": [2.02986222365, 49.232278412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26be86ed65ba336fbba97f0693a154c94d5d398f", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60326"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420b1469bb8d47711aa7015c3819c99b45586be2", "fields": {"nom_de_la_commune": "LACHELLE", "libell_d_acheminement": "LACHELLE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60337"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef3f7232d71063e470a3d567c9bb7dd7dfc1549", "fields": {"nom_de_la_commune": "LACROIX ST OUEN", "libell_d_acheminement": "LACROIX ST OUEN", "code_postal": "60610", "coordonnees_gps": [49.3555662347, 2.79523425007], "code_commune_insee": "60338"}, "geometry": {"type": "Point", "coordinates": [2.79523425007, 49.3555662347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5305c1f2e10b3588958b659bd4cade844b68cc", "fields": {"nom_de_la_commune": "LASSIGNY", "libell_d_acheminement": "LASSIGNY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60350"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f852a1691ba9e20ebf6816577eafb81ed71206", "fields": {"nom_de_la_commune": "LHERAULE", "libell_d_acheminement": "LHERAULE", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60359"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e802fb26509bd97733ce79897f8688179de9cb4", "fields": {"nom_de_la_commune": "LIBERMONT", "libell_d_acheminement": "LIBERMONT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60362"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3e486e5136df3fda891864e35672924b6edd36", "fields": {"nom_de_la_commune": "LIERVILLE", "libell_d_acheminement": "LIERVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60363"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0a6dcf8dc1611ecc950747364b8a09160869e8", "fields": {"nom_de_la_commune": "LIEUVILLERS", "libell_d_acheminement": "LIEUVILLERS", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60364"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3a3e8fef709260f087c75fc35474eda487a275", "fields": {"nom_de_la_commune": "LORMAISON", "libell_d_acheminement": "LORMAISON", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60370"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecbcaa646daa8dce6be2a7a1dc4c914a8964557e", "fields": {"nom_de_la_commune": "MAIMBEVILLE", "libell_d_acheminement": "MAIMBEVILLE", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60375"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03c91e203a9a9216fe1188c3a0108c4b9b73169", "fields": {"nom_de_la_commune": "MAISONCELLE ST PIERRE", "libell_d_acheminement": "MAISONCELLE ST PIERRE", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60376"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe449339460b02318c072822b253ff45d07d2edc", "fields": {"nom_de_la_commune": "MARSEILLE EN BEAUVAISIS", "libell_d_acheminement": "MARSEILLE EN BEAUVAISIS", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60387"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cdaa1d35da44488e35932aae7fdc894a3b8505", "fields": {"nom_de_la_commune": "MELLO", "libell_d_acheminement": "MELLO", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60393"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4d4b06047c85a050e5a204268c62e140582755", "fields": {"nom_de_la_commune": "LE MESNIL SUR BULLES", "libell_d_acheminement": "LE MESNIL SUR BULLES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60400"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76f3a6fd2bbc8c72c9acf4acb2675ecc15bd6d6", "fields": {"nom_de_la_commune": "MOLIENS", "libell_d_acheminement": "MOLIENS", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60405"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d6c8aba57f627d7a458f659a72786d9c80f575", "fields": {"nom_de_la_commune": "MONTJAVOULT", "libell_d_acheminement": "MONTJAVOULT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60420"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b2dbd38ec1c4d44a5c6ad7f2a066159d4d75a8", "fields": {"nom_de_la_commune": "MONTLOGNON", "libell_d_acheminement": "MONTLOGNON", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60422"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e7196949fc2ad913ce432205aa7a49943ed449", "fields": {"nom_de_la_commune": "MONTS", "libell_d_acheminement": "MONTS", "code_postal": "60119", "coordonnees_gps": [49.2082498189, 2.02680448523], "code_commune_insee": "60427"}, "geometry": {"type": "Point", "coordinates": [2.02680448523, 49.2082498189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e086b5e7832b222e89b5d858495f88631bd3e1a", "fields": {"nom_de_la_commune": "LE MONT ST ADRIEN", "libell_d_acheminement": "LE MONT ST ADRIEN", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60428"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75966ae9365eb4f125c8790c79906652c6e17b10", "fields": {"nom_de_la_commune": "MORANGLES", "libell_d_acheminement": "MORANGLES", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60429"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fa6449abd7427c977598578dc08f44cea8f55d", "fields": {"nom_de_la_commune": "MORTEMER", "libell_d_acheminement": "MORTEMER", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60434"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fae0b6f200200b3e3576475fcd9853608d158e", "fields": {"nom_de_la_commune": "MORY MONTCRUX", "libell_d_acheminement": "MORY MONTCRUX", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60436"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead08bbc7882b3f115a3f4a6adc27ceadacab91e", "fields": {"nom_de_la_commune": "MUIRANCOURT", "libell_d_acheminement": "MUIRANCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60443"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3f14df4cb499b58748aeca62df9fcaae676348", "fields": {"nom_de_la_commune": "NEUFCHELLES", "libell_d_acheminement": "NEUFCHELLES", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60448"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a911c16a817c907c2cdf5f801fb9238c8925ebaa", "fields": {"nom_de_la_commune": "NEUILLY SOUS CLERMONT", "libell_d_acheminement": "NEUILLY SOUS CLERMONT", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60451"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f2452401783c6e45bc0b39b1ab73ae6a10b47f", "fields": {"nom_de_la_commune": "LA NEUVILLE D AUMONT", "libell_d_acheminement": "LA NEUVILLE D AUMONT", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60453"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77592f61a3c33f7c713e95bfcb9d8a697f59645d", "fields": {"nom_de_la_commune": "LA NEUVILLE EN HEZ", "libell_d_acheminement": "LA NEUVILLE EN HEZ", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60454"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f4de175cc1882fdeee0a6c7124da4eed4b6f3e", "fields": {"nom_de_la_commune": "LA NEUVILLE ROY", "libell_d_acheminement": "LA NEUVILLE ROY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60456"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9b18fe23cb67d17b67de926b9af9a2e217ab78", "fields": {"nom_de_la_commune": "LA NEUVILLE VAULT", "libell_d_acheminement": "LA NEUVILLE VAULT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60460"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e1bdf11026d7c8c7c2fdfea4e3e44acc857dd0", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70464"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec19848e21fd179d604ae628021b18f067087f2", "fields": {"code_postal": "70100", "code_commune_insee": "70466", "libell_d_acheminement": "ST LOUP NANTOUARD", "ligne_5": "NANTOUARD", "nom_de_la_commune": "ST LOUP NANTOUARD", "coordonnees_gps": [47.4450284828, 5.5835389303]}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16560a753c3030f89ed3b237216468bbff41b3dd", "fields": {"nom_de_la_commune": "STE REINE", "libell_d_acheminement": "STE REINE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70471"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704825c812303748fed5a0ceb51b373eac7a02ad", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70474"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ced65b6fb9ba897a1e203353a6ed997b2e2f71", "fields": {"nom_de_la_commune": "SAULX", "libell_d_acheminement": "SAULX", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70478"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b1a36d7a94e37ffcf7df9faf7f55dbb104bd76", "fields": {"nom_de_la_commune": "SAUVIGNEY LES GRAY", "libell_d_acheminement": "SAUVIGNEY LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70479"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d59125d2113d555ab5354b69bb78ec7cc8cad154", "fields": {"nom_de_la_commune": "SCYE", "libell_d_acheminement": "SCYE", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70483"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3dbbeeb56fbf1e27c5887ef6bd23aafafaf2af5", "fields": {"nom_de_la_commune": "SERVIGNEY", "libell_d_acheminement": "SERVIGNEY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70490"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981b58fa5347810ec7b3e44d82eeea8aeae103f5", "fields": {"nom_de_la_commune": "SEVEUX", "libell_d_acheminement": "SEVEUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70491"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e84c8a789bd80061c77f7f8e1e6250e9be87b2", "fields": {"nom_de_la_commune": "VALLEROIS LE BOIS", "libell_d_acheminement": "VALLEROIS LE BOIS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70516"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401b0c225fcd7da474ccc5d1a5d26127d40bf9a8", "fields": {"nom_de_la_commune": "VARS", "libell_d_acheminement": "VARS", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70523"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ffc4e337b765c6c0bac26df0064785da4719805", "fields": {"code_postal": "70100", "code_commune_insee": "70528", "libell_d_acheminement": "VELESMES ECHEVANNE", "ligne_5": "ECHEVANNE", "nom_de_la_commune": "VELESMES ECHEVANNE", "coordonnees_gps": [47.4450284828, 5.5835389303]}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3fe86e1087a6c855059d123dc7e4cde0ab2d270", "fields": {"nom_de_la_commune": "VELLEFRIE", "libell_d_acheminement": "VELLEFRIE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70534"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b682df4fdd692b72a0a0123f23d02e52c9dca698", "fields": {"nom_de_la_commune": "VELLEMINFROY", "libell_d_acheminement": "VELLEMINFROY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70537"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e9acae3a695f6d3837ebd4354150b69852b773", "fields": {"nom_de_la_commune": "VELLEMOZ", "libell_d_acheminement": "VELLEMOZ", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70538"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908bf01fc8b8c1aa791038c626f9eb6444b32f26", "fields": {"nom_de_la_commune": "VESOUL", "libell_d_acheminement": "VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70550"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8fc12ade612fcceec108dbbef3e6a02d7a45dc", "fields": {"nom_de_la_commune": "VILLAFANS", "libell_d_acheminement": "VILLAFANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70552"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800cb97b0c29cf8deff79829bec3e4378964c815", "fields": {"nom_de_la_commune": "VILLERS LA VILLE", "libell_d_acheminement": "VILLERS LA VILLE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70562"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba6eeb16a2f60fb4f56dbadd0acc5a93506172c", "fields": {"nom_de_la_commune": "LA VOIVRE", "libell_d_acheminement": "LA VOIVRE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70573"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b24e3d4a00210fe7fdf715361d304a32f41ea52", "fields": {"nom_de_la_commune": "VY LES FILAIN", "libell_d_acheminement": "VY LES FILAIN", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70583"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ccbfef11a6c8442d1407f4f9c395e3eace977f", "fields": {"nom_de_la_commune": "L ABERGEMENT DE CUISERY", "libell_d_acheminement": "L ABERGEMENT DE CUISERY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71001"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33a7d7d17c02e1a527265afed3776571b6cb741", "fields": {"nom_de_la_commune": "ALLEREY SUR SAONE", "libell_d_acheminement": "ALLEREY SUR SAONE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71003"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d8d07be1d26284de998bdd9c29efa792804ed8", "fields": {"nom_de_la_commune": "AMANZE", "libell_d_acheminement": "AMANZE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71006"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ca42c8562100b6bef8a2fadca5cbe94e3124c9", "fields": {"nom_de_la_commune": "AMEUGNY", "libell_d_acheminement": "AMEUGNY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71007"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20d6cc36cea5ad5ef0983c5589a5f642ed491172", "fields": {"nom_de_la_commune": "ANGLURE SOUS DUN", "libell_d_acheminement": "ANGLURE SOUS DUN", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71008"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57b422cd28dcfbb8849a88eaa54947a7a2a55ae6", "fields": {"nom_de_la_commune": "ANOST", "libell_d_acheminement": "ANOST", "code_postal": "71550", "coordonnees_gps": [47.0673836602, 4.11662023514], "code_commune_insee": "71009"}, "geometry": {"type": "Point", "coordinates": [4.11662023514, 47.0673836602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188b0c3e3a102495fc27d1b837883d2cd3b952cd", "fields": {"nom_de_la_commune": "ANTULLY", "libell_d_acheminement": "ANTULLY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71010"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bfaf5dea992dfa790e15f2ef598b5340362671", "fields": {"nom_de_la_commune": "BEAUMONT SUR GROSNE", "libell_d_acheminement": "BEAUMONT SUR GROSNE", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71026"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033292b680ab1fbc11c21aa06c7e16bb92e53cb2", "fields": {"nom_de_la_commune": "BEY", "libell_d_acheminement": "BEY", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71033"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc501bfcbcb54738b92f3d0ceb6566133f196e06", "fields": {"nom_de_la_commune": "LES BIZOTS", "libell_d_acheminement": "LES BIZOTS", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71038"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81945f79273ee510cfaa9c30b7414b375fd4bfb1", "fields": {"nom_de_la_commune": "LA BOULAYE", "libell_d_acheminement": "LA BOULAYE", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71046"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b028177c666700a68a500c3897a60074d46f0ae4", "fields": {"nom_de_la_commune": "BRESSE SUR GROSNE", "libell_d_acheminement": "BRESSE SUR GROSNE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71058"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1e50df5d8a2451c2f368b98b87e4d37bace75f", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "71670", "coordonnees_gps": [46.8253378412, 4.49167816237], "code_commune_insee": "71059"}, "geometry": {"type": "Point", "coordinates": [4.49167816237, 46.8253378412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d930d16404cfa7df323b1eddf9d28b88d823eebb", "fields": {"nom_de_la_commune": "BROYE", "libell_d_acheminement": "BROYE", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71063"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fd150ae3bf039b96967647ba1c55fd0320bd8f", "fields": {"nom_de_la_commune": "CERSOT", "libell_d_acheminement": "CERSOT", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71072"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8586f1ea4b2e66d3b8a6addf5da9b90929390a9b", "fields": {"nom_de_la_commune": "CHAGNY", "libell_d_acheminement": "CHAGNY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71073"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02471d75be51ba636640aa8065db948a987dd5ee", "fields": {"nom_de_la_commune": "CHALON SUR SAONE", "libell_d_acheminement": "CHALON SUR SAONE", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71076"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d0b781e178f79f3f3944cfb5fcd60c8beed2d6", "fields": {"nom_de_la_commune": "CHAMPFORGEUIL", "libell_d_acheminement": "CHAMPFORGEUIL", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71081"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82fe71ef108605719d3adafa0fd90eb2603a4d0f", "fields": {"nom_de_la_commune": "LA CHAPELLE AU MANS", "libell_d_acheminement": "LA CHAPELLE AU MANS", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71088"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94897f88eb5e1cece28759d4177ad8d2e6632838", "fields": {"nom_de_la_commune": "LA CHAPELLE DE BRAGNY", "libell_d_acheminement": "LA CHAPELLE DE BRAGNY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71089"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f42a49b441ea0a8ded7f8033bffb7d38e40ce52", "fields": {"code_postal": "71570", "code_commune_insee": "71090", "libell_d_acheminement": "LA CHAPELLE DE GUINCHAY", "ligne_5": "LA CHAPELLE PONTANEVAUX", "nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", "coordonnees_gps": [46.2281804382, 4.74594921623]}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3477057bbef05958dc35dc5972b162b5b901c9", "fields": {"nom_de_la_commune": "LA CHAPELLE DU MONT DE FRANCE", "libell_d_acheminement": "LA CHAPELLE DU MONT DE FRANCE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71091"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087012ed2374b97735ae183da7e9d57aefbdab62", "fields": {"nom_de_la_commune": "CHARETTE VARENNES", "libell_d_acheminement": "CHARETTE VARENNES", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71101"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c832acc67e595340caf9d5c11972bf0d80c7bdb", "fields": {"nom_de_la_commune": "CHASSIGNY SOUS DUN", "libell_d_acheminement": "CHASSIGNY SOUS DUN", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71110"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1bfca406c6204896addd6adff0e556e68fff36", "fields": {"nom_de_la_commune": "CHATEAU", "libell_d_acheminement": "CHATEAU", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71112"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867cd18a13498348d6596bc085b1392c3e6736d7", "fields": {"nom_de_la_commune": "CHEILLY LES MARANGES", "libell_d_acheminement": "CHEILLY LES MARANGES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71122"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522d0ece3df9a4a539d04e888d3d0ba553bb4dc4", "fields": {"nom_de_la_commune": "COLLONGE EN CHAROLLAIS", "libell_d_acheminement": "COLLONGE EN CHAROLLAIS", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71139"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1358983d8ebc6e03556d6b0ebbf847b8b397f8f", "fields": {"nom_de_la_commune": "COLLONGE LA MADELEINE", "libell_d_acheminement": "COLLONGE LA MADELEINE", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71140"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36e167f85721115728cdd45e6633ca78ade6328", "fields": {"nom_de_la_commune": "CORMATIN", "libell_d_acheminement": "CORMATIN", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71145"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0835f3c3e2f9de034760f915a8c143ad3fb561", "fields": {"nom_de_la_commune": "CORTAMBERT", "libell_d_acheminement": "CORTAMBERT", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71146"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e355c85a8cdaa6427d4b99e8926fe53aa80e2f", "fields": {"nom_de_la_commune": "COUBLANC", "libell_d_acheminement": "COUBLANC", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71148"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44121b7acdc62dba63656df933455f64944457f0", "fields": {"nom_de_la_commune": "CRISSEY", "libell_d_acheminement": "CRISSEY", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71154"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a36b17d6a7aea3611a414d1c6fd6a9c2357e705", "fields": {"nom_de_la_commune": "CURTIL SOUS BURNAND", "libell_d_acheminement": "CURTIL SOUS BURNAND", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71164"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8944bc9feac4b73174315347b2a546abfffa0e7", "fields": {"nom_de_la_commune": "DEVROUZE", "libell_d_acheminement": "DEVROUZE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71173"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d200c14026e19efd65a329eb0fd6892d5016cff", "fields": {"nom_de_la_commune": "DIGOIN", "libell_d_acheminement": "DIGOIN", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71176"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3d83c2e36c908641578fad3171407651e710ab", "fields": {"nom_de_la_commune": "ESSERTENNE", "libell_d_acheminement": "ESSERTENNE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71191"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7dc5c63bba518382d4b96e57e5b85d6060969a6", "fields": {"nom_de_la_commune": "FONTAINES", "libell_d_acheminement": "FONTAINES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71202"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255a3516b4b99fd7ffd1967277828a0a5ec6c4ac", "fields": {"nom_de_la_commune": "FRETTERANS", "libell_d_acheminement": "FRETTERANS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71207"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da4a35b1876ef54b46c91870540b47a5d9d47e5", "fields": {"nom_de_la_commune": "GENELARD", "libell_d_acheminement": "GENELARD", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71212"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e38b85380101c1eb59901955e58ce0a923b645d", "fields": {"nom_de_la_commune": "LA GENETE", "libell_d_acheminement": "LA GENETE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71213"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a29bf1f2047c1a1be36b3d070986c6f7c80aee", "fields": {"nom_de_la_commune": "GIBLES", "libell_d_acheminement": "GIBLES", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71218"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4af43d4904128912de84d8565b950219d00241", "fields": {"nom_de_la_commune": "LA GRANDE VERRIERE", "libell_d_acheminement": "LA GRANDE VERRIERE", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71223"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae726d5abf1d0c1349ead4d0524d24e758219d9", "fields": {"nom_de_la_commune": "GRURY", "libell_d_acheminement": "GRURY", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71227"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081cbd463d067adcd2deb3a5e9ce95d13ba0bb63", "fields": {"nom_de_la_commune": "GUEUGNON", "libell_d_acheminement": "GUEUGNON", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71230"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348441602aee2babe06adcad52649e8c5d1ca43b", "fields": {"nom_de_la_commune": "L HOPITAL LE MERCIER", "libell_d_acheminement": "L HOPITAL LE MERCIER", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71233"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30ebf09e9e4f0f4aac54e8a93dbfbe5f20f121c", "fields": {"nom_de_la_commune": "JONCY", "libell_d_acheminement": "JONCY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71242"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda7f26812c34baaf0d0e67cc8bb6fd3fa857f2e", "fields": {"nom_de_la_commune": "LAIVES", "libell_d_acheminement": "LAIVES", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71249"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdce81bdc580b6f32142c099275e01127cecd5ab", "fields": {"nom_de_la_commune": "LAIZE", "libell_d_acheminement": "LAIZE", "code_postal": "71870", "coordonnees_gps": [46.3631972842, 4.80026769579], "code_commune_insee": "71250"}, "geometry": {"type": "Point", "coordinates": [4.80026769579, 46.3631972842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2de839b22f2da30882e25b44ffa3d14153e790", "fields": {"nom_de_la_commune": "LESME", "libell_d_acheminement": "LESME", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71255"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681550e916a7fd802b17cd36dd72213425695321", "fields": {"nom_de_la_commune": "LESSARD EN BRESSE", "libell_d_acheminement": "LESSARD EN BRESSE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71256"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7576b0d3f42ecb5a2f21beeb4537cbb5e83351d1", "fields": {"nom_de_la_commune": "LOISY", "libell_d_acheminement": "LOISY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71261"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664621aad04490dfd041ae93da123006d08e0516", "fields": {"nom_de_la_commune": "LONGEPIERRE", "libell_d_acheminement": "LONGEPIERRE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71262"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d201c2771298bacbdb68e1df8b1ed8471bba4c1", "fields": {"nom_de_la_commune": "LOURNAND", "libell_d_acheminement": "LOURNAND", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71264"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4778d3e390a5844878fd7f1f85db65e0892af6cd", "fields": {"nom_de_la_commune": "LUCENAY L EVEQUE", "libell_d_acheminement": "LUCENAY L EVEQUE", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71266"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff035d6321d62464d3d892c49c9f049ee6cec729", "fields": {"nom_de_la_commune": "MACON", "libell_d_acheminement": "MACON", "code_postal": "71000", "coordonnees_gps": [46.3175504743, 4.81977288125], "code_commune_insee": "71270"}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3185ba4270505b2f21121a6eebc4b454fb9cdace", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "SENNECE LES MACON", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f517af6f643686a7806e5a00283782f7c3b49b81", "fields": {"nom_de_la_commune": "MALAY", "libell_d_acheminement": "MALAY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71272"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36012b1bf6b865fe4b490805c92588555298d5d", "fields": {"nom_de_la_commune": "MARCILLY LA GUEURCE", "libell_d_acheminement": "MARCILLY LA GUEURCE", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71276"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c469cb5349616aa8fe6bc2f7649fd562783d937a", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71278"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4f3fc8d7de05c09e0342b3694241654dbf324e", "fields": {"code_postal": "71220", "code_commune_insee": "71279", "libell_d_acheminement": "LE ROUSSET MARIZY", "ligne_5": "LE ROUSSET", "nom_de_la_commune": "LE ROUSSET MARIZY", "coordonnees_gps": [46.4917423764, 4.43217403494]}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73fe48c8eacb6bef83737f8a24f7508335890384", "fields": {"nom_de_la_commune": "MENETREUIL", "libell_d_acheminement": "MENETREUIL", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71293"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45344818e058529ffd4758a256201c1086c048a2", "fields": {"nom_de_la_commune": "MERCUREY", "libell_d_acheminement": "MERCUREY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71294"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31721406c78afd0253c2b0b2679a7a41ef1292bd", "fields": {"nom_de_la_commune": "MILLY LAMARTINE", "libell_d_acheminement": "MILLY LAMARTINE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71299"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0160ebcec157461f5abb8c8b4fd7d0ab5ec890a", "fields": {"nom_de_la_commune": "MONTCOY", "libell_d_acheminement": "MONTCOY", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71312"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a336a0b9bb6d794a2fde03f8f0b72b16ddce4b0", "fields": {"nom_de_la_commune": "MOREY", "libell_d_acheminement": "MOREY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71321"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da02aeda5959b1279d46f4807aebbe0af506284a", "fields": {"nom_de_la_commune": "NOCHIZE", "libell_d_acheminement": "NOCHIZE", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71331"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aabd8c843ed19e1121fa682277cc13ce80c209f", "fields": {"nom_de_la_commune": "OUROUX SOUS LE BOIS STE MARIE", "libell_d_acheminement": "OUROUX SOUS LE BOIS STE MARIE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71335"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d28539d71a1b11610ec62986049a15cbbca9d1a", "fields": {"nom_de_la_commune": "PALLEAU", "libell_d_acheminement": "PALLEAU", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71341"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af90f3480fc65e423478654849074a547f9da5d6", "fields": {"nom_de_la_commune": "PERONNE", "libell_d_acheminement": "PERONNE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71345"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48aef70803a34a275cc86b1c9a3a268607124fae", "fields": {"nom_de_la_commune": "PERRIGNY SUR LOIRE", "libell_d_acheminement": "PERRIGNY SUR LOIRE", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71348"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6715f45402d8bdf8a4fc9a4a5e4a376e17593661", "fields": {"nom_de_la_commune": "LE PLANOIS", "libell_d_acheminement": "LE PLANOIS", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71352"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a03843ee93dbbb68e8e8177ce941ae45f760b62", "fields": {"nom_de_la_commune": "PLOTTES", "libell_d_acheminement": "PLOTTES", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71353"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778fa14f372c27b8c1b394dd233c1a2b690db6cc", "fields": {"nom_de_la_commune": "RANCY", "libell_d_acheminement": "RANCY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71365"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82846fd087d27a0e4258ec81f263facc6f16c6bc", "fields": {"nom_de_la_commune": "REMIGNY", "libell_d_acheminement": "REMIGNY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71369"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add35aa1fa1758d8a8ef122cb372c0b873706ad9", "fields": {"nom_de_la_commune": "ROMANECHE THORINS", "libell_d_acheminement": "ROMANECHE THORINS", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71372"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd5fb556218e2cccda0f8d50926d431a342c6f3", "fields": {"nom_de_la_commune": "ROMENAY", "libell_d_acheminement": "ROMENAY", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71373"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dcd3c9a5158236c334de83d4c6fec99889595e3", "fields": {"nom_de_la_commune": "RULLY", "libell_d_acheminement": "RULLY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71378"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dd762b99c12ecb986275600c796b67557eae58", "fields": {"nom_de_la_commune": "SAGY", "libell_d_acheminement": "SAGY", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71379"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152f5002384794cf0fff27fe2835168634d5c41e", "fields": {"nom_de_la_commune": "SAILLENARD", "libell_d_acheminement": "SAILLENARD", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71380"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9903c849afaf2764f41f3ba8e9279bb109f50f", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71382"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ddad9d1c4e0d0377232653b59f9de4a4b5fcdf", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61111"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bbc15509711a1e99757fec1a3d3007874861616", "fields": {"nom_de_la_commune": "CONDE SUR SARTHE", "libell_d_acheminement": "CONDE SUR SARTHE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61117"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac659be424b7d4bb89100a713d39669621eac17", "fields": {"nom_de_la_commune": "COUDEHARD", "libell_d_acheminement": "COUDEHARD", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61120"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba79004f4ae8361c110806a38bdba51c75f755d", "fields": {"nom_de_la_commune": "DAMIGNY", "libell_d_acheminement": "DAMIGNY", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61143"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851f132c5ba748e8c06fc4baa64d76a30cc8a483", "fields": {"code_postal": "61700", "code_commune_insee": "61145", "libell_d_acheminement": "DOMFRONT EN POIRAIE", "ligne_5": "ROUELLE", "nom_de_la_commune": "DOMFRONT EN POIRAIE", "coordonnees_gps": [48.6167127072, -0.618978701151]}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8c914859faa7fbb8bac5524b2d767742ef1977", "fields": {"nom_de_la_commune": "DOMPIERRE", "libell_d_acheminement": "DOMPIERRE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61146"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1fbb0c708f956b4657d045d483927053b16cbc", "fields": {"nom_de_la_commune": "DURCET", "libell_d_acheminement": "DURCET", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61148"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e060fcccf708bcd68cf94cc882b13d8942ae1302", "fields": {"nom_de_la_commune": "ECHAUFFOUR", "libell_d_acheminement": "ECHAUFFOUR", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61150"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34fe7b38897da048274479cba6e8ce8cf16dfb71", "fields": {"nom_de_la_commune": "ECOUCHE LES VALLEES", "libell_d_acheminement": "ECOUCHE LES VALLEES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61153"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7cf2af12deeb08ae2e4bb2a41f546cc2bf0ba43", "fields": {"nom_de_la_commune": "EXMES", "libell_d_acheminement": "EXMES", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61157"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955f3adc889543ddbc77b559d64a4784d0405376", "fields": {"nom_de_la_commune": "FAY", "libell_d_acheminement": "FAY", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61159"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f8b27903b8d1a76e397bcba7ddeed612fa9ac2", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "GAUVILLE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf2f652354dc8a3beaa82ee77edecf67fdcaa01", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "ST NICOLAS DES LAITIERS", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6835dcdffd842ba4d5aa0d4af772dfb631868422", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61176"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ed02afb917f7cc67f1544e919761e4c792928f", "fields": {"nom_de_la_commune": "LA GONFRIERE", "libell_d_acheminement": "LA GONFRIERE", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61193"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4d108b584d873d1fd5a274de112e0bf1b7b8b1", "fields": {"nom_de_la_commune": "GOULET", "libell_d_acheminement": "GOULET", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61194"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f70755bd28f7d580b8089825da3ccd867d7e5b", "fields": {"nom_de_la_commune": "GUEPREI", "libell_d_acheminement": "GUEPREI", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61197"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586b207207a57a049ea82f52fe9f8edfafe6cf52", "fields": {"nom_de_la_commune": "HABLOVILLE", "libell_d_acheminement": "HABLOVILLE", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61199"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ad96f656b2f1f041b003a0095317865d0642c7", "fields": {"nom_de_la_commune": "IRAI", "libell_d_acheminement": "IRAI", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61208"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6c41fba7fa223e2d8fb41cc33fd973f1883434", "fields": {"nom_de_la_commune": "JOUE DU BOIS", "libell_d_acheminement": "JOUE DU BOIS", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61209"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394cb435885edcabd5516fc25c1abfc2625e9b73", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "LORE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd0f0c57be9b0ecc547bf70cc0420778d87af718", "fields": {"nom_de_la_commune": "JUVIGNY SUR ORNE", "libell_d_acheminement": "JUVIGNY SUR ORNE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61212"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f9a9f74c08870e4d3886dd23fe721ed265482f", "fields": {"nom_de_la_commune": "LALACELLE", "libell_d_acheminement": "LALACELLE", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61213"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59079b6ef8c22e81a2e8a44a5e8536ee3d2d6d2c", "fields": {"nom_de_la_commune": "LANDISACQ", "libell_d_acheminement": "LANDISACQ", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61222"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9949de94206e840f60ddfc3903dcae1df60cd015", "fields": {"nom_de_la_commune": "LIVAIE", "libell_d_acheminement": "LIVAIE", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61228"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a15ed2550716b4a82180bf74351bb22115584be", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "LA LANDE SUR EURE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9892a54023bf22764421ff9e04c0394001a3762", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MARCHAINVILLE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb0fe926e97b6b7c08cb43a53de0e6bf9b37a61", "fields": {"nom_de_la_commune": "LOUGE SUR MAIRE", "libell_d_acheminement": "LOUGE SUR MAIRE", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61237"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613f23cec9b80fdb0ade4e8961a8233ac6bac44d", "fields": {"nom_de_la_commune": "MARCHEMAISONS", "libell_d_acheminement": "MARCHEMAISONS", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61251"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a1b75d4d6e65bb7dbd8fffec41ee653c478cb9", "fields": {"nom_de_la_commune": "MEHOUDIN", "libell_d_acheminement": "MEHOUDIN", "code_postal": "61410", "coordonnees_gps": [48.5523953273, -0.396121387013], "code_commune_insee": "61257"}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6358e3d7b5a0d517d573cb492dbdc35fb5751613", "fields": {"nom_de_la_commune": "LE MENIL BROUT", "libell_d_acheminement": "LE MENIL BROUT", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61261"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc371de8c50345862af7abfb27b4eddf185cb0f6", "fields": {"nom_de_la_commune": "LE MENIL CIBOULT", "libell_d_acheminement": "LE MENIL CIBOULT", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61262"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4afd7dc65a598d9e69300016936e5d0b0abf42a", "fields": {"nom_de_la_commune": "MENIL GONDOUIN", "libell_d_acheminement": "MENIL GONDOUIN", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61265"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67452f78e953a841806fbac1bd323b90bbb87a10", "fields": {"nom_de_la_commune": "MONTGAROULT", "libell_d_acheminement": "MONTGAROULT", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61285"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e868cfd240789fd037f963f145ac32abc374357f", "fields": {"nom_de_la_commune": "MONTILLY SUR NOIREAU", "libell_d_acheminement": "MONTILLY SUR NOIREAU", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61287"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b702587ee0613684f7d7889c824b6b37546d4810", "fields": {"nom_de_la_commune": "MONT ORMEL", "libell_d_acheminement": "MONT ORMEL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61289"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be41db7300da3023d4180627f000576e3ad21fa7", "fields": {"nom_de_la_commune": "MOUTIERS AU PERCHE", "libell_d_acheminement": "MOUTIERS AU PERCHE", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61300"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "922652b2ae1cb5d1a02c544a07f003902939a1f8", "fields": {"nom_de_la_commune": "NEUILLY LE BISSON", "libell_d_acheminement": "NEUILLY LE BISSON", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61304"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9a8db31b918c399fefc77856eb064d3622ce41", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "COLONARD CORUBERT", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f14a5b00c968ba9101371318dafa02ac59e52b", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "ST AUBIN DES GROIS", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465a38def8d22d9bb768f23fca4505a0b8733f71", "fields": {"nom_de_la_commune": "PARFONDEVAL", "libell_d_acheminement": "PARFONDEVAL", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61322"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f19aef5e1a1e42d7e434827cc9e3e34965c4430", "fields": {"nom_de_la_commune": "LE PIN AU HARAS", "libell_d_acheminement": "LE PIN AU HARAS", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61328"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5bc35af8e7e0bf80ecdca5a90f857f560635e1", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "LA FRESNAYE AU SAUVAGE", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8381e5b258b099571537f7dcbb6c3b7508ee603", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "LES ROTOURS", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c732e54bef20806cbb514bb9496fc7b5423e5e", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "RABODANGES", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4798902cef853c5a4c4f76b2723dd46d3f34d1", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "ST AUBERT SUR ORNE", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103484ed7f756453b617779fb66cf499f3ba0995", "fields": {"nom_de_la_commune": "REVEILLON", "libell_d_acheminement": "REVEILLON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61348"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ae5fabda57beb36da9a1540098f9840eba3da51", "fields": {"nom_de_la_commune": "RI", "libell_d_acheminement": "RI", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61349"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df82c0ab9ddcc229132ed0011311bdc1ca88715c", "fields": {"nom_de_la_commune": "ROIVILLE", "libell_d_acheminement": "ROIVILLE", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61351"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee3dbaaf462ac4620fe5ecd38156ebfbda0362d", "fields": {"nom_de_la_commune": "ST CENERI LE GEREI", "libell_d_acheminement": "ST CENERI LE GEREI", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61372"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af25d6318bc36391918c5a554362c0ed5074b3c8", "fields": {"nom_de_la_commune": "STE CERONNE LES MORTAGNE", "libell_d_acheminement": "STE CERONNE LES MORTAGNE", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61373"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "314f4108422e361d537ae8da3c286839553f58f6", "fields": {"code_postal": "61570", "code_commune_insee": "61375", "libell_d_acheminement": "BOISCHAMPRE", "ligne_5": "ST LOYER DES CHAMPS", "nom_de_la_commune": "BOISCHAMPRE", "coordonnees_gps": [48.6574688891, 0.0273677647898]}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23a4c11942e6758a3dc347287dc05ad9f245439", "fields": {"nom_de_la_commune": "ST FRAIMBAULT", "libell_d_acheminement": "ST FRAIMBAULT", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61387"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b34a0c4c4f5d7041fd56cc734a596083b2f381", "fields": {"nom_de_la_commune": "ST GERMAIN LE VIEUX", "libell_d_acheminement": "ST GERMAIN LE VIEUX", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61398"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27fe1ea3f70f01e29f9d300d5c6c1d8f32295fa6", "fields": {"nom_de_la_commune": "STE HONORINE LA CHARDONNE", "libell_d_acheminement": "STE HONORINE LA CHARDONNE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61407"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0c84f38197f8b1064fdd1ece416df25f6f8077", "fields": {"nom_de_la_commune": "ST LAMBERT SUR DIVE", "libell_d_acheminement": "ST LAMBERT SUR DIVE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61413"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19fc1c09c34e38f3c87b5d1afc9b7ffcd9289e77", "fields": {"nom_de_la_commune": "ST NICOLAS DE SOMMAIRE", "libell_d_acheminement": "ST NICOLAS DE SOMMAIRE", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61435"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85c96daca2b92e33b9fde4e173a59569ca7f11f", "fields": {"nom_de_la_commune": "ST OUEN LE BRISOULT", "libell_d_acheminement": "ST OUEN LE BRISOULT", "code_postal": "61410", "coordonnees_gps": [48.5523953273, -0.396121387013], "code_commune_insee": "61439"}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d307b1d51c1d9c5338a93e06f4bc36483505b6c1", "fields": {"nom_de_la_commune": "ST PIERRE DES LOGES", "libell_d_acheminement": "ST PIERRE DES LOGES", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61446"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4bf66b32583ee4ba879174aff8760603e9efa3", "fields": {"nom_de_la_commune": "ST PIERRE LA BRUYERE", "libell_d_acheminement": "ST PIERRE LA BRUYERE", "code_postal": "61340", "coordonnees_gps": [48.372155968, 0.719847889248], "code_commune_insee": "61448"}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47015fcfd12cb7872ac9dcfd7834b17f03a04ab1", "fields": {"nom_de_la_commune": "ST QUENTIN DE BLAVOU", "libell_d_acheminement": "ST QUENTIN DE BLAVOU", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61450"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e58e5b264563f15c40d0e4808d308c6aed1b36", "fields": {"nom_de_la_commune": "ST SAUVEUR DE CARROUGES", "libell_d_acheminement": "ST SAUVEUR DE CARROUGES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61453"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbc52be8c9b0d323d70d7e350d090da8e3be2096", "fields": {"nom_de_la_commune": "ST SULPICE SUR RISLE", "libell_d_acheminement": "ST SULPICE SUR RISLE", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61456"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1490e30609f95f5ab1dac09cf024912ef2c1d9a7", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DES BRUYERES", "libell_d_acheminement": "ST SYMPHORIEN DES BRUYERES", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61457"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2847be84d243764bc2e6aab00b0cc1f5a4946d0", "fields": {"code_postal": "61600", "code_commune_insee": "61463", "libell_d_acheminement": "LES MONTS D ANDAINE", "ligne_5": "LA SAUVAGERE", "nom_de_la_commune": "LES MONTS D ANDAINE", "coordonnees_gps": [48.5956941307, -0.336692342986]}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72a1c4c1601d9e9c845e8497092300637577b29", "fields": {"nom_de_la_commune": "SEMALLE", "libell_d_acheminement": "SEMALLE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61467"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af159240f65ad1b635a751251d7469f59b6aee1e", "fields": {"nom_de_la_commune": "SILLY EN GOUFFERN", "libell_d_acheminement": "SILLY EN GOUFFERN", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61474"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a70dba97c2e13f2299e488e68cb3b1f42a2e996", "fields": {"nom_de_la_commune": "TANQUES", "libell_d_acheminement": "TANQUES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61479"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69c9de93a5d1d87f2aa67f68b448d0e0aa9ecc9", "fields": {"nom_de_la_commune": "TELLIERES LE PLESSIS", "libell_d_acheminement": "TELLIERES LE PLESSIS", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61481"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6eddb7b558bea37bd99dcf60d66c25f220e72d5", "fields": {"code_postal": "61600", "code_commune_insee": "61483", "libell_d_acheminement": "BAGNOLES DE L ORNE NORMANDIE", "ligne_5": "ST MICHEL DES ANDAINES", "nom_de_la_commune": "BAGNOLES DE L ORNE NORMANDIE", "coordonnees_gps": [48.5956941307, -0.336692342986]}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bebb51665857abd9db855d27cd5d38618e4c48a", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "L HERMITIERE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b61e109fbe1a2cd0692936cf14f3c35ebee5af2", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "ST JEAN DES BOIS", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70809667ade969617a30208d7dbd5987bdcebc29", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "LA POTERIE AU PERCHE", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6bd20fe7dfd12a90dfa1770f64791f45c99d391", "fields": {"nom_de_la_commune": "TREMONT", "libell_d_acheminement": "TREMONT", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61492"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3b42785e8380e51e1821646bdca538e81d51dc", "fields": {"nom_de_la_commune": "LES VENTES DE BOURSE", "libell_d_acheminement": "LES VENTES DE BOURSE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61499"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c523a603e551d0bda4aba42c30d6f668dda02919", "fields": {"nom_de_la_commune": "VILLEBADIN", "libell_d_acheminement": "VILLEBADIN", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61504"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4395e4ab442668778a6d5779573245335eca5f", "fields": {"nom_de_la_commune": "LES YVETEAUX", "libell_d_acheminement": "LES YVETEAUX", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61512"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9504ad0daca0bfb91e462c823d14ff77020a5e0", "fields": {"nom_de_la_commune": "ACHIET LE GRAND", "libell_d_acheminement": "ACHIET LE GRAND", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62005"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c635d932da84f5d88b13a9282dd7db635e613f0", "fields": {"nom_de_la_commune": "ACHIET LE PETIT", "libell_d_acheminement": "ACHIET LE PETIT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62006"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1804ee4de960e1f9cc26215b6b12c3e53af7e4", "fields": {"nom_de_la_commune": "AIRE SUR LA LYS", "libell_d_acheminement": "AIRE SUR LA LYS", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62014"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f5d6178b13141bf9ced47c29b8d257f8f01850", "fields": {"nom_de_la_commune": "ALEMBON", "libell_d_acheminement": "ALEMBON", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62020"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f2e37dd4fca5082b4a9045db07ad8d0037bbf2", "fields": {"nom_de_la_commune": "ALQUINES", "libell_d_acheminement": "ALQUINES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62024"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046c5e8a319e4f817970f3368fd0b754b44e2903", "fields": {"nom_de_la_commune": "AMBRINES", "libell_d_acheminement": "AMBRINES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62027"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15eb4b4eb1b6c210b071f9db6b9d3493e5810507", "fields": {"nom_de_la_commune": "ANVIN", "libell_d_acheminement": "ANVIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62036"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d5c7609ea18b92edcd28e6b1fa5ff9e4482b79", "fields": {"nom_de_la_commune": "AUBROMETZ", "libell_d_acheminement": "AUBROMETZ", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62047"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e5ee98c49e535f5c9d9d58a124287c6bc424c7", "fields": {"nom_de_la_commune": "AUCHY LES HESDIN", "libell_d_acheminement": "AUCHY LES HESDIN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62050"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1818085263a5e101b8bf5e16fd717d8bf0803527", "fields": {"nom_de_la_commune": "AUDREHEM", "libell_d_acheminement": "AUDREHEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62055"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26aea855b1bd69e431a4301a5e21d908421cb689", "fields": {"nom_de_la_commune": "AUDRUICQ", "libell_d_acheminement": "AUDRUICQ", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62057"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd518682448b7f8bdcc8422a5ac5d8d976159416", "fields": {"nom_de_la_commune": "AUTINGUES", "libell_d_acheminement": "AUTINGUES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62059"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b330973ac32871de983eec79741eb416350ab4a4", "fields": {"nom_de_la_commune": "AUXI LE CHATEAU", "libell_d_acheminement": "AUXI LE CHATEAU", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62060"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b01bf8b41a67914941a8a0906fe83db51a31058b", "fields": {"nom_de_la_commune": "AVESNES LES BAPAUME", "libell_d_acheminement": "AVESNES LES BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62064"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5763f4ade1f7a896f688b412f3a8a455737617", "fields": {"nom_de_la_commune": "BANCOURT", "libell_d_acheminement": "BANCOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62079"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec06bf08a288c280dabb98aa399af6b99aaae4f", "fields": {"nom_de_la_commune": "BARLY", "libell_d_acheminement": "BARLY", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62084"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bd8a8e60a07be6c87922618549db8eedeb606f", "fields": {"nom_de_la_commune": "BEAUFORT BLAVINCOURT", "libell_d_acheminement": "BEAUFORT BLAVINCOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62092"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fc9406887863c792206a67850581790945d626f", "fields": {"nom_de_la_commune": "BERCK", "libell_d_acheminement": "BERCK", "code_postal": "62600", "coordonnees_gps": [50.4040908663, 1.59052675041], "code_commune_insee": "62108"}, "geometry": {"type": "Point", "coordinates": [1.59052675041, 50.4040908663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510267c839295d5831ec856a7c189c66b9e0c5a6", "fields": {"nom_de_la_commune": "BEUGNATRE", "libell_d_acheminement": "BEUGNATRE", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62121"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a4d939c9138b2942067fcea8c4732e7f0e95d3", "fields": {"nom_de_la_commune": "BEUSSENT", "libell_d_acheminement": "BEUSSENT", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62123"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f49b8db5dcee7225df65e2b8af97070cebfe733", "fields": {"nom_de_la_commune": "BEUVRY", "libell_d_acheminement": "BEUVRY", "code_postal": "62660", "coordonnees_gps": [50.5326329449, 2.69116438955], "code_commune_insee": "62126"}, "geometry": {"type": "Point", "coordinates": [2.69116438955, 50.5326329449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7312726de1d586514f947a6ef8e3eec002a7fe", "fields": {"nom_de_la_commune": "BEZINGHEM", "libell_d_acheminement": "BEZINGHEM", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62127"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bed3b03187fa372ebfb3ccd3d26855ad5ff38a0", "fields": {"nom_de_la_commune": "BILLY MONTIGNY", "libell_d_acheminement": "BILLY MONTIGNY", "code_postal": "62420", "coordonnees_gps": [50.4155258883, 2.90728719443], "code_commune_insee": "62133"}, "geometry": {"type": "Point", "coordinates": [2.90728719443, 50.4155258883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6acfe36d6a3f763bca4b36942656b16ee7944733", "fields": {"nom_de_la_commune": "LA ROCHE DERRIEN", "libell_d_acheminement": "LA ROCHE DERRIEN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22264"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947dc87cba4785ac3bcb43ef65d6d38207935ec2", "fields": {"nom_de_la_commune": "ROSPEZ", "libell_d_acheminement": "ROSPEZ", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22265"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7445d402ecbafd5a42415afc1bfbcd04815139e5", "fields": {"nom_de_la_commune": "ST ADRIEN", "libell_d_acheminement": "ST ADRIEN", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22271"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69dda85a0bec6dc863ee040236f8c40a71db528", "fields": {"nom_de_la_commune": "ST CARADEC", "libell_d_acheminement": "ST CARADEC", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22279"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd8963610cb0e207ed34b7a021d745964273927", "fields": {"nom_de_la_commune": "ST CARNE", "libell_d_acheminement": "ST CARNE", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22280"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b121e50361aef36ecc6212856e94091d8d3296c5", "fields": {"nom_de_la_commune": "ST DONAN", "libell_d_acheminement": "ST DONAN", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22287"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebefc70b40e0088b486755cdc4d21156e2fccec", "fields": {"nom_de_la_commune": "ST LAUNEUC", "libell_d_acheminement": "ST LAUNEUC", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22309"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36616cbdd6eaff53ba2ba975060c70dd933b1e0c", "fields": {"nom_de_la_commune": "ST MADEN", "libell_d_acheminement": "ST MADEN", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22312"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba0eb2c1581f34e7493d5e3efbf622546362963", "fields": {"nom_de_la_commune": "ST MARTIN DES PRES", "libell_d_acheminement": "ST MARTIN DES PRES", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22313"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca14b8128feca94e565def22193d4db7514062c6", "fields": {"nom_de_la_commune": "ST MAUDEZ", "libell_d_acheminement": "ST MAUDEZ", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22315"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e12ff5e2479493a4712c27d22573f333914371d7", "fields": {"nom_de_la_commune": "ST NICOLAS DU PELEM", "libell_d_acheminement": "ST NICOLAS DU PELEM", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22321"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c39f59f81659abc33306420eb42fb31ee3425b", "fields": {"nom_de_la_commune": "ST POTAN", "libell_d_acheminement": "ST POTAN", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22323"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a71d34cc574c46995738c414543de47221da082", "fields": {"code_postal": "22410", "code_commune_insee": "22325", "libell_d_acheminement": "ST QUAY PORTRIEUX", "ligne_5": "KERTUGAL", "nom_de_la_commune": "ST QUAY PORTRIEUX", "coordonnees_gps": [48.627965542, -2.88359302537]}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259a07304d136e80c7d76cb52f470d042f68472a", "fields": {"nom_de_la_commune": "ST SAMSON SUR RANCE", "libell_d_acheminement": "ST SAMSON SUR RANCE", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22327"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f0536ab354f662acf934dabb7a986bfa719ef8", "fields": {"nom_de_la_commune": "STE TREPHINE", "libell_d_acheminement": "STE TREPHINE", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22331"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0ffa0c1ffd3211f9e44bf420bb4d81b198e3d8f", "fields": {"nom_de_la_commune": "ST TRIMOEL", "libell_d_acheminement": "ST TRIMOEL", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22332"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8f361697a9443ec16ca5b4c71c503db25795ba", "fields": {"nom_de_la_commune": "TREBEDAN", "libell_d_acheminement": "TREBEDAN", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22342"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da89966c0a28e65264da5f304dec8534f72194b", "fields": {"nom_de_la_commune": "TREDANIEL", "libell_d_acheminement": "TREDANIEL", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22346"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3014a0465c8cbb806580d17c43f74ab34bff40", "fields": {"nom_de_la_commune": "TREGOMEUR", "libell_d_acheminement": "TREGOMEUR", "code_postal": "22590", "coordonnees_gps": [48.5695461938, -2.84144566596], "code_commune_insee": "22356"}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1058357d233e5ee372f6976d54530c887c2c99ab", "fields": {"nom_de_la_commune": "TREGONNEAU", "libell_d_acheminement": "TREGONNEAU", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22358"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e2e5b0b6b38f11ddcbd3950194cc08716995d3", "fields": {"nom_de_la_commune": "TREOGAN", "libell_d_acheminement": "TREOGAN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22373"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cd37054526faa81730c337216f554d7ca6160b", "fields": {"nom_de_la_commune": "TREVENEUC", "libell_d_acheminement": "TREVENEUC", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22377"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7927da8f1a09bdd716fc546f06a0c81ed6f28b", "fields": {"nom_de_la_commune": "TREVOU TREGUIGNEC", "libell_d_acheminement": "TREVOU TREGUIGNEC", "code_postal": "22660", "coordonnees_gps": [48.8064531549, -3.35769639754], "code_commune_insee": "22379"}, "geometry": {"type": "Point", "coordinates": [-3.35769639754, 48.8064531549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c196b5982683f96a036e69ea3785219dd990e7f8", "fields": {"nom_de_la_commune": "UZEL", "libell_d_acheminement": "UZEL PRES L OUST", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22384"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70722a4b296ae0d56f5342471395f3d7739426aa", "fields": {"nom_de_la_commune": "LA VICOMTE SUR RANCE", "libell_d_acheminement": "LA VICOMTE SUR RANCE", "code_postal": "22690", "coordonnees_gps": [48.5060687899, -1.94808964301], "code_commune_insee": "22385"}, "geometry": {"type": "Point", "coordinates": [-1.94808964301, 48.5060687899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d36683a89f5697d988cd27e075d5b177f03d75d3", "fields": {"nom_de_la_commune": "LE VIEUX BOURG", "libell_d_acheminement": "LE VIEUX BOURG", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22386"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f5e611ff417927279a55343bf9984bad7ea81c", "fields": {"nom_de_la_commune": "LE VIEUX MARCHE", "libell_d_acheminement": "LE VIEUX MARCHE", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22387"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dcded8054ff1d117aaf71f833e3eda3c69bd73", "fields": {"nom_de_la_commune": "VILDE GUINGALAN", "libell_d_acheminement": "VILDE GUINGALAN", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22388"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e092e9e1417f4db0e2b14874de73ea020563d809", "fields": {"nom_de_la_commune": "YFFINIAC", "libell_d_acheminement": "YFFINIAC", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22389"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30646664ea037f624126e2c5f03e9eb8011223c7", "fields": {"nom_de_la_commune": "YVIAS", "libell_d_acheminement": "YVIAS", "code_postal": "22930", "coordonnees_gps": [48.71485028, -3.04670770942], "code_commune_insee": "22390"}, "geometry": {"type": "Point", "coordinates": [-3.04670770942, 48.71485028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559d75f173f971afa13f38f179c0fa57c6f77979", "fields": {"nom_de_la_commune": "ARFEUILLE CHATAIN", "libell_d_acheminement": "ARFEUILLE CHATAIN", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23005"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e3c2c3c2981eea4a6340e1d111049e24937423", "fields": {"nom_de_la_commune": "ARS", "libell_d_acheminement": "ARS", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23007"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a29ba7525904bcaaa328fd67529af2383af692", "fields": {"nom_de_la_commune": "AUGE", "libell_d_acheminement": "AUGE", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23009"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9d0c377fa29751195a40f8690878e2b2c9b975", "fields": {"nom_de_la_commune": "AUZANCES", "libell_d_acheminement": "AUZANCES", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23013"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271e8d249a716938e8ce6b3ecf7d57a108a78150", "fields": {"nom_de_la_commune": "BAZELAT", "libell_d_acheminement": "BAZELAT", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23018"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5403bbdd6669d3eb78cdf176f4e2d3f6f391ac6", "fields": {"nom_de_la_commune": "BENEVENT L ABBAYE", "libell_d_acheminement": "BENEVENT L ABBAYE", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23021"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ac5f8603a1f236814a789824ba102dd2a123a3", "fields": {"nom_de_la_commune": "BLESSAC", "libell_d_acheminement": "BLESSAC", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23024"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794136ecf9d386bb0308491daa04bd60d53bcd80", "fields": {"nom_de_la_commune": "BONNAT", "libell_d_acheminement": "BONNAT", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23025"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f288548adce002695add6a2ea25c31319e95f9", "fields": {"nom_de_la_commune": "LA BRIONNE", "libell_d_acheminement": "LA BRIONNE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23033"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3160a898233c0e175a5adaf82468c364bc0c1c38", "fields": {"nom_de_la_commune": "BUDELIERE", "libell_d_acheminement": "BUDELIERE", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23035"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bce0c0ac3784f4cae6d43d58cc9c30598af13f2", "fields": {"nom_de_la_commune": "BUSSIERE DUNOISE", "libell_d_acheminement": "BUSSIERE DUNOISE", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23036"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf2809b2c51ffadb2477932d729dbd4dc786cb5", "fields": {"nom_de_la_commune": "BUSSIERE NOUVELLE", "libell_d_acheminement": "BUSSIERE NOUVELLE", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23037"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2135211d59626a8344ac21f729def5b0253364e", "fields": {"nom_de_la_commune": "CEYROUX", "libell_d_acheminement": "CEYROUX", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23042"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b04c1f8ada400c1b7f3b32b0ee0e925ecfcd17d", "fields": {"nom_de_la_commune": "CHAMBERAUD", "libell_d_acheminement": "CHAMBERAUD", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23043"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b0c70221a16267eaf776d8c5db5cb1c78b63a4", "fields": {"nom_de_la_commune": "CHARRON", "libell_d_acheminement": "CHARRON", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23054"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641d67da7a44bd17f3c4075f7f5978e075b1d2e5", "fields": {"nom_de_la_commune": "LA CHAUSSADE", "libell_d_acheminement": "LA CHAUSSADE", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23059"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76aff0d34d6341d4c0098cdeee488e2d822e523", "fields": {"nom_de_la_commune": "CLUGNAT", "libell_d_acheminement": "CLUGNAT", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23064"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ce80372fd03328dd54177db95da72702513692", "fields": {"nom_de_la_commune": "CROZANT", "libell_d_acheminement": "CROZANT", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23070"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fb40ef676c9f8dc0564eec859648332677b578", "fields": {"nom_de_la_commune": "FRANSECHES", "libell_d_acheminement": "FRANSECHES", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23086"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46990564981d42e9ce1981e3dbbeb2408ba057b", "fields": {"nom_de_la_commune": "GIOUX", "libell_d_acheminement": "GIOUX", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23091"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc3225e5922c9826e6cb2818b9d7b7eebaf2f23", "fields": {"nom_de_la_commune": "MALVAL", "libell_d_acheminement": "MALVAL", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23121"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4400b1db63bddddc093012a33012eb6c529ce94d", "fields": {"nom_de_la_commune": "MANSAT LA COURRIERE", "libell_d_acheminement": "MANSAT LA COURRIERE", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23122"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbef79edc104d9376c5521754390d548d026926", "fields": {"nom_de_la_commune": "LES MARS", "libell_d_acheminement": "LES MARS", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23123"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d6f0b2be127ea3ed75bcb9750ea75911d8f36e", "fields": {"nom_de_la_commune": "LA MAZIERE AUX BONS HOMMES", "libell_d_acheminement": "MAZIERE AUX BONS HOMMES", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23129"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7794253fe90909acc090e01c3ea8e3b97fb59a29", "fields": {"nom_de_la_commune": "LE MONTEIL AU VICOMTE", "libell_d_acheminement": "LE MONTEIL AU VICOMTE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23134"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d42cc186f0ae98a2f3d347af0e52c5c979a2ff", "fields": {"nom_de_la_commune": "MORTROUX", "libell_d_acheminement": "MORTROUX", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23136"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa671916c2d94f9fbf2c08c1c95ff83e0a41297", "fields": {"nom_de_la_commune": "PARSAC RIMONDEIX", "libell_d_acheminement": "PARSAC RIMONDEIX", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23149"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf7fa1d4bfd7722a8f138512aafe679fdd37933", "fields": {"nom_de_la_commune": "PEYRAT LA NONIERE", "libell_d_acheminement": "PEYRAT LA NONIERE", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23151"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa67cf58927dbc3adc37d1e3caec383d34c0975f", "fields": {"nom_de_la_commune": "PIONNAT", "libell_d_acheminement": "PIONNAT", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23154"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4579b43bc98364c07b96d0e60b3a5c3bfb153b4", "fields": {"nom_de_la_commune": "ROCHES", "libell_d_acheminement": "ROCHES", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23162"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bee6231b2e3ba60b5e7f98869f5c19305a8bd3", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23209"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744b7fe58bfbc09e5d98d77e246c4c08d5d3a79b", "fields": {"nom_de_la_commune": "ST MARTIAL LE MONT", "libell_d_acheminement": "ST MARTIAL LE MONT", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23214"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac886d8496f187eba780ad9f3b5208c6c19ab234", "fields": {"nom_de_la_commune": "ST MARTIN CHATEAU", "libell_d_acheminement": "ST MARTIN CHATEAU", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23216"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "352848902a0b2516c5dbb94e2a422d87b9c0c2c3", "fields": {"code_postal": "23430", "code_commune_insee": "23217", "libell_d_acheminement": "ST MARTIN STE CATHERINE", "ligne_5": "LE THEIL", "nom_de_la_commune": "ST MARTIN STE CATHERINE", "coordonnees_gps": [45.9881301052, 1.59522254815]}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83348459c0e9e8452e6c8472e83e6477f4abdcf2", "fields": {"nom_de_la_commune": "ST MOREIL", "libell_d_acheminement": "ST MOREIL", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23223"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1dfd6f848ef742ba06f5ca5dd84bdeb9a2a4374", "fields": {"nom_de_la_commune": "ST PARDOUX MORTEROLLES", "libell_d_acheminement": "ST PARDOUX MORTEROLLES", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23227"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73fc7f5df684d55efa84abdcab439b184877f81f", "fields": {"nom_de_la_commune": "ST PARDOUX LE NEUF", "libell_d_acheminement": "ST PARDOUX LE NEUF", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23228"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46fe1da0eb12481f5bd5b87188ea298ce466a41", "fields": {"nom_de_la_commune": "ST PARDOUX LES CARDS", "libell_d_acheminement": "ST PARDOUX LES CARDS", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23229"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b51fb53c969cf6f7b042cf705908590a5f9839", "fields": {"nom_de_la_commune": "ST PIERRE DE FURSAC", "libell_d_acheminement": "ST PIERRE DE FURSAC", "code_postal": "23290", "coordonnees_gps": [46.1460504091, 1.51372481085], "code_commune_insee": "23231"}, "geometry": {"type": "Point", "coordinates": [1.51372481085, 46.1460504091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763adf14f74b8b8216db723ace9f693ee673acaf", "fields": {"nom_de_la_commune": "ST PRIEST PALUS", "libell_d_acheminement": "ST PRIEST PALUS", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23237"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1960dae17805dbf212fced1266ed57f30f71f81", "fields": {"nom_de_la_commune": "ST QUENTIN LA CHABANNE", "libell_d_acheminement": "ST QUENTIN LA CHABANNE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23238"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5176d1fd4d53747e70c7afc2514177c9dc82dced", "fields": {"nom_de_la_commune": "ST SILVAIN BAS LE ROC", "libell_d_acheminement": "ST SILVAIN BAS LE ROC", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23240"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7172e79c4174d2b6fe2860c5fec9299a24d5e7aa", "fields": {"nom_de_la_commune": "ST YRIEIX LA MONTAGNE", "libell_d_acheminement": "ST YRIEIX LA MONTAGNE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23249"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a47412fdc0ca98fcfe5e671214f107920d1725", "fields": {"nom_de_la_commune": "THAURON", "libell_d_acheminement": "THAURON", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23253"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f290406678f8320dac03cd5b2e6aee88c753f1", "fields": {"nom_de_la_commune": "TOULX STE CROIX", "libell_d_acheminement": "TOULX STE CROIX", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23254"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7ac02fe702f55e239f0420f909ad2fd30fad65", "fields": {"nom_de_la_commune": "VERNEIGES", "libell_d_acheminement": "VERNEIGES", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23259"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405bef280bc81016c54c85498eeeb70eb6ad5288", "fields": {"nom_de_la_commune": "VIERSAT", "libell_d_acheminement": "VIERSAT", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23261"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447daf92a4744c13606feb8a17d51c78885b4738", "fields": {"nom_de_la_commune": "VILLARD", "libell_d_acheminement": "VILLARD", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23263"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49064bf858e958837d4b0f8941e345d7c5b9815", "fields": {"nom_de_la_commune": "ABJAT SUR BANDIAT", "libell_d_acheminement": "ABJAT SUR BANDIAT", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24001"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a45650bb6992f87178d07d18904ebb6e7f80d38", "fields": {"nom_de_la_commune": "ANNESSE ET BEAULIEU", "libell_d_acheminement": "ANNESSE ET BEAULIEU", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24010"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43cef03558397cf2d55e6f9ded3f35bcdc7618c", "fields": {"nom_de_la_commune": "AUBAS", "libell_d_acheminement": "AUBAS", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24014"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc15e8f0a0be8533c3ffb77a8c553f6732b91542", "fields": {"nom_de_la_commune": "AUDRIX", "libell_d_acheminement": "AUDRIX", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24015"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff04d3a8fca8378784266f00e5e9342c336c4577", "fields": {"nom_de_la_commune": "BANEUIL", "libell_d_acheminement": "BANEUIL", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24023"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5f3d9cd60f29851f956e0b2f73b5f830a9af28", "fields": {"nom_de_la_commune": "BARDOU", "libell_d_acheminement": "BARDOU", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24024"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0892232e44c0fac7347d74fb8943fb3b3b5c2b7e", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "NOJALS ET CLOTTE", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e4affd25d52d148497c78ada3b26f7394fd3ad", "fields": {"code_postal": "24170", "code_commune_insee": "24035", "libell_d_acheminement": "PAYS DE BELVES", "ligne_5": "FONGALOP", "nom_de_la_commune": "PAYS DE BELVES", "coordonnees_gps": [44.7520136105, 1.04613211786]}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97051a09ea017e85fa53a8be03086d831648df91", "fields": {"nom_de_la_commune": "BERTRIC BUREE", "libell_d_acheminement": "BERTRIC BUREE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24038"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8aff1350b9b9c88c139d0e5966fd9ac942630c6", "fields": {"nom_de_la_commune": "LA BOISSIERE D ANS", "libell_d_acheminement": "LA BOISSIERE D ANS", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24047"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f179bd7f170774f3bc670b004da11dc46388ad34", "fields": {"nom_de_la_commune": "BOSSET", "libell_d_acheminement": "BOSSET", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24051"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c83041f302ca339e84f07948e64e9e34c4e8c948", "fields": {"nom_de_la_commune": "BOUILLAC", "libell_d_acheminement": "BOUILLAC", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24052"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01abb026469b2b9c56d2cd31a70444cb5b649ff2", "fields": {"nom_de_la_commune": "BRANTOME EN PERIGORD", "libell_d_acheminement": "BRANTOME EN PERIGORD", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24064"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f461b773ae345778f7dc67b33d8b3c2ae28c2de9", "fields": {"code_postal": "24310", "code_commune_insee": "24064", "libell_d_acheminement": "BRANTOME EN PERIGORD", "ligne_5": "ST JULIEN DE BOURDEILLES", "nom_de_la_commune": "BRANTOME EN PERIGORD", "coordonnees_gps": [45.3490445975, 0.614627469237]}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236cebc76befb3d0abd94e12f14a4d9dc6837e2f", "fields": {"nom_de_la_commune": "LE BUGUE", "libell_d_acheminement": "LE BUGUE", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24067"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef264f43a1c775e07ca26237d55cee37a06b77a", "fields": {"nom_de_la_commune": "BUSSIERE BADIL", "libell_d_acheminement": "BUSSIERE BADIL", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24071"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2422066146966a9ae6ea6e821023106e49f770", "fields": {"nom_de_la_commune": "CAPDROT", "libell_d_acheminement": "CAPDROT", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24080"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a8495f10c72ca9af6be1f6dc67a61faac1fe326", "fields": {"nom_de_la_commune": "CARSAC DE GURSON", "libell_d_acheminement": "CARSAC DE GURSON", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24083"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91459984621a9c8ebb2fd369950c3b91fc5bca0", "fields": {"nom_de_la_commune": "CHALAGNAC", "libell_d_acheminement": "CHALAGNAC", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24094"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4b1d7056ebe4e601d0958d3ea7c01374776565", "fields": {"nom_de_la_commune": "CHAMPCEVINEL", "libell_d_acheminement": "CHAMPCEVINEL", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24098"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6452cc74208069c8837484105e4d271607a65af", "fields": {"nom_de_la_commune": "CHAMPNIERS ET REILHAC", "libell_d_acheminement": "CHAMPNIERS ET REILHAC", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24100"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31cc04bfeab883d9796cc02a3f202f44b36216ab", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTMOREAU", "libell_d_acheminement": "LA CHAPELLE MONTMOREAU", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24111"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888829819e76ad6ff11a5f00ca2ea292899f1aa2", "fields": {"nom_de_la_commune": "MAINNEVILLE", "libell_d_acheminement": "MAINNEVILLE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27379"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf11d473c1bca26bd95b08e9ad9d50cb5be75fb5", "fields": {"nom_de_la_commune": "MANNEVILLE LA RAOULT", "libell_d_acheminement": "MANNEVILLE LA RAOULT", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27384"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa28f727d3b7059a48f2927f07921ed80376a9a4", "fields": {"nom_de_la_commune": "MARCILLY SUR EURE", "libell_d_acheminement": "MARCILLY SUR EURE", "code_postal": "27810", "coordonnees_gps": [48.821209934, 1.33322644002], "code_commune_insee": "27391"}, "geometry": {"type": "Point", "coordinates": [1.33322644002, 48.821209934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff4171a458b36c29397e9e2409f559d12abc5a5", "fields": {"nom_de_la_commune": "MARTAINVILLE", "libell_d_acheminement": "MARTAINVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27393"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4c3ad36800e5c29f9c73741f7f59b9c1bd5d08e", "fields": {"nom_de_la_commune": "MELICOURT", "libell_d_acheminement": "MELICOURT", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27395"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc999abca86ade58a14b70e728737b9298ff700", "fields": {"nom_de_la_commune": "MENILLES", "libell_d_acheminement": "MENILLES", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27397"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832287bbb79ea6f1d8d372fb7cd47ce025c0fbc8", "fields": {"nom_de_la_commune": "LE MESNIL JOURDAIN", "libell_d_acheminement": "LE MESNIL JOURDAIN", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27403"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fc0d15e7ec5b89f41a52d3c5da2fabca2354eb", "fields": {"nom_de_la_commune": "MESNIL SOUS VIENNE", "libell_d_acheminement": "MESNIL SOUS VIENNE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27405"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9d6a949248de92bed1933e4e27be73b0d19790", "fields": {"nom_de_la_commune": "MOISVILLE", "libell_d_acheminement": "MOISVILLE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27411"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd1451d813d0c179ea69832ab7bacc805141fcb", "fields": {"nom_de_la_commune": "BUIS SUR DAMVILLE", "libell_d_acheminement": "BUIS SUR DAMVILLE", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27416"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5986da3c022832f9349aa73e56622b4263313381", "fields": {"nom_de_la_commune": "MOUFLAINES", "libell_d_acheminement": "MOUFLAINES", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27420"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7501091835c3683fab0a50472c8d0aaa11787e3f", "fields": {"nom_de_la_commune": "NEAUFLES AUVERGNY", "libell_d_acheminement": "NEAUFLES AUVERGNY", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27427"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df4619b5a2070595b6482631e7c407795b8f0d5", "fields": {"nom_de_la_commune": "NOARDS", "libell_d_acheminement": "NOARDS", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27434"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57128f5a77bbdcc735c827b0786f1a8133cfb80", "fields": {"nom_de_la_commune": "NONANCOURT", "libell_d_acheminement": "NONANCOURT", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27438"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699bc4e2a8a2ee859eea36adab8ca2c9d03e9c9e", "fields": {"nom_de_la_commune": "LE NOYER EN OUCHE", "libell_d_acheminement": "LE NOYER EN OUCHE", "code_postal": "27410", "coordonnees_gps": [49.0064963225, 0.739265680908], "code_commune_insee": "27444"}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0edb0210e18fd7abb3ca52277ffbf52b7d81917f", "fields": {"nom_de_la_commune": "PIENCOURT", "libell_d_acheminement": "PIENCOURT", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27455"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36651713586610a23bbf6c12ece9489705fe2b87", "fields": {"nom_de_la_commune": "PORTE JOIE", "libell_d_acheminement": "PORTE JOIE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27471"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87958cda177eb005b5bcb6d31810ea587e75a1d", "fields": {"nom_de_la_commune": "PORT MORT", "libell_d_acheminement": "PORT MORT", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27473"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96550d8dc36af36e5eed0c79283d136ea1f01f65", "fields": {"nom_de_la_commune": "LA POTERIE MATHIEU", "libell_d_acheminement": "LA POTERIE MATHIEU", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27475"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b06de859cc3c4d7191c84c8e35c29e652d4044", "fields": {"nom_de_la_commune": "PULLAY", "libell_d_acheminement": "PULLAY", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27481"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c19fdafa9ea26f61cdbc7d83d10a0021b77bce", "fields": {"nom_de_la_commune": "ROUTOT", "libell_d_acheminement": "ROUTOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27500"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e3583079d50a6de01691843a69eeb9de30955f", "fields": {"nom_de_la_commune": "RUGLES", "libell_d_acheminement": "RUGLES", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27502"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07055899d2e2be42610674759de643d64d2dfddb", "fields": {"nom_de_la_commune": "ST AUBIN SUR GAILLON", "libell_d_acheminement": "ST AUBIN SUR GAILLON", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27517"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beddcb21df7f03cdaebde64aa17c393798b5493a", "fields": {"nom_de_la_commune": "ST AUBIN SUR QUILLEBEUF", "libell_d_acheminement": "ST AUBIN SUR QUILLEBEUF", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27518"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d559a85a87002d759d29904d1ac0d8e0cbd92a", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR AVRE", "libell_d_acheminement": "ST CHRISTOPHE SUR AVRE", "code_postal": "27820", "coordonnees_gps": [48.6910585643, 0.801324463794], "code_commune_insee": "27521"}, "geometry": {"type": "Point", "coordinates": [0.801324463794, 48.6910585643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec9f3ace97069dc046f363c059293c1372b40608", "fields": {"nom_de_la_commune": "ST CLAIR D ARCEY", "libell_d_acheminement": "ST CLAIR D ARCEY", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27523"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c18e4683794fcbc207be54ffdbb1a58f78fe88", "fields": {"nom_de_la_commune": "STE COLOMBE PRES VERNON", "libell_d_acheminement": "STE COLOMBE PRES VERNON", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27525"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e742b5c7c05cf4bcf2bfa9f3337cb21b78494752", "fields": {"code_postal": "27140", "code_commune_insee": "27533", "libell_d_acheminement": "ST DENIS LE FERMENT", "ligne_5": "ST PAER", "nom_de_la_commune": "ST DENIS LE FERMENT", "coordonnees_gps": [49.3150271215, 1.74471668878]}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60babe5aade7d45a9eebcb9b554111d02c8799b6", "fields": {"nom_de_la_commune": "ST GEORGES DU MESNIL", "libell_d_acheminement": "ST GEORGES DU MESNIL", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27541"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd306b2eadd39eafcf7b8ddd5d1e70bc8008ff8", "fields": {"nom_de_la_commune": "ST GEORGES DU VIEVRE", "libell_d_acheminement": "ST GEORGES DU VIEVRE", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27542"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59b13fd8dcc0adf3637a4fbb60730256b376b176", "fields": {"nom_de_la_commune": "ST GEORGES MOTEL", "libell_d_acheminement": "ST GEORGES MOTEL", "code_postal": "27710", "coordonnees_gps": [48.7915664803, 1.35974945164], "code_commune_insee": "27543"}, "geometry": {"type": "Point", "coordinates": [1.35974945164, 48.7915664803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ca25c75423e659f866c56bca2174a2d2101813", "fields": {"nom_de_la_commune": "ST GERMAIN DE PASQUIER", "libell_d_acheminement": "ST GERMAIN DE PASQUIER", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27545"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955796dcd3f93cc93312941f9dc066d6152fce7f", "fields": {"nom_de_la_commune": "ST GERMAIN DES ANGLES", "libell_d_acheminement": "ST GERMAIN DES ANGLES", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27546"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c51da24fe342e74ed0fc4692640dada4e2834f", "fields": {"code_postal": "10410", "code_commune_insee": "10412", "libell_d_acheminement": "VILLECHETIF", "ligne_5": "BELLEY", "nom_de_la_commune": "VILLECHETIF", "coordonnees_gps": [48.2983334554, 4.15487406021]}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77b792b436764c43bcbbab59274451d26e1d071", "fields": {"nom_de_la_commune": "LA VILLENEUVE AU CHATELOT", "libell_d_acheminement": "LA VILLENEUVE AU CHATELOT", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10421"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1a5afa93192fd1b566c2a078a510c8a84f104d", "fields": {"nom_de_la_commune": "VENDEUVRE SUR BARSE", "libell_d_acheminement": "VENDEUVRE SUR BARSE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10401"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a093d6d4c548a7834e937810ab52eb5130f913cd", "fields": {"nom_de_la_commune": "VILLIERS HERBISSE", "libell_d_acheminement": "VILLIERS HERBISSE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10430"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45120226741ff109dd555f4397b9bff209af4798", "fields": {"nom_de_la_commune": "LA VENDUE MIGNOT", "libell_d_acheminement": "LA VENDUE MIGNOT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10402"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334f7ec90cf115ce5ec857212d461db8dd7ff533", "fields": {"nom_de_la_commune": "VAUCHONVILLIERS", "libell_d_acheminement": "VAUCHONVILLIERS", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10397"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867c6f07bde778995480bc82b983cc5696aaaf62", "fields": {"nom_de_la_commune": "VILLE SUR ARCE", "libell_d_acheminement": "VILLE SUR ARCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10427"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d41ff03caf51fddb9df57782432f0f3ec76891d", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "10390", "coordonnees_gps": [48.2168971056, 4.18018933938], "code_commune_insee": "10406"}, "geometry": {"type": "Point", "coordinates": [4.18018933938, 48.2168971056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d02887c276ea3a00fb23a400082d7cba342c55", "fields": {"nom_de_la_commune": "VILLELOUP", "libell_d_acheminement": "VILLELOUP", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10414"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3d55a39f289005d2be2f67394d1df2019c676", "fields": {"nom_de_la_commune": "VILLACERF", "libell_d_acheminement": "VILLACERF", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10409"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77d32e8a65ece43f6d8936c2106b219b72bf0796", "fields": {"nom_de_la_commune": "CAMPAGNE SUR AUDE", "libell_d_acheminement": "CAMPAGNE SUR AUDE", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11063"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb9866bf8c2d68d293ba103c12debdec2d7ebe16", "fields": {"nom_de_la_commune": "BELVEZE DU RAZES", "libell_d_acheminement": "BELVEZE DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11034"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a773d3cb5be6d701f73eaf737eb0a471c8ecb4ea", "fields": {"nom_de_la_commune": "BELCASTEL ET BUC", "libell_d_acheminement": "BELCASTEL ET BUC", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11029"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa89e65f56d09d03fc53571a707b2713cbcd29e", "fields": {"nom_de_la_commune": "BIZE MINERVOIS", "libell_d_acheminement": "BIZE MINERVOIS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11041"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633eaa5134c081d49e4f1429710a212384a80ce9", "fields": {"nom_de_la_commune": "BOUILHONNAC", "libell_d_acheminement": "BOUILHONNAC", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11043"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc310d88b468aec20149809de26a626c86f7b32", "fields": {"nom_de_la_commune": "LES CASSES", "libell_d_acheminement": "LES CASSES", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11074"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b220230b5d3db3df08048ea87c18c8b5091e57", "fields": {"nom_de_la_commune": "LA BEZOLE", "libell_d_acheminement": "LA BEZOLE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11039"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfab08ce77c20b6559af8182a5b85d3e4585f0af", "fields": {"nom_de_la_commune": "BOURIEGE", "libell_d_acheminement": "BOURIEGE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11045"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d05d52c2bca49bef6ada1c164ed3070035b9d9", "fields": {"nom_de_la_commune": "CAILHAU", "libell_d_acheminement": "CAILHAU", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11058"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2302ba104671119c1bfa9f2bf1ad4190b2a96430", "fields": {"nom_de_la_commune": "BLOMAC", "libell_d_acheminement": "BLOMAC", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11042"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de61e9ab7d781d0f2d986fbd8c0581d9b7b6c01", "fields": {"nom_de_la_commune": "VILLIERS LE BOIS", "libell_d_acheminement": "VILLIERS LE BOIS", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10431"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5427e78c37253559e6f5755adba7a780607d0ffa", "fields": {"nom_de_la_commune": "ALBIERES", "libell_d_acheminement": "ALBIERES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11007"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadcdd0a4711332f74d3c28454657f9bed41da4c", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11017"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cbc1d678251633b1ceb53282cd270e25aea760d", "fields": {"nom_de_la_commune": "BELCAIRE", "libell_d_acheminement": "BELCAIRE", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11028"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b44a742f0acf48ef5fa79b5c322fdd20e8c722", "fields": {"nom_de_la_commune": "VULAINES", "libell_d_acheminement": "VULAINES", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10444"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c41b4de1925f644ca6f86592536d9c54c8f02cc", "fields": {"nom_de_la_commune": "BARBAIRA", "libell_d_acheminement": "BARBAIRA", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11027"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9333ceb898eb1c02fb602cb40871c98781fdfe62", "fields": {"nom_de_la_commune": "ARMISSAN", "libell_d_acheminement": "ARMISSAN", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11014"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10884ba653c11e92731c7ce8e3a989b416f4c668", "fields": {"nom_de_la_commune": "ALAIRAC", "libell_d_acheminement": "ALAIRAC", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11005"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bdf1cc0eccadf4f41e6a2401865a26fb1b5878", "fields": {"nom_de_la_commune": "BADENS", "libell_d_acheminement": "BADENS", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11023"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389ad829b86a336bac427e1a2f7cb70d852122cd", "fields": {"nom_de_la_commune": "ALBAS", "libell_d_acheminement": "ALBAS", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11006"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78237362dc120fd089587837fdf8b7888b887765", "fields": {"code_postal": "11230", "code_commune_insee": "11080", "libell_d_acheminement": "VAL DE LAMBRONNE", "ligne_5": "CAUDEVAL", "nom_de_la_commune": "VAL DE LAMBRONNE", "coordonnees_gps": [42.9737220665, 2.02689573941]}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3268d8adde87e38108becc6e121aa184cac9ae4f", "fields": {"nom_de_la_commune": "CAUNETTES EN VAL", "libell_d_acheminement": "CAUNETTES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11083"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80cbe98e31a9257d9dd38649c076b4587ba26ac", "fields": {"nom_de_la_commune": "CAUNES MINERVOIS", "libell_d_acheminement": "CAUNES MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11081"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68cdcadcdcc788a831be81b0a91570bcd8f2e91", "fields": {"nom_de_la_commune": "CAZALRENOUX", "libell_d_acheminement": "CAZALRENOUX", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11087"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2d0c570f7e9a416bfde9e5c8bc5371fa519cf8", "fields": {"nom_de_la_commune": "COUNOZOULS", "libell_d_acheminement": "COUNOZOULS", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11104"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc4d499ddb8b63ebfc489e3218eecbc874a5ea9", "fields": {"nom_de_la_commune": "CASTELRENG", "libell_d_acheminement": "CASTELRENG", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11078"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "929ec11ea91ede6d37aad5612bb2ef544dcf6e48", "fields": {"nom_de_la_commune": "COUIZA", "libell_d_acheminement": "COUIZA", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11103"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828a26d1fb81daa6e6c9dc1a64d63710fc9a1dbf", "fields": {"nom_de_la_commune": "ST NICOLAS LA CHAPELLE", "libell_d_acheminement": "ST NICOLAS LA CHAPELLE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10355"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3233748cf325670a820598a73aef50fca07bf346", "fields": {"nom_de_la_commune": "VALLANT ST GEORGES", "libell_d_acheminement": "VALLANT ST GEORGES", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10392"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029d7876cf9d1e129dc77735d0a9d2e3c81367c9", "fields": {"nom_de_la_commune": "TORCY LE GRAND", "libell_d_acheminement": "TORCY LE GRAND", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10379"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ae3fbc0d49c66292e1220339a70c4e2591a2b7", "fields": {"nom_de_la_commune": "TORCY LE PETIT", "libell_d_acheminement": "TORCY LE PETIT", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10380"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0da99db7197473af02735031972ec0aadfcfa18", "fields": {"nom_de_la_commune": "THENNELIERES", "libell_d_acheminement": "THENNELIERES", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10375"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d398f440da58ebe020e3b0057e91383aeb71eee", "fields": {"nom_de_la_commune": "LA SAULSOTTE", "libell_d_acheminement": "LA SAULSOTTE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10367"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe2d6a21d9254fc198269c64395841a5cdcf9f3", "fields": {"nom_de_la_commune": "UNIENVILLE", "libell_d_acheminement": "UNIENVILLE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10389"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e47d876fb2edf008fdea0ee4af0ade799981454", "fields": {"nom_de_la_commune": "TRANCAULT", "libell_d_acheminement": "TRANCAULT", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10383"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f8a3b81d5d5b66cd3a3dfb4bb803db6e29dc5d9", "fields": {"nom_de_la_commune": "SOMMEVAL", "libell_d_acheminement": "SOMMEVAL", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10371"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fb92f26624d657c1dc5f4ef39279e5700193d7", "fields": {"nom_de_la_commune": "TROYES", "libell_d_acheminement": "TROYES", "code_postal": "10000", "coordonnees_gps": [48.2968524808, 4.07809709011], "code_commune_insee": "10387"}, "geometry": {"type": "Point", "coordinates": [4.07809709011, 48.2968524808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3999a2252601887619c3ef0294e281a0d7679e6", "fields": {"nom_de_la_commune": "MORTAGNE SUR SEVRE", "libell_d_acheminement": "MORTAGNE SUR SEVRE", "code_postal": "85290", "coordonnees_gps": [46.9743066713, -0.927121761367], "code_commune_insee": "85151"}, "geometry": {"type": "Point", "coordinates": [-0.927121761367, 46.9743066713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d0132da5537249abc1ca844619c932133a5212", "fields": {"code_postal": "85390", "code_commune_insee": "85154", "libell_d_acheminement": "MOUILLERON ST GERMAIN", "ligne_5": "ST GERMAIN L AIGUILLER", "nom_de_la_commune": "MOUILLERON ST GERMAIN", "coordonnees_gps": [46.6728627352, -0.866891813869]}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1919638d76425770d3b626cda5a728a8c7abf3f7", "fields": {"nom_de_la_commune": "MOUZEUIL ST MARTIN", "libell_d_acheminement": "MOUZEUIL ST MARTIN", "code_postal": "85370", "coordonnees_gps": [46.4559323698, -0.995832045807], "code_commune_insee": "85158"}, "geometry": {"type": "Point", "coordinates": [-0.995832045807, 46.4559323698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c719b3f49e4ce6da81747bc72f6469e63c1370", "fields": {"nom_de_la_commune": "NIEUL LE DOLENT", "libell_d_acheminement": "NIEUL LE DOLENT", "code_postal": "85430", "coordonnees_gps": [46.5767007042, -1.4774062897], "code_commune_insee": "85161"}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf814ca1dc7cb8ee5c4d4d31da750f60a5289e0", "fields": {"nom_de_la_commune": "NIEUL SUR L AUTISE", "libell_d_acheminement": "NIEUL SUR L AUTISE", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85162"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "436db47a535c043a732b2479f744a803896ad620", "fields": {"nom_de_la_commune": "NOIRMOUTIER EN L ILE", "libell_d_acheminement": "NOIRMOUTIER EN L ILE", "code_postal": "85330", "coordonnees_gps": [47.0086741668, -2.26232713424], "code_commune_insee": "85163"}, "geometry": {"type": "Point", "coordinates": [-2.26232713424, 47.0086741668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f72b19432149ce80e02504043b8595d92407c2c", "fields": {"nom_de_la_commune": "NOTRE DAME DE MONTS", "libell_d_acheminement": "NOTRE DAME DE MONTS", "code_postal": "85690", "coordonnees_gps": [46.8421036933, -2.10953351067], "code_commune_insee": "85164"}, "geometry": {"type": "Point", "coordinates": [-2.10953351067, 46.8421036933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77bfd88225789de9ca719ad3f622b4ed03664776", "fields": {"nom_de_la_commune": "PISSOTTE", "libell_d_acheminement": "PISSOTTE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85176"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3013cbcfde188127108a8b6d27395a1826a1c1", "fields": {"nom_de_la_commune": "REAUMUR", "libell_d_acheminement": "REAUMUR", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85187"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbb64792fa0c5926f9e79e01f8db1628f334dc4", "fields": {"nom_de_la_commune": "NOTRE DAME DE RIEZ", "libell_d_acheminement": "NOTRE DAME DE RIEZ", "code_postal": "85270", "coordonnees_gps": [46.7457643278, -1.94773887876], "code_commune_insee": "85189"}, "geometry": {"type": "Point", "coordinates": [-1.94773887876, 46.7457643278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e537d77836d4ecc40d98acbd308a890ed181d22", "fields": {"nom_de_la_commune": "LA ROCHE SUR YON", "libell_d_acheminement": "LA ROCHE SUR YON", "code_postal": "85000", "coordonnees_gps": [46.6755378751, -1.41824284991], "code_commune_insee": "85191"}, "geometry": {"type": "Point", "coordinates": [-1.41824284991, 46.6755378751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6b231e759aecd994e9830a643c4072d1d5b546", "fields": {"nom_de_la_commune": "ROCHETREJOUX", "libell_d_acheminement": "ROCHETREJOUX", "code_postal": "85510", "coordonnees_gps": [46.7872179072, -0.944338069578], "code_commune_insee": "85192"}, "geometry": {"type": "Point", "coordinates": [-0.944338069578, 46.7872179072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20389d8e997880d3ddc2791111fb975fe864937d", "fields": {"nom_de_la_commune": "ROSNAY", "libell_d_acheminement": "ROSNAY", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85193"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266e9e00cede1c279cfc8e7d6148003cec2c6b68", "fields": {"nom_de_la_commune": "ST AUBIN LA PLAINE", "libell_d_acheminement": "ST AUBIN LA PLAINE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85199"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca64faf6f72e2171ee7e283ec97e36de27616572", "fields": {"nom_de_la_commune": "ST DENIS LA CHEVASSE", "libell_d_acheminement": "ST DENIS LA CHEVASSE", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85208"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bee1765509896671a6580aa203c5708ef6550a", "fields": {"nom_de_la_commune": "ST ETIENNE DE BRILLOUET", "libell_d_acheminement": "ST ETIENNE DE BRILLOUET", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85209"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25f2bfe19f0888b9706e3b9845e25eae92959a7", "fields": {"code_postal": "85310", "code_commune_insee": "85213", "libell_d_acheminement": "RIVES DE L YON", "ligne_5": "ST FLORENT DES BOIS", "nom_de_la_commune": "RIVES DE L YON", "coordonnees_gps": [46.6268805827, -1.33228683205]}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d90f7503117921856b4e6cad91d802af8fca3a9", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85214"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19b77eb9028af25faddb0c25c7b5ac55a341fd6", "fields": {"nom_de_la_commune": "ST HILAIRE DE RIEZ", "libell_d_acheminement": "ST HILAIRE DE RIEZ", "code_postal": "85270", "coordonnees_gps": [46.7457643278, -1.94773887876], "code_commune_insee": "85226"}, "geometry": {"type": "Point", "coordinates": [-1.94773887876, 46.7457643278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd1c7baedce989f9f967e5e8107dadd70648b50", "fields": {"nom_de_la_commune": "ST HILAIRE LE VOUHIS", "libell_d_acheminement": "ST HILAIRE LE VOUHIS", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85232"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bdea24fd2a438e36ebad1d2f5509f813f017d2", "fields": {"nom_de_la_commune": "NOYERS ST MARTIN", "libell_d_acheminement": "NOYERS ST MARTIN", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60470"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a286011b5ea295b66e0025f52e14d6ffad6ff17", "fields": {"nom_de_la_commune": "NOYON", "libell_d_acheminement": "NOYON", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60471"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58b127ea55b50aa9b497230d939a3422dc1d2a3", "fields": {"nom_de_la_commune": "ORROUY", "libell_d_acheminement": "ORROUY", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60481"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ebaa128162632af0a77f31941f7836696d71489", "fields": {"nom_de_la_commune": "PAILLART", "libell_d_acheminement": "PAILLART", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60486"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83436c76aab089af4a8c2581fc6b9bd392572906", "fields": {"nom_de_la_commune": "PEROY LES GOMBRIES", "libell_d_acheminement": "PEROY LES GOMBRIES", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60489"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5822ae6f75f28440702a4fe36f09e72f50f035", "fields": {"nom_de_la_commune": "PLAINVAL", "libell_d_acheminement": "PLAINVAL", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60495"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a125f9f41fa173e3e3025774a2e7d150413c0c", "fields": {"nom_de_la_commune": "PONTARME", "libell_d_acheminement": "PONTARME", "code_postal": "60520", "coordonnees_gps": [49.1470921709, 2.55054405119], "code_commune_insee": "60505"}, "geometry": {"type": "Point", "coordinates": [2.55054405119, 49.1470921709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a997a573c9c716774addb57717de99f95d6f9f7", "fields": {"nom_de_la_commune": "PONTOISE LES NOYON", "libell_d_acheminement": "PONTOISE LES NOYON", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60507"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c931ffb942024954c52492eb9b6194c34764f5", "fields": {"nom_de_la_commune": "PORCHEUX", "libell_d_acheminement": "PORCHEUX", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60510"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b26b587aa12cc726c2e5d7e16b23715720f404", "fields": {"nom_de_la_commune": "PUISEUX LE HAUBERGER", "libell_d_acheminement": "PUISEUX LE HAUBERGER", "code_postal": "60540", "coordonnees_gps": [49.1970454016, 2.20454103263], "code_commune_insee": "60517"}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2598e9138cd5539a2332e44ceaadeaab9e84300", "fields": {"nom_de_la_commune": "QUESMY", "libell_d_acheminement": "QUESMY", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60519"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fd05f8194c41eec77c3f933e39299899da1528", "fields": {"nom_de_la_commune": "REEZ FOSSE MARTIN", "libell_d_acheminement": "REEZ FOSSE MARTIN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60527"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f09c12d5bf855499a58a67e2c18ea47b17022539", "fields": {"nom_de_la_commune": "REMECOURT", "libell_d_acheminement": "REMECOURT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60529"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0e5ad6a2957bc5216ef904a0ae372933cb2552", "fields": {"nom_de_la_commune": "RIBECOURT DRESLINCOURT", "libell_d_acheminement": "RIBECOURT DRESLINCOURT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60537"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ffca424758db5538e74aae663791fc69660765b", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "60870", "coordonnees_gps": [49.2979695646, 2.51851013647], "code_commune_insee": "60539"}, "geometry": {"type": "Point", "coordinates": [2.51851013647, 49.2979695646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb7283f7925a90a39b1c8faf1da788795c5babd", "fields": {"nom_de_la_commune": "ROBERVAL", "libell_d_acheminement": "ROBERVAL", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60541"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900d7c010d0da19a4fe69d089ccd1b8a5a74861e", "fields": {"nom_de_la_commune": "ROMESCAMPS", "libell_d_acheminement": "ROMESCAMPS", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60545"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3ed199ee513bfd4cd7572967ecd34628d26beb", "fields": {"nom_de_la_commune": "ROSOY", "libell_d_acheminement": "ROSOY", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60547"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be3431ad56261108a25cc16c892284133449ee3", "fields": {"nom_de_la_commune": "ROUVILLE", "libell_d_acheminement": "ROUVILLE", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60552"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e3ecf445d2fc580e4163753757af6349b1f7ee", "fields": {"nom_de_la_commune": "ROUVROY LES MERLES", "libell_d_acheminement": "ROUVROY LES MERLES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60555"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7074dc44516163c2b6450e5c02727b18bb7501c", "fields": {"nom_de_la_commune": "LA RUE ST PIERRE", "libell_d_acheminement": "LA RUE ST PIERRE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60559"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4720adc3e91804d54a8d5b2d9e6a3675523592", "fields": {"nom_de_la_commune": "SAINS MORAINVILLERS", "libell_d_acheminement": "SAINS MORAINVILLERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60564"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22a86002d2ad50750a87369653e5c7fb1139874", "fields": {"code_postal": "60650", "code_commune_insee": "60567", "libell_d_acheminement": "ST AUBIN EN BRAY", "ligne_5": "LES FONTAINETTES", "nom_de_la_commune": "ST AUBIN EN BRAY", "coordonnees_gps": [49.4573599665, 1.89834324471]}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4574f0e9ce7a22cd0c956471839a1ee6f4930d59", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60575"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c451f8cae41bf69aae91fc99de90755fd6a3fb8", "fields": {"nom_de_la_commune": "ST JUST EN CHAUSSEE", "libell_d_acheminement": "ST JUST EN CHAUSSEE", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60581"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f73bce4f0277e23651bd3dd1e5cca8969e56c6", "fields": {"nom_de_la_commune": "SENANTES", "libell_d_acheminement": "SENANTES", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60611"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c8ff110618d582431b81c7672c449506a64e1e", "fields": {"nom_de_la_commune": "SERIFONTAINE", "libell_d_acheminement": "SERIFONTAINE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60616"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac64b5944569ff77991b2d18d1271ef18edc08f7", "fields": {"nom_de_la_commune": "SERMAIZE", "libell_d_acheminement": "SERMAIZE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60617"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993bea592b60493c4c895d358ba7c03e8e61c68a", "fields": {"nom_de_la_commune": "SUZOY", "libell_d_acheminement": "SUZOY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60625"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f68055bfa3080689a51f2d9ca715cf93ba6cd91", "fields": {"nom_de_la_commune": "THIVERNY", "libell_d_acheminement": "THIVERNY", "code_postal": "60160", "coordonnees_gps": [49.2602503231, 2.43049140584], "code_commune_insee": "60635"}, "geometry": {"type": "Point", "coordinates": [2.43049140584, 49.2602503231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec337319b16fbce206d30126ca4d81bf26530a71", "fields": {"nom_de_la_commune": "TRACY LE VAL", "libell_d_acheminement": "TRACY LE VAL", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60642"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b93dfc1b476e7d0ab2354cf14a607fceb200b777", "fields": {"nom_de_la_commune": "TROUSSURES", "libell_d_acheminement": "TROUSSURES", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60649"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8203a5d730cdc9a6f7829e64be4869bf468af49e", "fields": {"nom_de_la_commune": "VAUCIENNES", "libell_d_acheminement": "VAUCIENNES", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60658"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e73e714e47aa74a8630473a82e1b0cca31bcd80", "fields": {"nom_de_la_commune": "VERDERONNE", "libell_d_acheminement": "VERDERONNE", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60669"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc51863e95e76d5cfee9ff42e94dd392659ec0f", "fields": {"nom_de_la_commune": "VILLERS ST BARTHELEMY", "libell_d_acheminement": "VILLERS ST BARTHELEMY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60681"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bab8044d5a59cb5f0cff05930c4f07269f173d", "fields": {"nom_de_la_commune": "VILLERS ST GENEST", "libell_d_acheminement": "VILLERS ST GENEST", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60683"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d64ae61dd311e90c720389c0bb63cc1cf9a787", "fields": {"nom_de_la_commune": "VILLERS SUR TRIE", "libell_d_acheminement": "VILLERS SUR TRIE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60690"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49231d978be7584d9552eb0f920f4f78b0a9037c", "fields": {"nom_de_la_commune": "VILLERS VERMONT", "libell_d_acheminement": "VILLERS VERMONT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60691"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6668925fd5ca6ed71a4637412323e1149ddfa1d", "fields": {"nom_de_la_commune": "WAMBEZ", "libell_d_acheminement": "WAMBEZ", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60699"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d887ed82ec19d738873d73d2e96cec6918e3a75", "fields": {"nom_de_la_commune": "WARLUIS", "libell_d_acheminement": "WARLUIS", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60700"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e96378a181d6f683af5d0d4f3d08d4ed06fbe41", "fields": {"nom_de_la_commune": "WAVIGNIES", "libell_d_acheminement": "WAVIGNIES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60701"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04677291e87850e9d7fddb73762eaac26ba8a42", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "BREEL", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd11ebfc51f91b9f9c06df6d1b09a5f568cdcfcf", "fields": {"nom_de_la_commune": "AUBRY LE PANTHOU", "libell_d_acheminement": "AUBRY LE PANTHOU", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61010"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adcfa442f8cd960422a655b3e0d112b808806456", "fields": {"nom_de_la_commune": "AVERNES ST GOURGON", "libell_d_acheminement": "AVERNES ST GOURGON", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61018"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1742a68394a1a8be6202bbc5e84be7d503a06cab", "fields": {"nom_de_la_commune": "BAZOCHES AU HOULME", "libell_d_acheminement": "BAZOCHES AU HOULME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61028"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb4fd622e36d72e5043943d087748661ad95db2", "fields": {"nom_de_la_commune": "LA BAZOQUE", "libell_d_acheminement": "LA BAZOQUE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61030"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785916d769d1bfc70d410607d8741f185090f7ea", "fields": {"code_postal": "61110", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "ST MAURICE SUR HUISNE", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f842a9183f983fcda0cae137b26c14d6cba56a2b", "fields": {"nom_de_la_commune": "BRIOUZE", "libell_d_acheminement": "BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61063"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8400dd47057662b6eb95f8e6f1fe12b3ec7320c", "fields": {"code_postal": "61240", "code_commune_insee": "61081", "libell_d_acheminement": "CHAILLOUE", "ligne_5": "MARMOUILLE", "nom_de_la_commune": "CHAILLOUE", "coordonnees_gps": [48.7021245415, 0.261946034098]}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7465bd436266c2bc138d7abc077036587d7442e", "fields": {"code_postal": "61500", "code_commune_insee": "61081", "libell_d_acheminement": "CHAILLOUE", "ligne_5": "NEUVILLE PRES SEES", "nom_de_la_commune": "CHAILLOUE", "coordonnees_gps": [48.5847584341, 0.153667553772]}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8002a45ee0c3803274f19b43fcbc0061183913c0", "fields": {"nom_de_la_commune": "CHAMPCERIE", "libell_d_acheminement": "CHAMPCERIE", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61084"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e54e46fe391f1f8c71b374cbf8081dfa01dcd3", "fields": {"nom_de_la_commune": "LE CHAMP DE LA PIERRE", "libell_d_acheminement": "LE CHAMP DE LA PIERRE", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61085"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdadf2f29c8a7fb8ee8b3f22d80815b15870871", "fields": {"code_postal": "61140", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "LA CHAPELLE D ANDAINE", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5525924741, -0.471509032545]}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c5ec09a53242f6464e2a74767a18e4d5cc72aa", "fields": {"nom_de_la_commune": "LE CHATEAU D ALMENECHES", "libell_d_acheminement": "LE CHATEAU D ALMENECHES", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61101"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8ba4d7dd6f4cee20f0dd7248d844326d2fae2d", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61103"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f380fed9a6ede0d7b6e3dcd8deda1f29ed15fd", "fields": {"code_postal": "61110", "code_commune_insee": "61116", "libell_d_acheminement": "SABLONS SUR HUISNE", "ligne_5": "CONDEAU", "nom_de_la_commune": "SABLONS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492f8a52cb64df266b6b9f1c6afece8539672c6e", "fields": {"nom_de_la_commune": "CORBON", "libell_d_acheminement": "CORBON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61118"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508b998632305a485b0e6a13d8b640d1abf50a6c", "fields": {"nom_de_la_commune": "COULONCES", "libell_d_acheminement": "COULONCES", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61123"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3150d4391dbafe30fe77ad3a20012b3142776247", "fields": {"nom_de_la_commune": "COURGEOUT", "libell_d_acheminement": "COURGEOUT", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61130"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9af5fa211fd76ee7426f6e63fe93f5111f3dba", "fields": {"nom_de_la_commune": "CRAMENIL", "libell_d_acheminement": "CRAMENIL", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61137"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a437dec292cf1d97d8d46d4f85322e69c3facfd0", "fields": {"nom_de_la_commune": "DOMFRONT EN POIRAIE", "libell_d_acheminement": "DOMFRONT EN POIRAIE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61145"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14df6ee808d7f730d41286c6b3a52c7304caed4", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "LOUCE", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4add890975ec4d0d4fbdbfbe922582c86703bc6f", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "SERANS", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d89d5428645aa5395fb2432a63f337e6adee4117", "fields": {"nom_de_la_commune": "EPERRAIS", "libell_d_acheminement": "EPERRAIS", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61154"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb14be7cb4b7ac8a07d76aba7490d92fcb5a703a", "fields": {"nom_de_la_commune": "FEINGS", "libell_d_acheminement": "FEINGS", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61160"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc4815e27800f7f040e74e04348f90f12ab5659", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "COUVAINS", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08e357ccbaba946b901d400288872f97b2fafb7", "fields": {"code_postal": "61410", "code_commune_insee": "61168", "libell_d_acheminement": "LA FERTE MACE", "ligne_5": "ANTOIGNY", "nom_de_la_commune": "LA FERTE MACE", "coordonnees_gps": [48.5523953273, -0.396121387013]}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b6adf6fa2147ca9dda4a7abc6ef392d5776938", "fields": {"nom_de_la_commune": "LA GENEVRAIE", "libell_d_acheminement": "LA GENEVRAIE", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61188"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2828b022ce60423563817b1c3a951b9a563168d0", "fields": {"nom_de_la_commune": "GIEL COURTEILLES", "libell_d_acheminement": "GIEL COURTEILLES", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61189"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0639dc301b40173894072b322b09e67e663cf21", "fields": {"nom_de_la_commune": "JOUE DU PLAIN", "libell_d_acheminement": "JOUE DU PLAIN", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61210"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3f411745da9dbc8017dba91b5994a86db0b60a", "fields": {"nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "code_postal": "61140", "coordonnees_gps": [48.5525924741, -0.471509032545], "code_commune_insee": "61211"}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe71d0761e82aee6de789cdfbff7c66e8aeed3d", "fields": {"nom_de_la_commune": "L AIGLE", "libell_d_acheminement": "L AIGLE", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61214"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e291333d3f3f793d21f6a5b990823d5992fecd", "fields": {"nom_de_la_commune": "LA LANDE DE LOUGE", "libell_d_acheminement": "LA LANDE DE LOUGE", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61217"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ae5e16b8a7900c4a0d9e74624dbb20084ef49f", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MONCEAUX AU PERCHE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135f5cf60a636b00768f851f7a3d1f63b29dc712", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MOULICENT", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13337fa3d3b726dd4e8d22f266e865029e95e6a9", "fields": {"nom_de_la_commune": "LE MAGE", "libell_d_acheminement": "LE MAGE", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61242"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf1a989fdb5233d60acb101d90d816c1b6e236e", "fields": {"nom_de_la_commune": "MENIL FROGER", "libell_d_acheminement": "MENIL FROGER", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61264"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb3a7c4bd2dc6110740b53ec162c17ded9cf0b7", "fields": {"nom_de_la_commune": "LE MENIL GUYON", "libell_d_acheminement": "LE MENIL GUYON", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61266"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326c30cc2e0712061fb7d20b94ec86e94779b0eb", "fields": {"nom_de_la_commune": "MENIL HUBERT EN EXMES", "libell_d_acheminement": "MENIL HUBERT EN EXMES", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61268"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "445e4bf05c1d7223fb5e5c3893446a11a1fe071f", "fields": {"nom_de_la_commune": "LE MENIL VICOMTE", "libell_d_acheminement": "LE MENIL VICOMTE", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61272"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d6239ee7ecc214355fda42b2bc527c18628b8e", "fields": {"nom_de_la_commune": "LE MERLERAULT", "libell_d_acheminement": "LE MERLERAULT", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61275"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fd408f7adc273ecc2a71444ba0b59dfa98d957", "fields": {"nom_de_la_commune": "MONTMERREI", "libell_d_acheminement": "MONTMERREI", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61288"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c81fd46626e0683e89136c8abe65c69c815321a", "fields": {"nom_de_la_commune": "MONTSECRET CLAIREFOUGERE", "libell_d_acheminement": "MONTSECRET CLAIREFOUGERE", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61292"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079224de0395e0f6c67d77e5a55cf22253e93682", "fields": {"nom_de_la_commune": "MORTREE", "libell_d_acheminement": "MORTREE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61294"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25eb0da189f4ce89277a27d267dd7d3618b27aa", "fields": {"nom_de_la_commune": "MOULINS LA MARCHE", "libell_d_acheminement": "MOULINS LA MARCHE", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61297"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f864265f911354e9782da270137c7c352e19ca", "fields": {"nom_de_la_commune": "MOULINS SUR ORNE", "libell_d_acheminement": "MOULINS SUR ORNE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61298"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6e570e34b0f8a4f2fba1f9e95d6d39b611c4bd", "fields": {"nom_de_la_commune": "MOUSSONVILLIERS", "libell_d_acheminement": "MOUSSONVILLIERS", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61299"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c430c02948b13b9589dc860161aee11a7b005e1", "fields": {"nom_de_la_commune": "OMMEEL", "libell_d_acheminement": "OMMEEL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61315"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4750ceaff3a907e3c8ff6a877f48b104e0e2d2f", "fields": {"nom_de_la_commune": "LA PERRIERE", "libell_d_acheminement": "LA PERRIERE", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61325"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7046f5a46cadd79c94eae1a7570460a1f03fd352", "fields": {"nom_de_la_commune": "LE PIN LA GARENNE", "libell_d_acheminement": "LE PIN LA GARENNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61329"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4953912f9f9b93cb755948b45f3af349fffc24d", "fields": {"nom_de_la_commune": "POINTEL", "libell_d_acheminement": "POINTEL", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61332"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792996e0b1b8be65e57cf84c9e4e9be6bfa763b1", "fields": {"nom_de_la_commune": "PONTCHARDON", "libell_d_acheminement": "PONTCHARDON", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61333"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e9ecd6a2d81cf5cada913ff55b1a315706cce3", "fields": {"nom_de_la_commune": "POUVRAI", "libell_d_acheminement": "POUVRAI", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61336"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a5a0bbabcdb5a4bf300443c0fcb92279dcc47e", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "CHENEDOUIT", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7b1f4674ca170d521c379f572ba60aa12734094", "fields": {"nom_de_la_commune": "RAI", "libell_d_acheminement": "RAI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61342"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adc6af1f200abf9f1921d92ea7f928429ace2c3", "fields": {"nom_de_la_commune": "RESENLIEU", "libell_d_acheminement": "RESENLIEU", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61347"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ac78bb591aa481d1b1c2ecfdc39da2cf7927be", "fields": {"nom_de_la_commune": "ROUPERROUX", "libell_d_acheminement": "ROUPERROUX", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61357"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb330b13f4c79b5f9ef1b2026032cba7faa7eac", "fields": {"nom_de_la_commune": "SAI", "libell_d_acheminement": "SAI", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61358"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f8958e6bf3e990d558c81adf22fe4aca79c2d8", "fields": {"nom_de_la_commune": "ST ANDRE DE BRIOUZE", "libell_d_acheminement": "ST ANDRE DE BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61361"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43a32a61c16277146accc1eddceebbf9f880ff6", "fields": {"nom_de_la_commune": "ST AQUILIN DE CORBION", "libell_d_acheminement": "ST AQUILIN DE CORBION", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61363"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3a6bd3bfe5a1004f12cc9f9955fcb87567857b", "fields": {"nom_de_la_commune": "ST AUBIN EN CHAROLLAIS", "libell_d_acheminement": "ST AUBIN EN CHAROLLAIS", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71388"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5a4232a42a6d7c58279a79791bd05f7c347554", "fields": {"nom_de_la_commune": "ST BERAIN SUR DHEUNE", "libell_d_acheminement": "ST BERAIN SUR DHEUNE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71391"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56814bdd2c1e155180e315d54113dc72e25bd01c", "fields": {"nom_de_la_commune": "ST BOIL", "libell_d_acheminement": "ST BOIL", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71392"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28941257e7f0de0a0db1542ec74fc9d0ae925fab", "fields": {"nom_de_la_commune": "ST BONNET DE JOUX", "libell_d_acheminement": "ST BONNET DE JOUX", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71394"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11ac9542c00446c2cf49a5864619394c7b9db771", "fields": {"nom_de_la_commune": "ST EMILAND", "libell_d_acheminement": "ST EMILAND", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71409"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a190c52590fec4cbc6cfea59573b5dd4e2030bf3", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71415"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf35202d74d0808ac1b5c00d9faebf4d9f18c31", "fields": {"nom_de_la_commune": "ST GENGOUX DE SCISSE", "libell_d_acheminement": "ST GENGOUX DE SCISSE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71416"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25129120c697e066c6e4efd986d6c1a2627a224c", "fields": {"nom_de_la_commune": "ST GERMAIN DU PLAIN", "libell_d_acheminement": "ST GERMAIN DU PLAIN", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71420"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66066481ade571e3b61967e1671bbdb33eeea867", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71425"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41766480a738b51a82d4d8e2d00a045c542635fa", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71426"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cd44081c18f051f0c7ce833c546881183861ce", "fields": {"nom_de_la_commune": "ST IGNY DE ROCHE", "libell_d_acheminement": "ST IGNY DE ROCHE", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71428"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4966d760f8999094979c9facbf05d19a8a33072c", "fields": {"nom_de_la_commune": "ST JEAN DE TREZY", "libell_d_acheminement": "ST JEAN DE TREZY", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71431"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c5848cd5878b16aa221f0d4e17aad39e66e7d2", "fields": {"nom_de_la_commune": "ST JULIEN SUR DHEUNE", "libell_d_acheminement": "ST JULIEN SUR DHEUNE", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71435"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9991ec668ddd5cac4ccc5741a19c5c4b9cec43", "fields": {"nom_de_la_commune": "ST LEGER LES PARAY", "libell_d_acheminement": "ST LEGER LES PARAY", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71439"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57206e4d2a69bf8fa15c7bead2f1faa6e7d85a46", "fields": {"nom_de_la_commune": "ST LEGER SOUS LA BUSSIERE", "libell_d_acheminement": "ST LEGER SOUS LA BUSSIERE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71441"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d79f5b2839b3537fe1eb73744afea3367c2e09", "fields": {"nom_de_la_commune": "MAZIERES EN GATINE", "libell_d_acheminement": "MAZIERES EN GATINE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79172"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2594f78b95dbc5e401c6d13e13f96fc91f2aaf50", "fields": {"nom_de_la_commune": "MESSE", "libell_d_acheminement": "MESSE", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79177"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63c7b2411f8b40d048f1600945bb1a6d43bb8f8", "fields": {"nom_de_la_commune": "MONTRAVERS", "libell_d_acheminement": "MONTRAVERS", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79183"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e153fdc6c00b79218a0b87a31c3e719df3708f0", "fields": {"nom_de_la_commune": "OIRON", "libell_d_acheminement": "OIRON", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79196"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8492981d09cec45f184c830e1a73c5912d3a81d", "fields": {"nom_de_la_commune": "PRAHECQ", "libell_d_acheminement": "PRAHECQ", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79216"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3186ffdad70bcbe9bee41624987d3b1857672dc5", "fields": {"nom_de_la_commune": "PRAILLES", "libell_d_acheminement": "PRAILLES", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79217"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a6d88c0528ddd4e36cfe35abbe61f2edc14c66", "fields": {"nom_de_la_commune": "PRESSIGNY", "libell_d_acheminement": "PRESSIGNY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79218"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d5adc3568ef1ee0795e4595d24976ceaf78fd0", "fields": {"nom_de_la_commune": "LE RETAIL", "libell_d_acheminement": "LE RETAIL", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79226"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f8b5c01e66833dfe18490270de54f9516fcb9c", "fields": {"nom_de_la_commune": "ST AMAND SUR SEVRE", "libell_d_acheminement": "ST AMAND SUR SEVRE", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79235"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b149962f36219073373e754585bd9beab006f176", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR ROC", "libell_d_acheminement": "ST CHRISTOPHE SUR ROC", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79241"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17866ad3a911b6bec316c42494b68db1883e2615", "fields": {"nom_de_la_commune": "ST HILAIRE LA PALUD", "libell_d_acheminement": "ST HILAIRE LA PALUD", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79257"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9302eee6ac532f4db8c7aa31ad761679703c42d0", "fields": {"nom_de_la_commune": "ST LIN", "libell_d_acheminement": "ST LIN", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79267"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8d6cc3196138b7e66bebe465aec8fb59d648f6", "fields": {"nom_de_la_commune": "STE NEOMAYE", "libell_d_acheminement": "STE NEOMAYE", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79283"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c54fffd263b90ced8f874815a77f9403ef8148d", "fields": {"nom_de_la_commune": "ST POMPAIN", "libell_d_acheminement": "ST POMPAIN", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79290"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac7612b726dfd44d47e248d06b4e2094531eb5b", "fields": {"nom_de_la_commune": "ST ROMANS LES MELLE", "libell_d_acheminement": "ST ROMANS LES MELLE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79295"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7124b37ade24f4ed518ee899bf7dc027e35e7928", "fields": {"nom_de_la_commune": "THORIGNE", "libell_d_acheminement": "THORIGNE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79327"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a27c84828502810ec4da2d5dc4c40ad08d26ca", "fields": {"nom_de_la_commune": "VALLANS", "libell_d_acheminement": "VALLANS", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79335"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c09e743a8d66b1cfd8045915a05d3d0de568915", "fields": {"nom_de_la_commune": "LE VERT", "libell_d_acheminement": "LE VERT", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79346"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0761f9a63abedca7289335b9e9f7bb19f2047d", "fields": {"nom_de_la_commune": "VIENNAY", "libell_d_acheminement": "VIENNAY", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79347"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0bf6da6ec34985b379dad64e80758c7b1bc9b1", "fields": {"nom_de_la_commune": "VOUILLE", "libell_d_acheminement": "VOUILLE", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79355"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b342ad5bcc3eb2cf55754887779daec173eaf70", "fields": {"code_postal": "80270", "code_commune_insee": "80013", "libell_d_acheminement": "AIRAINES", "ligne_5": "DREUIL HAMEL", "nom_de_la_commune": "AIRAINES", "coordonnees_gps": [49.948357214, 1.92858154161]}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b382f1851d6028c382a96a06f2d835832542329", "fields": {"nom_de_la_commune": "AIZECOURT LE BAS", "libell_d_acheminement": "AIZECOURT LE BAS", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80014"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6914b54811ac1cd7d5c9e8168beba3de7c00b53f", "fields": {"nom_de_la_commune": "ANDECHY", "libell_d_acheminement": "ANDECHY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80023"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67a85e07f80c67cb5afe24c07f3164a76615f0f", "fields": {"nom_de_la_commune": "ARREST", "libell_d_acheminement": "ARREST", "code_postal": "80820", "coordonnees_gps": [50.1288563572, 1.61878440078], "code_commune_insee": "80029"}, "geometry": {"type": "Point", "coordinates": [1.61878440078, 50.1288563572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c5be0556f2396581267d8fdfdfc9526c04055a", "fields": {"nom_de_la_commune": "ASSAINVILLERS", "libell_d_acheminement": "ASSAINVILLERS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80032"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e45fda9cbd7ef5f7fb9311589fc2d805a5da59", "fields": {"nom_de_la_commune": "AUCHONVILLERS", "libell_d_acheminement": "AUCHONVILLERS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80038"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6229f8b61c2e563afbc91c483fb9afd4ba76756f", "fields": {"nom_de_la_commune": "AUMATRE", "libell_d_acheminement": "AUMATRE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80040"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370d9cbeec32a63ac8391fec26e707028ea7e428", "fields": {"nom_de_la_commune": "AUMONT", "libell_d_acheminement": "AUMONT", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80041"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65229228d1ab52da320a4f35efa6ede9b0f39b8b", "fields": {"nom_de_la_commune": "AUTHIEULE", "libell_d_acheminement": "AUTHIEULE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80044"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de747d98dec97d774f8ec6839140d7a14d8f259", "fields": {"nom_de_la_commune": "AVELUY", "libell_d_acheminement": "AVELUY", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80047"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa4aeabc7ff4cda2a0ce237d7d7a76d1ba112f2", "fields": {"nom_de_la_commune": "BAIZIEUX", "libell_d_acheminement": "BAIZIEUX", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80052"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972e935d8c3801dfb4205c3845f96b47fe2cc944", "fields": {"nom_de_la_commune": "BARLY", "libell_d_acheminement": "BARLY", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80055"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a8ae76b6420aa1e488e5e0b55aaf4807e62086", "fields": {"nom_de_la_commune": "BEAUCAMPS LE JEUNE", "libell_d_acheminement": "BEAUCAMPS LE JEUNE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80061"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f5c42193a80b681caa5c03690b5922fcf18ebf", "fields": {"nom_de_la_commune": "BEAUCAMPS LE VIEUX", "libell_d_acheminement": "BEAUCAMPS LE VIEUX", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80062"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c711f3fdb84eded37b34875d883cfabe37f90ca4", "fields": {"nom_de_la_commune": "BEAUMETZ", "libell_d_acheminement": "BEAUMETZ", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80068"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39cb2b72444342394b49afb8b030d8d34cbce365", "fields": {"nom_de_la_commune": "BEAUMONT HAMEL", "libell_d_acheminement": "BEAUMONT HAMEL", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80069"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67940bd38908f9ade675cc4f54ba3f5d3d96fc1", "fields": {"nom_de_la_commune": "BEAUQUESNE", "libell_d_acheminement": "BEAUQUESNE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80070"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f7b2d093ce2131998f18d82612f76710c89ed1", "fields": {"nom_de_la_commune": "BELLOY EN SANTERRE", "libell_d_acheminement": "BELLOY EN SANTERRE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80080"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69318a85a94dafed7b73abdd4de23a98aba06d50", "fields": {"nom_de_la_commune": "BERNATRE", "libell_d_acheminement": "BERNATRE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80085"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69f465ff4ffde49db9f934f7d5a447f49714550", "fields": {"nom_de_la_commune": "BERNAY EN PONTHIEU", "libell_d_acheminement": "BERNAY EN PONTHIEU", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80087"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8eff802d3603e4757a286f4df1f836871a8b35", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80089"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf02a39a7749c372e2ee2de57b80dd908df8711", "fields": {"nom_de_la_commune": "BERTEAUCOURT LES DAMES", "libell_d_acheminement": "BERTEAUCOURT LES DAMES", "code_postal": "80850", "coordonnees_gps": [50.0418153803, 2.15803970037], "code_commune_insee": "80093"}, "geometry": {"type": "Point", "coordinates": [2.15803970037, 50.0418153803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b97a574cbec34a28829479382241ec51ab8d734", "fields": {"nom_de_la_commune": "BIENCOURT", "libell_d_acheminement": "BIENCOURT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80104"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41642b8afc063aff99a28bec03acf4b072bf4e7", "fields": {"nom_de_la_commune": "BLANGY SOUS POIX", "libell_d_acheminement": "BLANGY SOUS POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80106"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1908a8cae5916a85a112c14bfb344a07e3033cf6", "fields": {"nom_de_la_commune": "BOSQUEL", "libell_d_acheminement": "LE BOSQUEL", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80114"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f8fa80492ca953425532fa14c333f45442deab", "fields": {"nom_de_la_commune": "BOUCHOIR", "libell_d_acheminement": "BOUCHOIR", "code_postal": "80910", "coordonnees_gps": [49.7367812704, 2.64925549457], "code_commune_insee": "80116"}, "geometry": {"type": "Point", "coordinates": [2.64925549457, 49.7367812704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb04ad02068029370bbfc6f63be38f92b00c9a5", "fields": {"nom_de_la_commune": "BOUILLANCOURT LA BATAILLE", "libell_d_acheminement": "BOUILLANCOURT LA BATAILLE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80121"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60f2bcef808402bc329e71d0723acaff298b5f0", "fields": {"nom_de_la_commune": "BOURSEVILLE", "libell_d_acheminement": "BOURSEVILLE", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80124"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9dba7d9a62ac71ce473efd8392b1083cc38451", "fields": {"nom_de_la_commune": "BOUTTENCOURT", "libell_d_acheminement": "BOUTTENCOURT", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80126"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08be64157f1b6319f70190331d2b1bea84b2c75", "fields": {"nom_de_la_commune": "BOVELLES", "libell_d_acheminement": "BOVELLES", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80130"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182f8857aa3aa5a33e7e12306a36f26792fcdb61", "fields": {"nom_de_la_commune": "BRACHES", "libell_d_acheminement": "BRACHES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80132"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d44c80a23e8da05d1dd8f4fd1dc5d7d436a7eae6", "fields": {"nom_de_la_commune": "BRAILLY CORNEHOTTE", "libell_d_acheminement": "BRAILLY CORNEHOTTE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80133"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efa12737b0feb9d51b7efb70d4f6171d802ba3a", "fields": {"nom_de_la_commune": "BRESLE", "libell_d_acheminement": "BRESLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80138"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b066561abe6b9a1d1f38ab0ccb9a355197a0bb29", "fields": {"nom_de_la_commune": "BUIGNY LES GAMACHES", "libell_d_acheminement": "BUIGNY LES GAMACHES", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80148"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a6ef12f6a21c1ded8051ff422e52d0e05d6992", "fields": {"nom_de_la_commune": "CHAMPIEN", "libell_d_acheminement": "CHAMPIEN", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80185"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37900da5fe7b0942d7eb83750d9c0b5f68a21f54", "fields": {"nom_de_la_commune": "CHIRMONT", "libell_d_acheminement": "CHIRMONT", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80193"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d978d9df62c342ef16f02739d842e56038cf7467", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80208"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "106ecbd016ba3e478f266426c479dad66ea68b30", "fields": {"code_postal": "80160", "code_commune_insee": "80211", "libell_d_acheminement": "CONTY", "ligne_5": "WAILLY", "nom_de_la_commune": "CONTY", "coordonnees_gps": [49.7511512754, 2.16207996445]}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b934aeec63f1016488e543c3af680afb798bd4", "fields": {"nom_de_la_commune": "COULONVILLERS", "libell_d_acheminement": "COULONVILLERS", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80215"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b91885df3b469b7fc0808ea0ee590175f59cfe15", "fields": {"nom_de_la_commune": "COURCELETTE", "libell_d_acheminement": "COURCELETTE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80216"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e058c30481c55a136640901895712eb498f165", "fields": {"nom_de_la_commune": "CREMERY", "libell_d_acheminement": "CREMERY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80223"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2571cfe2bee2f0a968146d4f92c5c1773b01f57a", "fields": {"nom_de_la_commune": "CROIXRAULT", "libell_d_acheminement": "CROIXRAULT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80227"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b4e3148e0246e6b2ff1abdcd7f3e04f1c39df4", "fields": {"nom_de_la_commune": "LE CROTOY", "libell_d_acheminement": "LE CROTOY", "code_postal": "80550", "coordonnees_gps": [50.2437299743, 1.62353460676], "code_commune_insee": "80228"}, "geometry": {"type": "Point", "coordinates": [1.62353460676, 50.2437299743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86024816b0a76a5e8ab06afe1e3fc6b41ba1734", "fields": {"nom_de_la_commune": "CURCHY", "libell_d_acheminement": "CURCHY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80230"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521d1643392f0230af71fbc76d3f89984df54995", "fields": {"nom_de_la_commune": "DANCOURT POPINCOURT", "libell_d_acheminement": "DANCOURT POPINCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80233"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c1b8c79a240e8eb17909d2503fea0e465251f1b", "fields": {"nom_de_la_commune": "DOMART SUR LA LUCE", "libell_d_acheminement": "DOMART SUR LA LUCE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80242"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba523ddea2ae200e16f956b995b611628c8a4d8", "fields": {"nom_de_la_commune": "DOMINOIS", "libell_d_acheminement": "DOMINOIS", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80244"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d160b78527ac248f74b37f0fb0b7f93032c94137", "fields": {"code_postal": "80370", "code_commune_insee": "80245", "libell_d_acheminement": "DOMLEGER LONGVILLERS", "ligne_5": "LONGVILLERS", "nom_de_la_commune": "DOMLEGER LONGVILLERS", "coordonnees_gps": [50.1625147057, 2.13483617177]}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20125bd599209e99b20e1cdede046549d446abf5", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80246"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e36a5a94d7de37732b5d568579d7a92ceb79a12", "fields": {"nom_de_la_commune": "DOMPIERRE BECQUINCOURT", "libell_d_acheminement": "DOMPIERRE BECQUINCOURT", "code_postal": "80980", "coordonnees_gps": [49.9103283385, 2.8063979071], "code_commune_insee": "80247"}, "geometry": {"type": "Point", "coordinates": [2.8063979071, 49.9103283385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26652f77c32a03f16f1cddc9eae3ae0e3868d6c7", "fields": {"nom_de_la_commune": "DOMQUEUR", "libell_d_acheminement": "DOMQUEUR", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80249"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f936e22799dc0617b01f0500011a8d7e1670329d", "fields": {"nom_de_la_commune": "DOULLENS", "libell_d_acheminement": "DOULLENS", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80253"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebee7f114e630c366b1f54b18a24a27cacc8237", "fields": {"nom_de_la_commune": "DURY", "libell_d_acheminement": "DURY", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80261"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "771084ab92758d160d9e1d259e147b75b9c097c1", "fields": {"nom_de_la_commune": "ENNEMAIN", "libell_d_acheminement": "ENNEMAIN", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80267"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11e8d3bf4f8744175e87f7a06a4966ac908ce78", "fields": {"nom_de_la_commune": "EPAGNE EPAGNETTE", "libell_d_acheminement": "EPAGNE EPAGNETTE", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80268"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd5dff06e2af072402ae6104881513bdbc40e1b", "fields": {"nom_de_la_commune": "EPLESSIER", "libell_d_acheminement": "EPLESSIER", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80273"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5d1371eef4e6fb2afa008cfadeea59aed6336a", "fields": {"code_postal": "80290", "code_commune_insee": "80276", "libell_d_acheminement": "EQUENNES ERAMECOURT", "ligne_5": "ERAMECOURT", "nom_de_la_commune": "EQUENNES ERAMECOURT", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0840bcca3a60a330a7eb81eb220d36dd6e2b90", "fields": {"nom_de_la_commune": "ERCHES", "libell_d_acheminement": "ERCHES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80278"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7ab2e912477c6b01361569da30a0d53d8717b3", "fields": {"nom_de_la_commune": "ERCHEU", "libell_d_acheminement": "ERCHEU", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80279"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0168daeec8b3a051710e51a36e4f4b7159f2a97e", "fields": {"nom_de_la_commune": "ESTREES SUR NOYE", "libell_d_acheminement": "ESTREES SUR NOYE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80291"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe082dce3ff8607f80d39323cea47fd91c5714be", "fields": {"nom_de_la_commune": "L ETOILE", "libell_d_acheminement": "L ETOILE", "code_postal": "80830", "coordonnees_gps": [50.031200876, 2.0339484859], "code_commune_insee": "80296"}, "geometry": {"type": "Point", "coordinates": [2.0339484859, 50.031200876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd9c830116be90af00385d2ee7b5c781e01f68e", "fields": {"nom_de_la_commune": "FAMECHON", "libell_d_acheminement": "FAMECHON", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80301"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748a26fa1c2ac484ba81b7badb3bc3025380933c", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80302"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc37e542fb725cb9e9bdcdd1e1dd127ce8a9fead", "fields": {"nom_de_la_commune": "FAY", "libell_d_acheminement": "FAY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80304"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aee8cbdaea02b41c181885dc625bacaac1d6c33", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80317"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c22b694ce437b02122d9fda66971ceb85c01c8", "fields": {"code_postal": "62270", "code_commune_insee": "62137", "libell_d_acheminement": "BLANGERVAL BLANGERMONT", "ligne_5": "BLANGERMONT", "nom_de_la_commune": "BLANGERVAL BLANGERMONT", "coordonnees_gps": [50.280518399, 2.28550384111]}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dd6eca681760404a967115a7099c5b34f47aae", "fields": {"nom_de_la_commune": "BLESSY", "libell_d_acheminement": "BLESSY", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62141"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97db835edbe5e8ca6babcbf2570bd5c884e05a97", "fields": {"nom_de_la_commune": "BLINGEL", "libell_d_acheminement": "BLINGEL", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62142"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2c1b500e0e157a49d5b4410e6924f04c4862fc", "fields": {"nom_de_la_commune": "BOULOGNE SUR MER", "libell_d_acheminement": "BOULOGNE SUR MER", "code_postal": "62200", "coordonnees_gps": [50.7270796705, 1.60612338396], "code_commune_insee": "62160"}, "geometry": {"type": "Point", "coordinates": [1.60612338396, 50.7270796705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8561edf7de3c76ecde37c3508973840de96caa0", "fields": {"nom_de_la_commune": "BOURS", "libell_d_acheminement": "BOURS", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62166"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6608ebd345df1d0c539d54d9e76ae06281331cb8", "fields": {"nom_de_la_commune": "BOYAVAL", "libell_d_acheminement": "BOYAVAL", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62171"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea2957a1e73084223081c9cf61a2b56a0d9458f", "fields": {"nom_de_la_commune": "BRUAY LA BUISSIERE", "libell_d_acheminement": "BRUAY LA BUISSIERE", "code_postal": "62700", "coordonnees_gps": [50.489902932, 2.55175766281], "code_commune_insee": "62178"}, "geometry": {"type": "Point", "coordinates": [2.55175766281, 50.489902932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc072a47faf2ace88bc366403ae9ae76a11de94c", "fields": {"nom_de_la_commune": "BRIAS", "libell_d_acheminement": "BRIAS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62180"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ee196b2e53f0367b95beffd61059c484496c2e", "fields": {"nom_de_la_commune": "BUCQUOY", "libell_d_acheminement": "BUCQUOY", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62181"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e092a512b3fc9308747757bb60816ea11ba80c6", "fields": {"nom_de_la_commune": "BUIRE AU BOIS", "libell_d_acheminement": "BUIRE AU BOIS", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62182"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b97de1a4b365073bee322deec10d2fd545d3152", "fields": {"nom_de_la_commune": "BUIRE LE SEC", "libell_d_acheminement": "BUIRE LE SEC", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62183"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c3f8268aea35b7d1079ad92080289dcb090781", "fields": {"nom_de_la_commune": "BURBURE", "libell_d_acheminement": "BURBURE", "code_postal": "62151", "coordonnees_gps": [50.5325826972, 2.4623535235], "code_commune_insee": "62188"}, "geometry": {"type": "Point", "coordinates": [2.4623535235, 50.5325826972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9988a5565bea763e6700119593016920b772eaf0", "fields": {"nom_de_la_commune": "BUSNES", "libell_d_acheminement": "BUSNES", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62190"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3e4129a9fdf17647db84a68d6e008b8120ec6", "fields": {"nom_de_la_commune": "CAGNICOURT", "libell_d_acheminement": "CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62192"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fc6f258f1fad509792840eb5ae833948533baa7", "fields": {"nom_de_la_commune": "CAMBLAIN CHATELAIN", "libell_d_acheminement": "CAMBLAIN CHATELAIN", "code_postal": "62470", "coordonnees_gps": [50.4810470816, 2.46209198935], "code_commune_insee": "62197"}, "geometry": {"type": "Point", "coordinates": [2.46209198935, 50.4810470816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f922cc0c75ed3c5929099f40425d02581909a2cb", "fields": {"nom_de_la_commune": "CAMPAGNE LES WARDRECQUES", "libell_d_acheminement": "CAMPAGNE LES WARDRECQUES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62205"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee95a7c8519eec039fd5ecb426ab7773f937d6f", "fields": {"nom_de_la_commune": "LA CAUCHIE", "libell_d_acheminement": "LA CAUCHIE", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62216"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26e80d0920a1d71ae1ce6141d3c26433e91a6e7", "fields": {"nom_de_la_commune": "CHERIENNES", "libell_d_acheminement": "CHERIENNES", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62222"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbb010dbbc1c7619db72855d32cfa037973de8e", "fields": {"nom_de_la_commune": "CLERQUES", "libell_d_acheminement": "CLERQUES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62228"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122e40241d9615c14bc50498e63bb30ea06b6887", "fields": {"nom_de_la_commune": "CLETY", "libell_d_acheminement": "CLETY", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62229"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bc0f2e7342208901ab50ef0a51004d9303e6a6", "fields": {"nom_de_la_commune": "COLEMBERT", "libell_d_acheminement": "COLEMBERT", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62230"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04ae41e9fdd694b097c8fe2415ec1ff6ed0687c", "fields": {"nom_de_la_commune": "CONDETTE", "libell_d_acheminement": "CONDETTE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62235"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a6bfab7e1d0463cfd8ce945cb6bddf46bbd6c6", "fields": {"nom_de_la_commune": "CONTEVILLE EN TERNOIS", "libell_d_acheminement": "CONTEVILLE EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62238"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f448a5a7f7e33d6651e7334aa56646a68ad1804a", "fields": {"nom_de_la_commune": "COUIN", "libell_d_acheminement": "COUIN", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62242"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bae49fe3774b43489642080b34b48b41f59bf1", "fields": {"nom_de_la_commune": "COUPELLE NEUVE", "libell_d_acheminement": "COUPELLE NEUVE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62246"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97bc48960130569ceea6fc548bef1573bce89c70", "fields": {"nom_de_la_commune": "CREMAREST", "libell_d_acheminement": "CREMAREST", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62255"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ccbb775635a537035c976f3253ae89232906db3", "fields": {"nom_de_la_commune": "CREPY", "libell_d_acheminement": "CREPY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62256"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064c99c9615f34d45fb0934f6870d4fc00e1742b", "fields": {"nom_de_la_commune": "CROISETTE", "libell_d_acheminement": "CROISETTE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62258"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cf4ee331555a90facb15288507ed066bcce45c", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62259"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8408f2938a2df6be4084708eaf1d178f98e8016", "fields": {"nom_de_la_commune": "CUCQ", "libell_d_acheminement": "CUCQ", "code_postal": "62780", "coordonnees_gps": [50.4862400419, 1.61385342585], "code_commune_insee": "62261"}, "geometry": {"type": "Point", "coordinates": [1.61385342585, 50.4862400419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8fa41faa8fe200cf26efbb6fcd12b8f9857eb41", "fields": {"nom_de_la_commune": "DANNES", "libell_d_acheminement": "DANNES", "code_postal": "62187", "coordonnees_gps": [50.5928633889, 1.60606481038], "code_commune_insee": "62264"}, "geometry": {"type": "Point", "coordinates": [1.60606481038, 50.5928633889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03320d9a797bcf7d51ee5c897983cf047bd2598d", "fields": {"nom_de_la_commune": "DIVION", "libell_d_acheminement": "DIVION", "code_postal": "62460", "coordonnees_gps": [50.4531419324, 2.47496250173], "code_commune_insee": "62270"}, "geometry": {"type": "Point", "coordinates": [2.47496250173, 50.4531419324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc211c4f77325b4bcc983a19d685c5030b48e48", "fields": {"nom_de_la_commune": "DOHEM", "libell_d_acheminement": "DOHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62271"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb35ef1c77741bc0a4301e161b1da6f6f195ad14", "fields": {"nom_de_la_commune": "DOURGES", "libell_d_acheminement": "DOURGES", "code_postal": "62119", "coordonnees_gps": [50.4390932019, 2.9865949211], "code_commune_insee": "62274"}, "geometry": {"type": "Point", "coordinates": [2.9865949211, 50.4390932019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41ed332b47262ca41955afe225983827c07aafa", "fields": {"nom_de_la_commune": "ECLIMEUX", "libell_d_acheminement": "ECLIMEUX", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62282"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d3dabedc5fd46820b7d7afa70c276a7aff9c18d", "fields": {"nom_de_la_commune": "ECQUEDECQUES", "libell_d_acheminement": "ECQUEDECQUES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62286"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f80b3eb5a4f714db344c4a49a3929c9809423c", "fields": {"nom_de_la_commune": "ECURIE", "libell_d_acheminement": "ECURIE", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62290"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73671e784ddcda34d5f34bc2b63bbc6492392cd", "fields": {"nom_de_la_commune": "EPERLECQUES", "libell_d_acheminement": "EPERLECQUES", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62297"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873ecb629b431a317f988e300581dc1e67277fa0", "fields": {"nom_de_la_commune": "EQUIHEN PLAGE", "libell_d_acheminement": "EQUIHEN PLAGE", "code_postal": "62224", "coordonnees_gps": [50.6790166663, 1.57648739719], "code_commune_insee": "62300"}, "geometry": {"type": "Point", "coordinates": [1.57648739719, 50.6790166663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11cd6a43ab812d3f2f44e30a8ae151f451cdd330", "fields": {"nom_de_la_commune": "ERVILLERS", "libell_d_acheminement": "ERVILLERS", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62306"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c82cd28b4d20a03fd93dadb913f41eb12ebe48", "fields": {"nom_de_la_commune": "ETRUN", "libell_d_acheminement": "ETRUN", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62320"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b994119c033ca1d51c8ed07d21abe0b6853ad9e0", "fields": {"nom_de_la_commune": "FAMECHON", "libell_d_acheminement": "FAMECHON", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62322"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a689a3477e402a80363597585122bd7f8f9d32", "fields": {"nom_de_la_commune": "FAVREUIL", "libell_d_acheminement": "FAVREUIL", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62326"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "040d9d0775150f9f83a358b6dc4795d95cf02cbc", "fields": {"nom_de_la_commune": "FEBVIN PALFART", "libell_d_acheminement": "FEBVIN PALFART", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62327"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161df3f0cd0d4daa267576c03b634ca79cc29218", "fields": {"nom_de_la_commune": "FESTUBERT", "libell_d_acheminement": "FESTUBERT", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62330"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6324a3e577c6e74df49def9d1179acc10d074e", "fields": {"nom_de_la_commune": "FICHEUX", "libell_d_acheminement": "FICHEUX", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62332"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e18092b004a9e6a169abdc39c0a1c36e2cc80c", "fields": {"nom_de_la_commune": "FRAMECOURT", "libell_d_acheminement": "FRAMECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62352"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7385877af0d88da1f444b707e1135caf74cb826e", "fields": {"nom_de_la_commune": "FRETHUN", "libell_d_acheminement": "FRETHUN", "code_postal": "62185", "coordonnees_gps": [50.9031968827, 1.82269226345], "code_commune_insee": "62360"}, "geometry": {"type": "Point", "coordinates": [1.82269226345, 50.9031968827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f5b38755fccea7aacfd3179ee289dcd190677c", "fields": {"nom_de_la_commune": "GOMMECOURT", "libell_d_acheminement": "GOMMECOURT", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62375"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0cc3e4182d56690f66d8f9b2833e353d7d6426", "fields": {"nom_de_la_commune": "GOUVES", "libell_d_acheminement": "GOUVES", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62378"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482a9b98bc57d2fcf56e0b696074946929eb0013", "fields": {"nom_de_la_commune": "GOUY ST ANDRE", "libell_d_acheminement": "GOUY ST ANDRE", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62382"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3410298430b97eedb785f41b15360b3048ef60c", "fields": {"nom_de_la_commune": "GOUY SOUS BELLONNE", "libell_d_acheminement": "GOUY SOUS BELLONNE", "code_postal": "62112", "coordonnees_gps": [50.3205971806, 3.05553687028], "code_commune_insee": "62383"}, "geometry": {"type": "Point", "coordinates": [3.05553687028, 50.3205971806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0d2859df148c0043b66c8796e873e7a8a2d248", "fields": {"nom_de_la_commune": "GROFFLIERS", "libell_d_acheminement": "GROFFLIERS", "code_postal": "62600", "coordonnees_gps": [50.4040908663, 1.59052675041], "code_commune_insee": "62390"}, "geometry": {"type": "Point", "coordinates": [1.59052675041, 50.4040908663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef207779a094db2637bb7ca51e4520446a805f40", "fields": {"nom_de_la_commune": "HABARCQ", "libell_d_acheminement": "HABARCQ", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62399"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197b6490549a6fa309837e678ba4fa9e9e130222", "fields": {"nom_de_la_commune": "HAISNES", "libell_d_acheminement": "HAISNES", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62401"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2052c8850cf0a8159fccb54355b3e4f6a20aa280", "fields": {"nom_de_la_commune": "HAMBLAIN LES PRES", "libell_d_acheminement": "HAMBLAIN LES PRES", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62405"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba596e91119fae3ac3f94a6169cfc8ae7f806d1", "fields": {"nom_de_la_commune": "HARNES", "libell_d_acheminement": "HARNES", "code_postal": "62440", "coordonnees_gps": [50.4521433616, 2.90362398538], "code_commune_insee": "62413"}, "geometry": {"type": "Point", "coordinates": [2.90362398538, 50.4521433616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480d9c7215a73f70d384a906264bf091c7463276", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62418"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e57aa6452741b04b90938959ff38db005ae85c", "fields": {"nom_de_la_commune": "HENU", "libell_d_acheminement": "HENU", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62430"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58006391c91d9b8b44f6ffc63686129f9597a146", "fields": {"nom_de_la_commune": "HERBINGHEN", "libell_d_acheminement": "HERBINGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62432"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82acb287564fabefd2bd7fee758f35c101889b8", "fields": {"nom_de_la_commune": "LA HERLIERE", "libell_d_acheminement": "LA HERLIERE", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62434"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adda5d684bcfa509bf1f38fa227a4707b25ebbbe", "fields": {"nom_de_la_commune": "HESTRUS", "libell_d_acheminement": "HESTRUS", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62450"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2800fb86e04856106501503dce2d371a032959a6", "fields": {"nom_de_la_commune": "HEZECQUES", "libell_d_acheminement": "HEZECQUES", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62453"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0bd119924784cce19b3d7cf5664998fc00ff2a", "fields": {"nom_de_la_commune": "HOULLE", "libell_d_acheminement": "HOULLE", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62458"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502e79c846e7c15b91b98edf3030355af9e3447f", "fields": {"nom_de_la_commune": "LACRES", "libell_d_acheminement": "LACRES", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62483"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9015d848914b4fcc42d5e75aaf9e1fec037039dc", "fields": {"nom_de_la_commune": "LEBIEZ", "libell_d_acheminement": "LEBIEZ", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62492"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfc34de374e79a3e604dd64cefa36c825f51435", "fields": {"nom_de_la_commune": "LECHELLE", "libell_d_acheminement": "LECHELLE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62494"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad678a287a0ed58e6498c72aecf40d92bfcbc628", "fields": {"nom_de_la_commune": "LESTREM", "libell_d_acheminement": "LESTREM", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62502"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3d965c56dd371ca87fdc3bd2f1bc6c2e4c9a9a", "fields": {"nom_de_la_commune": "LEUBRINGHEN", "libell_d_acheminement": "LEUBRINGHEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62503"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77204388b2b6d2ad404243d2f63d7d882bb55529", "fields": {"nom_de_la_commune": "LIGNY LES AIRE", "libell_d_acheminement": "LIGNY LES AIRE", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62512"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79c7ed52257732785107a53fc5c33b0c476766d", "fields": {"nom_de_la_commune": "LILLERS", "libell_d_acheminement": "LILLERS", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62516"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1c99c832daeda82b14049fc7ff32f87c2e59ba", "fields": {"nom_de_la_commune": "LA LOGE", "libell_d_acheminement": "LA LOGE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62521"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4ba3dc2c180870fe7e4eaf06f98d2f959e6be6f", "fields": {"nom_de_la_commune": "LA MADELAINE SOUS MONTREUIL", "libell_d_acheminement": "LA MADELAINE SOUS MONTREUIL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62535"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "433047eeda61a3f0225fc21ba83df6f31bbf3b95", "fields": {"nom_de_la_commune": "MAGNICOURT EN COMTE", "libell_d_acheminement": "MAGNICOURT EN COMTE", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62536"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0ec3b27de2695efe9acd6e561850a02c22cd8a", "fields": {"nom_de_la_commune": "MARCONNE", "libell_d_acheminement": "MARCONNE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62549"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0241d69f6e2fdd1d81dbce08c4f8c34a89971346", "fields": {"nom_de_la_commune": "MARESQUEL ECQUEMICOURT", "libell_d_acheminement": "MARESQUEL ECQUEMICOURT", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62552"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ecf283500f298f0f5fcf1549221b28ccbd0070", "fields": {"nom_de_la_commune": "MARLES LES MINES", "libell_d_acheminement": "MARLES LES MINES", "code_postal": "62540", "coordonnees_gps": [50.5065870429, 2.50257888939], "code_commune_insee": "62555"}, "geometry": {"type": "Point", "coordinates": [2.50257888939, 50.5065870429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0521685fb6f334f01ca99eddf2d396e23d0fc794", "fields": {"nom_de_la_commune": "MARTINPUICH", "libell_d_acheminement": "MARTINPUICH", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62561"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f1696d4099f871663f98b89e4e29c1a1485bef", "fields": {"nom_de_la_commune": "MATRINGHEM", "libell_d_acheminement": "MATRINGHEM", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62562"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a8aa9a97b4c85cae73e400b4ec71d358c7e35f2", "fields": {"nom_de_la_commune": "MONCHY AU BOIS", "libell_d_acheminement": "MONCHY AU BOIS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62579"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dcb9c899922a4d18f75ee2d96abc2b0cf7587d", "fields": {"nom_de_la_commune": "MONDICOURT", "libell_d_acheminement": "MONDICOURT", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62583"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98af04f555fbc27392f1e2bcc482636fe0519f80", "fields": {"nom_de_la_commune": "MONTENESCOURT", "libell_d_acheminement": "MONTENESCOURT", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62586"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df7b839d02979bd43b0aceec5a8572d10e1cd787", "fields": {"nom_de_la_commune": "NEUVILLE ST VAAST", "libell_d_acheminement": "NEUVILLE ST VAAST", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62609"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc731c571effc1d42460526f4f31de814aa44cc", "fields": {"nom_de_la_commune": "NIELLES LES BLEQUIN", "libell_d_acheminement": "NIELLES LES BLEQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62613"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6028298b7d0553fd0996795756e513840c7ac24f", "fields": {"nom_de_la_commune": "NORDAUSQUES", "libell_d_acheminement": "NORDAUSQUES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62618"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b239a58d436c1a07d7acdb44a028162b772f02b", "fields": {"nom_de_la_commune": "OBLINGHEM", "libell_d_acheminement": "OBLINGHEM", "code_postal": "62920", "coordonnees_gps": [50.5563250564, 2.56747944823], "code_commune_insee": "62632"}, "geometry": {"type": "Point", "coordinates": [2.56747944823, 50.5563250564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0502ec41d83d9fddeaafc6f888f1073f22bef39b", "fields": {"nom_de_la_commune": "PENIN", "libell_d_acheminement": "PENIN", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62651"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad3f2e2096c77864a14b68886a2651aa0c40138", "fields": {"nom_de_la_commune": "PERNES", "libell_d_acheminement": "PERNES", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62652"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be71fa2c43a483045546c23827b970d320492668", "fields": {"nom_de_la_commune": "POLINCOVE", "libell_d_acheminement": "POLINCOVE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62662"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195ff2fb8c238039f01e5fa72f45775335efe6c0", "fields": {"nom_de_la_commune": "POMMERA", "libell_d_acheminement": "POMMERA", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62663"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2743d946805dae68fb1acccb75a160c0995893d4", "fields": {"nom_de_la_commune": "PONT A VENDIN", "libell_d_acheminement": "PONT A VENDIN", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62666"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fbb154ad9849293e9dbe0dcdfbd652c579aad2", "fields": {"nom_de_la_commune": "QUESQUES", "libell_d_acheminement": "QUESQUES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62678"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df76d981f0aa6d9ea892f58b3d6ad5cca4db2318", "fields": {"nom_de_la_commune": "RAMECOURT", "libell_d_acheminement": "RAMECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62686"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625e00173bbd289cde06907de818f4edb0f4f392", "fields": {"nom_de_la_commune": "REBREUVE RANCHICOURT", "libell_d_acheminement": "REBREUVE RANCHICOURT", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62693"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f291fd60c6c360c3bc19ef79d93990eba64273c7", "fields": {"nom_de_la_commune": "RECLINGHEM", "libell_d_acheminement": "RECLINGHEM", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62696"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bac05d3f3981a19dba1a62cfe07be933bfc5dc2", "fields": {"nom_de_la_commune": "RIENCOURT LES BAPAUME", "libell_d_acheminement": "RIENCOURT LES BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62708"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0af2e1523bf52365368e24329ee3a483e84d0c", "fields": {"nom_de_la_commune": "RINXENT", "libell_d_acheminement": "RINXENT", "code_postal": "62720", "coordonnees_gps": [50.7869009798, 1.75735193267], "code_commune_insee": "62711"}, "geometry": {"type": "Point", "coordinates": [1.75735193267, 50.7869009798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1f44452dc0fde55d50e9fad12e688a092961fc", "fields": {"nom_de_la_commune": "ROEUX", "libell_d_acheminement": "ROEUX", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62718"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f4eb234b63e54835d21167eb13bb97bea1ae9d", "fields": {"nom_de_la_commune": "ROLLANCOURT", "libell_d_acheminement": "ROLLANCOURT", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62719"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c48f90975dc4361f05baade4f9a37d2ea47f5d7", "fields": {"nom_de_la_commune": "RUMILLY", "libell_d_acheminement": "RUMILLY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62729"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56370d100a10d57d52107ba231336be06835029c", "fields": {"nom_de_la_commune": "LA CHAPELLE ST JEAN", "libell_d_acheminement": "LA CHAPELLE ST JEAN", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24113"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd7509940357474175e86c3c4007859aeca1942", "fields": {"nom_de_la_commune": "CHAVAGNAC", "libell_d_acheminement": "CHAVAGNAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24117"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3969c94d176f220ab08f2a0ea4d69fb7308e9856", "fields": {"nom_de_la_commune": "CHOURGNAC", "libell_d_acheminement": "CHOURGNAC", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24121"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7d7eee9e46c47ae0e40e1ce0c5d6c636583209", "fields": {"nom_de_la_commune": "CLADECH", "libell_d_acheminement": "CLADECH", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24122"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a11a791980503697f86088c1a241df492206367", "fields": {"nom_de_la_commune": "COMBERANCHE ET EPELUCHE", "libell_d_acheminement": "COMBERANCHE ET EPELUCHE", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24128"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0540e3960b890d0c2f1bc0a02cd3067d0560a84d", "fields": {"nom_de_la_commune": "CONNE DE LABARDE", "libell_d_acheminement": "CONNE DE LABARDE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24132"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90295013abe3f4c9dab8c9e94f49ab652fe33949", "fields": {"nom_de_la_commune": "CORNILLE", "libell_d_acheminement": "CORNILLE", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24135"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e84d8ee26c5ea488978583555518ac35980b8ce", "fields": {"nom_de_la_commune": "COUX ET BIGAROQUE MOUZENS", "libell_d_acheminement": "COUX ET BIGAROQUE MOUZENS", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24142"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ba536ea3854fe71c70e7995d9507630066de36", "fields": {"nom_de_la_commune": "DOISSAT", "libell_d_acheminement": "DOISSAT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24151"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9790dbdc083eb3f443acb5a2c10eb5d135a94e8", "fields": {"nom_de_la_commune": "LA DORNAC", "libell_d_acheminement": "LA DORNAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24153"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1464e8277ec48c005b09c26c54c8020beb73814", "fields": {"nom_de_la_commune": "EGLISE NEUVE D ISSAC", "libell_d_acheminement": "EGLISE NEUVE D ISSAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24161"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191c70ba0b8c6dfdac2b003c402888e1ad623c1d", "fields": {"nom_de_la_commune": "EYLIAC", "libell_d_acheminement": "EYLIAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24166"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d610e293c038dcc620034aa7698a5fe3ebd1bea7", "fields": {"nom_de_la_commune": "COURTAULY", "libell_d_acheminement": "COURTAULY", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11107"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45632b3e60aa5e3277f9ef418742326f915d4d8a", "fields": {"nom_de_la_commune": "LA COURTETE", "libell_d_acheminement": "LA COURTETE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11108"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062cd31d4e3d7bd1746b14d8d9084bc16e211837", "fields": {"nom_de_la_commune": "LA DIGNE D AVAL", "libell_d_acheminement": "LA DIGNE D AVAL", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11120"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6471e5fef7deab80af408391d1b7d0672d0bca6d", "fields": {"nom_de_la_commune": "ESCUEILLENS ET ST JUST", "libell_d_acheminement": "ESCUEILLENS ET ST JUST", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11128"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f944649ceb3037b5c84c340dd22ef592a427b923", "fields": {"nom_de_la_commune": "FA", "libell_d_acheminement": "FA", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11131"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5b739c3aa3a48123d78d2dc426363a11889501", "fields": {"nom_de_la_commune": "FAJAC LA RELENQUE", "libell_d_acheminement": "FAJAC LA RELENQUE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11134"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87abf662ecd71f6a5742b21ef3c20c1c1613ed6", "fields": {"nom_de_la_commune": "FENOUILLET DU RAZES", "libell_d_acheminement": "FENOUILLET DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11139"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e5796d06cffba27f7c12341bc39c95d43a6a84", "fields": {"nom_de_la_commune": "FERRAN", "libell_d_acheminement": "FERRAN", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11141"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b57b879c2bac849b8023973d7fa231f18cae3d", "fields": {"nom_de_la_commune": "FLOURE", "libell_d_acheminement": "FLOURE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11146"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef701a9d0ea3347b551f9f6a8b9de9a39cd8cac5", "fields": {"nom_de_la_commune": "FONTIES D AUDE", "libell_d_acheminement": "FONTIES D AUDE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11151"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ab2b9d20d8c07b83a40e88085845dfa8812129", "fields": {"nom_de_la_commune": "FOURTOU", "libell_d_acheminement": "FOURTOU", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11155"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05596596a6d72b8ec71e0ce7f3fa0fdce4307078", "fields": {"nom_de_la_commune": "FRAISSE CABARDES", "libell_d_acheminement": "FRAISSE CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11156"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524a603ce91da16916c6ef658c3e77101c9cb8c6", "fields": {"nom_de_la_commune": "GARDIE", "libell_d_acheminement": "GARDIE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11161"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0b3ffb2905c033f5bbebae946a49eb0e8d666b", "fields": {"nom_de_la_commune": "GINOLES", "libell_d_acheminement": "GINOLES", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11165"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a89cca5bcdc6cea809548665cb4cbd1c113850", "fields": {"code_postal": "11430", "code_commune_insee": "11170", "libell_d_acheminement": "GRUISSAN", "ligne_5": "GRUISSAN PLAGE", "nom_de_la_commune": "GRUISSAN", "coordonnees_gps": [43.1033671547, 3.08203415117]}, "geometry": {"type": "Point", "coordinates": [3.08203415117, 43.1033671547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd86586dff0c8d8da4f800e1c2728e80b17bc41a", "fields": {"nom_de_la_commune": "LES ILHES", "libell_d_acheminement": "LES ILHES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11174"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2f829776148074661f8f2ac670ceae3225cb4a", "fields": {"nom_de_la_commune": "LABECEDE LAURAGAIS", "libell_d_acheminement": "LABECEDE LAURAGAIS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11181"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0a14d114e866668070bad56bbce0ef8caec9d4", "fields": {"nom_de_la_commune": "LAFAGE", "libell_d_acheminement": "LAFAGE", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11184"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80eaaf8d185d1f7d6aa4b7ecaf6f5fe747f0349", "fields": {"nom_de_la_commune": "LAIRIERE", "libell_d_acheminement": "LAIRIERE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11186"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05cb7e41314f457d5ecd8dd6e2a84ba393549f1b", "fields": {"nom_de_la_commune": "LAROQUE DE FA", "libell_d_acheminement": "LAROQUE DE FA", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11191"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab22cd2a36397ce5d4eca5d18c61357327243e58", "fields": {"nom_de_la_commune": "LEZIGNAN CORBIERES", "libell_d_acheminement": "LEZIGNAN CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11203"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d84cc0d3bff19fb5e156331ed0ea4813653098", "fields": {"nom_de_la_commune": "LUC SUR AUDE", "libell_d_acheminement": "LUC SUR AUDE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11209"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5912977e84ebdd33ced1600dbd785aa173426eb", "fields": {"nom_de_la_commune": "LUC SUR ORBIEU", "libell_d_acheminement": "LUC SUR ORBIEU", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11210"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c244fc4a1692ee88e40606cc6f0bf261152611", "fields": {"nom_de_la_commune": "MAISONS", "libell_d_acheminement": "MAISONS", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11213"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623d4bee18c5fffc1a1c616352c39d5a8feacc06", "fields": {"nom_de_la_commune": "MALVES EN MINERVOIS", "libell_d_acheminement": "MALVES EN MINERVOIS", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11215"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94485cd946958c2d2c6b49f558c575fca46dbbc2", "fields": {"nom_de_la_commune": "MALVIES", "libell_d_acheminement": "MALVIES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11216"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a636a317d012c2fdba11dd193c9137bae628891a", "fields": {"nom_de_la_commune": "MAS DES COURS", "libell_d_acheminement": "MAS DES COURS", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11223"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820c998396f18904b9739d56ef9d91b2654e0603", "fields": {"nom_de_la_commune": "MONTFERRAND", "libell_d_acheminement": "MONTFERRAND", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11243"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68405029233fd976cb8aa00f686777fa3b7c796", "fields": {"nom_de_la_commune": "MONTJOI", "libell_d_acheminement": "MONTJOI", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11250"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "286cd54888c04ee4fbd668ef4fb69ec626183b9a", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11254"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1f620f840592cf5a957a0d6fe6a6b370a521d8", "fields": {"nom_de_la_commune": "NIORT DE SAULT", "libell_d_acheminement": "NIORT DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11265"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6dd4359bb4858a1888c3649e2a1948f5eef79b4", "fields": {"nom_de_la_commune": "PORT LA NOUVELLE", "libell_d_acheminement": "PORT LA NOUVELLE", "code_postal": "11210", "coordonnees_gps": [43.0214983978, 3.03796386295], "code_commune_insee": "11266"}, "geometry": {"type": "Point", "coordinates": [3.03796386295, 43.0214983978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f9d8dc0f1657317c8d729331cbaff8d66c59f3", "fields": {"nom_de_la_commune": "ORNAISONS", "libell_d_acheminement": "ORNAISONS", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11267"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e6ff37e731ddea9e1baeb15f2578e27e820dbe", "fields": {"nom_de_la_commune": "OUVEILLAN", "libell_d_acheminement": "OUVEILLAN", "code_postal": "11590", "coordonnees_gps": [43.2767571577, 2.97534639195], "code_commune_insee": "11269"}, "geometry": {"type": "Point", "coordinates": [2.97534639195, 43.2767571577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c017b1f446c26937a17f66033112112692c2f8a8", "fields": {"nom_de_la_commune": "PALAJA", "libell_d_acheminement": "PALAJA", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11272"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c883bce7019e9f9c274881f7174ef56d2e7ca5a1", "fields": {"nom_de_la_commune": "PEXIORA", "libell_d_acheminement": "PEXIORA", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11281"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75791eb44f48aadfa06cf9871625a165d779d8e7", "fields": {"nom_de_la_commune": "PUGINIER", "libell_d_acheminement": "PUGINIER", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11300"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9b4161bd84686a7a644ab82988e34660e58d08", "fields": {"nom_de_la_commune": "PUILAURENS", "libell_d_acheminement": "PUILAURENS", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11302"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c26a4897c762cefaa3de02f55e6f394354c82f", "fields": {"nom_de_la_commune": "RENNES LES BAINS", "libell_d_acheminement": "RENNES LES BAINS", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11310"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7576963c1437b0124708835fd45d7005e121608f", "fields": {"nom_de_la_commune": "RIBAUTE", "libell_d_acheminement": "RIBAUTE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11311"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7ae43f71e6aa5d160e8ad3fc90b774e1361f04", "fields": {"nom_de_la_commune": "RIBOUISSE", "libell_d_acheminement": "RIBOUISSE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11312"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46e55e7b4360fa7f7b7c3f5eb3cc5dcc33e87ae", "fields": {"nom_de_la_commune": "ROUTIER", "libell_d_acheminement": "ROUTIER", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11328"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536f4c0e07a26c8970f09380f6aa9e29a4f564f0", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11333"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1403148457ea85cacefb10cfce4d982bca2b3197", "fields": {"nom_de_la_commune": "ST FRICHOUX", "libell_d_acheminement": "ST FRICHOUX", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11342"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1a577b0680bf07ba5c99555eb8686ea6bedfd0", "fields": {"nom_de_la_commune": "ST MARTIN DE VILLEREGLAN", "libell_d_acheminement": "ST MARTIN DE VILLEREGLAN", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11355"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898794976687c59c162b0ddfcbdc6fb35f07c64f", "fields": {"nom_de_la_commune": "ST MARTIN LE VIEIL", "libell_d_acheminement": "ST MARTIN LE VIEIL", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11357"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3ec14887ead20efc280699d94e964545f6619a", "fields": {"nom_de_la_commune": "ST NAZAIRE D AUDE", "libell_d_acheminement": "ST NAZAIRE D AUDE", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11360"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fcf5fa6f8f6988773efb042d2a82dfbdd60d572", "fields": {"nom_de_la_commune": "SALVEZINES", "libell_d_acheminement": "SALVEZINES", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11373"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4904a73f4e1fc74cdc2b4ae72ba08e6a0cbb44bc", "fields": {"nom_de_la_commune": "SERRES", "libell_d_acheminement": "SERRES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11377"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383bf4579a5918e8a72bf547446666bfb4cbc395", "fields": {"nom_de_la_commune": "SONNAC SUR L HERS", "libell_d_acheminement": "SONNAC SUR L HERS", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11380"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f7aedd9ab2afb54ceda9352d9741968dcbf777", "fields": {"nom_de_la_commune": "TAURIZE", "libell_d_acheminement": "TAURIZE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11387"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2c2f62ab7e1719d1ac5f87282fc171b87d1c0b", "fields": {"nom_de_la_commune": "TERMES", "libell_d_acheminement": "TERMES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11388"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43af5f80cb1ba5d8d51a123143e123c31bf9caba", "fields": {"nom_de_la_commune": "TERROLES", "libell_d_acheminement": "TERROLES", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11389"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cd008b9974ea9ea772e99684e64b8201877f6b", "fields": {"nom_de_la_commune": "TOUROUZELLE", "libell_d_acheminement": "TOUROUZELLE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11393"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502796b0a88945c3c0978738093405220b0d6338", "fields": {"nom_de_la_commune": "TREILLES", "libell_d_acheminement": "TREILLES", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11398"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67a232955fc31151cb3b9e968b421001bb1f3a9", "fields": {"nom_de_la_commune": "TREVILLE", "libell_d_acheminement": "TREVILLE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11399"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5539aa39a5ec4cbefea2780624cba43db0940c", "fields": {"nom_de_la_commune": "VENTENAC CABARDES", "libell_d_acheminement": "VENTENAC CABARDES", "code_postal": "11610", "coordonnees_gps": [43.2600787186, 2.30202617457], "code_commune_insee": "11404"}, "geometry": {"type": "Point", "coordinates": [2.30202617457, 43.2600787186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2617c8e0500acaf7a930b571f838b346fa850ca5", "fields": {"nom_de_la_commune": "VERAZA", "libell_d_acheminement": "VERAZA", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11406"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d47bfda688c6bc80009e247ceee892e3de32f9e", "fields": {"nom_de_la_commune": "VILLEBAZY", "libell_d_acheminement": "VILLEBAZY", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11420"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01e18aea940752c0b0295946aa86ac126cf2e16", "fields": {"nom_de_la_commune": "VILLESEQUE DES CORBIERES", "libell_d_acheminement": "VILLESEQUE DES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11436"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015f7a29e61d911b55cf2b2eb7a895af085c7832", "fields": {"nom_de_la_commune": "VILLESEQUELANDE", "libell_d_acheminement": "VILLESEQUELANDE", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11437"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2155d3bec26379d2bb0d8fb758494a679708e5ae", "fields": {"nom_de_la_commune": "VILLESISCLE", "libell_d_acheminement": "VILLESISCLE", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11438"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0bc56fc9143792128c86ff9522c4f5686b8ebf", "fields": {"nom_de_la_commune": "ALRANCE", "libell_d_acheminement": "ALRANCE", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12006"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825932a9d1dfca704b122a3c98bdeb821438b936", "fields": {"nom_de_la_commune": "ARNAC SUR DOURDOU", "libell_d_acheminement": "ARNAC SUR DOURDOU", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12009"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab69b2438e5e5fbd2f86c81331921e7e9621248", "fields": {"nom_de_la_commune": "ARVIEU", "libell_d_acheminement": "ARVIEU", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12011"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7c19446bc7cb5b5fd9dab813ccee1985e84c04", "fields": {"code_postal": "12240", "code_commune_insee": "12021", "libell_d_acheminement": "LE BAS SEGALA", "ligne_5": "VABRE TIZAC", "nom_de_la_commune": "LE BAS SEGALA", "coordonnees_gps": [44.3140270715, 2.24773559855]}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8bf668a8a33bba1d4fe5338a5bd1fded9c9a6c9", "fields": {"nom_de_la_commune": "BERTHOLENE", "libell_d_acheminement": "BERTHOLENE", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12026"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e067858ebd811970a4f88b85d452e8cfb98b741f", "fields": {"nom_de_la_commune": "BESSUEJOULS", "libell_d_acheminement": "BESSUEJOULS", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12027"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9112f5ae8a37cbe3f166b5375edd104fc758b9d7", "fields": {"nom_de_la_commune": "BOISSE PENCHOT", "libell_d_acheminement": "BOISSE PENCHOT", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12028"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b3cb570383b6d27d7bbc23ec5f241763903a1f", "fields": {"nom_de_la_commune": "BOZOULS", "libell_d_acheminement": "BOZOULS", "code_postal": "12340", "coordonnees_gps": [44.4656002773, 2.70710459278], "code_commune_insee": "12033"}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf8b2edf04939a1ddea9e3ad7cac696c1c398b6", "fields": {"nom_de_la_commune": "BRUSQUE", "libell_d_acheminement": "BRUSQUE", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12039"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff0d52ffdb94cc69f0f00c451100405817aac7a", "fields": {"nom_de_la_commune": "CAMBOULAZET", "libell_d_acheminement": "CAMBOULAZET", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12045"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b17e1d6282ab906ae2e6b359fbba3192d28ba6", "fields": {"code_postal": "12140", "code_commune_insee": "12048", "libell_d_acheminement": "CAMPOURIEZ", "ligne_5": "BANHARS", "nom_de_la_commune": "CAMPOURIEZ", "coordonnees_gps": [44.6558037135, 2.58164635516]}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d878a96ff829c14830568b893cad0e77837c67d", "fields": {"nom_de_la_commune": "CANET DE SALARS", "libell_d_acheminement": "CANET DE SALARS", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12050"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3105391c3665f51387e92c3ca6c781f1155670d", "fields": {"nom_de_la_commune": "CASSAGNES BEGONHES", "libell_d_acheminement": "CASSAGNES BEGONHES", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12057"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c57ca2a88013328adc45439f513f8ab763e7e6", "fields": {"nom_de_la_commune": "COMPEYRE", "libell_d_acheminement": "COMPEYRE", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12070"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b47de23e5ac41aaa2503943ca89a84fd4e7a135", "fields": {"nom_de_la_commune": "CORNUS", "libell_d_acheminement": "CORNUS", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12077"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00915ce7d3ac1f0504102dec937e8a33c37388d", "fields": {"nom_de_la_commune": "COUBISOU", "libell_d_acheminement": "COUBISOU", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12079"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a0240f0ccf6a813bb0b0832faf7a7347e90821", "fields": {"nom_de_la_commune": "LA COUVERTOIRADE", "libell_d_acheminement": "LA COUVERTOIRADE", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12082"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4639cefc83afd6d6a6e928e676cda7e5f6dd26ad", "fields": {"nom_de_la_commune": "CRANSAC", "libell_d_acheminement": "CRANSAC", "code_postal": "12110", "coordonnees_gps": [44.5334610269, 2.25593564519], "code_commune_insee": "12083"}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee29c9f452375293e94cb283fc7dd8140ea9230", "fields": {"nom_de_la_commune": "LA CRESSE", "libell_d_acheminement": "LA CRESSE", "code_postal": "12640", "coordonnees_gps": [44.1929221049, 3.13986623915], "code_commune_insee": "12086"}, "geometry": {"type": "Point", "coordinates": [3.13986623915, 44.1929221049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73d7867870be08fbac0b40341e5c1c1e647d4bf", "fields": {"code_postal": "12000", "code_commune_insee": "12090", "libell_d_acheminement": "DRUELLE", "ligne_5": "AMPIAC", "nom_de_la_commune": "DRUELLE", "coordonnees_gps": [44.3677869063, 2.531363607]}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e919d1f01a45d097c98410db03b4a394d031b158", "fields": {"nom_de_la_commune": "ESPALION", "libell_d_acheminement": "ESPALION", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12096"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a241ff893509dfa2488ac63e0329f131ab5b7ec", "fields": {"nom_de_la_commune": "ESTAING", "libell_d_acheminement": "ESTAING", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12098"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d233b81e8d4b3c7171ca5242f550532cf429262", "fields": {"nom_de_la_commune": "FLAGNAC", "libell_d_acheminement": "FLAGNAC", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12101"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43203882bc61d95fb743d81c5021792a7c88e768", "fields": {"nom_de_la_commune": "FOISSAC", "libell_d_acheminement": "FOISSAC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12104"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57604ef3c5199eaf96b3b9a1cf2020ae8e5b38c3", "fields": {"nom_de_la_commune": "L HOSPITALET DU LARZAC", "libell_d_acheminement": "L HOSPITALET DU LARZAC", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12115"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bc8104efa8762dec992e419ee759725a739fec", "fields": {"nom_de_la_commune": "HUPARLAC", "libell_d_acheminement": "HUPARLAC", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12116"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a9b4cab24512fdda4d7069f2fc863f3cd17998", "fields": {"nom_de_la_commune": "ST JUIRE CHAMPGILLON", "libell_d_acheminement": "ST JUIRE CHAMPGILLON", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85235"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b2ead44eac38f4c9a9f07a1d439e3bc676ab6f", "fields": {"nom_de_la_commune": "ST PAUL EN PAREDS", "libell_d_acheminement": "ST PAUL EN PAREDS", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85259"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e835f680634abd284960e94f9d6f0b3cb646f6d9", "fields": {"nom_de_la_commune": "STE PEXINE", "libell_d_acheminement": "STE PEXINE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85261"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc145183cfbfd603f67c06fbbd2f7b724637e232", "fields": {"nom_de_la_commune": "ST URBAIN", "libell_d_acheminement": "ST URBAIN", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85273"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80705582db5ab8cfe45f3915c57cb4e0ea916a25", "fields": {"nom_de_la_commune": "ST VINCENT STERLANGES", "libell_d_acheminement": "ST VINCENT STERLANGES", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85276"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07378a1b1399ddd5a2a4ff6037697b569eafc0c8", "fields": {"nom_de_la_commune": "SALLERTAINE", "libell_d_acheminement": "SALLERTAINE", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85280"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbab6e0cc03fa8e6694f96898e7de95a2a7ca26e", "fields": {"nom_de_la_commune": "TALLUD STE GEMME", "libell_d_acheminement": "TALLUD STE GEMME", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85287"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f2ef8e44245a739140eb5c09026def01968a978", "fields": {"nom_de_la_commune": "THIRE", "libell_d_acheminement": "THIRE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85290"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672df6ddc0bc402ea63dabf8bed9bb8053c54a6e", "fields": {"nom_de_la_commune": "THOUARSAIS BOUILDROUX", "libell_d_acheminement": "THOUARSAIS BOUILDROUX", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85292"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fd5dc09de1eab2b8a21574f7796e383a556a62", "fields": {"nom_de_la_commune": "TIFFAUGES", "libell_d_acheminement": "TIFFAUGES", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85293"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d62918d365f130f3d403d62353c349845b4552", "fields": {"nom_de_la_commune": "VELLUIRE", "libell_d_acheminement": "VELLUIRE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85299"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1845946e9930de3a289b388a76e33494dd7b7f81", "fields": {"nom_de_la_commune": "LA VERRIE", "libell_d_acheminement": "LA VERRIE", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85302"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729a4956eb1ca96bcfc4c182a71acc5b2a490814", "fields": {"nom_de_la_commune": "VOUVANT", "libell_d_acheminement": "VOUVANT", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85305"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e06912f0fec76744d295091a89cee3b16344f73", "fields": {"nom_de_la_commune": "ARCAY", "libell_d_acheminement": "ARCAY", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86008"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ecb8e9dc98c8da4632ee1ba2e8b2a896074baf", "fields": {"nom_de_la_commune": "ASLONNES", "libell_d_acheminement": "ASLONNES", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86010"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389f29ee255945d6331b37e8678d4072f1e6a7cd", "fields": {"nom_de_la_commune": "ASNOIS", "libell_d_acheminement": "ASNOIS", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86012"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48dddfc288e4ca6bedfabee318e3ec4a14ad1228", "fields": {"nom_de_la_commune": "AULNAY", "libell_d_acheminement": "AULNAY", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86013"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9284b3f7a5c1f2632c0c13e17397fc0b88aa3a3", "fields": {"nom_de_la_commune": "AVAILLES EN CHATELLERAULT", "libell_d_acheminement": "AVAILLES EN CHATELLERAULT", "code_postal": "86530", "coordonnees_gps": [46.7647730786, 0.524858476534], "code_commune_insee": "86014"}, "geometry": {"type": "Point", "coordinates": [0.524858476534, 46.7647730786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d24a2444d18cbaaec7b16e007a0bf752e900310", "fields": {"nom_de_la_commune": "AVAILLES LIMOUZINE", "libell_d_acheminement": "AVAILLES LIMOUZINE", "code_postal": "86460", "coordonnees_gps": [46.1382827455, 0.581140891207], "code_commune_insee": "86015"}, "geometry": {"type": "Point", "coordinates": [0.581140891207, 46.1382827455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e7806bf992268e98e039e8da75a795412d62a2", "fields": {"nom_de_la_commune": "BELLEFONDS", "libell_d_acheminement": "BELLEFONDS", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86020"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92305febf6a628464c3b2ffc109ac01021692d63", "fields": {"nom_de_la_commune": "CELLE LEVESCAULT", "libell_d_acheminement": "CELLE LEVESCAULT", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86045"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344601426b427328f370ce80035ad6e985b8bbc5", "fields": {"nom_de_la_commune": "CHABOURNAY", "libell_d_acheminement": "CHABOURNAY", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86048"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e14e3e1e54803100c8e4dcb142d853b49071c9", "fields": {"nom_de_la_commune": "CHALANDRAY", "libell_d_acheminement": "CHALANDRAY", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86050"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65c557097e5df36caa00c3fb04f0f00a21737f3", "fields": {"nom_de_la_commune": "CHAMPNIERS", "libell_d_acheminement": "CHAMPNIERS", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86054"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6398e4444b4158331b5677b9830da49b71c5ff0c", "fields": {"nom_de_la_commune": "LA CHAPELLE BATON", "libell_d_acheminement": "LA CHAPELLE BATON", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86055"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a210f8eebac1df5979ffded592a4b26aef434b", "fields": {"nom_de_la_commune": "CHATEAU LARCHER", "libell_d_acheminement": "CHATEAU LARCHER", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86065"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492d8d7660847631ae3db6935dfe834e734318fb", "fields": {"code_postal": "86100", "code_commune_insee": "86066", "libell_d_acheminement": "CHATELLERAULT", "ligne_5": "TARGE", "nom_de_la_commune": "CHATELLERAULT", "coordonnees_gps": [46.825162468, 0.575853305257]}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faaa1892e0634b06687abc7772b9c6a7304cb5dd", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86067"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d82b6a22b9e040e26babea63704848b4da6060", "fields": {"nom_de_la_commune": "CISSE", "libell_d_acheminement": "CISSE", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86076"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4abd13cda3ebf2b9950ec63a081da9cd083bfbbb", "fields": {"nom_de_la_commune": "LA ROCHE RIGAULT", "libell_d_acheminement": "LA ROCHE RIGAULT", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86079"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcf82b22f5c1a8281afb955878be3afa105b410", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "86490", "coordonnees_gps": [46.761526271, 0.437525425166], "code_commune_insee": "86081"}, "geometry": {"type": "Point", "coordinates": [0.437525425166, 46.761526271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4aee43b7a5868c9504f2a72612c5b51556c72c", "fields": {"nom_de_la_commune": "COUSSAY", "libell_d_acheminement": "COUSSAY", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86085"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57dcc63f0125ac7d10ef47777d04f9ed4694f824", "fields": {"nom_de_la_commune": "CUHON", "libell_d_acheminement": "CUHON", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86089"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c8833f4d0cb87fd65500522e286e314958dfa9", "fields": {"nom_de_la_commune": "GENOUILLE", "libell_d_acheminement": "GENOUILLE", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86104"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996b985870cd177679f6b7d01f78e9b853b54b5f", "fields": {"code_postal": "86110", "code_commune_insee": "86108", "libell_d_acheminement": "LA GRIMAUDIERE", "ligne_5": "VERGER SUR DIVE", "nom_de_la_commune": "LA GRIMAUDIERE", "coordonnees_gps": [46.7882401034, 0.151168939144]}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb007eac6708892c43df5c0ba705c187410a5009", "fields": {"code_postal": "86330", "code_commune_insee": "86108", "libell_d_acheminement": "LA GRIMAUDIERE", "ligne_5": "NOTRE DAME D OR", "nom_de_la_commune": "LA GRIMAUDIERE", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474d53e58944d328aef6fc842e5ca5dc3a686875", "fields": {"nom_de_la_commune": "ITEUIL", "libell_d_acheminement": "ITEUIL", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86113"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935be368317a4c0dc2bc8847d9ba21b63f7013b1", "fields": {"nom_de_la_commune": "JARDRES", "libell_d_acheminement": "JARDRES", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86114"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee3a054d876cee67b920bee4435d64ef2dd95ab", "fields": {"nom_de_la_commune": "JAUNAY CLAN", "libell_d_acheminement": "JAUNAY CLAN", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86115"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0a32796bc387d1900d7451f369e46ca8f4e40f", "fields": {"nom_de_la_commune": "JOUSSE", "libell_d_acheminement": "JOUSSE", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86119"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81eeb11d2fa457e1543bf792ccd46415959c5573", "fields": {"nom_de_la_commune": "LATHUS ST REMY", "libell_d_acheminement": "LATHUS ST REMY", "code_postal": "86390", "coordonnees_gps": [46.3309224625, 0.955276450825], "code_commune_insee": "86120"}, "geometry": {"type": "Point", "coordinates": [0.955276450825, 46.3309224625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30e3635cb1d54d748bdafc85ea90dc792bfe0a6", "fields": {"nom_de_la_commune": "LEIGNE SUR USSEAU", "libell_d_acheminement": "LEIGNE SUR USSEAU", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86127"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942f379fd7cd33c0990743e68342b893d89fb2ab", "fields": {"nom_de_la_commune": "LEUGNY", "libell_d_acheminement": "LEUGNY", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86130"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa3e43398386308e8dc2311b70592c75938077d", "fields": {"nom_de_la_commune": "MAGNE", "libell_d_acheminement": "MAGNE", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86141"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe922441d01686f3be435f49db622869011ab3e7", "fields": {"nom_de_la_commune": "MAIRE", "libell_d_acheminement": "MAIRE", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86143"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "280eef38d60dc3e56f3a5e93806a4c214c8f65e8", "fields": {"nom_de_la_commune": "MAISONNEUVE", "libell_d_acheminement": "MAISONNEUVE", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86144"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebbd5d7a33ce91099fed40f4720860f9ca5c5c7", "fields": {"nom_de_la_commune": "MASSOGNES", "libell_d_acheminement": "MASSOGNES", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86150"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64f946cac13e1eda26ae480916f59210b0dbb0c", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86153"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff21c8e687b54980c32f2f965d48d502403c2639", "fields": {"nom_de_la_commune": "MAZEUIL", "libell_d_acheminement": "MAZEUIL", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86154"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0570d6cc9fd2b77507384fbabea7e3108e4a868", "fields": {"nom_de_la_commune": "MESSEME", "libell_d_acheminement": "MESSEME", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86156"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c94316e1eedd5d2a20eef777da5bd74f1bb811", "fields": {"nom_de_la_commune": "MILLAC", "libell_d_acheminement": "MILLAC", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86159"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25920acde4523f546326af54d40ffdeaf2e0d83b", "fields": {"nom_de_la_commune": "MONTREUIL BONNIN", "libell_d_acheminement": "MONTREUIL BONNIN", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86166"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10822eaa43cafbededff0dd8bc7f8c81d5ec1f13", "fields": {"nom_de_la_commune": "MOUTERRE SILLY", "libell_d_acheminement": "MOUTERRE SILLY", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86173"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a86f19ac0ffc3a22194771b276fde1854912f97", "fields": {"nom_de_la_commune": "NAINTRE", "libell_d_acheminement": "NAINTRE", "code_postal": "86530", "coordonnees_gps": [46.7647730786, 0.524858476534], "code_commune_insee": "86174"}, "geometry": {"type": "Point", "coordinates": [0.524858476534, 46.7647730786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f858b54965f8257d8c3467a9c488ccd9c3ee3b47", "fields": {"nom_de_la_commune": "NALLIERS", "libell_d_acheminement": "NALLIERS", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86175"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97610cf8a6feb535cafb5182c53575111c85d92", "fields": {"nom_de_la_commune": "ORCHES", "libell_d_acheminement": "ORCHES", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86182"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1efd0829533d7c56642db09ef9e7b22180b9a4", "fields": {"nom_de_la_commune": "OUZILLY", "libell_d_acheminement": "OUZILLY", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86184"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11c5765a6158003e83d069b93b1d14f9f44600f", "fields": {"nom_de_la_commune": "PAIZAY LE SEC", "libell_d_acheminement": "PAIZAY LE SEC", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86187"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed017f4348e853f3df4f2c64ae526983153eafd7", "fields": {"nom_de_la_commune": "PAYROUX", "libell_d_acheminement": "PAYROUX", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86189"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db842393cae8e915eb69687b49dd148e38f0fb22", "fields": {"nom_de_la_commune": "RANTON", "libell_d_acheminement": "RANTON", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86205"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0eff092bff4f7100980e691dd1af9cab1519bad", "fields": {"nom_de_la_commune": "ROCHES PREMARIE ANDILLE", "libell_d_acheminement": "ROCHES PREMARIE ANDILLE", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86209"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c549fdf06961198188f80bcb9f9fd743a9ec6b", "fields": {"nom_de_la_commune": "ROIFFE", "libell_d_acheminement": "ROIFFE", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86210"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb9051b1f16895b3385db20d6befdae3b95b6cd", "fields": {"nom_de_la_commune": "ROMAGNE", "libell_d_acheminement": "ROMAGNE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86211"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e5dd710dd837c2383fe708c41c9a68333c8d13", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "86280", "coordonnees_gps": [46.5484819543, 0.353353502502], "code_commune_insee": "86214"}, "geometry": {"type": "Point", "coordinates": [0.353353502502, 46.5484819543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9356d1ae6034f452f20cff95f65c2731ef2323", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86218"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b600dcf9c8f53735e9f3dadbdd2b43697cb6b4d", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86219"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e18e6283abd9bcd1ebbf6563e2cf219f27364e", "fields": {"nom_de_la_commune": "ST GAUDENT", "libell_d_acheminement": "ST GAUDENT", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86220"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152fa267075414cbcb3bf5ee11a7f32bd8c063be", "fields": {"nom_de_la_commune": "ST GEORGES LES BAILLARGEAUX", "libell_d_acheminement": "ST GEORGES LES BAILLARGEAUX", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86222"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086056a70b1c02eb1651f82a03b48f1d54c831f7", "fields": {"nom_de_la_commune": "ST JEAN DE SAUVES", "libell_d_acheminement": "ST JEAN DE SAUVES", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86225"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0326fb29cf5da992f982bd6d572ea917488a5c51", "fields": {"nom_de_la_commune": "ST PIERRE DE MAILLE", "libell_d_acheminement": "ST PIERRE DE MAILLE", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86236"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ee6516bb0324066f0957b425e5149d3c181658", "fields": {"nom_de_la_commune": "ST PIERRE D EXIDEUIL", "libell_d_acheminement": "ST PIERRE D EXIDEUIL", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86237"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742ab781ae17e85ba53c9f4924714162de4ee6f9", "fields": {"nom_de_la_commune": "SAMMARCOLLES", "libell_d_acheminement": "SAMMARCOLLES", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86252"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439ff51caa543fd9f92671f224fde345cbc35e7f", "fields": {"nom_de_la_commune": "USSON DU POITOU", "libell_d_acheminement": "USSON DU POITOU", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86276"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a426f4321e0ce0502baa383b875c54d66b8e4c4", "fields": {"nom_de_la_commune": "VELLECHES", "libell_d_acheminement": "VELLECHES", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86280"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510f895feead607f6e0e0cd39deb62b6c10f290d", "fields": {"nom_de_la_commune": "VOULON", "libell_d_acheminement": "VOULON", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86296"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791310938f8e1f00410f36ad990ab499dc654c44", "fields": {"nom_de_la_commune": "VOUNEUIL SOUS BIARD", "libell_d_acheminement": "VOUNEUIL SOUS BIARD", "code_postal": "86580", "coordonnees_gps": [46.580240949, 0.276027039382], "code_commune_insee": "86297"}, "geometry": {"type": "Point", "coordinates": [0.276027039382, 46.580240949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb15a54172cee4f1c6ef04ff63aeb0464f83efe", "fields": {"nom_de_la_commune": "VOUNEUIL SUR VIENNE", "libell_d_acheminement": "VOUNEUIL SUR VIENNE", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86298"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af845579837626876e4d7ece59c38f882fb47d8c", "fields": {"nom_de_la_commune": "AIXE SUR VIENNE", "libell_d_acheminement": "AIXE SUR VIENNE", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87001"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef6bc9b10ab39287cd8f1f099ec4b0cf9f72f1f", "fields": {"nom_de_la_commune": "AUGNE", "libell_d_acheminement": "AUGNE", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87004"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd2c34531ec91b80e97b8fb393826cb2444e8ec", "fields": {"nom_de_la_commune": "AZAT LE RIS", "libell_d_acheminement": "AZAT LE RIS", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87006"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ceb6af857b2b6540f73a03a5b56d44032b1d02", "fields": {"nom_de_la_commune": "BEYNAC", "libell_d_acheminement": "BEYNAC", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87015"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f6d11ad3cdd0035b989afcfbacab49442e674c", "fields": {"nom_de_la_commune": "BOSMIE L AIGUILLE", "libell_d_acheminement": "BOSMIE L AIGUILLE", "code_postal": "87110", "coordonnees_gps": [45.746684922, 1.26292425158], "code_commune_insee": "87021"}, "geometry": {"type": "Point", "coordinates": [1.26292425158, 45.746684922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20463262348986ea05c994d60b1251e30024b0d", "fields": {"nom_de_la_commune": "LE BUIS", "libell_d_acheminement": "LE BUIS", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87023"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46aabd52675e497c08a454d156072eb0b6737403", "fields": {"nom_de_la_commune": "BUJALEUF", "libell_d_acheminement": "BUJALEUF", "code_postal": "87460", "coordonnees_gps": [45.8082304662, 1.65843592046], "code_commune_insee": "87024"}, "geometry": {"type": "Point", "coordinates": [1.65843592046, 45.8082304662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5707d06d65486c84d26377bae4ee4113afb517d7", "fields": {"nom_de_la_commune": "LES CARS", "libell_d_acheminement": "LES CARS", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87029"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f527b11a211a5c1c07ece9c036f86d99133e69", "fields": {"nom_de_la_commune": "CHAMPSAC", "libell_d_acheminement": "CHAMPSAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87036"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58492c0199eb63f5d7d07f3742bfe87b365d2167", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTBRANDEIX", "libell_d_acheminement": "LA CHAPELLE MONTBRANDEIX", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87037"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda64bc69d6afea51b7a3c4482f5e9a22a9bf308", "fields": {"nom_de_la_commune": "LE CHATENET EN DOGNON", "libell_d_acheminement": "LE CHATENET EN DOGNON", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87042"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37e0557e46e8031bbf84bf7c5f5d7d64310f55f", "fields": {"nom_de_la_commune": "COMPREIGNAC", "libell_d_acheminement": "COMPREIGNAC", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87047"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36865e0e599d87fad7d40ca64e39f1447467cb3c", "fields": {"nom_de_la_commune": "LA CROIX SUR GARTEMPE", "libell_d_acheminement": "LA CROIX SUR GARTEMPE", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87052"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f20b85108e5b18451c629ebdb33d1e7374aba2", "fields": {"nom_de_la_commune": "DOMPS", "libell_d_acheminement": "DOMPS", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87058"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a25783767aae381125624eea2b335ece57d748", "fields": {"nom_de_la_commune": "LE DORAT", "libell_d_acheminement": "LE DORAT", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87059"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7be3bfde37a7407ca7d275291356d1f8f4e92b", "fields": {"nom_de_la_commune": "EYBOULEUF", "libell_d_acheminement": "EYBOULEUF", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87062"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c279813f142bbbe54f315e2cd1b715f9867126c", "fields": {"nom_de_la_commune": "EYJEAUX", "libell_d_acheminement": "EYJEAUX", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87063"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f5cef1a5cec125d9eaf108bdc091e282c815c6", "fields": {"nom_de_la_commune": "LADIGNAC LE LONG", "libell_d_acheminement": "LADIGNAC LE LONG", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87082"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ffa4635ce57a3a0da8c78943c36884726dd1b4", "fields": {"nom_de_la_commune": "LUSSAC LES EGLISES", "libell_d_acheminement": "LUSSAC LES EGLISES", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87087"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ebc85ecb3d3616fb9e0e3f7c4ac12acdb4079a", "fields": {"nom_de_la_commune": "MONTROL SENARD", "libell_d_acheminement": "MONTROL SENARD", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87100"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c864701d6809e850d6b1ea4849ceeb448f2beaa", "fields": {"nom_de_la_commune": "MORTEMART", "libell_d_acheminement": "MORTEMART", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87101"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693f7d4b82a78fa96331a27a8e5093f77caf88c2", "fields": {"nom_de_la_commune": "LE PALAIS SUR VIENNE", "libell_d_acheminement": "LE PALAIS SUR VIENNE", "code_postal": "87410", "coordonnees_gps": [45.8735475592, 1.3247561842], "code_commune_insee": "87113"}, "geometry": {"type": "Point", "coordinates": [1.3247561842, 45.8735475592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe6da2c509328ae45e879f15dd051b8e4b36108", "fields": {"nom_de_la_commune": "PANAZOL", "libell_d_acheminement": "PANAZOL", "code_postal": "87350", "coordonnees_gps": [45.8410585352, 1.32364784585], "code_commune_insee": "87114"}, "geometry": {"type": "Point", "coordinates": [1.32364784585, 45.8410585352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd565fb47310b54ddb0a221ee06b1061694e5f89", "fields": {"code_postal": "61570", "code_commune_insee": "61375", "libell_d_acheminement": "BOISCHAMPRE", "ligne_5": "VRIGNY", "nom_de_la_commune": "BOISCHAMPRE", "coordonnees_gps": [48.6574688891, 0.0273677647898]}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c3eb21fec7be7f8754a442c85fc47b24de0503e", "fields": {"nom_de_la_commune": "ST DENIS SUR SARTHON", "libell_d_acheminement": "ST DENIS SUR SARTHON", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61382"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110eab863dfab8197c746b5689fe245c07bb20d6", "fields": {"nom_de_la_commune": "ST GEORGES DES GROSEILLERS", "libell_d_acheminement": "ST GEORGES DES GROSEILLERS", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61391"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0bd065847b146b785ca2f7f98edd1ef42ec11b", "fields": {"nom_de_la_commune": "ST HILAIRE LA GERARD", "libell_d_acheminement": "ST HILAIRE LA GERARD", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61403"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f1494cec2551256632ade07f24a98ef7ecd5b4", "fields": {"nom_de_la_commune": "ST HILAIRE LE CHATEL", "libell_d_acheminement": "ST HILAIRE LE CHATEL", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61404"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244e86d42d3f6a9e3138bf835c147125d38268c9", "fields": {"nom_de_la_commune": "STE HONORINE LA GUILLAUME", "libell_d_acheminement": "STE HONORINE LA GUILLAUME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61408"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e63597c9f257357d8ac342b79c192c6e779ad4c", "fields": {"nom_de_la_commune": "ST MARS D EGRENNE", "libell_d_acheminement": "ST MARS D EGRENNE", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61421"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f640ad53680ebefc184943ea61b9bdb918fa9b", "fields": {"nom_de_la_commune": "ST MARTIN DU VIEUX BELLEME", "libell_d_acheminement": "ST MARTIN DU VIEUX BELLEME", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61426"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa049422084299d191d1527cd625361cccac47ca", "fields": {"nom_de_la_commune": "STE OPPORTUNE", "libell_d_acheminement": "STE OPPORTUNE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61436"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa83c11e841dd7cb790a2f01d12619e31962c43", "fields": {"nom_de_la_commune": "ST OUEN DE SECHEROUVRE", "libell_d_acheminement": "ST OUEN DE SECHEROUVRE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61438"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6ac207ba9a048e83453da069d88bebce2feac6", "fields": {"nom_de_la_commune": "ST OUEN SUR ITON", "libell_d_acheminement": "ST OUEN SUR ITON", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61440"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f18420e4a84a9e3ea2724b70b6734e12dd79338", "fields": {"nom_de_la_commune": "ST PIERRE D ENTREMONT", "libell_d_acheminement": "ST PIERRE D ENTREMONT", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61445"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c122b2cad7baa0abe264d96f78b74d9a275bb6", "fields": {"nom_de_la_commune": "ST PIERRE DU REGARD", "libell_d_acheminement": "ST PIERRE DU REGARD", "code_postal": "61790", "coordonnees_gps": [48.8337910977, -0.541339755548], "code_commune_insee": "61447"}, "geometry": {"type": "Point", "coordinates": [-0.541339755548, 48.8337910977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c129f66135380b1fbea0cc2154b1e5051b47aff", "fields": {"nom_de_la_commune": "STE SCOLASSE SUR SARTHE", "libell_d_acheminement": "STE SCOLASSE SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61454"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5999a6ad9088ea77639ffd8515e52792acd0339", "fields": {"nom_de_la_commune": "SAIRES LA VERRERIE", "libell_d_acheminement": "SAIRES LA VERRERIE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61459"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6631e3988f943646f02a843263b8d2d443f7b8e", "fields": {"code_postal": "61600", "code_commune_insee": "61463", "libell_d_acheminement": "LES MONTS D ANDAINE", "ligne_5": "ST MAURICE DU DESERT", "nom_de_la_commune": "LES MONTS D ANDAINE", "coordonnees_gps": [48.5956941307, -0.336692342986]}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dbe43e48e92ea127aeb8b77aa7283d30ee20e5", "fields": {"nom_de_la_commune": "SEVRAI", "libell_d_acheminement": "SEVRAI", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61473"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2055485dab53060e737ffbb6d901d35b76fa4da0", "fields": {"nom_de_la_commune": "SOLIGNY LA TRAPPE", "libell_d_acheminement": "SOLIGNY LA TRAPPE", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61475"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85bdcaaed8eb30c405335f0d41b29009784ad6a0", "fields": {"nom_de_la_commune": "TANVILLE", "libell_d_acheminement": "TANVILLE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61480"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd6dfce20211bab6b972270ded8cf7ebdec60e5", "fields": {"nom_de_la_commune": "TESSE FROULAY", "libell_d_acheminement": "TESSE FROULAY", "code_postal": "61410", "coordonnees_gps": [48.5523953273, -0.396121387013], "code_commune_insee": "61482"}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a60da1e420a7365cc17b304ab9f487944cef0eb", "fields": {"code_postal": "61130", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "GEMAGES", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.3285954203, 0.552655257465]}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940f30d7081d2a42642196f755cbda209775bff4", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "LARCHAMP", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ba33aa9606b38ae774e6a8562b078359148339", "fields": {"nom_de_la_commune": "TORCHAMP", "libell_d_acheminement": "TORCHAMP", "code_postal": "61330", "coordonnees_gps": [48.5202783735, -0.60354646707], "code_commune_insee": "61487"}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ad9a8fba287e0fb56f271e72d5b5a21a6dcf3a", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "AUTHEUIL", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3e7a3c80abd1b0878eb969ba47dfe12f7f488d", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "BIVILLIERS", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900c11f5d6bd5f178e1f0987b94c7c6110218319", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "LIGNEROLLES", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b804011a6ebfc96dc140dccb29372ac562d8f178", "fields": {"nom_de_la_commune": "LA TRINITE DES LAITIERS", "libell_d_acheminement": "LA TRINITE DES LAITIERS", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61493"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91c02a358a41430f9a190f16bc17f416dd439f7", "fields": {"nom_de_la_commune": "VALFRAMBERT", "libell_d_acheminement": "VALFRAMBERT", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61497"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "463b017e6ef18807d5e06fa6ac2d152aba81065a", "fields": {"nom_de_la_commune": "AFFRINGUES", "libell_d_acheminement": "AFFRINGUES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62010"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a3ba2b5dbade3010eca7262eb5274d3b504962", "fields": {"nom_de_la_commune": "AGNIERES", "libell_d_acheminement": "AGNIERES", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62012"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4aa8752e5e23c71d6277de40583fbed7e7d8e7", "fields": {"nom_de_la_commune": "AGNY", "libell_d_acheminement": "AGNY", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62013"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e9e50532f0fb60ba0a2bc65678820bfe3df36d", "fields": {"nom_de_la_commune": "AIRON NOTRE DAME", "libell_d_acheminement": "AIRON NOTRE DAME", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62015"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29f40da79df0e31dd910a5cd7188fa301aafb53", "fields": {"nom_de_la_commune": "AIX NOULETTE", "libell_d_acheminement": "AIX NOULETTE", "code_postal": "62160", "coordonnees_gps": [50.434305501, 2.71988094941], "code_commune_insee": "62019"}, "geometry": {"type": "Point", "coordinates": [2.71988094941, 50.434305501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c5e258e8bb6a73a2bfdcf101f2543f51bad4fa", "fields": {"nom_de_la_commune": "AMES", "libell_d_acheminement": "AMES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62028"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84bedeaa9f205d3fcbe1a148ebc0b78d0f93539", "fields": {"nom_de_la_commune": "ANDRES", "libell_d_acheminement": "ANDRES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62031"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f28a44f1dba3ebfc1e98f83f66b97ed3c9cea820", "fields": {"nom_de_la_commune": "ARDRES", "libell_d_acheminement": "ARDRES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62038"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94da5020000f8a501d8a54733fdd4153c5f464f6", "fields": {"code_postal": "62610", "code_commune_insee": "62038", "libell_d_acheminement": "ARDRES", "ligne_5": "PONT D ARDRES", "nom_de_la_commune": "ARDRES", "coordonnees_gps": [50.8468659582, 1.97558955191]}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ddb1f2237666086bd23993cc70e05e29215bf6", "fields": {"nom_de_la_commune": "ARRAS", "libell_d_acheminement": "ARRAS", "code_postal": "62000", "coordonnees_gps": [50.2836206213, 2.74077726899], "code_commune_insee": "62041"}, "geometry": {"type": "Point", "coordinates": [2.74077726899, 50.2836206213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eefb73c349699ed22881e7f03fc1eace5591290b", "fields": {"nom_de_la_commune": "LES ATTAQUES", "libell_d_acheminement": "LES ATTAQUES", "code_postal": "62730", "coordonnees_gps": [50.9324891449, 1.94466017116], "code_commune_insee": "62043"}, "geometry": {"type": "Point", "coordinates": [1.94466017116, 50.9324891449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7e2abdb3bd1a66acf89203ed1fbcc2f6e81c4f", "fields": {"nom_de_la_commune": "ATTIN", "libell_d_acheminement": "ATTIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62044"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc04f1643b6f2146b93da4ea262d0157c13fd8a2", "fields": {"nom_de_la_commune": "AUCHY LES MINES", "libell_d_acheminement": "AUCHY LES MINES", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62051"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f535ae0ff3224e04cbfffee0b4f6318c0326ffa8", "fields": {"nom_de_la_commune": "AUDINGHEN", "libell_d_acheminement": "AUDINGHEN", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62054"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eab4deb4f94acf40c695a143dba56bc09d98241", "fields": {"nom_de_la_commune": "AUDRESSELLES", "libell_d_acheminement": "AUDRESSELLES", "code_postal": "62164", "coordonnees_gps": [50.8206720031, 1.61493156182], "code_commune_insee": "62056"}, "geometry": {"type": "Point", "coordinates": [1.61493156182, 50.8206720031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d0fa0e24a6a4cfa4e78ab9586717c31e9ec8c3", "fields": {"nom_de_la_commune": "AVION", "libell_d_acheminement": "AVION", "code_postal": "62210", "coordonnees_gps": [50.4040022162, 2.8267043766], "code_commune_insee": "62065"}, "geometry": {"type": "Point", "coordinates": [2.8267043766, 50.4040022162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c9461bc35fc6de2fbd77b53ede9aa53d345469", "fields": {"nom_de_la_commune": "AVROULT", "libell_d_acheminement": "AVROULT", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62067"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38233d52ab7a098244ac21ae00255249419139b9", "fields": {"nom_de_la_commune": "BAILLEULVAL", "libell_d_acheminement": "BAILLEULVAL", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62074"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddad6fa64b1695dd92f458a46f5af1ca5b864db", "fields": {"nom_de_la_commune": "BAINCTHUN", "libell_d_acheminement": "BAINCTHUN", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62075"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6b36ddd824f495a96204b84b30224359760e78", "fields": {"nom_de_la_commune": "BAJUS", "libell_d_acheminement": "BAJUS", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62077"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23c7368c9df2eec7343a8d5f7ae8ac5bedcd075", "fields": {"nom_de_la_commune": "BALINGHEM", "libell_d_acheminement": "BALINGHEM", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62078"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feab3dc0d6b8382d12b4da3d6ea6101c57b77d89", "fields": {"nom_de_la_commune": "BAVINCOURT", "libell_d_acheminement": "BAVINCOURT", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62086"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9227bc6ab48bbee481f63cf99c544cd6ba22b6", "fields": {"nom_de_la_commune": "BEAUDRICOURT", "libell_d_acheminement": "BEAUDRICOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62091"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34768b8791e828065b57412be9760e7705520a0", "fields": {"nom_de_la_commune": "BEAUMERIE ST MARTIN", "libell_d_acheminement": "BEAUMERIE ST MARTIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62094"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7e24b1799a8bd47a90e093c87256e289620cb6", "fields": {"nom_de_la_commune": "BELLONNE", "libell_d_acheminement": "BELLONNE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62106"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b899ddbdae57d03b07768944852702bcd715edc4", "fields": {"nom_de_la_commune": "BERNEVILLE", "libell_d_acheminement": "BERNEVILLE", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62115"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90e30144469bbe77a790de74da82a4cc4835823", "fields": {"nom_de_la_commune": "BLENDECQUES", "libell_d_acheminement": "BLENDECQUES", "code_postal": "62575", "coordonnees_gps": [50.7082994019, 2.28233236739], "code_commune_insee": "62139"}, "geometry": {"type": "Point", "coordinates": [2.28233236739, 50.7082994019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ceaf6a029ccd0c70e2e04b0a6f44e0aba75a5c", "fields": {"nom_de_la_commune": "BLEQUIN", "libell_d_acheminement": "BLEQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62140"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1384ace5c887c97f05a2a8f98eebeab9fa4dfb4", "fields": {"nom_de_la_commune": "BOIS BERNARD", "libell_d_acheminement": "BOIS BERNARD", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62148"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427fe768bdf2cc1602b453dfa29eea004365ec36", "fields": {"nom_de_la_commune": "BOISJEAN", "libell_d_acheminement": "BOISJEAN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62150"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4604ff3c065b21a17f07e99fa6f735d41598a56", "fields": {"nom_de_la_commune": "BOISLEUX ST MARC", "libell_d_acheminement": "BOISLEUX ST MARC", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62152"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b647e61a1da0289054632e3ed12b9ffdcfcba165", "fields": {"nom_de_la_commune": "BONNINGUES LES CALAIS", "libell_d_acheminement": "BONNINGUES LES CALAIS", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62156"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a51d68631aa9677629bd6a3091de8df1e09686f5", "fields": {"nom_de_la_commune": "BOUQUEHAULT", "libell_d_acheminement": "BOUQUEHAULT", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62161"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a76bc17158d31cbb467abac44e08ac4aaa13017", "fields": {"nom_de_la_commune": "CALONNE SUR LA LYS", "libell_d_acheminement": "CALONNE SUR LA LYS", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62195"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d322010770599c42ff8d66b670b2879482c935", "fields": {"nom_de_la_commune": "CAMPAGNE LES BOULONNAIS", "libell_d_acheminement": "CAMPAGNE LES BOULONNAIS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62202"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e36af440fef775a52de55ab5bcb28f9e61b853", "fields": {"nom_de_la_commune": "CAMPIGNEULLES LES PETITES", "libell_d_acheminement": "CAMPIGNEULLES LES PETITES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62207"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5590cd8887d3bf48ceaece3a08282043224140", "fields": {"nom_de_la_commune": "CANLERS", "libell_d_acheminement": "CANLERS", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62209"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa7615340acf85afa3b43e3cc4e5f20bf3df570", "fields": {"nom_de_la_commune": "CAPELLE FERMONT", "libell_d_acheminement": "CAPELLE FERMONT", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62211"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63881f887b2dc44eb619ecc47bbab8c3d31966c", "fields": {"nom_de_la_commune": "CAPELLE LES HESDIN", "libell_d_acheminement": "CAPELLE LES HESDIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62212"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e3757057603577c93d4115959c2fe2899e68be", "fields": {"nom_de_la_commune": "CAUCOURT", "libell_d_acheminement": "CAUCOURT", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62218"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1d41a7a03005e0aa3748c597fd0d3e7cd4181c", "fields": {"nom_de_la_commune": "CHOCQUES", "libell_d_acheminement": "CHOCQUES", "code_postal": "62920", "coordonnees_gps": [50.5563250564, 2.56747944823], "code_commune_insee": "62224"}, "geometry": {"type": "Point", "coordinates": [2.56747944823, 50.5563250564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8f9aa3fa82ad5ded1144d507493142224c80b4", "fields": {"nom_de_la_commune": "CONCHIL LE TEMPLE", "libell_d_acheminement": "CONCHIL LE TEMPLE", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62233"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60418478d29972fc2d577a480726092f68b7b78", "fields": {"nom_de_la_commune": "CORMONT", "libell_d_acheminement": "CORMONT", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62241"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd87d0251661fe5f016c884571afb685a5b73e5", "fields": {"nom_de_la_commune": "LA COUTURE", "libell_d_acheminement": "LA COUTURE", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62252"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c42db66eafa8ff06d8ee0c9b750f7d4d5ff27eb", "fields": {"nom_de_la_commune": "COUTURELLE", "libell_d_acheminement": "COUTURELLE", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62253"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2bb3291f7f36095ad0eb35c3f8d6faaa39e04b2", "fields": {"nom_de_la_commune": "CUINCHY", "libell_d_acheminement": "CUINCHY", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62262"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93cbb935936b2c2e1208e60d9defbebaedd3830d", "fields": {"nom_de_la_commune": "DAINVILLE", "libell_d_acheminement": "DAINVILLE", "code_postal": "62000", "coordonnees_gps": [50.2836206213, 2.74077726899], "code_commune_insee": "62263"}, "geometry": {"type": "Point", "coordinates": [2.74077726899, 50.2836206213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c11bc5ce6267a9cc8719eff88d90a679fe2fec", "fields": {"nom_de_la_commune": "DESVRES", "libell_d_acheminement": "DESVRES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62268"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f550ca10a472eb50f90b6a7ae7fa8124defb4dae", "fields": {"nom_de_la_commune": "ECOUST ST MEIN", "libell_d_acheminement": "ECOUST ST MEIN", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62285"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfba238e3d5de9397edf350b8f332c4810e524b", "fields": {"nom_de_la_commune": "ECUIRES", "libell_d_acheminement": "ECUIRES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62289"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466e71707c49709b51cdbfd8a4961cb29af958c3", "fields": {"nom_de_la_commune": "ELEU DIT LEAUWETTE", "libell_d_acheminement": "ELEU DIT LEAUWETTE", "code_postal": "62300", "coordonnees_gps": [50.435564897, 2.82028472263], "code_commune_insee": "62291"}, "geometry": {"type": "Point", "coordinates": [2.82028472263, 50.435564897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8a9f74332e73ddaff3e405088e926d6047175a", "fields": {"nom_de_la_commune": "ENQUIN LES MINES", "libell_d_acheminement": "ENQUIN LES MINES", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62295"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4310d50936896baadf1a72b22fc86ef2be5d34f6", "fields": {"nom_de_la_commune": "EPINOY", "libell_d_acheminement": "EPINOY", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62298"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb637f4ed19a53350dd64e93146c0804e1fd0cb", "fields": {"nom_de_la_commune": "EPS", "libell_d_acheminement": "EPS", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62299"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93514d02e8b470973da37a1b99cd0da96c532e36", "fields": {"nom_de_la_commune": "ERGNY", "libell_d_acheminement": "ERGNY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62302"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86651f9790b17fa8766bcda88223dce835fc4ad5", "fields": {"nom_de_la_commune": "ERNY ST JULIEN", "libell_d_acheminement": "ERNY ST JULIEN", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62304"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79556504bef4f7841061ac6a86c50d1442b62bd8", "fields": {"nom_de_la_commune": "ESCALLES", "libell_d_acheminement": "ESCALLES", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62307"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad3b4d1a3a92210e81ebbf7a27077253314a75d", "fields": {"nom_de_la_commune": "ESTREE BLANCHE", "libell_d_acheminement": "ESTREE BLANCHE", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62313"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f73bd0e9a09460f9cb003042fd35341fe88935", "fields": {"nom_de_la_commune": "ESTREE CAUCHY", "libell_d_acheminement": "ESTREE CAUCHY", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62314"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b728bfb40e9ee4cfcbf2bfbb51e5981d734a7ff", "fields": {"nom_de_la_commune": "ETAING", "libell_d_acheminement": "ETAING", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62317"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bfbe05cf6ca672d1453f4053fb2d69e32284b72", "fields": {"nom_de_la_commune": "ETAPLES", "libell_d_acheminement": "ETAPLES", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62318"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a8888413566ea113f12377665f46a1c73abc2a", "fields": {"nom_de_la_commune": "ETERPIGNY", "libell_d_acheminement": "ETERPIGNY", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62319"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b52fa31105e0bf9b065c7d061f44ddd57574b87", "fields": {"nom_de_la_commune": "FERFAY", "libell_d_acheminement": "FERFAY", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62328"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a1d0da71f54057b4d599ad998b4e1bf61343fd", "fields": {"nom_de_la_commune": "FEUCHY", "libell_d_acheminement": "FEUCHY", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62331"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2510522afd1dd609ce7ac0a5d71f81840b141443", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62339"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9df948f2eb9e3e0e9e1ee329dc1472f020e7a9", "fields": {"nom_de_la_commune": "FONTAINE LES HERMANS", "libell_d_acheminement": "FONTAINE LES HERMANS", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62344"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95608152835eb12c406c3849e3ad02527b48cd8f", "fields": {"nom_de_la_commune": "FORTEL EN ARTOIS", "libell_d_acheminement": "FORTEL EN ARTOIS", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62346"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a89836a170cf68384fe10992f4f42028825c40d", "fields": {"nom_de_la_commune": "FREMICOURT", "libell_d_acheminement": "FREMICOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62353"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64849081c2083f13ffe51d496ffb2420ca86fa71", "fields": {"nom_de_la_commune": "FRENCQ", "libell_d_acheminement": "FRENCQ", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62354"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba2a93d060cf1e7a8e0b8c504359a2e8b3791cf", "fields": {"nom_de_la_commune": "FRESNICOURT LE DOLMEN", "libell_d_acheminement": "FRESNICOURT LE DOLMEN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62356"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea5e0fca3f15a3d69edf23d92c9b5c18d22990c", "fields": {"nom_de_la_commune": "FRESNOY", "libell_d_acheminement": "FRESNOY", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62357"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bf39719be29d0808f3cf01ec2e4d4cb6b6b3f5", "fields": {"nom_de_la_commune": "FRUGES", "libell_d_acheminement": "FRUGES", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62364"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6768a649dbad28afc008e6e777069f7192534b", "fields": {"nom_de_la_commune": "FOLIES", "libell_d_acheminement": "FOLIES", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80320"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60979ea2047beac689b319d271d39ba68e07fbe", "fields": {"nom_de_la_commune": "FORCEVILLE EN VIMEU", "libell_d_acheminement": "FORCEVILLE EN VIMEU", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80330"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6159ca7163916bea226e649bf43a098e026def62", "fields": {"nom_de_la_commune": "FOUCAUCOURT EN SANTERRE", "libell_d_acheminement": "FOUCAUCOURT EN SANTERRE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80335"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0397d337ee0522cbb102ffdd0c605b94241e407", "fields": {"nom_de_la_commune": "FOUCAUCOURT HORS NESLE", "libell_d_acheminement": "FOUCAUCOURT HORS NESLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80336"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829c8e7cb3ca73723438cac9e137955afa9fc315", "fields": {"nom_de_la_commune": "FRANVILLERS", "libell_d_acheminement": "FRANVILLERS", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80350"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e09ef63ffb948f88c270db7d683a58429ec6ea", "fields": {"nom_de_la_commune": "FREMONTIERS", "libell_d_acheminement": "FREMONTIERS", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80352"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c67d0a9967135802ecc53a4fe1fcc303eed49fa", "fields": {"code_postal": "80370", "code_commune_insee": "80369", "libell_d_acheminement": "FROHEN SUR AUTHIE", "ligne_5": "FROHEN LE PETIT", "nom_de_la_commune": "FROHEN SUR AUTHIE", "coordonnees_gps": [50.1625147057, 2.13483617177]}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e360dee1fdd3dd2e40d0ceda542de36e9ebbf242", "fields": {"nom_de_la_commune": "GOYENCOURT", "libell_d_acheminement": "GOYENCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80383"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5bb5f46729529a083b8659bc2bdd705756273f", "fields": {"nom_de_la_commune": "GRIVILLERS", "libell_d_acheminement": "GRIVILLERS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80391"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556e3d34ffa9974a5a453785bdbf7bcde5f969bf", "fields": {"nom_de_la_commune": "GUYENCOURT SUR NOYE", "libell_d_acheminement": "GUYENCOURT SUR NOYE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80403"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff445baffda81d01db366c0b17a46e4b6230b540", "fields": {"nom_de_la_commune": "GUYENCOURT SAULCOURT", "libell_d_acheminement": "GUYENCOURT SAULCOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80404"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7adbd9af86e7c3d43de640ca6e1ff422156bf960", "fields": {"nom_de_la_commune": "HAILLES", "libell_d_acheminement": "HAILLES", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80405"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dcd3cdd334b2339cc24ef0962ceb5533807fe2b", "fields": {"code_postal": "80490", "code_commune_insee": "80406", "libell_d_acheminement": "HALLENCOURT", "ligne_5": "HOCQUINCOURT", "nom_de_la_commune": "HALLENCOURT", "coordonnees_gps": [50.003393471, 1.8509393607]}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdfe06ee7213357a3511949442e06cb3da68e38", "fields": {"code_postal": "80490", "code_commune_insee": "80406", "libell_d_acheminement": "HALLENCOURT", "ligne_5": "WANEL", "nom_de_la_commune": "HALLENCOURT", "coordonnees_gps": [50.003393471, 1.8509393607]}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c72334535ab728f0e9aac57c63366f44258238f5", "fields": {"nom_de_la_commune": "HAMELET", "libell_d_acheminement": "HAMELET", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80412"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32e4f8d77a62d9f3802f35b04d97e0acf8e81702", "fields": {"nom_de_la_commune": "HANGEST EN SANTERRE", "libell_d_acheminement": "HANGEST EN SANTERRE", "code_postal": "80134", "coordonnees_gps": [49.7517203901, 2.60164856889], "code_commune_insee": "80415"}, "geometry": {"type": "Point", "coordinates": [2.60164856889, 49.7517203901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863989a179b622959fb9533e4535b4d9cffad693", "fields": {"nom_de_la_commune": "HANGEST SUR SOMME", "libell_d_acheminement": "HANGEST SUR SOMME", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80416"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bfa20d933cb66905711833a29f054acc4ea870", "fields": {"nom_de_la_commune": "HATTENCOURT", "libell_d_acheminement": "HATTENCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80421"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d42856951ef9ccb20cd2754339bf4be33acc12e", "fields": {"nom_de_la_commune": "HAUTVILLERS OUVILLE", "libell_d_acheminement": "HAUTVILLERS OUVILLE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80422"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9042c57e2d25cd360b9e24d5dd2917a71ce1c9e1", "fields": {"nom_de_la_commune": "HEDAUVILLE", "libell_d_acheminement": "HEDAUVILLE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80425"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a10b242ab1f0f81fe017e66823af22d5fc3835", "fields": {"nom_de_la_commune": "HEUZECOURT", "libell_d_acheminement": "HEUZECOURT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80439"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b965d6e8a5015df19f9df4cc1528cfed3b443c4e", "fields": {"nom_de_la_commune": "HIERMONT", "libell_d_acheminement": "HIERMONT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80440"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41250026cfe515f7881a5b3a3f41d5258ab039b", "fields": {"nom_de_la_commune": "HOMBLEUX", "libell_d_acheminement": "HOMBLEUX", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80442"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a378009c9986653e4d6da73abfd429d331f4938a", "fields": {"code_postal": "80430", "code_commune_insee": "80456", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "ligne_5": "MONTMARQUET", "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477480f0218cc3572fe9d372b1a48500c2143087", "fields": {"nom_de_la_commune": "LAHOUSSOYE", "libell_d_acheminement": "LAHOUSSOYE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80458"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78303ba1fe17371eb00b8632c57fd47bb3a6ec57", "fields": {"nom_de_la_commune": "LAMOTTE BREBIERE", "libell_d_acheminement": "LAMOTTE BREBIERE", "code_postal": "80450", "coordonnees_gps": [49.8997826029, 2.37137484278], "code_commune_insee": "80461"}, "geometry": {"type": "Point", "coordinates": [2.37137484278, 49.8997826029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b527b1e0924ae55c377010d83ae2eaedfc4fd7b", "fields": {"nom_de_la_commune": "LIGNIERES CHATELAIN", "libell_d_acheminement": "LIGNIERES CHATELAIN", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80479"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0647f5f81cddfb93e82850a46d8484df1be6117", "fields": {"nom_de_la_commune": "LIGNIERES EN VIMEU", "libell_d_acheminement": "LIGNIERES EN VIMEU", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80480"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100f7cb33da44842b4fa766f64ca42ca6ea8e8bc", "fields": {"nom_de_la_commune": "LIHONS", "libell_d_acheminement": "LIHONS", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80481"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "052205a7975f0ade84eaf031f0770f32a9effe7f", "fields": {"nom_de_la_commune": "LIMEUX", "libell_d_acheminement": "LIMEUX", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80482"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c178e46e01546e53d0652310a819f94a472291c0", "fields": {"nom_de_la_commune": "LIOMER", "libell_d_acheminement": "LIOMER", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80484"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328ef7587d1f50f10baa73d8bf216325bfc4affb", "fields": {"nom_de_la_commune": "LONGAVESNES", "libell_d_acheminement": "LONGAVESNES", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80487"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a229758e7b910b15402c0209eaf9beacc322ed37", "fields": {"nom_de_la_commune": "LONGUEVILLETTE", "libell_d_acheminement": "LONGUEVILLETTE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80491"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37c3aa2a82470a02ddc8f41a64e3c2c0b7254dcb", "fields": {"nom_de_la_commune": "MAISNIERES", "libell_d_acheminement": "MAISNIERES", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80500"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf4612062750cb383436471f62e7c651cd17dee", "fields": {"nom_de_la_commune": "MAISON ROLAND", "libell_d_acheminement": "MAISON ROLAND", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80502"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07fd6df2bac0edc88e066b673ec36c098cd3644", "fields": {"nom_de_la_commune": "MALPART", "libell_d_acheminement": "MALPART", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80504"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3dfb5db8c5c56fe8dd6d904d2500aa23f277cfc", "fields": {"nom_de_la_commune": "MARQUAIX", "libell_d_acheminement": "MARQUAIX", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80516"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756d36233cc006457760a9734f7e6b05b240ca2f", "fields": {"nom_de_la_commune": "LE MEILLARD", "libell_d_acheminement": "LE MEILLARD", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80526"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1388542e1b991ee6080fdf7c8be9b0abfefc521", "fields": {"nom_de_la_commune": "MEREAUCOURT", "libell_d_acheminement": "MEREAUCOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80528"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3032bc9563a8648811519cf6376762546d28e5bf", "fields": {"nom_de_la_commune": "MESNIL DOMQUEUR", "libell_d_acheminement": "MESNIL DOMQUEUR", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80537"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545d5b36303e358a3deb9a714ab4fac96e229737", "fields": {"nom_de_la_commune": "MESNIL ST NICAISE", "libell_d_acheminement": "MESNIL ST NICAISE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80542"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883d7291b9e92f03c4b658c95aabdf9ea20a9035", "fields": {"nom_de_la_commune": "METIGNY", "libell_d_acheminement": "METIGNY", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80543"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305880567c3925fc31b7d120f52e4374aafceb60", "fields": {"nom_de_la_commune": "MEZIERES EN SANTERRE", "libell_d_acheminement": "MEZIERES EN SANTERRE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80545"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef62a33fd7833ecf00e871aabc2b262dc13fe9db", "fields": {"nom_de_la_commune": "MIANNAY", "libell_d_acheminement": "MIANNAY", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80546"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da586022a249639963d3ce25ab7b386ec29125d", "fields": {"nom_de_la_commune": "MILLENCOURT", "libell_d_acheminement": "MILLENCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80547"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a23a6f363e9b1c4c87e1227a45f86b06407426", "fields": {"nom_de_la_commune": "MIRVAUX", "libell_d_acheminement": "MIRVAUX", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80550"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfe31bc0bcf486bd16c9c6aa1bceafbcf8f7ea7", "fields": {"nom_de_la_commune": "MISERY", "libell_d_acheminement": "MISERY", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80551"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c01a5664030eb110948935c24f2939e6ad3a9cc", "fields": {"nom_de_la_commune": "MOISLAINS", "libell_d_acheminement": "MOISLAINS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80552"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b1fafc1440ff89949a4e56a72865e9f300b5f8", "fields": {"nom_de_la_commune": "ESTREES MONS", "libell_d_acheminement": "ESTREES MONS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80557"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c851b2d4d423b4882640efa18485e2e70c50a777", "fields": {"nom_de_la_commune": "MONTONVILLERS", "libell_d_acheminement": "MONTONVILLERS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80565"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5159578481ed802a37afbd14e019c5051bd14fa2", "fields": {"nom_de_la_commune": "MORCHAIN", "libell_d_acheminement": "MORCHAIN", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80568"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5a207df44c910caf35d25b82ecb4a1a8e8dd16", "fields": {"nom_de_la_commune": "MORLANCOURT", "libell_d_acheminement": "MORLANCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80572"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d79f1eeac4d76c36f8e4b9a9fe9fa967b4b62c", "fields": {"nom_de_la_commune": "MOYENNEVILLE", "libell_d_acheminement": "MOYENNEVILLE", "code_postal": "80870", "coordonnees_gps": [50.0653042148, 1.7446378135], "code_commune_insee": "80578"}, "geometry": {"type": "Point", "coordinates": [1.7446378135, 50.0653042148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734e1e0b000ab072fc0cb9a3e689107bef26f0df", "fields": {"nom_de_la_commune": "NEUFMOULIN", "libell_d_acheminement": "NEUFMOULIN", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80588"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e981dc10d598ffaae2aeeff176bc2708fcf466", "fields": {"nom_de_la_commune": "NEUILLY LE DIEN", "libell_d_acheminement": "NEUILLY LE DIEN", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80589"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edd6656046b70c04ec096e59e1ea07c02f12d6e", "fields": {"nom_de_la_commune": "LA NEUVILLE LES BRAY", "libell_d_acheminement": "LA NEUVILLE LES BRAY", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80593"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189bd60d32ed89749478488d6f96653294d59b6a", "fields": {"nom_de_la_commune": "OCHANCOURT", "libell_d_acheminement": "OCHANCOURT", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80603"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21297b1b42a3db728362a555c0edc301507b5936", "fields": {"nom_de_la_commune": "OFFIGNIES", "libell_d_acheminement": "OFFIGNIES", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80604"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d6388561e01d19815f91f358b54113b50fcc2f", "fields": {"nom_de_la_commune": "OISEMONT", "libell_d_acheminement": "OISEMONT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80606"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a60b12bca175c9e35cc477b91db1c4cba59f584", "fields": {"nom_de_la_commune": "PARVILLERS LE QUESNOY", "libell_d_acheminement": "PARVILLERS LE QUESNOY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80617"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4472f6475b8bd8560db22acba34d80fc964112b2", "fields": {"nom_de_la_commune": "PERONNE", "libell_d_acheminement": "PERONNE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80620"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85a3ff5955d958094b2a79ed8439ea9370c3b24", "fields": {"nom_de_la_commune": "PERTAIN", "libell_d_acheminement": "PERTAIN", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80621"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ede9d9e49c73c6914a565cf1cefbed65d44e39c", "fields": {"code_postal": "80290", "code_commune_insee": "80630", "libell_d_acheminement": "POIX DE PICARDIE", "ligne_5": "LAHAYE ST ROMAIN", "nom_de_la_commune": "POIX DE PICARDIE", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c808c3786126d6f991aa01f05543f95a05e30e", "fields": {"nom_de_la_commune": "PONCHES ESTRUVAL", "libell_d_acheminement": "PONCHES ESTRUVAL", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80631"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5870eaa89965bf621337a4d0cad194e89fa3df1", "fields": {"nom_de_la_commune": "PROUVILLE", "libell_d_acheminement": "PROUVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80642"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bfc560483c5f7f60292c117c1706439465a13e", "fields": {"nom_de_la_commune": "PUCHEVILLERS", "libell_d_acheminement": "PUCHEVILLERS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80645"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470688f233adfe72e04b2ee757b6112ddea4e62a", "fields": {"nom_de_la_commune": "PUNCHY", "libell_d_acheminement": "PUNCHY", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80646"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d633ad9385952df6f0a10b4115c139fc7a4382", "fields": {"nom_de_la_commune": "PUZEAUX", "libell_d_acheminement": "PUZEAUX", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80647"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954884db5e4c3dfa36de05ae1b01a69e99aef511", "fields": {"nom_de_la_commune": "QUEND", "libell_d_acheminement": "QUEND", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80649"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e836051a59b9ee7bf1d29b104670bf3c2c75277", "fields": {"nom_de_la_commune": "LE QUESNEL", "libell_d_acheminement": "LE QUESNEL", "code_postal": "80118", "coordonnees_gps": [49.7819533501, 2.62380899671], "code_commune_insee": "80652"}, "geometry": {"type": "Point", "coordinates": [2.62380899671, 49.7819533501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756aa56d2e9999b2639875ad2348bf21e5490cc8", "fields": {"nom_de_la_commune": "QUIRY LE SEC", "libell_d_acheminement": "QUIRY LE SEC", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80657"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0ce7b0575a24efb0c32ae83740419935a486da", "fields": {"nom_de_la_commune": "RAMBURES", "libell_d_acheminement": "RAMBURES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80663"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adb8d34f26384696bf3ded743bbfc9edfd496cb", "fields": {"nom_de_la_commune": "REMAISNIL", "libell_d_acheminement": "REMAISNIL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80666"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c1e8d323e98e4689db1dd59b44b034a63b4b70", "fields": {"nom_de_la_commune": "REVELLES", "libell_d_acheminement": "REVELLES", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80670"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de24f7fd1734e38081dd040496ca6e871a4105d", "fields": {"nom_de_la_commune": "ROIGLISE", "libell_d_acheminement": "ROIGLISE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80676"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f87897d1acdfd67e227233e670639cdb1f27516", "fields": {"nom_de_la_commune": "ROLLOT", "libell_d_acheminement": "ROLLOT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80678"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7d05729b7239242e01c6e5246d5bff6f853fb79", "fields": {"nom_de_la_commune": "ROUVREL", "libell_d_acheminement": "ROUVREL", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80681"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e425099f3868609169bfac3adbb83bb82066a3a", "fields": {"nom_de_la_commune": "RUBESCOURT", "libell_d_acheminement": "RUBESCOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80687"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ef8d964d919f2c31e9d9d611f7841e5d73fc7c", "fields": {"nom_de_la_commune": "ST LEGER LES DOMART", "libell_d_acheminement": "ST LEGER LES DOMART", "code_postal": "80780", "coordonnees_gps": [50.0561016061, 2.14043752851], "code_commune_insee": "80706"}, "geometry": {"type": "Point", "coordinates": [2.14043752851, 50.0561016061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e45dc391e9c08e6230a21b6ae48b8de8d14f0ec2", "fields": {"nom_de_la_commune": "ST LEGER SUR BRESLE", "libell_d_acheminement": "ST LEGER SUR BRESLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80707"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2bfee771b67ff5318830b5749bf994f52ce0ff", "fields": {"nom_de_la_commune": "ST SAUFLIEU", "libell_d_acheminement": "ST SAUFLIEU", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80717"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e916f2920dbdd11d45eba762c1858ee6452bc006", "fields": {"nom_de_la_commune": "SALOUEL", "libell_d_acheminement": "SALOUEL", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80725"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57359ea105052e9eb28d9573b866478cbde072a", "fields": {"nom_de_la_commune": "SAUVILLERS MONGIVAL", "libell_d_acheminement": "SAUVILLERS MONGIVAL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80729"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b6455365aeec06af44e7f8901081e4a40a8425", "fields": {"nom_de_la_commune": "SENARPONT", "libell_d_acheminement": "SENARPONT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80732"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa88486c89c8bd0e60d6f7890147907587ce49b", "fields": {"nom_de_la_commune": "TALMAS", "libell_d_acheminement": "TALMAS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80746"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fc139c7b5105817c593211a7775814c563813f", "fields": {"nom_de_la_commune": "TEMPLEUX LE GUERARD", "libell_d_acheminement": "TEMPLEUX LE GUERARD", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80748"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748473c711f6dbebadbfffac4299ef8443a5643c", "fields": {"nom_de_la_commune": "TERRAMESNIL", "libell_d_acheminement": "TERRAMESNIL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80749"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdbdb17f6835a4c12221d49a28cabdff6eb8e53", "fields": {"nom_de_la_commune": "THOIX", "libell_d_acheminement": "THOIX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80757"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8760446c5b4e4230ce2530c4905dd5359e7dd9", "fields": {"nom_de_la_commune": "TILLOLOY", "libell_d_acheminement": "TILLOLOY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80759"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e20c236b3302fd06f3bda488e9ac605b319a86", "fields": {"nom_de_la_commune": "VAUDRICOURT", "libell_d_acheminement": "VAUDRICOURT", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80780"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9f583c2f5d83d13853be44e9093ce493ecd865", "fields": {"nom_de_la_commune": "VAUX EN AMIENOIS", "libell_d_acheminement": "VAUX EN AMIENOIS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80782"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc14fa4f53dcd639e44b5164e3eb5b73a0a5d715", "fields": {"nom_de_la_commune": "VAUX MARQUENNEVILLE", "libell_d_acheminement": "VAUX MARQUENNEVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80783"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14273ae8bbeefacb853d33226476c1ffb53dda7", "fields": {"nom_de_la_commune": "VELENNES", "libell_d_acheminement": "VELENNES", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80786"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26753a4e32f0c8d688370bcf81be9ca26f80ea91", "fields": {"nom_de_la_commune": "VERCOURT", "libell_d_acheminement": "VERCOURT", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80787"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a022e8e7a2ff140f46b116a297424823bb934a75", "fields": {"nom_de_la_commune": "VILLE LE MARCLET", "libell_d_acheminement": "VILLE LE MARCLET", "code_postal": "80420", "coordonnees_gps": [50.0231078641, 2.0845688682], "code_commune_insee": "80795"}, "geometry": {"type": "Point", "coordinates": [2.0845688682, 50.0231078641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c548300608ddb47933b548e941ee92cc04ad857b", "fields": {"nom_de_la_commune": "VILLEROY", "libell_d_acheminement": "VILLEROY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80796"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116bf13310a439238d62c489e1ca1739e91f8ca9", "fields": {"nom_de_la_commune": "VILLERS FAUCON", "libell_d_acheminement": "VILLERS FAUCON", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80802"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79c98ff4d9f7f7209228e25f65fd443d08ce9b5", "fields": {"nom_de_la_commune": "VRAIGNES EN VERMANDOIS", "libell_d_acheminement": "VRAIGNES EN VERMANDOIS", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80812"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e6a6411b44fd46326df7dba9bc8cd69e0abd20", "fields": {"nom_de_la_commune": "VRAIGNES LES HORNOY", "libell_d_acheminement": "VRAIGNES LES HORNOY", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80813"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324e8a3e8142589cd039924fbb3c36914f65eef1", "fields": {"nom_de_la_commune": "WARVILLERS", "libell_d_acheminement": "WARVILLERS", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80823"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18005083177747e3ae63f7a5f0fe76594c133914", "fields": {"nom_de_la_commune": "SAILLY LABOURSE", "libell_d_acheminement": "SAILLY LABOURSE", "code_postal": "62113", "coordonnees_gps": [50.498906195, 2.68600111131], "code_commune_insee": "62735"}, "geometry": {"type": "Point", "coordinates": [2.68600111131, 50.498906195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b80aacb15134dbe9185abc06916c49bb472750", "fields": {"nom_de_la_commune": "STE AUSTREBERTHE", "libell_d_acheminement": "STE AUSTREBERTHE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62743"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "392bc7a6a277b0074b80297124d52872387e98ba", "fields": {"nom_de_la_commune": "ST FOLQUIN", "libell_d_acheminement": "ST FOLQUIN", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62748"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8e83a1e4979de65ed3371d6aac818b0143d6a1", "fields": {"nom_de_la_commune": "ST HILAIRE COTTES", "libell_d_acheminement": "ST HILAIRE COTTES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62750"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeed5ee36d7389479dd214128b0ca8118d772ccb", "fields": {"nom_de_la_commune": "ST MICHEL SOUS BOIS", "libell_d_acheminement": "ST MICHEL SOUS BOIS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62762"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c43c79038b06c2fc0cbb2cecf246f02dbd18c27", "fields": {"nom_de_la_commune": "SALPERWICK", "libell_d_acheminement": "SALPERWICK", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62772"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d09ce7929963fb00c438ce21992fe1d769f2b851", "fields": {"code_postal": "62231", "code_commune_insee": "62774", "libell_d_acheminement": "SANGATTE", "ligne_5": "BLERIOT", "nom_de_la_commune": "SANGATTE", "coordonnees_gps": [50.929758247, 1.77843645708]}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d82c6bef5df9ebbe45cf7484bbb786ba6b1ac9", "fields": {"nom_de_la_commune": "SARS LE BOIS", "libell_d_acheminement": "SARS LE BOIS", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62778"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c2d417462bb234b0260c7c3cbd2964ed13d9c57", "fields": {"nom_de_la_commune": "SAVY BERLETTE", "libell_d_acheminement": "SAVY BERLETTE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62785"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9802f262147c02c57e1ff3a75b5a373232482251", "fields": {"nom_de_la_commune": "SEMPY", "libell_d_acheminement": "SEMPY", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62787"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce0ba13490c49f646582c734ec488e67cc6fe9a", "fields": {"nom_de_la_commune": "SERVINS", "libell_d_acheminement": "SERVINS", "code_postal": "62530", "coordonnees_gps": [50.4280976053, 2.64237906213], "code_commune_insee": "62793"}, "geometry": {"type": "Point", "coordinates": [2.64237906213, 50.4280976053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dcdbb44a9578593d89d19ad831b6c5260b0068", "fields": {"nom_de_la_commune": "SIBIVILLE", "libell_d_acheminement": "SIBIVILLE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62795"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36552680130d22711f7251366a87d81c71d8d82d", "fields": {"nom_de_la_commune": "SIMENCOURT", "libell_d_acheminement": "SIMENCOURT", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62796"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ae8770f27342eaa440f83e36e5ad1f33ec90e1", "fields": {"nom_de_la_commune": "SOUCHEZ", "libell_d_acheminement": "SOUCHEZ", "code_postal": "62153", "coordonnees_gps": [50.3936626748, 2.71627583927], "code_commune_insee": "62801"}, "geometry": {"type": "Point", "coordinates": [2.71627583927, 50.3936626748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cefd41f8ff59debfc7a4f2fb9edb7bf58c8dc65", "fields": {"nom_de_la_commune": "TORTEFONTAINE", "libell_d_acheminement": "TORTEFONTAINE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62824"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3e4a06cfacc8478b82623c4c0ef7079f0a7881", "fields": {"nom_de_la_commune": "LE TOUQUET PARIS PLAGE", "libell_d_acheminement": "LE TOUQUET PARIS PLAGE", "code_postal": "62520", "coordonnees_gps": [50.5084197494, 1.59889500697], "code_commune_insee": "62826"}, "geometry": {"type": "Point", "coordinates": [1.59889500697, 50.5084197494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941ef31411f83bc87958c111e5f24fbd1b56daf4", "fields": {"nom_de_la_commune": "TRAMECOURT", "libell_d_acheminement": "TRAMECOURT", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62828"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8128142486793095b8f578dc411ee25086b2406", "fields": {"nom_de_la_commune": "TRESCAULT", "libell_d_acheminement": "TRESCAULT", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62830"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2434c221680b5e85fe01799420df69f59bc5b7de", "fields": {"nom_de_la_commune": "VAUDRICOURT", "libell_d_acheminement": "VAUDRICOURT", "code_postal": "62131", "coordonnees_gps": [50.4979995318, 2.63240823084], "code_commune_insee": "62836"}, "geometry": {"type": "Point", "coordinates": [2.63240823084, 50.4979995318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623dd5513403f18d43e9ee747a08aba1258097f5", "fields": {"nom_de_la_commune": "VAUDRINGHEM", "libell_d_acheminement": "VAUDRINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62837"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b7962afc800c970755e6d237261e1b5efd9975", "fields": {"nom_de_la_commune": "VAULX", "libell_d_acheminement": "VAULX", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62838"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486d2ba1b7b7bd1a854fd39cd93ace0c373f733c", "fields": {"nom_de_la_commune": "VAULX VRAUCOURT", "libell_d_acheminement": "VAULX VRAUCOURT", "code_postal": "62159", "coordonnees_gps": [50.1507346874, 2.907151936], "code_commune_insee": "62839"}, "geometry": {"type": "Point", "coordinates": [2.907151936, 50.1507346874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd8dc130b8264f87ec1f9c2d8ddae5ffd33edf2", "fields": {"nom_de_la_commune": "VELU", "libell_d_acheminement": "VELU", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62840"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c6112485fe6e956f15488ae923239a6909e2c7", "fields": {"nom_de_la_commune": "VERCHOCQ", "libell_d_acheminement": "VERCHOCQ", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62844"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e533d5882e34a3b3d0480f0e901aaaf50d8a790", "fields": {"nom_de_la_commune": "VIEIL HESDIN", "libell_d_acheminement": "VIEIL HESDIN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62850"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28438bf463044428bb782ca6736999c5e7c8d9a6", "fields": {"nom_de_la_commune": "VIMY", "libell_d_acheminement": "VIMY", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62861"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6c00b19ab9608552a6db091b66560b79c9ca69", "fields": {"nom_de_la_commune": "VIS EN ARTOIS", "libell_d_acheminement": "VIS EN ARTOIS", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62864"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22953db1db1d408cd58b31b9a73a5bc48901a65a", "fields": {"nom_de_la_commune": "WAIL", "libell_d_acheminement": "WAIL", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62868"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7a8b63e7ff1c508447ba4829e172c844ea5522", "fields": {"nom_de_la_commune": "WAMBERCOURT", "libell_d_acheminement": "WAMBERCOURT", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62871"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33291c9fd157858023cb341353af7381d59f24e1", "fields": {"nom_de_la_commune": "WARLENCOURT EAUCOURT", "libell_d_acheminement": "WARLENCOURT EAUCOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62876"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9514b948ad22096f059168c5eeff79d85e04c9c0", "fields": {"nom_de_la_commune": "WIDEHEM", "libell_d_acheminement": "WIDEHEM", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62887"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083ba4a4105cd55bf83d543d4b673f9fd0fbc398", "fields": {"nom_de_la_commune": "WIMEREUX", "libell_d_acheminement": "WIMEREUX", "code_postal": "62930", "coordonnees_gps": [50.7788872346, 1.61402387119], "code_commune_insee": "62893"}, "geometry": {"type": "Point", "coordinates": [1.61402387119, 50.7788872346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ea1454f51614873fac7c3c7154a824875c923e", "fields": {"nom_de_la_commune": "WINGLES", "libell_d_acheminement": "WINGLES", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62895"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af61c243cf425f93395bdc131cc6ee1bf9372cde", "fields": {"nom_de_la_commune": "WISQUES", "libell_d_acheminement": "WISQUES", "code_postal": "62219", "coordonnees_gps": [50.7332429452, 2.228444485], "code_commune_insee": "62898"}, "geometry": {"type": "Point", "coordinates": [2.228444485, 50.7332429452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ebd46a5d1eb1091ee25122ebbc7249e4ea8424", "fields": {"nom_de_la_commune": "ZUDAUSQUES", "libell_d_acheminement": "ZUDAUSQUES", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62905"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45d4addc6795cbaa6e14c62d421f5f3938b21f6", "fields": {"nom_de_la_commune": "LIBERCOURT", "libell_d_acheminement": "LIBERCOURT", "code_postal": "62820", "coordonnees_gps": [50.482454263, 2.99989827101], "code_commune_insee": "62907"}, "geometry": {"type": "Point", "coordinates": [2.99989827101, 50.482454263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069bd25f95d878733b6c222adff723a161403872", "fields": {"nom_de_la_commune": "YTRES", "libell_d_acheminement": "YTRES", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62909"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d289b39e3530679c1975d7b69885a91d31c2ad", "fields": {"nom_de_la_commune": "AMBERT", "libell_d_acheminement": "AMBERT", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63003"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dcfa0149842a405d91dc06f793c36bd6d9e42d0", "fields": {"nom_de_la_commune": "AUBUSSON D AUVERGNE", "libell_d_acheminement": "AUBUSSON D AUVERGNE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63015"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50080598ddceea279634d04527efe0817eeffd4", "fields": {"nom_de_la_commune": "AUGNAT", "libell_d_acheminement": "AUGNAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63017"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8eac597e832f95216e1b4480f8941e03975941", "fields": {"nom_de_la_commune": "AURIERES", "libell_d_acheminement": "AURIERES", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63020"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "036ddf99a279f2af8ebf22c8e0e7d2b17cd0c990", "fields": {"nom_de_la_commune": "AUZAT LA COMBELLE", "libell_d_acheminement": "AUZAT LA COMBELLE", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63022"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5c2feb95eea63677e3309f36e20081788a12f0", "fields": {"nom_de_la_commune": "AUZELLES", "libell_d_acheminement": "AUZELLES", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63023"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15e3676f9bbdaec4e4f8ea3148f78e0b6b0fcd4", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63031"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bf44d9e85d2a0e8a469520e3244598b02d73a6", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "63110", "coordonnees_gps": [45.749937753, 3.08737208074], "code_commune_insee": "63032"}, "geometry": {"type": "Point", "coordinates": [3.08737208074, 45.749937753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769dcee90beb5d08a08119a839e5ed95aac3a071", "fields": {"nom_de_la_commune": "BEAUREGARD VENDON", "libell_d_acheminement": "BEAUREGARD VENDON", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63035"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd29a2b69f3cfa1bb121b05f21760b021cf43c25", "fields": {"nom_de_la_commune": "BERGONNE", "libell_d_acheminement": "BERGONNE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63036"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8a1c16cd59d3d90b32a3a290dfd64c2fab97c6", "fields": {"nom_de_la_commune": "BERTIGNAT", "libell_d_acheminement": "BERTIGNAT", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63037"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eed51faadec614a7a4c49fcb25d34dc186f642e", "fields": {"code_postal": "63610", "code_commune_insee": "63038", "libell_d_acheminement": "BESSE ET ST ANASTAISE", "ligne_5": "ST ANASTAISE", "nom_de_la_commune": "BESSE ET ST ANASTAISE", "coordonnees_gps": [45.477068899, 2.93237565554]}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845f76c189a57710a6d3a95b0b53f02ca57e9467", "fields": {"nom_de_la_commune": "BLOT L EGLISE", "libell_d_acheminement": "BLOT L EGLISE", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63043"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763361c68105f25ba1fa71a928fa6048c044baef", "fields": {"nom_de_la_commune": "BONGHEAT", "libell_d_acheminement": "BONGHEAT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63044"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1984f33137c5fd0dd8be7a012b0732e65f6d67", "fields": {"nom_de_la_commune": "BOUDES", "libell_d_acheminement": "BOUDES", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63046"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3125098963f8bc6904766d929f27733b23f1a4a4", "fields": {"nom_de_la_commune": "LE BROC", "libell_d_acheminement": "LE BROC", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63054"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e2a544e78a0fa7159bb9834f8c945473c4934b6", "fields": {"nom_de_la_commune": "BULHON", "libell_d_acheminement": "BULHON", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63058"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87525ebc1cb5005ac22eca617158d9a9245b8a07", "fields": {"nom_de_la_commune": "CEILLOUX", "libell_d_acheminement": "CEILLOUX", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63065"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369f8b9a3bf7b9a626a45e76fef28631c0dac9a2", "fields": {"nom_de_la_commune": "CHALUS", "libell_d_acheminement": "CHALUS", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63074"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7387123e186847240e4daadd4a40c9726d8b087", "fields": {"nom_de_la_commune": "CHAMBON SUR DOLORE", "libell_d_acheminement": "CHAMBON SUR DOLORE", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63076"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb8b7336c8b6f79c0033dee1322f0558f0abcb9", "fields": {"nom_de_la_commune": "CHAMEANE", "libell_d_acheminement": "CHAMEANE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63078"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86144f469e639db48f40ac38d07ff9b29bc8b00e", "fields": {"nom_de_la_commune": "CLERLANDE", "libell_d_acheminement": "CLERLANDE", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63112"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e7962212c27be6eeb5eba39769d4a964229433", "fields": {"nom_de_la_commune": "COLLANGES", "libell_d_acheminement": "COLLANGES", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63114"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062cc2c04089e0d50b873ae524b7b45341880ad9", "fields": {"nom_de_la_commune": "COURPIERE", "libell_d_acheminement": "COURPIERE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63125"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0dbd71fbb280a2eacd2f5c5cdc1199afd81fcf", "fields": {"nom_de_la_commune": "DORAT", "libell_d_acheminement": "DORAT", "code_postal": "63300", "coordonnees_gps": [45.8543527446, 3.53248495668], "code_commune_insee": "63138"}, "geometry": {"type": "Point", "coordinates": [3.53248495668, 45.8543527446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7f46ac88b092acdd87b5b53494b128411f3932", "fields": {"nom_de_la_commune": "EFFIAT", "libell_d_acheminement": "EFFIAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63143"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeeb73dec1856c52d549977b9efe29e4023fdce7", "fields": {"nom_de_la_commune": "ESPINCHAL", "libell_d_acheminement": "ESPINCHAL", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63153"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641f64a5fed7b17b1c14fc80cdfec1f9ec3e7aec", "fields": {"nom_de_la_commune": "FAYET LE CHATEAU", "libell_d_acheminement": "FAYET LE CHATEAU", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63157"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86689e93fdac6ef67c77dd35783d9e26f8075520", "fields": {"code_postal": "63500", "code_commune_insee": "63160", "libell_d_acheminement": "AULHAT FLAT", "ligne_5": "AULHAT ST PRIVAT", "nom_de_la_commune": "AULHAT FLAT", "coordonnees_gps": [45.5449375451, 3.24769750903]}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e8d8e0283ef33b1f68805ca3a068ef90a45c88", "fields": {"nom_de_la_commune": "GERZAT", "libell_d_acheminement": "GERZAT", "code_postal": "63360", "coordonnees_gps": [45.840831165, 3.18231829254], "code_commune_insee": "63164"}, "geometry": {"type": "Point", "coordinates": [3.18231829254, 45.840831165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf71e5de364e741fe82da0aa1122ff80937abee", "fields": {"nom_de_la_commune": "GIGNAT", "libell_d_acheminement": "GIGNAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63166"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51f2e09e5875d759cc605208ff02ca44cff899e", "fields": {"nom_de_la_commune": "GLAINE MONTAIGUT", "libell_d_acheminement": "GLAINE MONTAIGUT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63168"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf53f1660dbc05420cb79792ceadb045377dfb42", "fields": {"nom_de_la_commune": "LA GOUTELLE", "libell_d_acheminement": "LA GOUTELLE", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63170"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4b92d4675d5ad681badb1088b6b0f112b21655", "fields": {"nom_de_la_commune": "GRANDRIF", "libell_d_acheminement": "GRANDRIF", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63173"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8efa976860e07b14d6b0882331261153ca13b4", "fields": {"nom_de_la_commune": "HEUME L EGLISE", "libell_d_acheminement": "HEUME L EGLISE", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63176"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cadf73128fa8e56a04fa82a38df4988e7c923db", "fields": {"nom_de_la_commune": "ISSOIRE", "libell_d_acheminement": "ISSOIRE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63178"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d52064c3e097e1db52006c2fa9dd410472d8804", "fields": {"nom_de_la_commune": "LABESSETTE", "libell_d_acheminement": "LABESSETTE", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63183"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80e05b993d84ed723046a8ebe926507becf61f1", "fields": {"nom_de_la_commune": "LUZILLAT", "libell_d_acheminement": "LUZILLAT", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63201"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fbba0a931e8bec76e5712a954fec3f737c4a76c", "fields": {"nom_de_la_commune": "MALINTRAT", "libell_d_acheminement": "MALINTRAT", "code_postal": "63510", "coordonnees_gps": [45.804716466, 3.18423558419], "code_commune_insee": "63204"}, "geometry": {"type": "Point", "coordinates": [3.18423558419, 45.804716466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1e271f0ff446ffa0fd85c0e13ae2a86fc029c9", "fields": {"nom_de_la_commune": "MANGLIEU", "libell_d_acheminement": "MANGLIEU", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63205"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2352ef125e4a63f719f38bcbe9be4c0a17c9bda2", "fields": {"nom_de_la_commune": "MARSAC EN LIVRADOIS", "libell_d_acheminement": "MARSAC EN LIVRADOIS", "code_postal": "63940", "coordonnees_gps": [45.4804569563, 3.72156526348], "code_commune_insee": "63211"}, "geometry": {"type": "Point", "coordinates": [3.72156526348, 45.4804569563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "088324131e26ac7d3eff017c194e0f21ae65a078", "fields": {"nom_de_la_commune": "LES MARTRES D ARTIERE", "libell_d_acheminement": "LES MARTRES D ARTIERE", "code_postal": "63430", "coordonnees_gps": [45.8112884273, 3.24859330717], "code_commune_insee": "63213"}, "geometry": {"type": "Point", "coordinates": [3.24859330717, 45.8112884273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4134dfa0a116459dd12e8edfcc2d3b260c882c", "fields": {"nom_de_la_commune": "MARTRES SUR MORGE", "libell_d_acheminement": "MARTRES SUR MORGE", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63215"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d62ec01f72656041f1f179a2b87ec547bdf733c", "fields": {"nom_de_la_commune": "MAYRES", "libell_d_acheminement": "MAYRES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63218"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c89618faa19643e4fa8c79b2b52fb2e72566f1", "fields": {"nom_de_la_commune": "MEDEYROLLES", "libell_d_acheminement": "MEDEYROLLES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63221"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc800ef85201fc57e15616cf0dbe2ed8a419837", "fields": {"nom_de_la_commune": "MENETROL", "libell_d_acheminement": "MENETROL", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63224"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e90fc8fd05271c3f16672a3a4f080bbfa19c86", "fields": {"code_postal": "63200", "code_commune_insee": "63244", "libell_d_acheminement": "CHAMBARON SUR MORGE", "ligne_5": "LA MOUTADE", "nom_de_la_commune": "CHAMBARON SUR MORGE", "coordonnees_gps": [45.9059997705, 3.12295819611]}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92319200743fb26b4660497b0606c02b9f07d529", "fields": {"nom_de_la_commune": "MUROL", "libell_d_acheminement": "MUROL", "code_postal": "63790", "coordonnees_gps": [45.562829077, 2.89483440684], "code_commune_insee": "63247"}, "geometry": {"type": "Point", "coordinates": [2.89483440684, 45.562829077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f55ea15882ae6f81195aff6dc9f38450485385", "fields": {"nom_de_la_commune": "ORCINES", "libell_d_acheminement": "ORCINES", "code_postal": "63870", "coordonnees_gps": [45.7870876563, 2.99756004933], "code_commune_insee": "63263"}, "geometry": {"type": "Point", "coordinates": [2.99756004933, 45.7870876563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a230db1fd94fe77c3d42a09c20279b8a5164b79", "fields": {"nom_de_la_commune": "ORLEAT", "libell_d_acheminement": "ORLEAT", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63265"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a01bf9bfd38ee0615d0ef4a6444de3ba0d4d96", "fields": {"nom_de_la_commune": "PALLADUC", "libell_d_acheminement": "PALLADUC", "code_postal": "63550", "coordonnees_gps": [45.9228930521, 3.6102507473], "code_commune_insee": "63267"}, "geometry": {"type": "Point", "coordinates": [3.6102507473, 45.9228930521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb048603b53302c03225dc440a2bc2156a2f6f4", "fields": {"nom_de_la_commune": "PERPEZAT", "libell_d_acheminement": "PERPEZAT", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63274"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99baadcfa628918f57ccbb62620f54e286c4664", "fields": {"code_postal": "63920", "code_commune_insee": "63276", "libell_d_acheminement": "PESCHADOIRES", "ligne_5": "PONT DE DORE", "nom_de_la_commune": "PESCHADOIRES", "coordonnees_gps": [45.8268662803, 3.48096267622]}, "geometry": {"type": "Point", "coordinates": [3.48096267622, 45.8268662803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0ac091277abc14db10400d37fc6decb0f43371", "fields": {"nom_de_la_commune": "PESSAT VILLENEUVE", "libell_d_acheminement": "PESSAT VILLENEUVE", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63278"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ec42bfb0906c7e032f8b4cbd04874829da1965", "fields": {"nom_de_la_commune": "PIGNOLS", "libell_d_acheminement": "PIGNOLS", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63280"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6a5cc9993b8404d9067021b0061da2d899712f", "fields": {"nom_de_la_commune": "PULVERIERES", "libell_d_acheminement": "PULVERIERES", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63290"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f7ff694cc32886b06331dda4dabd3b17c5ebcf", "fields": {"nom_de_la_commune": "RAVEL", "libell_d_acheminement": "RAVEL", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63296"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b678c2ea2466bb97278cf49e991d3af7d30f4b3", "fields": {"nom_de_la_commune": "REIGNAT", "libell_d_acheminement": "REIGNAT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63297"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37efe65c4f4520aab523c83b8193ea3d3b288cf8", "fields": {"nom_de_la_commune": "ROMAGNAT", "libell_d_acheminement": "ROMAGNAT", "code_postal": "63540", "coordonnees_gps": [45.7208123303, 3.08837340823], "code_commune_insee": "63307"}, "geometry": {"type": "Point", "coordinates": [3.08837340823, 45.7208123303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efca9fa955bbdb5046a40a41078cde3665113740", "fields": {"nom_de_la_commune": "STE AGATHE", "libell_d_acheminement": "STE AGATHE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63310"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e072a044bbb687c33b88184db59922ae11325a31", "fields": {"nom_de_la_commune": "ST AMANT ROCHE SAVINE", "libell_d_acheminement": "ST AMANT ROCHE SAVINE", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63314"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cd9c710498aa196c49992cb52e3ca0dd3ba3288", "fields": {"nom_de_la_commune": "ST ANTHEME", "libell_d_acheminement": "ST ANTHEME", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63319"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e3d839ea9e46621ccf2e069b6a94e8ce17b2ce", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63320"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce287ea6ba7bcf592ab36ea6a308dde6a2201e1", "fields": {"code_postal": "12310", "code_commune_insee": "12120", "libell_d_acheminement": "LAISSAC SEVERAC L EGLISE", "ligne_5": "SEVERAC L EGLISE", "nom_de_la_commune": "LAISSAC SEVERAC L EGLISE", "coordonnees_gps": [44.384469335, 2.84476302604]}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb0daf3d79b5dbb0d0bf0137bbb559d3c29ee37", "fields": {"nom_de_la_commune": "LAVAL ROQUECEZIERE", "libell_d_acheminement": "LAVAL ROQUECEZIERE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12125"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656776c8bc2edd67c7c29ee357cb81d76811c38a", "fields": {"nom_de_la_commune": "LA LOUBIERE", "libell_d_acheminement": "LA LOUBIERE", "code_postal": "12740", "coordonnees_gps": [44.4071370966, 2.63127194747], "code_commune_insee": "12131"}, "geometry": {"type": "Point", "coordinates": [2.63127194747, 44.4071370966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "511d205c1e88d94909ad3a690da3ee628ea82cb0", "fields": {"nom_de_la_commune": "LUGAN", "libell_d_acheminement": "LUGAN", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12134"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0454a2d381fd7a11c5b1dad5258aefe6fc63441c", "fields": {"nom_de_la_commune": "MONTEILS", "libell_d_acheminement": "MONTEILS", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12150"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab66581ee0962612e305d02a5ccd06191ee7eae", "fields": {"nom_de_la_commune": "MURASSON", "libell_d_acheminement": "MURASSON", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12163"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e08a18e257dc41d17bc9cff1230db4abc5c09d9", "fields": {"nom_de_la_commune": "MUR DE BARREZ", "libell_d_acheminement": "MUR DE BARREZ", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12164"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bcd6a37fbf3f8d586215d44a1b4027a27a0e42c", "fields": {"nom_de_la_commune": "MURET LE CHATEAU", "libell_d_acheminement": "MURET LE CHATEAU", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12165"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6757776fb56cded08b79a6e86bbf19fe48c2f45a", "fields": {"nom_de_la_commune": "NANT", "libell_d_acheminement": "NANT", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12168"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44577e19773c5b6e2615dcd759d2c4c1d3def7aa", "fields": {"nom_de_la_commune": "NAUCELLE", "libell_d_acheminement": "NAUCELLE", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12169"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88afb63127fc9a33ded6079aad73216c6de195fe", "fields": {"nom_de_la_commune": "ONET LE CHATEAU", "libell_d_acheminement": "ONET LE CHATEAU", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12176"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d96d4ca3608c8fc51e8797a6fd925355a1b6ad7", "fields": {"code_postal": "12310", "code_commune_insee": "12177", "libell_d_acheminement": "PALMAS D AVEYRON", "ligne_5": "COUSSERGUES", "nom_de_la_commune": "PALMAS D AVEYRON", "coordonnees_gps": [44.384469335, 2.84476302604]}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895c03ccb479550ec8d6b2e53470e76d103f8bf6", "fields": {"nom_de_la_commune": "PRADINAS", "libell_d_acheminement": "PRADINAS", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12189"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec73901cae5b3c7df7d123e881768c7660f1ce30", "fields": {"nom_de_la_commune": "PRUINES", "libell_d_acheminement": "PRUINES", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12193"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a9dde37f60448870c120bf8543fc6c41f15f16", "fields": {"nom_de_la_commune": "REBOURGUIL", "libell_d_acheminement": "REBOURGUIL", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12195"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a8c55cb4674eb83e5f5a88ce4b0e40f724249c", "fields": {"nom_de_la_commune": "ROUSSENNAC", "libell_d_acheminement": "ROUSSENNAC", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12206"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d41c282cc04d2295123b5931cd5d36fb31b5c7", "fields": {"nom_de_la_commune": "ST FELIX DE LUNEL", "libell_d_acheminement": "ST FELIX DE LUNEL", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12221"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80699483b6e13ad114ef081c19030f1898cbca1", "fields": {"nom_de_la_commune": "ST FELIX DE SORGUES", "libell_d_acheminement": "ST FELIX DE SORGUES", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12222"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b450e22e9d058a494ca4c284bc05c0d9efc605b", "fields": {"code_postal": "12420", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "VITRAC EN VIADENE", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.8196484767, 2.78404543455]}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557cba868941628daa5c0d8dc14397343d2c40b6", "fields": {"code_postal": "12140", "code_commune_insee": "12226", "libell_d_acheminement": "ST HIPPOLYTE", "ligne_5": "PONS", "nom_de_la_commune": "ST HIPPOLYTE", "coordonnees_gps": [44.6558037135, 2.58164635516]}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d5c6c79cad7a758279001e08be3477f92c4ce8", "fields": {"nom_de_la_commune": "ST JEAN DU BRUEL", "libell_d_acheminement": "ST JEAN DU BRUEL", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12231"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c5b087c40bd3d59447749c7d29cc18d83ce3f37", "fields": {"nom_de_la_commune": "ST JUERY", "libell_d_acheminement": "ST JUERY", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12233"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a0d0cd9764a5dba1e051bbc764d8de33584d34", "fields": {"nom_de_la_commune": "SALLES COURBATIES", "libell_d_acheminement": "SALLES COURBATIES", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12252"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e0e0d105d51e335798c1660a7ab0a5b5fd2823", "fields": {"nom_de_la_commune": "SALLES CURAN", "libell_d_acheminement": "SALLES CURAN", "code_postal": "12410", "coordonnees_gps": [44.1707018059, 2.80592424455], "code_commune_insee": "12253"}, "geometry": {"type": "Point", "coordinates": [2.80592424455, 44.1707018059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a868c6c328c3e5c44ef37aa13d3574c1d99ab1f3", "fields": {"nom_de_la_commune": "SALVAGNAC CAJARC", "libell_d_acheminement": "SALVAGNAC CAJARC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12256"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f3c5485f7fc1d5a3a02b595a124d9133e974b72", "fields": {"code_postal": "12700", "code_commune_insee": "12257", "libell_d_acheminement": "CAUSSE ET DIEGE", "ligne_5": "LOUPIAC", "nom_de_la_commune": "CAUSSE ET DIEGE", "coordonnees_gps": [44.5379394985, 2.08098402024]}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09dcfd4921c245970c01c4b07055c388959d5017", "fields": {"nom_de_la_commune": "LA SALVETAT PEYRALES", "libell_d_acheminement": "LA SALVETAT PEYRALES", "code_postal": "12440", "coordonnees_gps": [44.2188237556, 2.19456712254], "code_commune_insee": "12258"}, "geometry": {"type": "Point", "coordinates": [2.19456712254, 44.2188237556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ae24fc311f76c20e4355cb9d4c777430c5a9543", "fields": {"nom_de_la_commune": "SANVENSA", "libell_d_acheminement": "SANVENSA", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12259"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a99a6879de0a4a904e533f298496c824a282f", "fields": {"nom_de_la_commune": "SAUCLIERES", "libell_d_acheminement": "SAUCLIERES", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12260"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b3ddc9f42a49f516cf8f47bee2be594e4da569", "fields": {"nom_de_la_commune": "LA SELVE", "libell_d_acheminement": "LA SELVE", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12267"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb837f3fd313e8e4ec2e500d9f69a95255438fb0", "fields": {"nom_de_la_commune": "LA SERRE", "libell_d_acheminement": "LA SERRE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12269"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdcdebf17cd7833dbfed01c06ae31749b251f97", "fields": {"nom_de_la_commune": "SONNAC", "libell_d_acheminement": "SONNAC", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12272"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2867d0076fb16437051cf5e3903a24284ed153b6", "fields": {"nom_de_la_commune": "SYLVANES", "libell_d_acheminement": "SYLVANES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12274"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e5aa05347436947f9b4f63a8f560715a6d72b7", "fields": {"nom_de_la_commune": "TOURNEMIRE", "libell_d_acheminement": "TOURNEMIRE", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12282"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a974fa139b93741cc390197de57c8941e9a4ebd0", "fields": {"nom_de_la_commune": "LE TRUEL", "libell_d_acheminement": "LE TRUEL", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12284"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c564754eeb08022456a5310a3163737974eb470", "fields": {"nom_de_la_commune": "VEZINS DE LEVEZOU", "libell_d_acheminement": "VEZINS DE LEVEZOU", "code_postal": "12780", "coordonnees_gps": [44.2546805214, 2.94192655254], "code_commune_insee": "12294"}, "geometry": {"type": "Point", "coordinates": [2.94192655254, 44.2546805214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6c2187c63d0d1783d551e8c29957d01c875c38", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE ROUERGUE", "libell_d_acheminement": "VILLEFRANCHE DE ROUERGUE", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12300"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d19faef34691502c1dac81e89a95d5ecff024d", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12301"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e8414eb2f9a89f61389db46d47cfe4d152adc1", "fields": {"nom_de_la_commune": "VIVIEZ", "libell_d_acheminement": "VIVIEZ", "code_postal": "12110", "coordonnees_gps": [44.5334610269, 2.25593564519], "code_commune_insee": "12305"}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92be1fdfdf51c439a9ce89897252c53ccc09368", "fields": {"nom_de_la_commune": "AIX EN PROVENCE", "libell_d_acheminement": "AIX EN PROVENCE", "code_postal": "13090", "coordonnees_gps": [43.5360221556, 5.3983786513], "code_commune_insee": "13001"}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91e670f812a0d52df9e3ae0661e125aa70d716a", "fields": {"code_postal": "13100", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "LA DURANNE", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5353485115, 5.4345381961]}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656bbd5b6ec5ee484ed240555599130803c17d18", "fields": {"nom_de_la_commune": "ARLES", "libell_d_acheminement": "ARLES", "code_postal": "13200", "coordonnees_gps": [43.5467808819, 4.66183385891], "code_commune_insee": "13004"}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64076dbcc2e6a1fe25dabc9bf40d9468e80ae46b", "fields": {"code_postal": "13400", "code_commune_insee": "13005", "libell_d_acheminement": "AUBAGNE", "ligne_5": "CHARREL", "nom_de_la_commune": "AUBAGNE", "coordonnees_gps": [43.2934747963, 5.56322795554]}, "geometry": {"type": "Point", "coordinates": [5.56322795554, 43.2934747963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb302b97d2d563b8df93551ab82eb24365f368b9", "fields": {"code_postal": "13720", "code_commune_insee": "13013", "libell_d_acheminement": "BELCODENE", "ligne_5": "LA POMME", "nom_de_la_commune": "BELCODENE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e835c362ee9f407e5b02d2acada068bc8fa072bf", "fields": {"nom_de_la_commune": "LA BOUILLADISSE", "libell_d_acheminement": "LA BOUILLADISSE", "code_postal": "13720", "coordonnees_gps": [43.4097271904, 5.60183954858], "code_commune_insee": "13016"}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4d089f9f912e233181f4b8d8b7fbe0dd037696", "fields": {"code_postal": "13720", "code_commune_insee": "13016", "libell_d_acheminement": "LA BOUILLADISSE", "ligne_5": "LE PIGEONNIER", "nom_de_la_commune": "LA BOUILLADISSE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fcf84b0bb1aaf5734deeea1b69de26a27669d1", "fields": {"nom_de_la_commune": "BOULBON", "libell_d_acheminement": "BOULBON", "code_postal": "13150", "coordonnees_gps": [43.811635575, 4.68697564727], "code_commune_insee": "13017"}, "geometry": {"type": "Point", "coordinates": [4.68697564727, 43.811635575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db19b3b4980faa667f9c55ea525c42cba1d7649", "fields": {"code_postal": "13620", "code_commune_insee": "13021", "libell_d_acheminement": "CARRY LE ROUET", "ligne_5": "LE ROUET", "nom_de_la_commune": "CARRY LE ROUET", "coordonnees_gps": [43.3421734336, 5.15446218306]}, "geometry": {"type": "Point", "coordinates": [5.15446218306, 43.3421734336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584c4f36089b942f559d161f30afce6c04c18b37", "fields": {"code_postal": "13710", "code_commune_insee": "13040", "libell_d_acheminement": "FUVEAU", "ligne_5": "LA BARQUE", "nom_de_la_commune": "FUVEAU", "coordonnees_gps": [43.4598825054, 5.55318993446]}, "geometry": {"type": "Point", "coordinates": [5.55318993446, 43.4598825054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6895553bcf9943921e74700d022be4339141fe3", "fields": {"code_postal": "13120", "code_commune_insee": "13041", "libell_d_acheminement": "GARDANNE", "ligne_5": "NOTRE DAME", "nom_de_la_commune": "GARDANNE", "coordonnees_gps": [43.4527470657, 5.47999296124]}, "geometry": {"type": "Point", "coordinates": [5.47999296124, 43.4527470657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dcfe3a6c423cbeec9110cb3367dc27c2d581a23", "fields": {"nom_de_la_commune": "GRANS", "libell_d_acheminement": "GRANS", "code_postal": "13450", "coordonnees_gps": [43.6143725097, 5.04547175454], "code_commune_insee": "13044"}, "geometry": {"type": "Point", "coordinates": [5.04547175454, 43.6143725097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb8faa481bf82f6bdbdcc5bc3638a86021d6fb0", "fields": {"nom_de_la_commune": "LAMANON", "libell_d_acheminement": "LAMANON", "code_postal": "13113", "coordonnees_gps": [43.7049222904, 5.08876899348], "code_commune_insee": "13049"}, "geometry": {"type": "Point", "coordinates": [5.08876899348, 43.7049222904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae6d879f4f71d5fa9bf414656571b8f95a11daf", "fields": {"nom_de_la_commune": "MALLEMORT", "libell_d_acheminement": "MALLEMORT", "code_postal": "13370", "coordonnees_gps": [43.7285521313, 5.18352622599], "code_commune_insee": "13053"}, "geometry": {"type": "Point", "coordinates": [5.18352622599, 43.7285521313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22a5456e40e3eb57cc0f1919562eec0be7f5fb3", "fields": {"code_postal": "13370", "code_commune_insee": "13053", "libell_d_acheminement": "MALLEMORT", "ligne_5": "NOTRE DAME", "nom_de_la_commune": "MALLEMORT", "coordonnees_gps": [43.7285521313, 5.18352622599]}, "geometry": {"type": "Point", "coordinates": [5.18352622599, 43.7285521313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1270543553f45dbb05b38f6bdf888fc7a1332b66", "fields": {"nom_de_la_commune": "MARIGNANE", "libell_d_acheminement": "MARIGNANE", "code_postal": "13700", "coordonnees_gps": [43.4167055832, 5.21911721754], "code_commune_insee": "13054"}, "geometry": {"type": "Point", "coordinates": [5.21911721754, 43.4167055832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34be5ddbecb0c806d2421fb9caa75242596e9437", "fields": {"code_postal": "13500", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "CROIX STE", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe9cd07788034b6a00d7316d39a1f657739c320", "fields": {"nom_de_la_commune": "MEYREUIL", "libell_d_acheminement": "MEYREUIL", "code_postal": "13590", "coordonnees_gps": [43.4909664317, 5.50034131197], "code_commune_insee": "13060"}, "geometry": {"type": "Point", "coordinates": [5.50034131197, 43.4909664317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a23aff676e35421ea5034f253b9f9d5a8af94e9", "fields": {"nom_de_la_commune": "NOVES", "libell_d_acheminement": "NOVES", "code_postal": "13550", "coordonnees_gps": [43.8586962525, 4.89971574687], "code_commune_insee": "13066"}, "geometry": {"type": "Point", "coordinates": [4.89971574687, 43.8586962525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2d5c465e76783701dd37dd4c0be954f4caed4c", "fields": {"nom_de_la_commune": "PARADOU", "libell_d_acheminement": "PARADOU", "code_postal": "13520", "coordonnees_gps": [43.7214018039, 4.81156485939], "code_commune_insee": "13068"}, "geometry": {"type": "Point", "coordinates": [4.81156485939, 43.7214018039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c968030086cd1d5cc21aa831e9f33a2ba95de948", "fields": {"code_postal": "13821", "code_commune_insee": "13070", "libell_d_acheminement": "LA PENNE SUR HUVEAUNE", "ligne_5": "BASTIDONNE", "nom_de_la_commune": "LA PENNE SUR HUVEAUNE", "coordonnees_gps": [43.2768119604, 5.51843444856]}, "geometry": {"type": "Point", "coordinates": [5.51843444856, 43.2768119604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1a210af4f0dae0fd8f88111eac6a8ae2d6cb8e", "fields": {"nom_de_la_commune": "LES PENNES MIRABEAU", "libell_d_acheminement": "LES PENNES MIRABEAU", "code_postal": "13170", "coordonnees_gps": [43.4029905656, 5.31524145388], "code_commune_insee": "13071"}, "geometry": {"type": "Point", "coordinates": [5.31524145388, 43.4029905656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2976e64f308147461fc87962a9806a031e084d", "fields": {"code_postal": "13170", "code_commune_insee": "13071", "libell_d_acheminement": "LES PENNES MIRABEAU", "ligne_5": "LES CADENEAUX", "nom_de_la_commune": "LES PENNES MIRABEAU", "coordonnees_gps": [43.4029905656, 5.31524145388]}, "geometry": {"type": "Point", "coordinates": [5.31524145388, 43.4029905656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075cede74b85e5d46f6b313bf0368f8fc0f21736", "fields": {"code_postal": "13360", "code_commune_insee": "13086", "libell_d_acheminement": "ROQUEVAIRE", "ligne_5": "PONT DE L ETOILE", "nom_de_la_commune": "ROQUEVAIRE", "coordonnees_gps": [43.3435929565, 5.59815037095]}, "geometry": {"type": "Point", "coordinates": [5.59815037095, 43.3435929565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6837cf36ebeb15ff119c5f96e1f9ce099dc6c9", "fields": {"code_postal": "13740", "code_commune_insee": "13088", "libell_d_acheminement": "LE ROVE", "ligne_5": "LE PIGEONNIER", "nom_de_la_commune": "LE ROVE", "coordonnees_gps": [43.3653006845, 5.25320648556]}, "geometry": {"type": "Point", "coordinates": [5.25320648556, 43.3653006845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2b478c628d54ccf4fc9d894edfb11057eb7f11", "fields": {"nom_de_la_commune": "ST ANDIOL", "libell_d_acheminement": "ST ANDIOL", "code_postal": "13670", "coordonnees_gps": [43.8324998868, 4.94392199564], "code_commune_insee": "13089"}, "geometry": {"type": "Point", "coordinates": [4.94392199564, 43.8324998868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51088a2ae6653ab44d156cde9bbc8895a3e2f5de", "fields": {"nom_de_la_commune": "ST ANTONIN SUR BAYON", "libell_d_acheminement": "ST ANTONIN SUR BAYON", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13090"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd688dfc0489a0d4229611e2d3ce4b92c63e8526", "fields": {"nom_de_la_commune": "ST ESTEVE JANSON", "libell_d_acheminement": "ST ESTEVE JANSON", "code_postal": "13610", "coordonnees_gps": [43.6568962818, 5.43309442069], "code_commune_insee": "13093"}, "geometry": {"type": "Point", "coordinates": [5.43309442069, 43.6568962818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113582b01b2c8e7c3cdf085f176fd2bcfd6673b9", "fields": {"nom_de_la_commune": "ST ETIENNE DU GRES", "libell_d_acheminement": "ST ETIENNE DU GRES", "code_postal": "13103", "coordonnees_gps": [43.7851447818, 4.737135688], "code_commune_insee": "13094"}, "geometry": {"type": "Point", "coordinates": [4.737135688, 43.7851447818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9ae28946a588d545f8ecf8b0c072750dab590e", "fields": {"nom_de_la_commune": "ST PAUL LES DURANCE", "libell_d_acheminement": "ST PAUL LES DURANCE", "code_postal": "13115", "coordonnees_gps": [43.6852706669, 5.75342735818], "code_commune_insee": "13099"}, "geometry": {"type": "Point", "coordinates": [5.75342735818, 43.6852706669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49c202af60fb41305750f165364a73d0fd3a1e4", "fields": {"nom_de_la_commune": "ST SAVOURNIN", "libell_d_acheminement": "ST SAVOURNIN", "code_postal": "13119", "coordonnees_gps": [43.4053290056, 5.53123626453], "code_commune_insee": "13101"}, "geometry": {"type": "Point", "coordinates": [5.53123626453, 43.4053290056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208d4bc65dba048365a2786466a19ec710e3aaf8", "fields": {"nom_de_la_commune": "SENAS", "libell_d_acheminement": "SENAS", "code_postal": "13560", "coordonnees_gps": [43.744715475, 5.08661568402], "code_commune_insee": "13105"}, "geometry": {"type": "Point", "coordinates": [5.08661568402, 43.744715475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a469bd8f1f897196286cb6e20fb9c8b1e4b58cb9", "fields": {"nom_de_la_commune": "SEPTEMES LES VALLONS", "libell_d_acheminement": "SEPTEMES LES VALLONS", "code_postal": "13240", "coordonnees_gps": [43.3934308591, 5.38108138209], "code_commune_insee": "13106"}, "geometry": {"type": "Point", "coordinates": [5.38108138209, 43.3934308591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8686ef6ee499069f10ed27311d30058af8e11ef", "fields": {"code_postal": "13240", "code_commune_insee": "13106", "libell_d_acheminement": "SEPTEMES LES VALLONS", "ligne_5": "LA ROUGIERE", "nom_de_la_commune": "SEPTEMES LES VALLONS", "coordonnees_gps": [43.3934308591, 5.38108138209]}, "geometry": {"type": "Point", "coordinates": [5.38108138209, 43.3934308591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "866d5094fe05a625995c0eb135b4e5faf73259e1", "fields": {"nom_de_la_commune": "VELAUX", "libell_d_acheminement": "VELAUX", "code_postal": "13880", "coordonnees_gps": [43.5238343825, 5.24907547075], "code_commune_insee": "13112"}, "geometry": {"type": "Point", "coordinates": [5.24907547075, 43.5238343825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae130a85e760e8fae42113a408c0cbb92297a74", "fields": {"nom_de_la_commune": "VENTABREN", "libell_d_acheminement": "VENTABREN", "code_postal": "13122", "coordonnees_gps": [43.5419817981, 5.30592844079], "code_commune_insee": "13114"}, "geometry": {"type": "Point", "coordinates": [5.30592844079, 43.5419817981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234588785b7ee8ba354ebbd55863fb7a2d6f29c3", "fields": {"nom_de_la_commune": "MARSEILLE 04", "libell_d_acheminement": "MARSEILLE", "code_postal": "13004", "coordonnees_gps": [43.306734414, 5.4008326497], "code_commune_insee": "13204"}, "geometry": {"type": "Point", "coordinates": [5.4008326497, 43.306734414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89ce610e36bb8bc4562cd341e3c9a4acf6685625", "fields": {"nom_de_la_commune": "MARSEILLE 10", "libell_d_acheminement": "MARSEILLE", "code_postal": "13010", "coordonnees_gps": [43.2754608324, 5.42717354435], "code_commune_insee": "13210"}, "geometry": {"type": "Point", "coordinates": [5.42717354435, 43.2754608324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7b7a6f39a2ec8b0136b9be156021c6e1c62cf79", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "CHATEAU GOMBERT", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de3a4b726311caf9e890f3381ab4e5fd5396a9c", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "ST MITRE", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ac1ca9aa7cfd18f4da48e977d8e6c4966ebe00", "fields": {"nom_de_la_commune": "MARSEILLE 14", "libell_d_acheminement": "MARSEILLE", "code_postal": "13014", "coordonnees_gps": [43.3450777877, 5.39342814099], "code_commune_insee": "13214"}, "geometry": {"type": "Point", "coordinates": [5.39342814099, 43.3450777877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54d019f615e2a8b1329cae9f2a249333408257c", "fields": {"code_postal": "13016", "code_commune_insee": "13216", "libell_d_acheminement": "MARSEILLE", "ligne_5": "L ESTAQUE", "nom_de_la_commune": "MARSEILLE 16", "coordonnees_gps": [43.3653397513, 5.31284148855]}, "geometry": {"type": "Point", "coordinates": [5.31284148855, 43.3653397513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2443a8167f8ec486b2766871e16ace168e5ce3aa", "fields": {"nom_de_la_commune": "AGY", "libell_d_acheminement": "AGY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14003"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d2ff60fef03c4e22aea132354549ae920c8ba9", "fields": {"nom_de_la_commune": "AIGNERVILLE", "libell_d_acheminement": "AIGNERVILLE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14004"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58a041687449292342f494a73350304dd966841", "fields": {"nom_de_la_commune": "AMBLIE", "libell_d_acheminement": "AMBLIE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14008"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ad160a99f8c2a84d815ff9ee57d2a7a8137144", "fields": {"nom_de_la_commune": "ANGERVILLE", "libell_d_acheminement": "ANGERVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14012"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd655312399d490bd592007382a28cb6c6f55b9", "fields": {"nom_de_la_commune": "ARGENCES", "libell_d_acheminement": "ARGENCES", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14020"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a53b7923ae1646df5923e100cb96860441a1b66", "fields": {"nom_de_la_commune": "AUBERVILLE", "libell_d_acheminement": "AUBERVILLE", "code_postal": "14640", "coordonnees_gps": [49.3070612081, -0.000385070160039], "code_commune_insee": "14024"}, "geometry": {"type": "Point", "coordinates": [-0.000385070160039, 49.3070612081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b3bdc582a1086cda655926c5c96cdd264c16e2", "fields": {"code_postal": "14490", "code_commune_insee": "14035", "libell_d_acheminement": "BALLEROY SUR DROME", "ligne_5": "VAUBADON", "nom_de_la_commune": "BALLEROY SUR DROME", "coordonnees_gps": [49.1880103756, -0.822491149883]}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d3a09a3c1080ce284697c9cb13f98e0b7e4588", "fields": {"nom_de_la_commune": "BARBEVILLE", "libell_d_acheminement": "BARBEVILLE", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14040"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8cff539dfb9a4b175ad0a869b54d8310047f9db", "fields": {"nom_de_la_commune": "BAVENT", "libell_d_acheminement": "BAVENT", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14046"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae8779af78df9024a180aac94dec720ef5bcc35", "fields": {"nom_de_la_commune": "LA BAZOQUE", "libell_d_acheminement": "LA BAZOQUE", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14050"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615b0500e5d77591dd0a6705032df47041658146", "fields": {"nom_de_la_commune": "BAUQUAY", "libell_d_acheminement": "BAUQUAY", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14056"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0592f580a59453345814f7d98c4c8051b7d4615", "fields": {"nom_de_la_commune": "BENOUVILLE", "libell_d_acheminement": "BENOUVILLE", "code_postal": "14970", "coordonnees_gps": [49.2501319411, -0.286272697586], "code_commune_insee": "14060"}, "geometry": {"type": "Point", "coordinates": [-0.286272697586, 49.2501319411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82451750df54f29baae81dd8ad22d073d76024b0", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LA FERRIERE AU DOYEN", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cc1f9f668c47998b9b1f18d326f07939960443", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LE BENY BOCAGE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840037ccfd62adaaa17f02423ccdac39846660a5", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST MARTIN DON", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc54afd0e71153478c7da876794200ee1ead41f7", "fields": {"nom_de_la_commune": "BISSIERES", "libell_d_acheminement": "BISSIERES", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14075"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812d48d5a991e27a66ed8cc9f8a5ad7b0ac6671a", "fields": {"nom_de_la_commune": "BLANGY LE CHATEAU", "libell_d_acheminement": "BLANGY LE CHATEAU", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14077"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e8657314dac134c886974007014062876aafdc9", "fields": {"nom_de_la_commune": "BONS TASSILLY", "libell_d_acheminement": "BONS TASSILLY", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14088"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1787f946ea68fa9b431256283d65bd647bb0f0c", "fields": {"nom_de_la_commune": "BOURGUEBUS", "libell_d_acheminement": "BOURGUEBUS", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14092"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c710821ff7159d8dcbbd4c971b0a29be576a15b", "fields": {"nom_de_la_commune": "RANCON", "libell_d_acheminement": "RANCON", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87121"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e18b7f2a63978ff51a2d1a84f68a6092fda1a7e", "fields": {"nom_de_la_commune": "RILHAC LASTOURS", "libell_d_acheminement": "RILHAC LASTOURS", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87124"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e2fc5c8de789e39b24fcc69e01d66b4bf59e2b", "fields": {"nom_de_la_commune": "ST BARBANT", "libell_d_acheminement": "ST BARBANT", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87136"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dab82f694c251e19b4531e7994aa0df4caf09b89", "fields": {"nom_de_la_commune": "ST HILAIRE LA TREILLE", "libell_d_acheminement": "ST HILAIRE LA TREILLE", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87149"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2327e736d6cda0a562104e0ea1ee79ca353e224", "fields": {"nom_de_la_commune": "ST HILAIRE LES PLACES", "libell_d_acheminement": "ST HILAIRE LES PLACES", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87150"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b3daf1fbfdb2a8c972b6e2b837c25d55dabf8e", "fields": {"nom_de_la_commune": "ST LEGER LA MONTAGNE", "libell_d_acheminement": "ST LEGER LA MONTAGNE", "code_postal": "87340", "coordonnees_gps": [46.0084101721, 1.47236687338], "code_commune_insee": "87159"}, "geometry": {"type": "Point", "coordinates": [1.47236687338, 46.0084101721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3ea6b4e6572442becd2b8dcc670929f6e66667", "fields": {"nom_de_la_commune": "ST SULPICE LAURIERE", "libell_d_acheminement": "ST SULPICE LAURIERE", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87181"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b074387a142d7cc5357bbb2c6d71cf380de7fe", "fields": {"nom_de_la_commune": "ST SYLVESTRE", "libell_d_acheminement": "ST SYLVESTRE", "code_postal": "87240", "coordonnees_gps": [45.9667893099, 1.40820306332], "code_commune_insee": "87183"}, "geometry": {"type": "Point", "coordinates": [1.40820306332, 45.9667893099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f449b7a59bb2f4645da0e7d40c4e830a016b23", "fields": {"nom_de_la_commune": "THOURON", "libell_d_acheminement": "THOURON", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87197"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd1e3ad019621cd5bd8fc9158241eea00f9244d7", "fields": {"nom_de_la_commune": "VAYRES", "libell_d_acheminement": "VAYRES", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87199"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2707fa2a91274bc4aa75d0c11e7a17f2c5a7885b", "fields": {"nom_de_la_commune": "VERNEUIL SUR VIENNE", "libell_d_acheminement": "VERNEUIL SUR VIENNE", "code_postal": "87430", "coordonnees_gps": [45.8505671289, 1.12901059149], "code_commune_insee": "87201"}, "geometry": {"type": "Point", "coordinates": [1.12901059149, 45.8505671289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf48146b5c3773e40c1956841f31b562592d05c", "fields": {"nom_de_la_commune": "VILLEFAVARD", "libell_d_acheminement": "VILLEFAVARD", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87206"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b16b56b3892face7b29a635c9cc463ff0b41a92", "fields": {"nom_de_la_commune": "ALLARMONT", "libell_d_acheminement": "ALLARMONT", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88005"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "719d32084efa2cfd78908794c3982d10cbb976ce", "fields": {"nom_de_la_commune": "AMEUVELLE", "libell_d_acheminement": "AMEUVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88007"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963f2a110bfa6eb09e9c226501d29a5062c5291f", "fields": {"nom_de_la_commune": "AUTIGNY LA TOUR", "libell_d_acheminement": "AUTIGNY LA TOUR", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88019"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9231fe43c372a5635a347c20b3a295ac016228cb", "fields": {"nom_de_la_commune": "AVILLERS", "libell_d_acheminement": "AVILLERS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88023"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189f0d2e61df5fa584e4867940264ae0fcc256d2", "fields": {"nom_de_la_commune": "AYDOILLES", "libell_d_acheminement": "AYDOILLES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88026"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd5fe8d7f19d809d8ee4f165ac53d8f0c4eafd1d", "fields": {"nom_de_la_commune": "BADMENIL AUX BOIS", "libell_d_acheminement": "BADMENIL AUX BOIS", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88027"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43d30a0922a6a0d2990719e38ca844425acbb8e", "fields": {"nom_de_la_commune": "BAN DE LAVELINE", "libell_d_acheminement": "BAN DE LAVELINE", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88032"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24298ac643c4f927ee2fa798978fe8984f2a01b", "fields": {"nom_de_la_commune": "BASSE SUR LE RUPT", "libell_d_acheminement": "BASSE SUR LE RUPT", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88037"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4804111e45a74f436d80d95ca8fd668f8b37cc6", "fields": {"nom_de_la_commune": "BAYECOURT", "libell_d_acheminement": "BAYECOURT", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88040"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da424011179b4ca062eca7fc28bf6b337dbbfff2", "fields": {"nom_de_la_commune": "BAZOILLES SUR MEUSE", "libell_d_acheminement": "BAZOILLES SUR MEUSE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88044"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c10f0670bf08cbc08eb7c241247316a49d1d604", "fields": {"nom_de_la_commune": "BELMONT LES DARNEY", "libell_d_acheminement": "BELMONT LES DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88049"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbf051dae58b1076180c3df94a87dab4e53a6d0", "fields": {"nom_de_la_commune": "BERTRIMOUTIER", "libell_d_acheminement": "BERTRIMOUTIER", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88054"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5fc2de2b9712ae86b88b2ab27daea20f814b9f", "fields": {"nom_de_la_commune": "BETTONCOURT", "libell_d_acheminement": "BETTONCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88056"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86878f3e0dd8145815174c4ac0c1c88be4e521de", "fields": {"nom_de_la_commune": "BOCQUEGNEY", "libell_d_acheminement": "BOCQUEGNEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88063"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ca015b14832379b584be104c38da41d0853b7e", "fields": {"nom_de_la_commune": "LA BOURGONCE", "libell_d_acheminement": "LA BOURGONCE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88068"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a50c4a78ab86a7542f625454368dd51f69394fe4", "fields": {"nom_de_la_commune": "BOUXIERES AUX BOIS", "libell_d_acheminement": "BOUXIERES AUX BOIS", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88069"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8da5ab49fd01101c875ae0689b9018a59c106f", "fields": {"nom_de_la_commune": "BROUVELIEURES", "libell_d_acheminement": "BROUVELIEURES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88076"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa6a6d4b1b26ebebd56cfee6cbbbe4dbd9767ca", "fields": {"nom_de_la_commune": "CHAMPDRAY", "libell_d_acheminement": "CHAMPDRAY", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88085"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130646e56dece74b7981a56990e992f7b790d847", "fields": {"code_postal": "88240", "code_commune_insee": "88088", "libell_d_acheminement": "LA CHAPELLE AUX BOIS", "ligne_5": "GREMIFONTAINE", "nom_de_la_commune": "LA CHAPELLE AUX BOIS", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167319594f5798bda191bfbecbf03763b4b0fae4", "fields": {"nom_de_la_commune": "CHARMOIS L ORGUEILLEUX", "libell_d_acheminement": "CHARMOIS L ORGUEILLEUX", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88092"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a11a398971ee6cc8541e504279a016c468aeaeb", "fields": {"nom_de_la_commune": "CHATILLON SUR SAONE", "libell_d_acheminement": "CHATILLON SUR SAONE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88096"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6bd447689d38bbc97e02495cca605edb7f0c132", "fields": {"nom_de_la_commune": "CHAUFFECOURT", "libell_d_acheminement": "CHAUFFECOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88097"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56078b6b7ae87042fd4c81d0b2a9acd34c53f9e7", "fields": {"code_postal": "88230", "code_commune_insee": "88106", "libell_d_acheminement": "BAN SUR MEURTHE CLEFCY", "ligne_5": "BAN SUR MEURTHE", "nom_de_la_commune": "BAN SUR MEURTHE CLEFCY", "coordonnees_gps": [48.1335194001, 7.00987852729]}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3287785386f16851c291caf11f9c72724b55c87b", "fields": {"nom_de_la_commune": "LE CLERJUS", "libell_d_acheminement": "LE CLERJUS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88108"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80566eea200abc21981588e878e6f78e7b53ffb3", "fields": {"nom_de_la_commune": "CONTREXEVILLE", "libell_d_acheminement": "CONTREXEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88114"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eff4561876bbc1744b641293521662f880d0c0d", "fields": {"nom_de_la_commune": "DEINVILLERS", "libell_d_acheminement": "DEINVILLERS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88127"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d517ade9b9c7fec16cc514e9aee52d65bec526cd", "fields": {"nom_de_la_commune": "DOCELLES", "libell_d_acheminement": "DOCELLES", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88135"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d83c01fa83f920ada258c98508bbcad390b691e", "fields": {"nom_de_la_commune": "DOMMARTIN LES REMIREMONT", "libell_d_acheminement": "DOMMARTIN LES REMIREMONT", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88148"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "debd6ffb6670555a96d14207a27609d9f30c03cd", "fields": {"nom_de_la_commune": "DOMPAIRE", "libell_d_acheminement": "DOMPAIRE", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88151"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14189b380e62cfa438990319b6d098e03aa67a99", "fields": {"nom_de_la_commune": "DOMREMY LA PUCELLE", "libell_d_acheminement": "DOMREMY LA PUCELLE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88154"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d877d1c462f399dbab123b50c0bc8a97f441277", "fields": {"nom_de_la_commune": "ETIVAL CLAIREFONTAINE", "libell_d_acheminement": "ETIVAL CLAIREFONTAINE", "code_postal": "88480", "coordonnees_gps": [48.3578241534, 6.83459479111], "code_commune_insee": "88165"}, "geometry": {"type": "Point", "coordinates": [6.83459479111, 48.3578241534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "878d855ad06f580126abaee6d4ce9a966ae95b88", "fields": {"nom_de_la_commune": "FAYS", "libell_d_acheminement": "FAYS", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88169"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c1f813810c411d4e8f6127fb1ce633a3cb717d", "fields": {"code_postal": "88240", "code_commune_insee": "88176", "libell_d_acheminement": "FONTENOY LE CHATEAU", "ligne_5": "LE MAGNY", "nom_de_la_commune": "FONTENOY LE CHATEAU", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fb02a75cda36df8395acc900db6187d9301c85", "fields": {"nom_de_la_commune": "FRAIZE", "libell_d_acheminement": "FRAIZE", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88181"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5c8832fac2676aa39150342524df9e11b127a6", "fields": {"nom_de_la_commune": "GELVECOURT ET ADOMPT", "libell_d_acheminement": "GELVECOURT ET ADOMPT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88192"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa69df516427f193a2e4b867f640ea3a894127d9", "fields": {"nom_de_la_commune": "GEMAINGOUTTE", "libell_d_acheminement": "GEMAINGOUTTE", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88193"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22baf82da33fb2691748ffeefb38fa3694c7c1af", "fields": {"nom_de_la_commune": "GERARDMER", "libell_d_acheminement": "GERARDMER", "code_postal": "88400", "coordonnees_gps": [48.0708964326, 6.88124451872], "code_commune_insee": "88196"}, "geometry": {"type": "Point", "coordinates": [6.88124451872, 48.0708964326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a2f75aea2ebc87c50f6a2fab2ed640f0f43558", "fields": {"nom_de_la_commune": "GIRANCOURT", "libell_d_acheminement": "GIRANCOURT", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88201"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eaa6543f0450a9a01b5da4e53c9cd94c9bb75df", "fields": {"nom_de_la_commune": "GIRCOURT LES VIEVILLE", "libell_d_acheminement": "GIRCOURT LES VIEVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88202"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9929b1065eb0bcf5110f9d32209eb8a31114f226", "fields": {"nom_de_la_commune": "GODONCOURT", "libell_d_acheminement": "GODONCOURT", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88208"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0bf5b1a23cd1f68ab8b6c0dfae8ab5fe891b607", "fields": {"nom_de_la_commune": "GORHEY", "libell_d_acheminement": "GORHEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88210"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a10a0c583adf7e84f1ae4d65b8bed7557c6e9e", "fields": {"nom_de_la_commune": "GRANDRUPT", "libell_d_acheminement": "GRANDRUPT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88215"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7d79e25afd3ceb3f7d94778ec56c7f829192ec0", "fields": {"nom_de_la_commune": "GUGNEY AUX AULX", "libell_d_acheminement": "GUGNEY AUX AULX", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88223"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc1e8e3b13206dadd7a36b01de4f9fe88227606", "fields": {"nom_de_la_commune": "HADOL", "libell_d_acheminement": "HADOL", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88225"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d06a697bb00896cecfa9fdc29c3e8a7e48762bd", "fields": {"nom_de_la_commune": "IGNEY", "libell_d_acheminement": "IGNEY", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88247"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e02f4f301317febf15df0a6c759777a8ecf6d9c", "fields": {"nom_de_la_commune": "JARMENIL", "libell_d_acheminement": "JARMENIL", "code_postal": "88550", "coordonnees_gps": [48.1006109096, 6.57246220257], "code_commune_insee": "88250"}, "geometry": {"type": "Point", "coordinates": [6.57246220257, 48.1006109096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182b275fcd06b66ebffa7a6262fa64d2c2c06c7f", "fields": {"nom_de_la_commune": "JUBAINVILLE", "libell_d_acheminement": "JUBAINVILLE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88255"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b64bded0834615795a03ef24b6249f41384196", "fields": {"nom_de_la_commune": "JUSSARUPT", "libell_d_acheminement": "JUSSARUPT", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88256"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b8d210a9ca7e46e768438232a50f8003b6427e", "fields": {"nom_de_la_commune": "JUVAINCOURT", "libell_d_acheminement": "JUVAINCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88257"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e041176901d73875aef98417a350f6fd3474eb", "fields": {"nom_de_la_commune": "LAMARCHE", "libell_d_acheminement": "LAMARCHE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88258"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2e97e611dbb2686b0f4279d3889f7bd7c75fd7", "fields": {"nom_de_la_commune": "LAVAL SUR VOLOGNE", "libell_d_acheminement": "LAVAL SUR VOLOGNE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88261"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216cd9ebbc5d21417d5e85ad214597c4f2dbe515", "fields": {"nom_de_la_commune": "LEPANGES SUR VOLOGNE", "libell_d_acheminement": "LEPANGES SUR VOLOGNE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88266"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1527ac330dce88762919c72dc14684d2d9b263", "fields": {"nom_de_la_commune": "LIFFOL LE GRAND", "libell_d_acheminement": "LIFFOL LE GRAND", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88270"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0665e8a01fa1ef0614d9ccc676a47990fd0e44f8", "fields": {"nom_de_la_commune": "LONGCHAMP", "libell_d_acheminement": "LONGCHAMP", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88273"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45968d5c4080d16d3f805617c5c53fa02cd6c553", "fields": {"nom_de_la_commune": "MADECOURT", "libell_d_acheminement": "MADECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88279"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ca768b8a8302d8371cb93738bbc66cbc421245", "fields": {"nom_de_la_commune": "MALAINCOURT", "libell_d_acheminement": "MALAINCOURT", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88283"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0ff67a7a74d680a8d813341e78c3ca731db167", "fields": {"nom_de_la_commune": "MARTIGNY LES BAINS", "libell_d_acheminement": "MARTIGNY LES BAINS", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88289"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6411967389ead27b2d15d5c37e8be42c8234d57b", "fields": {"nom_de_la_commune": "MARTIGNY LES GERBONVAUX", "libell_d_acheminement": "MARTIGNY LES GERBONVAUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88290"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e61d831c8362b2ab4c9ab7e6964b76b60f61ef", "fields": {"nom_de_la_commune": "MEDONVILLE", "libell_d_acheminement": "MEDONVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88296"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "291fa3a28f76fe88996104c3be02b8828aca956b", "fields": {"nom_de_la_commune": "MENARMONT", "libell_d_acheminement": "MENARMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88298"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f05d24197cd6caa4ec866672ae677e3dededf1", "fields": {"nom_de_la_commune": "MORELMAISON", "libell_d_acheminement": "MORELMAISON", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88312"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581128f4f046cfbf17aef10b726dde80b1e9ca24", "fields": {"nom_de_la_commune": "NAYEMONT LES FOSSES", "libell_d_acheminement": "NAYEMONT LES FOSSES", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88320"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d78c3372579abfb1589c80425ced6889a99413b", "fields": {"nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", "libell_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88322"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d5b5ccb8bc1024a184b676d992ef1556cea753d", "fields": {"nom_de_la_commune": "LA NEUVEVILLE SOUS CHATENOIS", "libell_d_acheminement": "LA NEUVEVILLE SOUS CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88324"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad3ba8b6ba8472cdef7dfb665778f523666a720", "fields": {"nom_de_la_commune": "NEUVILLERS SUR FAVE", "libell_d_acheminement": "NEUVILLERS SUR FAVE", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88326"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea26f45fcc20a8e07a3d4d079eb1d6971af54c3", "fields": {"nom_de_la_commune": "NONVILLE", "libell_d_acheminement": "NONVILLE", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88330"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57a30ae5b53ef6d43ef619ff7474b67012857f8", "fields": {"nom_de_la_commune": "NORROY", "libell_d_acheminement": "NORROY", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88332"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959c2d2f2bb4cd875bab7568590dcf6f90d78f66", "fields": {"nom_de_la_commune": "OFFROICOURT", "libell_d_acheminement": "OFFROICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88335"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe88b6472c05663b9689c5527c765a245f6be3a", "fields": {"nom_de_la_commune": "PADOUX", "libell_d_acheminement": "PADOUX", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88340"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92a47c0f62ba4678338aa4e109d0bbf20bdea4b", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88347"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a1f9637ad6221fb7bfc68bb05c108e5a6fc16", "fields": {"nom_de_la_commune": "PIERREPONT SUR L ARENTELE", "libell_d_acheminement": "PIERREPONT SUR L ARENTELE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88348"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657ece7892841b92620367dc4632962a0e808053", "fields": {"nom_de_la_commune": "PLAINFAING", "libell_d_acheminement": "PLAINFAING", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88349"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b4889ab36a314d1a4513a81d64216f83e9bd8b", "fields": {"nom_de_la_commune": "PORTIEUX", "libell_d_acheminement": "PORTIEUX", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88355"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab33d84b2f76d8140a0bf4e36b2d3e9e114cf95a", "fields": {"nom_de_la_commune": "LE PUID", "libell_d_acheminement": "LE PUID", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88362"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb7495dda7452bba84bf337d94de373cfcc8483", "fields": {"nom_de_la_commune": "RAMBERVILLERS", "libell_d_acheminement": "RAMBERVILLERS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88367"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36466b2b355908f7686104251cee83bb8ad43154", "fields": {"nom_de_la_commune": "RAMECOURT", "libell_d_acheminement": "RAMECOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88368"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca1a9f8a7bcdd2af78914ae558170f2e2dc51d4", "fields": {"nom_de_la_commune": "RAMONCHAMP", "libell_d_acheminement": "RAMONCHAMP", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88369"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77da9e361a3b91d7794b9852fd3e07e6acf357a8", "fields": {"nom_de_la_commune": "RAON AUX BOIS", "libell_d_acheminement": "RAON AUX BOIS", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88371"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b18a665bb7cbd73d71787333138dff10f62dd745", "fields": {"nom_de_la_commune": "REHAUPAL", "libell_d_acheminement": "REHAUPAL", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88380"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cb4c4a5dbd44e54908e72c811710cf4c7d3324", "fields": {"nom_de_la_commune": "RELANGES", "libell_d_acheminement": "RELANGES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88381"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f35d80c8ba7f9016ffa6bd44244a8ca1a01771", "fields": {"nom_de_la_commune": "REMOVILLE", "libell_d_acheminement": "REMOVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88387"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f67269da3f019174762cb562c38e08e0a65f69b", "fields": {"nom_de_la_commune": "REPEL", "libell_d_acheminement": "REPEL", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88389"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2e3e63e4776a6a80fb20b3efc47a4d1b6b213a", "fields": {"nom_de_la_commune": "ROCHESSON", "libell_d_acheminement": "ROCHESSON", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88391"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0583c85b15060fcf252a4b05428442363d4e204b", "fields": {"nom_de_la_commune": "ROLLAINVILLE", "libell_d_acheminement": "ROLLAINVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88393"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834a8c87abad553f93d606813f06e3562a077478", "fields": {"nom_de_la_commune": "ROMAIN AUX BOIS", "libell_d_acheminement": "ROMAIN AUX BOIS", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88394"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d864f252822503a021ee30ef8436aed0dd3daf", "fields": {"nom_de_la_commune": "LE ROULIER", "libell_d_acheminement": "LE ROULIER", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88399"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6632962f554575d5d73e5d939a70ef66dd13ada9", "fields": {"nom_de_la_commune": "ROUVRES EN XAINTOIS", "libell_d_acheminement": "ROUVRES EN XAINTOIS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88400"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d483ecddba401b245da2f5964a90c3b7262756b8", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88421"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db123c5a43981ca2aa6ad7359b3008900faa93b0", "fields": {"nom_de_la_commune": "GALAMETZ", "libell_d_acheminement": "GALAMETZ", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62365"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61139c9a33fc4722b38ed5451adf0075556f5481", "fields": {"nom_de_la_commune": "GAVRELLE", "libell_d_acheminement": "GAVRELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62369"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0244d69ef8ab506075d21eded085c909f2a67e5c", "fields": {"nom_de_la_commune": "GONNEHEM", "libell_d_acheminement": "GONNEHEM", "code_postal": "62920", "coordonnees_gps": [50.5563250564, 2.56747944823], "code_commune_insee": "62376"}, "geometry": {"type": "Point", "coordinates": [2.56747944823, 50.5563250564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b124307200512bfbbc2bea0e3fd6a1a32116ca3", "fields": {"nom_de_la_commune": "GRAND RULLECOURT", "libell_d_acheminement": "GRAND RULLECOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62385"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df462a61c84e9f9e00ef32fbbc41bb566c00e7e5", "fields": {"nom_de_la_commune": "GUISY", "libell_d_acheminement": "GUISY", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62398"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b6c895176b8e5c3b378db8e2a91af306262da0d", "fields": {"nom_de_la_commune": "HALLOY", "libell_d_acheminement": "HALLOY", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62404"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fa69014e13cc04b008d8d320588ca4326ad1127", "fields": {"nom_de_la_commune": "HAM EN ARTOIS", "libell_d_acheminement": "HAM EN ARTOIS", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62407"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f000b7516c732fca028d5ef8ce79189ef8d2e40", "fields": {"nom_de_la_commune": "HAMES BOUCRES", "libell_d_acheminement": "HAMES BOUCRES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62408"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf0735af30b19ea3ae04f1dee6668e337bde600", "fields": {"nom_de_la_commune": "HANNESCAMPS", "libell_d_acheminement": "HANNESCAMPS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62409"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74836afb8516acb49cd9005531508116d40d63cd", "fields": {"nom_de_la_commune": "HARAVESNES", "libell_d_acheminement": "HARAVESNES", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62411"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f98923b7b8697fce62f2af728fcfafb0bf70f400", "fields": {"nom_de_la_commune": "HARDINGHEN", "libell_d_acheminement": "HARDINGHEN", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62412"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ca21c396b3356879aafb1bca2ee496a18dba13", "fields": {"nom_de_la_commune": "HAUCOURT", "libell_d_acheminement": "HAUCOURT", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62414"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c2ed38445e2046b594063d5a3649664f7caab1", "fields": {"nom_de_la_commune": "HAUT LOQUIN", "libell_d_acheminement": "HAUT LOQUIN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62419"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaa1f941235b8ce324020873f0e79392bca2ce6", "fields": {"nom_de_la_commune": "HELFAUT", "libell_d_acheminement": "HELFAUT", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62423"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed448c7ab1d232dbd6d2fad68aeb0191483faa86", "fields": {"nom_de_la_commune": "HENDECOURT LES CAGNICOURT", "libell_d_acheminement": "HENDECOURT LES CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62424"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4789ca173a13e25ed1c38c6b0a3e44221221de", "fields": {"nom_de_la_commune": "HENDECOURT LES RANSART", "libell_d_acheminement": "HENDECOURT LES RANSART", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62425"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8ae99d698fcf60aebccefcdfd614510e876778", "fields": {"nom_de_la_commune": "HENIN SUR COJEUL", "libell_d_acheminement": "HENIN SUR COJEUL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62428"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2b9f9c132cb6fbc4686360338da19b691c24c9", "fields": {"nom_de_la_commune": "HERBELLES", "libell_d_acheminement": "HERBELLES", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62431"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8628a8ee91e97139717ace5209deb6d571b12c43", "fields": {"nom_de_la_commune": "HERLINCOURT", "libell_d_acheminement": "HERLINCOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62435"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51cc3b6b80183a01bc7cdcc9fb462f32339e45c", "fields": {"nom_de_la_commune": "HERVELINGHEN", "libell_d_acheminement": "HERVELINGHEN", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62444"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132877d4ebd7b2c97d9d5c22bfc7f55ff1863551", "fields": {"nom_de_la_commune": "HESDIN L ABBE", "libell_d_acheminement": "HESDIN L ABBE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62448"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65c5e5094982dbe87f6a42068b23a2b8d681621", "fields": {"nom_de_la_commune": "HINGES", "libell_d_acheminement": "HINGES", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62454"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fe0acbfb19d566a3f269357df782ecec5fe4be", "fields": {"nom_de_la_commune": "HUBERSENT", "libell_d_acheminement": "HUBERSENT", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62460"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd1463c1bc649f5621eb75f1b257456843a4844", "fields": {"nom_de_la_commune": "HUBY ST LEU", "libell_d_acheminement": "HUBY ST LEU", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62461"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f460bd12d2bbb054edd6025ffd9ad19e4c03eb", "fields": {"nom_de_la_commune": "INCOURT", "libell_d_acheminement": "INCOURT", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62470"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4344c597a6917057133294e22f8ceafeb35ba3", "fields": {"nom_de_la_commune": "INXENT", "libell_d_acheminement": "INXENT", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62472"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f0781189d0de71420b765fe37dc9a395787476", "fields": {"code_postal": "62330", "code_commune_insee": "62473", "libell_d_acheminement": "ISBERGUES", "ligne_5": "BERGUETTE", "nom_de_la_commune": "ISBERGUES", "coordonnees_gps": [50.61399538, 2.46439960248]}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67c52f71d5a6eaa6047b3bf1e6db18b55154090", "fields": {"nom_de_la_commune": "ISQUES", "libell_d_acheminement": "ISQUES", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62474"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53203941cf7ae47517cde187e161995b75314a7e", "fields": {"nom_de_la_commune": "JOURNY", "libell_d_acheminement": "JOURNY", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62478"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f882604d5dc876ce1c6cffc82ab58d4685f9fb9", "fields": {"nom_de_la_commune": "LABEUVRIERE", "libell_d_acheminement": "LABEUVRIERE", "code_postal": "62122", "coordonnees_gps": [50.5202151266, 2.54882320561], "code_commune_insee": "62479"}, "geometry": {"type": "Point", "coordinates": [2.54882320561, 50.5202151266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b69e7766c436c77315341584d75ea480347c6d", "fields": {"nom_de_la_commune": "LABOURSE", "libell_d_acheminement": "LABOURSE", "code_postal": "62113", "coordonnees_gps": [50.498906195, 2.68600111131], "code_commune_insee": "62480"}, "geometry": {"type": "Point", "coordinates": [2.68600111131, 50.498906195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1479a4568da36a451b774cb2a5b846d8fbb4374", "fields": {"nom_de_la_commune": "LAGNICOURT MARCEL", "libell_d_acheminement": "LAGNICOURT MARCEL", "code_postal": "62159", "coordonnees_gps": [50.1507346874, 2.907151936], "code_commune_insee": "62484"}, "geometry": {"type": "Point", "coordinates": [2.907151936, 50.1507346874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc5314d6f8ef90084dbe075690ee7393e2ad381", "fields": {"nom_de_la_commune": "LAMBRES", "libell_d_acheminement": "LAMBRES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62486"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7c4f595472264044169636031c2025bf512fc8", "fields": {"nom_de_la_commune": "LANDRETHUN LE NORD", "libell_d_acheminement": "LANDRETHUN LE NORD", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62487"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a251558d3923549e1558085988a76d18429093b", "fields": {"nom_de_la_commune": "LANDRETHUN LES ARDRES", "libell_d_acheminement": "LANDRETHUN LES ARDRES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62488"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2bcfdcf13b3e7c4db080180eb689880f50d53f", "fields": {"nom_de_la_commune": "LAPUGNOY", "libell_d_acheminement": "LAPUGNOY", "code_postal": "62122", "coordonnees_gps": [50.5202151266, 2.54882320561], "code_commune_insee": "62489"}, "geometry": {"type": "Point", "coordinates": [2.54882320561, 50.5202151266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5447bfccdf479fcae46e2ae7888e00d4606f98", "fields": {"nom_de_la_commune": "LEFAUX", "libell_d_acheminement": "LEFAUX", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62496"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3f604d860992b92cec6e25f25042537a1e1fcc", "fields": {"nom_de_la_commune": "LEPINE", "libell_d_acheminement": "LEPINE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62499"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c189e6e88ea7ca10aae182de2b1669c1ef99c5", "fields": {"nom_de_la_commune": "LESPINOY", "libell_d_acheminement": "LESPINOY", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62501"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbcff647184071c7050826ec0fb10198bf7abecb", "fields": {"nom_de_la_commune": "LEULINGHEN BERNES", "libell_d_acheminement": "LEULINGHEN BERNES", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62505"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f69e7376af69aaa582b3ba8d39378eedbef98d", "fields": {"nom_de_la_commune": "LIGNY ST FLOCHEL", "libell_d_acheminement": "LIGNY ST FLOCHEL", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62514"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9358523d0ac5ab6a60d5994bda0966d12c6153e", "fields": {"nom_de_la_commune": "LONGFOSSE", "libell_d_acheminement": "LONGFOSSE", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62524"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65581786533b62b5e4b9868c41949a7a4a77a3e", "fields": {"nom_de_la_commune": "LORGIES", "libell_d_acheminement": "LORGIES", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62529"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8fc305ddb50b56c2a913ae45d4b8d23c7fb1c4e", "fields": {"nom_de_la_commune": "LOTTINGHEN", "libell_d_acheminement": "LOTTINGHEN", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62530"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e4551837b598e6bd9b43c64d029bc8146740c4", "fields": {"nom_de_la_commune": "LOZINGHEM", "libell_d_acheminement": "LOZINGHEM", "code_postal": "62540", "coordonnees_gps": [50.5065870429, 2.50257888939], "code_commune_insee": "62532"}, "geometry": {"type": "Point", "coordinates": [2.50257888939, 50.5065870429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f2b28ee845aeca29aebc6114e476792c8b02f6", "fields": {"nom_de_la_commune": "MAGNICOURT SUR CANCHE", "libell_d_acheminement": "MAGNICOURT SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62537"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6163776497e054f679ac8c367dadcc24808b598e", "fields": {"nom_de_la_commune": "MAMETZ", "libell_d_acheminement": "MAMETZ", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62543"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92f4285ab8028a219d01618ed3b829ffc63be27", "fields": {"nom_de_la_commune": "MANIN", "libell_d_acheminement": "MANIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62544"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe93ab897e3a058c478b30db7b0eb8201f086be9", "fields": {"nom_de_la_commune": "MANINGHEN HENNE", "libell_d_acheminement": "MANINGHEN HENNE", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62546"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e7eb3a03c00f867619edc03152300c4b6bb407", "fields": {"nom_de_la_commune": "MARANT", "libell_d_acheminement": "MARANT", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62547"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9f10cbcc60b8e0ac2938b873694d55a300ce1ab", "fields": {"nom_de_la_commune": "MAZINGARBE", "libell_d_acheminement": "MAZINGARBE", "code_postal": "62670", "coordonnees_gps": [50.4684801165, 2.7243616205], "code_commune_insee": "62563"}, "geometry": {"type": "Point", "coordinates": [2.7243616205, 50.4684801165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5df8a2e932b394f6cd873c1e8bad20b4d71fe3", "fields": {"nom_de_la_commune": "MERCATEL", "libell_d_acheminement": "MERCATEL", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62568"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07cab24455fcad8f796085b2f8678fbf0a9fcf83", "fields": {"nom_de_la_commune": "MERCK ST LIEVIN", "libell_d_acheminement": "MERCK ST LIEVIN", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62569"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ce593001a5be4c9898b85ae2cb32c37cd24ea7", "fields": {"nom_de_la_commune": "MERICOURT", "libell_d_acheminement": "MERICOURT", "code_postal": "62680", "coordonnees_gps": [50.3988010681, 2.86767401948], "code_commune_insee": "62570"}, "geometry": {"type": "Point", "coordinates": [2.86767401948, 50.3988010681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c680e18dca1139216dc4c3504231ca1637e455c4", "fields": {"nom_de_la_commune": "MONTCAVREL", "libell_d_acheminement": "MONTCAVREL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62585"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bece0071ba51ac332ddd8f428bce284ef45bac74", "fields": {"nom_de_la_commune": "MONT ST ELOI", "libell_d_acheminement": "MONT ST ELOI", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62589"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a814a7ef8630c5d4d3eff7348ec6d16ef038b28", "fields": {"nom_de_la_commune": "MORCHIES", "libell_d_acheminement": "MORCHIES", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62591"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "febee72450fb4276f9ebd54dc16d26c7585e1967", "fields": {"nom_de_la_commune": "MOYENNEVILLE", "libell_d_acheminement": "MOYENNEVILLE", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62597"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02aef1838a2d45527b1d8360d35da295718f101", "fields": {"nom_de_la_commune": "MUNCQ NIEURLET", "libell_d_acheminement": "MUNCQ NIEURLET", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62598"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b70a654772c1e0a7861b4527678b2e1509f24958", "fields": {"nom_de_la_commune": "NEDON", "libell_d_acheminement": "NEDON", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62600"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ac3b21c37ac5ebe10ef6ba33b69e97ea0bd2a4", "fields": {"code_postal": "62152", "code_commune_insee": "62604", "libell_d_acheminement": "NEUFCHATEL HARDELOT", "ligne_5": "HARDELOT PLAGE", "nom_de_la_commune": "NEUFCHATEL HARDELOT", "coordonnees_gps": [50.6179006282, 1.6259917167]}, "geometry": {"type": "Point", "coordinates": [1.6259917167, 50.6179006282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930e95f5dedc29fc709383cbc930d23f34efaf65", "fields": {"nom_de_la_commune": "NOEUX LES AUXI", "libell_d_acheminement": "NOEUX LES AUXI", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62616"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8238b28dd5577917b16f3b85e851c4537073a4", "fields": {"nom_de_la_commune": "NOEUX LES MINES", "libell_d_acheminement": "NOEUX LES MINES", "code_postal": "62290", "coordonnees_gps": [50.4750238177, 2.66234838111], "code_commune_insee": "62617"}, "geometry": {"type": "Point", "coordinates": [2.66234838111, 50.4750238177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5743feb1569b7a42c0448ba38b13abddb0851b21", "fields": {"nom_de_la_commune": "NOREUIL", "libell_d_acheminement": "NOREUIL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62619"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e27eac88d3a73920e23a7f897cf245cd43b8b5", "fields": {"nom_de_la_commune": "NOYELLES SOUS BELLONNE", "libell_d_acheminement": "NOYELLES SOUS BELLONNE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62627"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bc3cc91249c39137deb957f33d3144ae33e2e9", "fields": {"nom_de_la_commune": "NUNCQ HAUTECOTE", "libell_d_acheminement": "NUNCQ HAUTECOTE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62631"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b4c50a3e21b36f7d0a5d6e5723dad0752c52a5", "fields": {"nom_de_la_commune": "OFFRETHUN", "libell_d_acheminement": "OFFRETHUN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62636"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5faea0e657155fdbdc5e2025bf4687c55fe3241", "fields": {"nom_de_la_commune": "OURTON", "libell_d_acheminement": "OURTON", "code_postal": "62460", "coordonnees_gps": [50.4531419324, 2.47496250173], "code_commune_insee": "62642"}, "geometry": {"type": "Point", "coordinates": [2.47496250173, 50.4531419324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601d50df604377e504cb84cc3e67e357e7586cc0", "fields": {"nom_de_la_commune": "PARENTY", "libell_d_acheminement": "PARENTY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62648"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1713329d3ae942ba71047c993d0413ef9856909f", "fields": {"nom_de_la_commune": "PELVES", "libell_d_acheminement": "PELVES", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62650"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2a14624e1f23ba4d8da5249a3a703a0b11b5ba", "fields": {"code_postal": "62140", "code_commune_insee": "62661", "libell_d_acheminement": "BOUIN PLUMOISON", "ligne_5": "BOUIN", "nom_de_la_commune": "BOUIN PLUMOISON", "coordonnees_gps": [50.3629507199, 2.0044166227]}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a26b11630df16febdda78cf881b5adbec5d66bb", "fields": {"nom_de_la_commune": "PREDEFIN", "libell_d_acheminement": "PREDEFIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62668"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "133b7ed497c9a109389c6147c073cbf009511b93", "fields": {"nom_de_la_commune": "PRESSY", "libell_d_acheminement": "PRESSY", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62669"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95708efd93cfc74f68f70737faf9fa1d64271fc0", "fields": {"nom_de_la_commune": "QUOEUX HAUT MAINIL", "libell_d_acheminement": "QUOEUX HAUT MAINIL", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62683"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff29c996f5dca0d103b1117e3061dcd507205a9c", "fields": {"nom_de_la_commune": "RACQUINGHEM", "libell_d_acheminement": "RACQUINGHEM", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62684"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab184b410c0dad6fadf2bffbf5020a3a5f68dd0", "fields": {"nom_de_la_commune": "RADINGHEM", "libell_d_acheminement": "RADINGHEM", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62685"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4c8a67d4a48ed4bb151782b3ef5048b1fe828e", "fields": {"nom_de_la_commune": "RAYE SUR AUTHIE", "libell_d_acheminement": "RAYE SUR AUTHIE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62690"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7887acf15a082888164ea48f20ec6ee2a772b1c5", "fields": {"nom_de_la_commune": "REBREUVIETTE", "libell_d_acheminement": "REBREUVIETTE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62695"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b171d0ee935a1a2c34445760fed97a3bb870710d", "fields": {"nom_de_la_commune": "RECQUES SUR HEM", "libell_d_acheminement": "RECQUES SUR HEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62699"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b92741eeb2668b24543c5e7dee178f458db5d7", "fields": {"nom_de_la_commune": "RELY", "libell_d_acheminement": "RELY", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62701"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7bc968ccb222de451bc0e70da96fd9f18092be", "fields": {"nom_de_la_commune": "RETY", "libell_d_acheminement": "RETY", "code_postal": "62720", "coordonnees_gps": [50.7869009798, 1.75735193267], "code_commune_insee": "62705"}, "geometry": {"type": "Point", "coordinates": [1.75735193267, 50.7869009798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b68c45c544d42961a863ad65b96aff221b648d8", "fields": {"nom_de_la_commune": "RODELINGHEM", "libell_d_acheminement": "RODELINGHEM", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62716"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19628bdf92fca37ef7b17fb93c078ebe979c0884", "fields": {"nom_de_la_commune": "ROUSSENT", "libell_d_acheminement": "ROUSSENT", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62723"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "782eaecf4d060fa1fc85fc0e00a519e1404d4775", "fields": {"nom_de_la_commune": "RUMINGHEM", "libell_d_acheminement": "RUMINGHEM", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62730"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4393348b2bb9faa428575ce000d0339e70d09524", "fields": {"nom_de_la_commune": "RUYAULCOURT", "libell_d_acheminement": "RUYAULCOURT", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62731"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1436cc899f5601ccdf62602298f73c7aa4b05f", "fields": {"nom_de_la_commune": "SAILLY EN OSTREVENT", "libell_d_acheminement": "SAILLY EN OSTREVENT", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62734"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fea6a75e16e7f70b2c3cbd7085c5c47071f406c", "fields": {"nom_de_la_commune": "SAILLY SUR LA LYS", "libell_d_acheminement": "SAILLY SUR LA LYS", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62736"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb8d6980624d7924f81859029d818eaed0229f9", "fields": {"nom_de_la_commune": "SAINS LES MARQUION", "libell_d_acheminement": "SAINS LES MARQUION", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62739"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4735219384319145ef46d8d3517e61bacf219ab7", "fields": {"nom_de_la_commune": "ST JOSSE", "libell_d_acheminement": "ST JOSSE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62752"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4295c3e6925ed07e3e8dcb01ea5168103d1389f", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62754"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fe38429c7cc944e893dcd53d5e8c574c2921be", "fields": {"nom_de_la_commune": "ST MARTIN SUR COJEUL", "libell_d_acheminement": "ST MARTIN SUR COJEUL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62761"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5887028a9e0bc8e1ff1c88309541813aeeec46a", "fields": {"nom_de_la_commune": "ST MICHEL SUR TERNOISE", "libell_d_acheminement": "ST MICHEL SUR TERNOISE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62763"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9efc8f03d9a26ccf187a1359fa127ca88c3597", "fields": {"nom_de_la_commune": "ST NICOLAS", "libell_d_acheminement": "ST NICOLAS", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62764"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dde01478415071e5b51cce72944971d4c6fd35f", "fields": {"nom_de_la_commune": "ST OMER CAPELLE", "libell_d_acheminement": "ST OMER CAPELLE", "code_postal": "62162", "coordonnees_gps": [50.937258857, 2.08448464494], "code_commune_insee": "62766"}, "geometry": {"type": "Point", "coordinates": [2.08448464494, 50.937258857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6564e9d391999e7f5815ddcc936245797fc9aa", "fields": {"nom_de_la_commune": "SALLAUMINES", "libell_d_acheminement": "SALLAUMINES", "code_postal": "62430", "coordonnees_gps": [50.4204114482, 2.86115477018], "code_commune_insee": "62771"}, "geometry": {"type": "Point", "coordinates": [2.86115477018, 50.4204114482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e351a8ba454be03e550935bef86ab2ca477c1d76", "fields": {"nom_de_la_commune": "LE SARS", "libell_d_acheminement": "LE SARS", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62777"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd209e4d01ad3e75a4082df0eca16af8252b5a9", "fields": {"nom_de_la_commune": "SAUCHY LESTREE", "libell_d_acheminement": "SAUCHY LESTREE", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62781"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb9a7356180c0cdb468550c8ddbf4235ab36639", "fields": {"nom_de_la_commune": "SAULCHOY", "libell_d_acheminement": "SAULCHOY", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62783"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2b51f0d322204ba98869976df626bd26d45f67", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62786"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4f07c7161fb00181f306daa1e6f19fc46bf8b70", "fields": {"nom_de_la_commune": "SENLECQUES", "libell_d_acheminement": "SENLECQUES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62789"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedcb73b22bb6717d4926b6e361cfa480ebf9f49", "fields": {"nom_de_la_commune": "WOIGNARUE", "libell_d_acheminement": "WOIGNARUE", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80826"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0dc307c309c298037bbd4cc2bd950236dcb41c9", "fields": {"nom_de_la_commune": "Y", "libell_d_acheminement": "Y", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80829"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a892a7dcb04054ddae84fa91da07d8fadcd3fe", "fields": {"nom_de_la_commune": "YVRENCHEUX", "libell_d_acheminement": "YVRENCHEUX", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80833"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948950b03e84a47037442c9c0fdd2da5721349ad", "fields": {"nom_de_la_commune": "YZEUX", "libell_d_acheminement": "YZEUX", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80835"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bcc2995e457973c69972d46d6307540f8d168b9", "fields": {"nom_de_la_commune": "YONVAL", "libell_d_acheminement": "YONVAL", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80836"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bdfb35cd7bbe7513a9cf62fc4e424a80f1d6b6", "fields": {"nom_de_la_commune": "ALMAYRAC", "libell_d_acheminement": "ALMAYRAC", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81008"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84596897944eedf11272913e72403ea12a00da3f", "fields": {"nom_de_la_commune": "ARTHES", "libell_d_acheminement": "ARTHES", "code_postal": "81160", "coordonnees_gps": [43.9525794482, 2.22487127822], "code_commune_insee": "81018"}, "geometry": {"type": "Point", "coordinates": [2.22487127822, 43.9525794482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00924635f8a31ab23fda557a8197827be1a41ac", "fields": {"nom_de_la_commune": "BELLESERRE", "libell_d_acheminement": "BELLESERRE", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81027"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729795b9f8cb16c73e20570583d14e2f2be01ce8", "fields": {"nom_de_la_commune": "BOURNAZEL", "libell_d_acheminement": "BOURNAZEL", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81035"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9cadadf7bd4137ce4222f883f8b7cbf5564885", "fields": {"nom_de_la_commune": "BRIATEXTE", "libell_d_acheminement": "BRIATEXTE", "code_postal": "81390", "coordonnees_gps": [43.7576771475, 1.89892940194], "code_commune_insee": "81039"}, "geometry": {"type": "Point", "coordinates": [1.89892940194, 43.7576771475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5c5ace7fda3f543f57009d6dd79dbaf60c638e", "fields": {"nom_de_la_commune": "BURLATS", "libell_d_acheminement": "BURLATS", "code_postal": "81100", "coordonnees_gps": [43.6219968606, 2.25901530016], "code_commune_insee": "81042"}, "geometry": {"type": "Point", "coordinates": [2.25901530016, 43.6219968606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5fedb578931d7362690d37b2369de4f1156d0e0", "fields": {"nom_de_la_commune": "CABANES", "libell_d_acheminement": "CABANES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81044"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f83069b9c2425a6e5b9a3154a3f29c3571d54bf", "fields": {"nom_de_la_commune": "CADIX", "libell_d_acheminement": "CADIX", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81047"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc62c6b90ee7ead29c87d16a331fbce9ae17f0e", "fields": {"nom_de_la_commune": "CAMBON LES LAVAUR", "libell_d_acheminement": "CAMBON LES LAVAUR", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81050"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21956c70f2230fa96213ddb06181fc2dd4233271", "fields": {"code_postal": "81260", "code_commune_insee": "81062", "libell_d_acheminement": "FONTRIEU", "ligne_5": "FERRIERES", "nom_de_la_commune": "FONTRIEU", "coordonnees_gps": [43.6113142668, 2.53318559265]}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b6f80e80bae20ef63f42834f4fbec02f1e3388", "fields": {"nom_de_la_commune": "CASTELNAU DE LEVIS", "libell_d_acheminement": "CASTELNAU DE LEVIS", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81063"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7912ed73299510af5512eeea373e99b08ae9e4a0", "fields": {"nom_de_la_commune": "CASTRES", "libell_d_acheminement": "CASTRES", "code_postal": "81100", "coordonnees_gps": [43.6219968606, 2.25901530016], "code_commune_insee": "81065"}, "geometry": {"type": "Point", "coordinates": [2.25901530016, 43.6219968606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05c7070875cc12b3b306b2018bdd96667af68c5", "fields": {"nom_de_la_commune": "COMBEFA", "libell_d_acheminement": "COMBEFA", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81068"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928ffef54f206246210fa8499e22ee827607100f", "fields": {"nom_de_la_commune": "CUNAC", "libell_d_acheminement": "CUNAC", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81074"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b2a27febdbba13ac715d5760b5b4c5c68210c1", "fields": {"nom_de_la_commune": "CUQ TOULZA", "libell_d_acheminement": "CUQ TOULZA", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81076"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c875150850872022276453d57c2b53ea6367b8", "fields": {"nom_de_la_commune": "ESCOUSSENS", "libell_d_acheminement": "ESCOUSSENS", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81084"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af309a3dd155b7f5311779dd0b6cc6b7d730c06b", "fields": {"nom_de_la_commune": "ESPERAUSSES", "libell_d_acheminement": "ESPERAUSSES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81086"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a745d1f704fa23879e308a4ec93954c298d12e98", "fields": {"nom_de_la_commune": "FRAISSINES", "libell_d_acheminement": "FRAISSINES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81094"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a8bef83a1e8514deac596f561883edd800420e", "fields": {"nom_de_la_commune": "FRAUSSEILLES", "libell_d_acheminement": "FRAUSSEILLES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81095"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8995c7a7ca5a6fb0d5836c1024aaebe2f3ff639e", "fields": {"nom_de_la_commune": "GIJOUNET", "libell_d_acheminement": "GIJOUNET", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81103"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b91d9d9122001c25961d53138b786f0ba50fc8", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81109"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef25e275f91c2ec9da2dc81f12bf662bf0a72d6", "fields": {"nom_de_la_commune": "LABARTHE BLEYS", "libell_d_acheminement": "LABARTHE BLEYS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81111"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb44aa37ff90dff6a29aec8be6dc9e647093d6bf", "fields": {"nom_de_la_commune": "LABASTIDE ST GEORGES", "libell_d_acheminement": "LABASTIDE ST GEORGES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81116"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "146e144c9a0f1ca7d325af85e4d0f9c74310d04e", "fields": {"nom_de_la_commune": "LABRUGUIERE", "libell_d_acheminement": "LABRUGUIERE", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81120"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658e08e2810998a19d540118b94725ccd8abea63", "fields": {"code_postal": "81220", "code_commune_insee": "81132", "libell_d_acheminement": "GUITALENS L ALBAREDE", "ligne_5": "GUITALENS", "nom_de_la_commune": "GUITALENS L ALBAREDE", "coordonnees_gps": [43.6536851734, 1.97477530689]}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff6f9cf0c031892c68c022adb09d08f9a24349e", "fields": {"nom_de_la_commune": "LAMILLARIE", "libell_d_acheminement": "LAMILLARIE", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81133"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb7cc178be9691716848960128050e988e65e32", "fields": {"nom_de_la_commune": "LAPARROUQUIAL", "libell_d_acheminement": "LAPARROUQUIAL", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81135"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4b830c5d33e9388f5a0ba9573ce633f61ac1ec", "fields": {"nom_de_la_commune": "LARROQUE", "libell_d_acheminement": "LARROQUE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81136"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6625152d3bd72d6c908b692e0612bf02f7b396ae", "fields": {"nom_de_la_commune": "LOUPIAC", "libell_d_acheminement": "LOUPIAC", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81149"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74252a9da8fd4cfcb48395b405dd2c3f0910f062", "fields": {"nom_de_la_commune": "LUGAN", "libell_d_acheminement": "LUGAN", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81150"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d025bacf8d444c5c68c7195741b63f7dc0ca3246", "fields": {"nom_de_la_commune": "MAGRIN", "libell_d_acheminement": "MAGRIN", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81151"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3b8128b490e9b2a69e186e717fb0eec5a53d4e", "fields": {"nom_de_la_commune": "MARNAVES", "libell_d_acheminement": "MARNAVES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81154"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f5e3f8af3339900f6da4ac0576f05ca3edf551", "fields": {"nom_de_la_commune": "MARZENS", "libell_d_acheminement": "MARZENS", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81157"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6ebfe1bb68baae392103e3700880706f330753", "fields": {"nom_de_la_commune": "MASSALS", "libell_d_acheminement": "MASSALS", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81161"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fdf642b620ab9234560ed72b478c6819d62310c", "fields": {"nom_de_la_commune": "MAURENS SCOPONT", "libell_d_acheminement": "MAURENS SCOPONT", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81162"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adce10e871513b067ab6f610f80223b133c0e697", "fields": {"nom_de_la_commune": "MONTREDON LABESSONNIE", "libell_d_acheminement": "MONTREDON LABESSONNIE", "code_postal": "81360", "coordonnees_gps": [43.7318763376, 2.32676924299], "code_commune_insee": "81182"}, "geometry": {"type": "Point", "coordinates": [2.32676924299, 43.7318763376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5f42cce2a42758831794a86ee18983f2734510", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "81710", "coordonnees_gps": [43.5760032199, 2.19080149351], "code_commune_insee": "81195"}, "geometry": {"type": "Point", "coordinates": [2.19080149351, 43.5760032199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee999db4c2c1982f164501bc456bb499a520647", "fields": {"nom_de_la_commune": "NOAILHAC", "libell_d_acheminement": "NOAILHAC", "code_postal": "81490", "coordonnees_gps": [43.5859681102, 2.3789399334], "code_commune_insee": "81196"}, "geometry": {"type": "Point", "coordinates": [2.3789399334, 43.5859681102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b68ac8b0ba8182110cb97bbb04cbcca8a14f7a", "fields": {"nom_de_la_commune": "NOAILLES", "libell_d_acheminement": "NOAILLES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81197"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75992fe7d615bb755cb1f37d0f65aa422eb46f0", "fields": {"nom_de_la_commune": "PARISOT", "libell_d_acheminement": "PARISOT", "code_postal": "81310", "coordonnees_gps": [43.8652051061, 1.81061411386], "code_commune_insee": "81202"}, "geometry": {"type": "Point", "coordinates": [1.81061411386, 43.8652051061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c727d2a882ceb5328fc6fd1f162c9a2858df286", "fields": {"nom_de_la_commune": "PECHAUDIER", "libell_d_acheminement": "PECHAUDIER", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81205"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c6e99dff8971e7992a5bd9348a29807aa210c4", "fields": {"nom_de_la_commune": "PEYREGOUX", "libell_d_acheminement": "PEYREGOUX", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81207"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4037fa7bbb246b5ba5df0a6f63dd9d7760960483", "fields": {"nom_de_la_commune": "PUYBEGON", "libell_d_acheminement": "PUYBEGON", "code_postal": "81390", "coordonnees_gps": [43.7576771475, 1.89892940194], "code_commune_insee": "81215"}, "geometry": {"type": "Point", "coordinates": [1.89892940194, 43.7576771475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da5a740aae3669284684a518040214a4a95aed7", "fields": {"nom_de_la_commune": "PUYCALVEL", "libell_d_acheminement": "PUYCALVEL", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81216"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113d39ac4794895f3772e3bd9dc9ee97498b0fa5", "fields": {"nom_de_la_commune": "PUYGOUZON", "libell_d_acheminement": "PUYGOUZON", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81218"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e3a970d44fd46b3782e0894fafa108675a354e", "fields": {"nom_de_la_commune": "REALMONT", "libell_d_acheminement": "REALMONT", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81222"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484c39e24da61b4c26b323eff543fe0f3860ff2b", "fields": {"nom_de_la_commune": "LE RIOLS", "libell_d_acheminement": "LE RIOLS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81224"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb98e778529544b2ed22bb3841c0830869a19b6b", "fields": {"nom_de_la_commune": "ST AFFRIQUE LES MONTAGNES", "libell_d_acheminement": "ST AFFRIQUE LES MONTAGNES", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81235"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2d284246d8ca6ab809e01e69a615f1f1753897", "fields": {"nom_de_la_commune": "ST AMANS SOULT", "libell_d_acheminement": "ST AMANS SOULT", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81238"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0589a76eaf5f857d1febed4caf4d63a1d9698b", "fields": {"nom_de_la_commune": "ST AMANS VALTORET", "libell_d_acheminement": "ST AMANS VALTORET", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81239"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1769cc2aa233add1b3e39fa231ca7133fa084d43", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81240"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f0a0af34f79e22d5927f045a95fbfaefb27253", "fields": {"nom_de_la_commune": "ST ANTONIN DE LACALM", "libell_d_acheminement": "ST ANTONIN DE LACALM", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81241"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21cda503051e8f2ea96819e548fb3c1a9414cdfd", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81242"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c201072626c38241b4618a3867bd6577656a3b2", "fields": {"nom_de_la_commune": "ST BEAUZILE", "libell_d_acheminement": "ST BEAUZILE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81243"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33de14b655c6f5df907c36cd6312e3837dd76b38", "fields": {"nom_de_la_commune": "STE CECILE DU CAYROU", "libell_d_acheminement": "STE CECILE DU CAYROU", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81246"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fc9472cb854987054a7914e2e49730385b730e", "fields": {"nom_de_la_commune": "ST GENEST DE CONTEST", "libell_d_acheminement": "ST GENEST DE CONTEST", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81250"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac341efe4625909429a6ba3e558339ec747cbf02", "fields": {"nom_de_la_commune": "ST LIEUX LAFENASSE", "libell_d_acheminement": "ST LIEUX LAFENASSE", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81260"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715098e1e3ebc53a50d2a24f370039883295fb0c", "fields": {"nom_de_la_commune": "ST MARTIN LAGUEPIE", "libell_d_acheminement": "ST MARTIN LAGUEPIE", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81263"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69c1f5dbb3976b08be944af93215e43b2f53ef1", "fields": {"nom_de_la_commune": "ST SERNIN LES LAVAUR", "libell_d_acheminement": "ST SERNIN LES LAVAUR", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81270"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a9c25b257d0bcaa60193e7b93ad51efb73a83b", "fields": {"nom_de_la_commune": "SALIES", "libell_d_acheminement": "SALIES", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81274"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af7136f0862c38e47585d152739cfbb4bc00270", "fields": {"nom_de_la_commune": "SALVAGNAC", "libell_d_acheminement": "SALVAGNAC", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81276"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a77d159265afc9025f2b6aeebf38dcc1c5ebdd6f", "fields": {"nom_de_la_commune": "SAUSSENAC", "libell_d_acheminement": "SAUSSENAC", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81277"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631a814e206d1cdf17f77cc016005b3432dce50e", "fields": {"nom_de_la_commune": "SEMALENS", "libell_d_acheminement": "SEMALENS", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81281"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ca7771762471dcc4d1712852774adbe51759c8", "fields": {"nom_de_la_commune": "SERENAC", "libell_d_acheminement": "SERENAC", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81285"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8bbc54651c28197c5764900708fa62b0f1b8dc", "fields": {"nom_de_la_commune": "SOUAL", "libell_d_acheminement": "SOUAL", "code_postal": "81580", "coordonnees_gps": [43.5600042132, 2.12607706604], "code_commune_insee": "81289"}, "geometry": {"type": "Point", "coordinates": [2.12607706604, 43.5600042132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ef5e6da1b8c87b746d8e4e13fc0f0e0f4402f7", "fields": {"nom_de_la_commune": "TERSSAC", "libell_d_acheminement": "TERSSAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81297"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0c0c67ff46a0a059e4cc0de933e9a5966db521", "fields": {"nom_de_la_commune": "TEULAT", "libell_d_acheminement": "TEULAT", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81298"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d045759938dac7f0c8827733b664a0e6021e4797", "fields": {"nom_de_la_commune": "TONNAC", "libell_d_acheminement": "TONNAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81300"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c681e8a74845274ba7c66ac6f4b5ae92a88c4916", "fields": {"nom_de_la_commune": "TREBAS", "libell_d_acheminement": "TREBAS", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81303"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efee9ce5898fbe121c9ff42734538b65afa61bb7", "fields": {"nom_de_la_commune": "VAOUR", "libell_d_acheminement": "VAOUR", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81309"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c10d50f431e48b27807b184293881c864cb2f91", "fields": {"nom_de_la_commune": "VIEUX", "libell_d_acheminement": "VIEUX", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81316"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaccfe8c95b26e186ea27617349834e5fa9a7b32", "fields": {"nom_de_la_commune": "LE VINTROU", "libell_d_acheminement": "LE VINTROU", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81321"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d274e3113cbe07c622f6e68c06afe163fa856a", "fields": {"nom_de_la_commune": "VIRAC", "libell_d_acheminement": "VIRAC", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81322"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05275368c82cd8960f79f356e976da9cb5374ebc", "fields": {"nom_de_la_commune": "VIVIERS LES LAVAUR", "libell_d_acheminement": "VIVIERS LES LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81324"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72adf7b085b19be43b3a63db0edba25d44741141", "fields": {"nom_de_la_commune": "VIVIERS LES MONTAGNES", "libell_d_acheminement": "VIVIERS LES MONTAGNES", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81325"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46a0e3a07469496ed02978df86428aca2381994", "fields": {"nom_de_la_commune": "ALBEFEUILLE LAGARDE", "libell_d_acheminement": "ALBEFEUILLE LAGARDE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82001"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0945362d2f6c1469769a7b8e7df53180cb4e67d", "fields": {"nom_de_la_commune": "ALBIAS", "libell_d_acheminement": "ALBIAS", "code_postal": "82350", "coordonnees_gps": [44.0817329128, 1.44840775268], "code_commune_insee": "82002"}, "geometry": {"type": "Point", "coordinates": [1.44840775268, 44.0817329128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330013871665b6271bf5f091aa84b3886df0ec7d", "fields": {"nom_de_la_commune": "AUTY", "libell_d_acheminement": "AUTY", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82007"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775540826da06a98afef78c928ac3eadc57d5308", "fields": {"nom_de_la_commune": "BARDIGUES", "libell_d_acheminement": "BARDIGUES", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82010"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba2d2683d242c27915aff3d59fe4491d688b383", "fields": {"nom_de_la_commune": "BARRY D ISLEMADE", "libell_d_acheminement": "BARRY D ISLEMADE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82011"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef899b47eb586fbdb81af2bc360adfb85be67c8", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82014"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191055703d76a66bb6db0789c640d189ae2b67a2", "fields": {"nom_de_la_commune": "BELBEZE EN LOMAGNE", "libell_d_acheminement": "BELBEZE EN LOMAGNE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82015"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f3e9bbe5134a43c053c8f7a1b485bc2b24d732", "fields": {"nom_de_la_commune": "BOUDOU", "libell_d_acheminement": "BOUDOU", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82019"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43c4a3bc7e0002238e0769f7e15f90421dd58730", "fields": {"nom_de_la_commune": "BOUILLAC", "libell_d_acheminement": "BOUILLAC", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82020"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61de9d217e468c21be2a1114f7d4459f353487f", "fields": {"nom_de_la_commune": "BRUNIQUEL", "libell_d_acheminement": "BRUNIQUEL", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82026"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1f4f9aef1d4ba310865e0339b06a8095dc99c2", "fields": {"nom_de_la_commune": "CASTANET", "libell_d_acheminement": "CASTANET", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82029"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4808201a600dd0b8d9ef074bf3b9d84882f5c4ff", "fields": {"nom_de_la_commune": "CORDES TOLOSANNES", "libell_d_acheminement": "CORDES TOLOSANNES", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82045"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf05b055b5f7c0bc613bad831f50a0e51404029", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82046"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f704592d838f89d51633c10035b9f32f155f8c48", "fields": {"nom_de_la_commune": "CUMONT", "libell_d_acheminement": "CUMONT", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82047"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5a75e891fe408984b1146989b163937b046772", "fields": {"nom_de_la_commune": "ESCAZEAUX", "libell_d_acheminement": "ESCAZEAUX", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82053"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7533e34c29c26bccc801095388ae7d90500be47", "fields": {"nom_de_la_commune": "FABAS", "libell_d_acheminement": "FABAS", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82057"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2e383019d37612acb1e3927b2670d81cf02db6", "fields": {"nom_de_la_commune": "GASQUES", "libell_d_acheminement": "GASQUES", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82065"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f0b0e7670885dec166473522c8ec6c9e39aeca", "fields": {"nom_de_la_commune": "GRAMONT", "libell_d_acheminement": "GRAMONT", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82074"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6da9c0ad05f3028a1b6e4bcda37706a759a2e8", "fields": {"nom_de_la_commune": "LABASTIDE ST PIERRE", "libell_d_acheminement": "LABASTIDE ST PIERRE", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82079"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ea7d75e85970c0ed775e0f190fa333ef7aefc6", "fields": {"nom_de_la_commune": "LABOURGADE", "libell_d_acheminement": "LABOURGADE", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82081"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891eba725ea83165c28adb3b20b7b818bf0a6c31", "fields": {"nom_de_la_commune": "ST BONNET PRES ORCIVAL", "libell_d_acheminement": "ST BONNET PRES ORCIVAL", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63326"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d7d67c9fdd2c3c05f98c5c2805bf5fbca2cb0a", "fields": {"nom_de_la_commune": "ST BONNET PRES RIOM", "libell_d_acheminement": "ST BONNET PRES RIOM", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63327"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf3f29f95576d21736f2092b8805a83822893bd5", "fields": {"nom_de_la_commune": "STE CATHERINE", "libell_d_acheminement": "STE CATHERINE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63328"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09240352fe8fa2ccc9f2b6e709908ed1bef830e7", "fields": {"nom_de_la_commune": "ST DIERY", "libell_d_acheminement": "ST DIERY", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63335"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a36574f26d8ab2d15e95ad1640d1e4087cc8fd9", "fields": {"nom_de_la_commune": "ST ELOY LA GLACIERE", "libell_d_acheminement": "ST ELOY LA GLACIERE", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63337"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f47a4e03ef3ead27ffce7edc0bec0391bc4727d", "fields": {"nom_de_la_commune": "ST ETIENNE DES CHAMPS", "libell_d_acheminement": "ST ETIENNE DES CHAMPS", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63339"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3f8f7a11f6fedb5ddb30803d56ad084b5a2b33", "fields": {"nom_de_la_commune": "ST ETIENNE SUR USSON", "libell_d_acheminement": "ST ETIENNE SUR USSON", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63340"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb411451fe8bc7f45b973395679b860d761aea16", "fields": {"nom_de_la_commune": "ST FERREOL DES COTES", "libell_d_acheminement": "ST FERREOL DES COTES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63341"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e6c35b4ffd32a99332cd17fac7e4ec6a03cf2cb", "fields": {"nom_de_la_commune": "ST GAL SUR SIOULE", "libell_d_acheminement": "ST GAL SUR SIOULE", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63344"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "907c828dbd0b8989eb8026efd0f37f15d01f39f3", "fields": {"nom_de_la_commune": "ST GENES CHAMPANELLE", "libell_d_acheminement": "ST GENES CHAMPANELLE", "code_postal": "63122", "coordonnees_gps": [45.7250562511, 3.00944108289], "code_commune_insee": "63345"}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b834477f43ca012ca4b4ca97daeca5723a160d0f", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "BERZET", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ca786c5d4fdc5e933e8823239ab22290ec9182", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "THEIX", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4838a4d743cef678e93f291f5fd9c61ed6949d83", "fields": {"nom_de_la_commune": "ST GENES LA TOURETTE", "libell_d_acheminement": "ST GENES LA TOURETTE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63348"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ff7a2ae51f1ba0588a409edc432776e862d576", "fields": {"nom_de_la_commune": "ST GERMAIN PRES HERMENT", "libell_d_acheminement": "ST GERMAIN PRES HERMENT", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63351"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50d9d6dc85558fb3e1d254dae744ba98a838a9e", "fields": {"nom_de_la_commune": "ST GERMAIN L HERM", "libell_d_acheminement": "ST GERMAIN L HERM", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63353"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0dd975054baa65957ef43af5e5ba200822d09c", "fields": {"nom_de_la_commune": "ST HILAIRE LES MONGES", "libell_d_acheminement": "ST HILAIRE LES MONGES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63359"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00f826be30e67df79d17c2dd426ca0a02200ab8", "fields": {"nom_de_la_commune": "ST JULIEN PUY LAVEZE", "libell_d_acheminement": "ST JULIEN PUY LAVEZE", "code_postal": "63820", "coordonnees_gps": [45.6766706035, 2.68432018586], "code_commune_insee": "63370"}, "geometry": {"type": "Point", "coordinates": [2.68432018586, 45.6766706035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4445e1cfca2d3b652d0c7eeccea53515a9e60f7", "fields": {"nom_de_la_commune": "ST LAURE", "libell_d_acheminement": "ST LAURE", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63372"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e0c4fba4721e6e00f884bde7c7b78faa3245c3", "fields": {"nom_de_la_commune": "ST MARTIN D OLLIERES", "libell_d_acheminement": "ST MARTIN D OLLIERES", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63376"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa96fe01206a36f3c711d2f764f1e8e2d0f85f1", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63378"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b50f852879446ad086db8ecafda109303be2a30", "fields": {"nom_de_la_commune": "ST PIERRE COLAMINE", "libell_d_acheminement": "ST PIERRE COLAMINE", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63383"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb61bef207b04dc2aefb3cfbbed6d2d29df337e", "fields": {"nom_de_la_commune": "ST QUINTIN SUR SIOULE", "libell_d_acheminement": "ST QUINTIN SUR SIOULE", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63390"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f66691e22b81070d9ff9fe394950c3f5b25d2", "fields": {"nom_de_la_commune": "ST REMY DE BLOT", "libell_d_acheminement": "ST REMY DE BLOT", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63391"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77831bfb127b08406e93458b9a2d9a0064cd6b36", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "63760", "coordonnees_gps": [45.6646500323, 2.57820074575], "code_commune_insee": "63399"}, "geometry": {"type": "Point", "coordinates": [2.57820074575, 45.6646500323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e044c95203f0d06df79b78fa97d25fb2037a17a", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63403"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eddc2271d42329a2956d1527fae619ca6fbff45", "fields": {"nom_de_la_commune": "SALLEDES", "libell_d_acheminement": "SALLEDES", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63405"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9851e520545c4e0e6916937bf1ce0743092aedf8", "fields": {"nom_de_la_commune": "TRALAIGUES", "libell_d_acheminement": "TRALAIGUES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63436"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70cc41f03ee0eb99574fd4de8edb167ddad25c6f", "fields": {"nom_de_la_commune": "USSON", "libell_d_acheminement": "USSON", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63439"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a47d328c5f21448eac98c525af669eac6e59c2e", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63452"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b6f4f14a08e3dcc8150c14d820800b35e3a2d3c", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63458"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3549b4c2f34985a29d78ca28e99bea0b320ad36f", "fields": {"nom_de_la_commune": "VIRLET", "libell_d_acheminement": "VIRLET", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63462"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b1999bc7f382159ae3a211132bb03be32047f43", "fields": {"nom_de_la_commune": "VOINGT", "libell_d_acheminement": "VOINGT", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63467"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825ae3ef19628402ee5d574b213b378ee5b7ed64", "fields": {"nom_de_la_commune": "VOLLORE VILLE", "libell_d_acheminement": "VOLLORE VILLE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63469"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc54a96214cd11de47f2d9e79d8d663245028fcb", "fields": {"nom_de_la_commune": "YSSAC LA TOURETTE", "libell_d_acheminement": "YSSAC LA TOURETTE", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63473"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b97c81bd0ab751d3d6c3b4a0a3224e7c84a923", "fields": {"nom_de_la_commune": "AAST", "libell_d_acheminement": "AAST", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64001"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55bf2c4805fee26b1485cdf05e04f8a3ab19856", "fields": {"nom_de_la_commune": "AINHARP", "libell_d_acheminement": "AINHARP", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64012"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf5d372124eb3857c26e83fd59869b467f4f771", "fields": {"nom_de_la_commune": "AINHOA", "libell_d_acheminement": "AINHOA", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64014"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4125011622ebe8da6fac4d8ede64a2f3d4c4b0", "fields": {"nom_de_la_commune": "ALDUDES", "libell_d_acheminement": "ALDUDES", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64016"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da69db61800901a80eadb222968b6ee11c6fd095", "fields": {"nom_de_la_commune": "ANGLET", "libell_d_acheminement": "ANGLET", "code_postal": "64600", "coordonnees_gps": [43.491205564, -1.51578772334], "code_commune_insee": "64024"}, "geometry": {"type": "Point", "coordinates": [-1.51578772334, 43.491205564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b611c19423d150f4a87cdc43279a2a9e112965", "fields": {"nom_de_la_commune": "ARANCOU", "libell_d_acheminement": "ARANCOU", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64031"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1771c3e74e9fcfbe684303c354c2e91c9a6983c6", "fields": {"nom_de_la_commune": "ARAUX", "libell_d_acheminement": "ARAUX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64033"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b9d1b53699c04fce1dd6e87cdb8bc780e50981", "fields": {"nom_de_la_commune": "ARBUS", "libell_d_acheminement": "ARBUS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64037"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74f7e571aa44518220f022d5f6120779c0a9449", "fields": {"nom_de_la_commune": "AREN", "libell_d_acheminement": "AREN", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64039"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00b2120ebd617fa23903b32515dff3bd7592c701", "fields": {"nom_de_la_commune": "ARESSY", "libell_d_acheminement": "ARESSY", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64041"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c8b3b6562d07e2e54592a741fdd79d9583a962", "fields": {"nom_de_la_commune": "ARGELOS", "libell_d_acheminement": "ARGELOS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64043"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b95670ecd8f1a257864bc16c2b070bb56251797", "fields": {"nom_de_la_commune": "ARMENDARITS", "libell_d_acheminement": "ARMENDARITS", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64046"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9157d7756869d9292734fd8600c6e57d89e617a1", "fields": {"nom_de_la_commune": "ARROS DE NAY", "libell_d_acheminement": "ARROS DE NAY", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64054"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5410c8932ea2c5df7861994a888287b36099a2f2", "fields": {"nom_de_la_commune": "ARROSES", "libell_d_acheminement": "ARROSES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64056"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88d037849377fccaeded1282726ac69dbc82247", "fields": {"nom_de_la_commune": "ARTIGUELOUVE", "libell_d_acheminement": "ARTIGUELOUVE", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64060"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094ed8fa1671897b90a343ca22d55984e94801b7", "fields": {"nom_de_la_commune": "ARTIX", "libell_d_acheminement": "ARTIX", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64061"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7519027635f86cfa4ca3a545d52ae175b5edae2d", "fields": {"nom_de_la_commune": "ASTIS", "libell_d_acheminement": "ASTIS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64070"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f1ed1c29b442331763359994954fa9a5e11e0a", "fields": {"nom_de_la_commune": "AUBOUS", "libell_d_acheminement": "AUBOUS", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64074"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b6bc893b566ce42d16fed13974ea3eb4aad836", "fields": {"nom_de_la_commune": "AUGA", "libell_d_acheminement": "AUGA", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64077"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc1565485da18aafa84a0edaed14ecd656349ab", "fields": {"nom_de_la_commune": "AYDIUS", "libell_d_acheminement": "AYDIUS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64085"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0d1f33a3e71a46167185a45a6523fbd5426511", "fields": {"nom_de_la_commune": "BARDOS", "libell_d_acheminement": "BARDOS", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64094"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfe2ce535b08524ae294dbc60d819c1808d8ffc", "fields": {"nom_de_la_commune": "BARINQUE", "libell_d_acheminement": "BARINQUE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64095"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afae4346aff27cfc408515253b662ba7f6ffdf84", "fields": {"nom_de_la_commune": "BARRAUTE CAMU", "libell_d_acheminement": "BARRAUTE CAMU", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64096"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e41f975f53c0c3060a3529b5725b6e3379dd3b0", "fields": {"nom_de_la_commune": "BASSILLON VAUZE", "libell_d_acheminement": "BASSILLON VAUZE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64098"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b62d55999b87ae4b565f442595fdf380577e3b", "fields": {"nom_de_la_commune": "BERGOUEY VIELLENAVE", "libell_d_acheminement": "BERGOUEY VIELLENAVE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64113"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7647218c5c000cbe4dda4b3491b8db7c7c42067", "fields": {"code_postal": "64270", "code_commune_insee": "64113", "libell_d_acheminement": "BERGOUEY VIELLENAVE", "ligne_5": "VIELLENAVE SUR BIDOUZE", "nom_de_la_commune": "BERGOUEY VIELLENAVE", "coordonnees_gps": [43.4771574964, -0.961010238203]}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6d949a7cbce791b911debfd60dbb96759667c0", "fields": {"nom_de_la_commune": "BIDACHE", "libell_d_acheminement": "BIDACHE", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64123"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dea6896336ee4b9ccf11445d1ee50e446a97692", "fields": {"nom_de_la_commune": "BIELLE", "libell_d_acheminement": "BIELLE", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64127"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0affb68d9fd452deed175b6ad8dac692daf41761", "fields": {"nom_de_la_commune": "BIZANOS", "libell_d_acheminement": "BIZANOS", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64132"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9013ca8c5ffd225c0d18eddbab02cdc034f5ea", "fields": {"nom_de_la_commune": "BORDES", "libell_d_acheminement": "BORDES", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64138"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4151bf7da444b89746b88dfbe94f70ecca234c91", "fields": {"nom_de_la_commune": "BUNUS", "libell_d_acheminement": "BUNUS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64150"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc8d17226f73371b0256299a285309d18769115", "fields": {"nom_de_la_commune": "BUSSUNARITS SARRASQUETTE", "libell_d_acheminement": "BUSSUNARITS SARRASQUETTE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64154"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b773326b53444b64d23b19f3ae8d3f588469f0", "fields": {"nom_de_la_commune": "BUZY", "libell_d_acheminement": "BUZY", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64157"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8f13e00e8340a7f984b7352372df5286bb250d", "fields": {"nom_de_la_commune": "CAMBO LES BAINS", "libell_d_acheminement": "CAMBO LES BAINS", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64160"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599f84e6ce89c97473f971c0c6b81a99d4587ea8", "fields": {"nom_de_la_commune": "CARRESSE CASSABER", "libell_d_acheminement": "CARRESSE CASSABER", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64168"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558a915d7db4999081608b4c22065bf836454167", "fields": {"code_postal": "64270", "code_commune_insee": "64168", "libell_d_acheminement": "CARRESSE CASSABER", "ligne_5": "CASSABER", "nom_de_la_commune": "CARRESSE CASSABER", "coordonnees_gps": [43.4771574964, -0.961010238203]}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7117b56cb355a932ed18e0827bcfeab6c64b51", "fields": {"nom_de_la_commune": "CASTILLON D ARTHEZ", "libell_d_acheminement": "CASTILLON D ARTHEZ", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64181"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f20a949dcf4c27232f8bd18947d523eb8f80a6", "fields": {"nom_de_la_commune": "CHARRE", "libell_d_acheminement": "CHARRE", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64186"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1b2d15c50c2b462a28d74b88849dba405d9cfd", "fields": {"nom_de_la_commune": "CHARRITTE DE BAS", "libell_d_acheminement": "CHARRITTE DE BAS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64187"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2721c83260b0f51b8130188ff898374dea501677", "fields": {"nom_de_la_commune": "CHERAUTE", "libell_d_acheminement": "CHERAUTE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64188"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46f8b6d324fb5f34a7120cbd3796a0e95e0590b4", "fields": {"nom_de_la_commune": "COSLEDAA LUBE BOAST", "libell_d_acheminement": "COSLEDAA LUBE BOAST", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64194"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038258b09f7c6aa8bd67fdbe3122273cc7c9e1ed", "fields": {"nom_de_la_commune": "COUBLUCQ", "libell_d_acheminement": "COUBLUCQ", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64195"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9011f0462b21ba7ea5a62ec549883d3f493c03f1", "fields": {"nom_de_la_commune": "DENGUIN", "libell_d_acheminement": "DENGUIN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64198"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae938ae3c16ac68139ac78bbc3553d90ece20aae", "fields": {"nom_de_la_commune": "EAUX BONNES", "libell_d_acheminement": "EAUX BONNES", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64204"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f983504eec94b293ac2930ea14625426c23a1fd9", "fields": {"code_postal": "64440", "code_commune_insee": "64204", "libell_d_acheminement": "EAUX BONNES", "ligne_5": "GOURETTE", "nom_de_la_commune": "EAUX BONNES", "coordonnees_gps": [42.9183295476, -0.395850195838]}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba4051cb9bb155b60f662b50e7ffda28f072a88", "fields": {"nom_de_la_commune": "ESCOT", "libell_d_acheminement": "ESCOT", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64206"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6718de73e97418552b6f550d34200febfcdc476e", "fields": {"nom_de_la_commune": "ESCOUT", "libell_d_acheminement": "ESCOUT", "code_postal": "64870", "coordonnees_gps": [43.1859088919, -0.54370425822], "code_commune_insee": "64209"}, "geometry": {"type": "Point", "coordinates": [-0.54370425822, 43.1859088919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4024ab06661c4deaaeaecc0d6957e5968dcccde9", "fields": {"nom_de_la_commune": "ESPIUTE", "libell_d_acheminement": "ESPIUTE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64215"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "077b1718634895001e1dd6c79affaa492855429d", "fields": {"nom_de_la_commune": "ESTERENCUBY", "libell_d_acheminement": "ESTERENCUBY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64218"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893237a20ccce69f2314a71424fea9cb09eae0bd", "fields": {"nom_de_la_commune": "ESTOS", "libell_d_acheminement": "ESTOS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64220"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29b942c2f21f18772b768f89865d110aa44e33a", "fields": {"nom_de_la_commune": "GARLIN", "libell_d_acheminement": "GARLIN", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64233"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5fe9f439320592d34bccee3755aca1c5ccc4c7d", "fields": {"nom_de_la_commune": "GESTAS", "libell_d_acheminement": "GESTAS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64242"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0cbaeec373bbb389d7f837a0e4b53f6a9949501", "fields": {"nom_de_la_commune": "GEUS D OLORON", "libell_d_acheminement": "GEUS D OLORON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64244"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379af3f8f38b4da2ad6c63e98934ca605d886f42", "fields": {"nom_de_la_commune": "GOTEIN LIBARRENX", "libell_d_acheminement": "GOTEIN LIBARRENX", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64247"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a125cb663ad703cce20ac7e62b33212475ba5bab", "fields": {"nom_de_la_commune": "GUINARTHE PARENTIES", "libell_d_acheminement": "GUINARTHE PARENTIES", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64251"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d2c88f2073d285b434ace890ce29292fd51213", "fields": {"nom_de_la_commune": "GURMENCON", "libell_d_acheminement": "GURMENCON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64252"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48f54e4c2ab4fa661f0e4db494c9c7e386a6f7e", "fields": {"nom_de_la_commune": "HASPARREN", "libell_d_acheminement": "HASPARREN", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64256"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d774f8a3f55da09a6f6775c3c10bcd9a85c8560c", "fields": {"nom_de_la_commune": "HAUT DE BOSDARROS", "libell_d_acheminement": "HAUT DE BOSDARROS", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64257"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648ff59cf27d6cb09dfeaaf76083881df1d5fb63", "fields": {"nom_de_la_commune": "L HOPITAL D ORION", "libell_d_acheminement": "L HOPITAL D ORION", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64263"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17153d54efc5f4ea52cf3ceadd0aa99a83852ad9", "fields": {"nom_de_la_commune": "HOSTA", "libell_d_acheminement": "HOSTA", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64265"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec6449f5066820d84fa5af6a4ad201a5b319d3f", "fields": {"nom_de_la_commune": "IDRON", "libell_d_acheminement": "IDRON", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64269"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1848051efe11d7275dfa8cb97bbfe850275a4872", "fields": {"nom_de_la_commune": "LABEYRIE", "libell_d_acheminement": "LABEYRIE", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64295"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523284770eb69600d4f32b372d8fe9c790c0840c", "fields": {"nom_de_la_commune": "LACARRE", "libell_d_acheminement": "LACARRE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64297"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38d831ea6b40aae2cdf3cc55f69c4058ca0919ad", "fields": {"nom_de_la_commune": "LACARRY ARHAN CHARRITTE DE HAUT", "libell_d_acheminement": "LACARRY ARHAN CHARRITTE DE HAUT", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64298"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d75428a0334818662d2def7a70172ba0db246f", "fields": {"nom_de_la_commune": "LAGOS", "libell_d_acheminement": "LAGOS", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64302"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e808c1826bd27068bd23dac7564acd2fa422e79c", "fields": {"nom_de_la_commune": "LAMAYOU", "libell_d_acheminement": "LAMAYOU", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64309"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a6cb98d701542c6f8bb7fc0672547fa65b179a", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR LAIZE", "libell_d_acheminement": "BRETTEVILLE SUR LAIZE", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14100"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a245a218b82ff57fe69b92d8c93191650aed3c53", "fields": {"nom_de_la_commune": "BUCEELS", "libell_d_acheminement": "BUCEELS", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14111"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "931b0d20c717af86df298a785bbfd7fe532cdecd", "fields": {"nom_de_la_commune": "LE BU SUR ROUVRES", "libell_d_acheminement": "LE BU SUR ROUVRES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14116"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2da81282c9fda43c15b0c77fc1a887481e844dd", "fields": {"nom_de_la_commune": "CHAMP DU BOULT", "libell_d_acheminement": "CHAMP DU BOULT", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14151"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd5c6daa6f53c7249aa50a93e8451b8e92d4d6ce", "fields": {"nom_de_la_commune": "CONDE SUR IFS", "libell_d_acheminement": "CONDE SUR IFS", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14173"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f64bc2690143946950b965741d6d6f15c21c8c", "fields": {"nom_de_la_commune": "CONDE EN NORMANDIE", "libell_d_acheminement": "CONDE EN NORMANDIE", "code_postal": "14110", "coordonnees_gps": [48.8603879133, -0.538857121596], "code_commune_insee": "14174"}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3633c3cf984014269f5305dce84d20f8d7f9ac46", "fields": {"code_postal": "14770", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "ST PIERRE LA VIEILLE", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c3bbd818b385c1798bb70661d86fc3cd186466", "fields": {"nom_de_la_commune": "CONDE SUR SEULLES", "libell_d_acheminement": "CONDE SUR SEULLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14175"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ceed2dff0d95210b794576b8a444b651570f3c", "fields": {"nom_de_la_commune": "COUPESARTE", "libell_d_acheminement": "COUPESARTE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14189"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5010315dc8dd5d459e279bd086b2b16ea33e1a", "fields": {"nom_de_la_commune": "COURCY", "libell_d_acheminement": "COURCY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14190"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298c537a90e8c720f7d740c94da595472bf1f2fd", "fields": {"nom_de_la_commune": "CRESSERONS", "libell_d_acheminement": "CRESSERONS", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14197"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87af3086c2e7be9026125a5ad765bc0e338e5bf0", "fields": {"code_postal": "14440", "code_commune_insee": "14228", "libell_d_acheminement": "DOUVRES LA DELIVRANDE", "ligne_5": "TAILLEVILLE", "nom_de_la_commune": "DOUVRES LA DELIVRANDE", "coordonnees_gps": [49.2888987238, -0.397807379835]}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da048e3d0fcd503098309b2adbedcb82b850fd0f", "fields": {"nom_de_la_commune": "DRUBEC", "libell_d_acheminement": "DRUBEC", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14230"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93dad497193b27f37f947cc524d833b3d175d75c", "fields": {"nom_de_la_commune": "EVRECY", "libell_d_acheminement": "EVRECY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14257"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca62c9641b766c60c0cec71f47ec14afa0bff9d9", "fields": {"code_postal": "14320", "code_commune_insee": "14266", "libell_d_acheminement": "FEUGUEROLLES BULLY", "ligne_5": "BULLY", "nom_de_la_commune": "FEUGUEROLLES BULLY", "coordonnees_gps": [49.1013108668, -0.374113026429]}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5df61c1f0906332bb3e4ff3768bd92a78eaef5", "fields": {"nom_de_la_commune": "FIERVILLE LES PARCS", "libell_d_acheminement": "FIERVILLE LES PARCS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14269"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25ac2ec47e8d694b860b19f241cb2b795a1d0ed", "fields": {"nom_de_la_commune": "FONTAINE ETOUPEFOUR", "libell_d_acheminement": "FONTAINE ETOUPEFOUR", "code_postal": "14790", "coordonnees_gps": [49.1541386997, -0.466148094743], "code_commune_insee": "14274"}, "geometry": {"type": "Point", "coordinates": [-0.466148094743, 49.1541386997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c06d086ed15c265c37c42f49a256a02085a0553", "fields": {"nom_de_la_commune": "FONTAINE HENRY", "libell_d_acheminement": "FONTAINE HENRY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14275"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a508c93695e5f852fdc64d244407deec7fb5b8c", "fields": {"nom_de_la_commune": "FONTENAY LE PESNEL", "libell_d_acheminement": "FONTENAY LE PESNEL", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14278"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d13fed37708d1451c108d56a2d1b7236bd7dc86", "fields": {"nom_de_la_commune": "FONTENERMONT", "libell_d_acheminement": "FONTENERMONT", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14279"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7da4764bfaf0c973778e69d3327447386dc2ee", "fields": {"nom_de_la_commune": "FORMENTIN", "libell_d_acheminement": "FORMENTIN", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14280"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376322bca32a01a3f2e0c41b2598696b04b0d9ac", "fields": {"nom_de_la_commune": "FOURNEVILLE", "libell_d_acheminement": "FOURNEVILLE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14286"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b047f0e3ac9c1730d8a3f4e721ca90e331665a", "fields": {"nom_de_la_commune": "GEFOSSE FONTENAY", "libell_d_acheminement": "GEFOSSE FONTENAY", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14298"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4696f9e5276f93ffe43f247716238481fb81ea3", "fields": {"nom_de_la_commune": "GENNEVILLE", "libell_d_acheminement": "GENNEVILLE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14299"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7956b60f35317fcf5f55ca7d2568d44190d368b", "fields": {"nom_de_la_commune": "GERROTS", "libell_d_acheminement": "GERROTS", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14300"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3db0e5ba7bf76c7d6980dd7eeeb58c0e0b831cce", "fields": {"nom_de_la_commune": "GOUSTRANVILLE", "libell_d_acheminement": "GOUSTRANVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14308"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c9a7b704c26f8956bddf613ddc673dce8af8c7", "fields": {"nom_de_la_commune": "GRAINVILLE LANGANNERIE", "libell_d_acheminement": "GRAINVILLE LANGANNERIE", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14310"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45483cb49b4cd64e50a8f74ff5fd436cf6a9e228", "fields": {"nom_de_la_commune": "GRAYE SUR MER", "libell_d_acheminement": "GRAYE SUR MER", "code_postal": "14470", "coordonnees_gps": [49.3187007817, -0.465940150296], "code_commune_insee": "14318"}, "geometry": {"type": "Point", "coordinates": [-0.465940150296, 49.3187007817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25111f3d1805d3e92f2890fd3c311ff1e937107", "fields": {"nom_de_la_commune": "GRENTHEVILLE", "libell_d_acheminement": "GRENTHEVILLE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14319"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d0ed817533a12c25d7a20239780612df497845", "fields": {"nom_de_la_commune": "GUERON", "libell_d_acheminement": "GUERON", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14322"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b829a3a691ebb26e2d9b71610505caa6c3251863", "fields": {"nom_de_la_commune": "HOTTOT LES BAGUES", "libell_d_acheminement": "HOTTOT LES BAGUES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14336"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccced55c96b25b52e08123709f6b878440823ec2", "fields": {"nom_de_la_commune": "LA LANDE SUR DROME", "libell_d_acheminement": "LA LANDE SUR DROME", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14350"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4aabfc6822f0b7c5da640fcc3ac690172237dff", "fields": {"nom_de_la_commune": "LEFFARD", "libell_d_acheminement": "LEFFARD", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14360"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b1003668f5134ae45af70c73d4737ecd438a21", "fields": {"nom_de_la_commune": "LINGEVRES", "libell_d_acheminement": "LINGEVRES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14364"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f347996a8a12bcaf4cf80c4da79a5319fbd21e", "fields": {"nom_de_la_commune": "LISORES", "libell_d_acheminement": "LISORES", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14368"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637fee7543af057d55127fba68c32162f362afb6", "fields": {"nom_de_la_commune": "LITTEAU", "libell_d_acheminement": "LITTEAU", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14369"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bc6ddcfae6be729e89d05fd3f27095431b2ff5", "fields": {"nom_de_la_commune": "LE MOLAY LITTRY", "libell_d_acheminement": "LE MOLAY LITTRY", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14370"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06617501c0eaed80cc22e64d9640bd8ea4363024", "fields": {"code_postal": "14330", "code_commune_insee": "14370", "libell_d_acheminement": "LE MOLAY LITTRY", "ligne_5": "LE MOLAY", "nom_de_la_commune": "LE MOLAY LITTRY", "coordonnees_gps": [49.2420322509, -0.955592852997]}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9d51aa7ab76f9b513d0b7e859ef7f34d16558b", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "AUQUAINVILLE", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1abe15ac82ad0b65072506749eda84d1561ee0", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LE MESNIL BACLEY", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556a30b1fc2e09ead6bac1a46a3834dc1fad6975", "fields": {"code_postal": "14240", "code_commune_insee": "14372", "libell_d_acheminement": "LIVRY", "ligne_5": "PARFOURU L ECLIN", "nom_de_la_commune": "LIVRY", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04a7d9332970f27baa268d1170c1616dbff31f8", "fields": {"nom_de_la_commune": "LE LOCHEUR", "libell_d_acheminement": "LE LOCHEUR", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14373"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9def64c33586eb83d83c708f30ef875ae4c76e2a", "fields": {"nom_de_la_commune": "LES LOGES", "libell_d_acheminement": "LES LOGES", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14374"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad3d8f6443febe0eba138c1bf8b2d7005feee22", "fields": {"nom_de_la_commune": "LONGRAYE", "libell_d_acheminement": "LONGRAYE", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14376"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c8e947a4ab73cfc48a67bf4f20498bfa53ccd5", "fields": {"nom_de_la_commune": "LONGUES SUR MER", "libell_d_acheminement": "LONGUES SUR MER", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14377"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793022c0f027252d46d02202846768dd6cbe4cb7", "fields": {"nom_de_la_commune": "LONGVILLERS", "libell_d_acheminement": "LONGVILLERS", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14379"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfe880596fe655016e09fee57f9a46574028e05", "fields": {"nom_de_la_commune": "LUC SUR MER", "libell_d_acheminement": "LUC SUR MER", "code_postal": "14530", "coordonnees_gps": [49.3082565079, -0.357388258877], "code_commune_insee": "14384"}, "geometry": {"type": "Point", "coordinates": [-0.357388258877, 49.3082565079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8d35b8963d94a6f9f35518859d97e3066b7e8e8", "fields": {"nom_de_la_commune": "MANDEVILLE EN BESSIN", "libell_d_acheminement": "MANDEVILLE EN BESSIN", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14397"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c54247a1bd686b71f88eb982446ff261c2deaa8", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14403"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689c57abda98153c3579aca2826193b52b7937c7", "fields": {"nom_de_la_commune": "MAY SUR ORNE", "libell_d_acheminement": "MAY SUR ORNE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14408"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9ada457bebc1a3097e3fb76a87b78b782eb737", "fields": {"nom_de_la_commune": "MERVILLE FRANCEVILLE PLAGE", "libell_d_acheminement": "MERVILLE FRANCEVILLE PLAGE", "code_postal": "14810", "coordonnees_gps": [49.2686618031, -0.198460206193], "code_commune_insee": "14409"}, "geometry": {"type": "Point", "coordinates": [-0.198460206193, 49.2686618031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d3bce92da1dccbf0e4bf0e27c9c3fe4bc44edb", "fields": {"nom_de_la_commune": "LE MESNIL AUZOUF", "libell_d_acheminement": "LE MESNIL AUZOUF", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14413"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521a7a1037b433b7020d3e8f89da40a2bc091cb2", "fields": {"nom_de_la_commune": "LE MESNIL GUILLAUME", "libell_d_acheminement": "LE MESNIL GUILLAUME", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14421"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297d705be139eb8043c66e345b0976fa06e19fa1", "fields": {"code_postal": "14270", "code_commune_insee": "14422", "libell_d_acheminement": "LE MESNIL MAUGER", "ligne_5": "ECAJEUL", "nom_de_la_commune": "LE MESNIL MAUGER", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1957048c46976531807844ec4e2b2f4fc52d1e91", "fields": {"code_postal": "14270", "code_commune_insee": "14422", "libell_d_acheminement": "LE MESNIL MAUGER", "ligne_5": "ST CRESPIN", "nom_de_la_commune": "LE MESNIL MAUGER", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d330be8bc76124be1077b1513d1967ed795ac011", "fields": {"nom_de_la_commune": "LE MESNIL PATRY", "libell_d_acheminement": "LE MESNIL PATRY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14423"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc38c923d8f1e08a1f1739d17b3b8fbc60c6f4df", "fields": {"nom_de_la_commune": "LE MESNIL SUR BLANGY", "libell_d_acheminement": "LE MESNIL SUR BLANGY", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14426"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa87ce79a646517302e638ac34b36f33fd6689df", "fields": {"nom_de_la_commune": "LE MESNIL VILLEMENT", "libell_d_acheminement": "LE MESNIL VILLEMENT", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14427"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a19040e53bd63467bf05304d39c378781bf95ef2", "fields": {"nom_de_la_commune": "MONCEAUX EN BESSIN", "libell_d_acheminement": "MONCEAUX EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14436"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afa0ac67205765b816aca5765f9f35064fc1771", "fields": {"nom_de_la_commune": "MONDEVILLE", "libell_d_acheminement": "MONDEVILLE", "code_postal": "14120", "coordonnees_gps": [49.1694748325, -0.311210729633], "code_commune_insee": "14437"}, "geometry": {"type": "Point", "coordinates": [-0.311210729633, 49.1694748325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a48014d2f53f8cc8248f215abaea0e35fe38e98", "fields": {"nom_de_la_commune": "LES MOUTIERS EN CINGLAIS", "libell_d_acheminement": "LES MOUTIERS EN CINGLAIS", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14458"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80bcdce04d5f98210971e171ab7f9ffef923a7b2", "fields": {"nom_de_la_commune": "MOYAUX", "libell_d_acheminement": "MOYAUX", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14460"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba41c32540420febce1f3b22cb0aadc456475676", "fields": {"nom_de_la_commune": "NOTRE DAME DE LIVAYE", "libell_d_acheminement": "NOTRE DAME DE LIVAYE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14473"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4fa056dd20979b7409d476e1764b254ac0d31a6", "fields": {"nom_de_la_commune": "LES OUBEAUX", "libell_d_acheminement": "LES OUBEAUX", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14481"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd78346367467f108f11d81eb4e51de336b35e8", "fields": {"nom_de_la_commune": "OUVILLE LA BIEN TOURNEE", "libell_d_acheminement": "OUVILLE LA BIEN TOURNEE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14489"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457c40af592e0f4f595bc8d891bdd8e9e22ced59", "fields": {"nom_de_la_commune": "PERIERS EN AUGE", "libell_d_acheminement": "PERIERS EN AUGE", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14494"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1454e8b5f15b292e4a75850f1183735ab63c104e", "fields": {"nom_de_la_commune": "PETIVILLE", "libell_d_acheminement": "PETIVILLE", "code_postal": "14390", "coordonnees_gps": [49.2648004396, -0.14376856722], "code_commune_insee": "14499"}, "geometry": {"type": "Point", "coordinates": [-0.14376856722, 49.2648004396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f73aca0b1c41fbe156ae522757c4f33175ae4f", "fields": {"nom_de_la_commune": "PLACY", "libell_d_acheminement": "PLACY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14505"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85978095c84d75b0bb15b6a3013cc9ff1293de7b", "fields": {"code_postal": "14380", "code_commune_insee": "14513", "libell_d_acheminement": "PONT FARCY", "ligne_5": "PLEINES OEUVRES", "nom_de_la_commune": "PONT FARCY", "coordonnees_gps": [48.8544817922, -1.0273831979]}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e92f3ce4cd941153ad69892b22dcba9ea4f3f36", "fields": {"nom_de_la_commune": "PRETREVILLE", "libell_d_acheminement": "PRETREVILLE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14522"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3e5942aba6b0ad0e714b37dd739a8ae939c7d8", "fields": {"code_postal": "14270", "code_commune_insee": "14527", "libell_d_acheminement": "BIEVILLE QUETIEVILLE", "ligne_5": "QUETIEVILLE", "nom_de_la_commune": "BIEVILLE QUETIEVILLE", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c903ccd083643c9b0ac008c218e821d2dbdd6e", "fields": {"nom_de_la_commune": "ROCQUES", "libell_d_acheminement": "ROCQUES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14540"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e22df047d68e1b1ab98b9c9d1ba51d6c317380c", "fields": {"nom_de_la_commune": "ROSEL", "libell_d_acheminement": "ROSEL", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14542"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add97e0f9543bb9f6418e72a0d7bc38a6d781385", "fields": {"nom_de_la_commune": "ST AUBIN D ARQUENAY", "libell_d_acheminement": "ST AUBIN D ARQUENAY", "code_postal": "14970", "coordonnees_gps": [49.2501319411, -0.286272697586], "code_commune_insee": "14558"}, "geometry": {"type": "Point", "coordinates": [-0.286272697586, 49.2501319411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e7b5ae50ed4c844c1298343e87d7e96d63ff63", "fields": {"nom_de_la_commune": "ST AUBIN DES BOIS", "libell_d_acheminement": "ST AUBIN DES BOIS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14559"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fbc13a59fd19b606f74baf4a56c09164b31c48", "fields": {"nom_de_la_commune": "ST AUBIN SUR MER", "libell_d_acheminement": "ST AUBIN SUR MER", "code_postal": "14750", "coordonnees_gps": [49.3223243841, -0.392133421312], "code_commune_insee": "14562"}, "geometry": {"type": "Point", "coordinates": [-0.392133421312, 49.3223243841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a12e739593b4c4418f4f0bc238f982afb14dd1", "fields": {"nom_de_la_commune": "STE CROIX GRAND TONNE", "libell_d_acheminement": "STE CROIX GRAND TONNE", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14568"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153517723610fcccc9b099626dfd962cfd1dfcb3", "fields": {"nom_de_la_commune": "STE CROIX SUR MER", "libell_d_acheminement": "STE CROIX SUR MER", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14569"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a095f1053a11f17bab4116fc9d93038efd509b88", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "ST PIERRE DE MAILLOC", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e516c1508acf274789f2c2c020f69b3f8af99516", "fields": {"nom_de_la_commune": "ST DENIS DE MAILLOC", "libell_d_acheminement": "ST DENIS DE MAILLOC", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14571"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ec75fb198f4a82ebf9a27ce893d1fffe91f9c9", "fields": {"nom_de_la_commune": "ST DESIR", "libell_d_acheminement": "ST DESIR", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14574"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac7f24c27b95b4e7d356d8534bb9fa333503bd8", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "ST GERMAIN DE MONTGOMMERY", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b972815494fd42f5e002f520a4bdeb12baaec4fe", "fields": {"nom_de_la_commune": "ST GATIEN DES BOIS", "libell_d_acheminement": "ST GATIEN DES BOIS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14578"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf377f3fb2b09d60ad83f9dc212b2829465a3f0", "fields": {"nom_de_la_commune": "ST GERMAIN D ECTOT", "libell_d_acheminement": "ST GERMAIN D ECTOT", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14581"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6d9c4d4b5e7affdde7a8778bb1416278e966c4", "fields": {"nom_de_la_commune": "ST GERMAIN LA BLANCHE HERBE", "libell_d_acheminement": "ST GERMAIN LA BLANCHE HERBE", "code_postal": "14280", "coordonnees_gps": [49.2095685958, -0.412342557701], "code_commune_insee": "14587"}, "geometry": {"type": "Point", "coordinates": [-0.412342557701, 49.2095685958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c86fdb2648a5d5956ffb99e2d582e5d10fcc46", "fields": {"nom_de_la_commune": "STE HONORINE DE DUCY", "libell_d_acheminement": "STE HONORINE DE DUCY", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14590"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ef737060c5301fd3c109308b25438f42663457", "fields": {"nom_de_la_commune": "ST HYMER", "libell_d_acheminement": "ST HYMER", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14593"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb9ff3d20c79939dc4fcdbdd5d41e4ce2a8aa4e0", "fields": {"nom_de_la_commune": "ST JEAN DES ESSARTIERS", "libell_d_acheminement": "ST JEAN DES ESSARTIERS", "code_postal": "14350", "coordonnees_gps": [48.9220153608, -0.733098585986], "code_commune_insee": "14596"}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae58793129ba10bdd52533d6a7bfdbc61ea2528e", "fields": {"nom_de_la_commune": "ST JOUIN", "libell_d_acheminement": "ST JOUIN", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14598"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371adbaf97b409369056b2e37efc073ee8dd770a", "fields": {"nom_de_la_commune": "ST JULIEN LE FAUCON", "libell_d_acheminement": "ST JULIEN LE FAUCON", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14600"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de75ed4b1cc6fdc5fcf5f62ebe61ddf8c2680094", "fields": {"nom_de_la_commune": "ST LEGER DUBOSQ", "libell_d_acheminement": "ST LEGER DUBOSQ", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14606"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a4a0c53c7d9a809c14cba9f2cd8622c83c1ea3", "fields": {"nom_de_la_commune": "ST LOUP DE FRIBOIS", "libell_d_acheminement": "ST LOUP DE FRIBOIS", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14608"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c9cad7b9feac6f69ffbf5f2dce0e650177f8ba2", "fields": {"nom_de_la_commune": "ST MANVIEU BOCAGE", "libell_d_acheminement": "ST MANVIEU BOCAGE", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14611"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8df932fbfce8f9023c3a4d157bd65a252bb10c5", "fields": {"nom_de_la_commune": "ST MARTIN DE BLAGNY", "libell_d_acheminement": "ST MARTIN DE BLAGNY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14622"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0a78c7b1c4058ad4dbdaa21028269433c9189d", "fields": {"nom_de_la_commune": "ST OMER", "libell_d_acheminement": "ST OMER", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14635"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43daee001b88cf169204daff2d91136814fd7a5", "fields": {"nom_de_la_commune": "ST PHILBERT DES CHAMPS", "libell_d_acheminement": "ST PHILBERT DES CHAMPS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14644"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd51836a3c86b0bb80c8bdabf02f8c4b151f062", "fields": {"nom_de_la_commune": "SALLENELLES", "libell_d_acheminement": "SALLENELLES", "code_postal": "14121", "coordonnees_gps": [49.2637868191, -0.232980863928], "code_commune_insee": "14665"}, "geometry": {"type": "Point", "coordinates": [-0.232980863928, 49.2637868191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981d1eeb56a7312e53c2c2b9b478c1fe1b258b29", "fields": {"nom_de_la_commune": "SEPT FRERES", "libell_d_acheminement": "SEPT FRERES", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14671"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43397c14536ad5f675936022af27a0500ce3c422", "fields": {"nom_de_la_commune": "SOMMERVIEU", "libell_d_acheminement": "SOMMERVIEU", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14676"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "714dfa874de1ed2d92671c801df378c0f1ee3c02", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "CAUMONT SUR ORNE", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ff1ec7285aae9e83c4c6650040991e00cbc9d3", "fields": {"nom_de_la_commune": "ST MAURICE SUR MORTAGNE", "libell_d_acheminement": "ST MAURICE SUR MORTAGNE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88425"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0824e4a02207ed01608fdfb1c24748228a77c13f", "fields": {"nom_de_la_commune": "ST NABORD", "libell_d_acheminement": "ST NABORD", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88429"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0152ba2e4568e81ca73b24a7c22cbde2bbb83a25", "fields": {"nom_de_la_commune": "ST STAIL", "libell_d_acheminement": "ST STAIL", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88436"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b997386f034b06558265715c8f2cd90b08239f40", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88437"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12822078b44dbe0d96e09340e54a5c40ee2ace6", "fields": {"nom_de_la_commune": "LA SALLE", "libell_d_acheminement": "LA SALLE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88438"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02d0170eb66df892d2769f66b1d327136ccd633", "fields": {"nom_de_la_commune": "SANCHEY", "libell_d_acheminement": "SANCHEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88439"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc34924e227ce74832c994108d33195635e6ddc4", "fields": {"nom_de_la_commune": "SANS VALLOIS", "libell_d_acheminement": "SANS VALLOIS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88441"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b4cd8ffe7addf639c33031ce757781ccc48f73", "fields": {"nom_de_la_commune": "SAPOIS", "libell_d_acheminement": "SAPOIS", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88442"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67dcd31964d4b31688d110c03c2095ad31fa12d", "fields": {"nom_de_la_commune": "LE SAULCY", "libell_d_acheminement": "LE SAULCY", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88444"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4c28a24b43efbedee54aeb324e4041020795fa", "fields": {"nom_de_la_commune": "SENONES", "libell_d_acheminement": "SENONES", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88451"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1177074a164a6576d72be3c55fe46e1548b90342", "fields": {"nom_de_la_commune": "SERAUMONT", "libell_d_acheminement": "SERAUMONT", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88453"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce56f3ad097e334ab574763e52f71467c1783e1", "fields": {"nom_de_la_commune": "SERCOEUR", "libell_d_acheminement": "SERCOEUR", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88454"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a8909b6c47b15071934c4fd5baa8c9a04b6df1", "fields": {"code_postal": "88150", "code_commune_insee": "88465", "libell_d_acheminement": "CAPAVENIR VOSGES", "ligne_5": "GIRMONT", "nom_de_la_commune": "CAPAVENIR VOSGES", "coordonnees_gps": [48.2558226475, 6.42027850113]}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf30c2a6c68f44117e6b11479fed8a800b06716", "fields": {"code_postal": "88150", "code_commune_insee": "88465", "libell_d_acheminement": "CAPAVENIR VOSGES", "ligne_5": "ONCOURT", "nom_de_la_commune": "CAPAVENIR VOSGES", "coordonnees_gps": [48.2558226475, 6.42027850113]}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c45bfa44e5079d16ed48d34b0f4b00dbdbf6cba", "fields": {"nom_de_la_commune": "URIMENIL", "libell_d_acheminement": "URIMENIL", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88481"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6f18088c123d788a5652c8f641514e24f7d7ca", "fields": {"nom_de_la_commune": "VECOUX", "libell_d_acheminement": "VECOUX", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88498"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f9a70eef77573b1c51106a72299b57807b1808", "fields": {"nom_de_la_commune": "VELOTTE ET TATIGNECOURT", "libell_d_acheminement": "VELOTTE ET TATIGNECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88499"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a792ac27456e21ab96c4cd52f702d2cdbc7caf7", "fields": {"nom_de_la_commune": "VILLERS", "libell_d_acheminement": "VILLERS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88507"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e54ac09eefbe0ae9b3025aa35f7165370c5522", "fields": {"nom_de_la_commune": "VINCEY", "libell_d_acheminement": "VINCEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88513"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c8bd7200146875e9dc46c5341135bae67a44c2", "fields": {"nom_de_la_commune": "VOUXEY", "libell_d_acheminement": "VOUXEY", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88523"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5cc1d511fb3e83d3185cc0a3dfbec51f417e26", "fields": {"nom_de_la_commune": "XERTIGNY", "libell_d_acheminement": "XERTIGNY", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88530"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869582f0601c02b96858ce3000f82fc636c69358", "fields": {"code_postal": "88220", "code_commune_insee": "88530", "libell_d_acheminement": "XERTIGNY", "ligne_5": "AMEREY", "nom_de_la_commune": "XERTIGNY", "coordonnees_gps": [48.0725237155, 6.41958186786]}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6963097e8caed44c8519bfd98b31a7193af14cf5", "fields": {"nom_de_la_commune": "XONRUPT LONGEMER", "libell_d_acheminement": "XONRUPT LONGEMER", "code_postal": "88400", "coordonnees_gps": [48.0708964326, 6.88124451872], "code_commune_insee": "88531"}, "geometry": {"type": "Point", "coordinates": [6.88124451872, 48.0708964326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065696fea406a0cf379eb8ffcb58a92e49e21951", "fields": {"nom_de_la_commune": "AISY SUR ARMANCON", "libell_d_acheminement": "AISY SUR ARMANCON", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89004"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f57065d1fbbbd1c99158fece10dbf62c9227ebc", "fields": {"code_postal": "89160", "code_commune_insee": "89005", "libell_d_acheminement": "ANCY LE FRANC", "ligne_5": "CUSY", "nom_de_la_commune": "ANCY LE FRANC", "coordonnees_gps": [47.7772262093, 4.15865365255]}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b9e2ac07dc17b810c29a5071157095d1356c34", "fields": {"nom_de_la_commune": "ANNAY SUR SEREIN", "libell_d_acheminement": "ANNAY SUR SEREIN", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89010"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b94b1078ac8e4ca7e37993b569b4b6a678783fc", "fields": {"nom_de_la_commune": "ARCES DILO", "libell_d_acheminement": "ARCES DILO", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89014"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a05cb6ff68e79391504c6d1dd2746e291295ae", "fields": {"nom_de_la_commune": "ARCY SUR CURE", "libell_d_acheminement": "ARCY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89015"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a96995addabeeee560ca51e5416f929e1c4520", "fields": {"nom_de_la_commune": "ATHIE", "libell_d_acheminement": "ATHIE", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89022"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1879259b7d69c39ff91889a3d72f9584fe4ac6", "fields": {"nom_de_la_commune": "BERNOUIL", "libell_d_acheminement": "BERNOUIL", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89038"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ed49d2d49df182081c918add10fcba018c5270", "fields": {"nom_de_la_commune": "BLACY", "libell_d_acheminement": "BLACY", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89043"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076ecb0138f5043f91f2770d997973332228d7ac", "fields": {"nom_de_la_commune": "BLEIGNY LE CARREAU", "libell_d_acheminement": "BLEIGNY LE CARREAU", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89045"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18d75213ec84f695b14670249d26d83a987fc89", "fields": {"nom_de_la_commune": "BLENEAU", "libell_d_acheminement": "BLENEAU", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89046"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94151060e48b8a4763208e3cfa51e05a9d5808f", "fields": {"nom_de_la_commune": "BRANNAY", "libell_d_acheminement": "BRANNAY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89054"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755f4135bfb4206cebaad8ca3440862b8d005644", "fields": {"code_postal": "89210", "code_commune_insee": "89055", "libell_d_acheminement": "BRIENON SUR ARMANCON", "ligne_5": "BLIGNY EN OTHE", "nom_de_la_commune": "BRIENON SUR ARMANCON", "coordonnees_gps": [48.0402670235, 3.63057166674]}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5875b7090b105e07d426f1937c97de169fca1c4", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89056"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ab5a4ba731fedb282d2cb5ce237437fd7696f9", "fields": {"nom_de_la_commune": "BROSSES", "libell_d_acheminement": "BROSSES", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89057"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c55c59b26a836da3a09d62aa9a1a13ead60e698", "fields": {"nom_de_la_commune": "BUSSY LE REPOS", "libell_d_acheminement": "BUSSY LE REPOS", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89060"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80aaff9509baa09d552cfce40a6979863756280f", "fields": {"nom_de_la_commune": "CERISIERS", "libell_d_acheminement": "CERISIERS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89066"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1912ab764ec04ef68fc55771830bd53c7e14b25a", "fields": {"nom_de_la_commune": "CHAILLEY", "libell_d_acheminement": "CHAILLEY", "code_postal": "89770", "coordonnees_gps": [48.1187207961, 3.6979482675], "code_commune_insee": "89069"}, "geometry": {"type": "Point", "coordinates": [3.6979482675, 48.1187207961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776cbc39ca956940147af213558f5c806e055761", "fields": {"code_postal": "89350", "code_commune_insee": "89073", "libell_d_acheminement": "CHAMPIGNELLES", "ligne_5": "LOUESME", "nom_de_la_commune": "CHAMPIGNELLES", "coordonnees_gps": [47.7773444304, 3.09490527015]}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3547033f68e47c618ae72ef1e3c4506e72d80750", "fields": {"nom_de_la_commune": "CHAMPLAY", "libell_d_acheminement": "CHAMPLAY", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89075"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58150f3bbd7fa60f22b83ef2dd88664ba04fdb1f", "fields": {"nom_de_la_commune": "CHAMPLOST", "libell_d_acheminement": "CHAMPLOST", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89076"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6372866448b1d8e13ed90e923c9c2ceb90eb899c", "fields": {"nom_de_la_commune": "CHAMPS SUR YONNE", "libell_d_acheminement": "CHAMPS SUR YONNE", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89077"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a33a14fea60743ffae661e4a948b76226c9433", "fields": {"nom_de_la_commune": "CHARNY OREE DE PUISAYE", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "code_postal": "89120", "coordonnees_gps": [47.8865953277, 3.09899057886], "code_commune_insee": "89086"}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44df8bac22e44eed8a650c4cf42d8ad686712ae0", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "DICY", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c740969b78aaf5dcffcab6b0a2dfb409f7a41651", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "PERREUX", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df116a88e5d1bbf857b87983c669f8bd3ee7a1e", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "PRUNOY", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334074254aea042ac6a076bf5e28a43540f7e7f1", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "ST MARTIN SUR OUANNE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1b9fe71d9d793c96f4a32de70bb573a8b2591a", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "VILLEFRANCHE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4fe8a75552f737770997e961e769f4375e35836", "fields": {"nom_de_la_commune": "CHATEL CENSOIR", "libell_d_acheminement": "CHATEL CENSOIR", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89091"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f2fac01b334718d0bc0ed3a1878cfa3a8526ae", "fields": {"nom_de_la_commune": "CHENY", "libell_d_acheminement": "CHENY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89099"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906af5de9c7bbfff501bac3a0a80ed5fd40a43a4", "fields": {"nom_de_la_commune": "CHEU", "libell_d_acheminement": "CHEU", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89101"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b776e14bc1a8393c8c4003c64ceb2f0ac8783df4", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89102"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79910707340238255fc5cd3149b18bc25769c98e", "fields": {"nom_de_la_commune": "COLLAN", "libell_d_acheminement": "COLLAN", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89112"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cba648dc3990e8e1b4f841495133f342f102f66", "fields": {"nom_de_la_commune": "COMPIGNY", "libell_d_acheminement": "COMPIGNY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89115"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e21cef3221b3333c2a62708353b63f3b2d02da3", "fields": {"nom_de_la_commune": "COUTARNOUX", "libell_d_acheminement": "COUTARNOUX", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89128"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e254fce67645e7c5da5921a85453168e6a143c44", "fields": {"nom_de_la_commune": "CUSSY LES FORGES", "libell_d_acheminement": "CUSSY LES FORGES", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89134"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af293be3a0cca120981fa85294d6f1f094510a28", "fields": {"nom_de_la_commune": "DANNEMOINE", "libell_d_acheminement": "DANNEMOINE", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89137"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5c2ca1d58488b33c3666c4bfcc37dcc6f10818", "fields": {"nom_de_la_commune": "DOMATS", "libell_d_acheminement": "DOMATS", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89144"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266411724b2d0e35d377db9783da9fe6b9fc534d", "fields": {"nom_de_la_commune": "DRACY", "libell_d_acheminement": "DRACY", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89147"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ae69730e024d32b3230db0a5b7ac4ec84b9989", "fields": {"nom_de_la_commune": "EPINEAU LES VOVES", "libell_d_acheminement": "EPINEAU LES VOVES", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89152"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec1810b2181140653f15ae50f49ea7869e20d5f", "fields": {"nom_de_la_commune": "EVRY", "libell_d_acheminement": "EVRY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89162"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06c205be996681f478ba4db4853845239f0251c", "fields": {"nom_de_la_commune": "FLEURY LA VALLEE", "libell_d_acheminement": "FLEURY LA VALLEE", "code_postal": "89113", "coordonnees_gps": [47.8595932276, 3.45642824955], "code_commune_insee": "89167"}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17963ab3cb85b627a18739789b566bef55029095", "fields": {"nom_de_la_commune": "FLOGNY LA CHAPELLE", "libell_d_acheminement": "FLOGNY LA CHAPELLE", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89169"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fd87fe3e0498e34ce2a4ced2c5417e65d9bd96f", "fields": {"nom_de_la_commune": "FULVY", "libell_d_acheminement": "FULVY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89184"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27ffbac4bb5d9b6f534de09a0bfaba0e5940bee", "fields": {"nom_de_la_commune": "GRIMAULT", "libell_d_acheminement": "GRIMAULT", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89194"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab4b1ba9a192d0049658769d6af16840483b916", "fields": {"code_postal": "89113", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "VILLEMER", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8595932276, 3.45642824955]}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51ef2fec412826c49124443ee1801aca8abf130", "fields": {"nom_de_la_commune": "HERY", "libell_d_acheminement": "HERY", "code_postal": "89550", "coordonnees_gps": [47.8971752309, 3.63705032561], "code_commune_insee": "89201"}, "geometry": {"type": "Point", "coordinates": [3.63705032561, 47.8971752309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a7f6475086ee9a04d4940457d81aac37e049f6", "fields": {"nom_de_la_commune": "ISLAND", "libell_d_acheminement": "ISLAND", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89203"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819cc8ef33268e4ac9593b6bd18dd15bfa1b40ca", "fields": {"nom_de_la_commune": "L ISLE SUR SEREIN", "libell_d_acheminement": "L ISLE SUR SEREIN", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89204"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ccbae266d19c55cd650096af627df5c5bcbb3e", "fields": {"nom_de_la_commune": "JULLY", "libell_d_acheminement": "JULLY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89210"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545eee9506b027bb87eee131dba19e5c54360894", "fields": {"nom_de_la_commune": "LEZINNES", "libell_d_acheminement": "LEZINNES", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89223"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb6fdc7ae97807724f83335a5d91898acdfcf44", "fields": {"nom_de_la_commune": "LUCY LE BOIS", "libell_d_acheminement": "LUCY LE BOIS", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89232"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05881107300964dfef65dd0acd02e425a8160ab9", "fields": {"nom_de_la_commune": "MAILLOT", "libell_d_acheminement": "MAILLOT", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89236"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1599ff0b114cd124b54b48c8a5d333d0b1835967", "fields": {"nom_de_la_commune": "MALAY LE GRAND", "libell_d_acheminement": "MALAY LE GRAND", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89239"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ededed1017707722a2da97e1599aeb650623b373", "fields": {"nom_de_la_commune": "MONTACHER VILLEGARDIN", "libell_d_acheminement": "MONTACHER VILLEGARDIN", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89264"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49a45238d0df9bc875cd0af8dfc10fa0024b06a", "fields": {"nom_de_la_commune": "MONTILLOT", "libell_d_acheminement": "MONTILLOT", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89266"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102a5e875b1cb7dbb0bcacf5283d1adaec32d9cc", "fields": {"nom_de_la_commune": "NAILLY", "libell_d_acheminement": "NAILLY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89274"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0d7d3667c8705c026fefa600f931e4b677621a", "fields": {"code_postal": "89560", "code_commune_insee": "89283", "libell_d_acheminement": "OUANNE", "ligne_5": "CHASTENAY", "nom_de_la_commune": "OUANNE", "coordonnees_gps": [47.6134740976, 3.44560767581]}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab52b1de9a6c3d484d3a0816133ee8e9aae3107", "fields": {"nom_de_la_commune": "PACY SUR ARMANCON", "libell_d_acheminement": "PACY SUR ARMANCON", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89284"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd539fd6e5275a2a14384e339b7c8b46c4cef48", "fields": {"nom_de_la_commune": "PARLY", "libell_d_acheminement": "PARLY", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89286"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79553f7f1ccb179ae2327b6c58450a2ee5727d9", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "89510", "coordonnees_gps": [48.1263967669, 3.31137297054], "code_commune_insee": "89291"}, "geometry": {"type": "Point", "coordinates": [3.31137297054, 48.1263967669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597d242851e764c7710d9518693cf0ac1ed87d67", "fields": {"nom_de_la_commune": "PONTIGNY", "libell_d_acheminement": "PONTIGNY", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89307"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19451330ce90b6997e9ba2ba4a9935f3a591c5bd", "fields": {"nom_de_la_commune": "PRECY LE SEC", "libell_d_acheminement": "PRECY LE SEC", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89312"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45384a82096bcc6158dbedd68b4b52b985e77b0", "fields": {"nom_de_la_commune": "QUINCEROT", "libell_d_acheminement": "QUINCEROT", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89320"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "938600179384d789a5ad8a953fbbe332f8cc8d66", "fields": {"nom_de_la_commune": "RUGNY", "libell_d_acheminement": "RUGNY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89329"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8241c70cc35af5e1aa958aff478d5b776e9a34b3", "fields": {"nom_de_la_commune": "ST CYR LES COLONS", "libell_d_acheminement": "ST CYR LES COLONS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89341"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0718ecb337d1a9f699953722160d634c193c47", "fields": {"nom_de_la_commune": "ST GERMAIN DES CHAMPS", "libell_d_acheminement": "ST GERMAIN DES CHAMPS", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89347"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1115709bbdb16d10bb21b852bf1d861dd180a44d", "fields": {"nom_de_la_commune": "SAMBOURG", "libell_d_acheminement": "SAMBOURG", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89374"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d64baedf38daf251b4df8d0f19643b52a1b8c2", "fields": {"nom_de_la_commune": "SERGINES", "libell_d_acheminement": "SERGINES", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89391"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c8a6ea938e6d7e871cf7b6a26f881f7beb5f21", "fields": {"nom_de_la_commune": "SOUGERES EN PUISAYE", "libell_d_acheminement": "SOUGERES EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89400"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b473d47e11ccc92f759fb1020023a5514aae3d04", "fields": {"code_postal": "89430", "code_commune_insee": "89407", "libell_d_acheminement": "TANLAY", "ligne_5": "COMMISSEY", "nom_de_la_commune": "TANLAY", "coordonnees_gps": [47.8807711106, 4.10354187275]}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4c31c020a47ecf86d4c948d9ca6c9676750909", "fields": {"code_postal": "89190", "code_commune_insee": "89411", "libell_d_acheminement": "LES VALLEES DE LA VANNE", "ligne_5": "CHIGY", "nom_de_la_commune": "LES VALLEES DE LA VANNE", "coordonnees_gps": [48.2459686813, 3.51900151946]}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c02b7ab26ce8f2e94d57b9cfc226998e774d621", "fields": {"code_postal": "89260", "code_commune_insee": "89414", "libell_d_acheminement": "THORIGNY SUR OREUSE", "ligne_5": "FLEURIGNY", "nom_de_la_commune": "THORIGNY SUR OREUSE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed0742476e0d1423a96d3782865b25fef8185e5", "fields": {"code_postal": "89520", "code_commune_insee": "89420", "libell_d_acheminement": "TREIGNY", "ligne_5": "PERREUSE", "nom_de_la_commune": "TREIGNY", "coordonnees_gps": [47.5878935462, 3.24481774824]}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676ee7b1440676a38c48bb0138d99c1e4b1ae1dc", "fields": {"nom_de_la_commune": "TREVILLY", "libell_d_acheminement": "TREVILLY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89421"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03699946aec384f22668f099cffdf9880f82d38d", "fields": {"nom_de_la_commune": "VALLAN", "libell_d_acheminement": "VALLAN", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89427"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dbc095d93ae783c2f34c737c1d64b5b8d2ce44b", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "89144", "coordonnees_gps": [47.9141574217, 3.77517476311], "code_commune_insee": "89430"}, "geometry": {"type": "Point", "coordinates": [3.77517476311, 47.9141574217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31ab283defbe28afdae4a90cc38ed73d55ad989", "fields": {"nom_de_la_commune": "VERMENTON", "libell_d_acheminement": "VERMENTON", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89441"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6fef36161afb4a0b1506ff58be19fecad189bed", "fields": {"nom_de_la_commune": "SORRUS", "libell_d_acheminement": "SORRUS", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62799"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4220281699a3be7980d59c5be0d5c5536f8d9b2e", "fields": {"nom_de_la_commune": "THIEMBRONNE", "libell_d_acheminement": "THIEMBRONNE", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62812"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d3e570120bb098fa9421c9f5d2220a9ab032bb", "fields": {"nom_de_la_commune": "TILQUES", "libell_d_acheminement": "TILQUES", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62819"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe77308a056e1cc5e40137ac1e2ee6beac5ceeb4", "fields": {"nom_de_la_commune": "TINCQUES", "libell_d_acheminement": "TINCQUES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62820"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb9a826311e299a3ab1a6dedaa287c782d4bdaa", "fields": {"nom_de_la_commune": "LE TRANSLOY", "libell_d_acheminement": "LE TRANSLOY", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62829"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66831dea3309bc74a1727f7b6dbcdf820f03927", "fields": {"nom_de_la_commune": "TUBERSENT", "libell_d_acheminement": "TUBERSENT", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62832"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18706f0e96681c2844b4a3b785297bae9aadc1c", "fields": {"nom_de_la_commune": "VACQUERIETTE ERQUIERES", "libell_d_acheminement": "VACQUERIETTE ERQUIERES", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62834"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76d6d619c8c0ac4de6ad244cebd31ffa585eaa0b", "fields": {"code_postal": "62140", "code_commune_insee": "62834", "libell_d_acheminement": "VACQUERIETTE ERQUIERES", "ligne_5": "ERQUIERES", "nom_de_la_commune": "VACQUERIETTE ERQUIERES", "coordonnees_gps": [50.3629507199, 2.0044166227]}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9a029f38b572400ff6809f090cfd234cbe968a", "fields": {"nom_de_la_commune": "VERMELLES", "libell_d_acheminement": "VERMELLES", "code_postal": "62980", "coordonnees_gps": [50.4874081361, 2.75177824999], "code_commune_insee": "62846"}, "geometry": {"type": "Point", "coordinates": [2.75177824999, 50.4874081361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b3860af7f4b96f18d89ee0daae1e4281bc7a09", "fields": {"nom_de_la_commune": "VERQUIGNEUL", "libell_d_acheminement": "VERQUIGNEUL", "code_postal": "62113", "coordonnees_gps": [50.498906195, 2.68600111131], "code_commune_insee": "62847"}, "geometry": {"type": "Point", "coordinates": [2.68600111131, 50.498906195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39c6914fd0bf8a2f12ebd132f250aeb1d31de43", "fields": {"nom_de_la_commune": "VIEILLE CHAPELLE", "libell_d_acheminement": "VIEILLE CHAPELLE", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62851"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d7d5414c14d1b5f6e8a7496fe78306733d48c8c", "fields": {"nom_de_la_commune": "VILLERS AU FLOS", "libell_d_acheminement": "VILLERS AU FLOS", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62855"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ac482e3f81b7aab8979bda48a8f122c7ff4643", "fields": {"nom_de_la_commune": "VILLERS LES CAGNICOURT", "libell_d_acheminement": "VILLERS LES CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62858"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cce639bbcc81f870d56b5bb60f680bd68cdd03", "fields": {"nom_de_la_commune": "VILLERS SIR SIMON", "libell_d_acheminement": "VILLERS SIR SIMON", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62860"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "730282245f1f08d24bc9cb7624abf68b979b739d", "fields": {"nom_de_la_commune": "VIOLAINES", "libell_d_acheminement": "VIOLAINES", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62863"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e7158b73cf703a27a42a2f5665e051e6405a1d", "fields": {"nom_de_la_commune": "VITRY EN ARTOIS", "libell_d_acheminement": "VITRY EN ARTOIS", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62865"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4520b0fb532fabda68f704dfd618037a70f52ed5", "fields": {"nom_de_la_commune": "WABEN", "libell_d_acheminement": "WABEN", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62866"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4deccfd626fa7c99c05e512c26676b7376745254", "fields": {"nom_de_la_commune": "WAILLY BEAUCAMP", "libell_d_acheminement": "WAILLY BEAUCAMP", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62870"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7284ecfa24523b920e708b8b498f03f92cd7015a", "fields": {"nom_de_la_commune": "LE WAST", "libell_d_acheminement": "LE WAST", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62880"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72b4b6acb880c3f37b73599e14a669a4c620949", "fields": {"nom_de_la_commune": "WIERRE EFFROY", "libell_d_acheminement": "WIERRE EFFROY", "code_postal": "62720", "coordonnees_gps": [50.7869009798, 1.75735193267], "code_commune_insee": "62889"}, "geometry": {"type": "Point", "coordinates": [1.75735193267, 50.7869009798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a0e61b5d9cbf742c76d4b00901ba0019f38f48", "fields": {"nom_de_la_commune": "WIMILLE", "libell_d_acheminement": "WIMILLE", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62894"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c0b396d2fd3a082c8c56096b5de3d3ad87eb36", "fields": {"nom_de_la_commune": "LA CAPELLE LES BOULOGNE", "libell_d_acheminement": "LA CAPELLE LES BOULOGNE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62908"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29db44714453fe3a47e203840a90078d4ecbc295", "fields": {"nom_de_la_commune": "AIGUEPERSE", "libell_d_acheminement": "AIGUEPERSE", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63001"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe65b78ad10fb9848ef67d378efe5bc198d22e7f", "fields": {"nom_de_la_commune": "AUBIAT", "libell_d_acheminement": "AUBIAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63013"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80bd2f113c5c01dd1deb739d2f4588e5901091ce", "fields": {"code_postal": "63570", "code_commune_insee": "63022", "libell_d_acheminement": "AUZAT LA COMBELLE", "ligne_5": "LA COMBELLE", "nom_de_la_commune": "AUZAT LA COMBELLE", "coordonnees_gps": [45.4492336759, 3.34157709163]}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d2ea2e893bb0e8f293dbb50887736ac5292345", "fields": {"nom_de_la_commune": "AYDAT", "libell_d_acheminement": "AYDAT", "code_postal": "63970", "coordonnees_gps": [45.653938341, 2.95129100684], "code_commune_insee": "63026"}, "geometry": {"type": "Point", "coordinates": [2.95129100684, 45.653938341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "688ff046bae3936bf970ed60faf7d4704c8120c2", "fields": {"nom_de_la_commune": "BAFFIE", "libell_d_acheminement": "BAFFIE", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63027"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a206093a8b04d7b66db9d68cf63ba4730e6da311", "fields": {"nom_de_la_commune": "BAS ET LEZAT", "libell_d_acheminement": "BAS ET LEZAT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63030"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccf09cc47eeaaf088e7f293aeb855fcc7d54ae5", "fields": {"nom_de_la_commune": "BEAUREGARD L EVEQUE", "libell_d_acheminement": "BEAUREGARD L EVEQUE", "code_postal": "63116", "coordonnees_gps": [45.8139604916, 3.29847801241], "code_commune_insee": "63034"}, "geometry": {"type": "Point", "coordinates": [3.29847801241, 45.8139604916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f890a51ebcbf9fa68de5953c0a963206aa2c45cb", "fields": {"nom_de_la_commune": "LE BREUIL SUR COUZE", "libell_d_acheminement": "LE BREUIL SUR COUZE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63052"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0123d5437b2de7947e7c1295d4f091101c77707", "fields": {"nom_de_la_commune": "CEBAZAT", "libell_d_acheminement": "CEBAZAT", "code_postal": "63118", "coordonnees_gps": [45.8320179431, 3.10746856841], "code_commune_insee": "63063"}, "geometry": {"type": "Point", "coordinates": [3.10746856841, 45.8320179431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21511918f5676e2cec3f717d4cbc04e2bb34e179", "fields": {"nom_de_la_commune": "CHAMPAGNAT LE JEUNE", "libell_d_acheminement": "CHAMPAGNAT LE JEUNE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63079"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efd85e64fd3cd5617e9014ec8abe32c918ba910", "fields": {"nom_de_la_commune": "CHAMPETIERES", "libell_d_acheminement": "CHAMPETIERES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63081"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7521f8aa9ff47fbf9a443b73d71f0ee0c56c3fbf", "fields": {"nom_de_la_commune": "CHAMPS", "libell_d_acheminement": "CHAMPS", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63082"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a9938ff7100d100446d9073a1e3b140431576b", "fields": {"nom_de_la_commune": "CHANONAT", "libell_d_acheminement": "CHANONAT", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63084"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5722e3fb7f337f743b3edbaaf4f704860fe4802e", "fields": {"nom_de_la_commune": "CHARBONNIER LES MINES", "libell_d_acheminement": "CHARBONNIER LES MINES", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63091"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6947b17bb18732a18773bb11184de2ff0d5ab1f6", "fields": {"code_postal": "63410", "code_commune_insee": "63092", "libell_d_acheminement": "CHARBONNIERES LES VARENNES", "ligne_5": "PAUGNAT", "nom_de_la_commune": "CHARBONNIERES LES VARENNES", "coordonnees_gps": [45.9529948229, 2.96821882159]}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1492d03e284b6be9bea308cd9993295485e208", "fields": {"nom_de_la_commune": "CHARBONNIERES LES VIEILLES", "libell_d_acheminement": "CHARBONNIERES LES VIEILLES", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63093"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da3b5e4bda63782edf4593f04ccd822abb61b1c", "fields": {"nom_de_la_commune": "LE CHEIX", "libell_d_acheminement": "LE CHEIX", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63108"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcf37b88d215d1bd3dda8d538b9abf92bf17402", "fields": {"nom_de_la_commune": "CISTERNES LA FORET", "libell_d_acheminement": "CISTERNES LA FORET", "code_postal": "63740", "coordonnees_gps": [45.781044639, 2.74706737615], "code_commune_insee": "63110"}, "geometry": {"type": "Point", "coordinates": [2.74706737615, 45.781044639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b32698de32cb4168d160d5d81e21796cdd948b5d", "fields": {"nom_de_la_commune": "CONDAT LES MONTBOISSIER", "libell_d_acheminement": "CONDAT LES MONTBOISSIER", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63119"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f386943661acb6e93a4becf7a15d588f4606c039", "fields": {"nom_de_la_commune": "CRESTE", "libell_d_acheminement": "CRESTE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63127"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba37eae5bca9af595c14d9e94546130586bfdede", "fields": {"nom_de_la_commune": "DORE L EGLISE", "libell_d_acheminement": "DORE L EGLISE", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63139"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91adf2243b5143f2e2848d0d63505c4518fa48e2", "fields": {"nom_de_la_commune": "EGLISENEUVE DES LIARDS", "libell_d_acheminement": "EGLISENEUVE DES LIARDS", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63145"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9392eede1b4853f2b022c25bb30c2d4cd1bc03c", "fields": {"nom_de_la_commune": "EGLISENEUVE PRES BILLOM", "libell_d_acheminement": "EGLISENEUVE PRES BILLOM", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63146"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfc6e4c6c2b3bfbdeb2d6e11d358f99d447288e", "fields": {"nom_de_la_commune": "AULHAT FLAT", "libell_d_acheminement": "AULHAT FLAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63160"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d63563a98a36e902ba802a72e8ae9f113b34d72", "fields": {"nom_de_la_commune": "LA FORIE", "libell_d_acheminement": "LA FORIE", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63161"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b234cf8ef0706b24929e1dc4a40d2743000955a", "fields": {"nom_de_la_commune": "GELLES", "libell_d_acheminement": "GELLES", "code_postal": "63740", "coordonnees_gps": [45.781044639, 2.74706737615], "code_commune_insee": "63163"}, "geometry": {"type": "Point", "coordinates": [2.74706737615, 45.781044639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e07c8c63cca7bbc829a6258feb2eab11dfee3a8", "fields": {"nom_de_la_commune": "HERMENT", "libell_d_acheminement": "HERMENT", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63175"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6912e17c38133bf3dbb97c0baddbedf10bec41b", "fields": {"nom_de_la_commune": "JUMEAUX", "libell_d_acheminement": "JUMEAUX", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63182"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa358073cdbb5eb51156ae561b3836b607b4589b", "fields": {"nom_de_la_commune": "LACHAUX", "libell_d_acheminement": "LACHAUX", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63184"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3497cccf60cb38b6be46ff673d04461bf61afc", "fields": {"nom_de_la_commune": "LAPEYROUSE", "libell_d_acheminement": "LAPEYROUSE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63187"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519ef7a015683d916f5466f5a64e64236e708c9c", "fields": {"nom_de_la_commune": "LA TOUR D AUVERGNE", "libell_d_acheminement": "LA TOUR D AUVERGNE", "code_postal": "63680", "coordonnees_gps": [45.5115697686, 2.72357891601], "code_commune_insee": "63192"}, "geometry": {"type": "Point", "coordinates": [2.72357891601, 45.5115697686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab2b3e0a7144524ada8a13e477292a5d852c9f6", "fields": {"nom_de_la_commune": "LOUBEYRAT", "libell_d_acheminement": "LOUBEYRAT", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63198"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2e1b3df4c16808ae81411dc2bc9dda5bd87c80", "fields": {"nom_de_la_commune": "MARAT", "libell_d_acheminement": "MARAT", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63207"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3051de728dd28528cce88b694d0015c27349eb8a", "fields": {"nom_de_la_commune": "MARSAT", "libell_d_acheminement": "MARSAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63212"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb99c3a2a28378d11e788fe0490129d6b3f9cdc", "fields": {"nom_de_la_commune": "MENAT", "libell_d_acheminement": "MENAT", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63223"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977b4519780ec1e2b13e4b3da864e356414f551b", "fields": {"nom_de_la_commune": "MESSEIX", "libell_d_acheminement": "MESSEIX", "code_postal": "63750", "coordonnees_gps": [45.6027201086, 2.52290102161], "code_commune_insee": "63225"}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d0501b775300e79e8094bbb5f504b58b08645a", "fields": {"code_postal": "63750", "code_commune_insee": "63225", "libell_d_acheminement": "MESSEIX", "ligne_5": "BOGROS", "nom_de_la_commune": "MESSEIX", "coordonnees_gps": [45.6027201086, 2.52290102161]}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576f2c1155eb39c4e4df17e90f213df563c2ea1e", "fields": {"nom_de_la_commune": "MIREFLEURS", "libell_d_acheminement": "MIREFLEURS", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63227"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ab140acb136a739c5a48018fe3a0f1b85d95b6", "fields": {"nom_de_la_commune": "LE MONESTIER", "libell_d_acheminement": "LE MONESTIER", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63230"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e9ac432dac39bf1fb63b81795db899aa2b9ab9", "fields": {"nom_de_la_commune": "MONTEL DE GELAT", "libell_d_acheminement": "MONTEL DE GELAT", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63237"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa938a422b16edf7148bf0fbd2875821b777b54", "fields": {"nom_de_la_commune": "MOUREUILLE", "libell_d_acheminement": "MOUREUILLE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63243"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d592b441d0b037cdd5258314153eb514631e23", "fields": {"nom_de_la_commune": "MOZAC", "libell_d_acheminement": "MOZAC", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63245"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d29dab8047a980369551c584cdbab77bda6ec3", "fields": {"nom_de_la_commune": "NEUVILLE", "libell_d_acheminement": "NEUVILLE", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63252"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58623cd8779250d82a6d634d16df039dc987d24c", "fields": {"nom_de_la_commune": "OLLIERGUES", "libell_d_acheminement": "OLLIERGUES", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63258"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e670a1d75ab0bd2da16fbf2fce162e6de1d6405", "fields": {"nom_de_la_commune": "PERRIER", "libell_d_acheminement": "PERRIER", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63275"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfeaa94f79a0d0c4db850d70ea3f61f05c8d163", "fields": {"nom_de_la_commune": "PESCHADOIRES", "libell_d_acheminement": "PESCHADOIRES", "code_postal": "63920", "coordonnees_gps": [45.8268662803, 3.48096267622], "code_commune_insee": "63276"}, "geometry": {"type": "Point", "coordinates": [3.48096267622, 45.8268662803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d465f7162a5fac14d288646e215f2391232c50d", "fields": {"nom_de_la_commune": "PESLIERES", "libell_d_acheminement": "PESLIERES", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63277"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "009518999add2947fbadb78e2aacdcad362c154a", "fields": {"nom_de_la_commune": "PIONSAT", "libell_d_acheminement": "PIONSAT", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63281"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb4d5f1ba73dfd66b380a9d94f90a23d20d5957", "fields": {"nom_de_la_commune": "LES PRADEAUX", "libell_d_acheminement": "LES PRADEAUX", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63287"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7545b471853592727c91509149b523b63c49f8b", "fields": {"nom_de_la_commune": "PRONDINES", "libell_d_acheminement": "PRONDINES", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63289"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb97b58064459d4b5087dcecfc421a3b3873998", "fields": {"nom_de_la_commune": "RIS", "libell_d_acheminement": "RIS", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63301"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6b83d105c14116156879f48cc535e5e8b75890", "fields": {"nom_de_la_commune": "ROCHEFORT MONTAGNE", "libell_d_acheminement": "ROCHEFORT MONTAGNE", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63305"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50523804b79fb25e2301b489ae2e9dd41d44b58e", "fields": {"nom_de_la_commune": "SAILLANT", "libell_d_acheminement": "SAILLANT", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63309"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b368ab4bac4d04d24e3926db55c9f6a9a0be1ec1", "fields": {"nom_de_la_commune": "ST BABEL", "libell_d_acheminement": "ST BABEL", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63321"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8a7f289ac3187612a59414fbc4d1eaf044043a5", "fields": {"nom_de_la_commune": "STE CHRISTINE", "libell_d_acheminement": "STE CHRISTINE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63329"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9a6c207684fc97b851f349ccb85d01a6e72517", "fields": {"nom_de_la_commune": "ST DONAT", "libell_d_acheminement": "ST DONAT", "code_postal": "63680", "coordonnees_gps": [45.5115697686, 2.72357891601], "code_commune_insee": "63336"}, "geometry": {"type": "Point", "coordinates": [2.72357891601, 45.5115697686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2a339d76c14a79f47853ef0b2d112018c60c59", "fields": {"nom_de_la_commune": "ST GEORGES SUR ALLIER", "libell_d_acheminement": "ST GEORGES SUR ALLIER", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63350"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f163853b4f25b4ff1caec004814b2b2a7a906cf", "fields": {"nom_de_la_commune": "ST GERVAIS SOUS MEYMONT", "libell_d_acheminement": "ST GERVAIS SOUS MEYMONT", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63355"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86934c57b1398e2d0f98271ef1d8f0077dcb924", "fields": {"nom_de_la_commune": "ST GERVAZY", "libell_d_acheminement": "ST GERVAZY", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63356"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53f1fa13c901c71b0cc79d1d35422c2d2236c60", "fields": {"nom_de_la_commune": "ST JACQUES D AMBUR", "libell_d_acheminement": "ST JACQUES D AMBUR", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63363"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc8aa58c1c3072bc7ac6a8b081991bdf28d531b", "fields": {"nom_de_la_commune": "ST JEAN EN VAL", "libell_d_acheminement": "ST JEAN EN VAL", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63366"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb13766a58c5ff13751ca5268436280678079599", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63371"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c054d61d32f7a752d4ff8754691b51c88fd12ea", "fields": {"nom_de_la_commune": "ST MARTIN DES OLMES", "libell_d_acheminement": "ST MARTIN DES OLMES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63374"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ac756f00146cdeb15682050916524f47e862cd", "fields": {"nom_de_la_commune": "ST PIERRE LA BOURLHONNE", "libell_d_acheminement": "ST PIERRE LA BOURLHONNE", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63384"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cf2bc72187c154abc3a396bd31f3f401a79a2d", "fields": {"nom_de_la_commune": "ST PRIEST BRAMEFANT", "libell_d_acheminement": "ST PRIEST BRAMEFANT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63387"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb60043b1a8e00b0a3d38d211c07d9bb11f2a33f", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63394"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77a6d8d0d268627c6b89cab3e01f2530d5ee81e2", "fields": {"nom_de_la_commune": "ST SAUVEUR LA SAGNE", "libell_d_acheminement": "ST SAUVEUR LA SAGNE", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63398"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495365ab2ea6dfe57ff1462261d48bee1ead7e35", "fields": {"nom_de_la_commune": "SAULZET LE FROID", "libell_d_acheminement": "SAULZET LE FROID", "code_postal": "63970", "coordonnees_gps": [45.653938341, 2.95129100684], "code_commune_insee": "63407"}, "geometry": {"type": "Point", "coordinates": [2.95129100684, 45.653938341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e9ecc286c8aece2c0b02a34da92588e64a4f6f", "fields": {"nom_de_la_commune": "SAURET BESSERVE", "libell_d_acheminement": "SAURET BESSERVE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63408"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c6fa064886db916064301c702fcb334ce2efd4", "fields": {"nom_de_la_commune": "SAUVIAT", "libell_d_acheminement": "SAUVIAT", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63414"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4d8bae0d7c4bd168bbc8ae04230b3151e52f6c", "fields": {"nom_de_la_commune": "SAYAT", "libell_d_acheminement": "SAYAT", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63417"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e35591d5ea8f9e6b8335a386bda9f15b647b20a", "fields": {"nom_de_la_commune": "SERMENTIZON", "libell_d_acheminement": "SERMENTIZON", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63418"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3930d2db9c94d61915c09d492b2a1164817b882e", "fields": {"nom_de_la_commune": "SERVANT", "libell_d_acheminement": "SERVANT", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63419"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a2c0ad17c7385f65fd71aa9abd484247d0f0a2e", "fields": {"nom_de_la_commune": "SEYCHALLES", "libell_d_acheminement": "SEYCHALLES", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63420"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18159f4f15399f9a2be357f10929988e4378c07", "fields": {"nom_de_la_commune": "SOLIGNAT", "libell_d_acheminement": "SOLIGNAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63422"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e5d5702d40b886a9a8fc4a9dafae673870743c", "fields": {"nom_de_la_commune": "THURET", "libell_d_acheminement": "THURET", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63432"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9861fe6108f9469dedc9098b86fc225ebbb70d0d", "fields": {"nom_de_la_commune": "VARENNES SUR MORGE", "libell_d_acheminement": "VARENNES SUR MORGE", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63443"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac05af34c5478906f5b39daafe251965b2ae5e0", "fields": {"nom_de_la_commune": "VERGHEAS", "libell_d_acheminement": "VERGHEAS", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63447"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e19df8b90cc26c53997476ac1206f9c9fad5b06b", "fields": {"nom_de_la_commune": "LAMAGISTERE", "libell_d_acheminement": "LAMAGISTERE", "code_postal": "82360", "coordonnees_gps": [44.132053256, 0.820730203951], "code_commune_insee": "82089"}, "geometry": {"type": "Point", "coordinates": [0.820730203951, 44.132053256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c285b1efa29fbccea02e091e678011c207bdacce", "fields": {"nom_de_la_commune": "LAUZERTE", "libell_d_acheminement": "LAUZERTE", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82094"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec47f9cbe146f1118a044f81162841782ae3d51f", "fields": {"nom_de_la_commune": "LAVIT", "libell_d_acheminement": "LAVIT", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82097"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f483ead41efc9270ea16bf9e09a6592d7e2bdba7", "fields": {"nom_de_la_commune": "MOLIERES", "libell_d_acheminement": "MOLIERES", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82113"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc01153711aa8589353c6bc05861a218663e32c", "fields": {"nom_de_la_commune": "MONTAUBAN", "libell_d_acheminement": "MONTAUBAN", "code_postal": "82000", "coordonnees_gps": [44.0224789981, 1.36379301211], "code_commune_insee": "82121"}, "geometry": {"type": "Point", "coordinates": [1.36379301211, 44.0224789981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84608e0c7cb2386be70c45cdeb1e256b9688186", "fields": {"nom_de_la_commune": "MONTECH", "libell_d_acheminement": "MONTECH", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82125"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1e6de10f400fef643e7600fe6f66f1f82db57a", "fields": {"nom_de_la_commune": "MONTEILS", "libell_d_acheminement": "MONTEILS", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82126"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a650acd345c8b2ce7b26272662f2e1cff1162e46", "fields": {"nom_de_la_commune": "MONTFERMIER", "libell_d_acheminement": "MONTFERMIER", "code_postal": "82270", "coordonnees_gps": [44.2279601929, 1.48359927772], "code_commune_insee": "82128"}, "geometry": {"type": "Point", "coordinates": [1.48359927772, 44.2279601929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2043505db7e7a255395bf16e613f381dd87e8908", "fields": {"nom_de_la_commune": "MONTJOI", "libell_d_acheminement": "MONTJOI", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82130"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea2e10e9877e7c7f005a7b23a7ce7ec28af9a7c", "fields": {"nom_de_la_commune": "ST ARROUMEX", "libell_d_acheminement": "ST ARROUMEX", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82156"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d593991ba75923f1bc6d0a430e603375f322b878", "fields": {"nom_de_la_commune": "ST CIRQ", "libell_d_acheminement": "ST CIRQ", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82159"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b874b0091e28e4673f650c994f14a1cf606922", "fields": {"nom_de_la_commune": "ST NAZAIRE DE VALENTANE", "libell_d_acheminement": "ST NAZAIRE DE VALENTANE", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82168"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f2d2e36125710bf68a605ae19eb938b5eea35b", "fields": {"nom_de_la_commune": "LA SALVETAT BELMONTET", "libell_d_acheminement": "LA SALVETAT BELMONTET", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82176"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6ce63ef3131040193c8153e03dd6f2a8ead42b", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82177"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ad345258a0fdd9e6dbd5d1946a99e1858aa04f", "fields": {"nom_de_la_commune": "VERLHAC TESCOU", "libell_d_acheminement": "VERLHAC TESCOU", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82192"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b416edab37e374d3260f936cf55d70c9f477e681", "fields": {"nom_de_la_commune": "VILLEMADE", "libell_d_acheminement": "VILLEMADE", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82195"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60b9824d459de91e6e7cb2058a0072d857530c8", "fields": {"nom_de_la_commune": "AIGUINES", "libell_d_acheminement": "AIGUINES", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83002"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7455deac066ab5765a6b4ad5793443cfed2177f0", "fields": {"nom_de_la_commune": "BELGENTIER", "libell_d_acheminement": "BELGENTIER", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83017"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9d4e802315c40c202e57346e80ce100476be3b", "fields": {"nom_de_la_commune": "BRAS", "libell_d_acheminement": "BRAS", "code_postal": "83149", "coordonnees_gps": [43.4702120942, 5.95862515969], "code_commune_insee": "83021"}, "geometry": {"type": "Point", "coordinates": [5.95862515969, 43.4702120942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711297c6917aca3ef294d1b4eb5fc2926be9e804", "fields": {"nom_de_la_commune": "BRENON", "libell_d_acheminement": "BRENON", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83022"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99f6dc8fedb73e7b691918a8af88425dec3c233", "fields": {"nom_de_la_commune": "LA CADIERE D AZUR", "libell_d_acheminement": "LA CADIERE D AZUR", "code_postal": "83740", "coordonnees_gps": [43.203243315, 5.72523158524], "code_commune_insee": "83027"}, "geometry": {"type": "Point", "coordinates": [5.72523158524, 43.203243315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eacf3084b3f83109eb7e02b381f9b6d4ae163e1", "fields": {"code_postal": "83740", "code_commune_insee": "83027", "libell_d_acheminement": "LA CADIERE D AZUR", "ligne_5": "GRAND MOULIN", "nom_de_la_commune": "LA CADIERE D AZUR", "coordonnees_gps": [43.203243315, 5.72523158524]}, "geometry": {"type": "Point", "coordinates": [5.72523158524, 43.203243315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a712ab7edb55a426f2bba73bd1e209ad21f32a", "fields": {"nom_de_la_commune": "CAMPS LA SOURCE", "libell_d_acheminement": "CAMPS LA SOURCE", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83030"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48af1abc01956a257f96f2c644713b9a7b1cb75a", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "LA BEGUDE", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3793a5dab921f540ddcabd2cb55e3ea1e2395358", "fields": {"nom_de_la_commune": "CORRENS", "libell_d_acheminement": "CORRENS", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83045"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4799398211509239949a0a258dd8edf4380f78a5", "fields": {"code_postal": "83260", "code_commune_insee": "83047", "libell_d_acheminement": "LA CRAU", "ligne_5": "LA MOUTONNE", "nom_de_la_commune": "LA CRAU", "coordonnees_gps": [43.1635844264, 6.09277944177]}, "geometry": {"type": "Point", "coordinates": [6.09277944177, 43.1635844264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52ef3c091a668ea03a4dba701b0583b1b27233a", "fields": {"nom_de_la_commune": "CUERS", "libell_d_acheminement": "CUERS", "code_postal": "83390", "coordonnees_gps": [43.2473941525, 6.13306231898], "code_commune_insee": "83049"}, "geometry": {"type": "Point", "coordinates": [6.13306231898, 43.2473941525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac0e75f27cd24d437d5ebc650bf9b5a845384b1", "fields": {"nom_de_la_commune": "ESPARRON", "libell_d_acheminement": "ESPARRON", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83052"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b58add65da2a95a365dc2e2238d113f0037d74", "fields": {"nom_de_la_commune": "FLASSANS SUR ISSOLE", "libell_d_acheminement": "FLASSANS SUR ISSOLE", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83057"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0e2fa9b43151373b8f3198e0bcd8c604f695b2", "fields": {"code_postal": "83370", "code_commune_insee": "83061", "libell_d_acheminement": "FREJUS", "ligne_5": "ST AYGULF", "nom_de_la_commune": "FREJUS", "coordonnees_gps": [43.4719896788, 6.76389239034]}, "geometry": {"type": "Point", "coordinates": [6.76389239034, 43.4719896788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc66bfd2beee776f53843e216887cff8ed49383", "fields": {"nom_de_la_commune": "GAREOULT", "libell_d_acheminement": "GAREOULT", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83064"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937a78d101f3e35c7336f24884fcb3ecd819ccb7", "fields": {"code_postal": "83310", "code_commune_insee": "83068", "libell_d_acheminement": "GRIMAUD", "ligne_5": "PORT GRIMAUD", "nom_de_la_commune": "GRIMAUD", "coordonnees_gps": [43.248161575, 6.50847082602]}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9e671de9de6f2530c1375223f1bf6a389d420c", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "PORQUEROLLES", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc70d079d35c8a79f6c449b99d73a4798f8eb69", "fields": {"nom_de_la_commune": "LE LAVANDOU", "libell_d_acheminement": "LE LAVANDOU", "code_postal": "83980", "coordonnees_gps": [43.1659795447, 6.41263579843], "code_commune_insee": "83070"}, "geometry": {"type": "Point", "coordinates": [6.41263579843, 43.1659795447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b251233553f5187bf42f7c8dd3a60f89a48e260c", "fields": {"code_postal": "83980", "code_commune_insee": "83070", "libell_d_acheminement": "LE LAVANDOU", "ligne_5": "CAVALIERE", "nom_de_la_commune": "LE LAVANDOU", "coordonnees_gps": [43.1659795447, 6.41263579843]}, "geometry": {"type": "Point", "coordinates": [6.41263579843, 43.1659795447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d9b240f9a511d5fc4a24a45708210e32bc5e30", "fields": {"nom_de_la_commune": "LORGUES", "libell_d_acheminement": "LORGUES", "code_postal": "83510", "coordonnees_gps": [43.4882924341, 6.34408995292], "code_commune_insee": "83072"}, "geometry": {"type": "Point", "coordinates": [6.34408995292, 43.4882924341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648874ce72e41a0480351992b82ce7c6a2b051f3", "fields": {"nom_de_la_commune": "LA MOLE", "libell_d_acheminement": "LA MOLE", "code_postal": "83310", "coordonnees_gps": [43.248161575, 6.50847082602], "code_commune_insee": "83079"}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0026c7f5639607e833ade34d80f3fc9b8a693db7", "fields": {"nom_de_la_commune": "MONTFORT SUR ARGENS", "libell_d_acheminement": "MONTFORT SUR ARGENS", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83083"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64c397e3d1a33239a759e1e7c758302cabc3840", "fields": {"nom_de_la_commune": "NANS LES PINS", "libell_d_acheminement": "NANS LES PINS", "code_postal": "83860", "coordonnees_gps": [43.3789768743, 5.78461565848], "code_commune_insee": "83087"}, "geometry": {"type": "Point", "coordinates": [5.78461565848, 43.3789768743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daccdb893608d99aaae103b52a7a576577e514f6", "fields": {"nom_de_la_commune": "LE PLAN DE LA TOUR", "libell_d_acheminement": "LE PLAN DE LA TOUR", "code_postal": "83120", "coordonnees_gps": [43.3509505991, 6.59102562058], "code_commune_insee": "83094"}, "geometry": {"type": "Point", "coordinates": [6.59102562058, 43.3509505991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2990c912c00c928393c466a18e66dd4c0aacb29c", "fields": {"nom_de_la_commune": "POURRIERES", "libell_d_acheminement": "POURRIERES", "code_postal": "83910", "coordonnees_gps": [43.4938263679, 5.74734324634], "code_commune_insee": "83097"}, "geometry": {"type": "Point", "coordinates": [5.74734324634, 43.4938263679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a093f74a0a2798bd739929c845423e0f33a455", "fields": {"nom_de_la_commune": "LA ROQUEBRUSSANNE", "libell_d_acheminement": "LA ROQUEBRUSSANNE", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83108"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a28c0b92100c84d39331677c378593ef666c8a3b", "fields": {"nom_de_la_commune": "ROUGIERS", "libell_d_acheminement": "ROUGIERS", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83110"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925ee4f5654e0200dfe6c53d1bae2297935ec769", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83113"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f198e8baf2fb73c494f2ab365b8996f065bf9da2", "fields": {"nom_de_la_commune": "ST MARTIN DE PALLIERES", "libell_d_acheminement": "ST MARTIN DE PALLIERES", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83114"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397bcf6de41f12ec3dc3ba51020ca7b95e6f3773", "fields": {"nom_de_la_commune": "ST MAXIMIN LA STE BAUME", "libell_d_acheminement": "ST MAXIMIN LA STE BAUME", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83116"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53c97ef58e2f1f51ab3453970df5b82f025d0bd", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "AGAY", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf9af76adf8da7cdb22d57d0ebe9bade24f5a8d", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "ANTHEOR", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4efa98340835251ff23fc11aa217d2424d918d9", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "LE DRAMONT", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed37054bd8533f507b78a4835080c1899d4ff9e4", "fields": {"nom_de_la_commune": "ST TROPEZ", "libell_d_acheminement": "ST TROPEZ", "code_postal": "83990", "coordonnees_gps": [43.262061662, 6.66341629782], "code_commune_insee": "83119"}, "geometry": {"type": "Point", "coordinates": [6.66341629782, 43.262061662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5131b608a028cb2edfe30d446fd71722fb1ed71a", "fields": {"nom_de_la_commune": "LES SALLES SUR VERDON", "libell_d_acheminement": "LES SALLES SUR VERDON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83122"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7585d7cddc83d346cb1f628c985d3a91fd6e79f1", "fields": {"nom_de_la_commune": "SEILLANS", "libell_d_acheminement": "SEILLANS", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83124"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfc0dbaa91da74f56c6c1e2534eeff741dd4fb5", "fields": {"nom_de_la_commune": "TAVERNES", "libell_d_acheminement": "TAVERNES", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83135"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f93a9abaf5be3acb60a41d15c72213c36a793f", "fields": {"nom_de_la_commune": "TOULON", "libell_d_acheminement": "TOULON", "code_postal": "83100", "coordonnees_gps": [43.1364016655, 5.93275623187], "code_commune_insee": "83137"}, "geometry": {"type": "Point", "coordinates": [5.93275623187, 43.1364016655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4742ac5b7b5c7a062e7ad497c86b98d3344b213", "fields": {"nom_de_la_commune": "TRIGANCE", "libell_d_acheminement": "TRIGANCE", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83142"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0e8e134b77244432f0a7bff32b634b6d2ee4560", "fields": {"nom_de_la_commune": "LA VALETTE DU VAR", "libell_d_acheminement": "LA VALETTE DU VAR", "code_postal": "83160", "coordonnees_gps": [43.1503741057, 5.99203927405], "code_commune_insee": "83144"}, "geometry": {"type": "Point", "coordinates": [5.99203927405, 43.1503741057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d743a50b48648c06b5a7001c2114e320c08a16", "fields": {"nom_de_la_commune": "VERIGNON", "libell_d_acheminement": "VERIGNON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83147"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840129c963fcb39654b79d338a6707036ba9ad96", "fields": {"nom_de_la_commune": "VILLECROZE", "libell_d_acheminement": "VILLECROZE", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83149"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de2e01d53ddd7100221f6dbbf7402bd56593ec2", "fields": {"nom_de_la_commune": "VINON SUR VERDON", "libell_d_acheminement": "VINON SUR VERDON", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83150"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975326d5f4adb1afe1109349d3d62f4b8545540c", "fields": {"nom_de_la_commune": "ANSOUIS", "libell_d_acheminement": "ANSOUIS", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84002"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9291ef0c2cc87dc72a13be7b10d0ba694c6bac60", "fields": {"nom_de_la_commune": "AURIBEAU", "libell_d_acheminement": "AURIBEAU", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84006"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5812d67ebdde811c7b550402424007e5b8e1972c", "fields": {"nom_de_la_commune": "LE BARROUX", "libell_d_acheminement": "LE BARROUX", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84008"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "286d23f0b7ac2a15801bbae1e0b74da17d64d6f0", "fields": {"nom_de_la_commune": "LA BASTIDE DES JOURDANS", "libell_d_acheminement": "LA BASTIDE DES JOURDANS", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84009"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb38a975003560299c92928831a8eced9ad4f7b", "fields": {"nom_de_la_commune": "LE BEAUCET", "libell_d_acheminement": "LE BEAUCET", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84011"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e239f387718f893eb80f4d580f59509a6f65e744", "fields": {"nom_de_la_commune": "BEAUMES DE VENISE", "libell_d_acheminement": "BEAUMES DE VENISE", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84012"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee8d1324a894ae7fb4663206e4b5b1944bf255e", "fields": {"nom_de_la_commune": "BEDARRIDES", "libell_d_acheminement": "BEDARRIDES", "code_postal": "84370", "coordonnees_gps": [44.0478483452, 4.90802122589], "code_commune_insee": "84016"}, "geometry": {"type": "Point", "coordinates": [4.90802122589, 44.0478483452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b352608dbddb3165ec20378d94d48206cc7c6d00", "fields": {"nom_de_la_commune": "BOLLENE", "libell_d_acheminement": "BOLLENE", "code_postal": "84500", "coordonnees_gps": [44.2880934622, 4.75230417944], "code_commune_insee": "84019"}, "geometry": {"type": "Point", "coordinates": [4.75230417944, 44.2880934622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81174adfa83239f7bc5322aab8a2279b099119b4", "fields": {"nom_de_la_commune": "BUOUX", "libell_d_acheminement": "BUOUX", "code_postal": "84480", "coordonnees_gps": [43.8257511419, 5.32106039419], "code_commune_insee": "84023"}, "geometry": {"type": "Point", "coordinates": [5.32106039419, 43.8257511419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1edbe3385bc255b796af7061366282ba61176658", "fields": {"nom_de_la_commune": "CABRIERES D AIGUES", "libell_d_acheminement": "CABRIERES D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84024"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15c77bc75822d01cb6f24cff2a5cf6aecf0227e", "fields": {"nom_de_la_commune": "CRILLON LE BRAVE", "libell_d_acheminement": "CRILLON LE BRAVE", "code_postal": "84410", "coordonnees_gps": [44.1291997766, 5.23454879295], "code_commune_insee": "84041"}, "geometry": {"type": "Point", "coordinates": [5.23454879295, 44.1291997766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f46eb8f028cc81800925441654ea002d270a17", "fields": {"nom_de_la_commune": "ENTRAIGUES SUR LA SORGUE", "libell_d_acheminement": "ENTRAIGUES SUR LA SORGUE", "code_postal": "84320", "coordonnees_gps": [43.9953137505, 4.93275749544], "code_commune_insee": "84043"}, "geometry": {"type": "Point", "coordinates": [4.93275749544, 43.9953137505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241b264fc28891e3a115e2e6fe645638b442ec55", "fields": {"nom_de_la_commune": "GARGAS", "libell_d_acheminement": "GARGAS", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84047"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "580291ba5ccb81876ec4c53979f6672171a1a142", "fields": {"nom_de_la_commune": "GIGONDAS", "libell_d_acheminement": "GIGONDAS", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84049"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec3af7e6a9b5c5ad7e247039bee87d556159d00", "fields": {"nom_de_la_commune": "GORDES", "libell_d_acheminement": "GORDES", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84050"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60016e5088bfb6f3fe8e3ded4a823e8a1ac5d82", "fields": {"nom_de_la_commune": "LACOSTE", "libell_d_acheminement": "LACOSTE", "code_postal": "84480", "coordonnees_gps": [43.8257511419, 5.32106039419], "code_commune_insee": "84058"}, "geometry": {"type": "Point", "coordinates": [5.32106039419, 43.8257511419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e035380a60fa1c1b19021fbd6dc431855601d1f", "fields": {"nom_de_la_commune": "LAMOTTE DU RHONE", "libell_d_acheminement": "LAMOTTE DU RHONE", "code_postal": "84840", "coordonnees_gps": [44.2940948566, 4.67799884767], "code_commune_insee": "84063"}, "geometry": {"type": "Point", "coordinates": [4.67799884767, 44.2940948566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf1b0c9871f5811e35e6ebb669071e093ca9c37", "fields": {"nom_de_la_commune": "LORIOL DU COMTAT", "libell_d_acheminement": "LORIOL DU COMTAT", "code_postal": "84870", "coordonnees_gps": [44.0756390255, 5.00469197027], "code_commune_insee": "84067"}, "geometry": {"type": "Point", "coordinates": [5.00469197027, 44.0756390255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dde5e73c02fa27612c4e79ca1a3464c5c8b7ef8", "fields": {"nom_de_la_commune": "LOURMARIN", "libell_d_acheminement": "LOURMARIN", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84068"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81892929b29c17704d6fb289b40c65224c1c7661", "fields": {"nom_de_la_commune": "MORIERES LES AVIGNON", "libell_d_acheminement": "MORIERES LES AVIGNON", "code_postal": "84310", "coordonnees_gps": [43.9330682755, 4.90891793096], "code_commune_insee": "84081"}, "geometry": {"type": "Point", "coordinates": [4.90891793096, 43.9330682755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eacc29846effd690b2aa2936a0f91f33dbbe3274", "fields": {"nom_de_la_commune": "MORMOIRON", "libell_d_acheminement": "MORMOIRON", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84082"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a0d87265e6f5d63d3ce5c586fcadcf74b77610", "fields": {"nom_de_la_commune": "PUGET", "libell_d_acheminement": "PUGET", "code_postal": "84360", "coordonnees_gps": [43.7644472633, 5.24997704663], "code_commune_insee": "84093"}, "geometry": {"type": "Point", "coordinates": [5.24997704663, 43.7644472633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf20a9462510c4a8a3f24b4e48bedeec5328c0bc", "fields": {"nom_de_la_commune": "PUYMERAS", "libell_d_acheminement": "PUYMERAS", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84094"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0fd1996b84d84fad5626a430ccd25fcca67604b", "fields": {"nom_de_la_commune": "ROUSSILLON", "libell_d_acheminement": "ROUSSILLON", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84102"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f47d9e193f5829b7f44881a70abf6cea1e6c0e0", "fields": {"nom_de_la_commune": "ST CHRISTOL", "libell_d_acheminement": "ST CHRISTOL", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84107"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94a11f4910f09606a0798bf62495c9f9cbc618b", "fields": {"nom_de_la_commune": "ST LEGER DU VENTOUX", "libell_d_acheminement": "ST LEGER DU VENTOUX", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84110"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27047268f32b56fa568d25e3e2a67f9302eaedec", "fields": {"nom_de_la_commune": "ST PANTALEON", "libell_d_acheminement": "ST PANTALEON", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84114"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c70d7fa8fadd5b77c474ca05e11cca6824b29af", "fields": {"nom_de_la_commune": "ST ROMAIN EN VIENNOIS", "libell_d_acheminement": "ST ROMAIN EN VIENNOIS", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84116"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd8f3e28ee0d260d7e3b5d34145534bdaa28474", "fields": {"nom_de_la_commune": "ST ROMAN DE MALEGARDE", "libell_d_acheminement": "ST ROMAN DE MALEGARDE", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84117"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0559b6c6bb8e6749f8ac455e50cb28923f90c57", "fields": {"nom_de_la_commune": "ST SATURNIN LES AVIGNON", "libell_d_acheminement": "ST SATURNIN LES AVIGNON", "code_postal": "84450", "coordonnees_gps": [43.9589146165, 4.94209052734], "code_commune_insee": "84119"}, "geometry": {"type": "Point", "coordinates": [4.94209052734, 43.9589146165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b0cf790aa4d214d043e02a1777de401df29d0a", "fields": {"nom_de_la_commune": "SARRIANS", "libell_d_acheminement": "SARRIANS", "code_postal": "84260", "coordonnees_gps": [44.099151311, 4.9571276482], "code_commune_insee": "84122"}, "geometry": {"type": "Point", "coordinates": [4.9571276482, 44.099151311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d298dedd7a458b2b97b747810197ec363bdce9ef", "fields": {"nom_de_la_commune": "SAVOILLAN", "libell_d_acheminement": "SAVOILLAN", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84125"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5672a01401d67d1699a7554b6f334030c683371e", "fields": {"nom_de_la_commune": "SIVERGUES", "libell_d_acheminement": "SIVERGUES", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84128"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f39ac15f31961d886aa1618337282277bc4640c", "fields": {"nom_de_la_commune": "SORGUES", "libell_d_acheminement": "SORGUES", "code_postal": "84700", "coordonnees_gps": [44.0151425855, 4.86635397957], "code_commune_insee": "84129"}, "geometry": {"type": "Point", "coordinates": [4.86635397957, 44.0151425855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d250df1b453ad8bc0c3b9dc5962a303cf53ef2bf", "fields": {"nom_de_la_commune": "SUZETTE", "libell_d_acheminement": "SUZETTE", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84130"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8866524fc85798dba734a8d7a6c1207b046d75e", "fields": {"nom_de_la_commune": "LE THOR", "libell_d_acheminement": "LE THOR", "code_postal": "84250", "coordonnees_gps": [43.9283090586, 4.99319338111], "code_commune_insee": "84132"}, "geometry": {"type": "Point", "coordinates": [4.99319338111, 43.9283090586]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf038ba2ad21dfbaeea379f7dd206ea44795f33", "fields": {"nom_de_la_commune": "VAISON LA ROMAINE", "libell_d_acheminement": "VAISON LA ROMAINE", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84137"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a2dada8921583270af5b1eedf7d22f25f3b700", "fields": {"nom_de_la_commune": "VELLERON", "libell_d_acheminement": "VELLERON", "code_postal": "84740", "coordonnees_gps": [43.9615212553, 5.02670917405], "code_commune_insee": "84142"}, "geometry": {"type": "Point", "coordinates": [5.02670917405, 43.9615212553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cf8969ee616913a95b5195aa472b321efa0168", "fields": {"nom_de_la_commune": "VILLEDIEU", "libell_d_acheminement": "VILLEDIEU", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84146"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d1eb2a11c448aa9881c8e5039a45cfb8257a14", "fields": {"nom_de_la_commune": "VILLES SUR AUZON", "libell_d_acheminement": "VILLES SUR AUZON", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84148"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc006424289011e4bbcbaab9a72b5fb63af1facd", "fields": {"nom_de_la_commune": "ANTIGNY", "libell_d_acheminement": "ANTIGNY", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85005"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e4a2063a15241ee995f2f30dc20fc0bdbe5754", "fields": {"nom_de_la_commune": "LANNE EN BARETOUS", "libell_d_acheminement": "LANNE EN BARETOUS", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64310"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffe4ca7f3a9e3c8746f9a4011a6adc28f2fe4ed", "fields": {"nom_de_la_commune": "LARCEVEAU ARROS CIBITS", "libell_d_acheminement": "LARCEVEAU ARROS CIBITS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64314"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0e7a51dc1e39c4561bb2405b5ba529298ac0b6", "fields": {"nom_de_la_commune": "LARRESSORE", "libell_d_acheminement": "LARRESSORE", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64317"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57419aa721601cdc5d53066265ffffe6499e57b6", "fields": {"code_postal": "64440", "code_commune_insee": "64320", "libell_d_acheminement": "LARUNS", "ligne_5": "GABAS", "nom_de_la_commune": "LARUNS", "coordonnees_gps": [42.9183295476, -0.395850195838]}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8ac7925e60c4ddeb372c37b2146399d5b5f635", "fields": {"nom_de_la_commune": "LECUMBERRY", "libell_d_acheminement": "LECUMBERRY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64327"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b8c9cd2cc060a4bd9dd12dd1f05592a0ed8118", "fields": {"nom_de_la_commune": "LEDEUIX", "libell_d_acheminement": "LEDEUIX", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64328"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824a7a3402200b117dbba5e73a5d7e9de025d30d", "fields": {"nom_de_la_commune": "LESCAR", "libell_d_acheminement": "LESCAR", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64335"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23b235bf6c97f637192ca7fed065d85ed7bc4e47", "fields": {"nom_de_la_commune": "LESPOURCY", "libell_d_acheminement": "LESPOURCY", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64338"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb59c9ba1c70c66bf3330e339b496fad6b81613", "fields": {"nom_de_la_commune": "LIVRON", "libell_d_acheminement": "LIVRON", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64344"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956b34b317800e3765b500aa5e9f9ef0a649f202", "fields": {"nom_de_la_commune": "LOHITZUN OYHERCQ", "libell_d_acheminement": "LOHITZUN OYHERCQ", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64345"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86006720153750f0b2b5734debc9479b76c83b25", "fields": {"nom_de_la_commune": "LOMBIA", "libell_d_acheminement": "LOMBIA", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64346"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4fef6787313f859fd2f40ac1c5a7b5c338fd6a", "fields": {"nom_de_la_commune": "LONCON", "libell_d_acheminement": "LONCON", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64347"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d392ce7c11c93ac9b480d2a4da2d79a66aee429c", "fields": {"nom_de_la_commune": "LUCQ DE BEARN", "libell_d_acheminement": "LUCQ DE BEARN", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64359"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8a7e1c546e4936ba13a55ebe67826fd03c3a0b", "fields": {"nom_de_la_commune": "LUSSAGNET LUSSON", "libell_d_acheminement": "LUSSAGNET LUSSON", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64361"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a814b35b88abb7df32afeb026467074ce85b14b2", "fields": {"nom_de_la_commune": "LYS", "libell_d_acheminement": "LYS", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64363"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c8b1b04f100d8fa08d42dd3aac8f8345c8f08a", "fields": {"nom_de_la_commune": "MASCARAAS HARON", "libell_d_acheminement": "MASCARAAS HARON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64366"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee4590f3b40845c4ba2a037e8efc18cf220d05f3", "fields": {"nom_de_la_commune": "MAURE", "libell_d_acheminement": "MAURE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64372"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17ce68a0ce5ae6b0ecb1d2e3d23a78157e05c95", "fields": {"nom_de_la_commune": "MEILLON", "libell_d_acheminement": "MEILLON", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64376"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540f88753e3df4299b454ed5213bcede0a3f22ec", "fields": {"nom_de_la_commune": "MENDITTE", "libell_d_acheminement": "MENDITTE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64378"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13086f0a2f6111ec179ec37a6bee3faea948fa0", "fields": {"nom_de_la_commune": "MONCAYOLLE LARRORY MENDIBIEU", "libell_d_acheminement": "MONCAYOLLE LARRORY MENDIBIEU", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64391"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1748d6dc8bee4c19d22145a9c941941f1e4febb", "fields": {"nom_de_la_commune": "MONPEZAT", "libell_d_acheminement": "MONPEZAT", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64394"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70acf81c78d3574aed78630bca321d1a3c08fce3", "fields": {"nom_de_la_commune": "MONT", "libell_d_acheminement": "MONT", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64396"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275664a4ca0bb03b955fba87571dcc65d5c3db05", "fields": {"nom_de_la_commune": "MONTANER", "libell_d_acheminement": "MONTANER", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64398"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558b725ec6fb9aff6f44c714ea183f57af91cc39", "fields": {"nom_de_la_commune": "MONTARDON", "libell_d_acheminement": "MONTARDON", "code_postal": "64121", "coordonnees_gps": [43.3744840703, -0.360649842096], "code_commune_insee": "64399"}, "geometry": {"type": "Point", "coordinates": [-0.360649842096, 43.3744840703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5084cb3560b7600fa0757c102647bc6fc8e207a", "fields": {"nom_de_la_commune": "MOUHOUS", "libell_d_acheminement": "MOUHOUS", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64408"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe88df2609ddf267dcd777cf8d3f5c287dce879a", "fields": {"nom_de_la_commune": "OGENNE CAMPTORT", "libell_d_acheminement": "OGENNE CAMPTORT", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64420"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed281d5d9ef1234836a8c0d62965ac362ee070d2", "fields": {"nom_de_la_commune": "ORTHEZ", "libell_d_acheminement": "ORTHEZ", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64430"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "423ee93ada1b79a27db504e446fc3358d01a6c9c", "fields": {"nom_de_la_commune": "OSSE EN ASPE", "libell_d_acheminement": "OSSE EN ASPE", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64433"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ba39be6fa2806190207d1840fbd02b663c3d1a", "fields": {"nom_de_la_commune": "OSSENX", "libell_d_acheminement": "OSSENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64434"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494c6e15db84b3a1500c6c3c030a52e57c57dc35", "fields": {"nom_de_la_commune": "OSSERAIN RIVAREYTE", "libell_d_acheminement": "OSSERAIN RIVAREYTE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64435"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8821c547d1c278fb59196fc5a9a4954484bb55", "fields": {"nom_de_la_commune": "PEYRELONGUE ABOS", "libell_d_acheminement": "PEYRELONGUE ABOS", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64446"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7300cfade23613a3fdceacb27e5ed3069deea1a8", "fields": {"nom_de_la_commune": "PONSON DEBAT POUTS", "libell_d_acheminement": "PONSON DEBAT POUTS", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64451"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70127043c32e6ae9710fde047de84697e416b22a", "fields": {"nom_de_la_commune": "POULIACQ", "libell_d_acheminement": "POULIACQ", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64456"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81709c23d783ca23c4937d0411a911782df3b7c6", "fields": {"nom_de_la_commune": "POURSIUGUES BOUCOUE", "libell_d_acheminement": "POURSIUGUES BOUCOUE", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64457"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da64907fd1a8e5d5928304d2444085fefad34fac", "fields": {"nom_de_la_commune": "PRECHACQ NAVARRENX", "libell_d_acheminement": "PRECHACQ NAVARRENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64459"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea6b88c4894f4accb5662ef40cb9caa74f884015", "fields": {"nom_de_la_commune": "PUYOO", "libell_d_acheminement": "PUYOO", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64461"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fc21baa13fc66cdd8340687014d71c644152e1", "fields": {"nom_de_la_commune": "RAMOUS", "libell_d_acheminement": "RAMOUS", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64462"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262fc78175aa9eed0d3f1e278487d2a8dfb46020", "fields": {"nom_de_la_commune": "ST ABIT", "libell_d_acheminement": "ST ABIT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64469"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50c457d0f6c6fa8b6a6e2ac3a21694745dabbcf", "fields": {"nom_de_la_commune": "ST ESTEBEN", "libell_d_acheminement": "ST ESTEBEN", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64476"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aefece655d140431422adc49a9064753c21c28af", "fields": {"nom_de_la_commune": "ST JUST IBARRE", "libell_d_acheminement": "ST JUST IBARRE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64487"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810be7c9ed87876aa6c2df0394643ad6e51f3841", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64491"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1bb12a17d125188684cce65b12261bcf9528bad", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64492"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bbd7f9539133e8aa5b0ec674ab4e2ab021f1a44", "fields": {"nom_de_la_commune": "SALLESPISSE", "libell_d_acheminement": "SALLESPISSE", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64501"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76579f9a581dddcea868db4d7551e3a6f8e8d184", "fields": {"nom_de_la_commune": "SAMES", "libell_d_acheminement": "SAMES", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64502"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33ff607b0ab258468650423afb45f6523420996", "fields": {"nom_de_la_commune": "SAUCEDE", "libell_d_acheminement": "SAUCEDE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64508"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336ab032d9a266887ff35a00d97536e49096d033", "fields": {"nom_de_la_commune": "SEBY", "libell_d_acheminement": "SEBY", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64514"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c86a5c2cb0b9952c3f33809b82206ee253f7918", "fields": {"nom_de_la_commune": "SEDZE MAUBECQ", "libell_d_acheminement": "SEDZE MAUBECQ", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64515"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1280fe3d6f750c0a2c042e1d9ced3aceefc825c7", "fields": {"nom_de_la_commune": "SEVIGNACQ", "libell_d_acheminement": "SEVIGNACQ", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64523"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f93f4bdd7d04bd7686c5e2ce13d22765abc7ffe", "fields": {"nom_de_la_commune": "SUSMIOU", "libell_d_acheminement": "SUSMIOU", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64530"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a6306ecc8b822f1d608ad28f77ccd785cdb1c5", "fields": {"nom_de_la_commune": "TARON SADIRAC VIELLENAVE", "libell_d_acheminement": "TARON SADIRAC VIELLENAVE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64534"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fc65d3cd7420d72c92bfbc37561042d85008ebe", "fields": {"nom_de_la_commune": "THEZE", "libell_d_acheminement": "THEZE", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64536"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e0f19ba780fc25c831e7e2e78381f5bc1da91a", "fields": {"nom_de_la_commune": "URDES", "libell_d_acheminement": "URDES", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64541"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ef91d0bd3728c41e8dbb708fb493199a35266d", "fields": {"nom_de_la_commune": "USTARITZ", "libell_d_acheminement": "USTARITZ", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64547"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c1c7133c3a297259eeafabd1f7b245df459542", "fields": {"nom_de_la_commune": "UZOS", "libell_d_acheminement": "UZOS", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64550"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7043db70cd712c0b5d535a17bcd568838585029", "fields": {"nom_de_la_commune": "VERDETS", "libell_d_acheminement": "VERDETS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64551"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e202c5dccb95c28d308d33d41fdb1f27fd22736", "fields": {"nom_de_la_commune": "VILLEFRANQUE", "libell_d_acheminement": "VILLEFRANQUE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64558"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "688fd8211597ddccc718938abdbce30b04f7ccb1", "fields": {"nom_de_la_commune": "VIVEN", "libell_d_acheminement": "VIVEN", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64560"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249820eb8b9a75e8bda42967ffb52748c0f6991d", "fields": {"nom_de_la_commune": "ADAST", "libell_d_acheminement": "ADAST", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65001"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16133e04125f39a07f79cdfee298552d2526a89", "fields": {"nom_de_la_commune": "ADE", "libell_d_acheminement": "ADE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65002"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d58e1ba5ab5217fbf5a843728a18a9bdd84f737", "fields": {"nom_de_la_commune": "ARAGNOUET", "libell_d_acheminement": "ARAGNOUET", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65017"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "979f77e8f9ae3bb9690f0f398e34a0419591617e", "fields": {"nom_de_la_commune": "ARREAU", "libell_d_acheminement": "ARREAU", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65031"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcef50b7eb93a5fe00572633ceca98729d91ee94", "fields": {"nom_de_la_commune": "AUREILHAN", "libell_d_acheminement": "AUREILHAN", "code_postal": "65800", "coordonnees_gps": [43.2687329702, 0.110735154449], "code_commune_insee": "65047"}, "geometry": {"type": "Point", "coordinates": [0.110735154449, 43.2687329702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad75e6239a96b3b30297cdaa13066d9cf6ec541", "fields": {"nom_de_la_commune": "AVERAN", "libell_d_acheminement": "AVERAN", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65052"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8184a9e26c44df69af96e96a41b92e8972d1f4a8", "fields": {"nom_de_la_commune": "AVEUX", "libell_d_acheminement": "AVEUX", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65053"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65168d543473e5f7c6ca816923a4baf58e02e244", "fields": {"code_postal": "65130", "code_commune_insee": "65054", "libell_d_acheminement": "AVEZAC PRAT LAHITTE", "ligne_5": "LAHITTE", "nom_de_la_commune": "AVEZAC PRAT LAHITTE", "coordonnees_gps": [43.0681030312, 0.291772301589]}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8422a0df8ad163baf72cd8aeb407785e6d117e", "fields": {"nom_de_la_commune": "BARBACHEN", "libell_d_acheminement": "BARBACHEN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65061"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a705976a967b38fb9f095ed0a69448403880a59a", "fields": {"nom_de_la_commune": "BARLEST", "libell_d_acheminement": "BARLEST", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65065"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6abf1d7b788ea558062a5ac388fd203f365a67f9", "fields": {"nom_de_la_commune": "BARTHE", "libell_d_acheminement": "BARTHE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65068"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954a8689762a3221ec3ddc24fead196b6e215547", "fields": {"nom_de_la_commune": "BARTRES", "libell_d_acheminement": "BARTRES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65070"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffc0af6c7453fdc80578e515863b76f881f68d4", "fields": {"nom_de_la_commune": "BERBERUST LIAS", "libell_d_acheminement": "BERBERUST LIAS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65082"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a4a1dd563b684912442ef1f2a92ada1a6d0349a", "fields": {"nom_de_la_commune": "BERNAC DEBAT", "libell_d_acheminement": "BERNAC DEBAT", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65083"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a086ef970f3fd0bf237a3f97d0ebeffcace464f", "fields": {"nom_de_la_commune": "BERNADETS DEBAT", "libell_d_acheminement": "BERNADETS DEBAT", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65085"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17c680cd1d3ccd7a081c94d11dac819d1fc33b6b", "fields": {"nom_de_la_commune": "BERNADETS DESSUS", "libell_d_acheminement": "BERNADETS DESSUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65086"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e8d006bbe41757ff70da78a617fa83d06be0de", "fields": {"nom_de_la_commune": "BONNEMAZON", "libell_d_acheminement": "BONNEMAZON", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65096"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed72b9b9ed93c9a9b4a4bc0a91c3ea4005c6a2b1", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51493"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143a104f4acd693bbcc7ea526f4c79f7a715a8da", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51495"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e768e0f57ef5bde40cb23e6f4bf22b4c7d6d20d2", "fields": {"nom_de_la_commune": "ST LUMIER EN CHAMPAGNE", "libell_d_acheminement": "ST LUMIER EN CHAMPAGNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51496"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131989a6bca5bb0ffafc800d58400338df560db5", "fields": {"nom_de_la_commune": "ST MARTIN L HEUREUX", "libell_d_acheminement": "ST MARTIN L HEUREUX", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51503"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8401f796f38ff411daa88b7fc378b1809952a98", "fields": {"nom_de_la_commune": "STE MENEHOULD", "libell_d_acheminement": "STE MENEHOULD", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51507"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74fd92b18ec29306ccef667ad22d24a29218fda", "fields": {"nom_de_la_commune": "ST QUENTIN LES MARAIS", "libell_d_acheminement": "ST QUENTIN LES MARAIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51510"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e378edfba5d78f4bf44d2da2f8c0fcc4f730b557", "fields": {"nom_de_la_commune": "ST SOUPLET SUR PY", "libell_d_acheminement": "ST SOUPLET SUR PY", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51517"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae69735e8a03ff84063a1a90565613f03cf36647", "fields": {"nom_de_la_commune": "ST THIERRY", "libell_d_acheminement": "ST THIERRY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51518"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3e88793469d660a0f37935c2ddb4ea3ab68557", "fields": {"nom_de_la_commune": "ST THOMAS EN ARGONNE", "libell_d_acheminement": "ST THOMAS EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51519"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210f7e34d52da516dc6414b9c16299e9b6793423", "fields": {"nom_de_la_commune": "SARCY", "libell_d_acheminement": "SARCY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51523"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7435bda004af13e3d62efc94987200888104e664", "fields": {"nom_de_la_commune": "SIVRY ANTE", "libell_d_acheminement": "SIVRY ANTE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51537"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360f68e6b3485bfbd2c0854efb37e12616a928ff", "fields": {"nom_de_la_commune": "SOMMEPY TAHURE", "libell_d_acheminement": "SOMMEPY TAHURE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51544"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac219e29ebc4c043c2d30504ed4ceecc1e2e1390", "fields": {"nom_de_la_commune": "SOMME SUIPPE", "libell_d_acheminement": "SOMME SUIPPE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51546"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07019aba2a51183b22688c5bcbfbfe93193b3db7", "fields": {"nom_de_la_commune": "SUIPPES", "libell_d_acheminement": "SUIPPES", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51559"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ada5f299c7e7a936034c23db5e218f93d50de9d", "fields": {"nom_de_la_commune": "THAAS", "libell_d_acheminement": "THAAS", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51565"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334beb21f068be4e668fa779e31f8d8d1bfea8ba", "fields": {"nom_de_la_commune": "VATRY", "libell_d_acheminement": "VATRY", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51595"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbecac12e9f09e9040c63b548ef34d5d4fd66f50", "fields": {"nom_de_la_commune": "VAUCIENNES", "libell_d_acheminement": "VAUCIENNES", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51597"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d966028a1cebd5ace1601569d96567f92e1f94", "fields": {"nom_de_la_commune": "VAUDEMANGE", "libell_d_acheminement": "VAUDEMANGE", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51599"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6287840d860d87dcbec92ca957c4b4598d301d2f", "fields": {"code_postal": "51130", "code_commune_insee": "51611", "libell_d_acheminement": "VERT TOULON", "ligne_5": "TOULON LA MONTAGNE", "nom_de_la_commune": "VERT TOULON", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ca9903093428dedcb27fb64fcbe53b37c67980", "fields": {"nom_de_la_commune": "VERZENAY", "libell_d_acheminement": "VERZENAY", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51613"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e0ccafc433fde4e462a79ec392349b17d2df7c", "fields": {"nom_de_la_commune": "VESIGNEUL SUR MARNE", "libell_d_acheminement": "VESIGNEUL SUR MARNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51616"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e19f79d37b4058b8a7c2113907c99d0c2593d8", "fields": {"nom_de_la_commune": "LA VILLE SOUS ORBAIS", "libell_d_acheminement": "LA VILLE SOUS ORBAIS", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51639"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68dc2a9734816ed61adc824e51fec5d3fa04fa06", "fields": {"nom_de_la_commune": "VOILEMONT", "libell_d_acheminement": "VOILEMONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51650"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8c2df603f4034196b3eadf77d91d4762ae2794", "fields": {"nom_de_la_commune": "VOUZY", "libell_d_acheminement": "VOUZY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51655"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d537e2d605eff61f0b79c6d1800d00631d9acc", "fields": {"nom_de_la_commune": "VROIL", "libell_d_acheminement": "VROIL", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51658"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7567f5449d9bd307b8f1f62a233fb7564f1374e6", "fields": {"nom_de_la_commune": "MAGENTA", "libell_d_acheminement": "MAGENTA", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51663"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5715e445fe456cbf96bc6841b13c2bf9407a055", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "HAMARS", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157cee8d94634687aed7d1774eed52359bf88957", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "ECOTS", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4307890b515645a1e4154c63065f171964b9e25a", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "GARNETOT", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e470560a51cabc7cede6749114f69fa7cf1e5dc5", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "GRANDMESNIL", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee7a1fae42fbb8ef85c8d6ba9729f866841ba69", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "TOTES", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da85a82d1778a796ee8760e6df1335b872b0814", "fields": {"nom_de_la_commune": "TOUR EN BESSIN", "libell_d_acheminement": "TOUR EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14700"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05447a61e0fd9c4d2bde01eaa518dd03fc8f5258", "fields": {"nom_de_la_commune": "TOURNAY SUR ODON", "libell_d_acheminement": "TOURNAY SUR ODON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14702"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f4cf596e5b7557a63fd194f26ea30943a170c5", "fields": {"nom_de_la_commune": "TREVIERES", "libell_d_acheminement": "TREVIERES", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14711"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8ebf067e0e80bbc572cd6703f918ad5c7162e6", "fields": {"nom_de_la_commune": "TROARN", "libell_d_acheminement": "TROARN", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14712"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf143dfec5bb3582a158b19a0e423b6ac88171a3", "fields": {"code_postal": "14670", "code_commune_insee": "14712", "libell_d_acheminement": "TROARN", "ligne_5": "BURES SUR DIVES", "nom_de_la_commune": "TROARN", "coordonnees_gps": [49.1818769935, -0.152819265624]}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b218b17c34b88e35a10e06a660192f78a4ccd147", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14719"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f01f54a88092857e75b095b131c0923d28815f", "fields": {"nom_de_la_commune": "VACOGNES NEUILLY", "libell_d_acheminement": "VACOGNES NEUILLY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14721"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab2d5a8356d234c7c22f905e3c1a3102de75f13", "fields": {"nom_de_la_commune": "VALSEME", "libell_d_acheminement": "VALSEME", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14723"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60bf1aa333c1bce7fe7910f394160dfc8f556635", "fields": {"code_postal": "14350", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "ST CHARLES DE PERCY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21acc5cd879065ed551e4af33c351cdcb4fc1b46", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "BERNIERES LE PATRY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19d8e7c2652287141d9f214ac763193cc6837182", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "CHENEDOLLE", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe3de8bfdf404cab90816a654e02e2d874e029d", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "ESTRY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc8767aeb88dee1ffc2195b45b3a23002b4e95c", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "PIERRES", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410db598036e69ac6a6ff2486c0b254b0d32a547", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "RULLY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55662e2cca7d27318c96c38ad2705150dffd599e", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "VIESSOIX", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec02097366e449f09dcbbd39d38d077ff929bb2e", "fields": {"nom_de_la_commune": "VILLERS BOCAGE", "libell_d_acheminement": "VILLERS BOCAGE", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14752"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f984e579905bc339d4b4e51b99d2b2cc7c9fe0", "fields": {"nom_de_la_commune": "PONT D OUILLY", "libell_d_acheminement": "PONT D OUILLY", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14764"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a99a9c53e45486143b55ea81f4771536582ee8", "fields": {"nom_de_la_commune": "ANGLARDS DE SALERS", "libell_d_acheminement": "ANGLARDS DE SALERS", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15006"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dc8c7dd285f8c37f7ef928ea0538133ebcfe92", "fields": {"nom_de_la_commune": "APCHON", "libell_d_acheminement": "APCHON", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15009"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6e09fd8737d3186f639cf08f5504ec2cb975b9", "fields": {"code_postal": "10370", "code_commune_insee": "10420", "libell_d_acheminement": "VILLENAUXE LA GRANDE", "ligne_5": "DIVAL", "nom_de_la_commune": "VILLENAUXE LA GRANDE", "coordonnees_gps": [48.5945073105, 3.54815302668]}, "geometry": {"type": "Point", "coordinates": [3.54815302668, 48.5945073105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df172742fbe82a8a335c1a7d910ad7d310781c2d", "fields": {"nom_de_la_commune": "VILLY LE MARECHAL", "libell_d_acheminement": "VILLY LE MARECHAL", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10435"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411d578a84ab7761d7309a2086ce177116252b79", "fields": {"nom_de_la_commune": "YEVRES LE PETIT", "libell_d_acheminement": "YEVRES LE PETIT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10445"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c78352bd1fd5ea7805f6de622e09aa49677ecfa", "fields": {"nom_de_la_commune": "ALET LES BAINS", "libell_d_acheminement": "ALET LES BAINS", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11008"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fc878cf4bdb33d19d53a41392400417fb8aeb8", "fields": {"nom_de_la_commune": "VILLEMOYENNE", "libell_d_acheminement": "VILLEMOYENNE", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10419"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc14baeff7090fe9f08b78298c23e22432549716", "fields": {"nom_de_la_commune": "VILLEMORIEN", "libell_d_acheminement": "VILLEMORIEN", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10418"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854aa2300332f06509206edcf2ce295a090e7d81", "fields": {"nom_de_la_commune": "VILLECHETIF", "libell_d_acheminement": "VILLECHETIF", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10412"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43d5cc80a1d7ef1c4116bba88ff33da820d8a64", "fields": {"nom_de_la_commune": "ANTUGNAC", "libell_d_acheminement": "ANTUGNAC", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11010"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4437b3fb69afaada593f407cfab27f177cf24beb", "fields": {"nom_de_la_commune": "VOIGNY", "libell_d_acheminement": "VOIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10440"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f6588b983ee5a75fd2edec65dcc9a50297208d", "fields": {"nom_de_la_commune": "AXAT", "libell_d_acheminement": "AXAT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11021"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f0fd3965e298fa7b4679801224b2bc317458e2", "fields": {"code_postal": "10270", "code_commune_insee": "10245", "libell_d_acheminement": "MONTAULIN", "ligne_5": "DAUDES", "nom_de_la_commune": "MONTAULIN", "coordonnees_gps": [48.2596266125, 4.24959642717]}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53e5785fbbef28aa22b17221888c3ca9f02d96e", "fields": {"nom_de_la_commune": "MONTMORENCY BEAUFORT", "libell_d_acheminement": "MONTMORENCY BEAUFORT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10253"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0a555e5ccb4e7e19012a3ccf6c7b6ea16c1266", "fields": {"nom_de_la_commune": "MONTMARTIN LE HAUT", "libell_d_acheminement": "MONTMARTIN LE HAUT", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10252"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216646dcbf47313f36679288b62cc7537c966223", "fields": {"nom_de_la_commune": "POUAN LES VALLEES", "libell_d_acheminement": "POUAN LES VALLEES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10299"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9998ab073591a27a992c57cab3ed931a2124c3", "fields": {"nom_de_la_commune": "PLAINES ST LANGE", "libell_d_acheminement": "PLAINES ST LANGE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10288"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e21a5821bde604f7f0d5d72c69723b07b5617915", "fields": {"nom_de_la_commune": "PLESSIS BARBUISE", "libell_d_acheminement": "PLESSIS BARBUISE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10291"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4e62c2a4899bdfe478186b11aa4a9ebb0122fc", "fields": {"nom_de_la_commune": "PAISY COSDON", "libell_d_acheminement": "PAISY COSDON", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10276"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa0a2d3699de72014b24f6e7c1bee9be46eef86", "fields": {"nom_de_la_commune": "ORTILLON", "libell_d_acheminement": "ORTILLON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10273"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2555f01f6db633623330ec2416b7cb29cf4a847b", "fields": {"nom_de_la_commune": "MONTFEY", "libell_d_acheminement": "MONTFEY", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10247"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd2df16770c4dea517c6ad86e7ba148cef7d151", "fields": {"nom_de_la_commune": "PAYNS", "libell_d_acheminement": "PAYNS", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10282"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b198e85bc444a4c3e6dd5e20af210fd85122e238", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "MONTREDON", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b639e0124abda98c9a2d9457a09029e4849a01d4", "fields": {"nom_de_la_commune": "BROUSSES ET VILLARET", "libell_d_acheminement": "BROUSSES ET VILLARET", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11052"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb9cc0b26e267641ccce3709bf08a30ad7ad1531", "fields": {"nom_de_la_commune": "BELLEGARDE DU RAZES", "libell_d_acheminement": "BELLEGARDE DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11032"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1dd2662f1f0694d024c03e8e8339f36a2ec2a24", "fields": {"nom_de_la_commune": "LES BRUNELS", "libell_d_acheminement": "LES BRUNELS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11054"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426387efad852d6e4e7c2dc15e0f7ecbdf839119", "fields": {"nom_de_la_commune": "CAMBIEURE", "libell_d_acheminement": "CAMBIEURE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11061"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732ea2d46aa4392ee79234a563ca6f3374ec0278", "fields": {"nom_de_la_commune": "BREZILHAC", "libell_d_acheminement": "BREZILHAC", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11051"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a6eaf28347ea600eb3afe930e474399beab8f1b", "fields": {"nom_de_la_commune": "BAGNOLES", "libell_d_acheminement": "BAGNOLES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11025"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d0e90fb7d56fc0c245569a25a66c98608299c6", "fields": {"nom_de_la_commune": "CAPENDU", "libell_d_acheminement": "CAPENDU", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11068"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265dca9d43089b561f39d13ccb614af4a5cf95c7", "fields": {"nom_de_la_commune": "AZILLE", "libell_d_acheminement": "AZILLE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11022"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98cb07e6fa3b4bbe56bd5dbadf46927546a1a662", "fields": {"nom_de_la_commune": "BAGES", "libell_d_acheminement": "BAGES", "code_postal": "11100", "coordonnees_gps": [43.1614428329, 3.00768633064], "code_commune_insee": "11024"}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e1046abee39143875de47711a85514e9179a7e", "fields": {"nom_de_la_commune": "ST HILAIRE SOUS ROMILLY", "libell_d_acheminement": "ST HILAIRE SOUS ROMILLY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10341"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18494f865c50a1d4bcf48510cd1b2c1fcb7ee413", "fields": {"nom_de_la_commune": "ST LEGER PRES TROYES", "libell_d_acheminement": "ST LEGER PRES TROYES", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10344"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1049c9a1f6ccd8ed42043564ab03c0fcc8fc52e6", "fields": {"nom_de_la_commune": "ROSIERES PRES TROYES", "libell_d_acheminement": "ROSIERES PRES TROYES", "code_postal": "10430", "coordonnees_gps": [48.2625722664, 4.06313476584], "code_commune_insee": "10325"}, "geometry": {"type": "Point", "coordinates": [4.06313476584, 48.2625722664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f062fef8c9a74011249093afc738a1143f0b05", "fields": {"nom_de_la_commune": "RIGNY LA NONNEUSE", "libell_d_acheminement": "RIGNY LA NONNEUSE", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10318"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb2e8b62dfd28c63bdd8b7abf30ec92bcf28506", "fields": {"nom_de_la_commune": "PRUNAY BELLEVILLE", "libell_d_acheminement": "PRUNAY BELLEVILLE", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10308"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d931fa739d623dd789d2dabf25afcf8dd71f213d", "fields": {"nom_de_la_commune": "LES RICEYS", "libell_d_acheminement": "LES RICEYS", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10317"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9909b9c137459dd8cb4852e252a1c8c6274ee6f", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10334"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a225295a0bf6f64f1e5a7f9da3affa0b324e9493", "fields": {"nom_de_la_commune": "RUVIGNY", "libell_d_acheminement": "RUVIGNY", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10332"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030ce332d840dd28d57e4dd5ec95e0f6109c9c8a", "fields": {"nom_de_la_commune": "RANCES", "libell_d_acheminement": "RANCES", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10315"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7f536b0265077f9fe0c7dfd62785eebc930369", "fields": {"nom_de_la_commune": "POUGY", "libell_d_acheminement": "POUGY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10300"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740a56825924e94a869cd790d54fcea9a50b9f6a", "fields": {"nom_de_la_commune": "ST REMY SOUS BARBUISE", "libell_d_acheminement": "ST REMY SOUS BARBUISE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10361"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c4e5898bd23476fa7ae782c98402afad72a6e9c", "fields": {"nom_de_la_commune": "ST PARRES LES VAUDES", "libell_d_acheminement": "ST PARRES LES VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10358"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61dc32a1034b5f007b959e6a877d407faab7a864", "fields": {"nom_de_la_commune": "ST LOUP DE BUFFIGNY", "libell_d_acheminement": "ST LOUP DE BUFFIGNY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10347"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7b5d633e51bf479032db286ac4e3f277ca65178", "fields": {"nom_de_la_commune": "TORVILLIERS", "libell_d_acheminement": "TORVILLIERS", "code_postal": "10440", "coordonnees_gps": [48.277445493, 3.98700536658], "code_commune_insee": "10381"}, "geometry": {"type": "Point", "coordinates": [3.98700536658, 48.277445493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78221738dbc870da9096b149f3c8a4b2970ce7c2", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "10280", "coordonnees_gps": [48.434575792, 3.91881606144], "code_commune_insee": "10353"}, "geometry": {"type": "Point", "coordinates": [3.91881606144, 48.434575792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a12d9f3b370727ddafdef76428a32f26eb69ad", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10390"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a4cb797dc23fcdea347e085c278eabd5d748b4a", "fields": {"nom_de_la_commune": "SEMOINE", "libell_d_acheminement": "SEMOINE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10369"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974382520cc31e1a328c9f7edebe94892d8a0178", "fields": {"nom_de_la_commune": "TROUANS", "libell_d_acheminement": "TROUANS", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10386"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd5b910c2a252846134f592c32693e13e02c56a", "fields": {"nom_de_la_commune": "ST LYE", "libell_d_acheminement": "ST LYE", "code_postal": "10180", "coordonnees_gps": [48.3538390298, 4.00019128511], "code_commune_insee": "10349"}, "geometry": {"type": "Point", "coordinates": [4.00019128511, 48.3538390298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f81f5b53b4f40171ac519085342a8ee192b7e77", "fields": {"nom_de_la_commune": "VAUDES", "libell_d_acheminement": "VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10399"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d663ed9bf53ad3a2bedd5fd05d894238e3a89a82", "fields": {"nom_de_la_commune": "LIGNOL LE CHATEAU", "libell_d_acheminement": "LIGNOL LE CHATEAU", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10197"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165db0d87104b615b402bcd8a300d5873f29cf8b", "fields": {"nom_de_la_commune": "LA LOGE POMBLIN", "libell_d_acheminement": "LA LOGE POMBLIN", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10201"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6efe9d9d69ff08af792d5e05c094d6932dac40", "fields": {"nom_de_la_commune": "LANDREVILLE", "libell_d_acheminement": "LANDREVILLE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10187"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6383ab96f8167201ff052e4fe92569de96854802", "fields": {"nom_de_la_commune": "LASSICOURT", "libell_d_acheminement": "LASSICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10189"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfbcfed99ba6ca294cf4c41684085607a9108d4b", "fields": {"nom_de_la_commune": "JAUCOURT", "libell_d_acheminement": "JAUCOURT", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10176"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53df4ce0c6b4c2c3475e17be18548b9b3fe16d6", "fields": {"nom_de_la_commune": "HERBISSE", "libell_d_acheminement": "HERBISSE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10172"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196dc98d1aa358ea2b32629895e8e284c4b5a12d", "fields": {"nom_de_la_commune": "JUVANZE", "libell_d_acheminement": "JUVANZE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10183"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a9896fb1ad8eb7aedbf77bc0664019ec6e69b1", "fields": {"nom_de_la_commune": "JEUGNY", "libell_d_acheminement": "JEUGNY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10179"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0173acb97057b99c805398bf6e3f45a29ced59a", "fields": {"nom_de_la_commune": "LAVAU", "libell_d_acheminement": "LAVAU", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10191"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "187dde2da5649c877d11a59b2fc9340cd7de6aee", "fields": {"nom_de_la_commune": "LIREY", "libell_d_acheminement": "LIREY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10198"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f081b000037318269de206c3c20f7386caa7ac", "fields": {"code_postal": "11230", "code_commune_insee": "11080", "libell_d_acheminement": "VAL DE LAMBRONNE", "ligne_5": "GUEYTES ET LABASTIDE", "nom_de_la_commune": "VAL DE LAMBRONNE", "coordonnees_gps": [42.9737220665, 2.02689573941]}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e6139067313e37570bd3ac09753af53a4cc2ca", "fields": {"nom_de_la_commune": "CONILHAC CORBIERES", "libell_d_acheminement": "CONILHAC CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11098"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9af9894339aeacab13db2ef35cbd5215f7bc3f4d", "fields": {"nom_de_la_commune": "COURNANEL", "libell_d_acheminement": "COURNANEL", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11105"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3bfc1c1bf23ab63c9f65fb73f159dbd23ac5d6", "fields": {"nom_de_la_commune": "CHALABRE", "libell_d_acheminement": "CHALABRE", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11091"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dade549021da19d14410d826d1ceb584ee203e34", "fields": {"nom_de_la_commune": "LONGUEVILLE SUR AUBE", "libell_d_acheminement": "LONGUEVILLE SUR AUBE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10207"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b4deaadfa794ef49aa5114141634ede54833ea", "fields": {"nom_de_la_commune": "MARIGNY LE CHATEL", "libell_d_acheminement": "MARIGNY LE CHATEL", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10224"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06fb4cf89574b30a127fd4a3b8e87bf3344fb97d", "fields": {"nom_de_la_commune": "MARNAY SUR SEINE", "libell_d_acheminement": "MARNAY SUR SEINE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10225"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54d7c302a2923be119f372669ae5fd0c58c5388", "fields": {"nom_de_la_commune": "MERY SUR SEINE", "libell_d_acheminement": "MERY SUR SEINE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10233"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd45a030d25eb512981e39160da108ab9c9e86f", "fields": {"nom_de_la_commune": "METZ ROBERT", "libell_d_acheminement": "METZ ROBERT", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10241"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1098410a8613ada774bff3dea6e7a26bc846eb", "fields": {"nom_de_la_commune": "MEURVILLE", "libell_d_acheminement": "MEURVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10242"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbfde562f2a0b9831f0f9fb6c48bbc79e8c3e4fd", "fields": {"nom_de_la_commune": "LONGSOLS", "libell_d_acheminement": "LONGSOLS", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10206"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0afe063ad86fc34d212b177fe15ee0ea561429bf", "fields": {"nom_de_la_commune": "MAUPAS", "libell_d_acheminement": "MAUPAS", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10229"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d770e9d471db10a452c8e9bf92fd1288df2c2baa", "fields": {"nom_de_la_commune": "MESSON", "libell_d_acheminement": "MESSON", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10240"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aec1916e98b834c9fedb881494d5f25e3c0269a", "fields": {"nom_de_la_commune": "MACEY", "libell_d_acheminement": "MACEY", "code_postal": "10300", "coordonnees_gps": [48.3017985875, 3.94562270532], "code_commune_insee": "10211"}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ecdea76596a9388b9206dc01e9ddc682852248e", "fields": {"nom_de_la_commune": "LA MOTHE ACHARD", "libell_d_acheminement": "LA MOTHE ACHARD", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85152"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c322cae47a7169a7691de8f45387a9e3c9a5c405", "fields": {"nom_de_la_commune": "MOUILLERON ST GERMAIN", "libell_d_acheminement": "MOUILLERON ST GERMAIN", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85154"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ccae890d9e28f73f2bdc7fcc91ff1dd943f73a", "fields": {"nom_de_la_commune": "VEZINNES", "libell_d_acheminement": "VEZINNES", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89447"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acf42b67a5a7ecdcb4c39cd84040e6b8835fa23", "fields": {"nom_de_la_commune": "VILLEMANOCHE", "libell_d_acheminement": "VILLEMANOCHE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89456"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7d566dcbbbd0ceccb39535746b7ed2bd48b4cc", "fields": {"nom_de_la_commune": "VILLEROY", "libell_d_acheminement": "VILLEROY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89466"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343b4e3d89b267334991f8ec2cc7aab9519afe0c", "fields": {"nom_de_la_commune": "VILLETHIERRY", "libell_d_acheminement": "VILLETHIERRY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89467"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3036587d4f22b8735997294e2baa71f274e5b813", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "VERTILLY", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e5fc3f4a0a8f76f05c5f1c582f1fe766878c67", "fields": {"nom_de_la_commune": "BERMONT", "libell_d_acheminement": "BERMONT", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90011"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77668e5002092238808e9907838914a8a6338d0f", "fields": {"nom_de_la_commune": "BETHONVILLIERS", "libell_d_acheminement": "BETHONVILLIERS", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90013"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28e9bcdedff3c12448f704254cb8f8cafac65d79", "fields": {"nom_de_la_commune": "CHAVANATTE", "libell_d_acheminement": "CHAVANATTE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90024"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde7c5ad6255e4e88868b8ed705dfcd47aadfec4", "fields": {"nom_de_la_commune": "ELOIE", "libell_d_acheminement": "ELOIE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90037"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a56287a36236e49256ef820bebf9cfb321b099", "fields": {"nom_de_la_commune": "FRAIS", "libell_d_acheminement": "FRAIS", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90050"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a3e627ca5bf39e655a46a6ce0d18b9ca202e3fb", "fields": {"nom_de_la_commune": "FROIDEFONTAINE", "libell_d_acheminement": "FROIDEFONTAINE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90051"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c1e9a0ed71f16bb7c8251a72853982abdbf365f", "fields": {"nom_de_la_commune": "GIROMAGNY", "libell_d_acheminement": "GIROMAGNY", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90052"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a275773d590b2b82a8ff3126bd4cb6534ef7bc", "fields": {"nom_de_la_commune": "LAGRANGE", "libell_d_acheminement": "LAGRANGE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90060"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e83e6c25c7a824a439152eab8ed14c596ce053", "fields": {"nom_de_la_commune": "LEVAL", "libell_d_acheminement": "LEVAL", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90066"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898a0e7e538b55d68109cb06a1314b5ed0558453", "fields": {"nom_de_la_commune": "NOVILLARD", "libell_d_acheminement": "NOVILLARD", "code_postal": "90340", "coordonnees_gps": [47.6213054353, 6.94143825655], "code_commune_insee": "90074"}, "geometry": {"type": "Point", "coordinates": [6.94143825655, 47.6213054353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0334c88ca0458a4bed7682083b5ff5430dea2c9f", "fields": {"nom_de_la_commune": "OFFEMONT", "libell_d_acheminement": "OFFEMONT", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90075"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d990028caad076afd72235302ede79ecf4dcb0d", "fields": {"nom_de_la_commune": "PETITMAGNY", "libell_d_acheminement": "PETITMAGNY", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90079"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "546139c7c422bf7cfb585af433ce9b45ba27b722", "fields": {"nom_de_la_commune": "PHAFFANS", "libell_d_acheminement": "PHAFFANS", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90080"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c9b5a9d8af51722a13e38774da52e654d614c4", "fields": {"nom_de_la_commune": "ROPPE", "libell_d_acheminement": "ROPPE", "code_postal": "90380", "coordonnees_gps": [47.6788699997, 6.91110068518], "code_commune_insee": "90087"}, "geometry": {"type": "Point", "coordinates": [6.91110068518, 47.6788699997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76e39ca678147e7a7e48ac3316b6314333c2ffe", "fields": {"nom_de_la_commune": "ROUGEMONT LE CHATEAU", "libell_d_acheminement": "ROUGEMONT LE CHATEAU", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90089"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb63bfdf143ed8ed3715827ca4bd4c470012368b", "fields": {"nom_de_la_commune": "SERMAMAGNY", "libell_d_acheminement": "SERMAMAGNY", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90093"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc706d2332faba0c2fbf0dae61178dd795cd3068", "fields": {"nom_de_la_commune": "SEVENANS", "libell_d_acheminement": "SEVENANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90094"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d94475ef911758af23c8b2d82f316ff8ec841c8", "fields": {"nom_de_la_commune": "URCEREY", "libell_d_acheminement": "URCEREY", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90098"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d410126e8ba1f712082809d547050c27c7c1f9d", "fields": {"nom_de_la_commune": "ABBEVILLE LA RIVIERE", "libell_d_acheminement": "ABBEVILLE LA RIVIERE", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91001"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859ddb31e9150fd8e6759195b9dd16fb8db424d7", "fields": {"nom_de_la_commune": "ANGERVILLIERS", "libell_d_acheminement": "ANGERVILLIERS", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91017"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0272ac1d91e642c318aed61a2f603f98a2270213", "fields": {"nom_de_la_commune": "AVRAINVILLE", "libell_d_acheminement": "AVRAINVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91041"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf88a13230dd176f8dc5fa5d5b0edc86b64f490f", "fields": {"nom_de_la_commune": "BOUTERVILLIERS", "libell_d_acheminement": "BOUTERVILLIERS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91098"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee6c55ca73cfeda7f722287bd75ca7a2e283d46", "fields": {"nom_de_la_commune": "BRETIGNY SUR ORGE", "libell_d_acheminement": "BRETIGNY SUR ORGE", "code_postal": "91220", "coordonnees_gps": [48.6039242304, 2.3152152775], "code_commune_insee": "91103"}, "geometry": {"type": "Point", "coordinates": [2.3152152775, 48.6039242304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb77079f1200e759db17d10aa5fd330b6d24847", "fields": {"nom_de_la_commune": "CHALO ST MARS", "libell_d_acheminement": "CHALO ST MARS", "code_postal": "91780", "coordonnees_gps": [48.4201119171, 2.04444826512], "code_commune_insee": "91130"}, "geometry": {"type": "Point", "coordinates": [2.04444826512, 48.4201119171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225513c364ffe98d01a798359f371e7075dcc1ef", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "91750", "coordonnees_gps": [48.5147670198, 2.45459432239], "code_commune_insee": "91159"}, "geometry": {"type": "Point", "coordinates": [2.45459432239, 48.5147670198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f175e76fcf30d23cdd42603e224947bb2f1c9e0", "fields": {"nom_de_la_commune": "LE COUDRAY MONTCEAUX", "libell_d_acheminement": "LE COUDRAY MONTCEAUX", "code_postal": "91830", "coordonnees_gps": [48.5482208788, 2.48758633681], "code_commune_insee": "91179"}, "geometry": {"type": "Point", "coordinates": [2.48758633681, 48.5482208788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57517ebffad49a1a3cbe11a5fa9c49c89d08032", "fields": {"nom_de_la_commune": "COURCOURONNES", "libell_d_acheminement": "COURCOURONNES", "code_postal": "91080", "coordonnees_gps": [48.6218955408, 2.41247245997], "code_commune_insee": "91182"}, "geometry": {"type": "Point", "coordinates": [2.41247245997, 48.6218955408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6050aca11f78c25ef7a4adcc9d89c83d5380d25", "fields": {"nom_de_la_commune": "CROSNE", "libell_d_acheminement": "CROSNE", "code_postal": "91560", "coordonnees_gps": [48.7201603122, 2.46256788969], "code_commune_insee": "91191"}, "geometry": {"type": "Point", "coordinates": [2.46256788969, 48.7201603122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5cdf294d39fd0c292639efcf22f7f53f7391f2d", "fields": {"nom_de_la_commune": "ETIOLLES", "libell_d_acheminement": "ETIOLLES", "code_postal": "91450", "coordonnees_gps": [48.6546477863, 2.47449221609], "code_commune_insee": "91225"}, "geometry": {"type": "Point", "coordinates": [2.47449221609, 48.6546477863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185e74aa8e6808bded5bcca5870b5654e03291fb", "fields": {"nom_de_la_commune": "EVRY", "libell_d_acheminement": "EVRY", "code_postal": "91000", "coordonnees_gps": [48.6292552888, 2.44052205012], "code_commune_insee": "91228"}, "geometry": {"type": "Point", "coordinates": [2.44052205012, 48.6292552888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14df18907b5364bdca77ab348462855ff00a46c", "fields": {"nom_de_la_commune": "GOMETZ LE CHATEL", "libell_d_acheminement": "GOMETZ LE CHATEL", "code_postal": "91940", "coordonnees_gps": [48.6746009432, 2.16779886217], "code_commune_insee": "91275"}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd849c0ad34f59d870ba42ef3bbf37d435040a1", "fields": {"nom_de_la_commune": "LES GRANGES LE ROI", "libell_d_acheminement": "LES GRANGES LE ROI", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91284"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dfffa58f88ecee40d4d515536d94333139bbf1a", "fields": {"nom_de_la_commune": "GUIBEVILLE", "libell_d_acheminement": "GUIBEVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91292"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982871244d88ac8746e30e09e2f5e7d1021ee0a1", "fields": {"nom_de_la_commune": "LARDY", "libell_d_acheminement": "LARDY", "code_postal": "91510", "coordonnees_gps": [48.5117436099, 2.26036943723], "code_commune_insee": "91330"}, "geometry": {"type": "Point", "coordinates": [2.26036943723, 48.5117436099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e438db14f9aa6328d1fa8d10a0af576f5de460f", "fields": {"nom_de_la_commune": "LEUVILLE SUR ORGE", "libell_d_acheminement": "LEUVILLE SUR ORGE", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91333"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f20d43dd905c0b703b120008bcdf46a95e2ea3", "fields": {"nom_de_la_commune": "MARCOUSSIS", "libell_d_acheminement": "MARCOUSSIS", "code_postal": "91460", "coordonnees_gps": [48.6460859736, 2.2061891096], "code_commune_insee": "91363"}, "geometry": {"type": "Point", "coordinates": [2.2061891096, 48.6460859736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f7c4c1a264852577ad122f1080d9299b8de38f", "fields": {"nom_de_la_commune": "MEROBERT", "libell_d_acheminement": "MEROBERT", "code_postal": "91780", "coordonnees_gps": [48.4201119171, 2.04444826512], "code_commune_insee": "91393"}, "geometry": {"type": "Point", "coordinates": [2.04444826512, 48.4201119171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c539c20eebdedee1ee412714b564f24f2c8939", "fields": {"nom_de_la_commune": "LES MOLIERES", "libell_d_acheminement": "LES MOLIERES", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91411"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae12051b57ad67d312ccfbded0385674145543a", "fields": {"nom_de_la_commune": "MORSANG SUR ORGE", "libell_d_acheminement": "MORSANG SUR ORGE", "code_postal": "91390", "coordonnees_gps": [48.6562305326, 2.35134021542], "code_commune_insee": "91434"}, "geometry": {"type": "Point", "coordinates": [2.35134021542, 48.6562305326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc511e311fd5bde9f6fd0f3e0b0764666715f53", "fields": {"nom_de_la_commune": "ONCY SUR ECOLE", "libell_d_acheminement": "ONCY SUR ECOLE", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91463"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b6c7ded0575307e86ff00a8253ef6f121131e7", "fields": {"nom_de_la_commune": "ORSAY", "libell_d_acheminement": "ORSAY", "code_postal": "91400", "coordonnees_gps": [48.7079533558, 2.15419618195], "code_commune_insee": "91471"}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeff21d8d127f40d4a2d910114cb94db9d4ce5af", "fields": {"code_postal": "91400", "code_commune_insee": "91471", "libell_d_acheminement": "ORSAY", "ligne_5": "ORSIGNY", "nom_de_la_commune": "ORSAY", "coordonnees_gps": [48.7079533558, 2.15419618195]}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed86fb84af04906e5a1abbaf5eb4ca81aa98e1e", "fields": {"nom_de_la_commune": "RICHARVILLE", "libell_d_acheminement": "RICHARVILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91519"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f912751f2a566e267b193ab26ea6cdeb64cad1e", "fields": {"nom_de_la_commune": "ST CYR LA RIVIERE", "libell_d_acheminement": "ST CYR LA RIVIERE", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91544"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fac5b68104edec6c258b9f7f51c316ef577b073", "fields": {"nom_de_la_commune": "ST GERMAIN LES ARPAJON", "libell_d_acheminement": "ST GERMAIN LES ARPAJON", "code_postal": "91180", "coordonnees_gps": [48.5987466717, 2.26387037566], "code_commune_insee": "91552"}, "geometry": {"type": "Point", "coordinates": [2.26387037566, 48.5987466717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b5c9342540a7689cdbccdfc77b509db341e194", "fields": {"nom_de_la_commune": "ST MICHEL SUR ORGE", "libell_d_acheminement": "ST MICHEL SUR ORGE", "code_postal": "91240", "coordonnees_gps": [48.632621365, 2.31165782908], "code_commune_insee": "91570"}, "geometry": {"type": "Point", "coordinates": [2.31165782908, 48.632621365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f92a9a15c43888319d9505a4699949aaf4b827a", "fields": {"nom_de_la_commune": "SAINTRY SUR SEINE", "libell_d_acheminement": "SAINTRY SUR SEINE", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91577"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c21d4c558bf5e4cd1ac661d3b34e0ff19fc1380", "fields": {"nom_de_la_commune": "SOISY SUR ECOLE", "libell_d_acheminement": "SOISY SUR ECOLE", "code_postal": "91840", "coordonnees_gps": [48.4785443532, 2.48152885944], "code_commune_insee": "91599"}, "geometry": {"type": "Point", "coordinates": [2.48152885944, 48.4785443532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1171f72b0076d69dbc933b46d6ae2121693973", "fields": {"nom_de_la_commune": "VERT LE GRAND", "libell_d_acheminement": "VERT LE GRAND", "code_postal": "91810", "coordonnees_gps": [48.5839284064, 2.36727037813], "code_commune_insee": "91648"}, "geometry": {"type": "Point", "coordinates": [2.36727037813, 48.5839284064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8952717f23db123f372f327302b586c2fe90244a", "fields": {"nom_de_la_commune": "VERT LE PETIT", "libell_d_acheminement": "VERT LE PETIT", "code_postal": "91710", "coordonnees_gps": [48.5525868763, 2.36598245863], "code_commune_insee": "91649"}, "geometry": {"type": "Point", "coordinates": [2.36598245863, 48.5525868763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88cae89ddc8408631cbd1e891f9779e21aba3951", "fields": {"nom_de_la_commune": "VILLECONIN", "libell_d_acheminement": "VILLECONIN", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91662"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec860165d35c939e951c28a3cbd39ecb111ca85", "fields": {"nom_de_la_commune": "VILLEJUST", "libell_d_acheminement": "VILLEJUST", "code_postal": "91140", "coordonnees_gps": [48.6888194138, 2.23030867411], "code_commune_insee": "91666"}, "geometry": {"type": "Point", "coordinates": [2.23030867411, 48.6888194138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e92ba4315123128a97f750f220508fa1fc6a4e2", "fields": {"nom_de_la_commune": "LES ULIS", "libell_d_acheminement": "LES ULIS", "code_postal": "91940", "coordonnees_gps": [48.6746009432, 2.16779886217], "code_commune_insee": "91692"}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864ef5afa13bdd762da68177ea6f88a24ed5a90c", "fields": {"nom_de_la_commune": "ANTONY", "libell_d_acheminement": "ANTONY", "code_postal": "92160", "coordonnees_gps": [48.7498937997, 2.29904436066], "code_commune_insee": "92002"}, "geometry": {"type": "Point", "coordinates": [2.29904436066, 48.7498937997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7070beae69edad1902b7688c7728d36d0a14dc4e", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "92220", "coordonnees_gps": [48.7988494711, 2.30977111957], "code_commune_insee": "92007"}, "geometry": {"type": "Point", "coordinates": [2.30977111957, 48.7988494711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bdaa9d785e5ea21a5df92d9bc6bc266fee89c95", "fields": {"code_postal": "92290", "code_commune_insee": "92019", "libell_d_acheminement": "CHATENAY MALABRY", "ligne_5": "LA BUTTE ROUGE", "nom_de_la_commune": "CHATENAY MALABRY", "coordonnees_gps": [48.7683241133, 2.26382535631]}, "geometry": {"type": "Point", "coordinates": [2.26382535631, 48.7683241133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d565d5441b0a8c94623bb0c3845adb4cf7272231", "fields": {"nom_de_la_commune": "CHAVILLE", "libell_d_acheminement": "CHAVILLE", "code_postal": "92370", "coordonnees_gps": [48.8072497774, 2.1917994859], "code_commune_insee": "92022"}, "geometry": {"type": "Point", "coordinates": [2.1917994859, 48.8072497774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54c36f79a4154901e0f22e08b1394f2aa03e3fe", "fields": {"nom_de_la_commune": "BAILLY ROMAINVILLIERS", "libell_d_acheminement": "BAILLY ROMAINVILLIERS", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77018"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e7a37006ec4ec4813edf58010f28fc9179d6c9b", "fields": {"nom_de_la_commune": "BALLOY", "libell_d_acheminement": "BALLOY", "code_postal": "77118", "coordonnees_gps": [48.3962434685, 3.16889442918], "code_commune_insee": "77019"}, "geometry": {"type": "Point", "coordinates": [3.16889442918, 48.3962434685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df95c2b87aacee75ec60896533e78c944cea9fcd", "fields": {"nom_de_la_commune": "BARBIZON", "libell_d_acheminement": "BARBIZON", "code_postal": "77630", "coordonnees_gps": [48.4243787367, 2.57257810234], "code_commune_insee": "77022"}, "geometry": {"type": "Point", "coordinates": [2.57257810234, 48.4243787367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb00c69cdb6a2e6959ebbd4e973c97bb6ba5290", "fields": {"nom_de_la_commune": "BEAUTHEIL", "libell_d_acheminement": "BEAUTHEIL", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77028"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0804034a50eb409eeac6f4edb332ec24f2909a1b", "fields": {"nom_de_la_commune": "BEZALLES", "libell_d_acheminement": "BEZALLES", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77033"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e931f0747312f22df366ea58ed51e8eaf100f23", "fields": {"nom_de_la_commune": "BOISSISE LE ROI", "libell_d_acheminement": "BOISSISE LE ROI", "code_postal": "77310", "coordonnees_gps": [48.5292083362, 2.53978127085], "code_commune_insee": "77040"}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e3d4476d43b9e0b4559cfa3c3f02ddee81c229", "fields": {"nom_de_la_commune": "BOISSY AUX CAILLES", "libell_d_acheminement": "BOISSY AUX CAILLES", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77041"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9e3f453e1367d2f1cc6de428b3bdd19747beb0", "fields": {"nom_de_la_commune": "BOISSY LE CHATEL", "libell_d_acheminement": "BOISSY LE CHATEL", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77042"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6595dcb239827a9dee3437590ba453041385dcda", "fields": {"nom_de_la_commune": "BOMBON", "libell_d_acheminement": "BOMBON", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77044"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de4ce91a81b4739cea1b43cc6e431a9d6c07447", "fields": {"nom_de_la_commune": "BOUTIGNY", "libell_d_acheminement": "BOUTIGNY", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77049"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b49dd7de00b6f6a622cbffe226fc7c3c83a3024", "fields": {"nom_de_la_commune": "BRIE COMTE ROBERT", "libell_d_acheminement": "BRIE COMTE ROBERT", "code_postal": "77170", "coordonnees_gps": [48.6935707994, 2.63183347569], "code_commune_insee": "77053"}, "geometry": {"type": "Point", "coordinates": [2.63183347569, 48.6935707994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc9153b6d8e3a4f4cf52c3c8e9c4694bcb30a6d", "fields": {"code_postal": "77600", "code_commune_insee": "77059", "libell_d_acheminement": "BUSSY ST MARTIN", "ligne_5": "RENTILLY", "nom_de_la_commune": "BUSSY ST MARTIN", "coordonnees_gps": [48.8361794738, 2.73226890342]}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "168745cc7579faae19a3f9bc46adff149efdeff8", "fields": {"nom_de_la_commune": "CESSON", "libell_d_acheminement": "CESSON", "code_postal": "77240", "coordonnees_gps": [48.5645874906, 2.60004351705], "code_commune_insee": "77067"}, "geometry": {"type": "Point", "coordinates": [2.60004351705, 48.5645874906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d8734534c22fd42394cb33407e26847849e3d9", "fields": {"nom_de_la_commune": "CHAINTREAUX", "libell_d_acheminement": "CHAINTREAUX", "code_postal": "77460", "coordonnees_gps": [48.1889258767, 2.77893143311], "code_commune_insee": "77071"}, "geometry": {"type": "Point", "coordinates": [2.77893143311, 48.1889258767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8189d0473ab6a8c8dec77e96376197fc31d8d303", "fields": {"nom_de_la_commune": "CHAMPCENEST", "libell_d_acheminement": "CHAMPCENEST", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77080"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27279c264ffae52fa386d39e14b2201bf5707543", "fields": {"nom_de_la_commune": "CHAMPS SUR MARNE", "libell_d_acheminement": "CHAMPS SUR MARNE", "code_postal": "77420", "coordonnees_gps": [48.8481383447, 2.59602539852], "code_commune_insee": "77083"}, "geometry": {"type": "Point", "coordinates": [2.59602539852, 48.8481383447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231ffa8cae6f94efa6fa19aae26fa409a2442279", "fields": {"code_postal": "77320", "code_commune_insee": "77093", "libell_d_acheminement": "LA CHAPELLE MOUTILS", "ligne_5": "MOUTILS", "nom_de_la_commune": "LA CHAPELLE MOUTILS", "coordonnees_gps": [48.7632652303, 3.31883214084]}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be9bc782257f75fec5567e623bfa97e67b2d238", "fields": {"nom_de_la_commune": "CHARNY", "libell_d_acheminement": "CHARNY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77095"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b9466f350637123ec8c7ca744f2ac9fe0eb145f", "fields": {"nom_de_la_commune": "CHATEAUBLEAU", "libell_d_acheminement": "CHATEAUBLEAU", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77098"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24a079347e71a16769fcf47c4344560381c4948", "fields": {"nom_de_la_commune": "CHATEAU LANDON", "libell_d_acheminement": "CHATEAU LANDON", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77099"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff1fed85eb53c80ddc470e3e8bd6aa3f5a4b32d", "fields": {"nom_de_la_commune": "CHELLES", "libell_d_acheminement": "CHELLES", "code_postal": "77500", "coordonnees_gps": [48.8836002438, 2.59608427563], "code_commune_insee": "77108"}, "geometry": {"type": "Point", "coordinates": [2.59608427563, 48.8836002438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d826e7181454b863f1878aab1bab66feb82f5f6f", "fields": {"nom_de_la_commune": "CHEVRY EN SEREINE", "libell_d_acheminement": "CHEVRY EN SEREINE", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77115"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf3f37efcfa7b04b6f2436589e2cc1e13995db6", "fields": {"nom_de_la_commune": "CONCHES SUR GONDOIRE", "libell_d_acheminement": "CONCHES SUR GONDOIRE", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77124"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0883a27ad0be1831d1de0ae6f7e3eb1d7d915ffe", "fields": {"nom_de_la_commune": "COUPVRAY", "libell_d_acheminement": "COUPVRAY", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77132"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed6547da1dd33ed608900c0bd5185124ac20a02", "fields": {"nom_de_la_commune": "CRECY LA CHAPELLE", "libell_d_acheminement": "CRECY LA CHAPELLE", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77142"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c484184431c5e9e323fda91129e7adb60ed4bb3", "fields": {"nom_de_la_commune": "CREVECOEUR EN BRIE", "libell_d_acheminement": "CREVECOEUR EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77144"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bc4b79b17e23ed50bd3a5d95e4643ebc26c9e9", "fields": {"nom_de_la_commune": "CUISY", "libell_d_acheminement": "CUISY", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77150"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d1d939ae10c289bd9817f857b31b8d6e38441e", "fields": {"nom_de_la_commune": "DAGNY", "libell_d_acheminement": "DAGNY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77151"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a853b842485c42c6f5bbc78ed6681db38a109905", "fields": {"nom_de_la_commune": "DAMPMART", "libell_d_acheminement": "DAMPMART", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77155"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee16d15f6821f54fa6dc07e3344abfdf76143194", "fields": {"nom_de_la_commune": "DHUISY", "libell_d_acheminement": "DHUISY", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77157"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74dfaf7dd02ccf22f4bed1ac3f1188096c203bc7", "fields": {"nom_de_la_commune": "DOUE", "libell_d_acheminement": "DOUE", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77162"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d77fa7304117075233021ba4af79c5f25fccf4e", "fields": {"nom_de_la_commune": "EGREVILLE", "libell_d_acheminement": "EGREVILLE", "code_postal": "77620", "coordonnees_gps": [48.1721615922, 2.86730865487], "code_commune_insee": "77168"}, "geometry": {"type": "Point", "coordinates": [2.86730865487, 48.1721615922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc3f17a3a4ade73a882efe0c87992962c7eec16", "fields": {"nom_de_la_commune": "ESBLY", "libell_d_acheminement": "ESBLY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77171"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d935148a5275c30db8a7641174404ab0048df96", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77177"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721b5d323e3238fc7841598dc21ed22be37d3e32", "fields": {"nom_de_la_commune": "FONTAINEBLEAU", "libell_d_acheminement": "FONTAINEBLEAU", "code_postal": "77300", "coordonnees_gps": [48.406592674, 2.68078145585], "code_commune_insee": "77186"}, "geometry": {"type": "Point", "coordinates": [2.68078145585, 48.406592674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ad372f88106b9415b0c44e40b28755d9824dc6", "fields": {"nom_de_la_commune": "FONTENAY TRESIGNY", "libell_d_acheminement": "FONTENAY TRESIGNY", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77192"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc59e9a823f618fb850f9ea43aa85c96c095ce7", "fields": {"nom_de_la_commune": "FORFRY", "libell_d_acheminement": "FORFRY", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77193"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a75d22f2e97c1148937649b2fe8960caacfee1", "fields": {"nom_de_la_commune": "FOUJU", "libell_d_acheminement": "FOUJU", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77195"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fbf9e381358b0cd9b7f020d63d5daf4143ca28", "fields": {"nom_de_la_commune": "VERNET LA VARENNE", "libell_d_acheminement": "VERNET LA VARENNE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63448"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cd935d531bb3c38f9cf6b6a68a28bde3e87686", "fields": {"nom_de_la_commune": "VEYRE MONTON", "libell_d_acheminement": "VEYRE MONTON", "code_postal": "63960", "coordonnees_gps": [45.6733479209, 3.16361558337], "code_commune_insee": "63455"}, "geometry": {"type": "Point", "coordinates": [3.16361558337, 45.6733479209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a52970a2bf6d4d9cfdc42fb9d3068bbc058144", "fields": {"code_postal": "63270", "code_commune_insee": "63457", "libell_d_acheminement": "VIC LE COMTE", "ligne_5": "LONGUES", "nom_de_la_commune": "VIC LE COMTE", "coordonnees_gps": [45.6408260002, 3.30100691361]}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58be119b236730e48b9b941c72d1d909885f70d3", "fields": {"nom_de_la_commune": "VILLOSANGES", "libell_d_acheminement": "VILLOSANGES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63460"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffec80514e94f102e0a85f3303a16fdc7ab3d597", "fields": {"nom_de_la_commune": "VOLVIC", "libell_d_acheminement": "VOLVIC", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63470"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aacf9e0e21a3934b145b6ff20fda1bef9fbcc49", "fields": {"nom_de_la_commune": "YOUX", "libell_d_acheminement": "YOUX", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63471"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5269e8a680950338380f0acf0e6077e42a226bf", "fields": {"nom_de_la_commune": "ABERE", "libell_d_acheminement": "ABERE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64002"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b70e7e7d7da9fb5d667440365b99ecfccaf61c6", "fields": {"nom_de_la_commune": "ABITAIN", "libell_d_acheminement": "ABITAIN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64004"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6af8e3a9abf87b64ebe05d0f6ac395a23338e8", "fields": {"nom_de_la_commune": "ACCOUS", "libell_d_acheminement": "ACCOUS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64006"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823852d6b06d535871e61cbed7447f9b05e8d92c", "fields": {"nom_de_la_commune": "AHAXE ALCIETTE BASCASSAN", "libell_d_acheminement": "AHAXE ALCIETTE BASCASSAN", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64008"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27321c2b3c5e1c608e2c548cf6b2032e7fb140bb", "fields": {"nom_de_la_commune": "ANGAIS", "libell_d_acheminement": "ANGAIS", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64023"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa78d132feddda836310c3282e15c5c609799e08", "fields": {"nom_de_la_commune": "ARAMITS", "libell_d_acheminement": "ARAMITS", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64029"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f1e965ec65d3a193942d52f841e55d25e622cf", "fields": {"nom_de_la_commune": "ARNOS", "libell_d_acheminement": "ARNOS", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64048"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a103f77b63a90bbf83e549c13c3ba1fda7fc997f", "fields": {"code_postal": "64120", "code_commune_insee": "64049", "libell_d_acheminement": "AROUE ITHOROTS OLHAIBY", "ligne_5": "ITHOROTS OLHAIBY", "nom_de_la_commune": "AROUE ITHOROTS OLHAIBY", "coordonnees_gps": [43.3050617762, -1.05477457972]}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c762cd8a26384f97aa3522e8ffcad34326164a4", "fields": {"nom_de_la_commune": "ASCARAT", "libell_d_acheminement": "ASCARAT", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64066"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b9708c393e29bc65863ab8c48d802d0e815120", "fields": {"nom_de_la_commune": "ASSON", "libell_d_acheminement": "ASSON", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64068"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41833b8ce54428f7c348d059ef7fbeb7affdd760", "fields": {"nom_de_la_commune": "AURIAC", "libell_d_acheminement": "AURIAC", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64078"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9830372b3ca4bada378cb2e38a32b2e16c6cd62", "fields": {"nom_de_la_commune": "AUSSURUCQ", "libell_d_acheminement": "AUSSURUCQ", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64081"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95a4fdd99edbe477eda7128dd0ec62100b41afe", "fields": {"nom_de_la_commune": "AYDIE", "libell_d_acheminement": "AYDIE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64084"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dcffe55d954c51990d2e0c400529350ed953c7a", "fields": {"nom_de_la_commune": "BAUDREIX", "libell_d_acheminement": "BAUDREIX", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64101"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8f43d318c41f959a29a447750b1c04314e1ba2", "fields": {"nom_de_la_commune": "BELLOCQ", "libell_d_acheminement": "BELLOCQ", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64108"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9cbf273e453abb1f0676eb14753e2ad2698713", "fields": {"nom_de_la_commune": "BENTAYOU SEREE", "libell_d_acheminement": "BENTAYOU SEREE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64111"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257ac5bb466726a7ffdaa29eb7a286e8b40a332d", "fields": {"nom_de_la_commune": "BERENX", "libell_d_acheminement": "BERENX", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64112"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "833d0d6552c63fdd6294500d0df3b80865ba43e2", "fields": {"nom_de_la_commune": "BEUSTE", "libell_d_acheminement": "BEUSTE", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64119"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cde456227c77b784a65403812654973949c386", "fields": {"nom_de_la_commune": "BIDART", "libell_d_acheminement": "BIDART", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64125"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dbbb56c0b643d044d6b2dc8935270d4cdc5b12", "fields": {"nom_de_la_commune": "BOEIL BEZING", "libell_d_acheminement": "BOEIL BEZING", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64133"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de6555aa7172ca60dedfa5dcbe6cc75247af6b3", "fields": {"nom_de_la_commune": "BORDERES", "libell_d_acheminement": "BORDERES", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64137"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000ed3072e46456e601d35b63d2b6becb16ed7e0", "fields": {"nom_de_la_commune": "BOUCAU", "libell_d_acheminement": "BOUCAU", "code_postal": "64340", "coordonnees_gps": [43.5253761707, -1.47965220654], "code_commune_insee": "64140"}, "geometry": {"type": "Point", "coordinates": [-1.47965220654, 43.5253761707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f07da4524d3da6b4d32eea90c1d635887dbdec", "fields": {"nom_de_la_commune": "BOUEILH BOUEILHO LASQUE", "libell_d_acheminement": "BOUEILH BOUEILHO LASQUE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64141"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d6a303f0219f9a196feceb1075a50c26a4535fe", "fields": {"nom_de_la_commune": "BRISCOUS", "libell_d_acheminement": "BRISCOUS", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64147"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f930f1832d32b2140c9ff4bbf6fc9828b23756", "fields": {"code_postal": "64800", "code_commune_insee": "64148", "libell_d_acheminement": "BRUGES CAPBIS MIFAGET", "ligne_5": "MIFAGET", "nom_de_la_commune": "BRUGES CAPBIS MIFAGET", "coordonnees_gps": [43.1416716993, -0.242876303099]}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a6a27450f0716260a87fa59bee05dbae626fb6", "fields": {"nom_de_la_commune": "CABIDOS", "libell_d_acheminement": "CABIDOS", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64158"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8288e08252c41ce6e0d9a2e9bd3d2798463c8b", "fields": {"nom_de_la_commune": "CAME", "libell_d_acheminement": "CAME", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64161"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9b0bffc80221591815351a75860c176cfa801cc", "fields": {"nom_de_la_commune": "CAMOU CIHIGUE", "libell_d_acheminement": "CAMOU CIHIGUE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64162"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e864f46c62c0bab6bed8509a97169532f7719c6c", "fields": {"nom_de_la_commune": "CARO", "libell_d_acheminement": "CARO", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64166"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8d9aa15fac32648a0cbdefffc35819881d49a0", "fields": {"nom_de_la_commune": "CASTAGNEDE", "libell_d_acheminement": "CASTAGNEDE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64170"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0fa8a49bc57790b053f65b4ffc894dd6f871586", "fields": {"nom_de_la_commune": "CASTEIDE CANDAU", "libell_d_acheminement": "CASTEIDE CANDAU", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64172"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc313d669bcb1d069bb2234bdcf3227dbf89ac7", "fields": {"nom_de_la_commune": "CASTET", "libell_d_acheminement": "CASTET", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64175"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da72eead2b86d7e1fc8b9208c3e15cb41853f3bd", "fields": {"nom_de_la_commune": "CASTETBON", "libell_d_acheminement": "CASTETBON", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64176"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c596ea962186344c190d168a49f535f685a4d3", "fields": {"nom_de_la_commune": "CASTILLON DE LEMBEYE", "libell_d_acheminement": "CASTILLON DE LEMBEYE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64182"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644e905b896ab4aeab478261f9615fa2571154c8", "fields": {"nom_de_la_commune": "DIUSSE", "libell_d_acheminement": "DIUSSE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64199"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "106a85ff846286c06f29e6a32f83003362ce268c", "fields": {"nom_de_la_commune": "DOAZON", "libell_d_acheminement": "DOAZON", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64200"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610620489c672cbd897986b989601ab125a73a1a", "fields": {"nom_de_la_commune": "DOMEZAIN BERRAUTE", "libell_d_acheminement": "DOMEZAIN BERRAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64202"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f399d6f5d4b083f9f2568e0c4f878bf0e8ee558", "fields": {"nom_de_la_commune": "ESCOS", "libell_d_acheminement": "ESCOS", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64205"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68b679408ab281b933a8b781d6ea9ead1bf3b25", "fields": {"nom_de_la_commune": "ESPECHEDE", "libell_d_acheminement": "ESPECHEDE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64212"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe4ae337d3ee9442aa2e422f51f2b99ac828121", "fields": {"nom_de_la_commune": "ESQUIULE", "libell_d_acheminement": "ESQUIULE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64217"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0145111c22ad8154f8280e4ca54d8d9ad07d9a8a", "fields": {"nom_de_la_commune": "ETCHARRY", "libell_d_acheminement": "ETCHARRY", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64221"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75916d1b7c6b6d98c1da48819eed54ad55c68461", "fields": {"nom_de_la_commune": "ETCHEBAR", "libell_d_acheminement": "ETCHEBAR", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64222"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de73fd6bb75348a59a2d5b4a6fff3a2676727f9", "fields": {"nom_de_la_commune": "EYSUS", "libell_d_acheminement": "EYSUS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64224"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f998947ff86b7467da37463eace034c9910ca08", "fields": {"nom_de_la_commune": "GARLEDE MONDEBAT", "libell_d_acheminement": "GARLEDE MONDEBAT", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64232"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5abc0f82821bff49a688f9dba07600698fb4e12", "fields": {"nom_de_la_commune": "GAROS", "libell_d_acheminement": "GAROS", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64234"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfa7cd0bd606f95991882541d60e1a4993139e6", "fields": {"nom_de_la_commune": "GARRIS", "libell_d_acheminement": "GARRIS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64235"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24b8b743a504caeab42951854dff0e4ea85db40", "fields": {"nom_de_la_commune": "GEUS D ARZACQ", "libell_d_acheminement": "GEUS D ARZACQ", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64243"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea763556a556d200782187a05101713f836fe736", "fields": {"nom_de_la_commune": "HAUX", "libell_d_acheminement": "HAUX", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64258"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641c0d734e5fded167bcb108dd3b2567015f3a08", "fields": {"nom_de_la_commune": "HELETTE", "libell_d_acheminement": "HELETTE", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64259"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0197e033f442387406550bde1e2c48e7888dcaf", "fields": {"nom_de_la_commune": "IRISSARRY", "libell_d_acheminement": "IRISSARRY", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64273"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce9911f53d034f433e0044d3641b0cd0cd53b36", "fields": {"nom_de_la_commune": "JATXOU", "libell_d_acheminement": "JATXOU", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64282"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c5d2859406f8931ddce074c69c89620c8dc408", "fields": {"nom_de_la_commune": "JAXU", "libell_d_acheminement": "JAXU", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64283"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d68c16555c02dfd2651056aba09f558b21c6f7", "fields": {"nom_de_la_commune": "JUXUE", "libell_d_acheminement": "JUXUE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64285"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161ad2181e5448392ee560a814655c601247e131", "fields": {"nom_de_la_commune": "LABETS BISCAY", "libell_d_acheminement": "LABETS BISCAY", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64294"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5de37a48a9857fa23dd6001eab6c3d6377e49b", "fields": {"nom_de_la_commune": "LACADEE", "libell_d_acheminement": "LACADEE", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64296"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c2b6f0f0bf94a4564add5316ff7144b1b526ba", "fields": {"nom_de_la_commune": "LACQ", "libell_d_acheminement": "LACQ", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64300"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f13567867b2c7fc356983b4984af0e76777df52", "fields": {"nom_de_la_commune": "LAHONTAN", "libell_d_acheminement": "LAHONTAN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64305"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6971d519b7f1dba56c47f69a61c9c57e60445a7", "fields": {"nom_de_la_commune": "LALONGUE", "libell_d_acheminement": "LALONGUE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64307"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd884a671ad349aa7118da33641c5c78cb62f67", "fields": {"nom_de_la_commune": "LEME", "libell_d_acheminement": "LEME", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64332"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c777c4bc33487bfa637c478e78774d6f1c7c78", "fields": {"nom_de_la_commune": "LESTELLE BETHARRAM", "libell_d_acheminement": "LESTELLE BETHARRAM", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64339"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c671bef0be81ece010e1426ed3e90e79cad52477", "fields": {"nom_de_la_commune": "LICHANS SUNHAR", "libell_d_acheminement": "LICHANS SUNHAR", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64340"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e573b5605659ed21bf16396f846e31f511263979", "fields": {"nom_de_la_commune": "LONS", "libell_d_acheminement": "LONS", "code_postal": "64140", "coordonnees_gps": [43.3167166391, -0.399067270289], "code_commune_insee": "64348"}, "geometry": {"type": "Point", "coordinates": [-0.399067270289, 43.3167166391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae95c11e24a3d9db8704675f42db89667096700e", "fields": {"nom_de_la_commune": "LOUBIENG", "libell_d_acheminement": "LOUBIENG", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64349"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c38626b970141c0ad940af804991c79c816294f", "fields": {"nom_de_la_commune": "LOURDIOS ICHERE", "libell_d_acheminement": "LOURDIOS ICHERE", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64351"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab8d1edeb30987b423783024c42547e6e479d01", "fields": {"nom_de_la_commune": "MACAYE", "libell_d_acheminement": "MACAYE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64364"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0127f8be0af23d888650991854642bec8feebb5f", "fields": {"nom_de_la_commune": "MALAUSSANNE", "libell_d_acheminement": "MALAUSSANNE", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64365"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40383c1f46007ba153a997a084c90fea05fe6bf", "fields": {"nom_de_la_commune": "MASLACQ", "libell_d_acheminement": "MASLACQ", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64367"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67d9710afab7762e82de424841565dc8537944f", "fields": {"nom_de_la_commune": "MAUCOR", "libell_d_acheminement": "MAUCOR", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64370"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc74461247f6c1f39ebb84899435ca6eb0bb499c", "fields": {"nom_de_la_commune": "MENDIONDE", "libell_d_acheminement": "MENDIONDE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64377"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c294e321d7f26fdd8c2744ccaf9d3fe2c6b39560", "fields": {"nom_de_la_commune": "MESPLEDE", "libell_d_acheminement": "MESPLEDE", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64382"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f23266b2f99cd5a28b53838df5b67c04268eba0", "fields": {"nom_de_la_commune": "MONCLA", "libell_d_acheminement": "MONCLA", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64392"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c57ece41009f03d9552b1abd08a22a9c3a9088", "fields": {"nom_de_la_commune": "MONEIN", "libell_d_acheminement": "MONEIN", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64393"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6303d4db060594055cbd52fe55713493c4964c25", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64400"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c178a6a458a7c59f48e4f9f3efb8fe286b6789", "fields": {"nom_de_la_commune": "MONT DISSE", "libell_d_acheminement": "MONT DISSE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64401"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ea43603575fc07873ee72d5c8f1ee4d580e557", "fields": {"nom_de_la_commune": "MOUMOUR", "libell_d_acheminement": "MOUMOUR", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64409"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad566f60f5886dc5361786af3dc7563bf14f380", "fields": {"nom_de_la_commune": "NAVARRENX", "libell_d_acheminement": "NAVARRENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64416"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9dd2e34937fb83ad894649bd2171eea230b4cff", "fields": {"nom_de_la_commune": "NOGUERES", "libell_d_acheminement": "NOGUERES", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64418"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "addadf4b08a95872c0f3681e1e8704cd45f111cc", "fields": {"nom_de_la_commune": "ORSANCO", "libell_d_acheminement": "ORSANCO", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64429"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416da94a4f2637946b75a7471e1858223ad47765", "fields": {"nom_de_la_commune": "OSSAS SUHARE", "libell_d_acheminement": "OSSAS SUHARE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64432"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc07e9c95182e3e3476de80d20faf895e682f3a", "fields": {"nom_de_la_commune": "PAU", "libell_d_acheminement": "PAU", "code_postal": "64000", "coordonnees_gps": [43.3202428022, -0.349730360793], "code_commune_insee": "64445"}, "geometry": {"type": "Point", "coordinates": [-0.349730360793, 43.3202428022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "393a959ce6bdd13b6e655b623cbd0114d4336a8b", "fields": {"nom_de_la_commune": "PONSON DESSUS", "libell_d_acheminement": "PONSON DESSUS", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64452"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab6dcb8109b204b541d623246fd0556c0e2a6ed", "fields": {"nom_de_la_commune": "RIBARROUY", "libell_d_acheminement": "RIBARROUY", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64464"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f8950fc67a035b4f6540a32730695fee7d58ef", "fields": {"nom_de_la_commune": "RIUPEYROUS", "libell_d_acheminement": "RIUPEYROUS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64465"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd95a97bd1dea54700ca0ea92f1688ddf5ac8956", "fields": {"nom_de_la_commune": "ST ARMOU", "libell_d_acheminement": "ST ARMOU", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64470"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4a994066139f35c4fe4847c20e3f0d6a292252", "fields": {"nom_de_la_commune": "ST DOS", "libell_d_acheminement": "ST DOS", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64474"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b73b85e1ad1982af9d412edfbb4944f8d0108b", "fields": {"nom_de_la_commune": "STE ENGRACE", "libell_d_acheminement": "STE ENGRACE", "code_postal": "64560", "coordonnees_gps": [43.0084914097, -0.920619929244], "code_commune_insee": "64475"}, "geometry": {"type": "Point", "coordinates": [-0.920619929244, 43.0084914097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f62d06c1135892af43eb1fc49fc01dfd4e1f7d", "fields": {"nom_de_la_commune": "ST ETIENNE DE BAIGORRY", "libell_d_acheminement": "ST ETIENNE DE BAIGORRY", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64477"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08ed26dedc412289d9524601aa2c483c2b6733f4", "fields": {"nom_de_la_commune": "ST FAUST", "libell_d_acheminement": "ST FAUST", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64478"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eaac144de39edb8e42b7a847fd18193dbe2cbae", "fields": {"nom_de_la_commune": "ST GLADIE ARRIVE MUNEIN", "libell_d_acheminement": "ST GLADIE ARRIVE MUNEIN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64480"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df6a4ea98e1428fee330034acde6166df91fc81a", "fields": {"nom_de_la_commune": "WISSEMBOURG", "libell_d_acheminement": "WISSEMBOURG", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67544"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd688e7ddb63f10197645406e56f71957a841a22", "fields": {"nom_de_la_commune": "WOLFSKIRCHEN", "libell_d_acheminement": "WOLFSKIRCHEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67552"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a0a83df0ee3b659931aeca6d435cd7342a5492f", "fields": {"nom_de_la_commune": "WOLXHEIM", "libell_d_acheminement": "WOLXHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67554"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99b057f91dd63cc985d061465370e5a47fff313", "fields": {"code_postal": "67120", "code_commune_insee": "67554", "libell_d_acheminement": "WOLXHEIM", "ligne_5": "CANAL", "nom_de_la_commune": "WOLXHEIM", "coordonnees_gps": [48.5435292829, 7.5327846629]}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e86c9a714766d8f581f7877965699ac0082b08e", "fields": {"nom_de_la_commune": "ZEHNACKER", "libell_d_acheminement": "ZEHNACKER", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67555"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b612af38aa2756d5953c467a0cdb06a41db5bb52", "fields": {"nom_de_la_commune": "LE BERNARD", "libell_d_acheminement": "LE BERNARD", "code_postal": "85560", "coordonnees_gps": [46.4255552518, -1.46169851004], "code_commune_insee": "85022"}, "geometry": {"type": "Point", "coordinates": [-1.46169851004, 46.4255552518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a06597a30355be86ed4fd7312ad91da43e0b8e4", "fields": {"nom_de_la_commune": "BOIS DE CENE", "libell_d_acheminement": "BOIS DE CENE", "code_postal": "85710", "coordonnees_gps": [46.9181711816, -1.86435198125], "code_commune_insee": "85024"}, "geometry": {"type": "Point", "coordinates": [-1.86435198125, 46.9181711816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271c694f0760ff9cdf6f4a25fe9715083a9d1bfc", "fields": {"nom_de_la_commune": "LE BOUPERE", "libell_d_acheminement": "LE BOUPERE", "code_postal": "85510", "coordonnees_gps": [46.7872179072, -0.944338069578], "code_commune_insee": "85031"}, "geometry": {"type": "Point", "coordinates": [-0.944338069578, 46.7872179072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fb91a97d14ef9eab160be64edf14eb590f5d17", "fields": {"nom_de_la_commune": "BRETIGNOLLES SUR MER", "libell_d_acheminement": "BRETIGNOLLES SUR MER", "code_postal": "85470", "coordonnees_gps": [46.62852373, -1.84475847528], "code_commune_insee": "85035"}, "geometry": {"type": "Point", "coordinates": [-1.84475847528, 46.62852373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd9d7c90e488cc2bf7f2a1f150bc8ca5345593f", "fields": {"nom_de_la_commune": "BREUIL BARRET", "libell_d_acheminement": "BREUIL BARRET", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85037"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c9dd65ec22fe0fdd38ef63a8ab61b4bfda3339", "fields": {"nom_de_la_commune": "LA CHAIZE LE VICOMTE", "libell_d_acheminement": "LA CHAIZE LE VICOMTE", "code_postal": "85310", "coordonnees_gps": [46.6268805827, -1.33228683205], "code_commune_insee": "85046"}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0ee9763f6d6509f2a4de10a5235323f706f25a", "fields": {"nom_de_la_commune": "CHANTONNAY", "libell_d_acheminement": "CHANTONNAY", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85051"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c1a02dc3ca43593e62e9f75b2b3a82ffdfa3da", "fields": {"nom_de_la_commune": "LA CHAPELLE ACHARD", "libell_d_acheminement": "LA CHAPELLE ACHARD", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85052"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05b177572b568c7898f4cde3776e4ffac9fb2f1", "fields": {"nom_de_la_commune": "LA CHAPELLE PALLUAU", "libell_d_acheminement": "LA CHAPELLE PALLUAU", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85055"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac628824a1f4529a5af9314ff55dbd65ea90e31", "fields": {"nom_de_la_commune": "DAMVIX", "libell_d_acheminement": "DAMVIX", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85078"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b770e54e366f752aac65d7260e5cbc74faabfe", "fields": {"code_postal": "85200", "code_commune_insee": "85080", "libell_d_acheminement": "DOIX LES FONTAINES", "ligne_5": "FONTAINES", "nom_de_la_commune": "DOIX LES FONTAINES", "coordonnees_gps": [46.4730274645, -0.80431270427]}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25dfa3ed9aae434230b55b2623eaa5f8418d8d7", "fields": {"nom_de_la_commune": "L EPINE", "libell_d_acheminement": "L EPINE", "code_postal": "85740", "coordonnees_gps": [46.984336613, -2.26328394297], "code_commune_insee": "85083"}, "geometry": {"type": "Point", "coordinates": [-2.26328394297, 46.984336613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00b5f1c1bc581e2267a447cd8565ab64d839e158", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "BOULOGNE", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb99f6b6a674cbaf649fd4b2995fc494c8b81d9b", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "L OIE", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31eada4ae4288c1ac2249304f356baae0443b117", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "LES ESSARTS", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203499b447083220c1c196e7e898d98e613f79bd", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "STE FLORENCE", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05222e40e380186902bc50e735577c02ad406e61", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "ST MICHEL MONT MERCURE", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b25ec7b2c378a506132df1eb1b6b1f264ec88d", "fields": {"nom_de_la_commune": "FOUGERE", "libell_d_acheminement": "FOUGERE", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85093"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8160254aa4db6b5f07fff2cbfbfc9e0c59546147", "fields": {"nom_de_la_commune": "LA GAUBRETIERE", "libell_d_acheminement": "LA GAUBRETIERE", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85097"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035a32c30862120eaae8244b19065ec4eb1d0818", "fields": {"nom_de_la_commune": "LA GENETOUZE", "libell_d_acheminement": "LA GENETOUZE", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85098"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fba27deed31380252c700f6da7343c502e8a771", "fields": {"nom_de_la_commune": "LE GIVRE", "libell_d_acheminement": "LE GIVRE", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85101"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c0f5ee9236f361c6b11b7e9ea47178d3196914", "fields": {"nom_de_la_commune": "GRAND LANDES", "libell_d_acheminement": "GRAND LANDES", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85102"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6217e8e68227025007942e06ebadf9cc543c061f", "fields": {"nom_de_la_commune": "JARD SUR MER", "libell_d_acheminement": "JARD SUR MER", "code_postal": "85520", "coordonnees_gps": [46.4271885, -1.57623760346], "code_commune_insee": "85114"}, "geometry": {"type": "Point", "coordinates": [-1.57623760346, 46.4271885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f0b163166947aa3347ef042594831c3fa6c5a1", "fields": {"nom_de_la_commune": "LANDEVIEILLE", "libell_d_acheminement": "LANDEVIEILLE", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85120"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9b061387460877055d0ed60fb38502ebd3e0de", "fields": {"nom_de_la_commune": "LIEZ", "libell_d_acheminement": "LIEZ", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85123"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04aaa79dacdf28858657fcd55177be58cb03bf4a", "fields": {"nom_de_la_commune": "LOGE FOUGEREUSE", "libell_d_acheminement": "LOGE FOUGEREUSE", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85125"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfcf6ce7ed9bd9ac6246d72adafcb2f58c06ecc", "fields": {"nom_de_la_commune": "LONGEVILLE SUR MER", "libell_d_acheminement": "LONGEVILLE SUR MER", "code_postal": "85560", "coordonnees_gps": [46.4255552518, -1.46169851004], "code_commune_insee": "85127"}, "geometry": {"type": "Point", "coordinates": [-1.46169851004, 46.4255552518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32308c6d1b4937fa6aed21547bbfa78791f1e380", "fields": {"nom_de_la_commune": "MACHE", "libell_d_acheminement": "MACHE", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85130"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c77dc69df797a276a031ec33d3c43bf46d48ac0", "fields": {"nom_de_la_commune": "LA MERLATIERE", "libell_d_acheminement": "LA MERLATIERE", "code_postal": "85140", "coordonnees_gps": [46.7759741039, -1.24043269403], "code_commune_insee": "85142"}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c45081fbd75856e331d6866ffb9f848096b425a", "fields": {"nom_de_la_commune": "MONTAIGU", "libell_d_acheminement": "MONTAIGU", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85146"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c72537f35b1861a4a267a9bb63355e8d511157", "fields": {"nom_de_la_commune": "MONTOURNAIS", "libell_d_acheminement": "MONTOURNAIS", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85147"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "856c031d8b242462a4e304940e14021db50a7fc2", "fields": {"nom_de_la_commune": "MOUTIERS SUR LE LAY", "libell_d_acheminement": "MOUTIERS SUR LE LAY", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85157"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc19b09be247dbb5b73fc3f9f8c4d8ee2f36ec0", "fields": {"nom_de_la_commune": "NESMY", "libell_d_acheminement": "NESMY", "code_postal": "85310", "coordonnees_gps": [46.6268805827, -1.33228683205], "code_commune_insee": "85160"}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948789cafe302ece3987956de9619c94ef8a439f", "fields": {"nom_de_la_commune": "L ORBRIE", "libell_d_acheminement": "L ORBRIE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85167"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95afbb2f2b00b332e2461680a8d2b2dbc92365ba", "fields": {"nom_de_la_commune": "LE POIRE SUR VELLUIRE", "libell_d_acheminement": "LE POIRE SUR VELLUIRE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85177"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb9a35c6ba66ec8583944c8e42e3d6273918f72", "fields": {"nom_de_la_commune": "LE POIRE SUR VIE", "libell_d_acheminement": "LE POIRE SUR VIE", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85178"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fe2228d86651e5d4e66f705ae170fbe3eb8cd3", "fields": {"nom_de_la_commune": "ST BENOIST SUR MER", "libell_d_acheminement": "ST BENOIST SUR MER", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85201"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b461268c8a576edf22e925187878d5cccf4213", "fields": {"nom_de_la_commune": "STE CECILE", "libell_d_acheminement": "STE CECILE", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85202"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e58898a351bb2c4173dea8a7bba655d2061caf", "fields": {"nom_de_la_commune": "ST CYR DES GATS", "libell_d_acheminement": "ST CYR DES GATS", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85205"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbbcbdd5a79bc6225f32c23818865f146298415", "fields": {"nom_de_la_commune": "ST DENIS DU PAYRE", "libell_d_acheminement": "ST DENIS DU PAYRE", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85207"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4701a0e775f94049b1fa0f933c7f0bf07072346b", "fields": {"nom_de_la_commune": "STE FLAIVE DES LOUPS", "libell_d_acheminement": "STE FLAIVE DES LOUPS", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85211"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6769a4d5e21647ad2733de8048905f9a3064e57", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85221"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63feb9868ba4e1e8d387530fce24ca6619db7011", "fields": {"nom_de_la_commune": "ST GILLES CROIX DE VIE", "libell_d_acheminement": "ST GILLES CROIX DE VIE", "code_postal": "85800", "coordonnees_gps": [46.6993264019, -1.89528926065], "code_commune_insee": "85222"}, "geometry": {"type": "Point", "coordinates": [-1.89528926065, 46.6993264019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c1e7cb865dc9f768a3487ae5ccafda2781b8c8", "fields": {"code_postal": "85270", "code_commune_insee": "85226", "libell_d_acheminement": "ST HILAIRE DE RIEZ", "ligne_5": "SION SUR L OCEAN", "nom_de_la_commune": "ST HILAIRE DE RIEZ", "coordonnees_gps": [46.7457643278, -1.94773887876]}, "geometry": {"type": "Point", "coordinates": [-1.94773887876, 46.7457643278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b51a0e411b24794f88138e06c8041bfa237b15", "fields": {"nom_de_la_commune": "ST HILAIRE DE VOUST", "libell_d_acheminement": "ST HILAIRE DE VOUST", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85229"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c5122f6ede34f36e82700fd81db9176c8b6aed", "fields": {"nom_de_la_commune": "ST MARS LA REORTHE", "libell_d_acheminement": "ST MARS LA REORTHE", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85242"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0330f11b5aa3ae311cb39149f65376653baba3", "fields": {"nom_de_la_commune": "ST MARTIN LARS EN STE HERMINE", "libell_d_acheminement": "ST MARTIN LARS EN STE HERMINE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85248"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354976227b3befc76da9504d26e8b313be5eeee2", "fields": {"nom_de_la_commune": "ST MATHURIN", "libell_d_acheminement": "ST MATHURIN", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85250"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7240235076a67950915bb517e1ec3df401126d0", "fields": {"nom_de_la_commune": "ST MAURICE DES NOUES", "libell_d_acheminement": "ST MAURICE DES NOUES", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85251"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d659f6344f4031a28aa1aaa945668677b9ae076", "fields": {"code_postal": "85540", "code_commune_insee": "85277", "libell_d_acheminement": "ST VINCENT SUR GRAON", "ligne_5": "ST SORNIN", "nom_de_la_commune": "ST VINCENT SUR GRAON", "coordonnees_gps": [46.4859713546, -1.38206083046]}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5bd0aac9c22468c4f9426a841db49e50a7182e", "fields": {"nom_de_la_commune": "SERIGNE", "libell_d_acheminement": "SERIGNE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85281"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce261a98b8fcd956e413524019a27405965085d", "fields": {"nom_de_la_commune": "LA TAILLEE", "libell_d_acheminement": "LA TAILLEE", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85286"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3ac370542640db000399d1a1346db1068db879", "fields": {"nom_de_la_commune": "LA TARDIERE", "libell_d_acheminement": "LA TARDIERE", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85289"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f50f6ebed8659fd0b0ca9755b413e53f602bfd", "fields": {"nom_de_la_commune": "THORIGNY", "libell_d_acheminement": "THORIGNY", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85291"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa524b6e808581bf9e80655830e209291dd5d4d1", "fields": {"nom_de_la_commune": "TREIZE VENTS", "libell_d_acheminement": "TREIZE VENTS", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85296"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e0a9abd5a8fbd70d595cca9244078753aec60", "fields": {"nom_de_la_commune": "VAIRE", "libell_d_acheminement": "VAIRE", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85298"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273b6c12f8e0af436efa1f0af12a8febf49b9e16", "fields": {"nom_de_la_commune": "VENDRENNES", "libell_d_acheminement": "VENDRENNES", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85301"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d5cc8cea462e8d70d5777ab5b6d68eae30b3f7", "fields": {"nom_de_la_commune": "VIX", "libell_d_acheminement": "VIX", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85303"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74709275e9a4c8bcf170aa84d4cd8f05be1c9068", "fields": {"nom_de_la_commune": "AMBERRE", "libell_d_acheminement": "AMBERRE", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86002"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1db27e5b0bdd1fb9042c1a23761282bb1c751b1", "fields": {"nom_de_la_commune": "ANGLES SUR L ANGLIN", "libell_d_acheminement": "ANGLES SUR L ANGLIN", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86004"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b549872ddebbff23fca8ed422c6a6828fc5b4e", "fields": {"nom_de_la_commune": "ANGLIERS", "libell_d_acheminement": "ANGLIERS", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86005"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c593bf9919699c589c2346ddf771443dda6312", "fields": {"nom_de_la_commune": "ARCHIGNY", "libell_d_acheminement": "ARCHIGNY", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86009"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80817516345eefa569eb50eed228765d4cb7496", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "86490", "coordonnees_gps": [46.761526271, 0.437525425166], "code_commune_insee": "86019"}, "geometry": {"type": "Point", "coordinates": [0.437525425166, 46.761526271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c35b6e52f2e8a564d1cad2a7f17c15c825cbf9", "fields": {"nom_de_la_commune": "BENASSAY", "libell_d_acheminement": "BENASSAY", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86021"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b63917db7c8b7e3fcc6270ddb52a2374eb2d0b2", "fields": {"nom_de_la_commune": "BIARD", "libell_d_acheminement": "BIARD", "code_postal": "86580", "coordonnees_gps": [46.580240949, 0.276027039382], "code_commune_insee": "86027"}, "geometry": {"type": "Point", "coordinates": [0.276027039382, 46.580240949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e58f172c24bc602efa27e64f38692c80dcb3363", "fields": {"nom_de_la_commune": "CENON SUR VIENNE", "libell_d_acheminement": "CENON SUR VIENNE", "code_postal": "86530", "coordonnees_gps": [46.7647730786, 0.524858476534], "code_commune_insee": "86046"}, "geometry": {"type": "Point", "coordinates": [0.524858476534, 46.7647730786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e414f662e0b4925500c05dd8408418589f0355", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86047"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df374792dabf7f205574cf364a6040f470800a81", "fields": {"nom_de_la_commune": "CHAMPAGNE ST HILAIRE", "libell_d_acheminement": "CHAMPAGNE ST HILAIRE", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86052"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15019adaa3e9f39b3c8eb2636c3209164dc14aba", "fields": {"nom_de_la_commune": "LA CHAPELLE MOULIERE", "libell_d_acheminement": "LA CHAPELLE MOULIERE", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86058"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e1ea99e0cfa1dcda9b6e4ec406c4532634349a", "fields": {"nom_de_la_commune": "CHENEVELLES", "libell_d_acheminement": "CHENEVELLES", "code_postal": "86450", "coordonnees_gps": [46.7433398222, 0.710148242539], "code_commune_insee": "86072"}, "geometry": {"type": "Point", "coordinates": [0.710148242539, 46.7433398222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71489c83f669b537c637bd2c299bc49766d09344", "fields": {"nom_de_la_commune": "CRAON", "libell_d_acheminement": "CRAON", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86087"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e2acc4fd69ae10ca66d168eecf5a55df7c331cc", "fields": {"nom_de_la_commune": "CURCAY SUR DIVE", "libell_d_acheminement": "CURCAY SUR DIVE", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86090"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df89aa8a443f027538b2db614e189dd7bb96ebe", "fields": {"nom_de_la_commune": "FLEURE", "libell_d_acheminement": "FLEURE", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86099"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6f50110fe8f0d133a299095412c410ce70c1e5", "fields": {"nom_de_la_commune": "GIZAY", "libell_d_acheminement": "GIZAY", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86105"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40570f400ec4d4f4d7553e18e4a19bc10e764b4e", "fields": {"nom_de_la_commune": "GOUEX", "libell_d_acheminement": "GOUEX", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86107"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff395801f87d570a6e333c844169516c446a365e", "fields": {"nom_de_la_commune": "LA GRIMAUDIERE", "libell_d_acheminement": "LA GRIMAUDIERE", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86108"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062c1e9979143d8ff8f922c905d60699fb26d0d2", "fields": {"nom_de_la_commune": "GUESNES", "libell_d_acheminement": "GUESNES", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86109"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dbafd654ebe0c0bcf1d6b9724ca586cf97714ed", "fields": {"nom_de_la_commune": "L ISLE JOURDAIN", "libell_d_acheminement": "L ISLE JOURDAIN", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86112"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ad0983132f8a845435cf270a10b12e7b2fe2c2", "fields": {"nom_de_la_commune": "LAVAUSSEAU", "libell_d_acheminement": "LAVAUSSEAU", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86123"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af22b29b47dbbd427957bc24eb696e63294ce715", "fields": {"nom_de_la_commune": "LEIGNE LES BOIS", "libell_d_acheminement": "LEIGNE LES BOIS", "code_postal": "86450", "coordonnees_gps": [46.7433398222, 0.710148242539], "code_commune_insee": "86125"}, "geometry": {"type": "Point", "coordinates": [0.710148242539, 46.7433398222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f198d39d9988ffb81cd983474dd32fb08d0faf59", "fields": {"nom_de_la_commune": "LHOMMAIZE", "libell_d_acheminement": "LHOMMAIZE", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86131"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ba610da87b6e5353014d8545ff09c03945db479", "fields": {"nom_de_la_commune": "LIGLET", "libell_d_acheminement": "LIGLET", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86132"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806b6559b8f2eed2067d0630f19440697ae7f426", "fields": {"nom_de_la_commune": "LINAZAY", "libell_d_acheminement": "LINAZAY", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86134"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d266f41522814fd7d4f1d3756ce18c82f8ef1ac7", "fields": {"nom_de_la_commune": "LINIERS", "libell_d_acheminement": "LINIERS", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86135"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799de9d204a4e27ac58b1e037cd354bb27560992", "fields": {"nom_de_la_commune": "LUCHAPT", "libell_d_acheminement": "LUCHAPT", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86138"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac59fa94b78bb662097623d44128075937c5085", "fields": {"nom_de_la_commune": "MAILLE", "libell_d_acheminement": "MAILLE", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86142"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685f231f15487122f227d2ad6ed835855c7f49ec", "fields": {"nom_de_la_commune": "MARNAY", "libell_d_acheminement": "MARNAY", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86148"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9c981382c461efca1201f714c98fbac89aa71a", "fields": {"nom_de_la_commune": "MARTAIZE", "libell_d_acheminement": "MARTAIZE", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86149"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcdfff7d3ab784e5ba53471490538a46f10574b", "fields": {"code_postal": "86330", "code_commune_insee": "86161", "libell_d_acheminement": "MONCONTOUR", "ligne_5": "MESSAIS", "nom_de_la_commune": "MONCONTOUR", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb032052586b706d9ac2394858067c61e0da53a", "fields": {"code_postal": "86330", "code_commune_insee": "86161", "libell_d_acheminement": "MONCONTOUR", "ligne_5": "OUZILLY VIGNOLLES", "nom_de_la_commune": "MONCONTOUR", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598d1cb82bb2a4dd9f4079186618e9056325a76c", "fields": {"code_postal": "86330", "code_commune_insee": "86161", "libell_d_acheminement": "MONCONTOUR", "ligne_5": "ST CHARTRES", "nom_de_la_commune": "MONCONTOUR", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6849b17417669887edd6899374259a26b4d3fdd3", "fields": {"nom_de_la_commune": "MONDION", "libell_d_acheminement": "MONDION", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86162"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69558a0dd51b8f68fa6cb6fa202a39e4f7a883d7", "fields": {"nom_de_la_commune": "MONTMORILLON", "libell_d_acheminement": "MONTMORILLON", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86165"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c6065f7ee3c91b6026833c75704b9ea66f33490", "fields": {"nom_de_la_commune": "MORTON", "libell_d_acheminement": "MORTON", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86169"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d167eb2d07c89ffa98afde547332ce4464f3e85f", "fields": {"nom_de_la_commune": "MOUSSAC", "libell_d_acheminement": "MOUSSAC", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86171"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ea6844ec91a53cc0440de0e3922aac367ebbf8", "fields": {"nom_de_la_commune": "NERIGNAC", "libell_d_acheminement": "NERIGNAC", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86176"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab5136c39d75af41599ecc43b9d04e134950e23", "fields": {"nom_de_la_commune": "NUEIL SOUS FAYE", "libell_d_acheminement": "NUEIL SOUS FAYE", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86181"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1f765dc9e1732096b75ec0780f5ad11134acd0", "fields": {"nom_de_la_commune": "PAYRE", "libell_d_acheminement": "PAYRE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86188"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b33f65d46d3c0b64220a1c4f12fbbc984f60eba1", "fields": {"nom_de_la_commune": "PERSAC", "libell_d_acheminement": "PERSAC", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86190"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc5b17765531b599ff6bad4df6d1bdfd458ce93", "fields": {"nom_de_la_commune": "POITIERS", "libell_d_acheminement": "POITIERS", "code_postal": "86000", "coordonnees_gps": [46.5833929687, 0.359226445482], "code_commune_insee": "86194"}, "geometry": {"type": "Point", "coordinates": [0.359226445482, 46.5833929687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb217a8d4dfc44febe23093d96291f2fba9910ca", "fields": {"nom_de_la_commune": "AILLIANVILLE", "libell_d_acheminement": "AILLIANVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52003"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4cdf83d1c46f439aa626070b9e301f1054b07d6", "fields": {"nom_de_la_commune": "ALLICHAMPS", "libell_d_acheminement": "ALLICHAMPS", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52006"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6241f20799b2d3c5f0c1a166a16b1354d3911e42", "fields": {"code_postal": "52700", "code_commune_insee": "52008", "libell_d_acheminement": "ANDELOT BLANCHEVILLE", "ligne_5": "BLANCHEVILLE", "nom_de_la_commune": "ANDELOT BLANCHEVILLE", "coordonnees_gps": [48.2458514312, 5.38109938015]}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30b9c57b3436aab8c93678cfd2178510008e8b7", "fields": {"nom_de_la_commune": "ANROSEY", "libell_d_acheminement": "ANROSEY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52013"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cf5c359f2ff28428337e76194b3aaf16d6e359", "fields": {"nom_de_la_commune": "ARBIGNY SOUS VARENNES", "libell_d_acheminement": "ARBIGNY SOUS VARENNES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52015"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437df0c7860a39febeda2c249e78ad26fd2981a5", "fields": {"nom_de_la_commune": "ARNANCOURT", "libell_d_acheminement": "ARNANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52019"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33818b702485760918a9b67b58bb7d492c69bd27", "fields": {"nom_de_la_commune": "AUTIGNY LE GRAND", "libell_d_acheminement": "AUTIGNY LE GRAND", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52029"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f232457697b6c329e7d23696f07dcb3459e4367b", "fields": {"nom_de_la_commune": "AVRECOURT", "libell_d_acheminement": "AVRECOURT", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52033"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c23954229668e968ca561124aa8b44864a3924f0", "fields": {"nom_de_la_commune": "BEAUCHEMIN", "libell_d_acheminement": "BEAUCHEMIN", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52042"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68942b3b1dc45c30b086a4e2be392c003d2c101", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52043"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a896946e9f9d0a1459fdaba1d08d7c1df79f8d35", "fields": {"nom_de_la_commune": "ROCHES BETTAINCOURT", "libell_d_acheminement": "ROCHES BETTAINCOURT", "code_postal": "52270", "coordonnees_gps": [48.329589946, 5.25765158251], "code_commune_insee": "52044"}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2388b413aff3754d6ba2607cf9b24da7d8ba80a9", "fields": {"code_postal": "52340", "code_commune_insee": "52050", "libell_d_acheminement": "BIESLES", "ligne_5": "LE PUITS DES MEZES", "nom_de_la_commune": "BIESLES", "coordonnees_gps": [48.1142571752, 5.32025976914]}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69ec92af295431f4b435286dfb55f04ed73f60f", "fields": {"nom_de_la_commune": "BLESSONVILLE", "libell_d_acheminement": "BLESSONVILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52056"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92037053dfc079fd56642d22f306f9417e9bdeb5", "fields": {"nom_de_la_commune": "BLUMERAY", "libell_d_acheminement": "BLUMERAY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52057"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7da047caaa5fefb677e4778eb04065e1702539", "fields": {"nom_de_la_commune": "BOURBONNE LES BAINS", "libell_d_acheminement": "BOURBONNE LES BAINS", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52060"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b635e3497e481beafa89e41bfc4c24bd4aaada", "fields": {"nom_de_la_commune": "BOURMONT", "libell_d_acheminement": "BOURMONT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52064"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc3496ac26b47129ff99893a9e91d7cb20f4450", "fields": {"code_postal": "52150", "code_commune_insee": "52064", "libell_d_acheminement": "BOURMONT", "ligne_5": "GONAINCOURT", "nom_de_la_commune": "BOURMONT", "coordonnees_gps": [48.1917177947, 5.60510608882]}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0908ea19af8912764f5df9d97d63c2716c5a5833", "fields": {"nom_de_la_commune": "BREUVANNES EN BASSIGNY", "libell_d_acheminement": "BREUVANNES EN BASSIGNY", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52074"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c86ec663b37b565100a365189a31f2d899d621f", "fields": {"nom_de_la_commune": "BRIAUCOURT", "libell_d_acheminement": "BRIAUCOURT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52075"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d85d56aa95b29265f663fbce9f317b8a7f946a", "fields": {"nom_de_la_commune": "BUGNIERES", "libell_d_acheminement": "BUGNIERES", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52082"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac51478af6dd6402dc4b600d0a972270af7c4c9f", "fields": {"code_postal": "52500", "code_commune_insee": "52083", "libell_d_acheminement": "CHAMPSEVRAINE", "ligne_5": "BUSSIERES LES BELMONT", "nom_de_la_commune": "CHAMPSEVRAINE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802837687dd1e2833befcc0fc79a65a639aa7c35", "fields": {"nom_de_la_commune": "CELSOY", "libell_d_acheminement": "CELSOY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52090"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30adffd2f54364f10e99ea6c8bb058d37cd582c2", "fields": {"nom_de_la_commune": "CERISIERES", "libell_d_acheminement": "CERISIERES", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52091"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad914bffa6b42de0670cf7e9376e93e57a808610", "fields": {"nom_de_la_commune": "VALS DES TILLES", "libell_d_acheminement": "VALS DES TILLES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52094"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a0f1b75b27c32268b37ea0bde5058716fa71d3", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "LAMARGELLE AUX BOIS", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9305b3c23a5a33d164f9804af87bbb1f9675af", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "MUSSEAU", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6132b8d27d33a381c3a8646560ce6fa8ced551e", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "VILLEMORON", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbc71ab0044cb4fd27b2df01cd1ac027f533b9e", "fields": {"nom_de_la_commune": "CHARMES EN L ANGLE", "libell_d_acheminement": "CHARMES EN L ANGLE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52109"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a11356a2e270edfc6703bb8e8b41a86c381f99", "fields": {"nom_de_la_commune": "CHATENAY MACHERON", "libell_d_acheminement": "CHATENAY MACHERON", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52115"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934ed3381610c18f2b47e8aff6d80ac705400330", "fields": {"nom_de_la_commune": "CHAMARANDES CHOIGNES", "libell_d_acheminement": "CHAMARANDES CHOIGNES", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52125"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7071a987c89cf7be1a8033a1ac59bb65ecf6890", "fields": {"nom_de_la_commune": "CIRFONTAINES EN ORNOIS", "libell_d_acheminement": "CIRFONTAINES EN ORNOIS", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52131"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06792fba19898a6d64a323bbfe132d2d7d23fadd", "fields": {"nom_de_la_commune": "COLMIER LE BAS", "libell_d_acheminement": "COLMIER LE BAS", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52137"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba80b4e5959b81b7b90396fb1e8b7a6a9ce02fa", "fields": {"nom_de_la_commune": "COLMIER LE HAUT", "libell_d_acheminement": "COLMIER LE HAUT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52138"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7b45b0318833489ff47779b8591e8b6475f69b", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "LAVILLENEUVE AUX FRESNES", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaf70979c51d717ded130070ad2b66b5d435c78", "fields": {"nom_de_la_commune": "CONDES", "libell_d_acheminement": "CONDES", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52141"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f878651019d92ea132bdbfff88c5a466a1f029f", "fields": {"nom_de_la_commune": "COUBLANC", "libell_d_acheminement": "COUBLANC", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52145"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8daa1975e01eff7430707407fd1884ba750b6a", "fields": {"nom_de_la_commune": "COURCELLES SUR BLAISE", "libell_d_acheminement": "COURCELLES SUR BLAISE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52149"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c10847a556ce77b492db1529abb6886cafdfb36", "fields": {"nom_de_la_commune": "CUVES", "libell_d_acheminement": "CUVES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52159"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8804564c27658760170010bf1e966f3a2d8383e", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52163"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a38fafd0734f022263aef5dc3ae5f1f626fce6", "fields": {"nom_de_la_commune": "DOMBLAIN", "libell_d_acheminement": "DOMBLAIN", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52169"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d02f45351e67546beca6e38cac18d255e27540", "fields": {"nom_de_la_commune": "DOMMARTIN LE ST PERE", "libell_d_acheminement": "DOMMARTIN LE ST PERE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52172"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f723e9fbc4c4bfee1f5e0cbaea912a86445dde9c", "fields": {"nom_de_la_commune": "DOULEVANT LE CHATEAU", "libell_d_acheminement": "DOULEVANT LE CHATEAU", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52178"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de2c01dc492a61dc2de41c3f0876b288f074773", "fields": {"nom_de_la_commune": "ECHENAY", "libell_d_acheminement": "ECHENAY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52181"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ba48d9c2f1f906285e0e68f196b475bd20f686", "fields": {"nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", "libell_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", "code_postal": "52290", "coordonnees_gps": [48.5761520145, 4.85527369999], "code_commune_insee": "52182"}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800c7f7389275ee3872b87b1db12d23c2ea3cba2", "fields": {"code_postal": "52190", "code_commune_insee": "52189", "libell_d_acheminement": "LE VAL D ESNOMS", "ligne_5": "COURCELLES VAL D ESNOMS", "nom_de_la_commune": "LE VAL D ESNOMS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35bde9862c1c0faa2237b84c8f39596bcdc2cf1", "fields": {"nom_de_la_commune": "ESNOUVEAUX", "libell_d_acheminement": "ESNOUVEAUX", "code_postal": "52340", "coordonnees_gps": [48.1142571752, 5.32025976914], "code_commune_insee": "52190"}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1641eb4602d7d5e04cdd47937c962859a2d4c3f1", "fields": {"code_postal": "52410", "code_commune_insee": "52194", "libell_d_acheminement": "EURVILLE BIENVILLE", "ligne_5": "BIENVILLE", "nom_de_la_commune": "EURVILLE BIENVILLE", "coordonnees_gps": [48.5892998637, 5.03091312346]}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b57463052a57c61d0a165b35b995486532fd67", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52196"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af6f6231c8e47aeb989d757859a72cac6c14c82", "fields": {"nom_de_la_commune": "FLAMMERECOURT", "libell_d_acheminement": "FLAMMERECOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52201"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862f11fbc5d68eba83cad3acdc8c7f212b5cea44", "fields": {"code_postal": "52000", "code_commune_insee": "52205", "libell_d_acheminement": "FOULAIN", "ligne_5": "CRENAY", "nom_de_la_commune": "FOULAIN", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7073ef0dfc6f218313309384ea39d094aed16254", "fields": {"nom_de_la_commune": "FRESNES SUR APANCE", "libell_d_acheminement": "FRESNES SUR APANCE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52208"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95e847a39e09bdf39bb944993058996e667e4de", "fields": {"nom_de_la_commune": "FRONCLES", "libell_d_acheminement": "FRONCLES", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52211"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c502ebeeb91c978a14292cda5a804b40c31941", "fields": {"nom_de_la_commune": "GERMISAY", "libell_d_acheminement": "GERMISAY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52219"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c76d04b310f710a67c519bc3b5bde466e956dc", "fields": {"nom_de_la_commune": "GONCOURT", "libell_d_acheminement": "GONCOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52225"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51c51d57716629b543481b67efd5971c88c95c2", "fields": {"nom_de_la_commune": "GUINDRECOURT SUR BLAISE", "libell_d_acheminement": "GUINDRECOURT SUR BLAISE", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52232"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d2f11fc3930f81128021ce58b033c9663aed66", "fields": {"nom_de_la_commune": "GUYONVELLE", "libell_d_acheminement": "GUYONVELLE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52233"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abb3f6f6f6a95316fdb64102a43e639cc6d4f06", "fields": {"nom_de_la_commune": "HACOURT", "libell_d_acheminement": "HACOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52234"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f53e676cb17ea41faf771092aeb63550d2b2704", "fields": {"nom_de_la_commune": "HARREVILLE LES CHANTEURS", "libell_d_acheminement": "HARREVILLE LES CHANTEURS", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52237"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4a472db7854aab5928645bc6a71b42225a5de6", "fields": {"nom_de_la_commune": "HAUTE AMANCE", "libell_d_acheminement": "HAUTE AMANCE", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52242"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f02086dc1f8d8087d589180b9927c9f1716466", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "MONTLANDON", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8104ccdbbce4550e174f3ee27e0d8d0b05446a", "fields": {"nom_de_la_commune": "HUMBERVILLE", "libell_d_acheminement": "HUMBERVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52245"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86b1d49725bd798d82a15ad7d9a3a7933a32b33", "fields": {"code_postal": "52000", "code_commune_insee": "52251", "libell_d_acheminement": "JONCHERY", "ligne_5": "LAHARMAND", "nom_de_la_commune": "JONCHERY", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2342351986e41227ac637c2fabce6739f911c8f3", "fields": {"nom_de_la_commune": "LACHAPELLE EN BLAISY", "libell_d_acheminement": "LACHAPELLE EN BLAISY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52254"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d75a1c2018a1931d9ded04d144da279d300d8c6", "fields": {"nom_de_la_commune": "LANEUVELLE", "libell_d_acheminement": "LANEUVELLE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52264"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13880b0f02b8921160924dc6227d6fc682072e1b", "fields": {"code_postal": "52170", "code_commune_insee": "52265", "libell_d_acheminement": "BAYARD SUR MARNE", "ligne_5": "LANEUVILLE A BAYARD", "nom_de_la_commune": "BAYARD SUR MARNE", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1e689385a1b63a4ecb0ba7a76e7b768e78551f", "fields": {"nom_de_la_commune": "LARIVIERE ARNONCOURT", "libell_d_acheminement": "LARIVIERE ARNONCOURT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52273"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b176babbc866b11125dc476776740c5cd0adbe8c", "fields": {"code_postal": "52400", "code_commune_insee": "52273", "libell_d_acheminement": "LARIVIERE ARNONCOURT", "ligne_5": "ARNONCOURT SUR APANCE", "nom_de_la_commune": "LARIVIERE ARNONCOURT", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf04ce0c4f2ad25e1e5540cbc5560cfc3502524", "fields": {"code_postal": "52120", "code_commune_insee": "52274", "libell_d_acheminement": "LATRECEY ORMOY SUR AUBE", "ligne_5": "ORMOY SUR AUBE", "nom_de_la_commune": "LATRECEY ORMOY SUR AUBE", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb3a734860d43de5ee8a74a2408ae73e8297c7f", "fields": {"nom_de_la_commune": "LECEY", "libell_d_acheminement": "LECEY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52280"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f08426b262ec1caba42edf92e9ffd47711cb05", "fields": {"nom_de_la_commune": "LEURVILLE", "libell_d_acheminement": "LEURVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52286"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933568a2a0dd93af9226bf88094b62da84a9ab0d", "fields": {"code_postal": "52230", "code_commune_insee": "52288", "libell_d_acheminement": "LEZEVILLE", "ligne_5": "LANEUVILLE AU BOIS", "nom_de_la_commune": "LEZEVILLE", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cde8bb8fdd46c41a95fe08a8b5ff7f738edc64", "fields": {"nom_de_la_commune": "LIFFOL LE PETIT", "libell_d_acheminement": "LIFFOL LE PETIT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52289"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74d9b02b027dab647e81a6fd9bcc68683b5b4cf", "fields": {"nom_de_la_commune": "LOUVEMONT", "libell_d_acheminement": "LOUVEMONT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52294"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2b6242a2a914c12a6415b543b80cd6e7c1a4a8", "fields": {"nom_de_la_commune": "MANOIS", "libell_d_acheminement": "MANOIS", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52306"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f214d8d61e3b992dcf5a8baf735f98263af9c4", "fields": {"nom_de_la_commune": "MAREILLES", "libell_d_acheminement": "MAREILLES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52313"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bac36d2cc4a7303655a9fb093c065140d06b528", "fields": {"nom_de_la_commune": "MELAY", "libell_d_acheminement": "MELAY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52318"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5606f40692e623855ac14f12d720acaaafad1e", "fields": {"nom_de_la_commune": "MOESLAINS", "libell_d_acheminement": "MOESLAINS", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52327"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6115bce8fcad27241dcc07a0dd08bb4ef8c0b049", "fields": {"code_postal": "52220", "code_commune_insee": "52331", "libell_d_acheminement": "LA PORTE DU DER", "ligne_5": "ROBERT MAGNY", "nom_de_la_commune": "LA PORTE DU DER", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320b2c1787dddcb7c8d7d006b712d989651c744e", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "RECOURT", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d008f24a4be7a9573ffebaca5aa07d47b2fefe93", "fields": {"nom_de_la_commune": "MONTOT SUR ROGNON", "libell_d_acheminement": "MONTOT SUR ROGNON", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52335"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0cb8b81f56ff0c6aacf07cb193dcd736fbcfe15", "fields": {"nom_de_la_commune": "MOUILLERON", "libell_d_acheminement": "MOUILLERON", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52344"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77478041ba040261839a4f8c7c04a52c63eb780f", "fields": {"nom_de_la_commune": "NARCY", "libell_d_acheminement": "NARCY", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52347"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c8b0193ebd025e0beb5719071df1187c2e6e0f", "fields": {"nom_de_la_commune": "NEUILLY SUR SUIZE", "libell_d_acheminement": "NEUILLY SUR SUIZE", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52349"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208f38d0dbd034140547a572e7f9aa5a4df4b390", "fields": {"nom_de_la_commune": "NEUVELLE LES VOISEY", "libell_d_acheminement": "NEUVELLE LES VOISEY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52350"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de2b6543518a65abfdf1a983c0777f3e6052f0e", "fields": {"nom_de_la_commune": "NOIDANT LE ROCHEUX", "libell_d_acheminement": "NOIDANT LE ROCHEUX", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52355"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b919c417ad9955ef99804d2359432872cfc8534a", "fields": {"nom_de_la_commune": "ORBIGNY AU MONT", "libell_d_acheminement": "ORBIGNY AU MONT", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52362"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e539903c55d405b039acee3a39c9cef4ddfe475", "fields": {"nom_de_la_commune": "ORGES", "libell_d_acheminement": "ORGES", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52365"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5808b01c1374ea4c30b7878c343a359168aa2a1c", "fields": {"nom_de_la_commune": "PANSEY", "libell_d_acheminement": "PANSEY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52376"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84edce6a885d378c5b942f466ad0ca54d21a525", "fields": {"code_postal": "52400", "code_commune_insee": "52377", "libell_d_acheminement": "PARNOY EN BASSIGNY", "ligne_5": "FRESNOY EN BASSIGNY", "nom_de_la_commune": "PARNOY EN BASSIGNY", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf1caf93b3ca92afd8249ada14a1621417cacad", "fields": {"code_postal": "52400", "code_commune_insee": "52377", "libell_d_acheminement": "PARNOY EN BASSIGNY", "ligne_5": "PARNOT", "nom_de_la_commune": "PARNOY EN BASSIGNY", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f24ae383c4010be19c82ec9a2561ea9b1e9147", "fields": {"nom_de_la_commune": "PERROGNEY LES FONTAINES", "libell_d_acheminement": "PERROGNEY LES FONTAINES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52384"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd63f04457ab70613169a98a64caa23031c571c", "fields": {"code_postal": "52160", "code_commune_insee": "52384", "libell_d_acheminement": "PERROGNEY LES FONTAINES", "ligne_5": "PIERREFONTAINES", "nom_de_la_commune": "PERROGNEY LES FONTAINES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1952aa402cc136143e546fdbbfdc12a396c78e5", "fields": {"nom_de_la_commune": "PERRUSSE", "libell_d_acheminement": "PERRUSSE", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52385"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722159c1d5b491d82027d4b0ab72e7af2e483c14", "fields": {"nom_de_la_commune": "POINSON LES FAYL", "libell_d_acheminement": "POINSON LES FAYL", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52394"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8065c3b616bb140ac5fe0c20c3c3d35af9684bdd", "fields": {"nom_de_la_commune": "POINSON LES GRANCEY", "libell_d_acheminement": "POINSON LES GRANCEY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52395"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c8285bc901af194ca71fadc04128824aa593e9", "fields": {"nom_de_la_commune": "POINSON LES NOGENT", "libell_d_acheminement": "POINSON LES NOGENT", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52396"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79af6a9eb05516775a4a436fb3db64402d2840d", "fields": {"nom_de_la_commune": "POISSONS", "libell_d_acheminement": "POISSONS", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52398"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6650cf203c316df4882cd955c17a4e24cf664825", "fields": {"code_postal": "52400", "code_commune_insee": "52400", "libell_d_acheminement": "LE CHATELET SUR MEUSE", "ligne_5": "BEAUCHARMOY", "nom_de_la_commune": "LE CHATELET SUR MEUSE", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c23d376b0627ac75a4a2367099f36fef920efff", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "LOUZE", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5cfe0b88d90167917d78743e85d1dc77b98fea", "fields": {"nom_de_la_commune": "RIVIERES LE BOIS", "libell_d_acheminement": "RIVIERES LE BOIS", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52424"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a16b9f2e5e116173e7488509ce3270a89cd5fc7", "fields": {"nom_de_la_commune": "OLONNE SUR MER", "libell_d_acheminement": "OLONNE SUR MER", "code_postal": "85340", "coordonnees_gps": [46.5499182477, -1.78394732739], "code_commune_insee": "85166"}, "geometry": {"type": "Point", "coordinates": [-1.78394732739, 46.5499182477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57fc6cf13a3d640af2e36ca81ae3aa4d8a6224f", "fields": {"nom_de_la_commune": "OULMES", "libell_d_acheminement": "OULMES", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85168"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3cd556b389028663fb3602676d94aba90ab0a0", "fields": {"nom_de_la_commune": "LE PERRIER", "libell_d_acheminement": "LE PERRIER", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85172"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07d501bee8767d1f6dd733996fd4439999ad6f1", "fields": {"nom_de_la_commune": "POUILLE", "libell_d_acheminement": "POUILLE", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85181"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e9b22a968288f8847bc83d92e4317db82c005b", "fields": {"nom_de_la_commune": "ROCHESERVIERE", "libell_d_acheminement": "ROCHESERVIERE", "code_postal": "85620", "coordonnees_gps": [46.9264110478, -1.50081644431], "code_commune_insee": "85190"}, "geometry": {"type": "Point", "coordinates": [-1.50081644431, 46.9264110478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cac52f142f1b17bd2c9cb13020f9d70f992f0c8", "fields": {"code_postal": "85260", "code_commune_insee": "85197", "libell_d_acheminement": "MONTREVERD", "ligne_5": "ST ANDRE TREIZE VOIES", "nom_de_la_commune": "MONTREVERD", "coordonnees_gps": [46.8968914818, -1.35853673733]}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc63a2cf217bc75e7b28ddb8a631220a72f457b", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU LIGNERON", "libell_d_acheminement": "ST CHRISTOPHE DU LIGNERON", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85204"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a920a513a9fee2e7de6876dd0c1bc978151b359", "fields": {"nom_de_la_commune": "ST CYR EN TALMONDAIS", "libell_d_acheminement": "ST CYR EN TALMONDAIS", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85206"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0afb22e0835e74c251b1b9cc99f6f9505e5fec0d", "fields": {"nom_de_la_commune": "STE GEMME LA PLAINE", "libell_d_acheminement": "STE GEMME LA PLAINE", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85216"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0620a4a735584d336561f202a1821f2736f08bd2", "fields": {"nom_de_la_commune": "ST JEAN DE BEUGNE", "libell_d_acheminement": "ST JEAN DE BEUGNE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85233"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fdf84183ba0f57e177af8bc778cd557a0ec5152", "fields": {"nom_de_la_commune": "ST JEAN DE MONTS", "libell_d_acheminement": "ST JEAN DE MONTS", "code_postal": "85160", "coordonnees_gps": [46.8019325968, -2.04782983324], "code_commune_insee": "85234"}, "geometry": {"type": "Point", "coordinates": [-2.04782983324, 46.8019325968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693e44e4baa9dea2be1a67ac11fd885b6dfaa19c", "fields": {"nom_de_la_commune": "ST LAURENT DE LA SALLE", "libell_d_acheminement": "ST LAURENT DE LA SALLE", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85237"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a0783bdbb27015f37a64ee1e2f3350411dd3b6", "fields": {"nom_de_la_commune": "ST MAIXENT SUR VIE", "libell_d_acheminement": "ST MAIXENT SUR VIE", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85239"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791e077d85b405a537cacef3dead1f9ad246f788", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85254"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592047e0fe2474b953c333ef5f149847412ae1b5", "fields": {"nom_de_la_commune": "ST PIERRE DU CHEMIN", "libell_d_acheminement": "ST PIERRE DU CHEMIN", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85264"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd88925217c60e3b47cd0459579a63ff43f1a57", "fields": {"nom_de_la_commune": "ST VALERIEN", "libell_d_acheminement": "ST VALERIEN", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85274"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd95d124dfda65df74f9925377f3e800085da6db", "fields": {"nom_de_la_commune": "TALMONT ST HILAIRE", "libell_d_acheminement": "TALMONT ST HILAIRE", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85288"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba2665cfe933478327792ea3fed3e28c954a8a0", "fields": {"code_postal": "85440", "code_commune_insee": "85288", "libell_d_acheminement": "TALMONT ST HILAIRE", "ligne_5": "ST HILAIRE DE TALMONT", "nom_de_la_commune": "TALMONT ST HILAIRE", "coordonnees_gps": [46.491465438, -1.58784266413]}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414275ca6a804f7459bcb29ebcddde2f751afa78", "fields": {"nom_de_la_commune": "LA TRANCHE SUR MER", "libell_d_acheminement": "LA TRANCHE SUR MER", "code_postal": "85360", "coordonnees_gps": [46.3564248378, -1.43105723636], "code_commune_insee": "85294"}, "geometry": {"type": "Point", "coordinates": [-1.43105723636, 46.3564248378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300bb9ad922578598e74d435a5aff129beceb3c5", "fields": {"nom_de_la_commune": "TREIZE SEPTIERS", "libell_d_acheminement": "TREIZE SEPTIERS", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85295"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c9cf07a5acc6b5cef49a840dd63882d203f866", "fields": {"nom_de_la_commune": "LA FAUTE SUR MER", "libell_d_acheminement": "LA FAUTE SUR MER", "code_postal": "85460", "coordonnees_gps": [46.3131819817, -1.28712096962], "code_commune_insee": "85307"}, "geometry": {"type": "Point", "coordinates": [-1.28712096962, 46.3131819817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38a191136160d2dbf6206d09571b84f84d5a07e", "fields": {"nom_de_la_commune": "ANCHE", "libell_d_acheminement": "ANCHE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86003"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9962117c75bc5ba89da2679a57849223afad771f", "fields": {"nom_de_la_commune": "AYRON", "libell_d_acheminement": "AYRON", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86017"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9be6b029a91dd571c3aa1b2248dd05c84c2cb50", "fields": {"nom_de_la_commune": "BERRIE", "libell_d_acheminement": "BERRIE", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86022"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9de030613e498a7c8a82c175f27cbe74e752b5", "fields": {"nom_de_la_commune": "BETHINES", "libell_d_acheminement": "BETHINES", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86025"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7656ed63e413747a97e9d476fb0a492cd38ca479", "fields": {"nom_de_la_commune": "BIGNOUX", "libell_d_acheminement": "BIGNOUX", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86028"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac65ca1d4a92de48e58ad23eaa91ebeb74ae42b3", "fields": {"nom_de_la_commune": "BUXEUIL", "libell_d_acheminement": "BUXEUIL", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "86042"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c513b3689883be2d4f25208302583c1adf9e79ad", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86049"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3331404e73aebb3412e462afca15af3b45479cdb", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTREUIL", "libell_d_acheminement": "LA CHAPELLE MONTREUIL", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86056"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5c27534b91bc5b5e99ebe100183d2a67aa70e4", "fields": {"nom_de_la_commune": "CHARRAIS", "libell_d_acheminement": "CHARRAIS", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86060"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4866c9bff4e9cb408b11344e627858e1b26d139", "fields": {"nom_de_la_commune": "CHAUNAY", "libell_d_acheminement": "CHAUNAY", "code_postal": "86510", "coordonnees_gps": [46.2231732444, 0.176181727921], "code_commune_insee": "86068"}, "geometry": {"type": "Point", "coordinates": [0.176181727921, 46.2231732444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eef3d334ce4eaa6e677c075507ee8bc02ed8b06", "fields": {"nom_de_la_commune": "LA CHAUSSEE", "libell_d_acheminement": "LA CHAUSSEE", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86069"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b570977cb0ea5a89724ffcab41c899b1f168de27", "fields": {"nom_de_la_commune": "CHENECHE", "libell_d_acheminement": "CHENECHE", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86071"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f524f137700e45fe9e88a321498cefdab8e27a9", "fields": {"nom_de_la_commune": "CHOUPPES", "libell_d_acheminement": "CHOUPPES", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86075"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac2d5969f2bcbc730aaf7c4462c90427b5a5525", "fields": {"nom_de_la_commune": "CIVRAY", "libell_d_acheminement": "CIVRAY", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86078"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c3f985b0dbd435e38a8a2baf36a9f2dfd4df05", "fields": {"code_postal": "86200", "code_commune_insee": "86079", "libell_d_acheminement": "LA ROCHE RIGAULT", "ligne_5": "LE BOUCHET", "nom_de_la_commune": "LA ROCHE RIGAULT", "coordonnees_gps": [46.998807994, 0.139457341652]}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed68ed1e8c3db3ee82e987153e1f86b8244b4d9b", "fields": {"nom_de_la_commune": "COUHE", "libell_d_acheminement": "COUHE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86082"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dda34a50b17a39a88ccb8a63968c71acfc2c0e2", "fields": {"nom_de_la_commune": "DANGE ST ROMAIN", "libell_d_acheminement": "DANGE ST ROMAIN", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86092"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a99aa2146f960bf7524759a4c1628a18d769377", "fields": {"nom_de_la_commune": "DIENNE", "libell_d_acheminement": "DIENNE", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86094"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e9e84b8e62f858de45b4953bb66e8ec04a6d8d", "fields": {"nom_de_la_commune": "DOUSSAY", "libell_d_acheminement": "DOUSSAY", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86096"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb95d7f3a6ba8c86ef4f6ce4b18b473aa21494a", "fields": {"nom_de_la_commune": "LA FERRIERE AIROUX", "libell_d_acheminement": "LA FERRIERE AIROUX", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86097"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55eb89a4d3544ece8f2c5b9e6e1a284559a3d134", "fields": {"nom_de_la_commune": "FLEIX", "libell_d_acheminement": "FLEIX", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86098"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186109e98c08b130470768227849f763c7148c45", "fields": {"nom_de_la_commune": "FONTAINE LE COMTE", "libell_d_acheminement": "FONTAINE LE COMTE", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86100"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56e516cb74a7f44547f83271619ec951d491b99", "fields": {"nom_de_la_commune": "FROZES", "libell_d_acheminement": "FROZES", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86102"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ea71f3f65e3263b71b70f85354cec9cf468587", "fields": {"nom_de_la_commune": "GENCAY", "libell_d_acheminement": "GENCAY", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86103"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005ff55edc18e365f1475fc39d5d13df61bf26c8", "fields": {"code_postal": "86390", "code_commune_insee": "86120", "libell_d_acheminement": "LATHUS ST REMY", "ligne_5": "ST REMY EN MONTMORILLON", "nom_de_la_commune": "LATHUS ST REMY", "coordonnees_gps": [46.3309224625, 0.955276450825]}, "geometry": {"type": "Point", "coordinates": [0.955276450825, 46.3309224625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e277d3e63a0657434130bbb013b4744ad5d2a08", "fields": {"nom_de_la_commune": "LAUTHIERS", "libell_d_acheminement": "LAUTHIERS", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86122"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f2fa51105847577237f5b27f5fe2a20eaf2ef7", "fields": {"nom_de_la_commune": "LEIGNES SUR FONTAINE", "libell_d_acheminement": "LEIGNES SUR FONTAINE", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86126"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8157aee76a98ba8ec7327733bfb22d803db072", "fields": {"nom_de_la_commune": "LIZANT", "libell_d_acheminement": "LIZANT", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86136"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a131c2ec9f49dd363715c31591175bab57e8a1", "fields": {"nom_de_la_commune": "LUSIGNAN", "libell_d_acheminement": "LUSIGNAN", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86139"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca1cc16863215395ef3fe46e4bcfce43fbadd4cf", "fields": {"nom_de_la_commune": "MAULAY", "libell_d_acheminement": "MAULAY", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86151"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf03bfaf50e2147406e7e625d94e5b85022d79d0", "fields": {"nom_de_la_commune": "MIGNALOUX BEAUVOIR", "libell_d_acheminement": "MIGNALOUX BEAUVOIR", "code_postal": "86550", "coordonnees_gps": [46.5486117797, 0.416122295546], "code_commune_insee": "86157"}, "geometry": {"type": "Point", "coordinates": [0.416122295546, 46.5486117797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cb42a3adca637bb1001fe386feb4254f474af7", "fields": {"nom_de_la_commune": "MIGNE AUXANCES", "libell_d_acheminement": "MIGNE AUXANCES", "code_postal": "86440", "coordonnees_gps": [46.6318288413, 0.305162426468], "code_commune_insee": "86158"}, "geometry": {"type": "Point", "coordinates": [0.305162426468, 46.6318288413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae46d089e4a9f8723a476595f687fa75f279a803", "fields": {"nom_de_la_commune": "MONTHOIRON", "libell_d_acheminement": "MONTHOIRON", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86164"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c542b6322eb1bc00f33f6fc5556ba7fff96ece", "fields": {"nom_de_la_commune": "MOULISMES", "libell_d_acheminement": "MOULISMES", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86170"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3352caca15ae9532baf6330377dde4d1cc2a6b20", "fields": {"nom_de_la_commune": "PRESSAC", "libell_d_acheminement": "PRESSAC", "code_postal": "86460", "coordonnees_gps": [46.1382827455, 0.581140891207], "code_commune_insee": "86200"}, "geometry": {"type": "Point", "coordinates": [0.581140891207, 46.1382827455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57af3d57e5d72334e5517546a14555adb19d8fd", "fields": {"nom_de_la_commune": "LE ROCHEREAU", "libell_d_acheminement": "LE ROCHEREAU", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86208"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "090e77311cdb6acf9278954d251ce1de832b6b25", "fields": {"nom_de_la_commune": "ST GENEST D AMBIERE", "libell_d_acheminement": "ST GENEST D AMBIERE", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86221"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a90d7093b863efdebbdea56e89ad311effee87", "fields": {"nom_de_la_commune": "ST LEGER DE MONTBRILLAIS", "libell_d_acheminement": "ST LEGER DE MONTBRILLAIS", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86229"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f06d24ff3cd00a585bf54b02ec74b0830e12a7", "fields": {"nom_de_la_commune": "ST MACOUX", "libell_d_acheminement": "ST MACOUX", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86231"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181fb7030e27089380193ba1cb4f7ef10d21994f", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "MORTHEMER", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf32dac918ae4bf3785e800a2d39ee3e571540d", "fields": {"nom_de_la_commune": "ST MAURICE LA CLOUERE", "libell_d_acheminement": "ST MAURICE LA CLOUERE", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86235"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77db4bd37e7b76a398d9d01afa8b7fe44e931507", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86242"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f1b09dcfe440d1d5af69cd425f9b239bde091d", "fields": {"nom_de_la_commune": "ST SAUVANT", "libell_d_acheminement": "ST SAUVANT", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86244"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4768d38edc144d3989f19d1d8236d980464c88ab", "fields": {"nom_de_la_commune": "SENILLE ST SAUVEUR", "libell_d_acheminement": "SENILLE ST SAUVEUR", "code_postal": "86100", "coordonnees_gps": [46.825162468, 0.575853305257], "code_commune_insee": "86245"}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa4442b5e21fbdb15781f319a9d954152971e36", "fields": {"nom_de_la_commune": "SAVIGNY LEVESCAULT", "libell_d_acheminement": "SAVIGNY LEVESCAULT", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86256"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de529fc4d0f18cd8b2aeec8ebe14619d05a9448", "fields": {"nom_de_la_commune": "SMARVES", "libell_d_acheminement": "SMARVES", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86263"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87cffe51b8743e7dada48cc5b789b1a7e8647e6e", "fields": {"nom_de_la_commune": "SOSSAIS", "libell_d_acheminement": "SOSSAIS", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86265"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d1a1eb610df0d20617dda8d76ceea63149527a", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86278"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e673ba23eb85ef49cf4b9d01c3c358312ed53f", "fields": {"nom_de_la_commune": "VEZIERES", "libell_d_acheminement": "VEZIERES", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86287"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d98f572d379347c2ef265840e3a2e504a00c85", "fields": {"nom_de_la_commune": "VILLEMORT", "libell_d_acheminement": "VILLEMORT", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86291"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5195e517d47c99c2e6e84d061edf9a3ea392991a", "fields": {"nom_de_la_commune": "YVERSAY", "libell_d_acheminement": "YVERSAY", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86300"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c5cdbeda8337879dbf10b9513382ef513439c7", "fields": {"nom_de_la_commune": "LES BILLANGES", "libell_d_acheminement": "LES BILLANGES", "code_postal": "87340", "coordonnees_gps": [46.0084101721, 1.47236687338], "code_commune_insee": "87016"}, "geometry": {"type": "Point", "coordinates": [1.47236687338, 46.0084101721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6814e092ef545b43b69a2ac014b9765f5ec67b68", "fields": {"nom_de_la_commune": "BLANZAC", "libell_d_acheminement": "BLANZAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87017"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b868e40d7dea023e4310cf7ca77a90bbe903f3", "fields": {"nom_de_la_commune": "CHALUS", "libell_d_acheminement": "CHALUS", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87032"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22aa659939ba1729dd4bdcdc48c759ca7cbcb8e", "fields": {"nom_de_la_commune": "CHAMPAGNAC LA RIVIERE", "libell_d_acheminement": "CHAMPAGNAC LA RIVIERE", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87034"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb11d37a5d3b190cf838644665cd474e16b4f329", "fields": {"nom_de_la_commune": "CHAMPNETERY", "libell_d_acheminement": "CHAMPNETERY", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87035"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9eeddd032d746961783c9faba83d6eefb5eb84", "fields": {"nom_de_la_commune": "CHAPTELAT", "libell_d_acheminement": "CHAPTELAT", "code_postal": "87270", "coordonnees_gps": [45.913437896, 1.25203520749], "code_commune_insee": "87038"}, "geometry": {"type": "Point", "coordinates": [1.25203520749, 45.913437896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6962354b5ba5221da4600bd505a47c0e5c2974c", "fields": {"nom_de_la_commune": "CHATEAUNEUF LA FORET", "libell_d_acheminement": "CHATEAUNEUF LA FORET", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87040"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa072a710e392a36eeebc2ff87d8c8c2d6e210a", "fields": {"nom_de_la_commune": "COUZEIX", "libell_d_acheminement": "COUZEIX", "code_postal": "87270", "coordonnees_gps": [45.913437896, 1.25203520749], "code_commune_insee": "87050"}, "geometry": {"type": "Point", "coordinates": [1.25203520749, 45.913437896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5486a6ac95811e88c8b24ced74b234190554abe4", "fields": {"nom_de_la_commune": "DOMPIERRE LES EGLISES", "libell_d_acheminement": "DOMPIERRE LES EGLISES", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87057"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead04addd2ce51155860ce58fee55b62e5c9c728", "fields": {"nom_de_la_commune": "FOLLES", "libell_d_acheminement": "FOLLES", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87067"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd70764d0b6af5bf7f242c7f06578216edbc04ff", "fields": {"nom_de_la_commune": "GLANDON", "libell_d_acheminement": "GLANDON", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87071"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0354be5064acdcfa8bb0004fe5d608b6737bac", "fields": {"nom_de_la_commune": "GORRE", "libell_d_acheminement": "GORRE", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87073"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d517bb53ffdbbba114144c67ba19df785656f3f9", "fields": {"nom_de_la_commune": "JAVERDAT", "libell_d_acheminement": "JAVERDAT", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87078"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8c887eb4d8f868d809abaeb3af6fd184efef5e", "fields": {"nom_de_la_commune": "LAURIERE", "libell_d_acheminement": "LAURIERE", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87083"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8650dce1bf45cf58b66db788adcbc18c2efa748d", "fields": {"code_postal": "87280", "code_commune_insee": "87085", "libell_d_acheminement": "LIMOGES", "ligne_5": "BEAUNE LES MINES", "nom_de_la_commune": "LIMOGES", "coordonnees_gps": [45.8544056025, 1.24905166141]}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f21a92e14de3d4c6a67c03579c132952b7f9c51", "fields": {"nom_de_la_commune": "MAISONNAIS SUR TARDOIRE", "libell_d_acheminement": "MAISONNAIS SUR TARDOIRE", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87091"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71d1a60ae7f364bf7c1e0a8d05a7cd9f887c082", "fields": {"nom_de_la_commune": "MEILHAC", "libell_d_acheminement": "MEILHAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87094"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3f9cadf8888a58b4a1508e918b11886a246443", "fields": {"code_postal": "87330", "code_commune_insee": "87097", "libell_d_acheminement": "VAL D ISSOIRE", "ligne_5": "BUSSIERE BOFFY", "nom_de_la_commune": "VAL D ISSOIRE", "coordonnees_gps": [46.112617356, 0.896746440713]}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07b41dc5b9258d5a89aa7ab5009aa2afd428e74", "fields": {"nom_de_la_commune": "MOISSANNES", "libell_d_acheminement": "MOISSANNES", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87099"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c599ec876c3da31e8600e13ef0d4cef12ca612ba", "fields": {"nom_de_la_commune": "NANTIAT", "libell_d_acheminement": "NANTIAT", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87103"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e652ccf3957fcd8237fa78804d6ef247af48a0", "fields": {"nom_de_la_commune": "NEXON", "libell_d_acheminement": "NEXON", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87106"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c3837efd5f97f2d284329a9123e27b96e346c8", "fields": {"nom_de_la_commune": "SAILLAT SUR VIENNE", "libell_d_acheminement": "SAILLAT SUR VIENNE", "code_postal": "87720", "coordonnees_gps": [45.8711560101, 0.833669136561], "code_commune_insee": "87131"}, "geometry": {"type": "Point", "coordinates": [0.833669136561, 45.8711560101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf72cd9c0652ef9f5311aaad3dc41231664f6dad", "fields": {"nom_de_la_commune": "ST AMAND LE PETIT", "libell_d_acheminement": "ST AMAND LE PETIT", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87132"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df56bafab59ae5bfae59ff9e23682fa58fc9d7e", "fields": {"nom_de_la_commune": "ST AUVENT", "libell_d_acheminement": "ST AUVENT", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87135"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3ab1f9479824bbd82c3c1689eb305e2eff61c89", "fields": {"nom_de_la_commune": "ST BONNET BRIANCE", "libell_d_acheminement": "ST BONNET BRIANCE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87138"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09730a9647e2acda3711ae7f50220ad5f7c4750c", "fields": {"nom_de_la_commune": "ST BRICE SUR VIENNE", "libell_d_acheminement": "ST BRICE SUR VIENNE", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87140"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ec30922099bb59155b8ccf016926b50cb815dd", "fields": {"nom_de_la_commune": "ST GENEST SUR ROSELLE", "libell_d_acheminement": "ST GENEST SUR ROSELLE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87144"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee5e4519e84c7add761094116ffce79fd7d19d0", "fields": {"nom_de_la_commune": "ST GILLES LES FORETS", "libell_d_acheminement": "ST GILLES LES FORETS", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87147"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b87734cd3b94237294cc263307e5b4efd70c899d", "fields": {"nom_de_la_commune": "FRESNES SUR MARNE", "libell_d_acheminement": "FRESNES SUR MARNE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77196"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37221ced4eecbe0beb8f00f377c183bf5049b42b", "fields": {"nom_de_la_commune": "GRESSY", "libell_d_acheminement": "GRESSY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77214"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690588b12fc945c732da6df963469c21556c8def", "fields": {"nom_de_la_commune": "GUERCHEVILLE", "libell_d_acheminement": "GUERCHEVILLE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77220"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24435976ea8f089d42a45f00f7bfa74c47e894d", "fields": {"nom_de_la_commune": "HAUTEFEUILLE", "libell_d_acheminement": "HAUTEFEUILLE", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77224"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440aed007564ebdd6a61c9eba3132646343cae08", "fields": {"nom_de_la_commune": "LA HOUSSAYE EN BRIE", "libell_d_acheminement": "LA HOUSSAYE EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77229"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1f38b5c67b90dc4ae0bfde6800dff504711760", "fields": {"nom_de_la_commune": "ICHY", "libell_d_acheminement": "ICHY", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77230"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e72fe9cd5f51a87551d9e8bf6c90be3139d9eb7b", "fields": {"nom_de_la_commune": "ISLES LES MELDEUSES", "libell_d_acheminement": "ISLES LES MELDEUSES", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77231"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4b00eefddbc75dc5931bc92e380326e7d055074", "fields": {"nom_de_la_commune": "JAULNES", "libell_d_acheminement": "JAULNES", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77236"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6dc9a9f3c85d91ee53ed70f3cdc0e1bca77afe9", "fields": {"nom_de_la_commune": "JOUY SUR MORIN", "libell_d_acheminement": "JOUY SUR MORIN", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77240"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ea4a1712807552befb31a594fe67003ff7afb8", "fields": {"nom_de_la_commune": "LAGNY SUR MARNE", "libell_d_acheminement": "LAGNY SUR MARNE", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77243"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5afb63390b19bcb29a09b77378417ef75b1f0372", "fields": {"nom_de_la_commune": "LAVAL EN BRIE", "libell_d_acheminement": "LAVAL EN BRIE", "code_postal": "77148", "coordonnees_gps": [48.4464731085, 2.99106042028], "code_commune_insee": "77245"}, "geometry": {"type": "Point", "coordinates": [2.99106042028, 48.4464731085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35398f0296b512d1ecf34e6ef6e18cdaef273885", "fields": {"nom_de_la_commune": "LEUDON EN BRIE", "libell_d_acheminement": "LEUDON EN BRIE", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77250"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35f20b7938aa2d56f450738a191d481fe96cd035", "fields": {"nom_de_la_commune": "LONGPERRIER", "libell_d_acheminement": "LONGPERRIER", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77259"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e81c0e48a7ea17df86df29b96e3c102d03965df", "fields": {"code_postal": "77560", "code_commune_insee": "77262", "libell_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", "ligne_5": "FONTAINE SOUS MONTAIGUILLON", "nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", "coordonnees_gps": [48.6366559441, 3.38263980516]}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1337f17bd39b703894a214fa4f97304fe87ae0a", "fields": {"code_postal": "77560", "code_commune_insee": "77262", "libell_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", "ligne_5": "VILLEGRUIS", "nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", "coordonnees_gps": [48.6366559441, 3.38263980516]}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cc0b973639dd01833b4dbe2bd945a4495bd094", "fields": {"nom_de_la_commune": "MAISONCELLES EN GATINAIS", "libell_d_acheminement": "MAISONCELLES EN GATINAIS", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77271"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7126d2bed9aafb6c895f8791c506ed3c8f35b0e", "fields": {"nom_de_la_commune": "MARCHEMORET", "libell_d_acheminement": "MARCHEMORET", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77273"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2020afdd7560d7ad0a77283091311cd0cde61f25", "fields": {"nom_de_la_commune": "MAROLLES EN BRIE", "libell_d_acheminement": "MAROLLES EN BRIE", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77278"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68b76dd5c7a10576962673e90911eaf1378986b", "fields": {"nom_de_la_commune": "MAUREGARD", "libell_d_acheminement": "MAUREGARD", "code_postal": "77990", "coordonnees_gps": [49.0218852255, 2.58516406928], "code_commune_insee": "77282"}, "geometry": {"type": "Point", "coordinates": [2.58516406928, 49.0218852255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d55d266bfcd73cd3c4195b4a01abe9f104b213", "fields": {"nom_de_la_commune": "LE MESNIL AMELOT", "libell_d_acheminement": "LE MESNIL AMELOT", "code_postal": "77990", "coordonnees_gps": [49.0218852255, 2.58516406928], "code_commune_insee": "77291"}, "geometry": {"type": "Point", "coordinates": [2.58516406928, 49.0218852255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d107468296f8e43bdb629f6eb947f2b3ae1c919", "fields": {"nom_de_la_commune": "MITRY MORY", "libell_d_acheminement": "MITRY MORY", "code_postal": "77290", "coordonnees_gps": [48.979596619, 2.61891087151], "code_commune_insee": "77294"}, "geometry": {"type": "Point", "coordinates": [2.61891087151, 48.979596619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d1f00ce42b9808e98a925bca8f4cb36d6a1283", "fields": {"nom_de_la_commune": "MONDREVILLE", "libell_d_acheminement": "MONDREVILLE", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77297"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d8aad9be70c38599a2e5f43f5b43a8cd9eba80", "fields": {"nom_de_la_commune": "MONTIGNY LENCOUP", "libell_d_acheminement": "MONTIGNY LENCOUP", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77311"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40d937ff15375464b503a700a3c954df95c35c5", "fields": {"code_postal": "77250", "code_commune_insee": "77316", "libell_d_acheminement": "MORET LOING ET ORVANNE", "ligne_5": "EPISY", "nom_de_la_commune": "MORET LOING ET ORVANNE", "coordonnees_gps": [48.3334508388, 2.82847916513]}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad832791dc817fbecd1bec28cfb346a80e0aa3a7", "fields": {"code_postal": "77250", "code_commune_insee": "77316", "libell_d_acheminement": "MORET LOING ET ORVANNE", "ligne_5": "MONTARLOT", "nom_de_la_commune": "MORET LOING ET ORVANNE", "coordonnees_gps": [48.3334508388, 2.82847916513]}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3389f2a3b6b2d5678cf12f3a66cfd874b07e4c2", "fields": {"nom_de_la_commune": "MORMANT", "libell_d_acheminement": "MORMANT", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77317"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6d66ca9301e1c89b178e9bc61303e68853d751", "fields": {"nom_de_la_commune": "MORTERY", "libell_d_acheminement": "MORTERY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77319"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6bf752fc73a8924270877f285da715e323dd645", "fields": {"nom_de_la_commune": "MOUROUX", "libell_d_acheminement": "MOUROUX", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77320"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d2bd3fd17e017efb5c5653be654edb89e51b91", "fields": {"nom_de_la_commune": "MOUY SUR SEINE", "libell_d_acheminement": "MOUY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77325"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3890cdf41f77bf95b80e806defcad9cf4348081", "fields": {"nom_de_la_commune": "NANTOUILLET", "libell_d_acheminement": "NANTOUILLET", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77332"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be03274cbee175382fe91da3aae52764f9995dd", "fields": {"nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", "libell_d_acheminement": "CHAUCONIN NEUFMONTIERS", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77335"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b896b6176485a522ca132461a6769b7425de9959", "fields": {"nom_de_la_commune": "NOISIEL", "libell_d_acheminement": "NOISIEL", "code_postal": "77186", "coordonnees_gps": [48.8464272863, 2.61915509749], "code_commune_insee": "77337"}, "geometry": {"type": "Point", "coordinates": [2.61915509749, 48.8464272863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3beb207ac984e101979d4d11962c3944de7f5ac8", "fields": {"nom_de_la_commune": "LES ORMES SUR VOULZIE", "libell_d_acheminement": "LES ORMES SUR VOULZIE", "code_postal": "77134", "coordonnees_gps": [48.4594107059, 3.22513517687], "code_commune_insee": "77347"}, "geometry": {"type": "Point", "coordinates": [3.22513517687, 48.4594107059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bd5abeea5811ddda9e69075873da9b4e99a300", "fields": {"nom_de_la_commune": "OZOUER LE VOULGIS", "libell_d_acheminement": "OZOUER LE VOULGIS", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77352"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74af9a0996fbf2231b721f986656f5d0691e9c2", "fields": {"nom_de_la_commune": "PAROY", "libell_d_acheminement": "PAROY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77355"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b13d9f465eb74b0bf41fc32ae25f3dfd9dcb3bc9", "fields": {"nom_de_la_commune": "PENCHARD", "libell_d_acheminement": "PENCHARD", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77358"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fe3cee0641001f4e8020390ef7f72d9815067c", "fields": {"nom_de_la_commune": "PEZARCHES", "libell_d_acheminement": "PEZARCHES", "code_postal": "77131", "coordonnees_gps": [48.7378222694, 3.01127649042], "code_commune_insee": "77360"}, "geometry": {"type": "Point", "coordinates": [3.01127649042, 48.7378222694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29395686944ddfa75e82671943874b2bb2d45a37", "fields": {"nom_de_la_commune": "LE PLESSIS AUX BOIS", "libell_d_acheminement": "LE PLESSIS AUX BOIS", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77364"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f2dce6668c2a7a71edd4743147b913b3dda0fac", "fields": {"nom_de_la_commune": "LE PLESSIS FEU AUSSOUX", "libell_d_acheminement": "LE PLESSIS FEU AUSSOUX", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77365"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5c88872a15e59d019d4c794070faf7cd3aac88", "fields": {"nom_de_la_commune": "LE PLESSIS L EVEQUE", "libell_d_acheminement": "LE PLESSIS L EVEQUE", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77366"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8a0649101332fde238037ba1e1587e2f3d8294", "fields": {"nom_de_la_commune": "POIGNY", "libell_d_acheminement": "POIGNY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77368"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05965d16dd63895b03be1e78456c62d3a546de18", "fields": {"nom_de_la_commune": "POMPONNE", "libell_d_acheminement": "POMPONNE", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77372"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5655d44502a1ddc3d6f18dcbe17603d1df7b18", "fields": {"nom_de_la_commune": "PRINGY", "libell_d_acheminement": "PRINGY", "code_postal": "77310", "coordonnees_gps": [48.5292083362, 2.53978127085], "code_commune_insee": "77378"}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8b67e50dec4725da5d47cb7ce299e824b5587b", "fields": {"nom_de_la_commune": "PUISIEUX", "libell_d_acheminement": "PUISIEUX", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77380"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e08a91300dc048b474a22a50bcc1b314b4af84", "fields": {"nom_de_la_commune": "ROUVRES", "libell_d_acheminement": "ROUVRES", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77392"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef67c68a17e72e52c9f32e6ba62bc44c53d3cdd", "fields": {"nom_de_la_commune": "SAACY SUR MARNE", "libell_d_acheminement": "SAACY SUR MARNE", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77397"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93c11428e7504fb019fe853c69de96a6ac1f517", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77404"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d319fa43fee1764e82f03da8dcd1dda9f97b497b", "fields": {"nom_de_la_commune": "ST FARGEAU PONTHIERRY", "libell_d_acheminement": "ST FARGEAU PONTHIERRY", "code_postal": "77310", "coordonnees_gps": [48.5292083362, 2.53978127085], "code_commune_insee": "77407"}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cfbb1d5778ff1d45b7c29dad166a0c2e38f6213", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77420"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2febf0ce23702737615972ee863185424ab5f467", "fields": {"nom_de_la_commune": "ST MARS VIEUX MAISONS", "libell_d_acheminement": "ST MARS VIEUX MAISONS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77421"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d079779cde6996ae1aae09a95f888d6d6a3e2f65", "fields": {"nom_de_la_commune": "SALINS", "libell_d_acheminement": "SALINS", "code_postal": "77148", "coordonnees_gps": [48.4464731085, 2.99106042028], "code_commune_insee": "77439"}, "geometry": {"type": "Point", "coordinates": [2.99106042028, 48.4464731085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0067f032b5e8bdc3b76224fd8041bd30fa90c78e", "fields": {"nom_de_la_commune": "SAMMERON", "libell_d_acheminement": "SAMMERON", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77440"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa2070b63a103cb88d80deffbf02e5e89c479fc", "fields": {"nom_de_la_commune": "SANCY", "libell_d_acheminement": "SANCY", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77443"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab07824ddf28fc226eabbafa848c4b26acd5e93", "fields": {"nom_de_la_commune": "SOLERS", "libell_d_acheminement": "SOLERS", "code_postal": "77111", "coordonnees_gps": [48.6502963027, 2.71437354828], "code_commune_insee": "77457"}, "geometry": {"type": "Point", "coordinates": [2.71437354828, 48.6502963027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1cabd3f87f34a775290b2d87efea3aa2574c92", "fields": {"nom_de_la_commune": "THOURY FEROTTES", "libell_d_acheminement": "THOURY FEROTTES", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77465"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a16fa2152c669f9f6bb3c8885badd1fd322a53", "fields": {"nom_de_la_commune": "TORCY", "libell_d_acheminement": "TORCY", "code_postal": "77200", "coordonnees_gps": [48.8536259253, 2.65078543729], "code_commune_insee": "77468"}, "geometry": {"type": "Point", "coordinates": [2.65078543729, 48.8536259253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5aa95e6943ea9f577cb5c7b9c3803e1f960f12", "fields": {"nom_de_la_commune": "TOUQUIN", "libell_d_acheminement": "TOUQUIN", "code_postal": "77131", "coordonnees_gps": [48.7378222694, 3.01127649042], "code_commune_insee": "77469"}, "geometry": {"type": "Point", "coordinates": [3.01127649042, 48.7378222694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050ba9e09c722b1eb479bc8486ad97a452b5f751", "fields": {"nom_de_la_commune": "TOURNAN EN BRIE", "libell_d_acheminement": "TOURNAN EN BRIE", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77470"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a221400360d1d0faa00003dba3284bee298fad1f", "fields": {"nom_de_la_commune": "TOUSSON", "libell_d_acheminement": "TOUSSON", "code_postal": "77123", "coordonnees_gps": [48.3612793646, 2.50123990973], "code_commune_insee": "77471"}, "geometry": {"type": "Point", "coordinates": [2.50123990973, 48.3612793646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e621666e48f1b9f57824359713224405e2238a8", "fields": {"nom_de_la_commune": "USSY SUR MARNE", "libell_d_acheminement": "USSY SUR MARNE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77478"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5471da12aa2283b932f9e18c5fde2f51b1bf5236", "fields": {"nom_de_la_commune": "VANVILLE", "libell_d_acheminement": "VANVILLE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77481"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76507a9d3037ad419932128b24c59145f64630c2", "fields": {"nom_de_la_commune": "VAUX SUR LUNAIN", "libell_d_acheminement": "VAUX SUR LUNAIN", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77489"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82099da71213fb26a090e2a6665275f8d8e2a1c6", "fields": {"nom_de_la_commune": "VERNOU LA CELLE SUR SEINE", "libell_d_acheminement": "VERNOU LA CELLE SUR SEINE", "code_postal": "77670", "coordonnees_gps": [48.4047875044, 2.85078204772], "code_commune_insee": "77494"}, "geometry": {"type": "Point", "coordinates": [2.85078204772, 48.4047875044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061d27c1dcde57ad7390e4e4473514a742d1e318", "fields": {"nom_de_la_commune": "VILLENEUVE SOUS DAMMARTIN", "libell_d_acheminement": "VILLENEUVE SOUS DAMMARTIN", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77511"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a81098378b93cbdf507268973d55ffa2f939e063", "fields": {"nom_de_la_commune": "VILLIERS SUR SEINE", "libell_d_acheminement": "VILLIERS SUR SEINE", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77522"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13ff951f3f2858c4ec6a829ec05fc849877993e", "fields": {"nom_de_la_commune": "VINANTES", "libell_d_acheminement": "VINANTES", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77525"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699049ea15f879d6a778ad7561075ba145c1b289", "fields": {"nom_de_la_commune": "ADAINVILLE", "libell_d_acheminement": "ADAINVILLE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78006"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172c91d0b049fe2f474be6894276e3c96191e731", "fields": {"nom_de_la_commune": "ANDRESY", "libell_d_acheminement": "ANDRESY", "code_postal": "78570", "coordonnees_gps": [48.9796109181, 2.04393218537], "code_commune_insee": "78015"}, "geometry": {"type": "Point", "coordinates": [2.04393218537, 48.9796109181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb29ddd7e7ac199698bedcd51ec1fc1d1cbbd58", "fields": {"nom_de_la_commune": "ARNOUVILLE LES MANTES", "libell_d_acheminement": "ARNOUVILLE LES MANTES", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78020"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e04aeca7127909fc377a9ee7587c79bd331794", "fields": {"nom_de_la_commune": "BAZOCHES SUR GUYONNE", "libell_d_acheminement": "BAZOCHES SUR GUYONNE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78050"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfa0c4033c0e3133f4973eb5b78af3d8fb70842", "fields": {"nom_de_la_commune": "BOINVILLE EN MANTOIS", "libell_d_acheminement": "BOINVILLE EN MANTOIS", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78070"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe82a482035547e4cb7ffe003b9198a033510c5", "fields": {"nom_de_la_commune": "BOINVILLE LE GAILLARD", "libell_d_acheminement": "BOINVILLE LE GAILLARD", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78071"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f36bd6d99ebc571f8eaf0f6b465145bd4624fb9", "fields": {"nom_de_la_commune": "BOISSETS", "libell_d_acheminement": "BOISSETS", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78076"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee1656029c9e1c4b75f2e3df192e9f1f88a7f307", "fields": {"nom_de_la_commune": "BOURDONNE", "libell_d_acheminement": "BOURDONNE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78096"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be9d04b878941f6fd3451f2cddd64cfe3b7f6223", "fields": {"nom_de_la_commune": "LES BREVIAIRES", "libell_d_acheminement": "LES BREVIAIRES", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78108"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b78c41f272b87959e2de1b95d0d3139c8a8650", "fields": {"nom_de_la_commune": "BUC", "libell_d_acheminement": "BUC", "code_postal": "78530", "coordonnees_gps": [48.7726273347, 2.12495794932], "code_commune_insee": "78117"}, "geometry": {"type": "Point", "coordinates": [2.12495794932, 48.7726273347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "532386d2f0fd677006427d1f85318264924c124b", "fields": {"nom_de_la_commune": "BUCHELAY", "libell_d_acheminement": "BUCHELAY", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78118"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae516ee3f47f02372768be56ae1f088cba1f9e9f", "fields": {"nom_de_la_commune": "BULLION", "libell_d_acheminement": "BULLION", "code_postal": "78830", "coordonnees_gps": [48.6221711105, 1.99864954313], "code_commune_insee": "78120"}, "geometry": {"type": "Point", "coordinates": [1.99864954313, 48.6221711105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "583c31a17c39af689ad6514f37e032041c11a6d1", "fields": {"nom_de_la_commune": "CARRIERES SUR SEINE", "libell_d_acheminement": "CARRIERES SUR SEINE", "code_postal": "78420", "coordonnees_gps": [48.911760159, 2.17840498304], "code_commune_insee": "78124"}, "geometry": {"type": "Point", "coordinates": [2.17840498304, 48.911760159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bf9adf1b017d089c54fa9297fab86995dbd6e2b", "fields": {"nom_de_la_commune": "CHANTELOUP LES VIGNES", "libell_d_acheminement": "CHANTELOUP LES VIGNES", "code_postal": "78570", "coordonnees_gps": [48.9796109181, 2.04393218537], "code_commune_insee": "78138"}, "geometry": {"type": "Point", "coordinates": [2.04393218537, 48.9796109181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64d2fedd38a584da78c7274467099d7be94ccf9", "fields": {"nom_de_la_commune": "CHAPET", "libell_d_acheminement": "CHAPET", "code_postal": "78130", "coordonnees_gps": [48.9830853894, 1.92106334899], "code_commune_insee": "78140"}, "geometry": {"type": "Point", "coordinates": [1.92106334899, 48.9830853894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64a35417c8ac137ac9ad3b5d9f5dcd56d619bf06", "fields": {"code_postal": "78150", "code_commune_insee": "78158", "libell_d_acheminement": "LE CHESNAY", "ligne_5": "PARLY", "nom_de_la_commune": "LE CHESNAY", "coordonnees_gps": [48.8291874065, 2.12052828501]}, "geometry": {"type": "Point", "coordinates": [2.12052828501, 48.8291874065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a5f7cb98efe073a48072178e8a5864da716f7e2", "fields": {"nom_de_la_commune": "CONDE SUR VESGRE", "libell_d_acheminement": "CONDE SUR VESGRE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78171"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936c23a7a898bbce6ee0465f58d2ca94a0bffe74", "fields": {"nom_de_la_commune": "EPONE", "libell_d_acheminement": "EPONE", "code_postal": "78680", "coordonnees_gps": [48.9479879015, 1.81338517582], "code_commune_insee": "78217"}, "geometry": {"type": "Point", "coordinates": [1.81338517582, 48.9479879015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6325214d585ab687404a96f2191d5924edf2ca59", "fields": {"nom_de_la_commune": "L ETANG LA VILLE", "libell_d_acheminement": "L ETANG LA VILLE", "code_postal": "78620", "coordonnees_gps": [48.8670748647, 2.06001000731], "code_commune_insee": "78224"}, "geometry": {"type": "Point", "coordinates": [2.06001000731, 48.8670748647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a367fc004edfa9138964878e24792ee5d57ef9c1", "fields": {"nom_de_la_commune": "LA FALAISE", "libell_d_acheminement": "LA FALAISE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78230"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb84d82ac8f48190e9ae9d8b0d89680104fc176", "fields": {"nom_de_la_commune": "FOLLAINVILLE DENNEMONT", "libell_d_acheminement": "FOLLAINVILLE DENNEMONT", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78239"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d45b505590376fab559484495d4e17d509fcfef4", "fields": {"nom_de_la_commune": "FONTENAY LE FLEURY", "libell_d_acheminement": "FONTENAY LE FLEURY", "code_postal": "78330", "coordonnees_gps": [48.8176233654, 2.04685945275], "code_commune_insee": "78242"}, "geometry": {"type": "Point", "coordinates": [2.04685945275, 48.8176233654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f088406cbfe3160325345bb0bee39feb7ec3269b", "fields": {"nom_de_la_commune": "FONTENAY MAUVOISIN", "libell_d_acheminement": "FONTENAY MAUVOISIN", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78245"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569b4cec076e9830e6da8ecc2e8bb32e46c731b2", "fields": {"nom_de_la_commune": "FOURQUEUX", "libell_d_acheminement": "FOURQUEUX", "code_postal": "78112", "coordonnees_gps": [48.8852120834, 2.05407503005], "code_commune_insee": "78251"}, "geometry": {"type": "Point", "coordinates": [2.05407503005, 48.8852120834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcb23c2131dbacf283ce2f2a287eedce6ea5591", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78283"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd48e9e0a15dfa69e4e06c4c6e4958f28da5755", "fields": {"code_postal": "78280", "code_commune_insee": "78297", "libell_d_acheminement": "GUYANCOURT", "ligne_5": "BOUVIERS", "nom_de_la_commune": "GUYANCOURT", "coordonnees_gps": [48.7729816592, 2.07605378449]}, "geometry": {"type": "Point", "coordinates": [2.07605378449, 48.7729816592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc5df3a600b7e959decd95b5f8131bfa7e63284", "fields": {"nom_de_la_commune": "HARDRICOURT", "libell_d_acheminement": "HARDRICOURT", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78299"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea8df63dca9d936747f549a709257f9dda1e59f", "fields": {"nom_de_la_commune": "HERMERAY", "libell_d_acheminement": "HERMERAY", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78307"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f4a7f0d97c9e47a7e8f8b45ae3875143525227", "fields": {"nom_de_la_commune": "LIMETZ VILLEZ", "libell_d_acheminement": "LIMETZ VILLEZ", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78337"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de427fa3fb83ad906b3d7d5c2fe5c177356c17d6", "fields": {"nom_de_la_commune": "LONGNES", "libell_d_acheminement": "LONGNES", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78346"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928c2f64ebeaa92467c67916c1a84a0cb4261f5c", "fields": {"nom_de_la_commune": "LOUVECIENNES", "libell_d_acheminement": "LOUVECIENNES", "code_postal": "78430", "coordonnees_gps": [48.8588744837, 2.1134161115], "code_commune_insee": "78350"}, "geometry": {"type": "Point", "coordinates": [2.1134161115, 48.8588744837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f24a726fb5472a9d3608edb432609c5188af19a", "fields": {"nom_de_la_commune": "MAGNY LES HAMEAUX", "libell_d_acheminement": "MAGNY LES HAMEAUX", "code_postal": "78114", "coordonnees_gps": [48.7411308441, 2.05157793037], "code_commune_insee": "78356"}, "geometry": {"type": "Point", "coordinates": [2.05157793037, 48.7411308441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfb0c98e03e2e4521a47022f15ea36a7616dd97", "fields": {"nom_de_la_commune": "MAREIL MARLY", "libell_d_acheminement": "MAREIL MARLY", "code_postal": "78750", "coordonnees_gps": [48.881418905, 2.07698099175], "code_commune_insee": "78367"}, "geometry": {"type": "Point", "coordinates": [2.07698099175, 48.881418905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bf135e3cd89930591c2fc758cb55d08140f8848", "fields": {"nom_de_la_commune": "MARLY LE ROI", "libell_d_acheminement": "MARLY LE ROI", "code_postal": "78160", "coordonnees_gps": [48.8656792122, 2.09169348981], "code_commune_insee": "78372"}, "geometry": {"type": "Point", "coordinates": [2.09169348981, 48.8656792122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd027a1ce299857b264189b980547ba83b7f6e2a", "fields": {"nom_de_la_commune": "ZELLWILLER", "libell_d_acheminement": "ZELLWILLER", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67557"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb484926adf001b2aa8823da33c0e820ecd1dd8", "fields": {"nom_de_la_commune": "ALTKIRCH", "libell_d_acheminement": "ALTKIRCH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68004"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a125d598ff1a6c2c41f931235dd7487e354c4a", "fields": {"nom_de_la_commune": "AMMERTZWILLER", "libell_d_acheminement": "AMMERTZWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68006"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f08b4767603f79b9d5a776b33cf73346e49ad3", "fields": {"nom_de_la_commune": "BANTZENHEIM", "libell_d_acheminement": "BANTZENHEIM", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68020"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af3f71a584aad6df861ccc3b4f56bd54ac8817d3", "fields": {"code_postal": "68870", "code_commune_insee": "68021", "libell_d_acheminement": "BARTENHEIM", "ligne_5": "BARTENHEIM LA CHAUSSEE", "nom_de_la_commune": "BARTENHEIM", "coordonnees_gps": [47.6331033531, 7.48190833837]}, "geometry": {"type": "Point", "coordinates": [7.48190833837, 47.6331033531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34add3bd2c359aad38253e7b3fcb10628f3041b3", "fields": {"nom_de_la_commune": "BENDORF", "libell_d_acheminement": "BENDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68025"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1a2f9f2cea11b46af9e604c184bdf570e4531a9", "fields": {"nom_de_la_commune": "BERENTZWILLER", "libell_d_acheminement": "BERENTZWILLER", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68027"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3788babd4c5d5f756ccc1bbc9096273558b4f54b", "fields": {"nom_de_la_commune": "BERGHEIM", "libell_d_acheminement": "BERGHEIM", "code_postal": "68750", "coordonnees_gps": [48.2121629249, 7.35914600863], "code_commune_insee": "68028"}, "geometry": {"type": "Point", "coordinates": [7.35914600863, 48.2121629249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f1e1f0826aaaea3729a0a2c8ed942d320958c8", "fields": {"nom_de_la_commune": "BETTENDORF", "libell_d_acheminement": "BETTENDORF", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68033"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06d2738899f13ac50539127d18024e33c5b3fb5", "fields": {"nom_de_la_commune": "BILTZHEIM", "libell_d_acheminement": "BILTZHEIM", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68037"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264a12defff2afff4b4015bec521387ae9e8b7e4", "fields": {"nom_de_la_commune": "BLOTZHEIM", "libell_d_acheminement": "BLOTZHEIM", "code_postal": "68730", "coordonnees_gps": [47.5988584111, 7.47970961294], "code_commune_insee": "68042"}, "geometry": {"type": "Point", "coordinates": [7.47970961294, 47.5988584111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c46dcdd8afab945932c3db35f2c867cdea3d79", "fields": {"nom_de_la_commune": "BOUXWILLER", "libell_d_acheminement": "BOUXWILLER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68049"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329fbfce92f630237681afe72c5a6fcecab0cd0a", "fields": {"nom_de_la_commune": "BRETTEN", "libell_d_acheminement": "BRETTEN", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68052"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324b301f62f2f2c234950d5067f24ed37ebfb162", "fields": {"code_postal": "68350", "code_commune_insee": "68056", "libell_d_acheminement": "BRUNSTATT DIDENHEIM", "ligne_5": "DIDENHEIM", "nom_de_la_commune": "BRUNSTATT DIDENHEIM", "coordonnees_gps": [47.7154887071, 7.32709033441]}, "geometry": {"type": "Point", "coordinates": [7.32709033441, 47.7154887071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a1dc9892209442474c52f5ab0305ed7603f09a", "fields": {"nom_de_la_commune": "COLMAR", "libell_d_acheminement": "COLMAR", "code_postal": "68000", "coordonnees_gps": [48.1102094696, 7.38500410192], "code_commune_insee": "68066"}, "geometry": {"type": "Point", "coordinates": [7.38500410192, 48.1102094696]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d59a423fddac476a071fa478b097d963a7f9e6b6", "fields": {"nom_de_la_commune": "DURLINSDORF", "libell_d_acheminement": "DURLINSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68074"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a8025de7d73e8db0fbb005c284409d0193f1d0", "fields": {"nom_de_la_commune": "EGUISHEIM", "libell_d_acheminement": "EGUISHEIM", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68078"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4249afc3db9a802e151ee9c43c4b3a6e5c9c27ea", "fields": {"code_postal": "68720", "code_commune_insee": "68081", "libell_d_acheminement": "ST BERNARD", "ligne_5": "BRINIGHOFFEN", "nom_de_la_commune": "ST BERNARD", "coordonnees_gps": [47.6783162124, 7.26238056079]}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63febd7b08a338d6f1fa9ab0ddaaf4a8591d4406", "fields": {"nom_de_la_commune": "ENSISHEIM", "libell_d_acheminement": "ENSISHEIM", "code_postal": "68190", "coordonnees_gps": [47.8612458222, 7.34670995091], "code_commune_insee": "68082"}, "geometry": {"type": "Point", "coordinates": [7.34670995091, 47.8612458222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad798c75de4780b5a6788d7c98a8ecfb6aa9ee8", "fields": {"nom_de_la_commune": "FALKWILLER", "libell_d_acheminement": "FALKWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68086"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54489439ab5123ff1cc6c082d1a961d32a7326bc", "fields": {"code_postal": "68470", "code_commune_insee": "68089", "libell_d_acheminement": "FELLERING", "ligne_5": "WESSERLING", "nom_de_la_commune": "FELLERING", "coordonnees_gps": [47.8911637424, 6.97731625336]}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27275202b5917955c613867585b49c466e05774a", "fields": {"nom_de_la_commune": "FESSENHEIM", "libell_d_acheminement": "FESSENHEIM", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68091"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f309a7dc185d1297d958dde89f8ef2aecc0e68c", "fields": {"nom_de_la_commune": "GALFINGUE", "libell_d_acheminement": "GALFINGUE", "code_postal": "68990", "coordonnees_gps": [47.7183120808, 7.22050382985], "code_commune_insee": "68101"}, "geometry": {"type": "Point", "coordinates": [7.22050382985, 47.7183120808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84b007ec0b0f767c73adb1a6359049d41f329d2d", "fields": {"nom_de_la_commune": "GRIESBACH AU VAL", "libell_d_acheminement": "GRIESBACH AU VAL", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68109"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bc010b9854e3a84e6c3b30d541ae53e1104b9e", "fields": {"nom_de_la_commune": "GRUSSENHEIM", "libell_d_acheminement": "GRUSSENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68110"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f75dc008aacc409fec322fb54fd7c21ab5a3bc8", "fields": {"nom_de_la_commune": "HAUSGAUEN", "libell_d_acheminement": "HAUSGAUEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68124"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add213c0a34e0c4d8da86a4abfb925fcad50a118", "fields": {"nom_de_la_commune": "HECKEN", "libell_d_acheminement": "HECKEN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68125"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea4950811132285373535313b07643089171339", "fields": {"nom_de_la_commune": "HEGENHEIM", "libell_d_acheminement": "HEGENHEIM", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68126"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa547d708c0f7fa3e75604c6440935dabd614d0a", "fields": {"nom_de_la_commune": "HEIMSBRUNN", "libell_d_acheminement": "HEIMSBRUNN", "code_postal": "68990", "coordonnees_gps": [47.7183120808, 7.22050382985], "code_commune_insee": "68129"}, "geometry": {"type": "Point", "coordinates": [7.22050382985, 47.7183120808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4864c110b171dea9968a5fb2e41e788bf933291", "fields": {"nom_de_la_commune": "HERRLISHEIM PRES COLMAR", "libell_d_acheminement": "HERRLISHEIM PRES COLMAR", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68134"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5249c9f6548dd9436096a9f3117f17378aa447", "fields": {"nom_de_la_commune": "HOHROD", "libell_d_acheminement": "HOHROD", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68142"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d4d69565a88011821ea0892874dc564283c303", "fields": {"nom_de_la_commune": "HORBOURG WIHR", "libell_d_acheminement": "HORBOURG WIHR", "code_postal": "68180", "coordonnees_gps": [48.0830630727, 7.40347360738], "code_commune_insee": "68145"}, "geometry": {"type": "Point", "coordinates": [7.40347360738, 48.0830630727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff4291d137108a43b928904f0952b5eee29880f", "fields": {"nom_de_la_commune": "HUNAWIHR", "libell_d_acheminement": "HUNAWIHR", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68147"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ef4d6f8bb356b5fbfd9b43968d6f7aa63465e2c", "fields": {"nom_de_la_commune": "JEBSHEIM", "libell_d_acheminement": "JEBSHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68157"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26359176120096a817c8798dfae28c235c60492", "fields": {"nom_de_la_commune": "KOETZINGUE", "libell_d_acheminement": "KOETZINGUE", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68170"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172b473470e709e32e935401708afb9b70cb28b4", "fields": {"nom_de_la_commune": "KUNHEIM", "libell_d_acheminement": "KUNHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68172"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7948e9587a52ecc33bacd8caab69fb03f7762a5a", "fields": {"nom_de_la_commune": "VALDIEU LUTRAN", "libell_d_acheminement": "VALDIEU LUTRAN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68192"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258cfee07dbcc7cc3b7b612f798c12532e9dfe90", "fields": {"nom_de_la_commune": "LUTTER", "libell_d_acheminement": "LUTTER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68194"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a5c8d1055227a873f82e4b403db7ee16d16b065", "fields": {"nom_de_la_commune": "MOLLAU", "libell_d_acheminement": "MOLLAU", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68213"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d87c5124d91bd370ea4191bdcfdc2258d5040a", "fields": {"code_postal": "68640", "code_commune_insee": "68221", "libell_d_acheminement": "MUESPACH", "ligne_5": "MOYEN MUESPACH", "nom_de_la_commune": "MUESPACH", "coordonnees_gps": [47.5439826681, 7.33909806987]}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23663ad3f7679ed72ff0281c805b9ced47ea3e2", "fields": {"nom_de_la_commune": "MULHOUSE", "libell_d_acheminement": "MULHOUSE", "code_postal": "68200", "coordonnees_gps": [47.7494423807, 7.32540160105], "code_commune_insee": "68224"}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1d8892a24de21adbe5bc56370c3ad54f8b03a0", "fields": {"code_postal": "68200", "code_commune_insee": "68224", "libell_d_acheminement": "MULHOUSE", "ligne_5": "DORNACH", "nom_de_la_commune": "MULHOUSE", "coordonnees_gps": [47.7494423807, 7.32540160105]}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb1c09fde544e6ea78a0f631c3aaa57d86f777f", "fields": {"nom_de_la_commune": "NIEDERMORSCHWIHR", "libell_d_acheminement": "NIEDERMORSCHWIHR", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68237"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5945670a1a1d020b318eee91f29adcdbaec8e3f", "fields": {"nom_de_la_commune": "OBERBRUCK", "libell_d_acheminement": "OBERBRUCK", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68239"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965e9c95a652d4117f6b05d88fad2f38a452bc02", "fields": {"nom_de_la_commune": "OLTINGUE", "libell_d_acheminement": "OLTINGUE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68248"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1771cb40102ff7655f0b11bda699ca1339daa8c9", "fields": {"nom_de_la_commune": "RAEDERSHEIM", "libell_d_acheminement": "RAEDERSHEIM", "code_postal": "68190", "coordonnees_gps": [47.8612458222, 7.34670995091], "code_commune_insee": "68260"}, "geometry": {"type": "Point", "coordinates": [7.34670995091, 47.8612458222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f4a6d1ea226840abbee55d5be44ceb42bcf408c", "fields": {"nom_de_la_commune": "RIMBACHZELL", "libell_d_acheminement": "RIMBACHZELL", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68276"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "890d6895e0c9b44c0c0a0dc9a2b24c33891507ce", "fields": {"nom_de_la_commune": "ROMBACH LE FRANC", "libell_d_acheminement": "ROMBACH LE FRANC", "code_postal": "68660", "coordonnees_gps": [48.2830260075, 7.25621728255], "code_commune_insee": "68283"}, "geometry": {"type": "Point", "coordinates": [7.25621728255, 48.2830260075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e28211fc8f055cced5761ac45ca1abfce5aaf17", "fields": {"nom_de_la_commune": "ROUFFACH", "libell_d_acheminement": "ROUFFACH", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68287"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a51038ae31457e30e22c602419ace8ac8177dde", "fields": {"nom_de_la_commune": "RUMERSHEIM LE HAUT", "libell_d_acheminement": "RUMERSHEIM LE HAUT", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68291"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c84d89166a1a40cbaff15c28bc07442986d977", "fields": {"code_postal": "68300", "code_commune_insee": "68297", "libell_d_acheminement": "ST LOUIS", "ligne_5": "BOURGFELDEN", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [47.6023175125, 7.54024522111]}, "geometry": {"type": "Point", "coordinates": [7.54024522111, 47.6023175125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56698c55d68f3e666f9ead5e3505d1b87750c7f7", "fields": {"code_postal": "68160", "code_commune_insee": "68298", "libell_d_acheminement": "STE MARIE AUX MINES", "ligne_5": "ECHERY", "nom_de_la_commune": "STE MARIE AUX MINES", "coordonnees_gps": [48.2436580194, 7.18389066901]}, "geometry": {"type": "Point", "coordinates": [7.18389066901, 48.2436580194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ed33323102b00a796dc046131fc65eda773824", "fields": {"nom_de_la_commune": "SCHLIERBACH", "libell_d_acheminement": "SCHLIERBACH", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68301"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcadb629b115b71f7142dd3b6c0f1e4fa54ae942", "fields": {"nom_de_la_commune": "SONDERNACH", "libell_d_acheminement": "SONDERNACH", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68311"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f24fad17717e8d7c5c07255bc7d7e3114ac2efe", "fields": {"nom_de_la_commune": "SONDERSDORF", "libell_d_acheminement": "SONDERSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68312"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5e8a620f45afd32adb70702d02fadcddd42980", "fields": {"nom_de_la_commune": "SPECHBACH", "libell_d_acheminement": "SPECHBACH", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68320"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab865cda5296b9f2861bcb70d4b8015258462d1", "fields": {"code_postal": "68720", "code_commune_insee": "68320", "libell_d_acheminement": "SPECHBACH", "ligne_5": "SPECHBACH LE BAS", "nom_de_la_commune": "SPECHBACH", "coordonnees_gps": [47.6783162124, 7.26238056079]}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6211b778e7748d500eeb3bc455d712740271618c", "fields": {"nom_de_la_commune": "STEINBACH", "libell_d_acheminement": "STEINBACH", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68322"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e584e8cfa913e843e5c14abdf0b5119dbd24aba1", "fields": {"nom_de_la_commune": "TAGOLSHEIM", "libell_d_acheminement": "TAGOLSHEIM", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68332"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18cdd006a39155c69b30897ca3ce829d7fc209a4", "fields": {"nom_de_la_commune": "ZAESSINGUE", "libell_d_acheminement": "ZAESSINGUE", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68382"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "995fbab253857b92e690e6e401741b80604c664f", "fields": {"nom_de_la_commune": "ZILLISHEIM", "libell_d_acheminement": "ZILLISHEIM", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68384"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01e985241f69bcec14719c2e173cbf6ee6db53c", "fields": {"nom_de_la_commune": "ALIX", "libell_d_acheminement": "ALIX", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69004"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e09334a4d2876582986aa2a025e1ef9173f76c", "fields": {"nom_de_la_commune": "AMPUIS", "libell_d_acheminement": "AMPUIS", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69007"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f9a624af67a2d91cb02c8085240978b2d9fe49e", "fields": {"nom_de_la_commune": "BEAUJEU", "libell_d_acheminement": "BEAUJEU", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69018"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26713a0549a093d06ecd2b6e533849b7d1d0b230", "fields": {"nom_de_la_commune": "BESSENAY", "libell_d_acheminement": "BESSENAY", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69021"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67272d88615f20362ae0e179ad730270a69a68a6", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LES ROCHES", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165db5c6a5147c66c4901ff2c256e1ab40a94f7f", "fields": {"nom_de_la_commune": "BRIGNAIS", "libell_d_acheminement": "BRIGNAIS", "code_postal": "69530", "coordonnees_gps": [45.6692860968, 4.73618397789], "code_commune_insee": "69027"}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0638b6d4fa91ba91f6ad7555adea96070d1219f", "fields": {"nom_de_la_commune": "CERCIE", "libell_d_acheminement": "CERCIE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69036"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c618e6105a8b1dc3ff08d5b059956236bf32f34f", "fields": {"nom_de_la_commune": "CHAMELET", "libell_d_acheminement": "CHAMELET", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69039"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d63346012ee8ceb1bd39ecf79ed1265c5e3fb43", "fields": {"nom_de_la_commune": "CHARBONNIERES LES BAINS", "libell_d_acheminement": "CHARBONNIERES LES BAINS", "code_postal": "69260", "coordonnees_gps": [45.7802206702, 4.7435977187], "code_commune_insee": "69044"}, "geometry": {"type": "Point", "coordinates": [4.7435977187, 45.7802206702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76202e3a04571f5f5f45ecfc89c3a91f4f497ded", "fields": {"nom_de_la_commune": "CHARENTAY", "libell_d_acheminement": "CHARENTAY", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69045"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee9d7869f2c435d9ea766f97c30b46edad650e5", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69050"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf83d6048a459d6bc59ac8eec82d1b27fba977c", "fields": {"nom_de_la_commune": "CHEVINAY", "libell_d_acheminement": "CHEVINAY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69057"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a68cf9eef06dc96d460b8d5682035a2d63eb37", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "69470", "coordonnees_gps": [46.1151639398, 4.3657661109], "code_commune_insee": "69066"}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc41e1b65bcbbca2a5b1a701d9322e067bff0742", "fields": {"nom_de_la_commune": "DENICE", "libell_d_acheminement": "DENICE", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69074"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c8069e7e1f6a0887bb46abd324ddd2b142cf74", "fields": {"nom_de_la_commune": "ECULLY", "libell_d_acheminement": "ECULLY", "code_postal": "69130", "coordonnees_gps": [45.7817109939, 4.77264528485], "code_commune_insee": "69081"}, "geometry": {"type": "Point", "coordinates": [4.77264528485, 45.7817109939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f7b0c26fd8a9f4ff00c605c3589f7dc5629893", "fields": {"nom_de_la_commune": "EVEUX", "libell_d_acheminement": "EVEUX", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69083"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e19c0bbb3dc6378c43e5159540954d8fe162688", "fields": {"nom_de_la_commune": "FONTAINES ST MARTIN", "libell_d_acheminement": "FONTAINES ST MARTIN", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69087"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076a3c321206c690ee86b17f925a31277d61bad4", "fields": {"nom_de_la_commune": "GLEIZE", "libell_d_acheminement": "GLEIZE", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69092"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883de9dd4e1f07a6d57a7234446e28624eb6dc7b", "fields": {"nom_de_la_commune": "GREZIEU LA VARENNE", "libell_d_acheminement": "GREZIEU LA VARENNE", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69094"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0037b978e3e5a32a4335774975c5db877ab1c616", "fields": {"nom_de_la_commune": "JULLIE", "libell_d_acheminement": "JULLIE", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69104"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3991e2850c8d0f2132342f0c4f25f326275b1be9", "fields": {"nom_de_la_commune": "LAMURE SUR AZERGUES", "libell_d_acheminement": "LAMURE SUR AZERGUES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69107"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d2b00531fcb784ef5290c2ae7027351f45120b", "fields": {"code_postal": "69590", "code_commune_insee": "69110", "libell_d_acheminement": "LARAJASSE", "ligne_5": "LA MURE", "nom_de_la_commune": "LARAJASSE", "coordonnees_gps": [45.6217485802, 4.48906764505]}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078d23611535f35c51f69bf11b43d7361d133fc6", "fields": {"code_postal": "69620", "code_commune_insee": "69113", "libell_d_acheminement": "LETRA", "ligne_5": "LA ROCHE", "nom_de_la_commune": "LETRA", "coordonnees_gps": [45.942828666, 4.55646873153]}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0320311c3bd78a7073166a8f002e1e8c433cab9", "fields": {"nom_de_la_commune": "LIMONEST", "libell_d_acheminement": "LIMONEST", "code_postal": "69760", "coordonnees_gps": [45.830865525, 4.77106197619], "code_commune_insee": "69116"}, "geometry": {"type": "Point", "coordinates": [4.77106197619, 45.830865525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62d4306828a92a5b271c8f301f5dadb633bc9b4", "fields": {"nom_de_la_commune": "LISSIEU", "libell_d_acheminement": "LISSIEU", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69117"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2252f1c0d7778c96d785c621085501cd8545b35a", "fields": {"nom_de_la_commune": "LONGES", "libell_d_acheminement": "LONGES", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69119"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68390a5160e85f72322cb2b01ad89998fb4a76a9", "fields": {"nom_de_la_commune": "MARCILLY D AZERGUES", "libell_d_acheminement": "MARCILLY D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69125"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862b3430036b7ff0cc6f278f35023b5ae94ac009", "fields": {"nom_de_la_commune": "MARCY", "libell_d_acheminement": "MARCY", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69126"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453e6a7abe4f021e350c3051fcd2cc0b6e23cc87", "fields": {"nom_de_la_commune": "MEYS", "libell_d_acheminement": "MEYS", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69132"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea1f7765fb87449d5c08e34a5804be62775d14a", "fields": {"nom_de_la_commune": "MILLERY", "libell_d_acheminement": "MILLERY", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69133"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a07b436cf6915c2f59eb632bf40ff34bd1bc21c", "fields": {"nom_de_la_commune": "LA MULATIERE", "libell_d_acheminement": "LA MULATIERE", "code_postal": "69350", "coordonnees_gps": [45.730594844, 4.81218151873], "code_commune_insee": "69142"}, "geometry": {"type": "Point", "coordinates": [4.81218151873, 45.730594844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3555bcc7400e001626febcfb8c6526f9507eb0f", "fields": {"nom_de_la_commune": "OINGT", "libell_d_acheminement": "OINGT", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69146"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871520363e0c39924a2c21f7924bb64926ab879d", "fields": {"nom_de_la_commune": "POLLIONNAY", "libell_d_acheminement": "POLLIONNAY", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69154"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bee3c19a218f750f0a343df93301e77eb3c7f8", "fields": {"nom_de_la_commune": "POULE LES ECHARMEAUX", "libell_d_acheminement": "POULE LES ECHARMEAUX", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69160"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36dc27086be6cad3c21f7d80cde2c1a9909908f1", "fields": {"nom_de_la_commune": "RANCHAL", "libell_d_acheminement": "RANCHAL", "code_postal": "69470", "coordonnees_gps": [46.1151639398, 4.3657661109], "code_commune_insee": "69164"}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc377394c658f4ac823c3524f8027a84637d8029", "fields": {"nom_de_la_commune": "RIVOLET", "libell_d_acheminement": "RIVOLET", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69167"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca7834ed527e9a55a989e71bddc2384a0610a7e", "fields": {"nom_de_la_commune": "ST BONNET LE TRONCY", "libell_d_acheminement": "ST BONNET LE TRONCY", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69183"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa433ae2ae7903683d0cfbd5dbc245e8e30f3c70", "fields": {"nom_de_la_commune": "ST CYR AU MONT D OR", "libell_d_acheminement": "ST CYR AU MONT D OR", "code_postal": "69450", "coordonnees_gps": [45.818957893, 4.81864805122], "code_commune_insee": "69191"}, "geometry": {"type": "Point", "coordinates": [4.81864805122, 45.818957893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0fd25ac5597145c3bed3024887598a672bf588", "fields": {"code_postal": "69440", "code_commune_insee": "69195", "libell_d_acheminement": "ST DIDIER SOUS RIVERIE", "ligne_5": "FILLONNIERE", "nom_de_la_commune": "ST DIDIER SOUS RIVERIE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceeffa3559aef15b86b4468f9cd23a0b45783a57", "fields": {"nom_de_la_commune": "PRINCAY", "libell_d_acheminement": "PRINCAY", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86201"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce21d1c7d9e7e121b6f4d055a1fb8508557f37ad", "fields": {"nom_de_la_commune": "LA PUYE", "libell_d_acheminement": "LA PUYE", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86202"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96fe8b58171700d623a996f7f28c5437ece0f2f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86217"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1538ceb3841ba5e2de5999eee8df2ed45aa5fb", "fields": {"nom_de_la_commune": "ST JULIEN L ARS", "libell_d_acheminement": "ST JULIEN L ARS", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86226"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf48273bbbbee700c8531cbda1f7dae3150943b", "fields": {"nom_de_la_commune": "ST LAON", "libell_d_acheminement": "ST LAON", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86227"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425797e58e2be9fd101264722c26f1e8f8d7fb25", "fields": {"nom_de_la_commune": "ST LAURENT DE JOURDES", "libell_d_acheminement": "ST LAURENT DE JOURDES", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86228"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8235c8e5249672de03eb9c38311a6fd455ae3cf2", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "ST MARTIN LA RIVIERE", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92698455e9993adf1c9ec4a08851e5c8f68cd444", "fields": {"code_postal": "86100", "code_commune_insee": "86245", "libell_d_acheminement": "SENILLE ST SAUVEUR", "ligne_5": "SENILLE", "nom_de_la_commune": "SENILLE ST SAUVEUR", "coordonnees_gps": [46.825162468, 0.575853305257]}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d70d880e848782b194a785cfdbc62b915d7b6c2", "fields": {"nom_de_la_commune": "SAIX", "libell_d_acheminement": "SAIX", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86250"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69343db30f4071db4a17551b0181ce4ba4f3878", "fields": {"nom_de_la_commune": "SANXAY", "libell_d_acheminement": "SANXAY", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86253"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157bbdff5b9d627504adbcf4174ef1bc9ea66a2e", "fields": {"nom_de_la_commune": "SCORBE CLAIRVAUX", "libell_d_acheminement": "SCORBE CLAIRVAUX", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86258"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e9e3c1606721edfa4356359f1aeadb53748525", "fields": {"nom_de_la_commune": "SURIN", "libell_d_acheminement": "SURIN", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86266"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814a6a97bc6afd39a6100fee56b97dc92aa7fe95", "fields": {"nom_de_la_commune": "TERNAY", "libell_d_acheminement": "TERNAY", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86269"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5692fd4afc0c2f45bf162867c2d3de30f6a057e5", "fields": {"nom_de_la_commune": "THOLLET", "libell_d_acheminement": "THOLLET", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86270"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8222d3f77b43327d28a3708b03495d240878bdf3", "fields": {"nom_de_la_commune": "USSEAU", "libell_d_acheminement": "USSEAU", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86275"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915b2b62e0251adb851ce93ce8f6f4e61371c266", "fields": {"nom_de_la_commune": "VAUX SUR VIENNE", "libell_d_acheminement": "VAUX SUR VIENNE", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86279"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6037758d856f35c457b6ad2ba802ef5a0c2151", "fields": {"nom_de_la_commune": "VIVONNE", "libell_d_acheminement": "VIVONNE", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86293"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e226679126ced604e7a1a5132921f04ea59f972", "fields": {"nom_de_la_commune": "VOULEME", "libell_d_acheminement": "VOULEME", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86295"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe7f1b0f8703ea49fee213251d34b431e74726e", "fields": {"nom_de_la_commune": "VOUZAILLES", "libell_d_acheminement": "VOUZAILLES", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86299"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07a84599ae1dae2efb3f3596454c42a90071d36", "fields": {"nom_de_la_commune": "ARNAC LA POSTE", "libell_d_acheminement": "ARNAC LA POSTE", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87003"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d5a26cf5b9642d1da294ce5ed384c3883161b7", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87012"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd05655c7eb4e2196c2debb376dfec35def95d8f", "fields": {"nom_de_la_commune": "BESSINES SUR GARTEMPE", "libell_d_acheminement": "BESSINES SUR GARTEMPE", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87014"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c27e37fbaf81d728a73f57f6339648edee844b1", "fields": {"nom_de_la_commune": "BUSSIERE POITEVINE", "libell_d_acheminement": "BUSSIERE POITEVINE", "code_postal": "87320", "coordonnees_gps": [46.2450903271, 0.930736813539], "code_commune_insee": "87028"}, "geometry": {"type": "Point", "coordinates": [0.930736813539, 46.2450903271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c969cf6e77552f20e84ff536d1115b95ae4d032e", "fields": {"nom_de_la_commune": "CHAMBORET", "libell_d_acheminement": "CHAMBORET", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87033"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f56d39df6010849a78780b061be11a2f5e7e21b", "fields": {"nom_de_la_commune": "CHATEAU CHERVIX", "libell_d_acheminement": "CHATEAU CHERVIX", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87039"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512dbcdbfc8b87d5c905639d95dd812cdc353e93", "fields": {"nom_de_la_commune": "COGNAC LA FORET", "libell_d_acheminement": "COGNAC LA FORET", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87046"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a94e881f192bac78d1768aa2258ac21f0b88698", "fields": {"nom_de_la_commune": "COUSSAC BONNEVAL", "libell_d_acheminement": "COUSSAC BONNEVAL", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87049"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28107fdf3247709f8a45394fd6487e4111af7553", "fields": {"nom_de_la_commune": "CROMAC", "libell_d_acheminement": "CROMAC", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87053"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0321ebc1e9453997f56becc614ee39e6db47fe1c", "fields": {"nom_de_la_commune": "CUSSAC", "libell_d_acheminement": "CUSSAC", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87054"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "404640e7d4da2b6901702d6ff16c619aea99fae7", "fields": {"nom_de_la_commune": "DARNAC", "libell_d_acheminement": "DARNAC", "code_postal": "87320", "coordonnees_gps": [46.2450903271, 0.930736813539], "code_commune_insee": "87055"}, "geometry": {"type": "Point", "coordinates": [0.930736813539, 46.2450903271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee8a1de3b4f67d7bdacc138ec7482fd66a7efe8", "fields": {"nom_de_la_commune": "DOURNAZAC", "libell_d_acheminement": "DOURNAZAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87060"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4c48b7c732b4ebfeb239bf53342823d23b1158", "fields": {"nom_de_la_commune": "FEYTIAT", "libell_d_acheminement": "FEYTIAT", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87065"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5880ce8fd0c74e8f1ba5f0327bff147f5d78c620", "fields": {"nom_de_la_commune": "FLAVIGNAC", "libell_d_acheminement": "FLAVIGNAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87066"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb2b09a440b6bc80c98deff1577af4f56b1ad34", "fields": {"nom_de_la_commune": "FROMENTAL", "libell_d_acheminement": "FROMENTAL", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87068"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6cb83336410d6576645c44a396bebe385753411", "fields": {"nom_de_la_commune": "LES GRANDS CHEZEAUX", "libell_d_acheminement": "LES GRANDS CHEZEAUX", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87074"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674ab8ab3fdc946b0471f02edb31f24dfd7ad202", "fields": {"nom_de_la_commune": "JANAILHAC", "libell_d_acheminement": "JANAILHAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87077"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe8407bf716c10806f2c47a20e6fee5a63576cb", "fields": {"nom_de_la_commune": "LIMOGES", "libell_d_acheminement": "LIMOGES", "code_postal": "87280", "coordonnees_gps": [45.8544056025, 1.24905166141], "code_commune_insee": "87085"}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "017039e3e6ca39c2d35269cbf27416dff0513608", "fields": {"nom_de_la_commune": "MAGNAC LAVAL", "libell_d_acheminement": "MAGNAC LAVAL", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87089"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c29985ff6a5209b6e3d2042629e760b922c7de8", "fields": {"nom_de_la_commune": "LA MEYZE", "libell_d_acheminement": "LA MEYZE", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87096"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9299c2d4d06da661a0e545e6da67ab0ff94768c", "fields": {"nom_de_la_commune": "NIEUL", "libell_d_acheminement": "NIEUL", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87107"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14eef00b2e18afb1a4bf2713bb0eedd51dc5fed5", "fields": {"nom_de_la_commune": "NOUIC", "libell_d_acheminement": "NOUIC", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87108"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ac0b13f560bb2278149811f43092ebd9723582", "fields": {"nom_de_la_commune": "RAZES", "libell_d_acheminement": "RAZES", "code_postal": "87640", "coordonnees_gps": [46.0371840416, 1.3406343083], "code_commune_insee": "87122"}, "geometry": {"type": "Point", "coordinates": [1.3406343083, 46.0371840416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d911868a0baca44a77fa94d287518cfd31fb222", "fields": {"nom_de_la_commune": "LA ROCHE L ABEILLE", "libell_d_acheminement": "LA ROCHE L ABEILLE", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87127"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43bd77838eb28e9198f7673300d900a32a03d6ff", "fields": {"nom_de_la_commune": "ROUSSAC", "libell_d_acheminement": "ROUSSAC", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87128"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6a8fa175fd923671afbc1278d304d39466ac1f5", "fields": {"nom_de_la_commune": "ROYERES", "libell_d_acheminement": "ROYERES", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87129"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9fec5541a0bf751c703a98138504ad553452912", "fields": {"nom_de_la_commune": "ST GENCE", "libell_d_acheminement": "ST GENCE", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87143"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2d3e2a3f9f88bb8829708092a446c636c41e19", "fields": {"nom_de_la_commune": "ST HILAIRE BONNEVAL", "libell_d_acheminement": "ST HILAIRE BONNEVAL", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87148"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f929c7286186ce4d5da40d6ecc9cabb7f16005", "fields": {"nom_de_la_commune": "ST JULIEN LE PETIT", "libell_d_acheminement": "ST JULIEN LE PETIT", "code_postal": "87460", "coordonnees_gps": [45.8082304662, 1.65843592046], "code_commune_insee": "87153"}, "geometry": {"type": "Point", "coordinates": [1.65843592046, 45.8082304662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e4907d8502265652f77e47ab7e46d9243ec005", "fields": {"nom_de_la_commune": "ST JUNIEN LES COMBES", "libell_d_acheminement": "ST JUNIEN LES COMBES", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87155"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1bf56e91f03345c0bd7b778f3496c0fe50a31cb", "fields": {"nom_de_la_commune": "ST LAURENT SUR GORRE", "libell_d_acheminement": "ST LAURENT SUR GORRE", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87158"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1800d6296c0a23fbd648363eb685c9e91e14d2e", "fields": {"nom_de_la_commune": "ST LEGER MAGNAZEIX", "libell_d_acheminement": "ST LEGER MAGNAZEIX", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87160"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63caadff700e7ba0ff949a20157a7f66b50ab260", "fields": {"nom_de_la_commune": "ST MARTIN DE JUSSAC", "libell_d_acheminement": "ST MARTIN DE JUSSAC", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87164"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149c8d64cba113d00ae3511825156cf0de4635d5", "fields": {"nom_de_la_commune": "ST MATHIEU", "libell_d_acheminement": "ST MATHIEU", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87168"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4acd635074f3ae48517497586c48eb9e6ef63aa5", "fields": {"nom_de_la_commune": "ST PRIEST TAURION", "libell_d_acheminement": "ST PRIEST TAURION", "code_postal": "87480", "coordonnees_gps": [45.8976895915, 1.39589865728], "code_commune_insee": "87178"}, "geometry": {"type": "Point", "coordinates": [1.39589865728, 45.8976895915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553b964c4edebe9dc041b0701d02a7d4470354a7", "fields": {"nom_de_la_commune": "ST SORNIN LA MARCHE", "libell_d_acheminement": "ST SORNIN LA MARCHE", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87179"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7b83d53f89b865ba490ba3a77630ec84c77aeb", "fields": {"code_postal": "87290", "code_commune_insee": "87180", "libell_d_acheminement": "ST SORNIN LEULAC", "ligne_5": "ST PRIEST LE BETOUX", "nom_de_la_commune": "ST SORNIN LEULAC", "coordonnees_gps": [46.1497841077, 1.2728577587]}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1a69e27199d162411235a442ac6787b32139f2", "fields": {"nom_de_la_commune": "ST YRIEIX SOUS AIXE", "libell_d_acheminement": "ST YRIEIX SOUS AIXE", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87188"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cc710730d322c4246aa458786c4cbffe6d515c", "fields": {"nom_de_la_commune": "SAUVIAT SUR VIGE", "libell_d_acheminement": "SAUVIAT SUR VIGE", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87190"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0437eea1780e096bf6e744652490e6c4f7b977c7", "fields": {"nom_de_la_commune": "SUSSAC", "libell_d_acheminement": "SUSSAC", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87194"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b696ba38e157d9d14912365acfacd44d599c67", "fields": {"nom_de_la_commune": "VEYRAC", "libell_d_acheminement": "VEYRAC", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87202"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4e25db1c8c2f6ef1ee1f9fcde9e642db6a7fb1", "fields": {"code_postal": "87520", "code_commune_insee": "87202", "libell_d_acheminement": "VEYRAC", "ligne_5": "LA BARRE DE VEYRAC", "nom_de_la_commune": "VEYRAC", "coordonnees_gps": [45.945423937, 1.03102505904]}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2ff8ddedf00202e8317badb7e0dfddc8009c10f", "fields": {"nom_de_la_commune": "VIDEIX", "libell_d_acheminement": "VIDEIX", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87204"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0e4d5157166d25bbc604259d08338d76ec2e20", "fields": {"nom_de_la_commune": "LE VIGEN", "libell_d_acheminement": "LE VIGEN", "code_postal": "87110", "coordonnees_gps": [45.746684922, 1.26292425158], "code_commune_insee": "87205"}, "geometry": {"type": "Point", "coordinates": [1.26292425158, 45.746684922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e78a2ba8bb2cce06702788d133160c32d26dfda", "fields": {"nom_de_la_commune": "AMBACOURT", "libell_d_acheminement": "AMBACOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88006"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b387070f208bfd212a2e3f1b4102dabd89250d65", "fields": {"nom_de_la_commune": "AUTREY", "libell_d_acheminement": "AUTREY", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88021"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efeeb31b5fe9746b5fbf590ade82493ed19b2480", "fields": {"nom_de_la_commune": "AVRAINVILLE", "libell_d_acheminement": "AVRAINVILLE", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88024"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "902514474c8ff82884d21caba75339262c92a81f", "fields": {"nom_de_la_commune": "AVRANVILLE", "libell_d_acheminement": "AVRANVILLE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88025"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551778613e783a4e24105e0db99e5c3aeba35dec", "fields": {"nom_de_la_commune": "BEAUFREMONT", "libell_d_acheminement": "BEAUFREMONT", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88045"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f4a7354f337c1f47cb3929b6448153ae773b8d", "fields": {"nom_de_la_commune": "BELRUPT", "libell_d_acheminement": "BELRUPT", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88052"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1d3cf46b1dac42f4a7a73d86094e3057bce001", "fields": {"nom_de_la_commune": "BLEVAINCOURT", "libell_d_acheminement": "BLEVAINCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88062"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5871ad920d4e03dc3a66b1065fe702fff027431d", "fields": {"nom_de_la_commune": "BRECHAINVILLE", "libell_d_acheminement": "BRECHAINVILLE", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88074"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b04f1e8d7c044ee70451a40bee53670cdfee9d", "fields": {"nom_de_la_commune": "BULT", "libell_d_acheminement": "BULT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88080"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2b6f64edc1567dd938b8b137060e0b80a10c08", "fields": {"nom_de_la_commune": "CELLES SUR PLAINE", "libell_d_acheminement": "CELLES SUR PLAINE", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88082"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1a08a9a78aff727794b7120175a9daa34ba045", "fields": {"nom_de_la_commune": "LA CHAPELLE DEVANT BRUYERES", "libell_d_acheminement": "LA CHAPELLE DEVANT BRUYERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88089"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c44d843455fba99f597c0dd5cbb1e0e01e5613", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88090"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0245776ea1cd2cf24883ff6af9a720b413526f26", "fields": {"nom_de_la_commune": "CHATAS", "libell_d_acheminement": "CHATAS", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88093"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6964260d61b15e55f4c3d5d212079481bfeb29d2", "fields": {"nom_de_la_commune": "CHATEL SUR MOSELLE", "libell_d_acheminement": "CHATEL SUR MOSELLE", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88094"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b074241f35cbd2e3ac4684b59a4621de69e4a68e", "fields": {"nom_de_la_commune": "CHEF HAUT", "libell_d_acheminement": "CHEF HAUT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88100"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb1a115cb21e8782196099945286dca3bc41e94", "fields": {"nom_de_la_commune": "CLAUDON", "libell_d_acheminement": "CLAUDON", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88105"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4cb2dc3ba303d674a0a395563f71578d1823299", "fields": {"nom_de_la_commune": "CLEREY LA COTE", "libell_d_acheminement": "CLEREY LA COTE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88107"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3264a5872f21d37d645f19a9811bc363aea461d", "fields": {"nom_de_la_commune": "CORCIEUX", "libell_d_acheminement": "CORCIEUX", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88115"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fabb87d1bce6b166442158377f617926f94a0a", "fields": {"nom_de_la_commune": "COUSSEY", "libell_d_acheminement": "COUSSEY", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88118"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6325512e9d229bc15da5830e441e049e301655", "fields": {"nom_de_la_commune": "DAMAS AUX BOIS", "libell_d_acheminement": "DAMAS AUX BOIS", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88121"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627b84ad151a6ecc58053732682cc71923c54435", "fields": {"nom_de_la_commune": "DAMBLAIN", "libell_d_acheminement": "DAMBLAIN", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88123"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c6f4bc277976096bc5a41ab8090004962c14dc", "fields": {"nom_de_la_commune": "DARNIEULLES", "libell_d_acheminement": "DARNIEULLES", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88126"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c934ea9d0b3cc205c3580f7571a92904b1d120", "fields": {"nom_de_la_commune": "DOMBROT LE SEC", "libell_d_acheminement": "DOMBROT LE SEC", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88140"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c86f218c25794e9e364be9f0ee8defad484fcbc3", "fields": {"nom_de_la_commune": "DOMPTAIL", "libell_d_acheminement": "DOMPTAIL", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88153"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f49523785caa5aade22a4266f982560aef981e5", "fields": {"nom_de_la_commune": "DOUNOUX", "libell_d_acheminement": "DOUNOUX", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88157"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b26df846c6c7e6ca2b2dce62da70d01103480b82", "fields": {"nom_de_la_commune": "ELOYES", "libell_d_acheminement": "ELOYES", "code_postal": "88510", "coordonnees_gps": [48.0929897715, 6.62007230817], "code_commune_insee": "88158"}, "geometry": {"type": "Point", "coordinates": [6.62007230817, 48.0929897715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680f4c19dabce5b2a9a783b681d8b9e73c154d8b", "fields": {"nom_de_la_commune": "EPINAL", "libell_d_acheminement": "EPINAL", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88160"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f96a6574e6cd5905efdb5dfa938a8a764c6c3c7c", "fields": {"nom_de_la_commune": "FAUCOMPIERRE", "libell_d_acheminement": "FAUCOMPIERRE", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88167"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f69d8681abee14ff3872c32644d1f391a84dc5", "fields": {"nom_de_la_commune": "FIMENIL", "libell_d_acheminement": "FIMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88172"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a88bd2b9a71bf63e50aa4d6b1711004e154b10", "fields": {"nom_de_la_commune": "FONTENOY LE CHATEAU", "libell_d_acheminement": "FONTENOY LE CHATEAU", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88176"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491bde4c2cb4fafb9631d3faef528484baa0de05", "fields": {"nom_de_la_commune": "FRAPELLE", "libell_d_acheminement": "FRAPELLE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88182"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9c85bacb40f61b4671135df108e76e7dcec122", "fields": {"nom_de_la_commune": "FRENELLE LA GRANDE", "libell_d_acheminement": "FRENELLE LA GRANDE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88185"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae8261a4c960d81080a2cb676b69e91d2eedc99", "fields": {"nom_de_la_commune": "FRENOIS", "libell_d_acheminement": "FRENOIS", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88187"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8834b9698b6a622187eef65d4244ba9c72ae7611", "fields": {"nom_de_la_commune": "FRESSE SUR MOSELLE", "libell_d_acheminement": "FRESSE SUR MOSELLE", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88188"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd36c79fe2622a1f0b3dd47425e0ad8325165883", "fields": {"nom_de_la_commune": "GENDREVILLE", "libell_d_acheminement": "GENDREVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88195"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8456408add1c8c6c55213348dc4e5cb079ce035", "fields": {"nom_de_la_commune": "GERBEPAL", "libell_d_acheminement": "GERBEPAL", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88198"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c982fd0ad183f15bf0be753101103f969f94b171", "fields": {"nom_de_la_commune": "GIRONCOURT SUR VRAINE", "libell_d_acheminement": "GIRONCOURT SUR VRAINE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88206"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957b1eebd0cc7cc99bbdde130e44a47c31e881c7", "fields": {"nom_de_la_commune": "ROCHEFORT SUR LA COTE", "libell_d_acheminement": "ROCHEFORT SUR LA COTE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52428"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c6cbeb33567e6399553e8473adcdb6779709ff0", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52443"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d917fde3fb5230ed37ff3a0fe259ec92c46fd449", "fields": {"code_postal": "52200", "code_commune_insee": "52449", "libell_d_acheminement": "SAINTS GEOSMES", "ligne_5": "BALESMES SUR MARNE", "nom_de_la_commune": "SAINTS GEOSMES", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf28d09b1d885c7ecc835e7d73c76946b35113dd", "fields": {"nom_de_la_commune": "ST THIEBAULT", "libell_d_acheminement": "ST THIEBAULT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52455"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73455bf609730c5f8483a232d9858dc52f7d3fc", "fields": {"nom_de_la_commune": "SARREY", "libell_d_acheminement": "SARREY", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52461"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfcb04daee4fc6f75f6e3e9a6b48f93ebb6d811", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52467"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312b4f15b4025c545718c32bd0a298aa2776f884", "fields": {"code_postal": "52000", "code_commune_insee": "52469", "libell_d_acheminement": "SEMOUTIERS MONTSAON", "ligne_5": "MONTSAON", "nom_de_la_commune": "SEMOUTIERS MONTSAON", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa6dee44906173dbb88f56bd54eff36a040c5e9d", "fields": {"nom_de_la_commune": "SIGNEVILLE", "libell_d_acheminement": "SIGNEVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52473"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed12ffb79d60a3294aaa189d2f29a543f41d1c3", "fields": {"nom_de_la_commune": "SOMMANCOURT", "libell_d_acheminement": "SOMMANCOURT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52475"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5842ad8aeb9cb0444b6354ccbcdd941dfb5901b8", "fields": {"nom_de_la_commune": "SOMMERECOURT", "libell_d_acheminement": "SOMMERECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52476"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5361e75ff409c899c28b5111b02da1aaacadc2b9", "fields": {"code_postal": "52220", "code_commune_insee": "52479", "libell_d_acheminement": "SOMMEVOIRE", "ligne_5": "ROZIERES", "nom_de_la_commune": "SOMMEVOIRE", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a08367e70defd096d39837a3a632a16c5f2e562", "fields": {"nom_de_la_commune": "THOL LES MILLIERES", "libell_d_acheminement": "THOL LES MILLIERES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52489"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf2d25bfa685c76b89a24a07c9d7db16783b374", "fields": {"code_postal": "52130", "code_commune_insee": "52497", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "ligne_5": "FLORNOY", "nom_de_la_commune": "TROISFONTAINES LA VILLE", "coordonnees_gps": [48.5070439267, 4.95367156302]}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40016305c2fbafb2c9caff09e1f85db867934f75", "fields": {"code_postal": "52130", "code_commune_insee": "52497", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "ligne_5": "VILLIERS AUX BOIS", "nom_de_la_commune": "TROISFONTAINES LA VILLE", "coordonnees_gps": [48.5070439267, 4.95367156302]}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf31f35bbdde2db863d72e77400923232c7a98ab", "fields": {"nom_de_la_commune": "VAUDRECOURT", "libell_d_acheminement": "VAUDRECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52505"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974927fb0c248263848cf97d811115b48060ad6e", "fields": {"nom_de_la_commune": "VAUDREMONT", "libell_d_acheminement": "VAUDREMONT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52506"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6559d42c8aba6a298b2c43b1f8013e0a3c64da67", "fields": {"nom_de_la_commune": "VAUX SUR ST URBAIN", "libell_d_acheminement": "VAUX SUR ST URBAIN", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52511"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8bf4fad3c5dbca5fdb67b5b26e5f35f4bbc1267", "fields": {"nom_de_la_commune": "VESAIGNES SOUS LAFAUCHE", "libell_d_acheminement": "VESAIGNES SOUS LAFAUCHE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52517"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3b38c88fc8ce13eb175b51566edd24b7463cc5", "fields": {"nom_de_la_commune": "VESVRES SOUS CHALANCEY", "libell_d_acheminement": "VESVRES SOUS CHALANCEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52519"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dee8196ad4a744048501d306a7a59124f61c5d", "fields": {"nom_de_la_commune": "VILLE EN BLAISOIS", "libell_d_acheminement": "VILLE EN BLAISOIS", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52528"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c7ff86314d0e671047141d24b81d53cd9afd32", "fields": {"nom_de_la_commune": "VILLEGUSIEN LE LAC", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52529"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48130e7807d382b38ec61de0b179697173ac0bc2", "fields": {"code_postal": "52190", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "ST MICHEL", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c1a7567f9a4e7f9c05db6e1925d4f5616336a9", "fields": {"nom_de_la_commune": "VOISINES", "libell_d_acheminement": "VOISINES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52545"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d692a3a8764b55dd2844faa2ef3f757a2cb3b428", "fields": {"nom_de_la_commune": "VONCOURT", "libell_d_acheminement": "VONCOURT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52546"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d37410a72d7bc1437be05023229ac7e17a5f0d8", "fields": {"nom_de_la_commune": "VRAINCOURT", "libell_d_acheminement": "VRAINCOURT", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52548"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d9c4cee1bf37d38fd50db7267ef474ff3f91d1", "fields": {"nom_de_la_commune": "ARGENTON NOTRE DAME", "libell_d_acheminement": "ARGENTON NOTRE DAME", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53006"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54186693e1f06010d07ea52fefd9bb809496233f", "fields": {"nom_de_la_commune": "ARGENTRE", "libell_d_acheminement": "ARGENTRE", "code_postal": "53210", "coordonnees_gps": [48.0752567481, -0.609038039774], "code_commune_insee": "53007"}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cabc99dd94bda0d384eed1e0fe128e13638308f9", "fields": {"nom_de_la_commune": "ARQUENAY", "libell_d_acheminement": "ARQUENAY", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53009"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eddd600cd0c1d4dfeb1ff87afb672b6e74e77ad", "fields": {"nom_de_la_commune": "ATHEE", "libell_d_acheminement": "ATHEE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53012"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019b61042af92df0257ec49b5598fab0f64cbfc8", "fields": {"nom_de_la_commune": "BAIS", "libell_d_acheminement": "BAIS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53016"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd037c79ac2bcae23b7f669f12f5615e74bfa7b", "fields": {"nom_de_la_commune": "BALLEE", "libell_d_acheminement": "BALLEE", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53017"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ae877839e1f057fd5568b3a01aee2a84527396", "fields": {"nom_de_la_commune": "LA BAZOUGE DE CHEMERE", "libell_d_acheminement": "LA BAZOUGE DE CHEMERE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53022"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43dfc1ff256823ef1cc93c2aa1bef0b535de481d", "fields": {"nom_de_la_commune": "BEAULIEU SUR OUDON", "libell_d_acheminement": "BEAULIEU SUR OUDON", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53026"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd96b8837a8aefa6dc4d8b73c55686305b07d23", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53033"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e9673cc9d88e99f8f757c2efc359d5275994f1", "fields": {"nom_de_la_commune": "BONCHAMP LES LAVAL", "libell_d_acheminement": "BONCHAMP LES LAVAL", "code_postal": "53960", "coordonnees_gps": [48.0677231466, -0.698709386545], "code_commune_insee": "53034"}, "geometry": {"type": "Point", "coordinates": [-0.698709386545, 48.0677231466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ccd0165859460f764c03e46b69482cdc5fe5a2", "fields": {"nom_de_la_commune": "LE BOURGNEUF LA FORET", "libell_d_acheminement": "LE BOURGNEUF LA FORET", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53039"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7edeaa26618914259614fe4299f5745363e26b8c", "fields": {"nom_de_la_commune": "BRECE", "libell_d_acheminement": "BRECE", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53042"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a471edfa40d3e7563e21b5154efdac427fc51a3", "fields": {"nom_de_la_commune": "LA CHAPELLE RAINSOUIN", "libell_d_acheminement": "LA CHAPELLE RAINSOUIN", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53059"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ecab21b82be320d1498b7e3760b4d3c2f6f2163", "fields": {"nom_de_la_commune": "CHATILLON SUR COLMONT", "libell_d_acheminement": "CHATILLON SUR COLMONT", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53064"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930573f1c72712f0ffa8bb1249920e8106a83c9a", "fields": {"nom_de_la_commune": "COSSE LE VIVIEN", "libell_d_acheminement": "COSSE LE VIVIEN", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53077"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b331235f0db49f5ee7d5a572bf0a2637b623f597", "fields": {"nom_de_la_commune": "COURCITE", "libell_d_acheminement": "COURCITE", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53083"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1bf88fbd8a6f4743e23e88a1d0b48ac03d9ed2", "fields": {"nom_de_la_commune": "LA CROIXILLE", "libell_d_acheminement": "LA CROIXILLE", "code_postal": "53380", "coordonnees_gps": [48.2253517545, -1.00061376372], "code_commune_insee": "53086"}, "geometry": {"type": "Point", "coordinates": [-1.00061376372, 48.2253517545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c893463fd41dc0fe06b58a328d6dc4bf83eeb0c1", "fields": {"nom_de_la_commune": "LA CROPTE", "libell_d_acheminement": "LA CROPTE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53087"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af48bb9922ea174e3b0bf528e10debe121e0eb8a", "fields": {"nom_de_la_commune": "DEUX EVAILLES", "libell_d_acheminement": "DEUX EVAILLES", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53092"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ad97be0dfc4a7308122f13c81150772698f679", "fields": {"nom_de_la_commune": "ERNEE", "libell_d_acheminement": "ERNEE", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53096"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8eba32aeae1fb84532bba186f13a7376193d6f7", "fields": {"nom_de_la_commune": "FONTAINE COUVERTE", "libell_d_acheminement": "FONTAINE COUVERTE", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53098"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c178088cc03def65bdb9200fd61a40566d4feb7e", "fields": {"nom_de_la_commune": "FORCE", "libell_d_acheminement": "FORCE", "code_postal": "53260", "coordonnees_gps": [48.0032103275, -0.692724123682], "code_commune_insee": "53099"}, "geometry": {"type": "Point", "coordinates": [-0.692724123682, 48.0032103275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65258d32626773037bbcb60f315ff662c08555dc", "fields": {"nom_de_la_commune": "LA GRAVELLE", "libell_d_acheminement": "LA GRAVELLE", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53108"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7641177c62883d6eae101a6f99ae61c13b2264c", "fields": {"nom_de_la_commune": "GREZ EN BOUERE", "libell_d_acheminement": "GREZ EN BOUERE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53110"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2341a5ce00bc5846bb8159ff9120482aaf064e40", "fields": {"nom_de_la_commune": "LA HAIE TRAVERSAINE", "libell_d_acheminement": "LA HAIE TRAVERSAINE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53111"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab9e5b618c5a3c6fabd5cfb8f020f2053cb9ec3", "fields": {"nom_de_la_commune": "HARDANGES", "libell_d_acheminement": "HARDANGES", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53114"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5291f417c3cc8ff63e0dcec1ee6d79f7781b6121", "fields": {"nom_de_la_commune": "IZE", "libell_d_acheminement": "IZE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53120"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "979e8c471513e1f3a9f12fa9356efc532e86370d", "fields": {"nom_de_la_commune": "JUBLAINS", "libell_d_acheminement": "JUBLAINS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53122"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea88080e6082223067d350c9e3f895c795c0a7b", "fields": {"nom_de_la_commune": "LAIGNE", "libell_d_acheminement": "LAIGNE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53124"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2236f2545f9fc34e59d1b760d35e976290623af", "fields": {"nom_de_la_commune": "LAUNAY VILLIERS", "libell_d_acheminement": "LAUNAY VILLIERS", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53129"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409a1f826ab155a4cc1e4ac88668ff6527fd55a6", "fields": {"nom_de_la_commune": "LOIGNE SUR MAYENNE", "libell_d_acheminement": "LOIGNE SUR MAYENNE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53136"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cc63f33df83ca8397190694234032ceea163b4", "fields": {"code_postal": "53320", "code_commune_insee": "53137", "libell_d_acheminement": "LOIRON RUILLE", "ligne_5": "RUILLE LE GRAVELAIS", "nom_de_la_commune": "LOIRON RUILLE", "coordonnees_gps": [48.0269054563, -0.962440957136]}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac70f27167ad5eac1920309d3c444e84f8bf677", "fields": {"nom_de_la_commune": "LOUVIGNE", "libell_d_acheminement": "LOUVIGNE", "code_postal": "53210", "coordonnees_gps": [48.0752567481, -0.609038039774], "code_commune_insee": "53141"}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a5de598ed606c6bf50370fd6427aab0a321bf0", "fields": {"nom_de_la_commune": "MARIGNE PEUTON", "libell_d_acheminement": "MARIGNE PEUTON", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53145"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8145a562c6d8f6df607f8a5cef5d0722a036c29", "fields": {"nom_de_la_commune": "MONTENAY", "libell_d_acheminement": "MONTENAY", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53155"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480ec59b6f580fc5797f2737ac90c2eb765ba136", "fields": {"nom_de_la_commune": "MONTFLOURS", "libell_d_acheminement": "MONTFLOURS", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53156"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9c0c57495f7cc1fe7a058d011e775b95bd1e23", "fields": {"nom_de_la_commune": "MOULAY", "libell_d_acheminement": "MOULAY", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53162"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d6d531f2f2cbfc14752f3baa664428bb82a0cd", "fields": {"nom_de_la_commune": "NIAFLES", "libell_d_acheminement": "NIAFLES", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53165"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c14c4c5568d360565d90217b0ad6fcba95c7e9d", "fields": {"nom_de_la_commune": "ORIGNE", "libell_d_acheminement": "ORIGNE", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53172"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22ab0632fee7ef4501c62d761748f4fd32c3962", "fields": {"nom_de_la_commune": "LE PAS", "libell_d_acheminement": "LE PAS", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53176"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16690ba562f39277eb672cf23b7351ec1184d8a", "fields": {"nom_de_la_commune": "PEUTON", "libell_d_acheminement": "PEUTON", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53178"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8bb4d76e81b7347b9f8f7a5ba5ea3c231db128", "fields": {"nom_de_la_commune": "LA ROUAUDIERE", "libell_d_acheminement": "LA ROUAUDIERE", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53192"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f5276103ecfa7779cf1a1d8de2e3feb1f1df15", "fields": {"nom_de_la_commune": "ST AUBIN FOSSE LOUVAIN", "libell_d_acheminement": "ST AUBIN FOSSE LOUVAIN", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53199"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94fb06baae7175e15bf87c4a6768def7af644500", "fields": {"nom_de_la_commune": "ST CALAIS DU DESERT", "libell_d_acheminement": "ST CALAIS DU DESERT", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53204"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21af90c60689e6a6ed83041c03792c65e5f03661", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU LUAT", "libell_d_acheminement": "ST CHRISTOPHE DU LUAT", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53207"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d8b6aa594f783769079e7d96fe4a15c32c7e99", "fields": {"nom_de_la_commune": "ST GERMAIN D ANXURE", "libell_d_acheminement": "ST GERMAIN D ANXURE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53222"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ccf846375a1c7319d5cfe026c471261ad4a2d5", "fields": {"nom_de_la_commune": "ST GERMAIN LE GUILLAUME", "libell_d_acheminement": "ST GERMAIN LE GUILLAUME", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53225"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f546a2d73619705a5a47ef3113c3127ddfd15e", "fields": {"nom_de_la_commune": "ST JEAN SUR MAYENNE", "libell_d_acheminement": "ST JEAN SUR MAYENNE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53229"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607682254dcdf529e953b70e3dd4b23975ad19e5", "fields": {"nom_de_la_commune": "ST LAURENT DES MORTIERS", "libell_d_acheminement": "ST LAURENT DES MORTIERS", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53231"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a93fbaff2c5355ebb54c78796af3812f0f58d73", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "53480", "coordonnees_gps": [48.0582603543, -0.470360797173], "code_commune_insee": "53232"}, "geometry": {"type": "Point", "coordinates": [-0.470360797173, 48.0582603543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0289f4bccf7a87750ca51a23e0604a5e88f02e6a", "fields": {"nom_de_la_commune": "ST LOUP DU GAST", "libell_d_acheminement": "ST LOUP DU GAST", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53234"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0f2429fb0adcdd6bcc07802958e3f36924ac0e", "fields": {"nom_de_la_commune": "ST MARTIN DE CONNEE", "libell_d_acheminement": "ST MARTIN DE CONNEE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53239"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71fe1e1126f8949eb8e82fc1b81d927d60558166", "fields": {"nom_de_la_commune": "ST POIX", "libell_d_acheminement": "ST POIX", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53250"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b48f4f836dca55dc94be1c965b5623fae1eb4c", "fields": {"code_postal": "53270", "code_commune_insee": "53255", "libell_d_acheminement": "STE SUZANNE ET CHAMMES", "ligne_5": "CHAMMES", "nom_de_la_commune": "STE SUZANNE ET CHAMMES", "coordonnees_gps": [48.066547004, -0.33227388574]}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a5c566967b305f9329d1444c91074704cfbe07", "fields": {"nom_de_la_commune": "SENONNES", "libell_d_acheminement": "SENONNES", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53259"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327b1f9f8e9c4f4597502169c34265f03642c2fa", "fields": {"nom_de_la_commune": "THORIGNE EN CHARNIE", "libell_d_acheminement": "THORIGNE EN CHARNIE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53264"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c40589a30f30abe01b9830ae6641c2aa4b7699", "fields": {"nom_de_la_commune": "VAIGES", "libell_d_acheminement": "VAIGES", "code_postal": "53480", "coordonnees_gps": [48.0582603543, -0.470360797173], "code_commune_insee": "53267"}, "geometry": {"type": "Point", "coordinates": [-0.470360797173, 48.0582603543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe5286f35ec178abe1c0a3d7430a15094864541", "fields": {"nom_de_la_commune": "VIMARCE", "libell_d_acheminement": "VIMARCE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53274"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d36601f9b20b9768acc4f67c52ee7fe397f2105", "fields": {"nom_de_la_commune": "ABAUCOURT", "libell_d_acheminement": "ABAUCOURT SUR SEILLE", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54001"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c31b45c757a2e3dc19fb4ff556e9bf12cf2e49", "fields": {"nom_de_la_commune": "AFFLEVILLE", "libell_d_acheminement": "AFFLEVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54004"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a187e3351e4ac662c7dac34abb2c5ffcc1eeab81", "fields": {"nom_de_la_commune": "ALLONDRELLE LA MALMAISON", "libell_d_acheminement": "ALLONDRELLE LA MALMAISON", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54011"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cd70a41fa01c9bddd06e15b461804ed9a97e42", "fields": {"nom_de_la_commune": "AMANCE", "libell_d_acheminement": "AMANCE", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54012"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f67d59c7464e801281d52bb2545e7a5661641d", "fields": {"nom_de_la_commune": "AMENONCOURT", "libell_d_acheminement": "AMENONCOURT", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54013"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f125a19822f5634926a6b7a9d77d3659e11529a", "fields": {"nom_de_la_commune": "ANGOMONT", "libell_d_acheminement": "ANGOMONT", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54017"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8551ab57a8fadaf21528c454a890077269f09457", "fields": {"nom_de_la_commune": "ANOUX", "libell_d_acheminement": "ANOUX", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54018"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c33c2625266974846ae854e395d1fee3a8fc493a", "fields": {"nom_de_la_commune": "ANSAUVILLE", "libell_d_acheminement": "ANSAUVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54019"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dfbd5f6e5a6d5a4ab476eff5fc8ee7146caf28", "fields": {"nom_de_la_commune": "ANTHELUPT", "libell_d_acheminement": "ANTHELUPT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54020"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50dd2139096f5bf81af8f49e3b3ca3edfc603a73", "fields": {"nom_de_la_commune": "ARMAUCOURT", "libell_d_acheminement": "ARMAUCOURT", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54021"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99103c723a430ea2c080ecfae6b4bdfc2e5dcc45", "fields": {"code_postal": "54510", "code_commune_insee": "54025", "libell_d_acheminement": "ART SUR MEURTHE", "ligne_5": "BOSSERVILLE", "nom_de_la_commune": "ART SUR MEURTHE", "coordonnees_gps": [48.6692716698, 6.24903144638]}, "geometry": {"type": "Point", "coordinates": [6.24903144638, 48.6692716698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c010aaab6aa1a2bb1b99f7ea45a2702950dc92de", "fields": {"nom_de_la_commune": "AVRAINVILLE", "libell_d_acheminement": "AVRAINVILLE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54034"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce6bc7a088957e0643d0c72bd407e30ba5b0e89", "fields": {"nom_de_la_commune": "AVRIL", "libell_d_acheminement": "AVRIL", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54036"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729020c9cc6806e043b76184143e4d31c36e6f88", "fields": {"nom_de_la_commune": "AZELOT", "libell_d_acheminement": "AZELOT", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54037"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2cee5a5a1eaadf3006abacb4f518d190014af4", "fields": {"code_postal": "54120", "code_commune_insee": "54039", "libell_d_acheminement": "BACCARAT", "ligne_5": "BADMENIL", "nom_de_la_commune": "BACCARAT", "coordonnees_gps": [48.4609930612, 6.76417608089]}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e11bca07ef02cff36aefb5fc8fbd10db2e2dca", "fields": {"code_postal": "54120", "code_commune_insee": "54039", "libell_d_acheminement": "BACCARAT", "ligne_5": "CRIVILLER", "nom_de_la_commune": "BACCARAT", "coordonnees_gps": [48.4609930612, 6.76417608089]}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a038ce940e8f6e56ac73ab24862266dc714705", "fields": {"nom_de_la_commune": "BATHELEMONT", "libell_d_acheminement": "BATHELEMONT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54050"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa25011e29de507f18ff84a5c946d1b87103307c", "fields": {"nom_de_la_commune": "ST JEAN LIGOURE", "libell_d_acheminement": "ST JEAN LIGOURE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87151"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9373311096855ddf2bcfe4738517bb3c5e96fc2", "fields": {"nom_de_la_commune": "ST JOUVENT", "libell_d_acheminement": "ST JOUVENT", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87152"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776161ab984b92d7dcc95f238123703f7961a88a", "fields": {"nom_de_la_commune": "STE MARIE DE VAUX", "libell_d_acheminement": "STE MARIE DE VAUX", "code_postal": "87420", "coordonnees_gps": [45.8770915845, 1.02789715577], "code_commune_insee": "87162"}, "geometry": {"type": "Point", "coordinates": [1.02789715577, 45.8770915845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc64ea0f26e10069e2ac9ecf72678dc4bddc8258", "fields": {"nom_de_la_commune": "ST MARTIAL SUR ISOP", "libell_d_acheminement": "ST MARTIAL SUR ISOP", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87163"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58f27682eba9e1c30c9ec34faf3b5d11022f50e", "fields": {"nom_de_la_commune": "ST MARTIN LE VIEUX", "libell_d_acheminement": "ST MARTIN LE VIEUX", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87166"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1449e104432e9419fc37b61ef2912ffbab41409b", "fields": {"nom_de_la_commune": "ST MAURICE LES BROUSSES", "libell_d_acheminement": "ST MAURICE LES BROUSSES", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87169"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825ae5c3a4256feb5e78298d8b8f8090be040d67", "fields": {"nom_de_la_commune": "ST MEARD", "libell_d_acheminement": "ST MEARD", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87170"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55602d458e886defdd760120f110fae547899f8", "fields": {"nom_de_la_commune": "ST PARDOUX", "libell_d_acheminement": "ST PARDOUX", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87173"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3729a9f93df65b19370706615a278d8623e51733", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87174"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61a8b679e1f461caa41a9557d4618733095b096", "fields": {"nom_de_la_commune": "ST VITTE SUR BRIANCE", "libell_d_acheminement": "ST VITTE SUR BRIANCE", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87186"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796f583a95c87c87daaa176043b3f118fee2d35a", "fields": {"nom_de_la_commune": "ST YRIEIX LA PERCHE", "libell_d_acheminement": "ST YRIEIX LA PERCHE", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87187"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a083747cbe3df9e0cf3fe73513fd647cecefecaf", "fields": {"nom_de_la_commune": "SEREILHAC", "libell_d_acheminement": "SEREILHAC", "code_postal": "87620", "coordonnees_gps": [45.7657338512, 1.06000557027], "code_commune_insee": "87191"}, "geometry": {"type": "Point", "coordinates": [1.06000557027, 45.7657338512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e5b158c600c6aa60d3d35398dc860ece8daf08", "fields": {"nom_de_la_commune": "TERSANNES", "libell_d_acheminement": "TERSANNES", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87195"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20747449295dc6ed51bd053c47353bacc256437c", "fields": {"nom_de_la_commune": "THIAT", "libell_d_acheminement": "THIAT", "code_postal": "87320", "coordonnees_gps": [46.2450903271, 0.930736813539], "code_commune_insee": "87196"}, "geometry": {"type": "Point", "coordinates": [0.930736813539, 46.2450903271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94857b8e7995927e1a2c5cae7f87d38c5a3a0307", "fields": {"nom_de_la_commune": "VERNEUIL MOUSTIERS", "libell_d_acheminement": "VERNEUIL MOUSTIERS", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87200"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e3c4477b94ab28fa1845d72625277420c48004", "fields": {"nom_de_la_commune": "LES ABLEUVENETTES", "libell_d_acheminement": "LES ABLEUVENETTES", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88001"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c73046ca9519ac932dd730af038d7251b360ef5", "fields": {"nom_de_la_commune": "AINGEVILLE", "libell_d_acheminement": "AINGEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88003"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4040d37749d5618e76545900236c4986b8abab1f", "fields": {"nom_de_la_commune": "ANGLEMONT", "libell_d_acheminement": "ANGLEMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88008"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce9838c9123a0a6a8584c018eb1ec1f015682b7", "fields": {"nom_de_la_commune": "ANOULD", "libell_d_acheminement": "ANOULD", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88009"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2312fc248af5e4d0d70ea75d0786aada22f92cc9", "fields": {"nom_de_la_commune": "ARCHES", "libell_d_acheminement": "ARCHES", "code_postal": "88380", "coordonnees_gps": [48.1218845084, 6.52949097702], "code_commune_insee": "88011"}, "geometry": {"type": "Point", "coordinates": [6.52949097702, 48.1218845084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7436be81668cd0e5503598e0064bd4732cc5bd", "fields": {"nom_de_la_commune": "AROFFE", "libell_d_acheminement": "AROFFE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88013"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764a722c9359ce61bc47d5be4a6a69c22f4ae7ea", "fields": {"nom_de_la_commune": "ARRENTES DE CORCIEUX", "libell_d_acheminement": "ARRENTES DE CORCIEUX", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88014"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722fd9ff031909d790529d780d7394192fdec973", "fields": {"nom_de_la_commune": "ATTIGNY", "libell_d_acheminement": "ATTIGNY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88016"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad26c34d4f1e05afe6e1ed1248ab0a5f1dc3a74", "fields": {"nom_de_la_commune": "AUZAINVILLIERS", "libell_d_acheminement": "AUZAINVILLIERS", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88022"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb87b8189867c231f00e851cca826973599eb83", "fields": {"nom_de_la_commune": "LA BAFFE", "libell_d_acheminement": "LA BAFFE", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88028"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e2f3bbdb475b6b934116fbb93ac0064d69e6b6", "fields": {"nom_de_la_commune": "BAINS LES BAINS", "libell_d_acheminement": "BAINS LES BAINS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88029"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d10d53e5093fbacbd76ae9cab3fef93351a55a", "fields": {"nom_de_la_commune": "BALLEVILLE", "libell_d_acheminement": "BALLEVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88031"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7d41c07e83e1c316ce082b479a506849ab1555", "fields": {"nom_de_la_commune": "BARBEY SEROUX", "libell_d_acheminement": "BARBEY SEROUX", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88035"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b8e14548993504a267b3975b98f8e6e2569f9e1", "fields": {"nom_de_la_commune": "BARVILLE", "libell_d_acheminement": "BARVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88036"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24def93d5d76ac8169c070fbea26edeb1f937069", "fields": {"nom_de_la_commune": "BAUDRICOURT", "libell_d_acheminement": "BAUDRICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88039"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f53858d9b048dbfd15eaff216616bb0ee6a6cd8", "fields": {"nom_de_la_commune": "BAZIEN", "libell_d_acheminement": "BAZIEN", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88042"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e61568ac0383a27ea0650f4565a1875ad939b648", "fields": {"nom_de_la_commune": "BEAUMENIL", "libell_d_acheminement": "BEAUMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88046"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7040685ef052e5870710dc66d1c86a89de889055", "fields": {"nom_de_la_commune": "BONVILLET", "libell_d_acheminement": "BONVILLET", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88065"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98455f2e40994a8feea9a40b153586dcdf798bb", "fields": {"nom_de_la_commune": "BOULAINCOURT", "libell_d_acheminement": "BOULAINCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88066"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a058181dc15a2eb6ea4158ac3f23ddd32d1e8e60", "fields": {"nom_de_la_commune": "BOUXURULLES", "libell_d_acheminement": "BOUXURULLES", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88070"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131f68e51e68cfffdd04451f37205b7e31a4c4c1", "fields": {"nom_de_la_commune": "LA BRESSE", "libell_d_acheminement": "LA BRESSE", "code_postal": "88250", "coordonnees_gps": [48.0183127262, 6.92557093331], "code_commune_insee": "88075"}, "geometry": {"type": "Point", "coordinates": [6.92557093331, 48.0183127262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95825c2f92b0782add2919e9262643270ddae7cd", "fields": {"nom_de_la_commune": "CHAMP LE DUC", "libell_d_acheminement": "CHAMP LE DUC", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88086"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b2f38abbe5e8c7fc8dd814ea379eb3519f1a45", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX BOIS", "libell_d_acheminement": "LA CHAPELLE AUX BOIS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88088"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3c3c246ec5d6154194ffddaf32006c364ef6a7", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88095"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b27691cde91053f7bbba7036e4e75c4a415c90", "fields": {"code_postal": "88170", "code_commune_insee": "88095", "libell_d_acheminement": "CHATENOIS", "ligne_5": "VALAINCOURT", "nom_de_la_commune": "CHATENOIS", "coordonnees_gps": [48.3247219784, 5.86762951575]}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3aa0f00c03db16ef629bde4f16cecb7dc7371e6", "fields": {"nom_de_la_commune": "CHAVELOT", "libell_d_acheminement": "CHAVELOT", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88099"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84fdac778a02f52590ced3317f3bb998007a302c", "fields": {"nom_de_la_commune": "CHENIMENIL", "libell_d_acheminement": "CHENIMENIL", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88101"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04b70b0c71dde4f8dc7b8252fc39e22aa4e71e4", "fields": {"nom_de_la_commune": "CHERMISEY", "libell_d_acheminement": "CHERMISEY", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88102"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d404b7dfe9b62c50729c0c4cffa9c929991a069b", "fields": {"nom_de_la_commune": "CLEURIE", "libell_d_acheminement": "CLEURIE", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88109"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cbf21f351da29f93f9e4a30ef17dd9b7779637", "fields": {"nom_de_la_commune": "COMBRIMONT", "libell_d_acheminement": "COMBRIMONT", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88113"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0a6eea8a4528da558230ce88761ab281a4394a1", "fields": {"nom_de_la_commune": "DENIPAIRE", "libell_d_acheminement": "DENIPAIRE", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88128"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15366a14b42654db1d61e83cba461a53e2e5845c", "fields": {"nom_de_la_commune": "DIGNONVILLE", "libell_d_acheminement": "DIGNONVILLE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88133"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3401391df18140f325998cae5935269282b047c9", "fields": {"nom_de_la_commune": "DOGNEVILLE", "libell_d_acheminement": "DOGNEVILLE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88136"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4594bdd2a35b1b1c05cb18dfe597f330aab4a789", "fields": {"nom_de_la_commune": "DOMBASLE DEVANT DARNEY", "libell_d_acheminement": "DOMBASLE DEVANT DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88138"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efb7797f252e53678c6b279acb7b401b710c84d", "fields": {"nom_de_la_commune": "DOMBASLE EN XAINTOIS", "libell_d_acheminement": "DOMBASLE EN XAINTOIS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88139"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138a7e31742e94b8bc73693ba186298bf8856560", "fields": {"nom_de_la_commune": "DOMEVRE SUR AVIERE", "libell_d_acheminement": "DOMEVRE SUR AVIERE", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88142"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a5a55653f0632795b4e99fbd7d03931e18b29d", "fields": {"nom_de_la_commune": "DOMEVRE SUR DURBION", "libell_d_acheminement": "DOMEVRE SUR DURBION", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88143"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3ff50e546c2f0a53c485402300c545d124c539", "fields": {"code_postal": "88800", "code_commune_insee": "88146", "libell_d_acheminement": "DOMJULIEN", "ligne_5": "GIROVILLERS SOUS MONTFORT", "nom_de_la_commune": "DOMJULIEN", "coordonnees_gps": [48.2141678531, 5.97354505837]}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7f7ff2781141ae8ae1ac8122a3a862d6b1e4d9", "fields": {"nom_de_la_commune": "DOMMARTIN SUR VRAINE", "libell_d_acheminement": "DOMMARTIN SUR VRAINE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88150"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99dcde4813568adc2752cbdbc58c0d2fb1f08227", "fields": {"nom_de_la_commune": "ENTRE DEUX EAUX", "libell_d_acheminement": "ENTRE DEUX EAUX", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88159"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1b1bc4c146ee1a595157d59d0cb9897019c224", "fields": {"nom_de_la_commune": "ESCLES", "libell_d_acheminement": "ESCLES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88161"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a427014b9f0983348181b3d65ba2f0e49b91b4a4", "fields": {"nom_de_la_commune": "ESLEY", "libell_d_acheminement": "ESLEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88162"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014ec30a7894d4dc7987ebe3aa4368eb4b8bea82", "fields": {"nom_de_la_commune": "ESTRENNES", "libell_d_acheminement": "ESTRENNES", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88164"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb98fbead12b2b01fb1472bf433fb5fae9cfcc1", "fields": {"nom_de_la_commune": "EVAUX ET MENIL", "libell_d_acheminement": "EVAUX ET MENIL", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88166"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839680d8d0356b6d8acff95c719cc068f18d51b4", "fields": {"nom_de_la_commune": "FAUCONCOURT", "libell_d_acheminement": "FAUCONCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88168"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d336413415d3e52d81d6e2c00d16bdc6dd5649", "fields": {"nom_de_la_commune": "FIGNEVELLE", "libell_d_acheminement": "FIGNEVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88171"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16a264ab0ffa74e92624224ecf78dd3c9879265", "fields": {"nom_de_la_commune": "FOMEREY", "libell_d_acheminement": "FOMEREY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88174"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef51a1c586da6d2b2d5ac7b928ced916628661a", "fields": {"nom_de_la_commune": "FOUCHECOURT", "libell_d_acheminement": "FOUCHECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88179"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdf4cbd9b93a3ecea6aa3ea31bb6bab3eb79920", "fields": {"code_postal": "88270", "code_commune_insee": "88192", "libell_d_acheminement": "GELVECOURT ET ADOMPT", "ligne_5": "ADOMPT", "nom_de_la_commune": "GELVECOURT ET ADOMPT", "coordonnees_gps": [48.1930149625, 6.21842096929]}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec19e9f0f6c2012c6c0da5b0cf9c831a96f0846", "fields": {"nom_de_la_commune": "GEMMELAINCOURT", "libell_d_acheminement": "GEMMELAINCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88194"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecce6bd6a0223d112c828c57042f8b328a8f91f7", "fields": {"nom_de_la_commune": "GIGNEY", "libell_d_acheminement": "GIGNEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88200"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cb88f11eeb667515c350cddfa4e76583eadb02", "fields": {"nom_de_la_commune": "GIRMONT VAL D AJOL", "libell_d_acheminement": "GIRMONT VAL D AJOL", "code_postal": "88340", "coordonnees_gps": [47.9435376979, 6.51696802708], "code_commune_insee": "88205"}, "geometry": {"type": "Point", "coordinates": [6.51696802708, 47.9435376979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c3d319c5284b6072a8e4c6ec52c44f46624cbc", "fields": {"nom_de_la_commune": "HADIGNY LES VERRIERES", "libell_d_acheminement": "HADIGNY LES VERRIERES", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88224"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4e9582e70c484be8bd2231d35ac3ddf10ef5e1", "fields": {"nom_de_la_commune": "HAILLAINVILLE", "libell_d_acheminement": "HAILLAINVILLE", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88228"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1750b70c4993a02006f0badffb336f4647020143", "fields": {"nom_de_la_commune": "HARDANCOURT", "libell_d_acheminement": "HARDANCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88230"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03f21c95dedd02c556a806acdf8e691800010ab", "fields": {"nom_de_la_commune": "HAREVILLE", "libell_d_acheminement": "HAREVILLE", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88231"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0195a94fc1bb1aa2fd7e914cc74b39994658a682", "fields": {"nom_de_la_commune": "HAROL", "libell_d_acheminement": "HAROL", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88233"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1108370b17370d4cd80a82fe299a2e64cd0d486", "fields": {"nom_de_la_commune": "HENNECOURT", "libell_d_acheminement": "HENNECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88237"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ba14c068be5c619427427f99f952a30640dad3", "fields": {"nom_de_la_commune": "HURBACHE", "libell_d_acheminement": "HURBACHE", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88245"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9285f12cc7c5f0d11f11908e8308db32557bc667", "fields": {"nom_de_la_commune": "JESONVILLE", "libell_d_acheminement": "JESONVILLE", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88252"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d788651e6925b713fb8caae5eb702e14b30cd8", "fields": {"nom_de_la_commune": "LERRAIN", "libell_d_acheminement": "LERRAIN", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88267"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281773844d4c4047b54e6cfa356f444843b1c9cf", "fields": {"nom_de_la_commune": "LIGNEVILLE", "libell_d_acheminement": "LIGNEVILLE", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88271"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fe57491a1eb00f4fe7d40aa374d33f80572b8d", "fields": {"nom_de_la_commune": "LUSSE", "libell_d_acheminement": "LUSSE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88276"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba70074c376daff1e24251a04532e2b1e7c33e9", "fields": {"nom_de_la_commune": "MACONCOURT", "libell_d_acheminement": "MACONCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88278"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e716df9f0b98032eb5f251d67d2836ba63251c", "fields": {"nom_de_la_commune": "MADEGNEY", "libell_d_acheminement": "MADEGNEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88280"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13776f2d0f45b3c1e2cc4ceed1d0a10a7aea5527", "fields": {"nom_de_la_commune": "MANDRAY", "libell_d_acheminement": "MANDRAY", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88284"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231aba418fa8c81686950e28389bb49699943f9e", "fields": {"nom_de_la_commune": "MANDRES SUR VAIR", "libell_d_acheminement": "MANDRES SUR VAIR", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88285"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105f96ba02bbd09def2861eaa0aaf17201a6a951", "fields": {"nom_de_la_commune": "MAZIROT", "libell_d_acheminement": "MAZIROT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88295"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2383d69aef715a2a7fafd2227b786914f532e9d", "fields": {"nom_de_la_commune": "MIDREVAUX", "libell_d_acheminement": "MIDREVAUX", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88303"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd226e5c2213a3cfe9248ca6c88a203ea6cda244", "fields": {"nom_de_la_commune": "MONTHUREUX SUR SAONE", "libell_d_acheminement": "MONTHUREUX SUR SAONE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88310"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a091f1a571814034db9f7f9b13f81a3ffaee97", "fields": {"nom_de_la_commune": "MOYENMOUTIER", "libell_d_acheminement": "MOYENMOUTIER", "code_postal": "88420", "coordonnees_gps": [48.384833761, 6.9174645421], "code_commune_insee": "88319"}, "geometry": {"type": "Point", "coordinates": [6.9174645421, 48.384833761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc18f2cc42500a89d0cf581f8e9a44a49b34033", "fields": {"nom_de_la_commune": "LA NEUVEVILLE SOUS MONTFORT", "libell_d_acheminement": "LA NEUVEVILLE SOUS MONTFORT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88325"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a68c7d474e7a3fc7169d70a2ae129cf51f1bb3f", "fields": {"nom_de_la_commune": "PARGNY SOUS MUREAU", "libell_d_acheminement": "PARGNY SOUS MUREAU", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88344"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe8aa255af5ac4fe0df2f3bb3ca0a86268e8ab9", "fields": {"code_postal": "88370", "code_commune_insee": "88351", "libell_d_acheminement": "PLOMBIERES LES BAINS", "ligne_5": "GRANGES DE PLOMBIERES", "nom_de_la_commune": "PLOMBIERES LES BAINS", "coordonnees_gps": [47.9937026909, 6.4494827214]}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e0aeaf38700d805c7b0ca68ac63a35dcd713ef", "fields": {"nom_de_la_commune": "PROVENCHERES ET COLROY", "libell_d_acheminement": "PROVENCHERES ET COLROY", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88361"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2723877404efea4c644296856d1e06c423da54b4", "fields": {"nom_de_la_commune": "PUNEROT", "libell_d_acheminement": "PUNEROT", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88363"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb725e29316e3a44968dc4d7e37629956098bb92", "fields": {"code_postal": "88110", "code_commune_insee": "88372", "libell_d_acheminement": "RAON L ETAPE", "ligne_5": "LA TROUCHE", "nom_de_la_commune": "RAON L ETAPE", "coordonnees_gps": [48.4500564784, 6.97091495001]}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b45d5165cd00588714041fa7e52edd2eb26c3666", "fields": {"nom_de_la_commune": "REBEUVILLE", "libell_d_acheminement": "REBEUVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88376"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988a993a729805851a9e8e4e5733ff2174946b24", "fields": {"nom_de_la_commune": "REHAINCOURT", "libell_d_acheminement": "REHAINCOURT", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88379"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f42a29dd9e8fd7584a6257c1369117fc382ed7b4", "fields": {"nom_de_la_commune": "REMICOURT", "libell_d_acheminement": "REMICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88382"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f02ee4d1c829cb9ef8954fe90b9a3df54170e5bb", "fields": {"nom_de_la_commune": "ROBECOURT", "libell_d_acheminement": "ROBECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88390"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81edb2841168b0f1f843631ec58042336a6eb8c0", "fields": {"nom_de_la_commune": "ROUVRES LA CHETIVE", "libell_d_acheminement": "ROUVRES LA CHETIVE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88401"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "388af726af0cb14999bed74f84a99c1281046af9", "fields": {"nom_de_la_commune": "ST AME", "libell_d_acheminement": "ST AME", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88409"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08eaf75f42c5abd3cb1f5bbe3bbc70050f20524", "fields": {"nom_de_la_commune": "ST ETIENNE LES REMIREMONT", "libell_d_acheminement": "ST ETIENNE LES REMIREMONT", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88415"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a509af0fc204ab8f9e9cbcd2e2fca748f8152c6f", "fields": {"nom_de_la_commune": "ST MENGE", "libell_d_acheminement": "ST MENGE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88427"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b37b5c5cb45bdc6c92025f2641ae1f70bf26cd", "fields": {"nom_de_la_commune": "MEDAN", "libell_d_acheminement": "MEDAN", "code_postal": "78670", "coordonnees_gps": [48.943861939, 1.99265985453], "code_commune_insee": "78384"}, "geometry": {"type": "Point", "coordinates": [1.99265985453, 48.943861939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ee93f6f162b2eee61ae819203aea050b461d45", "fields": {"nom_de_la_commune": "MEZIERES SUR SEINE", "libell_d_acheminement": "MEZIERES SUR SEINE", "code_postal": "78970", "coordonnees_gps": [48.9531128559, 1.78304633175], "code_commune_insee": "78402"}, "geometry": {"type": "Point", "coordinates": [1.78304633175, 48.9531128559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6818834ef507a0d4aea353252c721523253a1bc5", "fields": {"nom_de_la_commune": "MILLEMONT", "libell_d_acheminement": "MILLEMONT", "code_postal": "78940", "coordonnees_gps": [48.8051176494, 1.74709379357], "code_commune_insee": "78404"}, "geometry": {"type": "Point", "coordinates": [1.74709379357, 48.8051176494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f75cc48a39915b6c58e86c1abea84d615c0e58e", "fields": {"nom_de_la_commune": "MONTALET LE BOIS", "libell_d_acheminement": "MONTALET LE BOIS", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78416"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efe5f202af4f5f6005938cac78b8702accf1c9c", "fields": {"nom_de_la_commune": "MONTIGNY LE BRETONNEUX", "libell_d_acheminement": "MONTIGNY LE BRETONNEUX", "code_postal": "78180", "coordonnees_gps": [48.7795996738, 2.0299480585], "code_commune_insee": "78423"}, "geometry": {"type": "Point", "coordinates": [2.0299480585, 48.7795996738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a4fbc4e413805da9c7e5c9b71ca67d56c5b0c4", "fields": {"nom_de_la_commune": "ORCEMONT", "libell_d_acheminement": "ORCEMONT", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78464"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7eb020024bfb986ad8896684cac201514d09b7", "fields": {"nom_de_la_commune": "ORGERUS", "libell_d_acheminement": "ORGERUS", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78465"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0601624a53b7b1e5e99520dd509c1506d36cb261", "fields": {"nom_de_la_commune": "PERDREAUVILLE", "libell_d_acheminement": "PERDREAUVILLE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78484"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cbd6a922d7eb11ed45fa6f3bcc90a235048ece", "fields": {"code_postal": "78300", "code_commune_insee": "78498", "libell_d_acheminement": "POISSY", "ligne_5": "LA MALADRERIE", "nom_de_la_commune": "POISSY", "coordonnees_gps": [48.9238513521, 2.02821434005]}, "geometry": {"type": "Point", "coordinates": [2.02821434005, 48.9238513521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3669da01e3f95a45b0fc93af086f2715aca1dd", "fields": {"nom_de_la_commune": "PRUNAY EN YVELINES", "libell_d_acheminement": "PRUNAY EN YVELINES", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78506"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02806a4849bfefee0a045b2d0b52da65d0fdb58d", "fields": {"nom_de_la_commune": "ST ILLIERS LA VILLE", "libell_d_acheminement": "ST ILLIERS LA VILLE", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78558"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76061a8ba5aa5165002f0cef0a0437d751b290ce", "fields": {"nom_de_la_commune": "ST ILLIERS LE BOIS", "libell_d_acheminement": "ST ILLIERS LE BOIS", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78559"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e824da9c4956719d325cb551e98b83b8cf06ba63", "fields": {"nom_de_la_commune": "ST LEGER EN YVELINES", "libell_d_acheminement": "ST LEGER EN YVELINES", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78562"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f84e6dba5408450d17083f9d033f8b325b20e91", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78565"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc7f091879aec25962ea7ca97e12f9de02068d3", "fields": {"nom_de_la_commune": "SARTROUVILLE", "libell_d_acheminement": "SARTROUVILLE", "code_postal": "78500", "coordonnees_gps": [48.9397247823, 2.17441540243], "code_commune_insee": "78586"}, "geometry": {"type": "Point", "coordinates": [2.17441540243, 48.9397247823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd589ee679a260e2dfa874e611290074771f1ad", "fields": {"nom_de_la_commune": "TILLY", "libell_d_acheminement": "TILLY", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78618"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1daa556501fbbcdbbfeb6879980d23ad4b85c4dc", "fields": {"nom_de_la_commune": "TRAPPES", "libell_d_acheminement": "TRAPPES", "code_postal": "78190", "coordonnees_gps": [48.7759760878, 1.99412661835], "code_commune_insee": "78621"}, "geometry": {"type": "Point", "coordinates": [1.99412661835, 48.7759760878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdbb4aa181d98f6110f5af8a24f7aee28b174c6", "fields": {"nom_de_la_commune": "LE TREMBLAY SUR MAULDRE", "libell_d_acheminement": "LE TREMBLAY SUR MAULDRE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78623"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff38e73ef0392f54d4157b42f06c7d441bb49b1", "fields": {"nom_de_la_commune": "LA VERRIERE", "libell_d_acheminement": "LA VERRIERE", "code_postal": "78320", "coordonnees_gps": [48.7362483478, 1.95125411115], "code_commune_insee": "78644"}, "geometry": {"type": "Point", "coordinates": [1.95125411115, 48.7362483478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3204e9684ee13af461c79514b5d22d39d136b696", "fields": {"nom_de_la_commune": "VERSAILLES", "libell_d_acheminement": "VERSAILLES", "code_postal": "78000", "coordonnees_gps": [48.8023412582, 2.11714488156], "code_commune_insee": "78646"}, "geometry": {"type": "Point", "coordinates": [2.11714488156, 48.8023412582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa08cfaf93f86c4a829981b2877f86681435bfc0", "fields": {"nom_de_la_commune": "LA VILLENEUVE EN CHEVRIE", "libell_d_acheminement": "LA VILLENEUVE EN CHEVRIE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78668"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086fe0c1fee93a819e52a5ced8d4b176f005b69d", "fields": {"nom_de_la_commune": "L ABSIE", "libell_d_acheminement": "L ABSIE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79001"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aaa629d2ca5d26433a8f933608357daf83adfe2", "fields": {"code_postal": "79600", "code_commune_insee": "79005", "libell_d_acheminement": "AIRVAULT", "ligne_5": "BORCQ SUR AIRVAULT", "nom_de_la_commune": "AIRVAULT", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca017a4d2a27f4d437ffb31754ab64fd16224ae7", "fields": {"nom_de_la_commune": "LES ALLEUDS", "libell_d_acheminement": "LES ALLEUDS", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79006"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e923ae93bc871247579abda2d5c7537ca554589d", "fields": {"nom_de_la_commune": "ARDIN", "libell_d_acheminement": "ARDIN", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79012"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9a6358349d224c6609c60637785f25fc3e97d9", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "BOESSE", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd65d6aef88fec46e4ee8a007507998ba142617", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "LA COUDRE", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd110ca4df2a55ba6405cf6759d77569e07f4146", "fields": {"nom_de_la_commune": "BELLEVILLE", "libell_d_acheminement": "BELLEVILLE", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79033"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a486929ed3536623d11363eefcf9b767d187ad0", "fields": {"nom_de_la_commune": "BOISME", "libell_d_acheminement": "BOISME", "code_postal": "79300", "coordonnees_gps": [46.8619599412, -0.471600678729], "code_commune_insee": "79038"}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd44cb0afddf32688d044cf3fa4bf8d85e2e909e", "fields": {"nom_de_la_commune": "BOISSEROLLES", "libell_d_acheminement": "BOISSEROLLES", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79039"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61da4fa7b4f9c9938fef21f4db81d2f543eb5ce", "fields": {"nom_de_la_commune": "LA BOISSIERE EN GATINE", "libell_d_acheminement": "LA BOISSIERE EN GATINE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79040"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62a134e263322a5292854c49b5275f0163b154d", "fields": {"nom_de_la_commune": "BOUILLE ST PAUL", "libell_d_acheminement": "BOUILLE ST PAUL", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79044"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9dea0f146e54ddf181c266195b47f64baf9b230", "fields": {"nom_de_la_commune": "BOUSSAIS", "libell_d_acheminement": "BOUSSAIS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79047"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d72bf5fe145629df37c4046b779fc722135652", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "BREUIL CHAUSSEE", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c097356561c4a8dd82cdbd62c65157d84f0bea", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "CHAMBROUTET", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cab0dacca376ac15287593fb8c7c3aa4eb484f", "fields": {"nom_de_la_commune": "BRIOUX SUR BOUTONNE", "libell_d_acheminement": "BRIOUX SUR BOUTONNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79057"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fee4b6970b46cc5f0936f5fb2615a33178f8390", "fields": {"nom_de_la_commune": "LE BUSSEAU", "libell_d_acheminement": "LE BUSSEAU", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79059"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e3fde71079b7957750e19293c05b3a6b6238a0", "fields": {"nom_de_la_commune": "CERIZAY", "libell_d_acheminement": "CERIZAY", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79062"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700b16ca38b48cb66f6fa6a18601e6f202c18e5b", "fields": {"code_postal": "79290", "code_commune_insee": "79063", "libell_d_acheminement": "CERSAY", "ligne_5": "ST PIERRE A CHAMP", "nom_de_la_commune": "CERSAY", "coordonnees_gps": [47.061559842, -0.28224777481]}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d542c224de8389ae2a56950fb4fd2c3c5261147d", "fields": {"code_postal": "79220", "code_commune_insee": "79066", "libell_d_acheminement": "CHAMPDENIERS ST DENIS", "ligne_5": "CHAMPEAUX", "nom_de_la_commune": "CHAMPDENIERS ST DENIS", "coordonnees_gps": [46.4780154702, -0.409601333646]}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a9ae53f7284557552e9781aac1070ee0c5be975", "fields": {"nom_de_la_commune": "CHANTECORPS", "libell_d_acheminement": "CHANTECORPS", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79068"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e066c328433563d008e0c4652139c057d2c0ee68", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LAURENT", "libell_d_acheminement": "LA CHAPELLE ST LAURENT", "code_postal": "79430", "coordonnees_gps": [46.732474913, -0.465624571062], "code_commune_insee": "79076"}, "geometry": {"type": "Point", "coordinates": [-0.465624571062, 46.732474913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54000c0f8100a47df2326079f14333893d174bcc", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "LE TEMPLE", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9770b5a20e655d71208e3ecf942e550f02aa2b", "fields": {"nom_de_la_commune": "COMBRAND", "libell_d_acheminement": "COMBRAND", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79096"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a638d3667ffff98c5375b1e07ccfa3092ef04e", "fields": {"nom_de_la_commune": "COURLAY", "libell_d_acheminement": "COURLAY", "code_postal": "79440", "coordonnees_gps": [46.7823358982, -0.577587095421], "code_commune_insee": "79103"}, "geometry": {"type": "Point", "coordinates": [-0.577587095421, 46.7823358982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c550e95257e0bf57ad446d1f6d7070b392e97fb", "fields": {"nom_de_la_commune": "CREZIERES", "libell_d_acheminement": "CREZIERES", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79107"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97dcf12219d467aed3cce25b42673819f63037e1", "fields": {"nom_de_la_commune": "DOUX", "libell_d_acheminement": "DOUX", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79108"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb059a6b11b6da72f4ed41dc7ce321fdcf59b5e5", "fields": {"nom_de_la_commune": "ENSIGNE", "libell_d_acheminement": "ENSIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79111"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55218cb12612a7ce07e129891575864e223a1d3c", "fields": {"nom_de_la_commune": "FAYE L ABBESSE", "libell_d_acheminement": "FAYE L ABBESSE", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79116"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "215dd7c5f7592ea2aaa63c97fcf52546e3650536", "fields": {"nom_de_la_commune": "LA FERRIERE EN PARTHENAY", "libell_d_acheminement": "LA FERRIERE EN PARTHENAY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79120"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0591aa51758bb586474439ccab2a5f44607726e9", "fields": {"nom_de_la_commune": "GOURGE", "libell_d_acheminement": "GOURGE", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79135"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1df2254330fc1b9e8fe2b902a8704f0ae13953e6", "fields": {"code_postal": "79110", "code_commune_insee": "79136", "libell_d_acheminement": "GOURNAY LOIZE", "ligne_5": "LOIZE", "nom_de_la_commune": "GOURNAY LOIZE", "coordonnees_gps": [46.0796792551, -0.0776262361776]}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8fb1f52341c702d45d21b8dbf01ec37d2471ea", "fields": {"code_postal": "79360", "code_commune_insee": "79137", "libell_d_acheminement": "GRANZAY GRIPT", "ligne_5": "GRIPT", "nom_de_la_commune": "GRANZAY GRIPT", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dfbac9c44d1e05e1a33d6899683edfaf2d433d1", "fields": {"nom_de_la_commune": "LAGEON", "libell_d_acheminement": "LAGEON", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79145"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0b9dac1d964a1115d51e60b224aff12dfceb8c", "fields": {"nom_de_la_commune": "LARGEASSE", "libell_d_acheminement": "LARGEASSE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79147"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b75011d3897b4b44fb2c67c69fb0071dcc086e", "fields": {"nom_de_la_commune": "MAISONNAY", "libell_d_acheminement": "MAISONNAY", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79164"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fc8456d44c2e090ad03cb512c58f32e8bbfd37", "fields": {"nom_de_la_commune": "MAUZE THOUARSAIS", "libell_d_acheminement": "MAUZE THOUARSAIS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79171"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d982e9a04ffa20dcc7705a927ed31ea88b2d9692", "fields": {"nom_de_la_commune": "MELLE", "libell_d_acheminement": "MELLE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79174"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae6f83602bc9c5c56617ae88f3418b8f6502e94", "fields": {"nom_de_la_commune": "MELLERAN", "libell_d_acheminement": "MELLERAN", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79175"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4195615469a5f06f40dea6dcd1f25a61fc9b181e", "fields": {"nom_de_la_commune": "MISSE", "libell_d_acheminement": "MISSE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79178"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6dd415aec5b607ecfc7429932994545a4b236f8", "fields": {"nom_de_la_commune": "MONTALEMBERT", "libell_d_acheminement": "MONTALEMBERT", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79180"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f336e180c23a384609f59bcf48b84ed14d889a0d", "fields": {"nom_de_la_commune": "MOUTIERS SOUS CHANTEMERLE", "libell_d_acheminement": "MOUTIERS SOUS CHANTEMERLE", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79188"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cbd0ac3ef6f336d39e257b8f2d7afb9ab62ac25", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "ST FLORENT", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04d5e0256b0476a85fdd8d21730e4e92e3fa0af", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "ST LIGUAIRE", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc02e8f30b3f9554e0f01665eb340eca002e4b0", "fields": {"nom_de_la_commune": "NUEIL LES AUBIERS", "libell_d_acheminement": "NUEIL LES AUBIERS", "code_postal": "79250", "coordonnees_gps": [46.9407689658, -0.596288357237], "code_commune_insee": "79195"}, "geometry": {"type": "Point", "coordinates": [-0.596288357237, 46.9407689658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4656dcb063c15895132f376bcd2478864ed423c4", "fields": {"nom_de_la_commune": "POMPAIRE", "libell_d_acheminement": "POMPAIRE", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79213"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff62d69f1e773a2dba28ead8b41454cad5b8119", "fields": {"nom_de_la_commune": "POUFFONDS", "libell_d_acheminement": "POUFFONDS", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79214"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d36e0043c7961a778a1756653bad8fe8672380", "fields": {"nom_de_la_commune": "POUGNE HERISSON", "libell_d_acheminement": "POUGNE HERISSON", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79215"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6595b311a804e73ca8504645be63ea91f5f825e", "fields": {"nom_de_la_commune": "PRIN DEYRANCON", "libell_d_acheminement": "PRIN DEYRANCON", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79220"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3850051d513da407ab6beb6e35bd763ff71d7c50", "fields": {"nom_de_la_commune": "ROMANS", "libell_d_acheminement": "ROMANS", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79231"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5f2bb678a4b0c4ba427e006bf09a02ee4b5d3a", "fields": {"nom_de_la_commune": "ST AUBIN DU PLAIN", "libell_d_acheminement": "ST AUBIN DU PLAIN", "code_postal": "79300", "coordonnees_gps": [46.8619599412, -0.471600678729], "code_commune_insee": "79238"}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3563866cef37a0533da5c4c8c1c34d1b7fc029a8", "fields": {"nom_de_la_commune": "STE BLANDINE", "libell_d_acheminement": "STE BLANDINE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79240"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2874f296574c2b038e4843ed78512ec8abedbe", "fields": {"code_postal": "79150", "code_commune_insee": "79242", "libell_d_acheminement": "VOULMENTIN", "ligne_5": "VOULTEGON", "nom_de_la_commune": "VOULMENTIN", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89f0de8cf1779fd35c5c3a769b046dba45036e", "fields": {"nom_de_la_commune": "ST JEAN DE THOUARS", "libell_d_acheminement": "ST JEAN DE THOUARS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79259"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00bfc3d584c69cb930d4464eda4c36a56e3d71d", "fields": {"nom_de_la_commune": "ST JOUIN DE MARNES", "libell_d_acheminement": "ST JOUIN DE MARNES", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79260"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368d741c8be9a00d0cba2b3715799683c0618326", "fields": {"code_postal": "79600", "code_commune_insee": "79268", "libell_d_acheminement": "ST LOUP LAMAIRE", "ligne_5": "LAMAIRE", "nom_de_la_commune": "ST LOUP LAMAIRE", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4505336d0bb609255327a54a50e2b3386ecb65b0", "fields": {"nom_de_la_commune": "ST MAIXENT L ECOLE", "libell_d_acheminement": "ST MAIXENT L ECOLE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79270"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030f5b6d9e5d77d8fcac3a114925d0424aea05e3", "fields": {"nom_de_la_commune": "ST MARC LA LANDE", "libell_d_acheminement": "ST MARC LA LANDE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79271"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c3feae68b4b2539321aa606d681314263001b6", "fields": {"nom_de_la_commune": "ST MARTIN DE BERNEGOUE", "libell_d_acheminement": "ST MARTIN DE BERNEGOUE", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79273"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faddc7e512b033b9148743cbc5cf215d3240d556", "fields": {"nom_de_la_commune": "ST MARTIN DE MACON", "libell_d_acheminement": "ST MARTIN DE MACON", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79274"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d3ab11c3fd99017d422c6c484fa8679c2c3760", "fields": {"nom_de_la_commune": "ST MARTIN DU FOUILLOUX", "libell_d_acheminement": "ST MARTIN DU FOUILLOUX", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79278"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6d2d32184e12372534f9ff3164b7754c9330f6d", "fields": {"nom_de_la_commune": "ST MAURICE ETUSSON", "libell_d_acheminement": "ST MAURICE ETUSSON", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79280"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851c2e2963951c9621459f5e62842955cdba0f2e", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79293"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c585772ee3539308a19083175789dd0d588e637", "fields": {"nom_de_la_commune": "SANSAIS", "libell_d_acheminement": "SANSAIS", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79304"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54356dc817a9b5bb279ec4b52a02fd2ab09de8f1", "fields": {"nom_de_la_commune": "SAURAIS", "libell_d_acheminement": "SAURAIS", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79306"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7adde477a9fd938aaa30928ff5f5abb4f8677de", "fields": {"nom_de_la_commune": "SCILLE", "libell_d_acheminement": "SCILLE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79309"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdc38281a92febd29425b3ebeb34503385942de", "fields": {"nom_de_la_commune": "SEPVRET", "libell_d_acheminement": "SEPVRET", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79313"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9e82d86efdeffe187359a6dde146964145f605", "fields": {"nom_de_la_commune": "THENEZAY", "libell_d_acheminement": "THENEZAY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79326"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9a68926eb30a6bd435eab8d8d9b577a5f2dd1c", "fields": {"nom_de_la_commune": "VANZAY", "libell_d_acheminement": "VANZAY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79338"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed78bf5051a4e4e3fcbbacffa844d8614c27b1d", "fields": {"nom_de_la_commune": "VAUTEBIS", "libell_d_acheminement": "VAUTEBIS", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79341"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e261210f97764ad432b3b9f164320d4ee8a7fb76", "fields": {"nom_de_la_commune": "VERRUYES", "libell_d_acheminement": "VERRUYES", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79345"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7da43dd29cbbec8f5eb4338b13ada2a9bc435e", "fields": {"nom_de_la_commune": "VILLIERS EN BOIS", "libell_d_acheminement": "VILLIERS EN BOIS", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79350"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d432b99e3f1708e08acd4376c676895499eb3d", "fields": {"nom_de_la_commune": "VILLIERS EN PLAINE", "libell_d_acheminement": "VILLIERS EN PLAINE", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79351"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bb080e4be12bf89c117850f4a896842af7e639", "fields": {"nom_de_la_commune": "VOUHE", "libell_d_acheminement": "VOUHE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79354"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a616e6d2416d761b6de427fdfd184207c2cf57", "fields": {"nom_de_la_commune": "XAINTRAY", "libell_d_acheminement": "XAINTRAY", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79357"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71692b1cc4b9c49d0e8c95cad5fc93decf261aa1", "fields": {"nom_de_la_commune": "ABLAINCOURT PRESSOIR", "libell_d_acheminement": "ABLAINCOURT PRESSOIR", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80002"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc69a621ca9b48ee2b89f434c4b5affc15524f94", "fields": {"nom_de_la_commune": "ACHEUX EN VIMEU", "libell_d_acheminement": "ACHEUX EN VIMEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80004"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3200d030eafef5744c91cd79f04da6c44450a71b", "fields": {"nom_de_la_commune": "AIGNEVILLE", "libell_d_acheminement": "AIGNEVILLE", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80008"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81c1d29e9c71b0646532ff0afe344a8b933280a", "fields": {"nom_de_la_commune": "AIZECOURT LE HAUT", "libell_d_acheminement": "AIZECOURT LE HAUT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80015"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d25ab1a189020217ca06824e1123da536d5cf48", "fields": {"nom_de_la_commune": "ALLONVILLE", "libell_d_acheminement": "ALLONVILLE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80020"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307e513c39e1fb3e0c262b3a7a2aab836881cd6e", "fields": {"nom_de_la_commune": "ST ETIENNE LA VARENNE", "libell_d_acheminement": "ST ETIENNE LA VARENNE", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69198"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea1b432ff7b50c84391941caa7d312c5747a983", "fields": {"nom_de_la_commune": "ST GENIS LAVAL", "libell_d_acheminement": "ST GENIS LAVAL", "code_postal": "69230", "coordonnees_gps": [45.6946542576, 4.78915999112], "code_commune_insee": "69204"}, "geometry": {"type": "Point", "coordinates": [4.78915999112, 45.6946542576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5ddb487c05a041fe7cb3eccc27d5f30b1d05ef", "fields": {"nom_de_la_commune": "ST GEORGES DE RENEINS", "libell_d_acheminement": "ST GEORGES DE RENEINS", "code_postal": "69830", "coordonnees_gps": [46.0579112646, 4.72089494524], "code_commune_insee": "69206"}, "geometry": {"type": "Point", "coordinates": [4.72089494524, 46.0579112646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b34c1ab61d4c8d4be2ef07cf8794d7c51e9764", "fields": {"nom_de_la_commune": "ST GERMAIN NUELLES", "libell_d_acheminement": "ST GERMAIN NUELLES", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69208"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1354f208fd1b1551b776f5d400b65602011078", "fields": {"nom_de_la_commune": "ST JEAN DE TOUSLAS", "libell_d_acheminement": "ST JEAN DE TOUSLAS", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69213"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f256e83545aa648d3ad16704601473846504d4", "fields": {"nom_de_la_commune": "ST JUST D AVRAY", "libell_d_acheminement": "ST JUST D AVRAY", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69217"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66859c139c40346921aeab67c5fc9f5c36fe30c2", "fields": {"code_postal": "69440", "code_commune_insee": "69219", "libell_d_acheminement": "ST LAURENT D AGNY", "ligne_5": "ST VINCENT", "nom_de_la_commune": "ST LAURENT D AGNY", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f18e83df89c9414e5cca20f42d8478c9b2c4b0", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69223"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc46a552c8f6104ba47a2dd8c0a2b5081d46fd9", "fields": {"nom_de_la_commune": "ST ROMAIN DE POPEY", "libell_d_acheminement": "ST ROMAIN DE POPEY", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69234"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12446aa892a75e639540f61faac8bce9c5915baa", "fields": {"nom_de_la_commune": "THIZY LES BOURGS", "libell_d_acheminement": "THIZY LES BOURGS", "code_postal": "69240", "coordonnees_gps": [46.068199037, 4.3380922269], "code_commune_insee": "69248"}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15fce225b18b05214594b9d2dbe0af0d04159c80", "fields": {"nom_de_la_commune": "TREVES", "libell_d_acheminement": "TREVES", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69252"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ed0991b9be2de11d96a43308e8ee9a153d0d89", "fields": {"code_postal": "69670", "code_commune_insee": "69255", "libell_d_acheminement": "VAUGNERAY", "ligne_5": "ST LAURENT DE VAUX", "nom_de_la_commune": "VAUGNERAY", "coordonnees_gps": [45.7297593676, 4.64249561363]}, "geometry": {"type": "Point", "coordinates": [4.64249561363, 45.7297593676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39a0b96ee2dc767939de6d91971af798a9928ad", "fields": {"nom_de_la_commune": "VAUXRENARD", "libell_d_acheminement": "VAUXRENARD", "code_postal": "69820", "coordonnees_gps": [46.2082600685, 4.66076858585], "code_commune_insee": "69258"}, "geometry": {"type": "Point", "coordinates": [4.66076858585, 46.2082600685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba481c6038bb6580d6ca670604938ec03a80795", "fields": {"nom_de_la_commune": "VILLEURBANNE", "libell_d_acheminement": "VILLEURBANNE", "code_postal": "69100", "coordonnees_gps": [45.7708577093, 4.88913450646], "code_commune_insee": "69266"}, "geometry": {"type": "Point", "coordinates": [4.88913450646, 45.7708577093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef8f3688323006a30bdb2686f4f9b859bbfefbe", "fields": {"code_postal": "69390", "code_commune_insee": "69268", "libell_d_acheminement": "VOURLES", "ligne_5": "SEPT CHEMINS", "nom_de_la_commune": "VOURLES", "coordonnees_gps": [45.6449321892, 4.78398402177]}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238f16314bb2b3e2a9dfa5f773ee946eb592dbcc", "fields": {"nom_de_la_commune": "DECINES CHARPIEU", "libell_d_acheminement": "DECINES CHARPIEU", "code_postal": "69150", "coordonnees_gps": [45.7718173914, 4.96151842912], "code_commune_insee": "69275"}, "geometry": {"type": "Point", "coordinates": [4.96151842912, 45.7718173914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82c46f982c4cf0a84678396111c787153ab3ccf", "fields": {"nom_de_la_commune": "PUSIGNAN", "libell_d_acheminement": "PUSIGNAN", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69285"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93ba5b9b89cf6b70766a7d18549ed671ac3aabe", "fields": {"code_postal": "69140", "code_commune_insee": "69286", "libell_d_acheminement": "RILLIEUX LA PAPE", "ligne_5": "CREPIEUX LA PAPE", "nom_de_la_commune": "RILLIEUX LA PAPE", "coordonnees_gps": [45.8205814087, 4.8985536958]}, "geometry": {"type": "Point", "coordinates": [4.8985536958, 45.8205814087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242e3a81af45d5b5d8967fd877aa69075d66bc80", "fields": {"nom_de_la_commune": "SATHONAY VILLAGE", "libell_d_acheminement": "SATHONAY VILLAGE", "code_postal": "69580", "coordonnees_gps": [45.8366159534, 4.88315598235], "code_commune_insee": "69293"}, "geometry": {"type": "Point", "coordinates": [4.88315598235, 45.8366159534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb5c83161c634b97102f9e9eabfb70207ef5d84f", "fields": {"nom_de_la_commune": "TOUSSIEU", "libell_d_acheminement": "TOUSSIEU", "code_postal": "69780", "coordonnees_gps": [45.6517385833, 4.9906607201], "code_commune_insee": "69298"}, "geometry": {"type": "Point", "coordinates": [4.9906607201, 45.6517385833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37694b72101692d8e40d1b73582ed4cfacb704b1", "fields": {"code_postal": "69125", "code_commune_insee": "69299", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "ligne_5": "LYON ST EXUPERY AEROPORT", "nom_de_la_commune": "COLOMBIER SAUGNIEU", "coordonnees_gps": [45.7180247923, 5.10320927277]}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "530b8cde1c5b16469f64f02c9da085b8dccdcc82", "fields": {"code_postal": "69125", "code_commune_insee": "69299", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "ligne_5": "SAINT EXUPERY AEROPORT", "nom_de_la_commune": "COLOMBIER SAUGNIEU", "coordonnees_gps": [45.7180247923, 5.10320927277]}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b3018279bc39ab23f2d1887ec45fcd905aadc9", "fields": {"nom_de_la_commune": "LYON 06", "libell_d_acheminement": "LYON", "code_postal": "69006", "coordonnees_gps": [45.7730199469, 4.85184283496], "code_commune_insee": "69386"}, "geometry": {"type": "Point", "coordinates": [4.85184283496, 45.7730199469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02d8dff4dac8d1029af718a3fba188fa3954c84f", "fields": {"nom_de_la_commune": "ABELCOURT", "libell_d_acheminement": "ABELCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70001"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854df5dc8c78778f57eefab498209381e4329a88", "fields": {"nom_de_la_commune": "AMANCE", "libell_d_acheminement": "AMANCE", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70012"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "978e6e13da38dbed66962c064c570cc9b9fc5f06", "fields": {"nom_de_la_commune": "ANDELARRE", "libell_d_acheminement": "ANDELARRE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70019"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7cbfee5e360ec574d277aaa048c2969a733b6a", "fields": {"nom_de_la_commune": "ANDELARROT", "libell_d_acheminement": "ANDELARROT", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70020"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c653b5451bccda656cdf802d2baf1c8a2a866d2", "fields": {"nom_de_la_commune": "ANGIREY", "libell_d_acheminement": "ANGIREY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70022"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc425eecdbb45b9fc3fe33ab14861578fa5b225d", "fields": {"nom_de_la_commune": "ATTRICOURT", "libell_d_acheminement": "ATTRICOURT", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70032"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ed39a68dd4ebbccdf17eff30981b916173f264", "fields": {"nom_de_la_commune": "AUGICOURT", "libell_d_acheminement": "AUGICOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70035"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec9bb7c854873fcca1bdae640538c64d02d45069", "fields": {"nom_de_la_commune": "AUTHOISON", "libell_d_acheminement": "AUTHOISON", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70038"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03eaa0ffcd306329472a476072d6b0ea65e8eadd", "fields": {"nom_de_la_commune": "AUXON", "libell_d_acheminement": "AUXON", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70044"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028c3920e077583259f26531e9f177f1cb3c3450", "fields": {"nom_de_la_commune": "LES AYNANS", "libell_d_acheminement": "LES AYNANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70046"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2594cea6ce4b8cb8b0071c8751c008a71a8275", "fields": {"nom_de_la_commune": "BARGES", "libell_d_acheminement": "BARGES", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70049"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0c4df897bb8c18de03a91c9e411170a58454cc", "fields": {"nom_de_la_commune": "LA BASSE VAIVRE", "libell_d_acheminement": "LA BASSE VAIVRE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70051"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1538b3dcd2397eb5953013a017035a31a024549e", "fields": {"code_postal": "70190", "code_commune_insee": "70059", "libell_d_acheminement": "BEAUMOTTE AUBERTANS", "ligne_5": "AUBERTANS", "nom_de_la_commune": "BEAUMOTTE AUBERTANS", "coordonnees_gps": [47.4343544936, 6.05247846774]}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1e166e19a275260e0db2e4b3a46506fff9d83f", "fields": {"nom_de_la_commune": "BELFAHY", "libell_d_acheminement": "BELFAHY", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70061"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260a291a0ca261542b1b05b069649bb7c73839bf", "fields": {"nom_de_la_commune": "BELVERNE", "libell_d_acheminement": "BELVERNE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70064"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d469c6e259f2315d9cf9a154b2993c61cdfeee", "fields": {"nom_de_la_commune": "BETONCOURT LES BROTTE", "libell_d_acheminement": "BETONCOURT LES BROTTE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70067"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ba39024faf532c36a6c5500f07477e313834bb", "fields": {"nom_de_la_commune": "BEVEUGE", "libell_d_acheminement": "BEVEUGE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70072"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de4f9a048a761944c2085de2b2cc4c20f3b5f1e4", "fields": {"nom_de_la_commune": "BLONDEFONTAINE", "libell_d_acheminement": "BLONDEFONTAINE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70074"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30b95cc2a00c1399181f6d7910d6967a70cf8aac", "fields": {"nom_de_la_commune": "BONBOILLON", "libell_d_acheminement": "BONBOILLON", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70075"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f8d12ae682fb7ba662048688a0a96dc31dcca3", "fields": {"nom_de_la_commune": "BOUGNON", "libell_d_acheminement": "BOUGNON", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70079"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a2fee723db97fb93d459793fcbe4e196ee3946", "fields": {"nom_de_la_commune": "BOURGUIGNON LES LA CHARITE", "libell_d_acheminement": "BOURGUIGNON LES LA CHARITE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70088"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f36679cad4da3390df093ad0045f1d1b6a897b3", "fields": {"nom_de_la_commune": "BREUCHES", "libell_d_acheminement": "BREUCHES", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70093"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30710b93e4303fe92daa7a132ded0ad2887ff14", "fields": {"nom_de_la_commune": "BROYE LES LOUPS ET VERFONTAINE", "libell_d_acheminement": "BROYE LES LOUPS ET VERFONTAINE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70100"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ea37d8b9611c474cd035d1cfb6bd92de660762", "fields": {"code_postal": "70140", "code_commune_insee": "70101", "libell_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", "ligne_5": "AUBIGNEY", "nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", "coordonnees_gps": [47.3157094968, 5.59575332821]}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037d991f27fb597bdabe66c8235f59f86ba0b214", "fields": {"nom_de_la_commune": "BUCEY LES TRAVES", "libell_d_acheminement": "BUCEY LES TRAVES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70105"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aabadbde8a3ef3e8c97ff6b702e942efd833a6b0", "fields": {"nom_de_la_commune": "BUTHIERS", "libell_d_acheminement": "BUTHIERS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70109"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4422b8bbd1649e8b59fd4e59f47b556322db5d", "fields": {"nom_de_la_commune": "CHAGEY", "libell_d_acheminement": "CHAGEY", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70116"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a297347ca0a07a2f03ebfef71d98aad782e65b", "fields": {"nom_de_la_commune": "CHARMES ST VALBERT", "libell_d_acheminement": "CHARMES ST VALBERT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70135"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b8e8fe1e12874dca34f07b35a935e383d1c261f", "fields": {"nom_de_la_commune": "CHAUX LES PORT", "libell_d_acheminement": "CHAUX LES PORT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70146"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8835c99ea723f38bb1586e0cd664e3e87f0ba3", "fields": {"nom_de_la_commune": "CHENEBIER", "libell_d_acheminement": "CHENEBIER", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70149"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7526ce7fc44d5449156b8b1006434135f1fbeab1", "fields": {"nom_de_la_commune": "CHENEVREY ET MOROGNE", "libell_d_acheminement": "CHENEVREY ET MOROGNE", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70150"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0598e29504c600447824634d244bb81824310e2b", "fields": {"nom_de_la_commune": "CLAIREGOUTTE", "libell_d_acheminement": "CLAIREGOUTTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70157"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a77f49e2a34d15c8e39ba09b6fd39b46481633", "fields": {"nom_de_la_commune": "CLANS", "libell_d_acheminement": "CLANS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70158"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4271ce09a3e1898ce714e4a00d51a1f76c1fd60", "fields": {"nom_de_la_commune": "CONTREGLISE", "libell_d_acheminement": "CONTREGLISE", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70170"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec733618377b16d9ce00c579547d26a59858b12", "fields": {"nom_de_la_commune": "CORNOT", "libell_d_acheminement": "CORNOT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70175"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f13fedec45e72713fbf79fb5c7f9faedc1556d", "fields": {"nom_de_la_commune": "COURCHATON", "libell_d_acheminement": "COURCHATON", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70180"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27025b7aa3f50391a97652309d59eb4d3827f119", "fields": {"nom_de_la_commune": "CREVANS ET LA CHAPELLE LES GRANGES", "libell_d_acheminement": "CREVANS LA CHAPELLE LES GRANGES", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70187"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102cf505d29427b4cdff5a9194eca670a739f4fa", "fields": {"nom_de_la_commune": "DAMPIERRE LES CONFLANS", "libell_d_acheminement": "DAMPIERRE LES CONFLANS", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70196"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4441b11f2424a53a79246a815dbcedd340f7e1", "fields": {"code_postal": "70230", "code_commune_insee": "70197", "libell_d_acheminement": "DAMPIERRE SUR LINOTTE", "ligne_5": "PRESLE", "nom_de_la_commune": "DAMPIERRE SUR LINOTTE", "coordonnees_gps": [47.4966875875, 6.24277918181]}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6d5576887a4acfd51c3663f4bd23436a55da25", "fields": {"nom_de_la_commune": "FAYMONT", "libell_d_acheminement": "FAYMONT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70229"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48c4dde7fbbc21415333057f7dce5379ab570fc", "fields": {"nom_de_la_commune": "FOUGEROLLES", "libell_d_acheminement": "FOUGEROLLES", "code_postal": "70220", "coordonnees_gps": [47.9014763567, 6.41301310714], "code_commune_insee": "70245"}, "geometry": {"type": "Point", "coordinates": [6.41301310714, 47.9014763567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece00674019078b1dc97b1880b5deca8a850a93f", "fields": {"nom_de_la_commune": "FRAMONT", "libell_d_acheminement": "FRAMONT", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70252"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f85dc866dd4255e72491a2cb5fc184c58093216", "fields": {"nom_de_la_commune": "FRASNE LE CHATEAU", "libell_d_acheminement": "FRASNE LE CHATEAU", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70253"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01d676e67ac2e2570e433126541374cc1ac1743", "fields": {"nom_de_la_commune": "FREDERIC FONTAINE", "libell_d_acheminement": "FREDERIC FONTAINE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70254"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fd3d93680a4b45948b9d086a5e401678cee4b8b", "fields": {"nom_de_la_commune": "FRETIGNEY ET VELLOREILLE", "libell_d_acheminement": "FRETIGNEY ET VELLOREILLE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70257"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af1ad61501d8c52093af9230f8b52a423d09531", "fields": {"nom_de_la_commune": "GENEVREY", "libell_d_acheminement": "GENEVREY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70263"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb067782fb58886f13883f295dfec21395498b57", "fields": {"nom_de_la_commune": "GEVIGNEY ET MERCEY", "libell_d_acheminement": "GEVIGNEY ET MERCEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70267"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307b4ac876f945ca5832747caf5e71abb95d035e", "fields": {"nom_de_la_commune": "GEZIER ET FONTENELAY", "libell_d_acheminement": "GEZIER ET FONTENELAY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70268"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0b9231cb4c0d7aa8d19a0a92c8962002f47417", "fields": {"nom_de_la_commune": "GOURGEON", "libell_d_acheminement": "GOURGEON", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70272"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a788bc71c875186b5c45486a2a94cd864f64a9", "fields": {"nom_de_la_commune": "GRATTERY", "libell_d_acheminement": "GRATTERY", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70278"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1110ed7efe078046129b886ef392c75be6928b", "fields": {"nom_de_la_commune": "HUGIER", "libell_d_acheminement": "HUGIER", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70286"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d02390935928a38cb45fdb472254272d42cdae3", "fields": {"nom_de_la_commune": "HURECOURT", "libell_d_acheminement": "HURECOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70287"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb8f9ba10c511462fe2c050d9bc6b6ff0612ef48", "fields": {"nom_de_la_commune": "HYET", "libell_d_acheminement": "HYET", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70288"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81200278ac119683cedb73a2a338993c23399622", "fields": {"nom_de_la_commune": "JUSSEY", "libell_d_acheminement": "JUSSEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70292"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ddd0575ea719cc7127adf0405fe376f856491d2", "fields": {"nom_de_la_commune": "LAMBREY", "libell_d_acheminement": "LAMBREY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70293"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee24032710206b7c26c545565c6e5343b5d0a26", "fields": {"code_postal": "70230", "code_commune_insee": "70309", "libell_d_acheminement": "LOULANS VERCHAMP", "ligne_5": "VERCHAMP", "nom_de_la_commune": "LOULANS VERCHAMP", "coordonnees_gps": [47.4966875875, 6.24277918181]}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d413788975de990334364e679cd3025bdbcbc70", "fields": {"nom_de_la_commune": "LES MAGNY", "libell_d_acheminement": "LES MAGNY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70317"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee2b8920aaa25cfc57a4571eb947317fa8076ea", "fields": {"nom_de_la_commune": "MAGNY JOBERT", "libell_d_acheminement": "MAGNY JOBERT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70319"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0404b8a5e0b5807187dd2ed9ec4835c745a70916", "fields": {"nom_de_la_commune": "MAUSSANS", "libell_d_acheminement": "MAUSSANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70335"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8f757a3961cad491480b91bae2d3590e426a26", "fields": {"nom_de_la_commune": "MERCEY SUR SAONE", "libell_d_acheminement": "MERCEY SUR SAONE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70342"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5326867a71dd76f09a7c79a942818853d6bef13f", "fields": {"nom_de_la_commune": "MONTARLOT LES RIOZ", "libell_d_acheminement": "MONTARLOT LES RIOZ", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70355"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a125cd4812b76176e4931edcfb14e0dd3aadb1", "fields": {"nom_de_la_commune": "MONTBOILLON", "libell_d_acheminement": "MONTBOILLON", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70356"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124a04df2640c8f940f8a827e62fbce6f5c52ead", "fields": {"nom_de_la_commune": "MONTBOZON", "libell_d_acheminement": "MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70357"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d56d2c2dbfd051ea85dcae2a0d6d7482b6df7d0", "fields": {"nom_de_la_commune": "MONTCOURT", "libell_d_acheminement": "MONTCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70359"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6b7f5c4af9bd3cfbc21b6133fa7f71bf2cda84d", "fields": {"nom_de_la_commune": "MONTESSAUX", "libell_d_acheminement": "MONTESSAUX", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70361"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3363df103dcdda32422ab031eb4c80cebe9099a6", "fields": {"code_postal": "70120", "code_commune_insee": "70373", "libell_d_acheminement": "LA ROCHE MOREY", "ligne_5": "BETONCOURT LES MENETRIERS", "nom_de_la_commune": "LA ROCHE MOREY", "coordonnees_gps": [47.6952639398, 5.81680839597]}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ba9b5ab1e848a4ca327a71f2fa7571b37ca37a", "fields": {"nom_de_la_commune": "NOROY LE BOURG", "libell_d_acheminement": "NOROY LE BOURG", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70390"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e764e50809e54e4ea4623ad73889e49097db9ee", "fields": {"nom_de_la_commune": "ORICOURT", "libell_d_acheminement": "ORICOURT", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70396"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd91ddfae78ad51c1c5f04ebaca5e53f6e4f838", "fields": {"nom_de_la_commune": "OVANCHES", "libell_d_acheminement": "OVANCHES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70401"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476c44c895ddcdc32258dd3a3d87492d67dc4567", "fields": {"nom_de_la_commune": "PERROUSE", "libell_d_acheminement": "PERROUSE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70407"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cbe25d9a62724dd4aa0bf6e2f922ed602332f6", "fields": {"code_postal": "70130", "code_commune_insee": "70418", "libell_d_acheminement": "LA ROMAINE", "ligne_5": "LE PONT DE PLANCHES", "nom_de_la_commune": "LA ROMAINE", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2d3f2aac2ef26be2d70b217474283b4265ef0f", "fields": {"nom_de_la_commune": "PROVENCHERE", "libell_d_acheminement": "PROVENCHERE", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70426"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c96de3d0355884fb4dc3ccdd93d82329f8b4eb6", "fields": {"nom_de_la_commune": "PUSY ET EPENOUX", "libell_d_acheminement": "PUSY ET EPENOUX", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70429"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d66614ede4dad08a83e24d19d7486239cb8d5cd4", "fields": {"nom_de_la_commune": "RANZEVELLE", "libell_d_acheminement": "RANZEVELLE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70437"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aba77dfd3e4dfdb5660028f1f41b989aaf9f8fc", "fields": {"nom_de_la_commune": "RECOLOGNE", "libell_d_acheminement": "RECOLOGNE LES RAY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70440"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7774dbcf8237c734bfc9be4bd970080a1f755c3", "fields": {"nom_de_la_commune": "ROSEY", "libell_d_acheminement": "ROSEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70452"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4856238fb62a34af354f31552475fc8cde467251", "fields": {"nom_de_la_commune": "LA ROSIERE", "libell_d_acheminement": "LA ROSIERE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70453"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20f52fa0f880f0ea3669123a5d9406c1b8ae17f", "fields": {"nom_de_la_commune": "GRIGNONCOURT", "libell_d_acheminement": "GRIGNONCOURT", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88220"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cfb63ec4e15da4d2d27dda0b5e02f07cdf3291", "fields": {"nom_de_la_commune": "GRUEY LES SURANCE", "libell_d_acheminement": "GRUEY LES SURANCE", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88221"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ecf8e218305ad7da7ed1a8fcb0ea003f658a410", "fields": {"nom_de_la_commune": "HAGECOURT", "libell_d_acheminement": "HAGECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88226"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b39f479c80ba47368136469fe887daf6183af10", "fields": {"code_postal": "88240", "code_commune_insee": "88234", "libell_d_acheminement": "HARSAULT", "ligne_5": "THUNIMONT", "nom_de_la_commune": "HARSAULT", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df168c65a6ff98570842f40ab75264e087b20113", "fields": {"nom_de_la_commune": "HERGUGNEY", "libell_d_acheminement": "HERGUGNEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88239"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4101b706d1b99e1192a467930b4c1649af14478", "fields": {"nom_de_la_commune": "HOUEVILLE", "libell_d_acheminement": "HOUEVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88242"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119b2c247fb0354995c73561760af1ab629052da", "fields": {"nom_de_la_commune": "HOUSSERAS", "libell_d_acheminement": "HOUSSERAS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88243"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68234c24401fe7a27ddc41905800f511ec58da17", "fields": {"nom_de_la_commune": "JAINVILLOTTE", "libell_d_acheminement": "JAINVILLOTTE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88249"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e89d8e6a288699123b91f91e6af7e92e2598f6", "fields": {"nom_de_la_commune": "JORXEY", "libell_d_acheminement": "JORXEY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88254"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61e7f63064724fcbfb4bf003da474b51029acd0", "fields": {"nom_de_la_commune": "LANGLEY", "libell_d_acheminement": "LANGLEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88260"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a985093e2b81a38f8cad41421eea104f2efdf4", "fields": {"nom_de_la_commune": "LEGEVILLE ET BONFAYS", "libell_d_acheminement": "LEGEVILLE ET BONFAYS", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88264"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a289ab2f6833a6f332608b785e2b5c56f96ba3", "fields": {"nom_de_la_commune": "MARAINVILLE SUR MADON", "libell_d_acheminement": "MARAINVILLE SUR MADON", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88286"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c3f055a81bf9dd997d709a73e6a898870c6474", "fields": {"nom_de_la_commune": "MENIL EN XAINTOIS", "libell_d_acheminement": "MENIL EN XAINTOIS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88299"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c960effcaff8741a70c1691162e640e838ae3f1e", "fields": {"nom_de_la_commune": "LE MENIL", "libell_d_acheminement": "LE MENIL", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88302"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7942143decc1d0b7f3dfa033c6c2afe75d9b8148", "fields": {"nom_de_la_commune": "LE MONT", "libell_d_acheminement": "LE MONT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88306"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98dd212b760dfa93b1bc2dd825e8b77a84824c9", "fields": {"nom_de_la_commune": "MORIVILLE", "libell_d_acheminement": "MORIVILLE", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88313"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ba6c1c03ca461cc268302802c8fc538fc46cac", "fields": {"nom_de_la_commune": "MORTAGNE", "libell_d_acheminement": "MORTAGNE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88315"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb49de26865d5b193c1a086dfa6e3517752bf55b", "fields": {"nom_de_la_commune": "MORVILLE", "libell_d_acheminement": "MORVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88316"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aadf1a8574ce903faa9053cb6e1cb486c1c36b8d", "fields": {"nom_de_la_commune": "NOMPATELIZE", "libell_d_acheminement": "NOMPATELIZE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88328"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fef7067a566123e1acf1cd5381b2c0165611295", "fields": {"nom_de_la_commune": "OELLEVILLE", "libell_d_acheminement": "OELLEVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88334"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4108b8cdda6f8d49cc1b187e7d30617acfec60d7", "fields": {"nom_de_la_commune": "PALLEGNEY", "libell_d_acheminement": "PALLEGNEY", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88342"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2d94c875d3a178cf307f521047bf267d04e583", "fields": {"nom_de_la_commune": "PLOMBIERES LES BAINS", "libell_d_acheminement": "PLOMBIERES LES BAINS", "code_postal": "88370", "coordonnees_gps": [47.9937026909, 6.4494827214], "code_commune_insee": "88351"}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65fff40704eb13aafec751efe615d141b7c3cd92", "fields": {"nom_de_la_commune": "POUXEUX", "libell_d_acheminement": "POUXEUX", "code_postal": "88550", "coordonnees_gps": [48.1006109096, 6.57246220257], "code_commune_insee": "88358"}, "geometry": {"type": "Point", "coordinates": [6.57246220257, 48.1006109096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f889dd58261970aa07e0013205b188585d67d680", "fields": {"nom_de_la_commune": "RACECOURT", "libell_d_acheminement": "RACECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88365"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ded3747a5eafe40bd06b92b3f88401b0eeb5da9", "fields": {"nom_de_la_commune": "RANCOURT", "libell_d_acheminement": "RANCOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88370"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470a78ec9179b3fe9a035a3835ed1c26ab5b6421", "fields": {"nom_de_la_commune": "REMONCOURT", "libell_d_acheminement": "REMONCOURT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88385"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd2f5e4b366a337e21a48ffff57bfbfd37d6e5a", "fields": {"nom_de_la_commune": "REMOMEIX", "libell_d_acheminement": "REMOMEIX", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88386"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d009f742569555ec8d92a84bb325005b2dbc0f8", "fields": {"nom_de_la_commune": "ROMONT", "libell_d_acheminement": "ROMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88395"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b4c7115493270b4ebe17b61ccac7490c53add5", "fields": {"nom_de_la_commune": "LES ROUGES EAUX", "libell_d_acheminement": "LES ROUGES EAUX", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88398"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e469eadcec1833a78029bb2455ada16e01fdf70", "fields": {"nom_de_la_commune": "ROVILLE AUX CHENES", "libell_d_acheminement": "ROVILLE AUX CHENES", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88402"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "071b22653bd86c56eefaa790dd52eac06713bdc4", "fields": {"nom_de_la_commune": "ROZIERES SUR MOUZON", "libell_d_acheminement": "ROZIERES SUR MOUZON", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88404"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7809a047bcc74e2e062119510525ca996c5d08d5", "fields": {"nom_de_la_commune": "STE BARBE", "libell_d_acheminement": "STE BARBE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88410"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc94931f84d864ef3a1520e03b4a2a8b27277495", "fields": {"nom_de_la_commune": "ST BENOIT LA CHIPOTTE", "libell_d_acheminement": "ST BENOIT LA CHIPOTTE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88412"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc04bdf7f8a7f3f6ec901cb25a590a7137091772", "fields": {"nom_de_la_commune": "ST DIE DES VOSGES", "libell_d_acheminement": "ST DIE DES VOSGES", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88413"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6204d4783e7c26cee0e40a87dd5dc6ae550132d8", "fields": {"nom_de_la_commune": "ST OUEN LES PAREY", "libell_d_acheminement": "ST OUEN LES PAREY", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88430"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98a4de56978d4727d4787a63afd602006ea13cc", "fields": {"nom_de_la_commune": "ST PRANCHER", "libell_d_acheminement": "ST PRANCHER", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88433"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34938a33f775c868a7822fe53637145ac339b6d0", "fields": {"nom_de_la_commune": "ST REMIMONT", "libell_d_acheminement": "ST REMIMONT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88434"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "595bf66cea29f20dd2ee783671f33201f6347890", "fields": {"nom_de_la_commune": "SAULXURES LES BULGNEVILLE", "libell_d_acheminement": "SAULXURES LES BULGNEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88446"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a07476562d7477b11125c4a33faa384171e424", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88449"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfdcc2bd2aa4b391380a063f0255bfcb85cb8c81", "fields": {"nom_de_la_commune": "SENAIDE", "libell_d_acheminement": "SENAIDE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88450"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51988d63e6ff40ce26924802e0f5915258b51166", "fields": {"nom_de_la_commune": "SOCOURT", "libell_d_acheminement": "SOCOURT", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88458"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4395ffb213004908f5ef2a3ed16958d586a735", "fields": {"nom_de_la_commune": "THEY SOUS MONTFORT", "libell_d_acheminement": "THEY SOUS MONTFORT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88466"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da84772db9e9ba3c33620733387892d67408ea8a", "fields": {"nom_de_la_commune": "TIGNECOURT", "libell_d_acheminement": "TIGNECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88473"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de58127578e1f531ab60335e993e96d4abafb63", "fields": {"nom_de_la_commune": "TOLLAINCOURT", "libell_d_acheminement": "TOLLAINCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88475"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f97b983f636c9c7f274b771ef3ae8ef73036eaa", "fields": {"nom_de_la_commune": "TREMONZEY", "libell_d_acheminement": "TREMONZEY", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88479"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f77002dab3765a600e3fccf88daa8780d5bbdab", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88482"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc88654c057e542134930427537f91a714b1683", "fields": {"nom_de_la_commune": "UXEGNEY", "libell_d_acheminement": "UXEGNEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88483"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0fe4ae5341fed363a76a87324cb7726380fe49", "fields": {"nom_de_la_commune": "UZEMAIN", "libell_d_acheminement": "UZEMAIN", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88484"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b74f6b6c6667db364799fb44822ab13e8e1c070e", "fields": {"nom_de_la_commune": "LE VAL D AJOL", "libell_d_acheminement": "LE VAL D AJOL", "code_postal": "88340", "coordonnees_gps": [47.9435376979, 6.51696802708], "code_commune_insee": "88487"}, "geometry": {"type": "Point", "coordinates": [6.51696802708, 47.9435376979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e7dd7b1854b512fc9faa9262882c566d3ff4a3b", "fields": {"nom_de_la_commune": "LES VALLOIS", "libell_d_acheminement": "LES VALLOIS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88491"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cde0c5508bfa716730d6a21a6f969de2d5d3b9f", "fields": {"nom_de_la_commune": "LE VALTIN", "libell_d_acheminement": "LE VALTIN", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88492"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e9957e6b16b31948370cedaddb12dc2b63b1b6", "fields": {"nom_de_la_commune": "VARMONZEY", "libell_d_acheminement": "VARMONZEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88493"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f23cf4d4dec8bd362ed80f649fc6822cf258f1", "fields": {"nom_de_la_commune": "VAUDEVILLE", "libell_d_acheminement": "VAUDEVILLE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88495"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1c390c902ef48741b0b73fc60857a0b5b548ee", "fields": {"nom_de_la_commune": "VAXONCOURT", "libell_d_acheminement": "VAXONCOURT", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88497"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c017d3b7004f29788a7be847ec5894112433eef", "fields": {"nom_de_la_commune": "VILLONCOURT", "libell_d_acheminement": "VILLONCOURT", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88509"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0626a361d73b4a241d5b5b4850b90dc5939b2dd9", "fields": {"nom_de_la_commune": "VILLOTTE", "libell_d_acheminement": "VILLOTTE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88510"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bf51299515a4fb7c9c7f0dcabd85f57e88c31c", "fields": {"nom_de_la_commune": "VITTEL", "libell_d_acheminement": "VITTEL", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88516"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56adf1875e11e3455209db62ec61e632ac8a7bce", "fields": {"nom_de_la_commune": "VIVIERS LE GRAS", "libell_d_acheminement": "VIVIERS LE GRAS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88517"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70cbfac8e835cd2f8bd7ed9a869256fa138c043c", "fields": {"nom_de_la_commune": "VRECOURT", "libell_d_acheminement": "VRECOURT", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88524"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5842ee05374d25f27ed55ad982e37496b3a4f6", "fields": {"nom_de_la_commune": "VROVILLE", "libell_d_acheminement": "VROVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88525"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b532a4195870490bc5e33d5c26b8368f17de7710", "fields": {"nom_de_la_commune": "XAFFEVILLERS", "libell_d_acheminement": "XAFFEVILLERS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88527"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d464d897b60ebbff4ddfc0814c9af759266a34", "fields": {"nom_de_la_commune": "ANCY LE FRANC", "libell_d_acheminement": "ANCY LE FRANC", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89005"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ce2c04f71e136c82645c72d7fdecffc9252d8c", "fields": {"nom_de_la_commune": "APPOIGNY", "libell_d_acheminement": "APPOIGNY", "code_postal": "89380", "coordonnees_gps": [47.8663450325, 3.52060912902], "code_commune_insee": "89013"}, "geometry": {"type": "Point", "coordinates": [3.52060912902, 47.8663450325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c8e828757a0b49e2b8cf59ca623df2a0492240", "fields": {"nom_de_la_commune": "ARGENTENAY", "libell_d_acheminement": "ARGENTENAY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89016"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92b11e60c4d04c1fbef1a867e5952e4d7dfb7a2", "fields": {"nom_de_la_commune": "ARTHONNAY", "libell_d_acheminement": "ARTHONNAY", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89019"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373e54d7abf18480db264314644d3d4dcdd3b429", "fields": {"nom_de_la_commune": "BAGNEAUX", "libell_d_acheminement": "BAGNEAUX", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89027"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363f70f9892e65462e80f24d50d8022362ec3533", "fields": {"nom_de_la_commune": "BASSOU", "libell_d_acheminement": "BASSOU", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89029"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1729dcbdb034c377f1978d59d8ee1185dfad58", "fields": {"nom_de_la_commune": "BAZARNES", "libell_d_acheminement": "BAZARNES", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89030"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e36c2693b1fbee834675aac7c66c9eb92fc1da68", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89033"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5336f9d908744c781709dd7c2e5a305b6c3eb9", "fields": {"nom_de_la_commune": "BEINE", "libell_d_acheminement": "BEINE", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89034"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f7bd2e771f619761377099a542b8fe4d769bcb", "fields": {"nom_de_la_commune": "LA BELLIOLE", "libell_d_acheminement": "LA BELLIOLE", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89036"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588b615cf2156e5d2792e1bf2fd5dfef4b3fe42a", "fields": {"nom_de_la_commune": "BOIS D ARCY", "libell_d_acheminement": "BOIS D ARCY", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89049"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbd48a3a0a9d6e11a61588efc39048755e5c3d8", "fields": {"nom_de_la_commune": "BRIENON SUR ARMANCON", "libell_d_acheminement": "BRIENON SUR ARMANCON", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89055"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca8cf407bd5f7342ac70021660a7499e462cbfe", "fields": {"nom_de_la_commune": "BUSSY EN OTHE", "libell_d_acheminement": "BUSSY EN OTHE", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89059"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2ae791b09f12ca10a3e43951db8da7c63facbd", "fields": {"code_postal": "89800", "code_commune_insee": "89068", "libell_d_acheminement": "CHABLIS", "ligne_5": "POINCHY", "nom_de_la_commune": "CHABLIS", "coordonnees_gps": [47.7904940717, 3.79065013362]}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bdff4343a665029a03ca1c8a87b82b5608595e", "fields": {"nom_de_la_commune": "CHAMPCEVRAIS", "libell_d_acheminement": "CHAMPCEVRAIS", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89072"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c345f74569d0b105bedecf469a7a008722e6375", "fields": {"nom_de_la_commune": "LA CHAPELLE VAUPELTEIGNE", "libell_d_acheminement": "LA CHAPELLE VAUPELTEIGNE", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89081"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2103cac5b556587a4267073cd0c0cd1e1b40ef9f", "fields": {"nom_de_la_commune": "CHARENTENAY", "libell_d_acheminement": "CHARENTENAY", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89084"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703e296c952389f7c7c9b33764d75833080d91eb", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "CHAMBEUGLE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319af7c69ecc26b54f13f3ae64a4fd1a0323f127", "fields": {"nom_de_la_commune": "CHATEL GERARD", "libell_d_acheminement": "CHATEL GERARD", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89092"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eabf9b0eecb39bdf9b63131625f7a282df19f990", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89093"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603321e48a8528617572b9bb68aa30e2569cbbba", "fields": {"nom_de_la_commune": "CHEROY", "libell_d_acheminement": "CHEROY", "code_postal": "89690", "coordonnees_gps": [48.2018946141, 3.00754312216], "code_commune_insee": "89100"}, "geometry": {"type": "Point", "coordinates": [3.00754312216, 48.2018946141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebabe0118f3590debf5565d681c0765ecfbd069", "fields": {"nom_de_la_commune": "COULANGES SUR YONNE", "libell_d_acheminement": "COULANGES SUR YONNE", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89119"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3052b3d926380e3e98d27923ac3691364f81388", "fields": {"nom_de_la_commune": "COURGIS", "libell_d_acheminement": "COURGIS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89123"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c626a5cb8a33646d348a933e47b44446658ade4", "fields": {"nom_de_la_commune": "COURLON SUR YONNE", "libell_d_acheminement": "COURLON SUR YONNE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89124"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e047ffa0e910ab852e88b0884ea3e2c38d2d92d7", "fields": {"nom_de_la_commune": "COURSON LES CARRIERES", "libell_d_acheminement": "COURSON LES CARRIERES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89125"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f565fc35fd28e9b1838748d070dc6ac9b2502b99", "fields": {"nom_de_la_commune": "COURTOIN", "libell_d_acheminement": "COURTOIN", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89126"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148f71b248b3d3d2d858f6c601fb65c210af9ee4", "fields": {"nom_de_la_commune": "CRUZY LE CHATEL", "libell_d_acheminement": "CRUZY LE CHATEL", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89131"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997b367435b02b11378ca30ab9b34bd23be565d9", "fields": {"nom_de_la_commune": "CUDOT", "libell_d_acheminement": "CUDOT", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89133"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f991ea4f3cdc12672be5841cb77838ec63c8db", "fields": {"nom_de_la_commune": "CUY", "libell_d_acheminement": "CUY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89136"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13393a9f5b556a6a1ff16b2b969ef768f31f2be5", "fields": {"nom_de_la_commune": "DIGES", "libell_d_acheminement": "DIGES", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89139"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69ae6b887e7573ddbfaba4969019fa7ec9e9147", "fields": {"nom_de_la_commune": "EGLENY", "libell_d_acheminement": "EGLENY", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89150"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064e76eb871788c0e803e0f508d9a003da58f14e", "fields": {"nom_de_la_commune": "EGRISELLES LE BOCAGE", "libell_d_acheminement": "EGRISELLES LE BOCAGE", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89151"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3018ac6e84cc5aa4faef98d29008725323bcda4c", "fields": {"nom_de_la_commune": "EPINEUIL", "libell_d_acheminement": "EPINEUIL", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89153"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b7c2761e4862d28118505dfad077fc04dfb70c", "fields": {"nom_de_la_commune": "ESNON", "libell_d_acheminement": "ESNON", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89156"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdab8d82058d8a569cf55527e475304d75f3c945", "fields": {"nom_de_la_commune": "ETAIS LA SAUVIN", "libell_d_acheminement": "ETAIS LA SAUVIN", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89158"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3446f2b418fbf5d07dfb60b8abdbd21fc64ad", "fields": {"nom_de_la_commune": "ETIVEY", "libell_d_acheminement": "ETIVEY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89161"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d900cd1c51fb5141d613dca51bbecb5cf7a3a7", "fields": {"nom_de_la_commune": "LA FERTE LOUPIERE", "libell_d_acheminement": "LA FERTE LOUPIERE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89163"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9529526cb9e95be7c3c4ad10fb8316c290d9c9d0", "fields": {"nom_de_la_commune": "FESTIGNY", "libell_d_acheminement": "FESTIGNY", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89164"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ea32efacffa9fbeaff70fe58857bfcffc9dce5", "fields": {"nom_de_la_commune": "FONTAINE LA GAILLARDE", "libell_d_acheminement": "FONTAINE LA GAILLARDE", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89172"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b2f4f63154ef08abc60c23d2afc92cea924143", "fields": {"nom_de_la_commune": "BAYON", "libell_d_acheminement": "BAYON", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54054"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f671b0c9ca4f27f82b5db5fa5b401b3a9fedc89", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54057"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa49c838973ead71c3e699d296e8aefd3394e6e8", "fields": {"nom_de_la_commune": "BERNECOURT", "libell_d_acheminement": "BERNECOURT", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54063"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72b83a187c28f1673f27af23f2831cf6f7051bd", "fields": {"nom_de_la_commune": "BEUVEILLE", "libell_d_acheminement": "BEUVEILLE", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54067"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a03553f63e6421024ffcd3e498b2e7648607d10", "fields": {"nom_de_la_commune": "BLAINVILLE SUR L EAU", "libell_d_acheminement": "BLAINVILLE SUR L EAU", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54076"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcff8f1b8ea0b39eeab618cf806795f1c55a4cda", "fields": {"nom_de_la_commune": "BLENOD LES PONT A MOUSSON", "libell_d_acheminement": "BLENOD LES PONT A MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54079"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987cda7b6872ebf37ed6095aaa2c96b384c8f894", "fields": {"nom_de_la_commune": "BLENOD LES TOUL", "libell_d_acheminement": "BLENOD LES TOUL", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54080"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c34c10f97b75d096ecab3abaa6f124fef0fdfa0", "fields": {"nom_de_la_commune": "BRAINVILLE", "libell_d_acheminement": "BRAINVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54093"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a14a78e114f6bfe0a86e1870d414ffd5561f31", "fields": {"nom_de_la_commune": "BRUVILLE", "libell_d_acheminement": "BRUVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54103"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8bbd577da20855ce962ef955c4a5da9a25c56f", "fields": {"nom_de_la_commune": "CHALIGNY", "libell_d_acheminement": "CHALIGNY", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54111"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296d8d6d34975a7e5d84852b17a05abba8fef551", "fields": {"nom_de_la_commune": "CHAMPENOUX", "libell_d_acheminement": "CHAMPENOUX", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54113"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452370bcf4c42d530fa444b179f1cbd99951fe6f", "fields": {"nom_de_la_commune": "CHAOUILLEY", "libell_d_acheminement": "CHAOUILLEY", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54117"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480a8f0d7ab02ad487fc7ecbd2070460ec95a7e2", "fields": {"nom_de_la_commune": "CHAVIGNY", "libell_d_acheminement": "CHAVIGNY", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54123"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89313e098a94d32a3a74d82efd235b39075c18e3", "fields": {"nom_de_la_commune": "CLEMERY", "libell_d_acheminement": "CLEMERY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54131"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f08c9c83669b8399df8ea0d67c0bdb4d1395e3", "fields": {"code_postal": "54400", "code_commune_insee": "54138", "libell_d_acheminement": "COSNES ET ROMAIN", "ligne_5": "VAUX WARNIMONT", "nom_de_la_commune": "COSNES ET ROMAIN", "coordonnees_gps": [49.5244232599, 5.7294177983]}, "geometry": {"type": "Point", "coordinates": [5.7294177983, 49.5244232599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7f49759409324d5f067343953d60e50c30f859", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54140"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29733eb20836ebfdafa40f32f3436a4095d42e39", "fields": {"nom_de_la_commune": "CREVIC", "libell_d_acheminement": "CREVIC", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54145"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a85788f43dabc2eafbf8c8a2dfc74cb2c302d1", "fields": {"nom_de_la_commune": "CRUSNES", "libell_d_acheminement": "CRUSNES", "code_postal": "54680", "coordonnees_gps": [49.4266992744, 5.91035100074], "code_commune_insee": "54149"}, "geometry": {"type": "Point", "coordinates": [5.91035100074, 49.4266992744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95632cb15c407c8a6ff9e8e7589d5e8733ce4b7a", "fields": {"nom_de_la_commune": "DAMELEVIERES", "libell_d_acheminement": "DAMELEVIERES", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54152"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4623a73af79e77bc7950b78b489f19eba64cc3f", "fields": {"nom_de_la_commune": "DOMEVRE EN HAYE", "libell_d_acheminement": "DOMEVRE EN HAYE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54160"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1dfb47d7af6472bfc24a714690bdf85b40ac8f7", "fields": {"nom_de_la_commune": "DOMEVRE SUR VEZOUZE", "libell_d_acheminement": "DOMEVRE SUR VEZOUZE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54161"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2604475d7ae27072d8eec6f929e5dd275e6ca90", "fields": {"nom_de_la_commune": "DOMMARTIN LA CHAUSSEE", "libell_d_acheminement": "DOMMARTIN LA CHAUSSEE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54166"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca9188dff16caa15e17ac8f4ae2113981a4b117", "fields": {"code_postal": "54490", "code_commune_insee": "54169", "libell_d_acheminement": "DOMPRIX", "ligne_5": "BERTRAMEIX", "nom_de_la_commune": "DOMPRIX", "coordonnees_gps": [49.3325834566, 5.77814621797]}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2797eef751c220376a986f6da77cc62608b9ad5f", "fields": {"nom_de_la_commune": "EPLY", "libell_d_acheminement": "EPLY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54179"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1980dfc08d0ab744df96943c109deb4c653fa9a", "fields": {"nom_de_la_commune": "ESSEY ET MAIZERAIS", "libell_d_acheminement": "ESSEY ET MAIZERAIS", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54182"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7d1cc74454a763d1e475d15e70f7df49baad6b", "fields": {"nom_de_la_commune": "FILLIERES", "libell_d_acheminement": "FILLIERES", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54194"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bcf2df8ae406846471c61df6b1b9cdecb9ca88b", "fields": {"nom_de_la_commune": "FLEVILLE DEVANT NANCY", "libell_d_acheminement": "FLEVILLE DEVANT NANCY", "code_postal": "54710", "coordonnees_gps": [48.6251795468, 6.18855131653], "code_commune_insee": "54197"}, "geometry": {"type": "Point", "coordinates": [6.18855131653, 48.6251795468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b166a422eda7d61fad0f035224bee89153f58a8e", "fields": {"nom_de_la_commune": "FLEVILLE LIXIERES", "libell_d_acheminement": "FLEVILLE LIXIERES", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54198"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da3ead6499b2832dbb626d9e5760a4b7445915f", "fields": {"nom_de_la_commune": "FLIN", "libell_d_acheminement": "FLIN", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54199"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974174979c5438e4e0e45bd98be198223892723b", "fields": {"nom_de_la_commune": "FONTENOY SUR MOSELLE", "libell_d_acheminement": "FONTENOY SUR MOSELLE", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54202"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5070fb914e911272fcf482ec42ae986e2b77e6a", "fields": {"nom_de_la_commune": "FRIAUVILLE", "libell_d_acheminement": "FRIAUVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54213"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49a380c4219577a200d1883bdba6ac38bcd8fd2", "fields": {"nom_de_la_commune": "FROVILLE", "libell_d_acheminement": "FROVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54216"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ab6a44791c085fdbc3657547ff6cc8b47587ea", "fields": {"nom_de_la_commune": "GELLENONCOURT", "libell_d_acheminement": "GELLENONCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54219"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea68a410e8abbea0c096bab0c87ed24fb3bc847", "fields": {"nom_de_la_commune": "GEZONCOURT", "libell_d_acheminement": "GEZONCOURT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54225"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb8ed9f36b96fc0758da60427fc2f30a25f149e", "fields": {"nom_de_la_commune": "GOVILLER", "libell_d_acheminement": "GOVILLER", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54235"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0a20d92ce7eebc6822b0012f07b5dd3254b0db", "fields": {"nom_de_la_commune": "GRIPPORT", "libell_d_acheminement": "GRIPPORT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54238"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0438d0fa2503e7308bd0dbf59e4f01f3b8b9875d", "fields": {"nom_de_la_commune": "HATRIZE", "libell_d_acheminement": "HATRIZE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54253"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a7ffa39d17edad1242fb306c7c10419e9a43fb", "fields": {"nom_de_la_commune": "HAUSSONVILLE", "libell_d_acheminement": "HAUSSONVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54256"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646f42255632a919d6d64c8d5ec4fad4acb883f8", "fields": {"nom_de_la_commune": "HERBEVILLER", "libell_d_acheminement": "HERBEVILLER", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54259"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaa64e782286f6b2835cae5d9fcf7c7a1ba9f22", "fields": {"nom_de_la_commune": "HOEVILLE", "libell_d_acheminement": "HOEVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54262"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37dddbfd0d29ae7d1d768341d4e7807703e45d2d", "fields": {"nom_de_la_commune": "HOUDELMONT", "libell_d_acheminement": "HOUDELMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54264"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea023eea32ed68706ae040e8d69b8a1043ec624", "fields": {"nom_de_la_commune": "HUDIVILLER", "libell_d_acheminement": "HUDIVILLER", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54269"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de8ee3bc8f15f70a719ad4dbe2c1f1cda24ca87", "fields": {"code_postal": "54800", "code_commune_insee": "54273", "libell_d_acheminement": "JARNY", "ligne_5": "DROITAUMONT", "nom_de_la_commune": "JARNY", "coordonnees_gps": [49.1533949551, 5.84735611771]}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebaeec876717866cfb396dcab50bdb84a31f679b", "fields": {"nom_de_la_commune": "JOEUF", "libell_d_acheminement": "JOEUF", "code_postal": "54240", "coordonnees_gps": [49.2315948324, 6.01177680019], "code_commune_insee": "54280"}, "geometry": {"type": "Point", "coordinates": [6.01177680019, 49.2315948324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f18e3d602a5115417e437f6d172941cb7849c0a", "fields": {"nom_de_la_commune": "JOLIVET", "libell_d_acheminement": "JOLIVET", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54281"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7871adfc73e028655ceb2612a80abd974eeeabed", "fields": {"nom_de_la_commune": "JOUDREVILLE", "libell_d_acheminement": "JOUDREVILLE", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54284"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3afcbbc1ceadf8aea2ebe6127cd5d6f024fb78", "fields": {"nom_de_la_commune": "LABRY", "libell_d_acheminement": "LABRY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54286"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5997458e3e39cd377033ff79edd7be219630f32", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LACHAPELLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54287"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1777ad9397cf84a91a7dc026cb7877ec6cfc1c03", "fields": {"nom_de_la_commune": "LANDRES", "libell_d_acheminement": "LANDRES", "code_postal": "54970", "coordonnees_gps": [49.3187672382, 5.80783806738], "code_commune_insee": "54295"}, "geometry": {"type": "Point", "coordinates": [5.80783806738, 49.3187672382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c1679fbe107124f6dfb5a2cbb270dd5830c327", "fields": {"nom_de_la_commune": "LARONXE", "libell_d_acheminement": "LARONXE", "code_postal": "54950", "coordonnees_gps": [48.5425960628, 6.61591716683], "code_commune_insee": "54303"}, "geometry": {"type": "Point", "coordinates": [6.61591716683, 48.5425960628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84996d9899b006092e1cbbb40675256217e06fd", "fields": {"nom_de_la_commune": "LAXOU", "libell_d_acheminement": "LAXOU", "code_postal": "54520", "coordonnees_gps": [48.6821372702, 6.11416538481], "code_commune_insee": "54304"}, "geometry": {"type": "Point", "coordinates": [6.11416538481, 48.6821372702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2376c9809ba840d5d805154b68ea141edf3bf44f", "fields": {"nom_de_la_commune": "LAY ST REMY", "libell_d_acheminement": "LAY ST REMY", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54306"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b783f5a20ab7d61cd99f33c8b9d79539c06b2f", "fields": {"nom_de_la_commune": "LEINTREY", "libell_d_acheminement": "LEINTREY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54308"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d320ad3187a72526167a843d2b149277fbd9d9", "fields": {"nom_de_la_commune": "LONGLAVILLE", "libell_d_acheminement": "LONGLAVILLE", "code_postal": "54810", "coordonnees_gps": [49.5340580438, 5.8023058526], "code_commune_insee": "54321"}, "geometry": {"type": "Point", "coordinates": [5.8023058526, 49.5340580438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e88a6cd35c6f53aa92630954fe1ead674e9008f", "fields": {"nom_de_la_commune": "LOROMONTZEY", "libell_d_acheminement": "LOROMONTZEY", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54325"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a977016f580a3386b34bb1f79a17d9a7974556", "fields": {"nom_de_la_commune": "LUPCOURT", "libell_d_acheminement": "LUPCOURT", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54330"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2ee71f67c2c3e977776fa553039e1fcab3271e", "fields": {"nom_de_la_commune": "MAGNIERES", "libell_d_acheminement": "MAGNIERES", "code_postal": "54129", "coordonnees_gps": [48.4443358669, 6.56609843512], "code_commune_insee": "54331"}, "geometry": {"type": "Point", "coordinates": [6.56609843512, 48.4443358669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f88558db9c6b8b993c57f02f66abb6ad1496f9", "fields": {"nom_de_la_commune": "MAIDIERES", "libell_d_acheminement": "MAIDIERES", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54332"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ec25be3aca57ff2deeafdf47f31ee3bef21319", "fields": {"nom_de_la_commune": "MAILLY SUR SEILLE", "libell_d_acheminement": "MAILLY SUR SEILLE", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54333"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f869aba199b08e7f70ef442806c540e14613782", "fields": {"nom_de_la_commune": "MALAVILLERS", "libell_d_acheminement": "MALAVILLERS", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54337"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2becc908bcaa478f125221a91011f607bab115", "fields": {"nom_de_la_commune": "MANDRES AUX QUATRE TOURS", "libell_d_acheminement": "MANDRES AUX QUATRE TOURS", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54343"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8261b58e75e44bec7f549bb8e44e1568e142d148", "fields": {"nom_de_la_commune": "MARON", "libell_d_acheminement": "MARON", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54352"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "089d77f07732982902daf4a71718a4809a6bc5d9", "fields": {"nom_de_la_commune": "MARTHEMONT", "libell_d_acheminement": "MARTHEMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54354"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b375dc391b8acd4c78d9b264397dd175cdd3c15e", "fields": {"code_postal": "54320", "code_commune_insee": "54357", "libell_d_acheminement": "MAXEVILLE", "ligne_5": "MAXEVILLE CHAMPLEBOEUF", "nom_de_la_commune": "MAXEVILLE", "coordonnees_gps": [48.7099239924, 6.15129717058]}, "geometry": {"type": "Point", "coordinates": [6.15129717058, 48.7099239924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8ae21ceb905e06eb0c6eb1cbeaaae10fa63947", "fields": {"nom_de_la_commune": "MEXY", "libell_d_acheminement": "MEXY", "code_postal": "54135", "coordonnees_gps": [49.5015479376, 5.78600366188], "code_commune_insee": "54367"}, "geometry": {"type": "Point", "coordinates": [5.78600366188, 49.5015479376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d11de27a3b4b0a1263d93cff604f76170d10ad0", "fields": {"nom_de_la_commune": "MILLERY", "libell_d_acheminement": "MILLERY", "code_postal": "54670", "coordonnees_gps": [48.7978385403, 6.14814767129], "code_commune_insee": "54369"}, "geometry": {"type": "Point", "coordinates": [6.14814767129, 48.7978385403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7282ea073bdfa0b85983668ff4d91c6654f5bfd5", "fields": {"nom_de_la_commune": "MONTAUVILLE", "libell_d_acheminement": "MONTAUVILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54375"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa3cc3c479d68a801fd62aa7c7f4e0d3246a812", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54377"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78fa8941d64a8fda519782706099424681aa4ba7", "fields": {"code_postal": "54870", "code_commune_insee": "54378", "libell_d_acheminement": "MONTIGNY SUR CHIERS", "ligne_5": "FERMONT", "nom_de_la_commune": "MONTIGNY SUR CHIERS", "coordonnees_gps": [49.4779492899, 5.69039116636]}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1976abde3beec4132923f0ac5a9a87182a9846d9", "fields": {"nom_de_la_commune": "MONT SUR MEURTHE", "libell_d_acheminement": "MONT SUR MEURTHE", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54383"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f90ee1d82ccd52aed60160900b4eb2104819f4", "fields": {"nom_de_la_commune": "MORFONTAINE", "libell_d_acheminement": "MORFONTAINE", "code_postal": "54920", "coordonnees_gps": [49.4594844823, 5.82596357033], "code_commune_insee": "54385"}, "geometry": {"type": "Point", "coordinates": [5.82596357033, 49.4594844823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a98e2db72b24c4b989b427d41e7454ee5cff58d", "fields": {"nom_de_la_commune": "MORVILLE SUR SEILLE", "libell_d_acheminement": "MORVILLE SUR SEILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54387"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179c0a2dc8b27fae262b28c9f55df76395d03903", "fields": {"nom_de_la_commune": "NEUFMAISONS", "libell_d_acheminement": "NEUFMAISONS", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54396"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca5870986f1e10060dffa7fbd1b99593ade476e", "fields": {"nom_de_la_commune": "NEUVILLER LES BADONVILLER", "libell_d_acheminement": "NEUVILLER LES BADONVILLER", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54398"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede51a7ef26a5dd2f19bd5d0b83a54e908150342", "fields": {"nom_de_la_commune": "NEUVILLER SUR MOSELLE", "libell_d_acheminement": "NEUVILLER SUR MOSELLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54399"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48732f3df27a81482dc477bf919a1cd0fddd9978", "fields": {"nom_de_la_commune": "NOMENY", "libell_d_acheminement": "NOMENY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54400"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4384e53821565940e9aae1213d5ca17b76c48bbf", "fields": {"nom_de_la_commune": "OGEVILLER", "libell_d_acheminement": "OGEVILLER", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54406"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f5a28ad82884eea559e38f77e59b1203387b88", "fields": {"nom_de_la_commune": "ORMES ET VILLE", "libell_d_acheminement": "ORMES ET VILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54411"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775f2ec2204255e067aee626c6b84ee652ee5578", "fields": {"nom_de_la_commune": "PETIT FAILLY", "libell_d_acheminement": "PETIT FAILLY", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54420"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44220f99bb77c71a03b50b7688d58fbe17686237", "fields": {"nom_de_la_commune": "PETITMONT", "libell_d_acheminement": "PETITMONT", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54421"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537cf0045892b741816bdd67453a9f8c0396a3cb", "fields": {"nom_de_la_commune": "PONT ST VINCENT", "libell_d_acheminement": "PONT ST VINCENT", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54432"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e8ef7ffde377b6dbb19e8e55ccb0aa655fa059", "fields": {"nom_de_la_commune": "PULLIGNY", "libell_d_acheminement": "PULLIGNY", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54437"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8abe8cdcfdf35dc4472ad9f347b160b4d78f55", "fields": {"nom_de_la_commune": "PULNEY", "libell_d_acheminement": "PULNEY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54438"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a99431fceb3de2ae6bfbfb2825995e546f0ecc", "fields": {"nom_de_la_commune": "PUXE", "libell_d_acheminement": "PUXE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54440"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8e19180be8e7c9b2e7973eac3f0076437f1147", "fields": {"nom_de_la_commune": "RAON LES LEAU", "libell_d_acheminement": "RAON LES LEAU", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54443"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c93e23cf8fdad48bca96cf3fe00d3791a4fdc4", "fields": {"nom_de_la_commune": "RAVILLE SUR SANON", "libell_d_acheminement": "RAVILLE SUR SANON", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54445"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1051629471c4283a09eeba34fae5103428bd40a0", "fields": {"nom_de_la_commune": "REHERREY", "libell_d_acheminement": "REHERREY", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54450"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d7230b6a0d0e58bdc33283f574a91ac1bf38c3f", "fields": {"nom_de_la_commune": "REPAIX", "libell_d_acheminement": "REPAIX", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54458"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6335217b487c3da9e8c3363d2ceab39900ac040", "fields": {"nom_de_la_commune": "RICHARDMENIL", "libell_d_acheminement": "RICHARDMENIL", "code_postal": "54630", "coordonnees_gps": [48.5776512425, 6.18802494178], "code_commune_insee": "54459"}, "geometry": {"type": "Point", "coordinates": [6.18802494178, 48.5776512425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ae1e17751639f25e19c4bd5701ac4c291eb260", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54473"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02faecca957437b76cb84ecda5b5b3dfa0567212", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54480"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b163e2e413e4e635830c8723e932590763029b3f", "fields": {"nom_de_la_commune": "SAULXURES LES NANCY", "libell_d_acheminement": "SAULXURES LES NANCY", "code_postal": "54420", "coordonnees_gps": [48.6910890899, 6.28501495776], "code_commune_insee": "54495"}, "geometry": {"type": "Point", "coordinates": [6.28501495776, 48.6910890899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "682dc6d7cd2f4a7cd925b4aabbe17c7774d3f5e0", "fields": {"nom_de_la_commune": "SERROUVILLE", "libell_d_acheminement": "SERROUVILLE", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54504"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a53620039205bf6cfba95643b5e6c623616dcdd", "fields": {"nom_de_la_commune": "THEY SOUS VAUDEMONT", "libell_d_acheminement": "THEY SOUS VAUDEMONT", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54516"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e890b74d2274d16f08d68696cb4da0b7047851d", "fields": {"nom_de_la_commune": "THEZEY ST MARTIN", "libell_d_acheminement": "THEZEY ST MARTIN", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54517"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a945bac7ee0dd8323cb838b3da625bd59cf6b76", "fields": {"nom_de_la_commune": "THIAUCOURT REGNIEVILLE", "libell_d_acheminement": "THIAUCOURT REGNIEVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54518"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a4f7891bf380974532689187cd214557f3a9a9", "fields": {"nom_de_la_commune": "THIAVILLE SUR MEURTHE", "libell_d_acheminement": "THIAVILLE SUR MEURTHE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54519"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe23b0733ea73b4d7a8f0e5ac1fa510cf15ac09", "fields": {"nom_de_la_commune": "THUILLEY AUX GROSEILLES", "libell_d_acheminement": "THUILLEY AUX GROSEILLES", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54523"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e913c1f5126923a1df726375916a766ea70c3b", "fields": {"nom_de_la_commune": "TIERCELET", "libell_d_acheminement": "TIERCELET", "code_postal": "54190", "coordonnees_gps": [49.4525960193, 5.89523270383], "code_commune_insee": "54525"}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd06e6d30f011eed4c4a94777e5dfe80d3cb01c", "fields": {"nom_de_la_commune": "TRAMONT LASSUS", "libell_d_acheminement": "TRAMONT LASSUS", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54530"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b18f745ee3e89395e2c6c1b246e90f6c6f8ac701", "fields": {"nom_de_la_commune": "SANDAUCOURT", "libell_d_acheminement": "SANDAUCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88440"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815dcb64dd59c7ea30982253b81ac48e9e8e8ea5", "fields": {"nom_de_la_commune": "SENONGES", "libell_d_acheminement": "SENONGES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88452"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74318bf4000fa81dac1f3c29209a2af3297d85c0", "fields": {"nom_de_la_commune": "SERECOURT", "libell_d_acheminement": "SERECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88455"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d93f068583b3db3339274267c5f740cafce30b", "fields": {"nom_de_la_commune": "SOULOSSE SOUS ST ELOPHE", "libell_d_acheminement": "SOULOSSE SOUS ST ELOPHE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88460"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba82bc418c9d4533f7391881edeb1de4a0feafb5", "fields": {"nom_de_la_commune": "SURIAUVILLE", "libell_d_acheminement": "SURIAUVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88461"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b984ebc14e19a8edf1ee5ad5f57f6c4dc6967774", "fields": {"nom_de_la_commune": "THIEFOSSE", "libell_d_acheminement": "THIEFOSSE", "code_postal": "88290", "coordonnees_gps": [47.9540952189, 6.76680969694], "code_commune_insee": "88467"}, "geometry": {"type": "Point", "coordinates": [6.76680969694, 47.9540952189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9edb80afe54620a16ea408ad7a45a6b330e482cb", "fields": {"nom_de_la_commune": "THIRAUCOURT", "libell_d_acheminement": "THIRAUCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88469"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a96fbf8a635e53490f796ea766c46aaa1e554f", "fields": {"nom_de_la_commune": "THUILLIERES", "libell_d_acheminement": "THUILLIERES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88472"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3849f495c779cee2fa94983aeb7ebd13fad15cde", "fields": {"nom_de_la_commune": "TILLEUX", "libell_d_acheminement": "TILLEUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88474"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a85b197a9695580471d409693c1ee3035fa73b04", "fields": {"nom_de_la_commune": "TRAMPOT", "libell_d_acheminement": "TRAMPOT", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88477"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcee39fb1931671486ba0eed21353b45ec80f66", "fields": {"nom_de_la_commune": "TRANQUEVILLE GRAUX", "libell_d_acheminement": "TRANQUEVILLE GRAUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88478"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645bb64cbc0f081f6b72f2d3046efdc805cab68d", "fields": {"nom_de_la_commune": "VALFROICOURT", "libell_d_acheminement": "VALFROICOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88488"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57da7a9281dd95a86e890fd8d1263085a2731fed", "fields": {"nom_de_la_commune": "VALLEROY LE SEC", "libell_d_acheminement": "VALLEROY LE SEC", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88490"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc4e95fcbe1217960e34ad668118571c184eafa", "fields": {"nom_de_la_commune": "VAUBEXY", "libell_d_acheminement": "VAUBEXY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88494"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd73a9319b2a13fb0ae0566395c33fcc1ddd99a", "fields": {"nom_de_la_commune": "VILLE SUR ILLON", "libell_d_acheminement": "VILLE SUR ILLON", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88508"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c27ec9958d6ce557d3f6df66fad8477035348f", "fields": {"nom_de_la_commune": "VILLOUXEL", "libell_d_acheminement": "VILLOUXEL", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88511"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd87a0a9bcb46bbb42d741e50026863fc75f7888", "fields": {"nom_de_la_commune": "VIOCOURT", "libell_d_acheminement": "VIOCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88514"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dabd473e503a7a78337850437479a8b627d2d0", "fields": {"nom_de_la_commune": "VIOMENIL", "libell_d_acheminement": "VIOMENIL", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88515"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7222120fb91d7f60654401ae4ba6e8a507f42c20", "fields": {"nom_de_la_commune": "VIVIERS LES OFFROICOURT", "libell_d_acheminement": "VIVIERS LES OFFROICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88518"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46ecfb5e07c4b3e9f453e2a4caf1cd5f989e813", "fields": {"nom_de_la_commune": "VOMECOURT", "libell_d_acheminement": "VOMECOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88521"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18c63b1bb11763c5d641d099fbca620af4d4c2e", "fields": {"nom_de_la_commune": "VOMECOURT SUR MADON", "libell_d_acheminement": "VOMECOURT SUR MADON", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88522"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53daee8ed643323e210e3ba62dab526013b80334", "fields": {"code_postal": "88170", "code_commune_insee": "88523", "libell_d_acheminement": "VOUXEY", "ligne_5": "IMBRECOURT", "nom_de_la_commune": "VOUXEY", "coordonnees_gps": [48.3247219784, 5.86762951575]}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f4917f55161d1cc36cb4eb1ad5667b94bb3641", "fields": {"nom_de_la_commune": "XAMONTARUPT", "libell_d_acheminement": "XAMONTARUPT", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88528"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1b080b7743a21d1ca8fb6392c705362a499798", "fields": {"nom_de_la_commune": "ZINCOURT", "libell_d_acheminement": "ZINCOURT", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88532"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ee85bbc782954097c1fc8abae8447a4793f36a", "fields": {"nom_de_la_commune": "ANCY LE LIBRE", "libell_d_acheminement": "ANCY LE LIBRE", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89006"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15af01f42a860d6fe3e7c6669d72e282f34615cc", "fields": {"nom_de_la_commune": "ANNAY LA COTE", "libell_d_acheminement": "ANNAY LA COTE", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89009"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2412f3539f3d44e586c219b23ae2700911a8d946", "fields": {"nom_de_la_commune": "ANNEOT", "libell_d_acheminement": "ANNEOT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89011"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ce889a3255945748d55c33d70648164f343f44", "fields": {"nom_de_la_commune": "ANNOUX", "libell_d_acheminement": "ANNOUX", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89012"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492db4d94f147e09fea4f527d949f486bf1934e8", "fields": {"nom_de_la_commune": "ARGENTEUIL SUR ARMANCON", "libell_d_acheminement": "ARGENTEUIL SUR ARMANCON", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89017"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a193f2d179c18846137106bc0e3fbeff02fb7395", "fields": {"nom_de_la_commune": "ASNIERES SOUS BOIS", "libell_d_acheminement": "ASNIERES SOUS BOIS", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89020"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c823daa5789ef6a683fb853609a6058d721798", "fields": {"nom_de_la_commune": "BAON", "libell_d_acheminement": "BAON", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89028"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c5df5404bd9ec8644455fd169b61f69d3f79b9", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89031"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820d8cb20f659472c672eeed76433b615daa1f83", "fields": {"nom_de_la_commune": "BEAUVILLIERS", "libell_d_acheminement": "BEAUVILLIERS", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89032"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631cdadaf43f8b9474920a534e4ecd669ecb8bf8", "fields": {"nom_de_la_commune": "BIERRY LES BELLES FONTAINES", "libell_d_acheminement": "BIERRY LES BELLES FONTAINES", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89042"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2504a13eb2429e1b51bd3bf4dc8197522495b32c", "fields": {"nom_de_la_commune": "BOEURS EN OTHE", "libell_d_acheminement": "BOEURS EN OTHE", "code_postal": "89770", "coordonnees_gps": [48.1187207961, 3.6979482675], "code_commune_insee": "89048"}, "geometry": {"type": "Point", "coordinates": [3.6979482675, 48.1187207961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f0b5d77cc6e5dc2aadc5aeac07cb8616bcfaee", "fields": {"nom_de_la_commune": "BRANCHES", "libell_d_acheminement": "BRANCHES", "code_postal": "89113", "coordonnees_gps": [47.8595932276, 3.45642824955], "code_commune_insee": "89053"}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975c051e2430861e880771380b06a9e422ac5554", "fields": {"code_postal": "89800", "code_commune_insee": "89068", "libell_d_acheminement": "CHABLIS", "ligne_5": "FYE", "nom_de_la_commune": "CHABLIS", "coordonnees_gps": [47.7904940717, 3.79065013362]}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0955ae2d6485f918bbf9d3989bba1a7f35ebf287", "fields": {"code_postal": "89800", "code_commune_insee": "89068", "libell_d_acheminement": "CHABLIS", "ligne_5": "MILLY", "nom_de_la_commune": "CHABLIS", "coordonnees_gps": [47.7904940717, 3.79065013362]}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620e4bd51a314f8468b2523fc22324352e1ba75a", "fields": {"nom_de_la_commune": "CHAMPIGNELLES", "libell_d_acheminement": "CHAMPIGNELLES", "code_postal": "89350", "coordonnees_gps": [47.7773444304, 3.09490527015], "code_commune_insee": "89073"}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d460c6e47e469a4be7895e0f1747ddf3f887f7c", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR OREUSE", "libell_d_acheminement": "LA CHAPELLE SUR OREUSE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89080"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef7f65c72db89ebfe8459655e0785ae38e3dd8df", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "CHENE ARNOULT", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834246e038cd073a76086d12344b65f68928e7e7", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "CHEVILLON", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4f361df2b8f32f17a15905afe10d5227132147", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "MALICORNE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49ae27ce95f3ef6c6076d3a096d4cf02bc5dede", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "MARCHAIS BETON", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "127d1cc11fbddc889ce89b075246a2a80391cea6", "fields": {"nom_de_la_commune": "LES CLERIMOIS", "libell_d_acheminement": "LES CLERIMOIS", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89111"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "224575a7f850a439d47d11057335f7923bb63558", "fields": {"nom_de_la_commune": "COULOURS", "libell_d_acheminement": "COULOURS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89120"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a505390ee6b52c041330f26541c9bd62e15ea6da", "fields": {"nom_de_la_commune": "COURGENAY", "libell_d_acheminement": "COURGENAY", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89122"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643a7708d4b3e04ffcd9bbb93d5e4043459e7ff1", "fields": {"nom_de_la_commune": "COURTOIS SUR YONNE", "libell_d_acheminement": "COURTOIS SUR YONNE", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89127"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf18bec07297ad15b2d463840dc0fb70bb1fc851", "fields": {"nom_de_la_commune": "DISSANGIS", "libell_d_acheminement": "DISSANGIS", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89141"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e1cee4bc8a474ce8ab642160df3fd30aa7a961", "fields": {"nom_de_la_commune": "DIXMONT", "libell_d_acheminement": "DIXMONT", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89142"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea396b8852680ff59fb5a2a328fb42d827f1411e", "fields": {"nom_de_la_commune": "DOLLOT", "libell_d_acheminement": "DOLLOT", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89143"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3583936cd56e98243f14a804c9c4fbef204a03ea", "fields": {"nom_de_la_commune": "DOMECY SUR CURE", "libell_d_acheminement": "DOMECY SUR CURE", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89145"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cda0b77c59a8388b0867d1f780fe7555264d7a5", "fields": {"nom_de_la_commune": "DRUYES LES BELLES FONTAINES", "libell_d_acheminement": "DRUYES LES BELLES FONTAINES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89148"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a4c95d9ec695f77a4ccd3564d737fb2620f4fe", "fields": {"nom_de_la_commune": "ESCAMPS", "libell_d_acheminement": "ESCAMPS", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89154"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "018cd46904f56c24cefcfaea7a4482d2158436c0", "fields": {"nom_de_la_commune": "ETIGNY", "libell_d_acheminement": "ETIGNY", "code_postal": "89510", "coordonnees_gps": [48.1263967669, 3.31137297054], "code_commune_insee": "89160"}, "geometry": {"type": "Point", "coordinates": [3.31137297054, 48.1263967669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8d014f7288892e5135079c68b6e8601e366217", "fields": {"nom_de_la_commune": "FONTAINES", "libell_d_acheminement": "FONTAINES", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89173"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b204c1f3ed606b197cff50a7b0b95dd16a0f8770", "fields": {"nom_de_la_commune": "FONTENAILLES", "libell_d_acheminement": "FONTENAILLES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89174"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6da1346a4c17f60bf3d9f8859f21ad0bb3adb7", "fields": {"nom_de_la_commune": "FOURNAUDIN", "libell_d_acheminement": "FOURNAUDIN", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89181"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d7c6b4347a06b7f6419f289790ee43024403f6", "fields": {"nom_de_la_commune": "GISY LES NOBLES", "libell_d_acheminement": "GISY LES NOBLES", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89189"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5833161ae672ad8415294871f05603d61cc76536", "fields": {"nom_de_la_commune": "GLAND", "libell_d_acheminement": "GLAND", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89191"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb9e713dd529df93b7845b29f83aa56cb24dc4d", "fields": {"nom_de_la_commune": "GUILLON", "libell_d_acheminement": "GUILLON", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89197"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66aa48b869c199b55a4e998917b95d58b74db43f", "fields": {"nom_de_la_commune": "JOIGNY", "libell_d_acheminement": "JOIGNY", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89206"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f1faed71287a7b67d5b4d2a980b8cc7a7fd1d6", "fields": {"nom_de_la_commune": "JOUX LA VILLE", "libell_d_acheminement": "JOUX LA VILLE", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89208"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7037fca0c8b291340e60ce268b8e03b06dffbba2", "fields": {"nom_de_la_commune": "JUSSY", "libell_d_acheminement": "JUSSY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89212"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ee4dc1c3270a42492feffa60c03f925190b849", "fields": {"nom_de_la_commune": "LAILLY", "libell_d_acheminement": "LAILLY", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89214"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a27cb13b5e277d3e85ace830ec662bc4261191", "fields": {"nom_de_la_commune": "LICHERES PRES AIGREMONT", "libell_d_acheminement": "LICHERES PRES AIGREMONT", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89224"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9aeb49b02820449191a5d17579ecf99f8de79a4", "fields": {"nom_de_la_commune": "LICHERES SUR YONNE", "libell_d_acheminement": "LICHERES SUR YONNE", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89225"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e595850bffef4f7c52f5fcc8a1e79e466428551", "fields": {"nom_de_la_commune": "LIXY", "libell_d_acheminement": "LIXY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89229"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "795acad093fceec35282523cdad6ef046ac9dd3d", "fields": {"code_postal": "89270", "code_commune_insee": "89233", "libell_d_acheminement": "LUCY SUR CURE", "ligne_5": "ESSERT", "nom_de_la_commune": "LUCY SUR CURE", "coordonnees_gps": [47.6119078009, 3.74587483538]}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f706f041a6567627495981f508ea43f483676a9c", "fields": {"nom_de_la_commune": "LUCY SUR YONNE", "libell_d_acheminement": "LUCY SUR YONNE", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89234"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c98690e0c595f9d57a2b437c66c05005831a73", "fields": {"nom_de_la_commune": "MARMEAUX", "libell_d_acheminement": "MARMEAUX", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89244"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04972c55c0195b766db02e80b15d297a58371e0c", "fields": {"nom_de_la_commune": "MIGENNES", "libell_d_acheminement": "MIGENNES", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89257"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fce8ae3c3dd528b63ad4f24b0dc0364efb741a0", "fields": {"nom_de_la_commune": "MOLINONS", "libell_d_acheminement": "MOLINONS", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89261"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b165e63bf757c9d665c99caad5d19984aa5bc22", "fields": {"nom_de_la_commune": "MONTIGNY LA RESLE", "libell_d_acheminement": "MONTIGNY LA RESLE", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89265"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1adca8811490bd1863585d28812d812ddd31695", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89267"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dab69e32fb971bdd4f2946df2ba0e1dc055e452", "fields": {"nom_de_la_commune": "MONT ST SULPICE", "libell_d_acheminement": "MONT ST SULPICE", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89268"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0956bfbd320d0d184c3e912721fabd378fda74", "fields": {"nom_de_la_commune": "MOUTIERS EN PUISAYE", "libell_d_acheminement": "MOUTIERS EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89273"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fbf25bedcdd83f98d38e2d87e2a1f795c1e252", "fields": {"nom_de_la_commune": "NUITS", "libell_d_acheminement": "NUITS", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89280"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a9060518f5657a0cef57be450834fbd54f54e4", "fields": {"nom_de_la_commune": "LES ORMES", "libell_d_acheminement": "LES ORMES", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89281"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a92bed7ec0a89fed4f9feed0b5fd1e99e1870fd", "fields": {"nom_de_la_commune": "OUANNE", "libell_d_acheminement": "OUANNE", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89283"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72114ab246e150906227f294620e3d5e1f89d88", "fields": {"nom_de_la_commune": "PRECY SUR VRIN", "libell_d_acheminement": "PRECY SUR VRIN", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89313"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c13ccd18be3def0eaf0c5387b05c000216fc72", "fields": {"nom_de_la_commune": "QUENNE", "libell_d_acheminement": "QUENNE", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89319"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38486bf853cb1d6d9cdb394b49be3469f6c62959", "fields": {"nom_de_la_commune": "RAVIERES", "libell_d_acheminement": "RAVIERES", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89321"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc38165c22ae184dd1f197386a8d14b258776b3", "fields": {"nom_de_la_commune": "ROFFEY", "libell_d_acheminement": "ROFFEY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89323"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95fbc00b039d2463b1f884ccc2952571137d8386", "fields": {"nom_de_la_commune": "ROUSSON", "libell_d_acheminement": "ROUSSON", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89327"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19d8a97e63bbee90db325e4e9494bf2936c7d57", "fields": {"nom_de_la_commune": "SAINPUITS", "libell_d_acheminement": "SAINPUITS", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89331"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914611b4e642c122dac88954c309e434afea80e5", "fields": {"nom_de_la_commune": "ST ANDRE EN TERRE PLAINE", "libell_d_acheminement": "ST ANDRE EN TERRE PLAINE", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89333"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504923a08fcd7dac94c3a89cf2f863e1357c8373", "fields": {"nom_de_la_commune": "ST BRANCHER", "libell_d_acheminement": "ST BRANCHER", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89336"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01a3bcc70c254e889cbce5ada9ba3d52af66951", "fields": {"nom_de_la_commune": "ST BRIS LE VINEUX", "libell_d_acheminement": "ST BRIS LE VINEUX", "code_postal": "89530", "coordonnees_gps": [47.7489653756, 3.67103097653], "code_commune_insee": "89337"}, "geometry": {"type": "Point", "coordinates": [3.67103097653, 47.7489653756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69199f87d25d94345cfcbae30d083ae227e6cd8b", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89338"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0d037fff2e89821ea258a84735197e25471d83", "fields": {"code_postal": "89170", "code_commune_insee": "89344", "libell_d_acheminement": "ST FARGEAU", "ligne_5": "SEPTFONDS", "nom_de_la_commune": "ST FARGEAU", "coordonnees_gps": [47.6325308017, 3.04724624104]}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69b06aead3fc8f6eb40289a9e21ab1f4de4ccf3", "fields": {"nom_de_la_commune": "ST MAURICE LE VIEIL", "libell_d_acheminement": "ST MAURICE LE VIEIL", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89360"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0b3a4299cb8233b63b3972846cd560dcc5e325", "fields": {"nom_de_la_commune": "SAUVIGNY LE BOIS", "libell_d_acheminement": "SAUVIGNY LE BOIS", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89378"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f453c8b3c2900c019256f4804b18d7932860be36", "fields": {"nom_de_la_commune": "SAVIGNY SUR CLAIRIS", "libell_d_acheminement": "SAVIGNY SUR CLAIRIS", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89380"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846a538d1b30636e8971dd3634ca93b98f66398d", "fields": {"nom_de_la_commune": "SENAN", "libell_d_acheminement": "SENAN", "code_postal": "89710", "coordonnees_gps": [47.9188469839, 3.34212763493], "code_commune_insee": "89384"}, "geometry": {"type": "Point", "coordinates": [3.34212763493, 47.9188469839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38df29943f5c1fb720f543f83837f675d3d82691", "fields": {"nom_de_la_commune": "SENNEVOY LE HAUT", "libell_d_acheminement": "SENNEVOY LE HAUT", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89386"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4b85038061821d65f3611df3b973b94c6df714", "fields": {"nom_de_la_commune": "SENS", "libell_d_acheminement": "SENS", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89387"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8916e23e4c1908f2ebb7a10d1c6e4ade2dd7b385", "fields": {"nom_de_la_commune": "SERMIZELLES", "libell_d_acheminement": "SERMIZELLES", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89392"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818365695b4550f47ba0900a8c21f8370f4ad05a", "fields": {"nom_de_la_commune": "LES SIEGES", "libell_d_acheminement": "LES SIEGES", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89395"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fca0dfa535f2316125b0adeb7709ebb99473ba", "fields": {"nom_de_la_commune": "SOMMECAISE", "libell_d_acheminement": "SOMMECAISE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89397"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a695c0f18a43f19d2ef841ca0a1e880b35a252", "fields": {"nom_de_la_commune": "AMIENS", "libell_d_acheminement": "AMIENS", "code_postal": "80080", "coordonnees_gps": [49.9004650343, 2.29084588963], "code_commune_insee": "80021"}, "geometry": {"type": "Point", "coordinates": [2.29084588963, 49.9004650343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33478cf2148e93d5e839e2032443a530d1bef80", "fields": {"nom_de_la_commune": "ANDAINVILLE", "libell_d_acheminement": "ANDAINVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80022"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46113a77575c597a0940cbbdf62f5078d31fb606", "fields": {"nom_de_la_commune": "ATHIES", "libell_d_acheminement": "ATHIES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80034"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec5ee7d8368c6607bf674e68f9af66c07b3b743f", "fields": {"nom_de_la_commune": "AUBERCOURT", "libell_d_acheminement": "AUBERCOURT", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80035"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96dfc592ddea049a4a8abd8f1deda953c7429a2", "fields": {"nom_de_la_commune": "AUTHEUX", "libell_d_acheminement": "AUTHEUX", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80042"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee76f4b2c4b0955ff6de956409bffecdbf257add", "fields": {"nom_de_la_commune": "AUTHUILLE", "libell_d_acheminement": "AUTHUILLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80045"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc42b3ea4f63b9d88ff313ce8b6750dff9b95ba", "fields": {"nom_de_la_commune": "AVELESGES", "libell_d_acheminement": "AVELESGES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80046"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07014888b1dd2120d7f39c0fcd3219b22ceb6cce", "fields": {"nom_de_la_commune": "BAZENTIN", "libell_d_acheminement": "BAZENTIN", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80059"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc9bc8e840cb9416507bd77a54ca3e9a83badca", "fields": {"nom_de_la_commune": "BEAUCOURT EN SANTERRE", "libell_d_acheminement": "BEAUCOURT EN SANTERRE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80064"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368e8659ddb53087ff7944e658695d6cb22e1f58", "fields": {"nom_de_la_commune": "BEAUCOURT SUR L HALLUE", "libell_d_acheminement": "BEAUCOURT SUR L HALLUE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80066"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d99f4c536dd264da1dde17f769f7390c481ab1", "fields": {"nom_de_la_commune": "BELLANCOURT", "libell_d_acheminement": "BELLANCOURT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80078"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8456dcdafb5be9b1ecde551c9890bd91306f3b46", "fields": {"nom_de_la_commune": "BELLOY SUR SOMME", "libell_d_acheminement": "BELLOY SUR SOMME", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80082"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4610e39b399e84df15fd749c22714f31239284f9", "fields": {"nom_de_la_commune": "BERMESNIL", "libell_d_acheminement": "BERMESNIL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80084"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427b272b4946c03403b3d830e2a7097bbbbe9def", "fields": {"nom_de_la_commune": "BERNES", "libell_d_acheminement": "BERNES", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80088"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e590692eed2c7a51876e7dd25c500438ccbdb78f", "fields": {"nom_de_la_commune": "BERNY EN SANTERRE", "libell_d_acheminement": "BERNY EN SANTERRE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80090"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca47ef71d3308a363063cffc3f37656331ac6ef", "fields": {"nom_de_la_commune": "BONNEVILLE", "libell_d_acheminement": "BONNEVILLE", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80113"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740e837f01f0815f4b3213c6cc44e2f33ed8c9ae", "fields": {"nom_de_la_commune": "BOUVAINCOURT SUR BRESLE", "libell_d_acheminement": "BOUVAINCOURT SUR BRESLE", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80127"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3dbfd9b8c127db1aa7d7685fa4a047a66e52da", "fields": {"nom_de_la_commune": "BRAY SUR SOMME", "libell_d_acheminement": "BRAY SUR SOMME", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80136"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8eb1c85b6e9c2aacebbc42429a2b5e1f5feab13", "fields": {"nom_de_la_commune": "BRIQUEMESNIL FLOXICOURT", "libell_d_acheminement": "BRIQUEMESNIL FLOXICOURT", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80142"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eadc33ef313d12e688d8888ac6ff4694ca6e06a0", "fields": {"nom_de_la_commune": "BROUCHY", "libell_d_acheminement": "BROUCHY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80144"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff4f3fdabc681effd1b22d6a5215fae6758da61", "fields": {"nom_de_la_commune": "BRUCAMPS", "libell_d_acheminement": "BRUCAMPS", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80145"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d18b3deaa004ec5baaaabc9425ac0f3993230a0", "fields": {"nom_de_la_commune": "BUIGNY ST MACLOU", "libell_d_acheminement": "BUIGNY ST MACLOU", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80149"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba50c9eaff64a946fccab92a5e06c1f9b3c074f8", "fields": {"nom_de_la_commune": "BUIRE SUR L ANCRE", "libell_d_acheminement": "BUIRE SUR L ANCRE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80151"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0944bc9f99e9cb5690e1a91543dbe56748947b", "fields": {"nom_de_la_commune": "BUSSU", "libell_d_acheminement": "BUSSU", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80154"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ed37905000c0e05a714b76584a89521e65be09", "fields": {"nom_de_la_commune": "BUVERCHY", "libell_d_acheminement": "BUVERCHY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80158"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48356bcfa8fe8459d379f8bbd677c2ffc726378", "fields": {"nom_de_la_commune": "CAMBRON", "libell_d_acheminement": "CAMBRON", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80163"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7bc95b56edbdcc15437296d21c959c9443f1bf9", "fields": {"nom_de_la_commune": "CAMPS EN AMIENOIS", "libell_d_acheminement": "CAMPS EN AMIENOIS", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80165"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb57057e65fe2b7635359b99032bda17367e8245", "fields": {"nom_de_la_commune": "CANNESSIERES", "libell_d_acheminement": "CANNESSIERES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80169"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c015a4f2449af51cc03ea4aebe42b3db696373", "fields": {"nom_de_la_commune": "CANTIGNY", "libell_d_acheminement": "CANTIGNY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80170"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535dd8f051a195068e0a32692f338ef649bf2874", "fields": {"nom_de_la_commune": "CAOURS", "libell_d_acheminement": "CAOURS", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80171"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7284a05dc274dcabbe204fcb42a597dd0b0f3fc", "fields": {"nom_de_la_commune": "CARREPUIS", "libell_d_acheminement": "CARREPUIS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80176"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b829b6bc27367b316d549ab429b678325f38e44", "fields": {"nom_de_la_commune": "CARTIGNY", "libell_d_acheminement": "CARTIGNY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80177"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4105d383d24358aa2ea6d475b2a39d35b7aa444e", "fields": {"nom_de_la_commune": "CAVILLON", "libell_d_acheminement": "CAVILLON", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80180"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576a25ce3106dabc350e382a70177f1824d86723", "fields": {"nom_de_la_commune": "CAYEUX SUR MER", "libell_d_acheminement": "CAYEUX SUR MER", "code_postal": "80410", "coordonnees_gps": [50.1763641896, 1.51530937772], "code_commune_insee": "80182"}, "geometry": {"type": "Point", "coordinates": [1.51530937772, 50.1763641896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf30ab04a66384b01ad72c76cf77535e105672e7", "fields": {"nom_de_la_commune": "CERISY BULEUX", "libell_d_acheminement": "CERISY BULEUX", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80183"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bca891c0a169e22d7b8f1fa00118f4934a2312", "fields": {"nom_de_la_commune": "CERISY", "libell_d_acheminement": "CERISY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80184"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c6314f173c4a932a9adf8eb1d6385cb114f7b6", "fields": {"nom_de_la_commune": "LA CHAVATTE", "libell_d_acheminement": "LA CHAVATTE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80189"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2195c48c8d1d4ef944cc86e927c4c475e180b71", "fields": {"nom_de_la_commune": "CHEPY", "libell_d_acheminement": "CHEPY", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80190"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb040a83dfa76f84fbebb838359325646121e5b4", "fields": {"nom_de_la_commune": "CHIPILLY", "libell_d_acheminement": "CHIPILLY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80192"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c8a36412bd030629b33235ca92c3f5bb24a123", "fields": {"nom_de_la_commune": "CLAIRY SAULCHOIX", "libell_d_acheminement": "CLAIRY SAULCHOIX", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80198"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636623c0643df757c77bca5656b51a8106e3a79f", "fields": {"nom_de_la_commune": "COMBLES", "libell_d_acheminement": "COMBLES", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80204"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dbb0333e08e70dd0e6d72d847ea581d0c328047", "fields": {"nom_de_la_commune": "CONTOIRE", "libell_d_acheminement": "CONTOIRE HAMEL", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80209"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfb7ffda7ae9dbca91da64f67050b7b6e7af85a", "fields": {"nom_de_la_commune": "COULLEMELLE", "libell_d_acheminement": "COULLEMELLE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80214"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd41b72ce5139e8201d4bc7ca9fc0e9a6b1bf461", "fields": {"nom_de_la_commune": "COURCELLES AU BOIS", "libell_d_acheminement": "COURCELLES AU BOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80217"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e65635f1bd47a8d17cc5d3b881011dc205e967e", "fields": {"nom_de_la_commune": "CRAMONT", "libell_d_acheminement": "CRAMONT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80221"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d133190be17f82fb4ad41360628587d48c49365c", "fields": {"nom_de_la_commune": "CRECY EN PONTHIEU", "libell_d_acheminement": "CRECY EN PONTHIEU", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80222"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4004175bfcdacb9878cc4de0b7f9fcc544c0e8", "fields": {"code_postal": "80150", "code_commune_insee": "80222", "libell_d_acheminement": "CRECY EN PONTHIEU", "ligne_5": "MARCHEVILLE", "nom_de_la_commune": "CRECY EN PONTHIEU", "coordonnees_gps": [50.2392104009, 1.91827271095]}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a9f586071db41855556cdf8e18f69967f5d541", "fields": {"nom_de_la_commune": "CRESSY OMENCOURT", "libell_d_acheminement": "CRESSY OMENCOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80224"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb4a780506b68603e69b6abf53a9c13eefb466f", "fields": {"nom_de_la_commune": "CROIX MOLIGNEAUX", "libell_d_acheminement": "CROIX MOLIGNEAUX", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80226"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3daac61774cabc901131cdc5c6065a772a3418", "fields": {"nom_de_la_commune": "DERNANCOURT", "libell_d_acheminement": "DERNANCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80238"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591b4ceae378f1738be9caeaf40a81a2d44548a8", "fields": {"nom_de_la_commune": "DEVISE", "libell_d_acheminement": "DEVISE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80239"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16fcd970c679b2a5ebd6d1d9582eab0a2a0803b0", "fields": {"nom_de_la_commune": "DRUCAT", "libell_d_acheminement": "DRUCAT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80260"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab433a84882dadad59ba61556fc411004d6c97ce", "fields": {"nom_de_la_commune": "ENGLEBELMER", "libell_d_acheminement": "ENGLEBELMER", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80266"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9f9e52efd6aa37c2000d569052ae1b204528b9", "fields": {"nom_de_la_commune": "EPPEVILLE", "libell_d_acheminement": "EPPEVILLE", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80274"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f82ed21c05ec888586f815f8eef447c9fd2c04", "fields": {"nom_de_la_commune": "ESSERTAUX", "libell_d_acheminement": "ESSERTAUX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80285"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c63223719576d43de2bbd7580eb0331da5ea4a", "fields": {"nom_de_la_commune": "ESTREES LES CRECY", "libell_d_acheminement": "ESTREES LES CRECY", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80290"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651f740633cb4ad5c2a54659c33cf7c0b1bbb176", "fields": {"nom_de_la_commune": "ETRICOURT MANANCOURT", "libell_d_acheminement": "ETRICOURT MANANCOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80298"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76ff4e37cc619aaf858cc9ce31d58a103af8e5c", "fields": {"nom_de_la_commune": "LA FALOISE", "libell_d_acheminement": "LA FALOISE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80299"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50eeb7b9dd703bc8e96ecebfc9e1fc722475b5f7", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80303"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22e574105ce6d87e9c3c44f66b896f922947fd6", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80305"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbaba35ddf220f8ed473fd869419ba397bc4a2e6", "fields": {"nom_de_la_commune": "FEUQUIERES EN VIMEU", "libell_d_acheminement": "FEUQUIERES EN VIMEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80308"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed484b7ebe1565baa91faf9a9285e51aa435ea1", "fields": {"nom_de_la_commune": "FLERS SUR NOYE", "libell_d_acheminement": "FLERS SUR NOYE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80315"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1943becc6bf5947b08b69f517d683fc8edbe00f", "fields": {"nom_de_la_commune": "FLESSELLES", "libell_d_acheminement": "FLESSELLES", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80316"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25d8a51107bb6673909b44e935cfb64a7e94972", "fields": {"nom_de_la_commune": "FONTAINE LES CAPPY", "libell_d_acheminement": "FONTAINE LES CAPPY", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80325"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592f149bc9dbfdfe02142b5b2f0b2b8cbf322dce", "fields": {"nom_de_la_commune": "FONTAINE SUR MAYE", "libell_d_acheminement": "FONTAINE SUR MAYE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80327"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777d8a86f780f0d61a716194990473afba48cf06", "fields": {"nom_de_la_commune": "FONTAINE SUR SOMME", "libell_d_acheminement": "FONTAINE SUR SOMME", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80328"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e460328817ff98d14ece190b8eb6f1bce13ec7", "fields": {"nom_de_la_commune": "FOREST MONTIERS", "libell_d_acheminement": "FOREST MONTIERS", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80332"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab63aa6cc871ae5f8eae1374615340ccd21e6251", "fields": {"nom_de_la_commune": "FORT MAHON PLAGE", "libell_d_acheminement": "FORT MAHON PLAGE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80333"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3752013042630998a458c0744e3e9bdfe8bf44ad", "fields": {"nom_de_la_commune": "FOSSEMANANT", "libell_d_acheminement": "FOSSEMANANT", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80334"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180a1ddb576ecd7c7e10808ba1f41eb547f82a5c", "fields": {"nom_de_la_commune": "FRAMERVILLE RAINECOURT", "libell_d_acheminement": "FRAMERVILLE RAINECOURT", "code_postal": "80131", "coordonnees_gps": [49.853048301, 2.69339669252], "code_commune_insee": "80342"}, "geometry": {"type": "Point", "coordinates": [2.69339669252, 49.853048301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d117ddc1bfd9ee21181d8dc580a3dbd12ff41bc8", "fields": {"nom_de_la_commune": "FRANLEU", "libell_d_acheminement": "FRANLEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80345"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b75fdbb106d6f730f9e5279e348a6750f84bfc", "fields": {"nom_de_la_commune": "FRANQUEVILLE", "libell_d_acheminement": "FRANQUEVILLE", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80346"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dd4c168ddc5b7121a2217163e86d88c81e9c98", "fields": {"nom_de_la_commune": "FRANSART", "libell_d_acheminement": "FRANSART", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80347"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41840051b1f2983d246d4f73c9d7c7e90e5cbf8a", "fields": {"nom_de_la_commune": "FRECHENCOURT", "libell_d_acheminement": "FRECHENCOURT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80351"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a5d9055efad48ebd019da5bffad07af35ed90c", "fields": {"nom_de_la_commune": "FRIAUCOURT", "libell_d_acheminement": "FRIAUCOURT", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80364"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58cf925dd7e0ac5604b68531cd7704e309f13317", "fields": {"nom_de_la_commune": "FROYELLES", "libell_d_acheminement": "FROYELLES", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80371"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6ab3f8f7fb641ab76355a7c50dd78e31cbe2df", "fields": {"nom_de_la_commune": "GAPENNES", "libell_d_acheminement": "GAPENNES", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80374"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eccae5c15c4bca202d2b4cc77249805c784afa7", "fields": {"nom_de_la_commune": "GORENFLOS", "libell_d_acheminement": "GORENFLOS", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80380"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19291b63287532208b0f7dbd4992899a5c6d47ac", "fields": {"nom_de_la_commune": "GORGES", "libell_d_acheminement": "GORGES", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80381"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fad4306cddc46e644dce11e9cb39a9c3e7a930", "fields": {"nom_de_la_commune": "GRAND LAVIERS", "libell_d_acheminement": "GRAND LAVIERS", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80385"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b24d011f4239ac1cae6f99299bbf9cc4fd63da4", "fields": {"nom_de_la_commune": "GRATIBUS", "libell_d_acheminement": "GRATIBUS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80386"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fa0b088aa282d1a6838634bc85b32a15a97777", "fields": {"nom_de_la_commune": "GUERBIGNY", "libell_d_acheminement": "GUERBIGNY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80395"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc035a9d457377c4cd489265055428c2dec48fa", "fields": {"nom_de_la_commune": "GUESCHART", "libell_d_acheminement": "GUESCHART", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80396"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4ca2d56c624a05790609518137816110c1a2ea", "fields": {"nom_de_la_commune": "GUILLEMONT", "libell_d_acheminement": "GUILLEMONT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80401"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a96756166535619c6486fca232b2113c5cefcb8", "fields": {"nom_de_la_commune": "HALLENCOURT", "libell_d_acheminement": "HALLENCOURT", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80406"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3b1a5eb089cda26b7efa12fa54f37da279d991", "fields": {"nom_de_la_commune": "HALLIVILLERS", "libell_d_acheminement": "HALLIVILLERS", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80407"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681b1177c908472aa8ea7fd3983b425a9d79b44a", "fields": {"nom_de_la_commune": "HANGARD", "libell_d_acheminement": "HANGARD", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80414"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7947aba3e72dedbe767ffa681e7a2e1c8f0ce660", "fields": {"nom_de_la_commune": "HARBONNIERES", "libell_d_acheminement": "HARBONNIERES", "code_postal": "80131", "coordonnees_gps": [49.853048301, 2.69339669252], "code_commune_insee": "80417"}, "geometry": {"type": "Point", "coordinates": [2.69339669252, 49.853048301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0365da89acbde9003caa43052a03b9309ae5cb5", "fields": {"nom_de_la_commune": "HARGICOURT", "libell_d_acheminement": "HARGICOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80419"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80d40ce3aa3c529aa1b5410cc45906333f9ee116", "fields": {"nom_de_la_commune": "HEBECOURT", "libell_d_acheminement": "HEBECOURT", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80424"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad903a3364c951c84677406ac5a5999a4b485121", "fields": {"nom_de_la_commune": "HEILLY", "libell_d_acheminement": "HEILLY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80426"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbe4cee2bcdcf0e9895d352a1137a85b9a49bfa", "fields": {"nom_de_la_commune": "HEM HARDINVAL", "libell_d_acheminement": "HEM HARDINVAL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80427"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6e795552252780291b2db0bba4d0c7c4564b4ca", "fields": {"nom_de_la_commune": "HEM MONACU", "libell_d_acheminement": "HEM MONACU", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80428"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d1f805199913669b746deb54dece2c7ad3ffeb", "fields": {"nom_de_la_commune": "HENENCOURT", "libell_d_acheminement": "HENENCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80429"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068d8b7cd4cfde2cb7a5923a170af604de695430", "fields": {"nom_de_la_commune": "HESCAMPS", "libell_d_acheminement": "HESCAMPS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80436"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c60bab824379955eec0c7432536f4032c37941", "fields": {"code_postal": "80290", "code_commune_insee": "80436", "libell_d_acheminement": "HESCAMPS", "ligne_5": "FRETTEMOLLE", "nom_de_la_commune": "HESCAMPS", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5012aaac00e19ed2fd7db2c1b672b755908e9c0b", "fields": {"nom_de_la_commune": "HUCHENNEVILLE", "libell_d_acheminement": "HUCHENNEVILLE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80444"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a4ab06fd7a881daf8db2cd6ae02b817afd2ea98", "fields": {"nom_de_la_commune": "HUPPY", "libell_d_acheminement": "HUPPY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80446"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6890c4b3c0921b380a5578a04f832420fe8410cc", "fields": {"nom_de_la_commune": "IGNAUCOURT", "libell_d_acheminement": "IGNAUCOURT", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80449"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dabba0a5f4c4282ec824625d6384efc8d1b7831", "fields": {"nom_de_la_commune": "IRLES", "libell_d_acheminement": "IRLES", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80451"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa192db45daec9be903c967f07468e6711a1c4d0", "fields": {"nom_de_la_commune": "ROSIERES SUR MANCE", "libell_d_acheminement": "ROSIERES SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70454"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be7e271e3ce521d9fc6a54ec73a609c1d92d740", "fields": {"nom_de_la_commune": "ST LOUP NANTOUARD", "libell_d_acheminement": "ST LOUP NANTOUARD", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70466"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a63dcd5d377f918ade973a26bc55a3cff4f6269", "fields": {"nom_de_la_commune": "STE MARIE EN CHANOIS", "libell_d_acheminement": "STE MARIE EN CHANOIS", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70469"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45df83a6dd337caacba46b628ced7ec0cf4e418c", "fields": {"nom_de_la_commune": "SAPONCOURT", "libell_d_acheminement": "SAPONCOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70476"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc221d80bb894ef90150b04985e257ea45d04450", "fields": {"code_postal": "70400", "code_commune_insee": "70477", "libell_d_acheminement": "SAULNOT", "ligne_5": "GONVILLARS", "nom_de_la_commune": "SAULNOT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1de8af3071ed31fdda0297a156cca8687e3910", "fields": {"nom_de_la_commune": "SCEY SUR SAONE ET ST ALBIN", "libell_d_acheminement": "SCEY SUR SAONE ET ST ALBIN", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70482"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a84b66378ff6b79e83669c3e7aba19a9a1c18ad", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70485"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca727580b842acbfdf02f8c95389d88059762cfb", "fields": {"nom_de_la_commune": "SEMMADON", "libell_d_acheminement": "SEMMADON", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70486"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab99af6b6c264895b1affc42cd524767ffd5f6e4", "fields": {"nom_de_la_commune": "SENONCOURT", "libell_d_acheminement": "SENONCOURT", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70488"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373abf1655a3de7764f60b73a1315853813e3814", "fields": {"nom_de_la_commune": "SERVANCE", "libell_d_acheminement": "SERVANCE", "code_postal": "70440", "coordonnees_gps": [47.8263854039, 6.71661809603], "code_commune_insee": "70489"}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ab4382f6f562b6182d494e1aa2e275a955e772", "fields": {"nom_de_la_commune": "SOING CUBRY CHARENTENAY", "libell_d_acheminement": "SOING CUBRY CHARENTENAY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70492"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a896f334ef6c0f251e25c87090c6beeb64b027b2", "fields": {"code_postal": "70130", "code_commune_insee": "70492", "libell_d_acheminement": "SOING CUBRY CHARENTENAY", "ligne_5": "CHARENTENAY", "nom_de_la_commune": "SOING CUBRY CHARENTENAY", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe29a5ffe815809b5e1d5dc5de4bba7b47ae9f88", "fields": {"code_postal": "70130", "code_commune_insee": "70492", "libell_d_acheminement": "SOING CUBRY CHARENTENAY", "ligne_5": "CUBRY LES SOING", "nom_de_la_commune": "SOING CUBRY CHARENTENAY", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024ed9f429a198a6fa58d4d2d10d940fa2a09b2e", "fields": {"nom_de_la_commune": "SORANS LES BREUREY", "libell_d_acheminement": "SORANS LES BREUREY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70493"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a830886e21925d43463a8ddcee0d1127dcc05e", "fields": {"nom_de_la_commune": "TRAITIEFONTAINE", "libell_d_acheminement": "TRAITIEFONTAINE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70503"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f065a83f617fa5bf687a5b1c21727d43e7e51b3", "fields": {"nom_de_la_commune": "TRAVES", "libell_d_acheminement": "TRAVES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70504"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21cedc8d327a6fa01423012ab5e6850b3395d7c5", "fields": {"nom_de_la_commune": "TREMOINS", "libell_d_acheminement": "TREMOINS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70506"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d6d6bf5b223a5f941030c2c4bf5e4703b8d167", "fields": {"nom_de_la_commune": "VALAY", "libell_d_acheminement": "VALAY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70514"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a251f16b9aabd2e70534c8511cf3aa4c87951b4f", "fields": {"nom_de_la_commune": "VALLEROIS LORIOZ", "libell_d_acheminement": "VALLEROIS LORIOZ", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70517"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e00820268d9324fee61e3bf80725dd4bb2b8f35", "fields": {"nom_de_la_commune": "VANDELANS", "libell_d_acheminement": "VANDELANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70519"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f512cfc41e6fce64bffc5fd09016d34443ce2f7e", "fields": {"nom_de_la_commune": "VANTOUX ET LONGEVELLE", "libell_d_acheminement": "VANTOUX ET LONGEVELLE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70521"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d051bcf498d90c7143a1256e401bd885ba4d0966", "fields": {"nom_de_la_commune": "VELET", "libell_d_acheminement": "VELET", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70529"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab53ffa77a0a017de299438bc11fa8b81a0d8be", "fields": {"nom_de_la_commune": "VERNOIS SUR MANCE", "libell_d_acheminement": "VERNOIS SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70548"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ad4f96a9a2c1dc8af0b4c798f17717f0904d64", "fields": {"nom_de_la_commune": "LA VERNOTTE", "libell_d_acheminement": "LA VERNOTTE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70549"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0869b9e34d5cc4ec31fde6dd6fb927d473ad9246", "fields": {"nom_de_la_commune": "VILLARS LE PAUTEL", "libell_d_acheminement": "VILLARS LE PAUTEL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70554"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bf60199fd232fb979b681e1550a958d4f4fa65", "fields": {"nom_de_la_commune": "VILLERS BOUTON", "libell_d_acheminement": "VILLERS BOUTON", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70560"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb32345bec25df09e7abbb4c86dd51faabc73ec3", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70563"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfceabf7781864c5843e1e9ffeb16ef92bb4d2ca", "fields": {"nom_de_la_commune": "VILORY", "libell_d_acheminement": "VILORY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70569"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2658fc9b157970c54032817be3fec8577c2b0dd", "fields": {"nom_de_la_commune": "VYANS LE VAL", "libell_d_acheminement": "VYANS LE VAL", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70579"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dc0f5ae3ac04683c226253c23d84d2dbb22bbf", "fields": {"nom_de_la_commune": "VY LE FERROUX", "libell_d_acheminement": "VY LE FERROUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70580"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee11b13f759c025b743031678e7b8accd442bbb3", "fields": {"nom_de_la_commune": "VY LES LURE", "libell_d_acheminement": "VY LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70581"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a6f3abca65f122ed099e5c28450337583343e2", "fields": {"nom_de_la_commune": "VY LES RUPT", "libell_d_acheminement": "VY LES RUPT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70582"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6dd025b9d0858bfec1ed901f27e324564cc82c1", "fields": {"nom_de_la_commune": "ALUZE", "libell_d_acheminement": "ALUZE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71005"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a0d1711b983cfa4a013f0cd1a3b73b6ed15080", "fields": {"nom_de_la_commune": "BANTANGES", "libell_d_acheminement": "BANTANGES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71018"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71daaa5ec1cd85a79fd1de0798094ee50505532", "fields": {"nom_de_la_commune": "BELLEVESVRE", "libell_d_acheminement": "BELLEVESVRE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71029"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01fc3eb09c81264554e2414cba028f1242c85916", "fields": {"nom_de_la_commune": "BERGESSERIN", "libell_d_acheminement": "BERGESSERIN", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71030"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150e36050bffae51a60861a67efe7b4eb3c26908", "fields": {"code_postal": "71250", "code_commune_insee": "71030", "libell_d_acheminement": "BERGESSERIN", "ligne_5": "BERGESSERIN LA CHATELAINE", "nom_de_la_commune": "BERGESSERIN", "coordonnees_gps": [46.4606602983, 4.62757728392]}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b32bc98a0acd878f852abd77ead1d3f9e4d100", "fields": {"nom_de_la_commune": "BERZE LA VILLE", "libell_d_acheminement": "BERZE LA VILLE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71032"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2993867d9729f9dc85b620816b6b604a33c7b537", "fields": {"nom_de_la_commune": "BISSY SUR FLEY", "libell_d_acheminement": "BISSY SUR FLEY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71037"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f4079905ce1288526682fea86ddd8e8d7a7a5f0", "fields": {"nom_de_la_commune": "BOURG LE COMTE", "libell_d_acheminement": "BOURG LE COMTE", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71048"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7754306a16a98b1ab83cfa32c460949ce4078f", "fields": {"nom_de_la_commune": "BRIENNE", "libell_d_acheminement": "BRIENNE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71061"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db73e645026d3ba06cd0ebd87438e91e52eb3b0c", "fields": {"nom_de_la_commune": "CERON", "libell_d_acheminement": "CERON", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71071"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d962351dc3cf1108a924a4d75afd3678d279482b", "fields": {"nom_de_la_commune": "CHAINTRE", "libell_d_acheminement": "CHAINTRE", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71074"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1dfddedd82e9b010d12abac9ab6ac633b652f9", "fields": {"nom_de_la_commune": "CHAMBILLY", "libell_d_acheminement": "CHAMBILLY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71077"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4323cd479d193b8e18be36c14f401131630c13e8", "fields": {"nom_de_la_commune": "CHAMPAGNY SOUS UXELLES", "libell_d_acheminement": "CHAMPAGNY SOUS UXELLES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71080"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b6353eb0196c4b43bfae6270d0780a5c1a91b8", "fields": {"nom_de_la_commune": "LA CHAPELLE ST SAUVEUR", "libell_d_acheminement": "LA CHAPELLE ST SAUVEUR", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71093"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa40eb76cd7c12443c28fffd3ab15c25bcadb0ee", "fields": {"nom_de_la_commune": "LA CHAPELLE THECLE", "libell_d_acheminement": "LA CHAPELLE THECLE", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71097"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33570dfe1bd55f3994f37f3b993f47207d8172c1", "fields": {"nom_de_la_commune": "LA CHARMEE", "libell_d_acheminement": "LA CHARMEE", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71102"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41125b73fc60638c47eeabf7fc0e08a12b9eb361", "fields": {"nom_de_la_commune": "CHAROLLES", "libell_d_acheminement": "CHAROLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71106"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c89c55b8be34da7305aeedb39b1103f436eec23e", "fields": {"nom_de_la_commune": "CHATEL MORON", "libell_d_acheminement": "CHATEL MORON", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71115"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdce77e76772cd7f3fafebaebd6054acc67e9bf", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71116"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "154e6faf6967b9333e73a4575033cd0b679ac20f", "fields": {"nom_de_la_commune": "CHATENOY LE ROYAL", "libell_d_acheminement": "CHATENOY LE ROYAL", "code_postal": "71880", "coordonnees_gps": [46.7885699817, 4.80554300437], "code_commune_insee": "71118"}, "geometry": {"type": "Point", "coordinates": [4.80554300437, 46.7885699817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d930dfd70e90f067247dc81cef16ef985a80ee", "fields": {"nom_de_la_commune": "CHENAY LE CHATEL", "libell_d_acheminement": "CHENAY LE CHATEL", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71123"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e1d493bf19d9052adb0a257e85d5dc07259f6f", "fields": {"nom_de_la_commune": "CHEVAGNY LES CHEVRIERES", "libell_d_acheminement": "CHEVAGNY LES CHEVRIERES", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71126"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c079d9c182ee756ac43cfad2624e074e647ffc", "fields": {"nom_de_la_commune": "CHISSEY EN MORVAN", "libell_d_acheminement": "CHISSEY EN MORVAN", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71129"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6098f07950a3dc83f7033751b4d8bccbe15a2f80", "fields": {"nom_de_la_commune": "CHISSEY LES MACON", "libell_d_acheminement": "CHISSEY LES MACON", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71130"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77b5d447a1971ccf9af7d1c32ea7a4ae25b34b7", "fields": {"nom_de_la_commune": "LA CLAYETTE", "libell_d_acheminement": "LA CLAYETTE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71133"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c67d8df932417f3310cbd5b924200c2e03fcec", "fields": {"nom_de_la_commune": "CLUNY", "libell_d_acheminement": "CLUNY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71137"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6a5db4ee8548a7f62f1bbf9fd065d4d18c473c", "fields": {"nom_de_la_commune": "CORDESSE", "libell_d_acheminement": "CORDESSE", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71144"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe466a09e98a71561fa803836f1431bf7b385c2", "fields": {"nom_de_la_commune": "CORTEVAIX", "libell_d_acheminement": "CORTEVAIX", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71147"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0645bd77bc9cd8f18e3ae72538d16051dded9b5d", "fields": {"nom_de_la_commune": "CRESSY SUR SOMME", "libell_d_acheminement": "CRESSY SUR SOMME", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71152"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e0f615b8dbf1345c062f0f8af4149c7a8db27f", "fields": {"nom_de_la_commune": "LE CREUSOT", "libell_d_acheminement": "LE CREUSOT", "code_postal": "71200", "coordonnees_gps": [46.8208702724, 4.42565613274], "code_commune_insee": "71153"}, "geometry": {"type": "Point", "coordinates": [4.42565613274, 46.8208702724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65849a1746babdf0d19e6e73d3161ac19f8a34f0", "fields": {"nom_de_la_commune": "CRUZILLE", "libell_d_acheminement": "CRUZILLE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71156"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b66acac3adc2d99c0b1fc8d63e46e7265b7d4bd", "fields": {"nom_de_la_commune": "CUISERY", "libell_d_acheminement": "CUISERY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71158"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703feeb8c320f71fb2547f11375d8cbf4f23ece9", "fields": {"nom_de_la_commune": "CULLES LES ROCHES", "libell_d_acheminement": "CULLES LES ROCHES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71159"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f39dec1d9d0906ed5eab3d2991e55fea309775", "fields": {"nom_de_la_commune": "CURDIN", "libell_d_acheminement": "CURDIN", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71161"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5d9accf5e7f2ef82391eec05afffe5daaaf01bc", "fields": {"nom_de_la_commune": "DAMEREY", "libell_d_acheminement": "DAMEREY", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71167"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f231f29024c01c42eca14cc89f297df4107090", "fields": {"nom_de_la_commune": "DAMPIERRE EN BRESSE", "libell_d_acheminement": "DAMPIERRE EN BRESSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71168"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52fe88437a169ba26dc28b5f6be5e9fbf740424a", "fields": {"nom_de_la_commune": "DAVAYE", "libell_d_acheminement": "DAVAYE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71169"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b03d9058de3a582860eb9eaed19d174b444ddd", "fields": {"nom_de_la_commune": "DEMIGNY", "libell_d_acheminement": "DEMIGNY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71170"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024eeea526e631d5771e883e58dd81ee63854a8f", "fields": {"nom_de_la_commune": "DEZIZE LES MARANGES", "libell_d_acheminement": "DEZIZE LES MARANGES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71174"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89131efe8137b452de7d29195800c96f9f450f13", "fields": {"nom_de_la_commune": "DOMPIERRE LES ORMES", "libell_d_acheminement": "DOMPIERRE LES ORMES", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71178"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255be1ff0f1af61953e6b7a3574a145a2e6ca66a", "fields": {"code_postal": "71520", "code_commune_insee": "71178", "libell_d_acheminement": "DOMPIERRE LES ORMES", "ligne_5": "MEULIN", "nom_de_la_commune": "DOMPIERRE LES ORMES", "coordonnees_gps": [46.3367670809, 4.52830996863]}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5317f5d03d7a01c11a114f1598e8ac7f4372b1f", "fields": {"nom_de_la_commune": "DONZY LE NATIONAL", "libell_d_acheminement": "DONZY LE NATIONAL", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71180"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ad60a6178b724d697eafbedf64e5d31bf7c730", "fields": {"nom_de_la_commune": "DONZY LE PERTUIS", "libell_d_acheminement": "DONZY LE PERTUIS", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71181"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e9a485d58049d4ee0c242d65ad73e21ebbf3f4", "fields": {"nom_de_la_commune": "DRACY LE FORT", "libell_d_acheminement": "DRACY LE FORT", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71182"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a587f9796653b81332b422a1dd79d997f333f64", "fields": {"nom_de_la_commune": "DRACY LES COUCHES", "libell_d_acheminement": "DRACY LES COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71183"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af185830d5e23b68d992856ac861fe89e0375bef", "fields": {"nom_de_la_commune": "ECUELLES", "libell_d_acheminement": "ECUELLES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71186"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f555e391109a578f30cbc8f878810a6e2b9feb", "fields": {"nom_de_la_commune": "EPERTULLY", "libell_d_acheminement": "EPERTULLY", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71188"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ae3194c93e27d3c988de92ea92a6c55dcc996c1", "fields": {"nom_de_la_commune": "FLEY", "libell_d_acheminement": "FLEY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71201"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602b93d84f8e88514d60a89030cdbfff9d39e112", "fields": {"nom_de_la_commune": "FRANGY EN BRESSE", "libell_d_acheminement": "FRANGY EN BRESSE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71205"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01274d0b179ee6f9d72daf3b76f6b005ca0f71e", "fields": {"nom_de_la_commune": "FRONTENARD", "libell_d_acheminement": "FRONTENARD", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71208"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c8e5730e3afcacfe93afba4992e118ed6146af", "fields": {"nom_de_la_commune": "GENOUILLY", "libell_d_acheminement": "GENOUILLY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71214"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2b0452ae8581a6fc1ea2aea43222142ababf46", "fields": {"nom_de_la_commune": "GERGY", "libell_d_acheminement": "GERGY", "code_postal": "71590", "coordonnees_gps": [46.8788694225, 4.93402646483], "code_commune_insee": "71215"}, "geometry": {"type": "Point", "coordinates": [4.93402646483, 46.8788694225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f516fb9235adca98bb58e02ae8ce40db10dda1", "fields": {"nom_de_la_commune": "GERMAGNY", "libell_d_acheminement": "GERMAGNY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71216"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbbe86c9f3362b995f52372c93122def8c63057", "fields": {"nom_de_la_commune": "GIGNY SUR SAONE", "libell_d_acheminement": "GIGNY SUR SAONE", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71219"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1604d48e51d6ecf67a8c5fbbfbd890b465b19a", "fields": {"nom_de_la_commune": "GREVILLY", "libell_d_acheminement": "GREVILLY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71226"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31d7f86518bc6ea1b5ead5c87d8e3a1f9c25494", "fields": {"nom_de_la_commune": "HUILLY SUR SEILLE", "libell_d_acheminement": "HUILLY SUR SEILLE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71234"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc44e81305c4fb03d346560ec2a06c4f347dbb3", "fields": {"nom_de_la_commune": "LACROST", "libell_d_acheminement": "LACROST", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71248"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfd156c7891c0f47ec17ad11aa2bf1b92547bc1", "fields": {"code_postal": "71500", "code_commune_insee": "71263", "libell_d_acheminement": "LOUHANS", "ligne_5": "CHATEAURENAUD", "nom_de_la_commune": "LOUHANS", "coordonnees_gps": [46.6399038346, 5.22168124101]}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b052be87b5ff0f1e2a57503bce29dc35dea5aae1", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "LOCHE", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c643b34b6c6378ae20d5e189325c55cfb6d9a208", "fields": {"nom_de_la_commune": "MALTAT", "libell_d_acheminement": "MALTAT", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71273"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f22ecbb5b9406b1f5168dba7fedf89b20fc32f", "fields": {"code_postal": "71220", "code_commune_insee": "71279", "libell_d_acheminement": "LE ROUSSET MARIZY", "ligne_5": "MARIZY", "nom_de_la_commune": "LE ROUSSET MARIZY", "coordonnees_gps": [46.4917423764, 4.43217403494]}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56a035d017ae84e06660f2c0e8c8c81ba5a87c53", "fields": {"nom_de_la_commune": "MARTIGNY LE COMTE", "libell_d_acheminement": "MARTIGNY LE COMTE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71285"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d83355d499bedca61d357270509c6cec447933a", "fields": {"code_postal": "71640", "code_commune_insee": "71294", "libell_d_acheminement": "MERCUREY", "ligne_5": "BOURGNEUF VAL D OR", "nom_de_la_commune": "MERCUREY", "coordonnees_gps": [46.7976011118, 4.72754976033]}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3aa9ccf19e86461628438d4debc6723d14e9574", "fields": {"nom_de_la_commune": "MONTCEAU LES MINES", "libell_d_acheminement": "MONTCEAU LES MINES", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71306"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c8cd90fba31c588513b4dd72ac93810dad83e8", "fields": {"nom_de_la_commune": "MONTJAY", "libell_d_acheminement": "MONTJAY", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71314"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa749b327fec8f4c63b01d51a3fa795fa88e7ab", "fields": {"nom_de_la_commune": "MONTMELARD", "libell_d_acheminement": "MONTMELARD", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71316"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be343674d0270198d26a53f86644d175539b4a47", "fields": {"nom_de_la_commune": "MONT ST VINCENT", "libell_d_acheminement": "MONT ST VINCENT", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71320"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9138c9e53d1bfe9848bd41a04c85bb6b0717c6", "fields": {"nom_de_la_commune": "MOROGES", "libell_d_acheminement": "MOROGES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71324"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09596ca4e26966e9ac4e9336bc734b946de3e5f0", "fields": {"nom_de_la_commune": "FONTENAY PRES CHABLIS", "libell_d_acheminement": "FONTENAY PRES CHABLIS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89175"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc16960ba39fc8a837bf3ee12778a53a61f7f0b2", "fields": {"nom_de_la_commune": "FONTENAY PRES VEZELAY", "libell_d_acheminement": "FONTENAY PRES VEZELAY", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89176"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e40a97aca627c783ab4efa635bfde573b61bfd", "fields": {"nom_de_la_commune": "GERMIGNY", "libell_d_acheminement": "GERMIGNY", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89186"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc39bdcf95607a93861ce14e1e7e223725aa1343", "fields": {"nom_de_la_commune": "GIGNY", "libell_d_acheminement": "GIGNY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89187"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7728426a4ac4461b07d355ff1aa61835c44cfb85", "fields": {"nom_de_la_commune": "GIROLLES", "libell_d_acheminement": "GIROLLES", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89188"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053bb3375830ba821bfece00ce1cc89e90c182ad", "fields": {"nom_de_la_commune": "GIVRY", "libell_d_acheminement": "GIVRY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89190"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c64e8597963dc477afeec83a56dc8ab87dd8e0", "fields": {"nom_de_la_commune": "GRON", "libell_d_acheminement": "GRON", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89195"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ef23cfa8af582ddd777ae45b13d68fab7107bb", "fields": {"nom_de_la_commune": "JAULGES", "libell_d_acheminement": "JAULGES", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89205"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993fd08e065559c0a358b38380873a7167eb1c28", "fields": {"nom_de_la_commune": "LAIN", "libell_d_acheminement": "LAIN", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89215"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb3753838eb3c07f11fbea86c06dfdc06e18849", "fields": {"nom_de_la_commune": "LIGNY LE CHATEL", "libell_d_acheminement": "LIGNY LE CHATEL", "code_postal": "89144", "coordonnees_gps": [47.9141574217, 3.77517476311], "code_commune_insee": "89227"}, "geometry": {"type": "Point", "coordinates": [3.77517476311, 47.9141574217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf24b350d1e669303681e56972968b340835b6c", "fields": {"nom_de_la_commune": "MAILLY LA VILLE", "libell_d_acheminement": "MAILLY LA VILLE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89237"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca3e276c75d1790ba25fef84c8d940c9386319c", "fields": {"nom_de_la_commune": "MAILLY LE CHATEAU", "libell_d_acheminement": "MAILLY LE CHATEAU", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89238"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2616bbe271b2a8123e01245839b7a229eb0f9b", "fields": {"nom_de_la_commune": "MARSANGY", "libell_d_acheminement": "MARSANGY", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89245"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c9b272408705d14a17aac98b1fde69a63cd664", "fields": {"nom_de_la_commune": "MENADES", "libell_d_acheminement": "MENADES", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89248"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4049e3e8607d99b09d4cc82a763aa7e79aca4646", "fields": {"nom_de_la_commune": "MERCY", "libell_d_acheminement": "MERCY", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89249"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb6b51b9cfc7da0128443ee0c60a416e2591271", "fields": {"nom_de_la_commune": "MERRY LA VALLEE", "libell_d_acheminement": "MERRY LA VALLEE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89251"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f66339cbeed2dd9b416ec4668876cbe380e56e", "fields": {"nom_de_la_commune": "NOE", "libell_d_acheminement": "NOE", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89278"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb5d47f7c62515e6357c294aeadad5640c45d4b", "fields": {"nom_de_la_commune": "PAILLY", "libell_d_acheminement": "PAILLY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89285"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786fc54478c29d5936fdcf5a334011b79ea79891", "fields": {"nom_de_la_commune": "PARON", "libell_d_acheminement": "PARON", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89287"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebb3cd0fad41a10fba7fa7396abfdf1435f717b", "fields": {"nom_de_la_commune": "PAROY EN OTHE", "libell_d_acheminement": "PAROY EN OTHE", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89288"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f202c39463d82b4ba59d3e143ab72dc904bcc4", "fields": {"nom_de_la_commune": "PERRIGNY SUR ARMANCON", "libell_d_acheminement": "PERRIGNY SUR ARMANCON", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89296"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2613511b1c595545e75fca7d7b5d0f34663ee336", "fields": {"nom_de_la_commune": "PIERRE PERTHUIS", "libell_d_acheminement": "PIERRE PERTHUIS", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89297"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7236262e5300c6c1a2215ede7470b6d007a384", "fields": {"nom_de_la_commune": "PISY", "libell_d_acheminement": "PISY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89300"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b594e17387f7236c697cad97e3d5bf696af5af", "fields": {"nom_de_la_commune": "PREGILBERT", "libell_d_acheminement": "PREGILBERT", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89314"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06f348c308e1ab21ad08acb4e22a71fbd2a6f02", "fields": {"nom_de_la_commune": "PREHY", "libell_d_acheminement": "PREHY", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89315"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1fe4fb87d762415c0507b4b401d38a5621dcf9", "fields": {"nom_de_la_commune": "ROGNY LES SEPT ECLUSES", "libell_d_acheminement": "ROGNY LES SEPT ECLUSES", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89324"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0bccc9fadc50233425c591708754d507522609", "fields": {"nom_de_la_commune": "RONCHERES", "libell_d_acheminement": "RONCHERES", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89325"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7a69529b753ebb97687811cf72b3d6bd9a1d67", "fields": {"nom_de_la_commune": "ROSOY", "libell_d_acheminement": "ROSOY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89326"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc2a5f5f67447c47776a0126e07fe0cc3af365d", "fields": {"nom_de_la_commune": "STE COLOMBE SUR LOING", "libell_d_acheminement": "STE COLOMBE SUR LOING", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89340"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99147e94ceb9788f9e19bb25f8dcd3c9a261046d", "fields": {"nom_de_la_commune": "ST FARGEAU", "libell_d_acheminement": "ST FARGEAU", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89344"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c31f88aa5ac3a533da6a895ca3e9895b78061352", "fields": {"nom_de_la_commune": "ST LOUP D ORDON", "libell_d_acheminement": "ST LOUP D ORDON", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89350"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96231fc63190b93d1c7d3ffd8a65b75eeb6e9b6f", "fields": {"nom_de_la_commune": "STE MAGNANCE", "libell_d_acheminement": "STE MAGNANCE", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89351"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5816d94bc63f82821caeb9d28b178c321ea947", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89352"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48bcffba1bb05928fb273bac6811b904f1b75ce", "fields": {"nom_de_la_commune": "ST MARTIN SUR ARMANCON", "libell_d_acheminement": "ST MARTIN SUR ARMANCON", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89355"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf78d1f59a56a4a5edcea758509f66a586c485e7", "fields": {"nom_de_la_commune": "ST MAURICE THIZOUAILLE", "libell_d_acheminement": "ST MAURICE THIZOUAILLE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89361"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf14241ac3a1c5fdef5c6bd1c6f8e19e8c93ef0", "fields": {"nom_de_la_commune": "ST MORE", "libell_d_acheminement": "ST MORE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89362"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439802b9260f92eff039dd0f017763cce4eb429d", "fields": {"nom_de_la_commune": "STE PALLAYE", "libell_d_acheminement": "STE PALLAYE", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89363"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9395e8fcb7b863bbc251b09007a15ba4eb4f899", "fields": {"nom_de_la_commune": "SAINTS EN PUISAYE", "libell_d_acheminement": "SAINTS EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89367"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786653640a42ec84da3cf0a7c746db1bee7997a2", "fields": {"nom_de_la_commune": "ST SAUVEUR EN PUISAYE", "libell_d_acheminement": "ST SAUVEUR EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89368"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcfdbe657d8770e2c34c669babe1971b29c327da", "fields": {"nom_de_la_commune": "ST SEROTIN", "libell_d_acheminement": "ST SEROTIN", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89369"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83aed6257319e8d8b18c55281877ee3b91ca2ba0", "fields": {"nom_de_la_commune": "STE VERTU", "libell_d_acheminement": "STE VERTU", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89371"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1136727f08fe780707279dec4bbee5c480db7aa2", "fields": {"nom_de_la_commune": "SAVIGNY EN TERRE PLAINE", "libell_d_acheminement": "SAVIGNY EN TERRE PLAINE", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89379"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d1f627f4d2b0c31a66d2976a0b22cb828d16da", "fields": {"nom_de_la_commune": "SEIGNELAY", "libell_d_acheminement": "SEIGNELAY", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89382"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945b35371bed6f71f55f8177b8be821e549c18e5", "fields": {"nom_de_la_commune": "SEMENTRON", "libell_d_acheminement": "SEMENTRON", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89383"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1b3f8c5a27b9d231a6acbcffcc4a037b475fb0", "fields": {"code_postal": "89116", "code_commune_insee": "89388", "libell_d_acheminement": "SEPEAUX ST ROMAIN", "ligne_5": "ST ROMAIN LE PREUX", "nom_de_la_commune": "SEPEAUX ST ROMAIN", "coordonnees_gps": [47.9697320355, 3.23051623218]}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c165495a996bf1de6c83bc996c0d56ab6c66272b", "fields": {"nom_de_la_commune": "SORMERY", "libell_d_acheminement": "SORMERY", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89398"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972cb9b8666e68ab2199aa7b120304026d4ba2e2", "fields": {"nom_de_la_commune": "SUBLIGNY", "libell_d_acheminement": "SUBLIGNY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89404"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a46d46585a42b58192914ed5cc7c7c4c7a0240", "fields": {"nom_de_la_commune": "TAINGY", "libell_d_acheminement": "TAINGY", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89405"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cbaa757f4327a0f29404d48309d76df32ce7f8", "fields": {"nom_de_la_commune": "TALCY", "libell_d_acheminement": "TALCY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89406"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af923425e36c0be3d09e9070ed21dffdb91f1a51", "fields": {"code_postal": "89430", "code_commune_insee": "89407", "libell_d_acheminement": "TANLAY", "ligne_5": "ST VINNEMER", "nom_de_la_commune": "TANLAY", "coordonnees_gps": [47.8807711106, 4.10354187275]}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d577d7dab25371584e9943e306f6beea45ba1ab4", "fields": {"nom_de_la_commune": "TANNERRE EN PUISAYE", "libell_d_acheminement": "TANNERRE EN PUISAYE", "code_postal": "89350", "coordonnees_gps": [47.7773444304, 3.09490527015], "code_commune_insee": "89408"}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4550d2967f2b529b4118cd1aaf885c3e085d1b52", "fields": {"nom_de_la_commune": "THAROT", "libell_d_acheminement": "THAROT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89410"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31787a5805ae4fe2e4177e41211d39426d72ea9", "fields": {"code_postal": "89260", "code_commune_insee": "89414", "libell_d_acheminement": "THORIGNY SUR OREUSE", "ligne_5": "ST MARTIN SUR OREUSE", "nom_de_la_commune": "THORIGNY SUR OREUSE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0262b089144fd49c133d89b9a71e3c9c7e251897", "fields": {"nom_de_la_commune": "TISSEY", "libell_d_acheminement": "TISSEY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89417"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba15aabc304f0283f5640d3ceb3916c4f0e040a", "fields": {"nom_de_la_commune": "TREIGNY", "libell_d_acheminement": "TREIGNY", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89420"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b163a3b9f173212982d0d509436ff1b21fcd3567", "fields": {"nom_de_la_commune": "TRICHEY", "libell_d_acheminement": "TRICHEY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89422"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8739f54fef1e2d18ea851e58a7a3d7c437bfd781", "fields": {"nom_de_la_commune": "TRUCY SUR YONNE", "libell_d_acheminement": "TRUCY SUR YONNE", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89424"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4858a88011910dfc286a9392446f56c6d7280fe4", "fields": {"nom_de_la_commune": "TURNY", "libell_d_acheminement": "TURNY", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89425"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e097d13b2d4e19e9d9af887fca887e4b69763f7b", "fields": {"nom_de_la_commune": "VASSY SOUS PISY", "libell_d_acheminement": "VASSY SOUS PISY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89431"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed5ae61c1e737710856cda067fb99f41a4ce871", "fields": {"nom_de_la_commune": "VAUDEURS", "libell_d_acheminement": "VAUDEURS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89432"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33534214338e58921332373e7cfe9ca1cfac143", "fields": {"nom_de_la_commune": "VENOUSE", "libell_d_acheminement": "VENOUSE", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89437"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "123f72e965a3091861f411521b30b7c85872a117", "fields": {"code_postal": "89600", "code_commune_insee": "89439", "libell_d_acheminement": "VERGIGNY", "ligne_5": "REBOURSEAUX", "nom_de_la_commune": "VERGIGNY", "coordonnees_gps": [47.9775250716, 3.71821754522]}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7f7616ac45bfb621f6afd4d3e42eae7e33ecb8", "fields": {"nom_de_la_commune": "VERON", "libell_d_acheminement": "VERON", "code_postal": "89510", "coordonnees_gps": [48.1263967669, 3.31137297054], "code_commune_insee": "89443"}, "geometry": {"type": "Point", "coordinates": [3.31137297054, 48.1263967669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b009682162332dfaa2d76f121ec7c808e6f5753", "fields": {"nom_de_la_commune": "VEZANNES", "libell_d_acheminement": "VEZANNES", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89445"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df012ab24c6abb4ef4279c55d0ae9da1bcb87f8e", "fields": {"nom_de_la_commune": "VILLECIEN", "libell_d_acheminement": "VILLECIEN", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89452"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b963db88ae6b5002f55936016ac4a51393e53768", "fields": {"nom_de_la_commune": "VILLENEUVE L ARCHEVEQUE", "libell_d_acheminement": "VILLENEUVE L ARCHEVEQUE", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89461"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5f2e24d6fade7905128e3ae095cabaca68e72f", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "GRANGE LE BOCAGE", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88451897c48701abd76bca96ab64f3514b7fbe14", "fields": {"nom_de_la_commune": "VILLIERS VINEUX", "libell_d_acheminement": "VILLIERS VINEUX", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89474"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2481feb3c2887924b0bf3baa49ddd5e7d04f75", "fields": {"nom_de_la_commune": "VILLON", "libell_d_acheminement": "VILLON", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89475"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e224e5c6fe94a57102fc65dbc383a23ef1058ee0", "fields": {"nom_de_la_commune": "VIREAUX", "libell_d_acheminement": "VIREAUX", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89481"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5bfa092c40fe161c0b9cb6576799961f21ee9d", "fields": {"nom_de_la_commune": "VOLGRE", "libell_d_acheminement": "VOLGRE", "code_postal": "89710", "coordonnees_gps": [47.9188469839, 3.34212763493], "code_commune_insee": "89484"}, "geometry": {"type": "Point", "coordinates": [3.34212763493, 47.9188469839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb10ad0f430a2a3fc7993140df9242777c7f8ae", "fields": {"code_postal": "90400", "code_commune_insee": "90001", "libell_d_acheminement": "ANDELNANS", "ligne_5": "FROIDEVAL", "nom_de_la_commune": "ANDELNANS", "coordonnees_gps": [47.5946428688, 6.88170396184]}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fb653696320e50d8bda065b2df3f7276119a09", "fields": {"nom_de_la_commune": "ANGEOT", "libell_d_acheminement": "ANGEOT", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90002"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5b6a3c464f80c38ec00f4e45e9405ba1680b0a", "fields": {"nom_de_la_commune": "ANJOUTEY", "libell_d_acheminement": "ANJOUTEY", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90003"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6817e96c4361bee097270538dbe053fe4a3e2780", "fields": {"nom_de_la_commune": "BANVILLARS", "libell_d_acheminement": "BANVILLARS", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90007"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a477a24746eb4406f35430dc1f29a466786168ce", "fields": {"nom_de_la_commune": "BAVILLIERS", "libell_d_acheminement": "BAVILLIERS", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90008"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ba58dd985d5692b64ebca47ec1f0cf2276840b3", "fields": {"nom_de_la_commune": "BESSONCOURT", "libell_d_acheminement": "BESSONCOURT", "code_postal": "90160", "coordonnees_gps": [47.6449615689, 6.92104396254], "code_commune_insee": "90012"}, "geometry": {"type": "Point", "coordinates": [6.92104396254, 47.6449615689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90244ecd1ae29d41dddce48d4f6e9a8204cbda5", "fields": {"nom_de_la_commune": "BOTANS", "libell_d_acheminement": "BOTANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90015"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28764c8c280f0ba5bf85255eaabfe84e7c7bb8b8", "fields": {"nom_de_la_commune": "CHARMOIS", "libell_d_acheminement": "CHARMOIS", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90021"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bb86a6c2b305dbed79b7482d4360cbf000b46f", "fields": {"nom_de_la_commune": "CHEVREMONT", "libell_d_acheminement": "CHEVREMONT", "code_postal": "90340", "coordonnees_gps": [47.6213054353, 6.94143825655], "code_commune_insee": "90026"}, "geometry": {"type": "Point", "coordinates": [6.94143825655, 47.6213054353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbe013749129c7c698d86004456e5240ed37304", "fields": {"nom_de_la_commune": "FAVEROIS", "libell_d_acheminement": "FAVEROIS", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90043"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddad21a89f7cf07cb7299fab1e5d27649a9f13a5", "fields": {"nom_de_la_commune": "GROSNE", "libell_d_acheminement": "GROSNE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90055"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71de49e8a0358491ebe99880115ea0e3be26a288", "fields": {"nom_de_la_commune": "LAMADELEINE VAL DES ANGES", "libell_d_acheminement": "LAMADELEINE VAL DES ANGES", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90061"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60a438d6cad83d79c272f2d6f846cd74c2ce2c6", "fields": {"nom_de_la_commune": "LARIVIERE", "libell_d_acheminement": "LARIVIERE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90062"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4983fb9c36613e496ab2368b4d17c037881d53c", "fields": {"nom_de_la_commune": "MORVILLARS", "libell_d_acheminement": "MORVILLARS", "code_postal": "90120", "coordonnees_gps": [47.5385114028, 6.93127179271], "code_commune_insee": "90072"}, "geometry": {"type": "Point", "coordinates": [6.93127179271, 47.5385114028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f0b3fd16458e6d3029a4293e9ce667530ea0a36", "fields": {"nom_de_la_commune": "MOVAL", "libell_d_acheminement": "MOVAL", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90073"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb62ca6d728df3073ba7a9d77d8c7ef73063f6e", "fields": {"nom_de_la_commune": "RIERVESCEMONT", "libell_d_acheminement": "RIERVESCEMONT", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90085"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0498aa88d27443a448cfb7e683caac7ea65d122d", "fields": {"nom_de_la_commune": "ST DIZIER L EVEQUE", "libell_d_acheminement": "ST DIZIER L EVEQUE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90090"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc18090b8bb33c7d92c44e7c771c5927bf7303ee", "fields": {"nom_de_la_commune": "SUARCE", "libell_d_acheminement": "SUARCE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90095"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d1ee55cb9890085524291583e1df8122ec5934", "fields": {"nom_de_la_commune": "VESCEMONT", "libell_d_acheminement": "VESCEMONT", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90102"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb46a64ee6cd3a24e72bf1bc44edef3da95ad72", "fields": {"nom_de_la_commune": "VEZELOIS", "libell_d_acheminement": "VEZELOIS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90104"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8593ffe64de825b69dac719cae52ec38c36cf564", "fields": {"nom_de_la_commune": "ANGERVILLE", "libell_d_acheminement": "ANGERVILLE", "code_postal": "91670", "coordonnees_gps": [48.3099539715, 2.00495721135], "code_commune_insee": "91016"}, "geometry": {"type": "Point", "coordinates": [2.00495721135, 48.3099539715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7109eb7c0a822d86689aed3d29dfa268d41a46b", "fields": {"nom_de_la_commune": "ARRANCOURT", "libell_d_acheminement": "ARRANCOURT", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91022"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478e460418770e073d4068953f6055953bb2cbda", "fields": {"nom_de_la_commune": "AUVERNAUX", "libell_d_acheminement": "AUVERNAUX", "code_postal": "91830", "coordonnees_gps": [48.5482208788, 2.48758633681], "code_commune_insee": "91037"}, "geometry": {"type": "Point", "coordinates": [2.48758633681, 48.5482208788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d633bbcf6e5ca44ef97ccb589fe869dd22138e04", "fields": {"nom_de_la_commune": "BAULNE", "libell_d_acheminement": "BAULNE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91047"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a9ba7bcc67b5e83a8f2c769e768884b66a7fec", "fields": {"nom_de_la_commune": "BIEVRES", "libell_d_acheminement": "BIEVRES", "code_postal": "91570", "coordonnees_gps": [48.7564805382, 2.20696199549], "code_commune_insee": "91064"}, "geometry": {"type": "Point", "coordinates": [2.20696199549, 48.7564805382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14f0d9f2ff6c3aef578327ddb7173918e05d904d", "fields": {"nom_de_la_commune": "BOIGNEVILLE", "libell_d_acheminement": "BOIGNEVILLE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91069"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407d153d6220c76705619f664dab30b04e3ceeb3", "fields": {"nom_de_la_commune": "BOISSY SOUS ST YON", "libell_d_acheminement": "BOISSY SOUS ST YON", "code_postal": "91790", "coordonnees_gps": [48.5492269874, 2.21255361309], "code_commune_insee": "91085"}, "geometry": {"type": "Point", "coordinates": [2.21255361309, 48.5492269874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf39e6617947a02363e42834bc52b35008647fb", "fields": {"nom_de_la_commune": "BOULLAY LES TROUX", "libell_d_acheminement": "BOULLAY LES TROUX", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91093"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebceaab3da8a9fb85f60763b12a65f0665ab311b", "fields": {"nom_de_la_commune": "BOUVILLE", "libell_d_acheminement": "BOUVILLE", "code_postal": "91880", "coordonnees_gps": [48.4325540428, 2.27884287517], "code_commune_insee": "91100"}, "geometry": {"type": "Point", "coordinates": [2.27884287517, 48.4325540428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0462ae7579fa870751917e4004925d675e334f91", "fields": {"nom_de_la_commune": "TRAMONT ST ANDRE", "libell_d_acheminement": "TRAMONT ST ANDRE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54531"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9571791a3c1041a216e90a9f21a377a78d768a", "fields": {"nom_de_la_commune": "TREMBLECOURT", "libell_d_acheminement": "TREMBLECOURT", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54532"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1039d7906b5ec1c215c7b044eef81024b172197f", "fields": {"nom_de_la_commune": "VALLEROY", "libell_d_acheminement": "VALLEROY", "code_postal": "54910", "coordonnees_gps": [49.2141645381, 5.91861436724], "code_commune_insee": "54542"}, "geometry": {"type": "Point", "coordinates": [5.91861436724, 49.2141645381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a42191e5b31c27241904bf00d360418ecb1497aa", "fields": {"nom_de_la_commune": "VANDELEVILLE", "libell_d_acheminement": "VANDELEVILLE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54545"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d0decd8782dac72b41d9152daec02ae192c88b", "fields": {"nom_de_la_commune": "VAUDEMONT", "libell_d_acheminement": "VAUDEMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54552"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528f93fc65582d468ce1aee36ddaf709e17a7445", "fields": {"nom_de_la_commune": "VILCEY SUR TREY", "libell_d_acheminement": "VILCEY SUR TREY", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54566"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec23e225d1233123d9d5583c72bcda95a701422", "fields": {"nom_de_la_commune": "VILLE EN VERMOIS", "libell_d_acheminement": "VILLE EN VERMOIS", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54571"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64de733720eef0faedede1f68b58e20472297775", "fields": {"nom_de_la_commune": "VILLERUPT", "libell_d_acheminement": "VILLERUPT", "code_postal": "54190", "coordonnees_gps": [49.4525960193, 5.89523270383], "code_commune_insee": "54580"}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510acc7ef4b0d0cc996e7b8e8cf3eee511d8da1a", "fields": {"nom_de_la_commune": "VITRIMONT", "libell_d_acheminement": "VITRIMONT", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54588"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130c79817fda47a66120803cc8629a32f4895766", "fields": {"code_postal": "54260", "code_commune_insee": "54590", "libell_d_acheminement": "VIVIERS SUR CHIERS", "ligne_5": "REVEMONT", "nom_de_la_commune": "VIVIERS SUR CHIERS", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b606251c41798f57afe1af6c6848b2198af017", "fields": {"nom_de_la_commune": "VOINEMONT", "libell_d_acheminement": "VOINEMONT", "code_postal": "54134", "coordonnees_gps": [48.5293245976, 6.1775765715], "code_commune_insee": "54591"}, "geometry": {"type": "Point", "coordinates": [6.1775765715, 48.5293245976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848ddf942fa0610f417c0bb25fe5f05b25a65712", "fields": {"nom_de_la_commune": "HAN DEVANT PIERREPONT", "libell_d_acheminement": "HAN DEVANT PIERREPONT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54602"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec404e1d21f8928442d9d58e5c7f515d36f65ac", "fields": {"nom_de_la_commune": "ABAINVILLE", "libell_d_acheminement": "ABAINVILLE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55001"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab7bc474d7792168195f7a71b24c5d3e4313494", "fields": {"nom_de_la_commune": "AMEL SUR L ETANG", "libell_d_acheminement": "AMEL SUR L ETANG", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55008"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981f6986aed7586230d1a03eeb56747ed28cb095", "fields": {"nom_de_la_commune": "AUTREVILLE ST LAMBERT", "libell_d_acheminement": "AUTREVILLE ST LAMBERT", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55018"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6168d456426c86c57bcddabfd44f42d2cf6ab9", "fields": {"nom_de_la_commune": "AVILLERS STE CROIX", "libell_d_acheminement": "AVILLERS STE CROIX", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55021"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c40cf111adff0d8d3e3915d429e910f0c204e18", "fields": {"nom_de_la_commune": "BANNONCOURT", "libell_d_acheminement": "BANNONCOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55027"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329a8da2a44d22a24f052a57e1ea86f6571f1381", "fields": {"nom_de_la_commune": "BAUDIGNECOURT", "libell_d_acheminement": "BAUDIGNECOURT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55030"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f5d0d577398ebcbd7194fa1085a9d8f2146632", "fields": {"nom_de_la_commune": "BAUDONVILLIERS", "libell_d_acheminement": "BAUDONVILLIERS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55031"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2dc7d0a4d60d1dc31e9f0b3a5d1a72ec53e236", "fields": {"nom_de_la_commune": "BAZEILLES SUR OTHAIN", "libell_d_acheminement": "BAZEILLES SUR OTHAIN", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55034"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6470049cb8071ec7c3689c96951e528f5a5ecbeb", "fields": {"nom_de_la_commune": "BELLERAY", "libell_d_acheminement": "BELLERAY", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55042"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2b75a43779d5b1780c56cfb2196ffa46fa1edb", "fields": {"nom_de_la_commune": "BOINVILLE EN WOEVRE", "libell_d_acheminement": "BOINVILLE EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55057"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc2f793d51fd616ab44d63f24fc7b87b2257ddca", "fields": {"nom_de_la_commune": "BONNET", "libell_d_acheminement": "BONNET", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55059"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b913e7ba317e2e5daa0015747e0ff804ee6e8668", "fields": {"nom_de_la_commune": "LE BOUCHON SUR SAULX", "libell_d_acheminement": "LE BOUCHON SUR SAULX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55061"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b3982302e7da627c872181a8f2888843618241f", "fields": {"nom_de_la_commune": "BOUQUEMONT", "libell_d_acheminement": "BOUQUEMONT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55064"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0648e52a810a0f421a77c43850ee3e852eb8745a", "fields": {"nom_de_la_commune": "BRANDEVILLE", "libell_d_acheminement": "BRANDEVILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55071"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b095726c29b39ed127bf519c2a0a84b62394310", "fields": {"nom_de_la_commune": "BRAQUIS", "libell_d_acheminement": "BRAQUIS", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55072"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a84958d49a92732fb23aa218ebf5dc2b9e5eae80", "fields": {"nom_de_la_commune": "BREHEVILLE", "libell_d_acheminement": "BREHEVILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55076"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2769c0d4b7d206fdcc1cc4ebe741a71be6b42f8e", "fields": {"nom_de_la_commune": "BROUSSEY RAULECOURT", "libell_d_acheminement": "BROUSSEY RAULECOURT", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55085"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8053ec9cfffc9021b3b6cc60f0928878fd834b76", "fields": {"code_postal": "55200", "code_commune_insee": "55085", "libell_d_acheminement": "BROUSSEY RAULECOURT", "ligne_5": "RAULECOURT", "nom_de_la_commune": "BROUSSEY RAULECOURT", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23718672faf75063dc5539841a023497d4b6c6f", "fields": {"nom_de_la_commune": "BUREY EN VAUX", "libell_d_acheminement": "BUREY EN VAUX", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55088"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda539fa7aea52a0079f9f0abe09984fe971a3bb", "fields": {"code_postal": "55300", "code_commune_insee": "55093", "libell_d_acheminement": "BUXIERES SOUS LES COTES", "ligne_5": "BUXERULLES", "nom_de_la_commune": "BUXIERES SOUS LES COTES", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a18e41672265b63679d1c9e44f61457610d76c", "fields": {"code_postal": "55300", "code_commune_insee": "55093", "libell_d_acheminement": "BUXIERES SOUS LES COTES", "ligne_5": "WOINVILLE", "nom_de_la_commune": "BUXIERES SOUS LES COTES", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354aba955c28902d4c838902023267cfaa23bfc1", "fields": {"nom_de_la_commune": "CHALAINES", "libell_d_acheminement": "CHALAINES", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55097"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc53d32f1b844209679854907f0d428e532c0d19", "fields": {"nom_de_la_commune": "CHARNY SUR MEUSE", "libell_d_acheminement": "CHARNY SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55102"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a736dc0ca4cff0f37421fbc630173aeaa4889895", "fields": {"nom_de_la_commune": "CHARPENTRY", "libell_d_acheminement": "CHARPENTRY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55103"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc658a10988ab31e3fafdbfaec0a3152f565533", "fields": {"nom_de_la_commune": "CHAUVENCY LE CHATEAU", "libell_d_acheminement": "CHAUVENCY LE CHATEAU", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55109"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f4ddde15d17c98e7155ab83be15cd365ed16f6", "fields": {"nom_de_la_commune": "CHAUVONCOURT", "libell_d_acheminement": "CHAUVONCOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55111"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7582df65975fcdf133d86810548c7c7738f4804", "fields": {"nom_de_la_commune": "CHEPPY", "libell_d_acheminement": "CHEPPY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55113"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4509bc5d2f57a7c3a9ec97549f2c3ab85b6a5996", "fields": {"code_postal": "55120", "code_commune_insee": "55117", "libell_d_acheminement": "CLERMONT EN ARGONNE", "ligne_5": "AUZEVILLE EN ARGONNE", "nom_de_la_commune": "CLERMONT EN ARGONNE", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1ccd5ae82e817111781f6ef0bc3af676362966", "fields": {"nom_de_la_commune": "COMBRES SOUS LES COTES", "libell_d_acheminement": "COMBRES SOUS LES COTES", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55121"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65aeeab6190565c0b22d2274f677e15f86c6adc5", "fields": {"nom_de_la_commune": "COMMERCY", "libell_d_acheminement": "COMMERCY", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55122"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3280dc08a2b8558bb2dc9770b9d8aa39f3a649e6", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "HARGEVILLE SUR CHEE", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd791fe92e9e2c46e9367846b63639b38dee631", "fields": {"nom_de_la_commune": "CULEY", "libell_d_acheminement": "CULEY", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55138"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65765596e6b59fa225a20286da6ded6dfdcc972", "fields": {"nom_de_la_commune": "DANNEVOUX", "libell_d_acheminement": "DANNEVOUX", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55146"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16043c4143f238328313f6c5ef59e9cc6dc90e90", "fields": {"nom_de_la_commune": "DUN SUR MEUSE", "libell_d_acheminement": "DUN SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55167"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5854f61976c2aeed74ddc773088741d9f925ef7a", "fields": {"nom_de_la_commune": "ECOUVIEZ", "libell_d_acheminement": "ECOUVIEZ", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55169"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10950a400d8821d9f19b50e52895173fbe7b064", "fields": {"code_postal": "55500", "code_commune_insee": "55179", "libell_d_acheminement": "ERNEVILLE AUX BOIS", "ligne_5": "DOMREMY AUX BOIS", "nom_de_la_commune": "ERNEVILLE AUX BOIS", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "436dfcd75f46c3696f23b56d14712c97514055b5", "fields": {"nom_de_la_commune": "FAINS VEEL", "libell_d_acheminement": "FAINS VEEL", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55186"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6e3ef60036824c0c3c1c3cc2ec7c424f64042f", "fields": {"nom_de_la_commune": "FORGES SUR MEUSE", "libell_d_acheminement": "FORGES SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55193"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fb651b85c37e455dfe2354b19afee9e81dc983", "fields": {"nom_de_la_commune": "FREMEREVILLE SOUS LES COTES", "libell_d_acheminement": "FREMEREVILLE SOUS LES COTES", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55196"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f2c3ecd94be741b6b4e6419f4aa84854696e3a", "fields": {"nom_de_la_commune": "FRESNES AU MONT", "libell_d_acheminement": "FRESNES AU MONT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55197"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6475163266b2b44f8e99f6d63c8689b8209af6", "fields": {"nom_de_la_commune": "FRESNES EN WOEVRE", "libell_d_acheminement": "FRESNES EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55198"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed477fa5bf39139cd0b3e6b85fbd8a7799acdf9", "fields": {"nom_de_la_commune": "GENICOURT SUR MEUSE", "libell_d_acheminement": "GENICOURT SUR MEUSE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55204"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05604b546799cc8098d5c345fecfe2e494f44ad", "fields": {"nom_de_la_commune": "GERY", "libell_d_acheminement": "GERY", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55207"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4887e7def33842e53e4f6d805040ea9c23d4f27a", "fields": {"nom_de_la_commune": "GONDRECOURT LE CHATEAU", "libell_d_acheminement": "GONDRECOURT LE CHATEAU", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55215"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2457f4d92325cd1ef22be8ec1915ea5795f1f825", "fields": {"code_postal": "55130", "code_commune_insee": "55215", "libell_d_acheminement": "GONDRECOURT LE CHATEAU", "ligne_5": "TOURAILLES SOUS BOIS", "nom_de_la_commune": "GONDRECOURT LE CHATEAU", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954dbdcfa5f018ef203f820d9c5d72de6814edbe", "fields": {"nom_de_la_commune": "GRIMAUCOURT EN WOEVRE", "libell_d_acheminement": "GRIMAUCOURT EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55219"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10c5097682a1f8639aa3caa262eb9aa949850f3", "fields": {"nom_de_la_commune": "GRIMAUCOURT PRES SAMPIGNY", "libell_d_acheminement": "GRIMAUCOURT PRES SAMPIGNY", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55220"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ab7c31115a2f449143ae88ff909d76398d7491", "fields": {"nom_de_la_commune": "HEIPPES", "libell_d_acheminement": "HEIPPES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55241"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aee8d55c65334812e0b4d2b8d4a8e4a70eceae2", "fields": {"nom_de_la_commune": "HEVILLIERS", "libell_d_acheminement": "HEVILLIERS", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55246"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5158f919049d8197b54a1199464e2713ce339f", "fields": {"nom_de_la_commune": "JAMETZ", "libell_d_acheminement": "JAMETZ", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55255"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a10922846c64f78a34df75fb9f61d3e10f4d222", "fields": {"nom_de_la_commune": "JONVILLE EN WOEVRE", "libell_d_acheminement": "JONVILLE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55256"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a53a13db87712fceee32202b632a40cf8d49179", "fields": {"code_postal": "55200", "code_commune_insee": "55258", "libell_d_acheminement": "GEVILLE", "ligne_5": "GIRONVILLE SOUS LES COTES", "nom_de_la_commune": "GEVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a2dbaad44e0790631017823c55476327681102", "fields": {"code_postal": "55210", "code_commune_insee": "55267", "libell_d_acheminement": "LACHAUSSEE", "ligne_5": "HADONVILLE LES LACHAUSSEE", "nom_de_la_commune": "LACHAUSSEE", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5abe59e61cc7bf85be64b9afb04fb2d6f608774", "fields": {"nom_de_la_commune": "LAHAYMEIX", "libell_d_acheminement": "LAHAYMEIX", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55269"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b4823653a2640b7ec9561be1c7a7a320292fc2", "fields": {"code_postal": "55100", "code_commune_insee": "55276", "libell_d_acheminement": "LANDRECOURT LEMPIRE", "ligne_5": "LEMPIRE AUX BOIS", "nom_de_la_commune": "LANDRECOURT LEMPIRE", "coordonnees_gps": [49.185016183, 5.33825384268]}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84bdad9e48ba0ff595a986d675c8dd1f4f1d7c9b", "fields": {"nom_de_la_commune": "LANEUVILLE SUR MEUSE", "libell_d_acheminement": "LANEUVILLE SUR MEUSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55279"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ebdaaf1692cc0cbfb9a8d8b707215d0271b77fc", "fields": {"nom_de_la_commune": "LEMMES", "libell_d_acheminement": "LEMMES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55286"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b4c30fd31436e461981dd68dcd4015bd3b18c3", "fields": {"nom_de_la_commune": "LEROUVILLE", "libell_d_acheminement": "LEROUVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55288"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cf75f10ddbb0ae849efb2ff98bcb1f200b3c11", "fields": {"nom_de_la_commune": "LION DEVANT DUN", "libell_d_acheminement": "LION DEVANT DUN", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55293"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f71897b62eeb2144d20b8255f3bfff233226430", "fields": {"nom_de_la_commune": "LOISEY", "libell_d_acheminement": "LOISEY", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55298"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbf8f6a02cd85ee433c2a2ae59d776dc8e6fed2", "fields": {"nom_de_la_commune": "MALANCOURT", "libell_d_acheminement": "MALANCOURT", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55313"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae11fb8b79090e58a880d909933937d47c5dc290", "fields": {"nom_de_la_commune": "MANDRES EN BARROIS", "libell_d_acheminement": "MANDRES EN BARROIS", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55315"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62107e3d9e1fecaf29dd9787e1e8395593d55a75", "fields": {"nom_de_la_commune": "MANHEULLES", "libell_d_acheminement": "MANHEULLES", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55317"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761b48adfb7f6e62fc428e90399c8762ff4d193c", "fields": {"nom_de_la_commune": "MARVILLE", "libell_d_acheminement": "MARVILLE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55324"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b7512c866a94d6b560b6242e6435a2c082a1cc", "fields": {"nom_de_la_commune": "MAULAN", "libell_d_acheminement": "MAULAN", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55326"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394465f76b23fc774a44ce4f3e9ac98ef7cbaf79", "fields": {"nom_de_la_commune": "MAXEY SUR VAISE", "libell_d_acheminement": "MAXEY SUR VAISE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55328"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be5e05949f7384cb49fb4e863d293a40edc92c7", "fields": {"nom_de_la_commune": "MENIL LA HORGNE", "libell_d_acheminement": "MENIL LA HORGNE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55334"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ed6d2b32169c72124a72b8cf4d7d00fcccc3e3", "fields": {"nom_de_la_commune": "MOGEVILLE", "libell_d_acheminement": "MOGEVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55339"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c6ed19c31b47c8935a14d5b8dcb779ad391d27", "fields": {"nom_de_la_commune": "MOIREY FLABAS CREPION", "libell_d_acheminement": "MOIREY FLABAS CREPION", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55341"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5735d51a634de65520cdb209a565cbd8ec5cc7", "fields": {"nom_de_la_commune": "MONTIGNY DEVANT SASSEY", "libell_d_acheminement": "MONTIGNY DEVANT SASSEY", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55349"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71925c0d40ab6345bfcd6c6430d6619c75cac40", "fields": {"nom_de_la_commune": "MONTMEDY", "libell_d_acheminement": "MONTMEDY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55351"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a02c87dd2e6a25aab39f60a0b27d0150d2d9e", "fields": {"nom_de_la_commune": "MONTPLONNE", "libell_d_acheminement": "MONTPLONNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55352"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cfca195886f135c574a8ffdf456985b01a4b0d", "fields": {"nom_de_la_commune": "MOUILLY", "libell_d_acheminement": "MOUILLY", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55360"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5efef3b1037fcfc4ae5119b3760e2f5922e6d3", "fields": {"nom_de_la_commune": "MOULINS ST HUBERT", "libell_d_acheminement": "MOULINS ST HUBERT", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55362"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0237855e415dd6b6a52a7453486127844cdfd5d5", "fields": {"nom_de_la_commune": "NEUVILLE LES VAUCOULEURS", "libell_d_acheminement": "NEUVILLE LES VAUCOULEURS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55381"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c450d45b02b99273bfa447a8f3c644e13698f1ce", "fields": {"nom_de_la_commune": "NIXEVILLE BLERCOURT", "libell_d_acheminement": "NIXEVILLE BLERCOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55385"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4af94ded03986324ff54abb5104d556fb67802", "fields": {"code_postal": "55210", "code_commune_insee": "55386", "libell_d_acheminement": "NONSARD LAMARCHE", "ligne_5": "LAMARCHE EN WOEVRE", "nom_de_la_commune": "NONSARD LAMARCHE", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ebb7151357ba61cbbc7eaf02c9773d5a76da81", "fields": {"nom_de_la_commune": "PAGNY LA BLANCHE COTE", "libell_d_acheminement": "PAGNY LA BLANCHE COTE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55397"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93aeb643080269ec930b1cf94142d72533400cb2", "fields": {"nom_de_la_commune": "PIERREFITTE SUR AIRE", "libell_d_acheminement": "PIERREFITTE SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55404"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bb5387d4f2690459ccc0dc0ddfe7c34837fbeb", "fields": {"nom_de_la_commune": "RAMBLUZIN ET BENOITE VAUX", "libell_d_acheminement": "RAMBLUZIN ET BENOITE VAUX", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55411"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92561f3e7d8b3f120e754904244f755d5442e5dd", "fields": {"nom_de_la_commune": "RARECOURT", "libell_d_acheminement": "RARECOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55416"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f0b261478515ab0738a5a37c361abb508d56c7", "fields": {"nom_de_la_commune": "REMBERCOURT SOMMAISNE", "libell_d_acheminement": "REMBERCOURT SOMMAISNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55423"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c4ab12e19dc0ad896f635a45ab244206f46132", "fields": {"nom_de_la_commune": "RIAVILLE", "libell_d_acheminement": "RIAVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55429"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d3f7fe191d1305eaae6ed51c398fb6cff08ec4", "fields": {"nom_de_la_commune": "RICHECOURT", "libell_d_acheminement": "RICHECOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55431"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd679fdb2b4efa8d66a515b38e82d7a4e308587", "fields": {"nom_de_la_commune": "RIGNY LA SALLE", "libell_d_acheminement": "RIGNY LA SALLE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55433"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265ed632ae2d91b3aab6626258f395bf5202681d", "fields": {"nom_de_la_commune": "ROBERT ESPAGNE", "libell_d_acheminement": "ROBERT ESPAGNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55435"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d709c06122fa50bd451ca62d7691cccb4292d9", "fields": {"nom_de_la_commune": "ROMAGNE SOUS LES COTES", "libell_d_acheminement": "ROMAGNE SOUS LES COTES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55437"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cdfe7221c12f77ae15719fd6ebb7f88ab6e032", "fields": {"nom_de_la_commune": "RUPT AUX NONAINS", "libell_d_acheminement": "RUPT AUX NONAINS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55447"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8d6bcced723084a8693b7a3e55a087465e5207", "fields": {"nom_de_la_commune": "SOUCY", "libell_d_acheminement": "SOUCY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89399"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024f41a2d55a2170c078a07bdfc26c83e952c6f6", "fields": {"nom_de_la_commune": "TANLAY", "libell_d_acheminement": "TANLAY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89407"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3eb4484e2383d35223443b2053333dcf8dc9c3c", "fields": {"code_postal": "89320", "code_commune_insee": "89411", "libell_d_acheminement": "LES VALLEES DE LA VANNE", "ligne_5": "VAREILLES", "nom_de_la_commune": "LES VALLEES DE LA VANNE", "coordonnees_gps": [48.1363744746, 3.52794249897]}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa58982929e930971aec4ecb3335f196df852d4d", "fields": {"nom_de_la_commune": "THORIGNY SUR OREUSE", "libell_d_acheminement": "THORIGNY SUR OREUSE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89414"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dd8e57c60a1b4321d0ad23a65ba411cd904efb", "fields": {"nom_de_la_commune": "THORY", "libell_d_acheminement": "THORY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89415"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83457d4a17e56520b8528be8c74ed46bde889ce", "fields": {"nom_de_la_commune": "VALLERY", "libell_d_acheminement": "VALLERY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89428"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b690513a928de046e213c75b4bc4bb17762dc8f1", "fields": {"nom_de_la_commune": "VENIZY", "libell_d_acheminement": "VENIZY", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89436"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df86f0d6ee9479250aca746505531343a1ec31a", "fields": {"nom_de_la_commune": "VENOY", "libell_d_acheminement": "VENOY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89438"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31cd34cd24c7a1df1747d6bb57e39bdb3d12c1e9", "fields": {"nom_de_la_commune": "VERGIGNY", "libell_d_acheminement": "VERGIGNY", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89439"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd54da2512079fbc8c9ce53d20f12d05f630e198", "fields": {"nom_de_la_commune": "VERNOY", "libell_d_acheminement": "VERNOY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89442"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5eb19b737e524f8fdc87a6637499a51ee1dbb3f", "fields": {"nom_de_la_commune": "VEZELAY", "libell_d_acheminement": "VEZELAY", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89446"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ded178e4ac1fc3b45eaf7c0ab869387ad5dc9a", "fields": {"nom_de_la_commune": "VILLEPERROT", "libell_d_acheminement": "VILLEPERROT", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89465"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a25e46c52a5c8d2f7e99ce5632112b92f86e1c", "fields": {"nom_de_la_commune": "VILLIERS LOUIS", "libell_d_acheminement": "VILLIERS LOUIS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89471"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba82086213ab995c797696b54c1f3ec24feae8b", "fields": {"nom_de_la_commune": "VILLIERS ST BENOIT", "libell_d_acheminement": "VILLIERS ST BENOIT", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89472"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83f46ba433cc7a39593718d280a38cd22d79884e", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89478"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d29fe892a8c7d3fe520525e8aaa19cdd53fae2e", "fields": {"nom_de_la_commune": "VINCELOTTES", "libell_d_acheminement": "VINCELOTTES", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89479"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b00736bd9354fef5062e8a2b61f9cc2291f06b8", "fields": {"nom_de_la_commune": "VINNEUF", "libell_d_acheminement": "VINNEUF", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89480"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5e4fa57d1fc7da88e06a54b058827429d9e06a", "fields": {"nom_de_la_commune": "VOISINES", "libell_d_acheminement": "VOISINES", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89483"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50dd03579ae8d5360ee469154f1642609356588", "fields": {"nom_de_la_commune": "VOUTENAY SUR CURE", "libell_d_acheminement": "VOUTENAY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89485"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6d6cf201110a447d8d364961762ac88c4cf1ad", "fields": {"nom_de_la_commune": "ARGIESANS", "libell_d_acheminement": "ARGIESANS", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90004"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9aa3fe294947a1d579d00d7b22da4aeea238049", "fields": {"nom_de_la_commune": "BUC", "libell_d_acheminement": "BUC", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90020"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9e962faab8d2edb1d2f2e98c7c53e32ba9c0a3", "fields": {"nom_de_la_commune": "CHAUX", "libell_d_acheminement": "CHAUX", "code_postal": "90330", "coordonnees_gps": [47.7124367977, 6.83797967606], "code_commune_insee": "90023"}, "geometry": {"type": "Point", "coordinates": [6.83797967606, 47.7124367977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e572ce71a7eb69fdc6302b25632951a54aa3983", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90027"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c113318ab1cd79b81baea488fe54af13541244", "fields": {"nom_de_la_commune": "COURTELEVANT", "libell_d_acheminement": "COURTELEVANT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90028"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c22ce5b0853442b2fa440fc634602768eb26153", "fields": {"nom_de_la_commune": "ESSERT", "libell_d_acheminement": "ESSERT", "code_postal": "90850", "coordonnees_gps": [47.6366865561, 6.81219643558], "code_commune_insee": "90039"}, "geometry": {"type": "Point", "coordinates": [6.81219643558, 47.6366865561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b30581ae93629953f4c4056a7460b00683ad7ca", "fields": {"nom_de_la_commune": "FECHE L EGLISE", "libell_d_acheminement": "FECHE L EGLISE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90045"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bfcc53b806a10b70ab2a2fb6d9c9553dd309012", "fields": {"nom_de_la_commune": "FLORIMONT", "libell_d_acheminement": "FLORIMONT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90046"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b104d36c297bea12fa1e2442298f14011ddcaf", "fields": {"nom_de_la_commune": "JONCHEREY", "libell_d_acheminement": "JONCHEREY", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90056"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdcf082c674015a471601d5df5abe1c613fda77", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS CHAUX", "libell_d_acheminement": "LACHAPELLE SOUS CHAUX", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90057"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008d0ee1907fb9f013df837743562562eb336a26", "fields": {"nom_de_la_commune": "LEBETAIN", "libell_d_acheminement": "LEBETAIN", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90063"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce4eabb62aba7b4f76c8b99e3c2ac513c76e85e", "fields": {"nom_de_la_commune": "LEPUIX", "libell_d_acheminement": "LEPUIX", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90065"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bda49398090e041d09528151a801d9be7b80bb", "fields": {"nom_de_la_commune": "MENONCOURT", "libell_d_acheminement": "MENONCOURT", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90067"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2790dee4082a21d065e2f0e0fe7c84be8ba294da", "fields": {"nom_de_la_commune": "MEROUX", "libell_d_acheminement": "MEROUX", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90068"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd8a1ce6321725a322c1655d241aa602f1e4a7f", "fields": {"nom_de_la_commune": "MEZIRE", "libell_d_acheminement": "MEZIRE", "code_postal": "90120", "coordonnees_gps": [47.5385114028, 6.93127179271], "code_commune_insee": "90069"}, "geometry": {"type": "Point", "coordinates": [6.93127179271, 47.5385114028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db67f6f777ad2a8e452cdf956189795263c97b17", "fields": {"nom_de_la_commune": "PETIT CROIX", "libell_d_acheminement": "PETIT CROIX", "code_postal": "90130", "coordonnees_gps": [47.605567769, 6.99078617872], "code_commune_insee": "90077"}, "geometry": {"type": "Point", "coordinates": [6.99078617872, 47.605567769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c744a1db45c3da890df88d12ce7d0c4026552dc9", "fields": {"nom_de_la_commune": "ST GERMAIN LE CHATELET", "libell_d_acheminement": "ST GERMAIN LE CHATELET", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90091"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab8de82f29ae64dafcb96708a4c209a6f39365", "fields": {"nom_de_la_commune": "VELLESCOT", "libell_d_acheminement": "VELLESCOT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90101"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b2a16f8bdc4afa3af3b323bcc9483a58ae35ad", "fields": {"nom_de_la_commune": "BALLANCOURT SUR ESSONNE", "libell_d_acheminement": "BALLANCOURT SUR ESSONNE", "code_postal": "91610", "coordonnees_gps": [48.521926036, 2.38777609557], "code_commune_insee": "91045"}, "geometry": {"type": "Point", "coordinates": [2.38777609557, 48.521926036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ffb4236729816b2262601c1da6da3bfd5ce316", "fields": {"nom_de_la_commune": "BLANDY", "libell_d_acheminement": "BLANDY", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91067"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdea3d49007a925f22442caa1a8e598bc343d709", "fields": {"nom_de_la_commune": "BOISSY LA RIVIERE", "libell_d_acheminement": "BOISSY LA RIVIERE", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91079"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ab2d63e27d139e6b8df0c557e9f827014a3648", "fields": {"nom_de_la_commune": "BOUTIGNY SUR ESSONNE", "libell_d_acheminement": "BOUTIGNY SUR ESSONNE", "code_postal": "91820", "coordonnees_gps": [48.4347578682, 2.37891668976], "code_commune_insee": "91099"}, "geometry": {"type": "Point", "coordinates": [2.37891668976, 48.4347578682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14515409f5c4dd9bccc6fb321640401a24437c37", "fields": {"nom_de_la_commune": "BROUY", "libell_d_acheminement": "BROUY", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91112"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827b946c93efad7e1fb0d9e83f059df760415996", "fields": {"nom_de_la_commune": "CHALOU MOULINEUX", "libell_d_acheminement": "CHALOU MOULINEUX", "code_postal": "91740", "coordonnees_gps": [48.3700823354, 2.00542911555], "code_commune_insee": "91131"}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06c8731a927906c2f5e8f74dda645e71a1304f7", "fields": {"nom_de_la_commune": "CHAMARANDE", "libell_d_acheminement": "CHAMARANDE", "code_postal": "91730", "coordonnees_gps": [48.5235985286, 2.21810391449], "code_commune_insee": "91132"}, "geometry": {"type": "Point", "coordinates": [2.21810391449, 48.5235985286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92cb3151966850de533952361f2394755f060b5", "fields": {"nom_de_la_commune": "CORBREUSE", "libell_d_acheminement": "CORBREUSE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91175"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd352f5a3de26b948ebe4893fe36b72c64b8f09", "fields": {"nom_de_la_commune": "EGLY", "libell_d_acheminement": "EGLY", "code_postal": "91520", "coordonnees_gps": [48.5769913812, 2.22093679196], "code_commune_insee": "91207"}, "geometry": {"type": "Point", "coordinates": [2.22093679196, 48.5769913812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cccafa2e0dd975796284d4849bc7ab290fb8f4f", "fields": {"nom_de_la_commune": "EPINAY SOUS SENART", "libell_d_acheminement": "EPINAY SOUS SENART", "code_postal": "91860", "coordonnees_gps": [48.6886159559, 2.51717131334], "code_commune_insee": "91215"}, "geometry": {"type": "Point", "coordinates": [2.51717131334, 48.6886159559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ac714e6f5a4314996c99c0cdf24df9054aee67", "fields": {"nom_de_la_commune": "ETRECHY", "libell_d_acheminement": "ETRECHY", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91226"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53567270e9984d40ca2fc8c1828f7f0c05b51aff", "fields": {"nom_de_la_commune": "LA FORET STE CROIX", "libell_d_acheminement": "LA FORET STE CROIX", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91248"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2814da47c2e3750dbbad63288bb20f88ce01fe", "fields": {"nom_de_la_commune": "GIRONVILLE SUR ESSONNE", "libell_d_acheminement": "GIRONVILLE SUR ESSONNE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91273"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ffe6ca99d37fb8cf9e46bf33342d5ac145f595", "fields": {"nom_de_la_commune": "GOMETZ LA VILLE", "libell_d_acheminement": "GOMETZ LA VILLE", "code_postal": "91400", "coordonnees_gps": [48.7079533558, 2.15419618195], "code_commune_insee": "91274"}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69cd5abb10b28504c823fc0e97fbd071ab16ad2c", "fields": {"nom_de_la_commune": "GRIGNY", "libell_d_acheminement": "GRIGNY", "code_postal": "91350", "coordonnees_gps": [48.6569579897, 2.38743847429], "code_commune_insee": "91286"}, "geometry": {"type": "Point", "coordinates": [2.38743847429, 48.6569579897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ecc3ddcf233f8f35c5125eb34e8f7eb49775ac", "fields": {"nom_de_la_commune": "GUIGNEVILLE SUR ESSONNE", "libell_d_acheminement": "GUIGNEVILLE SUR ESSONNE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91293"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7139e8acd74ae674f4e51cb09f287717f5a98df2", "fields": {"nom_de_la_commune": "LEUDEVILLE", "libell_d_acheminement": "LEUDEVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91332"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142fa92d1e7c2df00b70b3fe2d81efdbbb1630e9", "fields": {"nom_de_la_commune": "LISSES", "libell_d_acheminement": "LISSES", "code_postal": "91090", "coordonnees_gps": [48.5966711314, 2.42431627705], "code_commune_insee": "91340"}, "geometry": {"type": "Point", "coordinates": [2.42431627705, 48.5966711314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39b2a1067b7b70bbd97e89d38c12f70cf0ee5d9", "fields": {"nom_de_la_commune": "LONGPONT SUR ORGE", "libell_d_acheminement": "LONGPONT SUR ORGE", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91347"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee083d4e1d9a27c5beda6bdcd7386c1cfdbc5c4e", "fields": {"nom_de_la_commune": "MESPUITS", "libell_d_acheminement": "MESPUITS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91399"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2a402a61a01d3a5422d0304d6f5cd3511640d4", "fields": {"nom_de_la_commune": "MONDEVILLE", "libell_d_acheminement": "MONDEVILLE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91412"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c019462a16772723c31722e7d9705c8fb25a69a", "fields": {"nom_de_la_commune": "MONNERVILLE", "libell_d_acheminement": "MONNERVILLE", "code_postal": "91930", "coordonnees_gps": [48.3476477675, 2.03765545303], "code_commune_insee": "91414"}, "geometry": {"type": "Point", "coordinates": [2.03765545303, 48.3476477675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab8840956fbc19b718c635b9262fba98a240db1", "fields": {"nom_de_la_commune": "MONTGERON", "libell_d_acheminement": "MONTGERON", "code_postal": "91230", "coordonnees_gps": [48.6960101717, 2.46195353676], "code_commune_insee": "91421"}, "geometry": {"type": "Point", "coordinates": [2.46195353676, 48.6960101717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee49ea8dfafb09c4569d26fb9748857f685b2304", "fields": {"nom_de_la_commune": "MONTLHERY", "libell_d_acheminement": "MONTLHERY", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91425"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe801b1567eb8ac899432bebbac17c297aa3ced8", "fields": {"nom_de_la_commune": "MORANGIS", "libell_d_acheminement": "MORANGIS", "code_postal": "91420", "coordonnees_gps": [48.70235449, 2.3370579024], "code_commune_insee": "91432"}, "geometry": {"type": "Point", "coordinates": [2.3370579024, 48.70235449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce25fd0b1b2fed905165b78a55c47f914304316", "fields": {"nom_de_la_commune": "MORSANG SUR SEINE", "libell_d_acheminement": "MORSANG SUR SEINE", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91435"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e771f2aea0bd1c6ab2cc770bbbd442fb6af1e1", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91468"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27c19a352315a4be4d2d480b4b596d066f0565bf", "fields": {"nom_de_la_commune": "PLESSIS ST BENOIST", "libell_d_acheminement": "PLESSIS ST BENOIST", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91495"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e0a297f9df36a1de0bfece96e549f6ee21fbb8", "fields": {"nom_de_la_commune": "QUINCY SOUS SENART", "libell_d_acheminement": "QUINCY SOUS SENART", "code_postal": "91480", "coordonnees_gps": [48.6761652188, 2.54624238092], "code_commune_insee": "91514"}, "geometry": {"type": "Point", "coordinates": [2.54624238092, 48.6761652188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac55ebf494e65bbae11f3865e2e92b2ffd0c996", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "91190", "coordonnees_gps": [48.709665031, 2.12766544978], "code_commune_insee": "91538"}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ccfcc3689d9e53c83eb9d311be876532619624", "fields": {"nom_de_la_commune": "ST MAURICE MONTCOURONNE", "libell_d_acheminement": "ST MAURICE MONTCOURONNE", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91568"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91be3b966568892392f13f2bd13362f13519371f", "fields": {"nom_de_la_commune": "SERMAISE", "libell_d_acheminement": "SERMAISE", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91593"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285a55e1d328e080e6848050d9165ef3b7fa6d34", "fields": {"nom_de_la_commune": "SOISY SUR SEINE", "libell_d_acheminement": "SOISY SUR SEINE", "code_postal": "91450", "coordonnees_gps": [48.6546477863, 2.47449221609], "code_commune_insee": "91600"}, "geometry": {"type": "Point", "coordinates": [2.47449221609, 48.6546477863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15349eaa603652a3e8997a07d23f09f2fd41879", "fields": {"nom_de_la_commune": "SOUZY LA BRICHE", "libell_d_acheminement": "SOUZY LA BRICHE", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91602"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d21a22ff2c664702196024200777a5e5a9bd6048", "fields": {"code_postal": "91740", "code_commune_insee": "91613", "libell_d_acheminement": "CONGERVILLE THIONVILLE", "ligne_5": "CONGERVILLE", "nom_de_la_commune": "CONGERVILLE THIONVILLE", "coordonnees_gps": [48.3700823354, 2.00542911555]}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01cb2ee63b14527235f1133ab7fde50cfd4f299e", "fields": {"nom_de_la_commune": "TIGERY", "libell_d_acheminement": "TIGERY", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91617"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38a87e2c8cc1a78b431cc9a34a6b51788e5a247", "fields": {"nom_de_la_commune": "VARENNES JARCY", "libell_d_acheminement": "VARENNES JARCY", "code_postal": "91480", "coordonnees_gps": [48.6761652188, 2.54624238092], "code_commune_insee": "91631"}, "geometry": {"type": "Point", "coordinates": [2.54624238092, 48.6761652188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec58872d1d3e51125720061b96a7de677a8f6298", "fields": {"nom_de_la_commune": "VERRIERES LE BUISSON", "libell_d_acheminement": "VERRIERES LE BUISSON", "code_postal": "91370", "coordonnees_gps": [48.75027628, 2.25164599856], "code_commune_insee": "91645"}, "geometry": {"type": "Point", "coordinates": [2.25164599856, 48.75027628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eedea85a4c65f4cefae57084fdaaf0951d311ea8", "fields": {"nom_de_la_commune": "VIDELLES", "libell_d_acheminement": "VIDELLES", "code_postal": "91890", "coordonnees_gps": [48.4684848047, 2.42141567255], "code_commune_insee": "91654"}, "geometry": {"type": "Point", "coordinates": [2.42141567255, 48.4684848047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372278c690de349f1aae4eb14c8f3ff54714e98a", "fields": {"nom_de_la_commune": "LA VILLE DU BOIS", "libell_d_acheminement": "LA VILLE DU BOIS", "code_postal": "91620", "coordonnees_gps": [48.6612886154, 2.24603935989], "code_commune_insee": "91665"}, "geometry": {"type": "Point", "coordinates": [2.24603935989, 48.6612886154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b568bae173b1981475d48a2c2ef4ff9236989710", "fields": {"nom_de_la_commune": "VILLIERS SUR ORGE", "libell_d_acheminement": "VILLIERS SUR ORGE", "code_postal": "91700", "coordonnees_gps": [48.6398858055, 2.34146847544], "code_commune_insee": "91685"}, "geometry": {"type": "Point", "coordinates": [2.34146847544, 48.6398858055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce86983c362cc2f102de32cdd5e72a29433fcd08", "fields": {"nom_de_la_commune": "ASNIERES SUR SEINE", "libell_d_acheminement": "ASNIERES SUR SEINE", "code_postal": "92600", "coordonnees_gps": [48.915464529, 2.28801082145], "code_commune_insee": "92004"}, "geometry": {"type": "Point", "coordinates": [2.28801082145, 48.915464529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7123417a708cb98beb6da25771954cd7e67b82db", "fields": {"nom_de_la_commune": "BOULOGNE BILLANCOURT", "libell_d_acheminement": "BOULOGNE BILLANCOURT", "code_postal": "92100", "coordonnees_gps": [48.8364966292, 2.23867632216], "code_commune_insee": "92012"}, "geometry": {"type": "Point", "coordinates": [2.23867632216, 48.8364966292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e6aaaf35c5d0d2f5e91afcae53139d625fd378", "fields": {"nom_de_la_commune": "BOURG LA REINE", "libell_d_acheminement": "BOURG LA REINE", "code_postal": "92340", "coordonnees_gps": [48.7804118277, 2.31747787876], "code_commune_insee": "92014"}, "geometry": {"type": "Point", "coordinates": [2.31747787876, 48.7804118277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21284aff5f90fe79d1105a919a23cb6c8c0ba3f5", "fields": {"nom_de_la_commune": "CLICHY", "libell_d_acheminement": "CLICHY", "code_postal": "92110", "coordonnees_gps": [48.9036376273, 2.30599418937], "code_commune_insee": "92024"}, "geometry": {"type": "Point", "coordinates": [2.30599418937, 48.9036376273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38166454bf8fba05e53842be6c813e3814204755", "fields": {"nom_de_la_commune": "LA GARENNE COLOMBES", "libell_d_acheminement": "LA GARENNE COLOMBES", "code_postal": "92250", "coordonnees_gps": [48.9070465246, 2.24485945089], "code_commune_insee": "92035"}, "geometry": {"type": "Point", "coordinates": [2.24485945089, 48.9070465246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0edc5558bd26ac5f5747a4461c790a690be0270e", "fields": {"nom_de_la_commune": "GENNEVILLIERS", "libell_d_acheminement": "GENNEVILLIERS", "code_postal": "92230", "coordonnees_gps": [48.9345124152, 2.29467414472], "code_commune_insee": "92036"}, "geometry": {"type": "Point", "coordinates": [2.29467414472, 48.9345124152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e124a2df782402f43018c06bdb2a1bc8b9af6ccf", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "HOTONNES", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b74f58b1bf09f73f5fe8c641f4740349216c292", "fields": {"nom_de_la_commune": "HAUTECOURT ROMANECHE", "libell_d_acheminement": "HAUTECOURT ROMANECHE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01184"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a57c99460908c74c7a9c2cb2f9c55c7f2e7ec2", "fields": {"nom_de_la_commune": "HAUTEVILLE LOMPNES", "libell_d_acheminement": "HAUTEVILLE LOMPNES", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01185"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383a02e9923baa0defe2b8770fb22cfeab804efb", "fields": {"nom_de_la_commune": "FERNEY VOLTAIRE", "libell_d_acheminement": "FERNEY VOLTAIRE", "code_postal": "01210", "coordonnees_gps": [46.2774426572, 6.10074151675], "code_commune_insee": "01160"}, "geometry": {"type": "Point", "coordinates": [6.10074151675, 46.2774426572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5df0563c8646e2a71111e45c7f44ee1a3989b5e", "fields": {"nom_de_la_commune": "GERMAGNAT", "libell_d_acheminement": "GERMAGNAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01172"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c423f419f09407851119e03e2f180d8bb17241d", "fields": {"nom_de_la_commune": "FOISSIAT", "libell_d_acheminement": "FOISSIAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01163"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e7e1eb4c9f603e9a4f29563f5e74c1946f5faf", "fields": {"nom_de_la_commune": "IZERNORE", "libell_d_acheminement": "IZERNORE", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01192"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965d3832fef841cd4311d539834fee46db5a8f2b", "fields": {"nom_de_la_commune": "DOUVRES", "libell_d_acheminement": "DOUVRES", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01149"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87aec6fccf407d6acc606b3c03a5c864a27fd56", "fields": {"nom_de_la_commune": "HOSTIAZ", "libell_d_acheminement": "HOSTIAZ", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01186"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab587c85b7a2b4bf475def3b365116621237cdfc", "fields": {"nom_de_la_commune": "GRILLY", "libell_d_acheminement": "GRILLY", "code_postal": "01220", "coordonnees_gps": [46.3657930813, 6.1147054957], "code_commune_insee": "01180"}, "geometry": {"type": "Point", "coordinates": [6.1147054957, 46.3657930813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11799a987fa17dd7a770ed1087d6e96ef0113cab", "fields": {"nom_de_la_commune": "CORMORANCHE SUR SAONE", "libell_d_acheminement": "CORMORANCHE SUR SAONE", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01123"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ca426ad33e17c3afbcab6a12d0a370e208dccb", "fields": {"nom_de_la_commune": "CRAS SUR REYSSOUZE", "libell_d_acheminement": "CRAS SUR REYSSOUZE", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01130"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03980f69d7feb9f8c062ffd660a0b2a02748822c", "fields": {"nom_de_la_commune": "DIVONNE LES BAINS", "libell_d_acheminement": "DIVONNE LES BAINS", "code_postal": "01220", "coordonnees_gps": [46.3657930813, 6.1147054957], "code_commune_insee": "01143"}, "geometry": {"type": "Point", "coordinates": [6.1147054957, 46.3657930813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8954615adcbedd78221fc66bba3dabfb1153a4", "fields": {"nom_de_la_commune": "COURMANGOUX", "libell_d_acheminement": "COURMANGOUX", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01127"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d2b5d36396b97356d5f1d5446f0315c620b0f8", "fields": {"nom_de_la_commune": "CHAVORNAY", "libell_d_acheminement": "CHAVORNAY", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01097"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9664965e24328e77a82274a0bad5883fa424f41", "fields": {"nom_de_la_commune": "CHEVROUX", "libell_d_acheminement": "CHEVROUX", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01102"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06676e6f4f5f51c982448adf81f63aee1bb46b1c", "fields": {"nom_de_la_commune": "JUMEL", "libell_d_acheminement": "JUMEL", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80452"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82fe9218b5051af407a504987541125f086937d5", "fields": {"code_postal": "80430", "code_commune_insee": "80456", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "ligne_5": "GUIBERMESNIL", "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd29f095eb6855da7a25894eed2c1324875b54f", "fields": {"nom_de_la_commune": "LAMOTTE BULEUX", "libell_d_acheminement": "LAMOTTE BULEUX", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80462"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6604a37d4845183f6ddc82b12f19c9ef911545d1", "fields": {"nom_de_la_commune": "LANCHES ST HILAIRE", "libell_d_acheminement": "LANCHES ST HILAIRE", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80466"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20794999c09a028ecbd5649cabb27b7abbca262b", "fields": {"nom_de_la_commune": "LAVIEVILLE", "libell_d_acheminement": "LAVIEVILLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80468"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae11bb576d0e49852761c52a541820d43bc64d2c", "fields": {"nom_de_la_commune": "LIANCOURT FOSSE", "libell_d_acheminement": "LIANCOURT FOSSE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80473"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9834202965f13c29dfb81ada7e8aa3458d674837", "fields": {"nom_de_la_commune": "LIERAMONT", "libell_d_acheminement": "LIERAMONT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80475"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d02bab9c7a1eb476558573094c65ba1529ff64", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES LES ROYE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80478"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb666e6e659fff488b93dd0e46dbe23ec6be1341", "fields": {"nom_de_la_commune": "LONG", "libell_d_acheminement": "LONG", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80486"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793db16e890235ce6ed0d2ad86d67ee3f3c5bf92", "fields": {"nom_de_la_commune": "LONGPRE LES CORPS SAINTS", "libell_d_acheminement": "LONGPRE LES CORPS SAINTS", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80488"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef778c5376be649385bd7cc37221f6b610a747d", "fields": {"nom_de_la_commune": "LONGUEAU", "libell_d_acheminement": "LONGUEAU", "code_postal": "80330", "coordonnees_gps": [49.8585815171, 2.34498416532], "code_commune_insee": "80489"}, "geometry": {"type": "Point", "coordinates": [2.34498416532, 49.8585815171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac360e51103f14067ce3f08f11099832fd1f84c0", "fields": {"nom_de_la_commune": "MACHY", "libell_d_acheminement": "MACHY", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80497"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1389f8b5a715ded7e6f57ec5f0244eefba5052", "fields": {"nom_de_la_commune": "MAUREPAS", "libell_d_acheminement": "MAUREPAS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80521"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ccc90c349d70013c12ca121b85e347e57c7f4d5", "fields": {"nom_de_la_commune": "LE MAZIS", "libell_d_acheminement": "LE MAZIS", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80522"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe94779149a3e36ae6d039ccafa00cbfc9e2a6d", "fields": {"nom_de_la_commune": "MEHARICOURT", "libell_d_acheminement": "MEHARICOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80524"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f61e5bc0e9251c429ef72f6fe7c00e018b4cac", "fields": {"nom_de_la_commune": "MESNIL MARTINSART", "libell_d_acheminement": "MESNIL MARTINSART", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80540"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d282a3f812c42b860310cb9dd890438333a8fc", "fields": {"code_postal": "80540", "code_commune_insee": "80554", "libell_d_acheminement": "MOLLIENS DREUIL", "ligne_5": "DREUIL LES MOLLIENS", "nom_de_la_commune": "MOLLIENS DREUIL", "coordonnees_gps": [49.872686231, 2.06894684401]}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1f52756b17e542fa740ffeed3bfef90ab1bb86", "fields": {"nom_de_la_commune": "MONCHY LAGACHE", "libell_d_acheminement": "MONCHY LAGACHE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80555"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2400e1e2aa7ad9a8396feddd5561787b71ca146", "fields": {"nom_de_la_commune": "MONTIGNY LES JONGLEURS", "libell_d_acheminement": "MONTIGNY LES JONGLEURS", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80563"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee792f9ef9101c918f1bb5e78958b57fb63f1b8", "fields": {"nom_de_la_commune": "MOREUIL", "libell_d_acheminement": "MOREUIL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80570"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa16d11c431cf70fcfbff0422f745aa7e539a18b", "fields": {"code_postal": "80290", "code_commune_insee": "80582", "libell_d_acheminement": "NAMPS MAISNIL", "ligne_5": "TAISNIL", "nom_de_la_commune": "NAMPS MAISNIL", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9988c3614d64df069ca0e5fee0cb55f1afa8221b", "fields": {"nom_de_la_commune": "NAMPTY", "libell_d_acheminement": "NAMPTY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80583"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af3baa8a4a1aa0cb9395a1742bd74138494be0e", "fields": {"nom_de_la_commune": "NEUILLY L HOPITAL", "libell_d_acheminement": "NEUILLY L HOPITAL", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80590"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f153d085726abafa6856841ff3832b7ef9afa8", "fields": {"nom_de_la_commune": "NOUVION", "libell_d_acheminement": "NOUVION", "code_postal": "80860", "coordonnees_gps": [50.2062809553, 1.7329737582], "code_commune_insee": "80598"}, "geometry": {"type": "Point", "coordinates": [1.7329737582, 50.2062809553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2842eeb693b09b5b30f19a87892f49de2eb9ca", "fields": {"nom_de_la_commune": "NOYELLES SUR MER", "libell_d_acheminement": "NOYELLES SUR MER", "code_postal": "80860", "coordonnees_gps": [50.2062809553, 1.7329737582], "code_commune_insee": "80600"}, "geometry": {"type": "Point", "coordinates": [1.7329737582, 50.2062809553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ee38e472e63d1a031bcbe0802616c759f930cc", "fields": {"nom_de_la_commune": "OMIECOURT", "libell_d_acheminement": "OMIECOURT", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80608"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59da81391ba71de5b7ee611351c05a1263eb014d", "fields": {"nom_de_la_commune": "OUTREBOIS", "libell_d_acheminement": "OUTREBOIS", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80614"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d4fdea738ea667a2d54506a6aa89f6f6b8e4d4", "fields": {"nom_de_la_commune": "PERNOIS", "libell_d_acheminement": "PERNOIS", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80619"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d65f51e88e0b4fecd0be93e594ff5fce21cf9e8", "fields": {"nom_de_la_commune": "PIERREPONT SUR AVRE", "libell_d_acheminement": "PIERREPONT SUR AVRE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80625"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "932a3ea060082e321dcfaeec2b771e6d237cb134", "fields": {"nom_de_la_commune": "PLACHY BUYON", "libell_d_acheminement": "PLACHY BUYON", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80627"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7f69a81f5a4b299cd4bfe59483ef2a47d2c92d", "fields": {"nom_de_la_commune": "POIX DE PICARDIE", "libell_d_acheminement": "POIX DE PICARDIE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80630"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f406134d327bfbdfee83f10368d892bd3886e7f", "fields": {"nom_de_la_commune": "PONT DE METZ", "libell_d_acheminement": "PONT DE METZ", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80632"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c11982a70e37f5e20311bcccd663eb7b0ce6fd", "fields": {"nom_de_la_commune": "PONT REMY", "libell_d_acheminement": "PONT REMY", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80635"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f0870338c2493aee61ff2dfea6633fea1bb27b", "fields": {"nom_de_la_commune": "PORT LE GRAND", "libell_d_acheminement": "PORT LE GRAND", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80637"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5783246094ef4950de8b86f37b3dc33cfa2cb628", "fields": {"nom_de_la_commune": "POTTE", "libell_d_acheminement": "POTTE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80638"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9af70c05604f2879d8db7cf4c06c52d91212259", "fields": {"nom_de_la_commune": "QUERRIEU", "libell_d_acheminement": "QUERRIEU", "code_postal": "80115", "coordonnees_gps": [49.9397690617, 2.43129149377], "code_commune_insee": "80650"}, "geometry": {"type": "Point", "coordinates": [2.43129149377, 49.9397690617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7cdb29b75b1735889f2115559b4f358c5130148", "fields": {"nom_de_la_commune": "QUESNOY SUR AIRAINES", "libell_d_acheminement": "QUESNOY SUR AIRAINES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80655"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a3bc8f0d5b7fc4da65d50819ded736f78afbd4", "fields": {"nom_de_la_commune": "RANCOURT", "libell_d_acheminement": "RANCOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80664"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bb1358d6401a9982a5ab5ff87d32dbe88da03b", "fields": {"nom_de_la_commune": "ROISEL", "libell_d_acheminement": "ROISEL", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80677"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea997bb882b63fcfc2d4258a070cbe5c4e618ed", "fields": {"nom_de_la_commune": "ROUY LE GRAND", "libell_d_acheminement": "ROUY LE GRAND", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80683"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9fb1f000b97d6cb451cbb90b7866f932cc849d", "fields": {"nom_de_la_commune": "ROUY LE PETIT", "libell_d_acheminement": "ROUY LE PETIT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80684"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3011d370c524964ccf1e3aa05dee2f1aed73a07", "fields": {"nom_de_la_commune": "ROYE", "libell_d_acheminement": "ROYE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80685"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d329e8935f5c1201133be1d11894a6afa4f37b", "fields": {"nom_de_la_commune": "SAILLY FLIBEAUCOURT", "libell_d_acheminement": "SAILLY FLIBEAUCOURT", "code_postal": "80970", "coordonnees_gps": [50.1790808448, 1.77059385425], "code_commune_insee": "80692"}, "geometry": {"type": "Point", "coordinates": [1.77059385425, 50.1790808448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db9c4aca1da0a5c2659495eb0dd5ab6285a3162", "fields": {"nom_de_la_commune": "SAINS EN AMIENOIS", "libell_d_acheminement": "SAINS EN AMIENOIS", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80696"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e551d9ddf5849a90093c6dc99c834cf58dfddab0", "fields": {"nom_de_la_commune": "ST ACHEUL", "libell_d_acheminement": "ST ACHEUL", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80697"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3930521595e0b8865c595aa1d26075c86d68671e", "fields": {"nom_de_la_commune": "ST AUBIN MONTENOY", "libell_d_acheminement": "ST AUBIN MONTENOY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80698"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab9dfd942c37b3d2a12d8eec8f6e969c0bf3758", "fields": {"nom_de_la_commune": "ST AUBIN RIVIERE", "libell_d_acheminement": "ST AUBIN RIVIERE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80699"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efb5092432598d175319dcf8f380ace8e301515", "fields": {"nom_de_la_commune": "ST GERMAIN SUR BRESLE", "libell_d_acheminement": "ST GERMAIN SUR BRESLE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80703"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc679f62ff2f9a420eb130cc45fd27e61e9052f", "fields": {"code_postal": "80430", "code_commune_insee": "80703", "libell_d_acheminement": "ST GERMAIN SUR BRESLE", "ligne_5": "GUEMICOURT", "nom_de_la_commune": "ST GERMAIN SUR BRESLE", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d353dbed79a7f64c846952fab45b5f6628eb65f6", "fields": {"nom_de_la_commune": "ST MAXENT", "libell_d_acheminement": "ST MAXENT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80710"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f0889bc5750ef4779db17e2e383846cadcb7d4", "fields": {"nom_de_la_commune": "ST QUENTIN LA MOTTE CROIX AU BAILLY", "libell_d_acheminement": "ST QUENTIN LA MOTTE CROIX BAILLY", "code_postal": "80880", "coordonnees_gps": [50.073406246, 1.4522927358], "code_commune_insee": "80714"}, "geometry": {"type": "Point", "coordinates": [1.4522927358, 50.073406246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bcf8694513a111dde6156540f3723c0f5566a2", "fields": {"nom_de_la_commune": "SALEUX", "libell_d_acheminement": "SALEUX", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80724"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb61db425aa56f391f5c2f07bdb73e29517c0b8", "fields": {"nom_de_la_commune": "SAULCHOY SOUS POIX", "libell_d_acheminement": "SAULCHOY SOUS POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80728"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c783b86498606009e9e522feab8ec4cf09eaf1", "fields": {"nom_de_la_commune": "SEUX", "libell_d_acheminement": "SEUX", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80735"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68bd4316ecf5564f1245f097e212d1eb4d2dbf2", "fields": {"nom_de_la_commune": "SOREL EN VIMEU", "libell_d_acheminement": "SOREL EN VIMEU", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80736"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3985494cfd81b393a31411ef4977f48677ea28", "fields": {"nom_de_la_commune": "SOUES", "libell_d_acheminement": "SOUES", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80738"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d95ac9c4d4f2e54b92a053c4dce8bc8d22a4a8a", "fields": {"nom_de_la_commune": "SOURDON", "libell_d_acheminement": "SOURDON", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80740"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9390a3e3416b801f1671d73044e15b0af637afa", "fields": {"nom_de_la_commune": "THEZY GLIMONT", "libell_d_acheminement": "THEZY GLIMONT", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80752"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d7c363f0dcd8c630fa64fa99308811f37ab880", "fields": {"nom_de_la_commune": "THIEPVAL", "libell_d_acheminement": "THIEPVAL", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80753"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcbbc81db510319e7cf8fee4fe7fd1e5674fab8", "fields": {"nom_de_la_commune": "THIEULLOY LA VILLE", "libell_d_acheminement": "THIEULLOY LA VILLE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80755"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5acc7b4c72af7ca7fbefad32f898caf7d84c82", "fields": {"nom_de_la_commune": "TILLOY FLORIVILLE", "libell_d_acheminement": "TILLOY FLORIVILLE", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80760"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8799c806cea470ce0b928e4449601828d7b169a7", "fields": {"nom_de_la_commune": "LE TITRE", "libell_d_acheminement": "LE TITRE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80763"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8658f9ddc51082a02c64dd4ccdf8e458fb8fb846", "fields": {"nom_de_la_commune": "TOURS EN VIMEU", "libell_d_acheminement": "TOURS EN VIMEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80765"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eea6c6f73fd864f4fe0f10afbf6128f45522c60", "fields": {"nom_de_la_commune": "TOUTENCOURT", "libell_d_acheminement": "TOUTENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80766"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdcbe7c3187d6a8ca5be18afa2c6d7489f3c8be", "fields": {"nom_de_la_commune": "LE TRANSLAY", "libell_d_acheminement": "LE TRANSLAY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80767"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3f7dfdcc61ca5268df33329ec778e06d394b3df", "fields": {"nom_de_la_commune": "UGNY L EQUIPEE", "libell_d_acheminement": "UGNY L EQUIPEE", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80771"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14d59e25b0f1024c777cdf32454f9437fe59ad69", "fields": {"nom_de_la_commune": "VALINES", "libell_d_acheminement": "VALINES", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80775"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016711e9acdef4974c859e20ac5800dbaecc7f08", "fields": {"nom_de_la_commune": "VAUVILLERS", "libell_d_acheminement": "VAUVILLERS", "code_postal": "80131", "coordonnees_gps": [49.853048301, 2.69339669252], "code_commune_insee": "80781"}, "geometry": {"type": "Point", "coordinates": [2.69339669252, 49.853048301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb211426caf003f9b54595c306b84b407c3e59da", "fields": {"nom_de_la_commune": "VECQUEMONT", "libell_d_acheminement": "VECQUEMONT", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80785"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fb7ddac5e58e42627a847816af8df1a518a38c", "fields": {"nom_de_la_commune": "VERGIES", "libell_d_acheminement": "VERGIES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80788"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baffade6d7206a287b459ee582f4e8d418a9bfc2", "fields": {"nom_de_la_commune": "LA VICOGNE", "libell_d_acheminement": "LA VICOGNE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80792"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1a18b89e63495d41e4fa360b50d42df1b265f1", "fields": {"nom_de_la_commune": "VILLE SUR ANCRE", "libell_d_acheminement": "VILLE SUR ANCRE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80807"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6a03488c084f5b85cdcbcfe8698954621749eb", "fields": {"nom_de_la_commune": "VOYENNES", "libell_d_acheminement": "VOYENNES", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80811"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "247ccc86992282de96d305671bbda7c55ee1bda1", "fields": {"nom_de_la_commune": "VRELY", "libell_d_acheminement": "VRELY", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80814"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6d97a28e392ef3ef6cd975d6a6a327a5734dee9", "fields": {"nom_de_la_commune": "WARLOY BAILLON", "libell_d_acheminement": "WARLOY BAILLON", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80820"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f3241558e36129929bdfd94a0f5e708dcc8e247", "fields": {"nom_de_la_commune": "YVRENCH", "libell_d_acheminement": "YVRENCH", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80832"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d694ab0564bfa313516dfd244ffe5c7cd51d3cd3", "fields": {"nom_de_la_commune": "AIGUEFONDE", "libell_d_acheminement": "AIGUEFONDE", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81002"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7e18c5098c75084b465952a02218765e9275f0", "fields": {"nom_de_la_commune": "ALGANS", "libell_d_acheminement": "ALGANS", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81006"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96453392a94709e5ee188e0d325f8fbb2fe50bb0", "fields": {"nom_de_la_commune": "ANDILLAC", "libell_d_acheminement": "ANDILLAC", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81012"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd27784deb40a4441c74d56dd7101c9a542950cd", "fields": {"nom_de_la_commune": "AUSSILLON", "libell_d_acheminement": "AUSSILLON", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81021"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c64855ed6eefa3d46c3e89494e733f33255c30a", "fields": {"nom_de_la_commune": "BELLEGARDE MARSAL", "libell_d_acheminement": "BELLEGARDE MARSAL", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81026"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c0b005c95dd0a775817702ee77e1b3ded92617", "fields": {"nom_de_la_commune": "BOISSEZON", "libell_d_acheminement": "BOISSEZON", "code_postal": "81490", "coordonnees_gps": [43.5859681102, 2.3789399334], "code_commune_insee": "81034"}, "geometry": {"type": "Point", "coordinates": [2.3789399334, 43.5859681102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457e4a6577450299d6a32e29cf6b34dbcd1e34a8", "fields": {"nom_de_la_commune": "LES CABANNES", "libell_d_acheminement": "LES CABANNES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81045"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720758881bee8b30d695dc47a3d3484dcd67509d", "fields": {"nom_de_la_commune": "CAGNAC LES MINES", "libell_d_acheminement": "CAGNAC LES MINES", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81048"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7f8c810a836a00933459536a82eee13126f38d", "fields": {"nom_de_la_commune": "CAMBON", "libell_d_acheminement": "CAMBON D ALBI", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81052"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5435b4f58cb4dfdb10a091f4572048e4100b6bf", "fields": {"code_postal": "81260", "code_commune_insee": "81062", "libell_d_acheminement": "FONTRIEU", "ligne_5": "CASTELNAU DE BRASSAC", "nom_de_la_commune": "FONTRIEU", "coordonnees_gps": [43.6113142668, 2.53318559265]}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854b72f4d647075167e64291258156a52297df75", "fields": {"nom_de_la_commune": "CUQ", "libell_d_acheminement": "CUQ LES VIELMUR", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81075"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c42426e7c375ffe40538d175c83e2bb43cd1894", "fields": {"nom_de_la_commune": "DENAT", "libell_d_acheminement": "DENAT", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81079"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe06905187f63725b46e23867069e7dcd5331993", "fields": {"nom_de_la_commune": "DURFORT", "libell_d_acheminement": "DURFORT", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81083"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b6e0ed51d4c8ee5a9c315eb9ebf1ca891a7d6b", "fields": {"nom_de_la_commune": "FENOLS", "libell_d_acheminement": "FENOLS", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81090"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e2ce518cdf90560ee9871020a56c082e4420961", "fields": {"nom_de_la_commune": "FLORENTIN", "libell_d_acheminement": "FLORENTIN", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81093"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2285d6c8a67211025e8f3bdc89d0548c456be3", "fields": {"nom_de_la_commune": "FREJAIROLLES", "libell_d_acheminement": "FREJAIROLLES", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81097"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ceb8317d3aa7056bea943cd94e78094239be065", "fields": {"nom_de_la_commune": "GIROUSSENS", "libell_d_acheminement": "GIROUSSENS", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81104"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8461d742efd966473a0bdbc7c89976b4aa8b659f", "fields": {"nom_de_la_commune": "GRAULHET", "libell_d_acheminement": "GRAULHET", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81105"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b58aa4ab725c33b7d354d22dc7f178eb8e4e561", "fields": {"nom_de_la_commune": "GRAZAC", "libell_d_acheminement": "GRAZAC", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81106"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc084d175d41c67aca899dce42011461c2a5362", "fields": {"nom_de_la_commune": "LABASTIDE DE LEVIS", "libell_d_acheminement": "LABASTIDE DE LEVIS", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81112"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9ccc8ced2bd83e32a653984b00d192d3245bc4", "fields": {"nom_de_la_commune": "LABASTIDE DENAT", "libell_d_acheminement": "LABASTIDE DENAT", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81113"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f8e7c87640c18b02563dbc233533bb297e3b08", "fields": {"nom_de_la_commune": "LABASTIDE GABAUSSE", "libell_d_acheminement": "LABASTIDE GABAUSSE", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81114"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9740e73ab25d239eba6703e81da7526b8d416d85", "fields": {"nom_de_la_commune": "LACABAREDE", "libell_d_acheminement": "LACABAREDE", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81121"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd4685eea0144235120781ec56c588d752a0a2e", "fields": {"nom_de_la_commune": "LACAPELLE PINET", "libell_d_acheminement": "LACAPELLE PINET", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81122"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed9d39b4ead0d761204a6642ceb5010ebd2102c", "fields": {"nom_de_la_commune": "MUSSY SOUS DUN", "libell_d_acheminement": "MUSSY SOUS DUN", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71327"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b148c05b7ecd2bf2be8d27a51acab8c5ecfc489", "fields": {"nom_de_la_commune": "NANTON", "libell_d_acheminement": "NANTON", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71328"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eec0a6f2ced1885d74ef1e6fbf37b0b04792a8d", "fields": {"nom_de_la_commune": "NEUVY GRANDCHAMP", "libell_d_acheminement": "NEUVY GRANDCHAMP", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71330"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d003dc5db3d48c100584449cd950cd42183f6126", "fields": {"nom_de_la_commune": "OSLON", "libell_d_acheminement": "OSLON", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71333"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452becfe02b080106549c4f18b08c062aacf58c3", "fields": {"nom_de_la_commune": "OUROUX SUR SAONE", "libell_d_acheminement": "OUROUX SUR SAONE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71336"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec4d543a78196e214274c2b3a31c7fefd9aa3bf", "fields": {"nom_de_la_commune": "OZENAY", "libell_d_acheminement": "OZENAY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71338"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c257b325dbb166233b6de2aa3df3431d0cc8bd8a", "fields": {"nom_de_la_commune": "PONTOUX", "libell_d_acheminement": "PONTOUX", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71355"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfe2b27aeeee7eb6ae9aab25b373cfa966b68391", "fields": {"nom_de_la_commune": "LE PULEY", "libell_d_acheminement": "LE PULEY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71363"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb3d3c9cc1f0eedec21c4b07071e349c9e1c3dd", "fields": {"nom_de_la_commune": "RATENELLE", "libell_d_acheminement": "RATENELLE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71366"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c03aebf44db8a7620d911895efdea67a02710c4e", "fields": {"nom_de_la_commune": "LA ROCHE VINEUSE", "libell_d_acheminement": "LA ROCHE VINEUSE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71371"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb4d9f7435cad66e2dd844af509403cb8587535", "fields": {"nom_de_la_commune": "ROSEY", "libell_d_acheminement": "ROSEY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71374"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40438db92f242f47cdcda8c4ee500c25ca7e3045", "fields": {"nom_de_la_commune": "ROUSSILLON EN MORVAN", "libell_d_acheminement": "ROUSSILLON EN MORVAN", "code_postal": "71550", "coordonnees_gps": [47.0673836602, 4.11662023514], "code_commune_insee": "71376"}, "geometry": {"type": "Point", "coordinates": [4.11662023514, 47.0673836602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c18622e2cb7f13678788f388dfcf4eca0814ecc", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BRESSE", "libell_d_acheminement": "ST CHRISTOPHE EN BRESSE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71398"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36beff3436f8d208e64af48d0d1e98fc044e1c25", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BRIONNAIS", "libell_d_acheminement": "ST CHRISTOPHE EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71399"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce64df263c002c2ed324cf33e213bdb870c12a1e", "fields": {"nom_de_la_commune": "ST CLEMENT SUR GUYE", "libell_d_acheminement": "ST CLEMENT SUR GUYE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71400"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43495374620da859ce6a4da8cc30d4ff1d111cb7", "fields": {"nom_de_la_commune": "ST DIDIER EN BRESSE", "libell_d_acheminement": "ST DIDIER EN BRESSE", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71405"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "571a7c20907980180b89192d6764a63cbe0eddea", "fields": {"nom_de_la_commune": "ST DIDIER EN BRIONNAIS", "libell_d_acheminement": "ST DIDIER EN BRIONNAIS", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71406"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3b3e1b38bd27bf8cb58d679fb51a5604277de64", "fields": {"nom_de_la_commune": "ST GERVAIS SUR COUCHES", "libell_d_acheminement": "ST GERVAIS SUR COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71424"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e067a40f3c91326fbe57fa9f1dcbe5ebe9570175", "fields": {"nom_de_la_commune": "ST JEAN DE VAUX", "libell_d_acheminement": "ST JEAN DE VAUX", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71430"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec7b6b8d8f4e24d1c124163792822e0f4164139", "fields": {"nom_de_la_commune": "ST JULIEN DE CIVRY", "libell_d_acheminement": "ST JULIEN DE CIVRY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71433"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e017cfb99590667727b01e3eb5c4e45a6255d66", "fields": {"nom_de_la_commune": "ST LAURENT EN BRIONNAIS", "libell_d_acheminement": "ST LAURENT EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71437"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9de7632f2473aef42d4a531a743be2e55e40dc8", "fields": {"nom_de_la_commune": "FRUCOURT", "libell_d_acheminement": "FRUCOURT", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80372"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e132672828a2de8540655b4a19b05cced5a6b2e", "fields": {"nom_de_la_commune": "GLISY", "libell_d_acheminement": "GLISY", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80379"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7eff522555e18b32d9de25e1a044a45d85bc621", "fields": {"nom_de_la_commune": "GRANDCOURT", "libell_d_acheminement": "GRANDCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80384"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167dc9215f6ebd2cceafcdaeb45ddd379a1be471", "fields": {"nom_de_la_commune": "GRATTEPANCHE", "libell_d_acheminement": "GRATTEPANCHE", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80387"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4725dfca1b70116ee029a159e67ed4cfa465636f", "fields": {"nom_de_la_commune": "GRIVESNES", "libell_d_acheminement": "GRIVESNES", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80390"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f374c778c38b1590c8f9e6a1cb4fa9882450b8d", "fields": {"nom_de_la_commune": "GRUNY", "libell_d_acheminement": "GRUNY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80393"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d292a5c88351147c5ecd0eeedb07312ff92c9d", "fields": {"nom_de_la_commune": "GUEUDECOURT", "libell_d_acheminement": "GUEUDECOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80397"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5642cc0cf581e2df15b1c329e6fe26e1314aa54", "fields": {"nom_de_la_commune": "GUIGNEMICOURT", "libell_d_acheminement": "GUIGNEMICOURT", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80399"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e11cc437857fbef6ff411116e3f39e0ef6129a", "fields": {"nom_de_la_commune": "GUILLAUCOURT", "libell_d_acheminement": "GUILLAUCOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80400"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56a5e4f04620c7799f9867a97f33741eaf65540", "fields": {"nom_de_la_commune": "HAM", "libell_d_acheminement": "HAM", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80410"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe2782040e3441c88eda2a4356bdec69f0760ed", "fields": {"nom_de_la_commune": "LE HAMEL", "libell_d_acheminement": "LE HAMEL", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80411"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be056d36017b06156b90e3a17644ab4f97395cb4", "fields": {"nom_de_la_commune": "HARPONVILLE", "libell_d_acheminement": "HARPONVILLE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80420"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "243df1a3fe64a38064c2b02d5b89e412921604ba", "fields": {"nom_de_la_commune": "HERBECOURT", "libell_d_acheminement": "HERBECOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80430"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe8bdc92a2b13217bf666b012594344c69cc6bb", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "BOISRAULT", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40038df851136acbd9b1ebaa26237e5cbfceb7d6", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "LINCHEUX HALLIVILLERS", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9878e1de01d051eb4037015170bd34d552438b26", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "SELINCOURT", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a2eb0e5f34b6c2173d52ca9769a8eea8113f5c", "fields": {"nom_de_la_commune": "HUMBERCOURT", "libell_d_acheminement": "HUMBERCOURT", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80445"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dc7245bdf73ea8f64a70f1856d791d2a70a1874", "fields": {"nom_de_la_commune": "LALEU", "libell_d_acheminement": "LALEU", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80459"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b049f79a686b5e05e39a981b20a2cf6876537bde", "fields": {"nom_de_la_commune": "LAMARONDE", "libell_d_acheminement": "LAMARONDE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80460"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610964186d6f5d04086a3390ed90c3cf66fa94e4", "fields": {"nom_de_la_commune": "LESBOEUFS", "libell_d_acheminement": "LESBOEUFS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80472"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b91f502c2ef9af32b8a7e6f010b3088c5d26e5", "fields": {"nom_de_la_commune": "LIERCOURT", "libell_d_acheminement": "LIERCOURT", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80476"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569b3bdf1c9cf636119bc0b89b7a327d86c53a7b", "fields": {"nom_de_la_commune": "LUCHEUX", "libell_d_acheminement": "LUCHEUX", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80495"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80fa6a852f9670a39c619e558891a519bac4ed7", "fields": {"nom_de_la_commune": "MAILLY MAILLET", "libell_d_acheminement": "MAILLY MAILLET", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80498"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d665be272528ccf071bf069cd7336905d48f72", "fields": {"nom_de_la_commune": "MAIZICOURT", "libell_d_acheminement": "MAIZICOURT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80503"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb4a9f283c35df08ec3842436d264f515bd25cd", "fields": {"nom_de_la_commune": "MAMETZ", "libell_d_acheminement": "MAMETZ", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80505"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3600b1d04beb540a532fa960cf16ae9da84c868", "fields": {"nom_de_la_commune": "MARCHE ALLOUARDE", "libell_d_acheminement": "MARCHE ALLOUARDE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80508"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52fb7ab71085bb2d6fe9a641baa301937f67c73", "fields": {"nom_de_la_commune": "MARESTMONTIERS", "libell_d_acheminement": "MARESTMONTIERS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80511"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca0cdd218f64befe6636cfe2f4a3144bdef646e", "fields": {"nom_de_la_commune": "MARQUIVILLERS", "libell_d_acheminement": "MARQUIVILLERS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80517"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703ec8e7fa0baff015524bec9b2b90833ebed59d", "fields": {"nom_de_la_commune": "MATIGNY", "libell_d_acheminement": "MATIGNY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80519"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea4981763d1e8954a303ce7e1a88d2a21a82261", "fields": {"nom_de_la_commune": "MEIGNEUX", "libell_d_acheminement": "MEIGNEUX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80525"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af2c8e2a70d511d65932f5a9f36424db8c3773b", "fields": {"nom_de_la_commune": "MERICOURT EN VIMEU", "libell_d_acheminement": "MERICOURT EN VIMEU", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80531"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948aa643992ca637c039b412317612f9d9628555", "fields": {"nom_de_la_commune": "MESNIL EN ARROUAISE", "libell_d_acheminement": "MESNIL EN ARROUAISE", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80538"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4270a5a6d81106b34268b8d6f4f3773473834d2e", "fields": {"nom_de_la_commune": "MILLENCOURT EN PONTHIEU", "libell_d_acheminement": "MILLENCOURT EN PONTHIEU", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80548"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484086876030c45b6b7c37b7db94b3d02e8d060e", "fields": {"nom_de_la_commune": "MOLLIENS DREUIL", "libell_d_acheminement": "MOLLIENS DREUIL", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80554"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a3be775b862f82bf8879133babf4ce909a8b83", "fields": {"nom_de_la_commune": "MONSURES", "libell_d_acheminement": "MONSURES", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80558"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797a30f4c2285df56535c747b12dfdd051c0aab6", "fields": {"nom_de_la_commune": "MONTAGNE FAYEL", "libell_d_acheminement": "MONTAGNE FAYEL", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80559"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c33a0d6e44ea342b7aff3e39321be3cae43b1a25", "fields": {"nom_de_la_commune": "FIEFFES MONTRELET", "libell_d_acheminement": "FIEFFES MONTRELET", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80566"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49bd6b9422853f894010f3a77d94211bbc91bdc4", "fields": {"nom_de_la_commune": "MORVILLERS ST SATURNIN", "libell_d_acheminement": "MORVILLERS ST SATURNIN", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80573"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865ba740e22acdfdee77a0a09d75f843e9246cef", "fields": {"nom_de_la_commune": "MOUFLIERES", "libell_d_acheminement": "MOUFLIERES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80575"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ad372171b640551fc178ed71fd811a691b8ebf", "fields": {"nom_de_la_commune": "NAMPONT", "libell_d_acheminement": "NAMPONT ST MARTIN", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80580"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d92baaa66dc758a14ebeef1b7b76f952a99afc23", "fields": {"nom_de_la_commune": "NAMPS MAISNIL", "libell_d_acheminement": "NAMPS MAISNIL", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80582"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a63e6e991b1a0e6410d3e00d8d54999d4913acf7", "fields": {"code_postal": "80290", "code_commune_insee": "80582", "libell_d_acheminement": "NAMPS MAISNIL", "ligne_5": "RUMAISNIL", "nom_de_la_commune": "NAMPS MAISNIL", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c096b4650282bc09022b8f6c98cdf9445d7d07f2", "fields": {"nom_de_la_commune": "NAOURS", "libell_d_acheminement": "NAOURS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80584"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ca77da357098eba3a6292f56e3c9670763a62e", "fields": {"nom_de_la_commune": "NOYELLES EN CHAUSSEE", "libell_d_acheminement": "NOYELLES EN CHAUSSEE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80599"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5a2188c1bc4b470d161d2c99b2d2223166b1c7", "fields": {"nom_de_la_commune": "OCCOCHES", "libell_d_acheminement": "OCCOCHES", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80602"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a269f83e1dfea3428ef4541f8bd354026b00058", "fields": {"nom_de_la_commune": "PICQUIGNY", "libell_d_acheminement": "PICQUIGNY", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80622"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d223313319244843fad6756d8ef822406f55a1f2", "fields": {"code_postal": "80500", "code_commune_insee": "80623", "libell_d_acheminement": "PIENNES ONVILLERS", "ligne_5": "ONVILLERS", "nom_de_la_commune": "PIENNES ONVILLERS", "coordonnees_gps": [49.6644065445, 2.59300207796]}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3662f746bcde3ad6bcd4eec55a3b121b0ef077ca", "fields": {"nom_de_la_commune": "PISSY", "libell_d_acheminement": "PISSY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80626"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e4d96504bfcf1c786ec2890ecaf414af8ed46f", "fields": {"nom_de_la_commune": "PYS", "libell_d_acheminement": "PYS", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80648"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43a42f6b1a72fa98dfe7ccad30dc0a3952bc165", "fields": {"nom_de_la_commune": "QUESNOY LE MONTANT", "libell_d_acheminement": "QUESNOY LE MONTANT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80654"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b228c03fd1fffaa94a48e043a999c657b544f9", "fields": {"nom_de_la_commune": "QUIVIERES", "libell_d_acheminement": "QUIVIERES", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80658"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b735a7df8311819ace0a3253275d561f702ceef4", "fields": {"nom_de_la_commune": "RAINCHEVAL", "libell_d_acheminement": "RAINCHEVAL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80659"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599b1754abc2404d5b680218811caa514dc81fcc", "fields": {"nom_de_la_commune": "RAINNEVILLE", "libell_d_acheminement": "RAINNEVILLE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80661"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155705e40da006ddfa02f4701519fed908ff5408", "fields": {"nom_de_la_commune": "RIENCOURT", "libell_d_acheminement": "RIENCOURT", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80673"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea3f30a91e02fbe9d43acf7a68781615b205ca2", "fields": {"nom_de_la_commune": "ROGY", "libell_d_acheminement": "ROGY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80675"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8cc5941d8484caa0923da42a3b3bf6a9750f73", "fields": {"nom_de_la_commune": "RONSSOY", "libell_d_acheminement": "LE RONSSOY", "code_postal": "80740", "coordonnees_gps": [49.9986688504, 3.14330928776], "code_commune_insee": "80679"}, "geometry": {"type": "Point", "coordinates": [3.14330928776, 49.9986688504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a159482470f66931d13a6cee0fcf028ad0da6241", "fields": {"nom_de_la_commune": "ROSIERES EN SANTERRE", "libell_d_acheminement": "ROSIERES EN SANTERRE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80680"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd4c3cc95f0a204b57c755988cfadf9653584fe", "fields": {"nom_de_la_commune": "RUBEMPRE", "libell_d_acheminement": "RUBEMPRE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80686"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb0d19db69695ee7bc2b515fffbbcc516a8c874", "fields": {"nom_de_la_commune": "ST LEGER LES AUTHIE", "libell_d_acheminement": "ST LEGER LES AUTHIE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80705"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8001cda3abe8850aa9a7b74e248ccf651c2c9b", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80718"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c19c17c8962ae5c9649795685a07684190e800", "fields": {"nom_de_la_commune": "ST VALERY SUR SOMME", "libell_d_acheminement": "ST VALERY SUR SOMME", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80721"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b96afb10cfd856d940474d73fdfaeed93420754", "fields": {"nom_de_la_commune": "ST VAAST EN CHAUSSEE", "libell_d_acheminement": "ST VAAST EN CHAUSSEE", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80722"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a608e22f005e9e8044165505636e2d3d3da7fc", "fields": {"nom_de_la_commune": "SAISSEVAL", "libell_d_acheminement": "SAISSEVAL", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80723"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f288f750d2bb1c37f9f9ab53a6ceca168d7a1a7d", "fields": {"nom_de_la_commune": "SANCOURT", "libell_d_acheminement": "SANCOURT", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80726"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129958b55b8f10c8707a45d7d1247443e11f1955", "fields": {"nom_de_la_commune": "SENLIS LE SEC", "libell_d_acheminement": "SENLIS LE SEC", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80733"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c5f94d6db344052496ee28cdee3f896e6d5a55", "fields": {"nom_de_la_commune": "SOREL", "libell_d_acheminement": "SOREL", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80737"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e1bcc1b02f48eb2963f99d6cc09d6a616698823", "fields": {"nom_de_la_commune": "SUZANNE", "libell_d_acheminement": "SUZANNE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80743"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecbb38e72e15eb0a4c6bf7594145ef8e939d27a7", "fields": {"nom_de_la_commune": "TEMPLEUX LA FOSSE", "libell_d_acheminement": "TEMPLEUX LA FOSSE", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80747"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e35f09d6d84ac286b1ac5812abcf6ff903a943", "fields": {"nom_de_la_commune": "TERTRY", "libell_d_acheminement": "TERTRY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80750"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969059b7ec47cd335041d6e55c98289c60df8ef2", "fields": {"nom_de_la_commune": "THIEVRES", "libell_d_acheminement": "THIEVRES", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "80756"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841815c381614876223f1c1d59138d380e294333", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80776"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b12f745b1f0ff70b988f42c535e632076d0677", "fields": {"nom_de_la_commune": "VAUCHELLES LES AUTHIE", "libell_d_acheminement": "VAUCHELLES LES AUTHIE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80777"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89d4268cb22a48ee85f861b0cfb45bcf004f4d", "fields": {"nom_de_la_commune": "VILLERS SOUS AILLY", "libell_d_acheminement": "VILLERS SOUS AILLY", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80804"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633e1a2752416b854afefdd4c5699c2c04ceff6e", "fields": {"nom_de_la_commune": "VILLERS SUR AUTHIE", "libell_d_acheminement": "VILLERS SUR AUTHIE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80806"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86326dbda5b74e1627a3a275cc8abd639d79d7df", "fields": {"nom_de_la_commune": "VIRONCHAUX", "libell_d_acheminement": "VIRONCHAUX", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80808"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d4848971c67ba60998c2cc4c26983c86fdfc30", "fields": {"nom_de_la_commune": "WARSY", "libell_d_acheminement": "WARSY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80822"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9041eff3dd33f1abd3332bd508ba7cc72e0ea001", "fields": {"nom_de_la_commune": "WIRY AU MONT", "libell_d_acheminement": "WIRY AU MONT", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80825"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f824a411b4f93bd40a58a528dad034e36f9652e", "fields": {"nom_de_la_commune": "WOIREL", "libell_d_acheminement": "WOIREL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80828"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60c1b9ad528d9d61156e6a73d21c58f772aab99", "fields": {"nom_de_la_commune": "YAUCOURT BUSSUS", "libell_d_acheminement": "YAUCOURT BUSSUS", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80830"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4233ef9610498819e54a11b9087613337a54cb", "fields": {"nom_de_la_commune": "BRUYERES LE CHATEL", "libell_d_acheminement": "BRUYERES LE CHATEL", "code_postal": "91680", "coordonnees_gps": [48.5994935107, 2.17708550813], "code_commune_insee": "91115"}, "geometry": {"type": "Point", "coordinates": [2.17708550813, 48.5994935107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4a179d7d416096e6ae6edf373d9db0eb1f4c50", "fields": {"nom_de_la_commune": "CHAMPMOTTEUX", "libell_d_acheminement": "CHAMPMOTTEUX", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91137"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5be32cacb61c0f4276cfd320dacc3be9aa0dfa", "fields": {"nom_de_la_commune": "CHATIGNONVILLE", "libell_d_acheminement": "CHATIGNONVILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91145"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53beb6546c671787e67faf829cf130d7869ef2b", "fields": {"nom_de_la_commune": "CHAUFFOUR LES ETRECHY", "libell_d_acheminement": "CHAUFFOUR LES ETRECHY", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91148"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8383e51b295eb4316aaed03e621ac177732a6e", "fields": {"nom_de_la_commune": "CHEPTAINVILLE", "libell_d_acheminement": "CHEPTAINVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91156"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0507bbe09287728f476911a213a72c54bac5a9ce", "fields": {"nom_de_la_commune": "COURSON MONTELOUP", "libell_d_acheminement": "COURSON MONTELOUP", "code_postal": "91680", "coordonnees_gps": [48.5994935107, 2.17708550813], "code_commune_insee": "91186"}, "geometry": {"type": "Point", "coordinates": [2.17708550813, 48.5994935107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6432c1f75e74d57f02ec1887704765b5c0dc8919", "fields": {"nom_de_la_commune": "D HUISON LONGUEVILLE", "libell_d_acheminement": "D HUISON LONGUEVILLE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91198"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b920550a775e157fc402e21a13704de862cb83de", "fields": {"nom_de_la_commune": "ESTOUCHES", "libell_d_acheminement": "ESTOUCHES", "code_postal": "91660", "coordonnees_gps": [48.3164697421, 2.08354530112], "code_commune_insee": "91222"}, "geometry": {"type": "Point", "coordinates": [2.08354530112, 48.3164697421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b8ba1414c45cbb0149d3b3388541e684fb9377", "fields": {"nom_de_la_commune": "LA FERTE ALAIS", "libell_d_acheminement": "LA FERTE ALAIS", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91232"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b56de3a4770fca410c313fa154150b993634a52", "fields": {"nom_de_la_commune": "FONTAINE LA RIVIERE", "libell_d_acheminement": "FONTAINE LA RIVIERE", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91240"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2068bccb467a65acd00730e1f3d3a8f1af865924", "fields": {"nom_de_la_commune": "GIF SUR YVETTE", "libell_d_acheminement": "GIF SUR YVETTE", "code_postal": "91190", "coordonnees_gps": [48.709665031, 2.12766544978], "code_commune_insee": "91272"}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "642877d018b8f20834b6feaf9ac3a639a375785b", "fields": {"nom_de_la_commune": "GUILLERVAL", "libell_d_acheminement": "GUILLERVAL", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91294"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5c764c1a1dda3582c920b1a7830fb79fea9c9e", "fields": {"nom_de_la_commune": "IGNY", "libell_d_acheminement": "IGNY", "code_postal": "91430", "coordonnees_gps": [48.7339593054, 2.21260184658], "code_commune_insee": "91312"}, "geometry": {"type": "Point", "coordinates": [2.21260184658, 48.7339593054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1138b0ee74ff9a2e837de76a59d10ac3e42d85a0", "fields": {"nom_de_la_commune": "JUVISY SUR ORGE", "libell_d_acheminement": "JUVISY SUR ORGE", "code_postal": "91260", "coordonnees_gps": [48.6916199435, 2.37474050395], "code_commune_insee": "91326"}, "geometry": {"type": "Point", "coordinates": [2.37474050395, 48.6916199435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69fa27a50e955b83170fea4f4b6ad6acdc25495", "fields": {"nom_de_la_commune": "LONGJUMEAU", "libell_d_acheminement": "LONGJUMEAU", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91345"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a20517dbc8ce452bbad9344fc1c666d6f23b8b", "fields": {"nom_de_la_commune": "MAROLLES EN HUREPOIX", "libell_d_acheminement": "MAROLLES EN HUREPOIX", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91376"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f6498d091134cab7bcd255e4de25309febe1df", "fields": {"nom_de_la_commune": "MASSY", "libell_d_acheminement": "MASSY", "code_postal": "91300", "coordonnees_gps": [48.7275197703, 2.2747102429], "code_commune_insee": "91377"}, "geometry": {"type": "Point", "coordinates": [2.2747102429, 48.7275197703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c333f3fed185c597c54a0fe9f4f8e5fa8c85222d", "fields": {"nom_de_la_commune": "MAUCHAMPS", "libell_d_acheminement": "MAUCHAMPS", "code_postal": "91730", "coordonnees_gps": [48.5235985286, 2.21810391449], "code_commune_insee": "91378"}, "geometry": {"type": "Point", "coordinates": [2.21810391449, 48.5235985286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f89c17028ad06dcb826fd90216bae767b61faf", "fields": {"nom_de_la_commune": "MENNECY", "libell_d_acheminement": "MENNECY", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91386"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411db76c05264ea48b5ff102bfba7a537f36e42c", "fields": {"nom_de_la_commune": "MOIGNY SUR ECOLE", "libell_d_acheminement": "MOIGNY SUR ECOLE", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91408"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0bc70906b7dcacb308b46502bad3a7cb52ee1a", "fields": {"nom_de_la_commune": "NAINVILLE LES ROCHES", "libell_d_acheminement": "NAINVILLE LES ROCHES", "code_postal": "91750", "coordonnees_gps": [48.5147670198, 2.45459432239], "code_commune_insee": "91441"}, "geometry": {"type": "Point", "coordinates": [2.45459432239, 48.5147670198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "460f938779b15c8479537aa241927b107babfac3", "fields": {"nom_de_la_commune": "ORMOY LA RIVIERE", "libell_d_acheminement": "ORMOY LA RIVIERE", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91469"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb7bbcdbb4da660b06a944e2830d239902ff856", "fields": {"nom_de_la_commune": "PARAY VIEILLE POSTE", "libell_d_acheminement": "PARAY VIEILLE POSTE", "code_postal": "91550", "coordonnees_gps": [48.7243019764, 2.36018622898], "code_commune_insee": "91479"}, "geometry": {"type": "Point", "coordinates": [2.36018622898, 48.7243019764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4753eb74d5ea5d520d007ca8d36df177b656979a", "fields": {"nom_de_la_commune": "PECQUEUSE", "libell_d_acheminement": "PECQUEUSE", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91482"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58fa570575c0c231dd6a5ad2e300b1a08460c03d", "fields": {"nom_de_la_commune": "ST CHERON", "libell_d_acheminement": "ST CHERON", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91540"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5beacf106725c56550c375c03b76949d1fc5125e", "fields": {"nom_de_la_commune": "ST YON", "libell_d_acheminement": "ST YON", "code_postal": "91650", "coordonnees_gps": [48.5636207397, 2.17184394889], "code_commune_insee": "91581"}, "geometry": {"type": "Point", "coordinates": [2.17184394889, 48.5636207397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4fa9622f064c176d8b897d19e97a61bc618006", "fields": {"nom_de_la_commune": "TORFOU", "libell_d_acheminement": "TORFOU", "code_postal": "91730", "coordonnees_gps": [48.5235985286, 2.21810391449], "code_commune_insee": "91619"}, "geometry": {"type": "Point", "coordinates": [2.21810391449, 48.5235985286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67900b5eeeff1e425cc8e8fb52e14983fc3ecf8", "fields": {"nom_de_la_commune": "VIGNEUX SUR SEINE", "libell_d_acheminement": "VIGNEUX SUR SEINE", "code_postal": "91270", "coordonnees_gps": [48.703950195, 2.42770739921], "code_commune_insee": "91657"}, "geometry": {"type": "Point", "coordinates": [2.42770739921, 48.703950195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c5c205dadeb0900b7b72c4a5fbe7a53fc2eef2", "fields": {"nom_de_la_commune": "VILLEBON SUR YVETTE", "libell_d_acheminement": "VILLEBON SUR YVETTE", "code_postal": "91140", "coordonnees_gps": [48.6888194138, 2.23030867411], "code_commune_insee": "91661"}, "geometry": {"type": "Point", "coordinates": [2.23030867411, 48.6888194138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eafdbf793db9452294501f10d433ee5cbe2475e", "fields": {"nom_de_la_commune": "VILLEMOISSON SUR ORGE", "libell_d_acheminement": "VILLEMOISSON SUR ORGE", "code_postal": "91360", "coordonnees_gps": [48.6691027635, 2.32253482428], "code_commune_insee": "91667"}, "geometry": {"type": "Point", "coordinates": [2.32253482428, 48.6691027635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e48b6b765b2650d7f6c216aca9eab0a90f0b6b5", "fields": {"nom_de_la_commune": "VILLENEUVE SUR AUVERS", "libell_d_acheminement": "VILLENEUVE SUR AUVERS", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91671"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba3e80d5a8a7084725831abaa3bbdc377a71a51", "fields": {"nom_de_la_commune": "VILLIERS LE BACLE", "libell_d_acheminement": "VILLIERS LE BACLE", "code_postal": "91190", "coordonnees_gps": [48.709665031, 2.12766544978], "code_commune_insee": "91679"}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58ce82661e47bd9100c3697fa219684738aa17d", "fields": {"nom_de_la_commune": "VIRY CHATILLON", "libell_d_acheminement": "VIRY CHATILLON", "code_postal": "91170", "coordonnees_gps": [48.6699861036, 2.37373132613], "code_commune_insee": "91687"}, "geometry": {"type": "Point", "coordinates": [2.37373132613, 48.6699861036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66b9f34b1f4884b15b1961c1226543011a1e05f", "fields": {"nom_de_la_commune": "WISSOUS", "libell_d_acheminement": "WISSOUS", "code_postal": "91320", "coordonnees_gps": [48.7299903097, 2.32956070279], "code_commune_insee": "91689"}, "geometry": {"type": "Point", "coordinates": [2.32956070279, 48.7299903097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fca7807a5a258862622cd5513f5d73eac0a0173", "fields": {"nom_de_la_commune": "COLOMBES", "libell_d_acheminement": "COLOMBES", "code_postal": "92700", "coordonnees_gps": [48.9228285289, 2.24714560937], "code_commune_insee": "92025"}, "geometry": {"type": "Point", "coordinates": [2.24714560937, 48.9228285289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6fd29d99ba57a1b60fcf0214ebf50bbc42e258f", "fields": {"nom_de_la_commune": "GARCHES", "libell_d_acheminement": "GARCHES", "code_postal": "92380", "coordonnees_gps": [48.8454061837, 2.18760213327], "code_commune_insee": "92033"}, "geometry": {"type": "Point", "coordinates": [2.18760213327, 48.8454061837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17775bd7250b3eddec7214ec3005f61fa6d2fa0", "fields": {"nom_de_la_commune": "ISSY LES MOULINEAUX", "libell_d_acheminement": "ISSY LES MOULINEAUX", "code_postal": "92130", "coordonnees_gps": [48.8232529299, 2.26429719337], "code_commune_insee": "92040"}, "geometry": {"type": "Point", "coordinates": [2.26429719337, 48.8232529299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65a6b87e084d65c1fee60180ad9ae5933d77fcf", "fields": {"nom_de_la_commune": "ST LEGER SUR DHEUNE", "libell_d_acheminement": "ST LEGER SUR DHEUNE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71442"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bb14cb1a1f6c5f64878b80da5b68fa051aaf44", "fields": {"code_postal": "71350", "code_commune_insee": "71443", "libell_d_acheminement": "ST LOUP GEANGES", "ligne_5": "GEANGES", "nom_de_la_commune": "ST LOUP GEANGES", "coordonnees_gps": [46.9191804565, 5.01728038067]}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6288e8625ecad80a9c0e9f46c338260144f4043", "fields": {"nom_de_la_commune": "ST MARTIN DE SALENCEY", "libell_d_acheminement": "ST MARTIN DE SALENCEY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71452"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa05b9cb8e78eda29177ba73c2e330b319fc3354", "fields": {"nom_de_la_commune": "ST PIERRE DE VARENNES", "libell_d_acheminement": "ST PIERRE DE VARENNES", "code_postal": "71670", "coordonnees_gps": [46.8253378412, 4.49167816237], "code_commune_insee": "71468"}, "geometry": {"type": "Point", "coordinates": [4.49167816237, 46.8253378412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9345c404bb4961503037a490a554ca449c6ea5", "fields": {"nom_de_la_commune": "ST SERNIN DU PLAIN", "libell_d_acheminement": "ST SERNIN DU PLAIN", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71480"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57fcaefd973dee31e6c7e8c26a44024b11ce60ab", "fields": {"code_postal": "71230", "code_commune_insee": "71486", "libell_d_acheminement": "ST VALLIER", "ligne_5": "LES GAUTHERETS", "nom_de_la_commune": "ST VALLIER", "coordonnees_gps": [46.6235547336, 4.3737497458]}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a987ae101ed7c1283d09f726635ee091eb759e", "fields": {"nom_de_la_commune": "SAUNIERES", "libell_d_acheminement": "SAUNIERES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71504"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f6fa2db9d4d97ce99395f0e0e3d7dc0b527dac", "fields": {"nom_de_la_commune": "SAVIGNY EN REVERMONT", "libell_d_acheminement": "SAVIGNY EN REVERMONT", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71506"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab38fe02db7b7265fb2b4a96f6b32be6aebf45d2", "fields": {"nom_de_la_commune": "SAVIGNY SUR SEILLE", "libell_d_acheminement": "SAVIGNY SUR SEILLE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71508"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03c09a0bee4b996489fcb6635d06a31620d38a9", "fields": {"nom_de_la_commune": "LA CELLE EN MORVAN", "libell_d_acheminement": "LA CELLE EN MORVAN", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71509"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360c868b44c32fe814c2dfba257abf398362b8dd", "fields": {"nom_de_la_commune": "SENNECEY LE GRAND", "libell_d_acheminement": "SENNECEY LE GRAND", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71512"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88970a0098af82d32966686c9f40e5714e1acb4b", "fields": {"nom_de_la_commune": "SIMARD", "libell_d_acheminement": "SIMARD", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71523"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020ec823911f2efcd2530cec4ce6bf00c2bc651c", "fields": {"nom_de_la_commune": "SOLOGNY", "libell_d_acheminement": "SOLOGNY", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71525"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee9115b99dfff005e0a1ba5c0e2e2bfb7161fb9", "fields": {"nom_de_la_commune": "SOMMANT", "libell_d_acheminement": "SOMMANT", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71527"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2965bbcd6cbeb0d0b456b7a67bd3d9163ea5473b", "fields": {"nom_de_la_commune": "SORNAY", "libell_d_acheminement": "SORNAY", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71528"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edfdcc962d4c8131a2a3ed39c76f892eaf49ec66", "fields": {"nom_de_la_commune": "VARENNES ST SAUVEUR", "libell_d_acheminement": "VARENNES ST SAUVEUR", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71558"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fde01a148b132d9d9874cd55619e98175dd0e19", "fields": {"nom_de_la_commune": "VARENNES SOUS DUN", "libell_d_acheminement": "VARENNES SOUS DUN", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71559"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee094b8db6afaa783b25bf8cf097ee2019182935", "fields": {"nom_de_la_commune": "VAUX EN PRE", "libell_d_acheminement": "VAUX EN PRE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71563"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d7414f50cd4de36f588dddc8e1d8ebc2a86cc3b", "fields": {"nom_de_la_commune": "VERDUN SUR LE DOUBS", "libell_d_acheminement": "VERDUN SUR LE DOUBS", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71566"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76971ec2066b9cba6e2f19c18a7f67ee900580e", "fields": {"nom_de_la_commune": "VEROSVRES", "libell_d_acheminement": "VEROSVRES", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71571"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4529f16af0c7518682b682678e463b965efc4772", "fields": {"nom_de_la_commune": "CLUX VILLENEUVE", "libell_d_acheminement": "CLUX VILLENEUVE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71578"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0f06b7abc43614d4c4360278698f2783517a08", "fields": {"nom_de_la_commune": "VIRE", "libell_d_acheminement": "VIRE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71584"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d4803a2d81ad841cc8b358f998c3aff930564b", "fields": {"nom_de_la_commune": "ARCONNAY", "libell_d_acheminement": "ARCONNAY", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72006"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a7584c93ad9cb526f023ec3ab24a6dbc1671e8", "fields": {"nom_de_la_commune": "ARNAGE", "libell_d_acheminement": "ARNAGE", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72008"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7058a79b69e177b4bff13ebd4faaa4096ff17954", "fields": {"nom_de_la_commune": "ASNIERES SUR VEGRE", "libell_d_acheminement": "ASNIERES SUR VEGRE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72010"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca34108e32d5006a278ee13709d34d93c443bba", "fields": {"nom_de_la_commune": "AUVERS LE HAMON", "libell_d_acheminement": "AUVERS LE HAMON", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72016"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9611b860d5543933581d1ceea75619a41a7d3fdc", "fields": {"nom_de_la_commune": "AUVERS SOUS MONTFAUCON", "libell_d_acheminement": "AUVERS SOUS MONTFAUCON", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72017"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2903c1e025dfd60f8917ce4a4dea8ed42e2e0ca8", "fields": {"nom_de_la_commune": "AVEZE", "libell_d_acheminement": "AVEZE", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72020"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3eac43cc39436071b3215f377f10462c77a921", "fields": {"nom_de_la_commune": "BALLON ST MARS", "libell_d_acheminement": "BALLON ST MARS", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72023"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc247108bed8d763ac9308ad5864b43c49618e2e", "fields": {"nom_de_la_commune": "LA BAZOGE", "libell_d_acheminement": "LA BAZOGE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72024"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c10b336e1c38c0f8bda793374daff8e585b0c23", "fields": {"nom_de_la_commune": "BERNAY EN CHAMPAGNE", "libell_d_acheminement": "BERNAY EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72033"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568ed097284a177250af5c8f89e20da05018e0bd", "fields": {"nom_de_la_commune": "BETHON", "libell_d_acheminement": "BETHON", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72036"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5508fe8e49b414e2f2196fa63f16ece550609bfa", "fields": {"nom_de_la_commune": "BOESSE LE SEC", "libell_d_acheminement": "BOESSE LE SEC", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72038"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5bc7288d1bf62a439b2b0e7c706df430375c2d", "fields": {"nom_de_la_commune": "BRETTE LES PINS", "libell_d_acheminement": "BRETTE LES PINS", "code_postal": "72250", "coordonnees_gps": [47.9293145286, 0.379783357055], "code_commune_insee": "72047"}, "geometry": {"type": "Point", "coordinates": [0.379783357055, 47.9293145286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142bfd01884fd08de6f83df8fd8e68febe5745b5", "fields": {"nom_de_la_commune": "BRULON", "libell_d_acheminement": "BRULON", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72050"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f655bbd1c0799c8426425f817e2b8ebd815e30", "fields": {"nom_de_la_commune": "CHAMPROND", "libell_d_acheminement": "CHAMPROND", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72057"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9190e98e67d42259492ae71120ef246d5030722", "fields": {"nom_de_la_commune": "LA CHAPELLE HUON", "libell_d_acheminement": "LA CHAPELLE HUON", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72064"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da68f1b56d80558241e4d1e54ae8576142263b9a", "fields": {"nom_de_la_commune": "CHENAY", "libell_d_acheminement": "CHENAY", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72076"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae933dbbb294a3e9fba6e2cd46e82bd961aa88fc", "fields": {"nom_de_la_commune": "CONGE SUR ORNE", "libell_d_acheminement": "CONGE SUR ORNE", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72088"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10307bc6373906a753be9149de348b597b855086", "fields": {"nom_de_la_commune": "CONLIE", "libell_d_acheminement": "CONLIE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72089"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd5fe2bb0be9828bfb65c1968173cce35fee6cb", "fields": {"nom_de_la_commune": "CORMES", "libell_d_acheminement": "CORMES", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72093"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542e55dbc9256d958ff41d11854dc35ef6852e95", "fields": {"nom_de_la_commune": "COURCEBOEUFS", "libell_d_acheminement": "COURCEBOEUFS", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72099"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5971d2ba3ab4678abf1f24c1f7cf5f4b2f1f04", "fields": {"nom_de_la_commune": "COURGAINS", "libell_d_acheminement": "COURGAINS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72104"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b943fa16b7f4a02ef1da0c41f94ff74a8160942", "fields": {"nom_de_la_commune": "DOUILLET", "libell_d_acheminement": "DOUILLET LE JOLY", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72121"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32b1b95d7b1c66f393b98288994192d40953877", "fields": {"nom_de_la_commune": "EVAILLE", "libell_d_acheminement": "EVAILLE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72128"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd61ab1f276e54f14980943114c232627321e29", "fields": {"nom_de_la_commune": "FERCE SUR SARTHE", "libell_d_acheminement": "FERCE SUR SARTHE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72131"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497e886bbe65fa2ad89ed795d346d9c6423978f5", "fields": {"nom_de_la_commune": "FLEE", "libell_d_acheminement": "FLEE", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72134"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b13f5655f8c3c81720b59e05ac2d6dc8261b4e3f", "fields": {"code_postal": "72600", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "MONTIGNY", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3843358188, 0.287692343822]}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb2603ccddd3fc933f91140062e1a9c9a27609e", "fields": {"nom_de_la_commune": "LE GREZ", "libell_d_acheminement": "LE GREZ", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72145"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09c2dd3f3037b3b5585293f690986ae8b6c5fa8", "fields": {"nom_de_la_commune": "JUIGNE SUR SARTHE", "libell_d_acheminement": "JUIGNE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72151"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d95f979628abb418bc98da5f0053c56538d5f5", "fields": {"nom_de_la_commune": "JUILLE", "libell_d_acheminement": "JUILLE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72152"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f7b358026172d45e9a0381ee52b13dcab03c90f", "fields": {"code_postal": "72310", "code_commune_insee": "72159", "libell_d_acheminement": "LAVENAY", "ligne_5": "PONT DE BRAYE", "nom_de_la_commune": "LAVENAY", "coordonnees_gps": [47.8336361151, 0.691494561054]}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831a26e05c64883b0661cdd2ee1a7b0c80105bc3", "fields": {"nom_de_la_commune": "LONGNES", "libell_d_acheminement": "LONGNES", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72166"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bece10a4a2a1cfd68e4114108261940156adc3aa", "fields": {"nom_de_la_commune": "MAIGNE", "libell_d_acheminement": "MAIGNE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72177"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad032fc297c35c69044edcaf5a03055560b45eb", "fields": {"nom_de_la_commune": "MALICORNE SUR SARTHE", "libell_d_acheminement": "MALICORNE SUR SARTHE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72179"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44853d19a2ad4777a88e7df5971a0dbe082ee47a", "fields": {"nom_de_la_commune": "MAREIL SUR LOIR", "libell_d_acheminement": "MAREIL SUR LOIR", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72185"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38bcaa22de6fd821835fcc1778d1c984cd929dc8", "fields": {"nom_de_la_commune": "MAROLLETTE", "libell_d_acheminement": "MAROLLETTE", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72188"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b252d7305984fff5703c51a24f64a4e9246b85", "fields": {"nom_de_la_commune": "MAYET", "libell_d_acheminement": "MAYET", "code_postal": "72360", "coordonnees_gps": [47.7503941662, 0.276407152429], "code_commune_insee": "72191"}, "geometry": {"type": "Point", "coordinates": [0.276407152429, 47.7503941662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5c6c8d573514ebe094076e65efc8cae2eeaa41", "fields": {"nom_de_la_commune": "MEZIERES SUR PONTHOUIN", "libell_d_acheminement": "MEZIERES SUR PONTHOUIN", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72196"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30a625a001f6d0e8316273c23f873be02f0f5c5", "fields": {"nom_de_la_commune": "MONCE EN BELIN", "libell_d_acheminement": "MONCE EN BELIN", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72200"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c717c8bb36ce20303dc1ff4ba8da7c097aeec63a", "fields": {"nom_de_la_commune": "NAUVAY", "libell_d_acheminement": "NAUVAY", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72214"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735a6cececbfd6902458fd5d81bc4beaea27dcb8", "fields": {"nom_de_la_commune": "NEUVY EN CHAMPAGNE", "libell_d_acheminement": "NEUVY EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72219"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f688b8c6309361756d2bbae2b7d89acbf22382", "fields": {"nom_de_la_commune": "NOGENT SUR LOIR", "libell_d_acheminement": "NOGENT SUR LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72221"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c089115849eb36f32d37e4bc6beb20c58680d6", "fields": {"nom_de_la_commune": "RUPT SUR OTHAIN", "libell_d_acheminement": "RUPT SUR OTHAIN", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55450"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec14634008e73a297c2e5d7d626ddfe70df87cf", "fields": {"nom_de_la_commune": "ST AMAND SUR ORNAIN", "libell_d_acheminement": "ST AMAND SUR ORNAIN", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55452"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b606738b7d7c6fb27afdd4a154db39350bf88684", "fields": {"nom_de_la_commune": "ST AUBIN SUR AIRE", "libell_d_acheminement": "ST AUBIN SUR AIRE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55454"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216dc562dce36d609953a04079c4e845f89b4e4e", "fields": {"code_postal": "55160", "code_commune_insee": "55457", "libell_d_acheminement": "ST HILAIRE EN WOEVRE", "ligne_5": "BUTGNEVILLE", "nom_de_la_commune": "ST HILAIRE EN WOEVRE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954dd0011655550b1e9014545171ff5c425478be", "fields": {"nom_de_la_commune": "ST MIHIEL", "libell_d_acheminement": "ST MIHIEL", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55463"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c57fb9ddbf7a6f8230875a351baf73d28d21460", "fields": {"nom_de_la_commune": "SASSEY SUR MEUSE", "libell_d_acheminement": "SASSEY SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55469"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6640e4eb0994a986e2d87c31f4fb140543741e0b", "fields": {"nom_de_la_commune": "SAULX LES CHAMPLON", "libell_d_acheminement": "SAULX LES CHAMPLON", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55473"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f0dc25135af67133515da1f752277f7dee88d5", "fields": {"nom_de_la_commune": "SIVRY SUR MEUSE", "libell_d_acheminement": "SIVRY SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55490"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22db7f6005cc4da57c5b2d3485dc0777d0225b4", "fields": {"nom_de_la_commune": "SOMMELONNE", "libell_d_acheminement": "SOMMELONNE", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55494"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef36937e1e1613be49479014712f577fce027a0", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "HAUCOURT LA RIGOLE", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ef75fe5ea2a08a967239b51f082f5f7616b178", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "HOUDELAUCOURT SUR OTHAIN", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf3850d4fcc3c6118b061c39e746057cf77ddd7", "fields": {"nom_de_la_commune": "TAILLANCOURT", "libell_d_acheminement": "TAILLANCOURT", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55503"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4e00aa09449e323b75140fdee08aa2ea9af5957", "fields": {"nom_de_la_commune": "THONNE LE THIL", "libell_d_acheminement": "THONNE LE THIL", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55509"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a254593d277a7a5ab6525f12ba083d86e84e1f1a", "fields": {"nom_de_la_commune": "SEUIL D ARGONNE", "libell_d_acheminement": "SEUIL D ARGONNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55517"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3d2da00571f2d7411e844681633f2c46b01325", "fields": {"code_postal": "55250", "code_commune_insee": "55517", "libell_d_acheminement": "SEUIL D ARGONNE", "ligne_5": "TRIAUCOURT EN ARGONNE", "nom_de_la_commune": "SEUIL D ARGONNE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd155572d446a2ff60f2aa0234d52ccec8488c28", "fields": {"nom_de_la_commune": "VACHERAUVILLE", "libell_d_acheminement": "VACHERAUVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55523"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b93ea845fda5c9fdd1a364cacea12177ba75f7c", "fields": {"nom_de_la_commune": "VADELAINCOURT", "libell_d_acheminement": "VADELAINCOURT", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55525"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce094b538a3bbd6de976ac4cd8133b9ede49255", "fields": {"code_postal": "55300", "code_commune_insee": "55530", "libell_d_acheminement": "VALBOIS", "ligne_5": "SENONVILLE", "nom_de_la_commune": "VALBOIS", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f83980fb6bc9a3288532cee92b03d557403e1c", "fields": {"nom_de_la_commune": "VAUBECOURT", "libell_d_acheminement": "VAUBECOURT", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55532"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af44166dce21755922a3c7262df7582fc10713a", "fields": {"nom_de_la_commune": "VELOSNES", "libell_d_acheminement": "VELOSNES", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55544"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc88eb891ac33bb9b62df0bc3546221c27f31fe4", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "BILLY SOUS LES COTES", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7af75efb3325dc0e5d64b9a0f8bea433e612f028", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "ST BENOIT EN WOEVRE", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9257dd9bcc773489f66bfa3e92b7ecbac9e2007f", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "VIEVILLE SOUS LES COTES", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8231480a8d370c712fcd2e16733f3d20a6f45af5", "fields": {"nom_de_la_commune": "VILLE DEVANT BELRAIN", "libell_d_acheminement": "VILLE DEVANT BELRAIN", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55555"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cc5baa2d42108a3dc3ae9bbb6656aa74b0c06b", "fields": {"nom_de_la_commune": "VILLE EN WOEVRE", "libell_d_acheminement": "VILLE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55557"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6793288b5f0070293c0df22bd46be597eb942ab", "fields": {"nom_de_la_commune": "VILOSNES HARAUMONT", "libell_d_acheminement": "VILOSNES HARAUMONT", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55571"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46722ff7f764b2ffb7a668ad854bdb543f04391a", "fields": {"code_postal": "55190", "code_commune_insee": "55573", "libell_d_acheminement": "VOID VACON", "ligne_5": "VACON", "nom_de_la_commune": "VOID VACON", "coordonnees_gps": [48.667580724, 5.58942514776]}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b15eda2ece17068e790ab5ec1a82564cebdfbfa4", "fields": {"nom_de_la_commune": "WATRONVILLE", "libell_d_acheminement": "WATRONVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55579"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232d493c26b65a05cb8964ff31aa0e3efc4624b3", "fields": {"nom_de_la_commune": "WOEL", "libell_d_acheminement": "WOEL", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55583"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681c8c264dd4162771196b257f17c56ea5076a5d", "fields": {"nom_de_la_commune": "AMBON", "libell_d_acheminement": "AMBON", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56002"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0cd1f8c432f4d231a84ad63895459119009655", "fields": {"nom_de_la_commune": "ARRADON", "libell_d_acheminement": "ARRADON", "code_postal": "56610", "coordonnees_gps": [47.6337705516, -2.82324524602], "code_commune_insee": "56003"}, "geometry": {"type": "Point", "coordinates": [-2.82324524602, 47.6337705516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8814527cf1aeda39f57fa2d599dc77b74113354a", "fields": {"nom_de_la_commune": "BADEN", "libell_d_acheminement": "BADEN", "code_postal": "56870", "coordonnees_gps": [47.6124073819, -2.90240136291], "code_commune_insee": "56008"}, "geometry": {"type": "Point", "coordinates": [-2.90240136291, 47.6124073819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a6896f58e67e3a7f3278da8419389a6aaae05e", "fields": {"nom_de_la_commune": "BERRIC", "libell_d_acheminement": "BERRIC", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56015"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596b134c8fa6b462ba960e3c2ef44048ef9ede33", "fields": {"nom_de_la_commune": "BRANDIVY", "libell_d_acheminement": "BRANDIVY", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56022"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bff721cc0a7d69d1dd3bd778a2f8efa7b9ca85b", "fields": {"nom_de_la_commune": "CALAN", "libell_d_acheminement": "CALAN", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56029"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82ea485f3c0c78b5c4e0f151672051519abc207", "fields": {"nom_de_la_commune": "CAMOEL", "libell_d_acheminement": "CAMOEL", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56030"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81a43f6378c2ffdd8ebb52e2e89de7fbabfb4bd", "fields": {"nom_de_la_commune": "CARO", "libell_d_acheminement": "CARO", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56035"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f89aad5ace0ce2ed611673bd5ab151dad53093b", "fields": {"nom_de_la_commune": "CROIXANVEC", "libell_d_acheminement": "CROIXANVEC", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56049"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe1385a3259469f30d029bcb5922bffeef5f39d", "fields": {"nom_de_la_commune": "ETEL", "libell_d_acheminement": "ETEL", "code_postal": "56410", "coordonnees_gps": [47.6381835411, -3.15894216242], "code_commune_insee": "56055"}, "geometry": {"type": "Point", "coordinates": [-3.15894216242, 47.6381835411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d467be3ecacde5539f951fbdc16f99196e377c", "fields": {"nom_de_la_commune": "FEREL", "libell_d_acheminement": "FEREL", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56058"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8682b65cbe2a3824abca3e62c9a845a4cb9787bc", "fields": {"nom_de_la_commune": "LES FORGES", "libell_d_acheminement": "LES FORGES", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56059"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d1953a032b3a071db5d98543e2b4c359d106e24", "fields": {"nom_de_la_commune": "GOURHEL", "libell_d_acheminement": "GOURHEL", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56065"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab20f7c71bbda4d3d828f01cc8ee7066111d5d6", "fields": {"nom_de_la_commune": "GUERN", "libell_d_acheminement": "GUERN", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56076"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc96e8342b44088717c256c7dd84543078d98e54", "fields": {"nom_de_la_commune": "GUIDEL", "libell_d_acheminement": "GUIDEL", "code_postal": "56520", "coordonnees_gps": [47.7942746645, -3.49216136954], "code_commune_insee": "56078"}, "geometry": {"type": "Point", "coordinates": [-3.49216136954, 47.7942746645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b05f69f542b41e961bdde66065c79df93514987", "fields": {"nom_de_la_commune": "GUILLAC", "libell_d_acheminement": "GUILLAC", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56079"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2023c6d21e98a6be2456e48fb150b66dcdefbbf4", "fields": {"nom_de_la_commune": "LANGONNET", "libell_d_acheminement": "LANGONNET", "code_postal": "56630", "coordonnees_gps": [48.1319405478, -3.48128643934], "code_commune_insee": "56100"}, "geometry": {"type": "Point", "coordinates": [-3.48128643934, 48.1319405478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f70d499b35771a22169b81a33c53a13987b134", "fields": {"nom_de_la_commune": "LARMOR BADEN", "libell_d_acheminement": "LARMOR BADEN", "code_postal": "56870", "coordonnees_gps": [47.6124073819, -2.90240136291], "code_commune_insee": "56106"}, "geometry": {"type": "Point", "coordinates": [-2.90240136291, 47.6124073819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e92573e36df3d71e5b59ee8c382db9c31aa82f", "fields": {"nom_de_la_commune": "LOCMINE", "libell_d_acheminement": "LOCMINE", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56117"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49962e66ba1b4fb406409ad028e9efdc7d321aa", "fields": {"nom_de_la_commune": "MALANSAC", "libell_d_acheminement": "MALANSAC", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56123"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c9271b0d7d7e715609f3a0c15bbecf0bb3575e", "fields": {"nom_de_la_commune": "MELRAND", "libell_d_acheminement": "MELRAND", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56128"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5b195c38180cff4e884754d04fab657b6ce818", "fields": {"nom_de_la_commune": "MONTERBLANC", "libell_d_acheminement": "MONTERBLANC", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56137"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516de8b72093c18f9e916ec364f858e0c3993843", "fields": {"nom_de_la_commune": "MONTERTELOT", "libell_d_acheminement": "MONTERTELOT", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56139"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6287ad4ba0a9825d49ca0ca391366013e128b26", "fields": {"nom_de_la_commune": "NOYAL PONTIVY", "libell_d_acheminement": "NOYAL PONTIVY", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56151"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1a79608c81053934ac9183603e80c6ea77138a", "fields": {"nom_de_la_commune": "PERSQUEN", "libell_d_acheminement": "PERSQUEN", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56156"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc26b0b405304985eedd3e2c3ef17400279aa8b", "fields": {"nom_de_la_commune": "PLOERMEL", "libell_d_acheminement": "PLOERMEL", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56165"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684955bccc2e48874a6c30f4c4d9ca7ffdb509d6", "fields": {"nom_de_la_commune": "PLOUGOUMELEN", "libell_d_acheminement": "PLOUGOUMELEN", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56167"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4c81860da62b28296f013a271c939f739b8921", "fields": {"nom_de_la_commune": "PLUMELIN", "libell_d_acheminement": "PLUMELIN", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56174"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0e093e11f84a85f25e4ae8becfd772e88f129c", "fields": {"nom_de_la_commune": "PLUMERGAT", "libell_d_acheminement": "PLUMERGAT", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56175"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef3f07491351bb2d70cfc450e9b4928003259246", "fields": {"nom_de_la_commune": "PONTIVY", "libell_d_acheminement": "PONTIVY", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56178"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b1dc51863f414e5cf34029c1c257e45f3fecf3", "fields": {"nom_de_la_commune": "QUELNEUC", "libell_d_acheminement": "QUELNEUC", "code_postal": "56910", "coordonnees_gps": [47.8192433861, -2.1438942597], "code_commune_insee": "56183"}, "geometry": {"type": "Point", "coordinates": [-2.1438942597, 47.8192433861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5d16e421c9adabf76d493d9ab5b3860e1817fd", "fields": {"nom_de_la_commune": "QUESTEMBERT", "libell_d_acheminement": "QUESTEMBERT", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56184"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e4e15a4b60e3e4129c71d5e6060f174a45ebd3", "fields": {"nom_de_la_commune": "QUEVEN", "libell_d_acheminement": "QUEVEN", "code_postal": "56530", "coordonnees_gps": [47.7891669692, -3.42348141885], "code_commune_insee": "56185"}, "geometry": {"type": "Point", "coordinates": [-3.42348141885, 47.7891669692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d81efadbb12e2054c90946412cfe2ef47fd186a", "fields": {"nom_de_la_commune": "REMINIAC", "libell_d_acheminement": "REMINIAC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56191"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02d3e88060bcebedf195d693d3a51c2977ec21e9", "fields": {"nom_de_la_commune": "RIANTEC", "libell_d_acheminement": "RIANTEC", "code_postal": "56670", "coordonnees_gps": [47.7178742099, -3.30258640805], "code_commune_insee": "56193"}, "geometry": {"type": "Point", "coordinates": [-3.30258640805, 47.7178742099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f776d7e41d5d107be12ce752153d4876def4593", "fields": {"nom_de_la_commune": "LA ROCHE BERNARD", "libell_d_acheminement": "LA ROCHE BERNARD", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56195"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64e35d9ecae87282d96ca0da28c046faeec78c6", "fields": {"nom_de_la_commune": "ROCHEFORT EN TERRE", "libell_d_acheminement": "ROCHEFORT EN TERRE", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56196"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8968b2300d8dda23bdd63941a3aa5fcb440be6", "fields": {"code_postal": "56460", "code_commune_insee": "56197", "libell_d_acheminement": "VAL D OUST", "ligne_5": "LA CHAPELLE CARO", "nom_de_la_commune": "VAL D OUST", "coordonnees_gps": [47.8267704974, -2.49804841656]}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edc38a1bd6d70de52a7594be794317253bde9fb", "fields": {"nom_de_la_commune": "ROUDOUALLEC", "libell_d_acheminement": "ROUDOUALLEC", "code_postal": "56110", "coordonnees_gps": [48.1237137726, -3.61197294513], "code_commune_insee": "56199"}, "geometry": {"type": "Point", "coordinates": [-3.61197294513, 48.1237137726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96be6a18b6005f32b677c3d9c2aec96d2fe5d2ae", "fields": {"nom_de_la_commune": "ST CARADEC TREGOMEL", "libell_d_acheminement": "ST CARADEC TREGOMEL", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56210"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b930fee34d15b58c7ade8357aaf9566df76ed3", "fields": {"nom_de_la_commune": "ST DOLAY", "libell_d_acheminement": "ST DOLAY", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56212"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b516f2c158e53e645f69bb3186ed7537551a9ce", "fields": {"nom_de_la_commune": "ST GORGON", "libell_d_acheminement": "ST GORGON", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56216"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0415b4ec939eccc08873549e4781b84869ac0a92", "fields": {"nom_de_la_commune": "ST JEAN LA POTERIE", "libell_d_acheminement": "ST JEAN LA POTERIE", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56223"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c444b03558ca6d8a66616f759f11a28fa780a47", "fields": {"nom_de_la_commune": "ST MALO DES TROIS FONTAINES", "libell_d_acheminement": "ST MALO DES TROIS FONTAINES", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56227"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da7cac6f6f19b66f5add3a28d75ec4cb7fba876d", "fields": {"nom_de_la_commune": "ST SERVANT", "libell_d_acheminement": "ST SERVANT", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56236"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02825e4bee9a028c58730a7f400dd87dfbc0d25b", "fields": {"nom_de_la_commune": "ST THURIAU", "libell_d_acheminement": "ST THURIAU", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56237"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d5375b5ae148f7f262e6875a2ade4a0c4fb4f0", "fields": {"nom_de_la_commune": "ST VINCENT SUR OUST", "libell_d_acheminement": "ST VINCENT SUR OUST", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56239"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5da793d8fbb3acd73e23f97cd4b0b17dee4e59c", "fields": {"nom_de_la_commune": "SARZEAU", "libell_d_acheminement": "SARZEAU", "code_postal": "56370", "coordonnees_gps": [47.524503914, -2.74138748812], "code_commune_insee": "56240"}, "geometry": {"type": "Point", "coordinates": [-2.74138748812, 47.524503914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3d01eec1b9700b9bff20434f00db86b6c3d5f1", "fields": {"nom_de_la_commune": "SAUZON", "libell_d_acheminement": "SAUZON", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56241"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ac6422fbd59432a94d3aadba58e5e7f7d0d763", "fields": {"nom_de_la_commune": "SENE", "libell_d_acheminement": "SENE", "code_postal": "56860", "coordonnees_gps": [47.6246499349, -2.72984042736], "code_commune_insee": "56243"}, "geometry": {"type": "Point", "coordinates": [-2.72984042736, 47.6246499349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ddc2cff0b6365d704a4a136d92eec837109c835", "fields": {"nom_de_la_commune": "SILFIAC", "libell_d_acheminement": "SILFIAC", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56245"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5219aaf547d6b979a91025861c87b4235916a754", "fields": {"nom_de_la_commune": "THEIX NOYALO", "libell_d_acheminement": "THEIX NOYALO", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56251"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2a11706bd6b9058df2fe32835066c2d3d01d81", "fields": {"code_postal": "56450", "code_commune_insee": "56251", "libell_d_acheminement": "THEIX NOYALO", "ligne_5": "NOYALO", "nom_de_la_commune": "THEIX NOYALO", "coordonnees_gps": [47.5984313167, -2.64319395081]}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bcc14a36f32688e46ed4603b3c29d3560995710", "fields": {"nom_de_la_commune": "VANNES", "libell_d_acheminement": "VANNES", "code_postal": "56000", "coordonnees_gps": [47.6598173381, -2.75698478615], "code_commune_insee": "56260"}, "geometry": {"type": "Point", "coordinates": [-2.75698478615, 47.6598173381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b66b21b6ee112ab821cafc77bcafc49a59e24e0", "fields": {"nom_de_la_commune": "LA VRAIE CROIX", "libell_d_acheminement": "LA VRAIE CROIX", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56261"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16d6b1a8e32a0e50201280b4ab156ad668dd7bd", "fields": {"nom_de_la_commune": "STE ANNE D AURAY", "libell_d_acheminement": "STE ANNE D AURAY", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56263"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857d3ab0d245c7528932f2acc668773a4b2f4c17", "fields": {"nom_de_la_commune": "ABONCOURT SUR SEILLE", "libell_d_acheminement": "ABONCOURT SUR SEILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57002"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34cc8a18b9c7121a4707989927b2ec357e6066f", "fields": {"nom_de_la_commune": "ACHEN", "libell_d_acheminement": "ACHEN", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57006"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "127afea133031f1180abcca64c468c4b6acc8636", "fields": {"nom_de_la_commune": "ALGRANGE", "libell_d_acheminement": "ALGRANGE", "code_postal": "57440", "coordonnees_gps": [49.3774806221, 6.04516727983], "code_commune_insee": "57012"}, "geometry": {"type": "Point", "coordinates": [6.04516727983, 49.3774806221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255efc32e727878d2c628e352099d5f478533a9b", "fields": {"nom_de_la_commune": "ALTVILLER", "libell_d_acheminement": "ALTVILLER", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57015"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526b20307f1916450111ed5562f7d562a029c07e", "fields": {"nom_de_la_commune": "AMELECOURT", "libell_d_acheminement": "AMELECOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57018"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fd6719fea8d2cdd2301c7881f6e051cdd88032", "fields": {"nom_de_la_commune": "ANCY DORNOT", "libell_d_acheminement": "ANCY DORNOT", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57021"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf716e0d4e13e917fde95c03d2967f1d7ef1e85", "fields": {"code_postal": "57130", "code_commune_insee": "57021", "libell_d_acheminement": "ANCY DORNOT", "ligne_5": "DORNOT", "nom_de_la_commune": "ANCY DORNOT", "coordonnees_gps": [49.0926058282, 6.02256649302]}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6341c401921702d101f0c78932b1b1c117868176", "fields": {"nom_de_la_commune": "ANTILLY", "libell_d_acheminement": "ANTILLY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57024"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d64bfad5635be07293a3ceb17710e70aff8ca61", "fields": {"nom_de_la_commune": "APACH", "libell_d_acheminement": "APACH", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57026"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f263d1630dc7addc86bb6469b762799a03f77cd", "fields": {"nom_de_la_commune": "ARRIANCE", "libell_d_acheminement": "ARRIANCE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57029"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6675cfe14d5f3549237f16cb2c0a6d4db5cd860", "fields": {"nom_de_la_commune": "AZOUDANGE", "libell_d_acheminement": "AZOUDANGE", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57044"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30073aef39186cd904140e85ee41c37549298ddf", "fields": {"nom_de_la_commune": "BACOURT", "libell_d_acheminement": "BACOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57045"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d5975919a7b9fb22144363cecc3568bc08cf91", "fields": {"nom_de_la_commune": "LE BAN ST MARTIN", "libell_d_acheminement": "LE BAN ST MARTIN", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57049"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2c813566f179018ca1b1c396d7cdc72f4ed148", "fields": {"nom_de_la_commune": "BARST", "libell_d_acheminement": "BARST", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57052"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58a4f8ca94805358578f9b0637d4e265269a518", "fields": {"nom_de_la_commune": "BAZONCOURT", "libell_d_acheminement": "BAZONCOURT", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57055"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efb9785f4f332d4d1913939b73768398edb9031", "fields": {"nom_de_la_commune": "DAGNEUX", "libell_d_acheminement": "DAGNEUX", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01142"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "431795207ee85ef6b65764cc75f0c9f1663e57df", "fields": {"nom_de_la_commune": "CONFORT", "libell_d_acheminement": "CONFORT", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01114"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7304fd67db9ce0b781365247f903decf50693a49", "fields": {"nom_de_la_commune": "COURTES", "libell_d_acheminement": "COURTES", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01128"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e09598544f01e2d15070bf995d7a87ad27c780", "fields": {"nom_de_la_commune": "DORTAN", "libell_d_acheminement": "DORTAN", "code_postal": "01590", "coordonnees_gps": [46.3238684456, 5.65548376535], "code_commune_insee": "01148"}, "geometry": {"type": "Point", "coordinates": [5.65548376535, 46.3238684456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c440220707f362241b7274c9315fa7c2a15300", "fields": {"nom_de_la_commune": "MANTENAY MONTLIN", "libell_d_acheminement": "MANTENAY MONTLIN", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01230"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8735bef8c8da5f1c010af690cb6ac15253356d", "fields": {"nom_de_la_commune": "MEILLONNAS", "libell_d_acheminement": "MEILLONNAS", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01241"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21d3567550d01e9046f51cbdd1f757da3f221f7", "fields": {"nom_de_la_commune": "MARSONNAS", "libell_d_acheminement": "MARSONNAS", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01236"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77a0b5462eee9dadcdba436edaf4dbd1a12902d", "fields": {"nom_de_la_commune": "JUJURIEUX", "libell_d_acheminement": "JUJURIEUX", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01199"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b246fb84906a3dfce2edff6dc98e252b7e3ca7f3", "fields": {"nom_de_la_commune": "MARIGNIEU", "libell_d_acheminement": "MARIGNIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01234"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42c238d0b37b647cc9750ff36c2e48e66bf086a", "fields": {"nom_de_la_commune": "LANCRANS", "libell_d_acheminement": "LANCRANS", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01205"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af204949d0a33b832ed5a76e67c849b8ed8b3363", "fields": {"nom_de_la_commune": "JASSERON", "libell_d_acheminement": "JASSERON", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01195"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aacefe18ccc2d56e1266410cfb9e1c306caecbbb", "fields": {"nom_de_la_commune": "MAILLAT", "libell_d_acheminement": "MAILLAT", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01228"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f37f5acca2d3676926e7f25229175c5d72a6a6", "fields": {"nom_de_la_commune": "LELEX", "libell_d_acheminement": "LELEX", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01210"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845ce75acd968f256b26beef316668fde7f2829f", "fields": {"nom_de_la_commune": "LAIZ", "libell_d_acheminement": "LAIZ", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01203"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ddde9ea3d15fb1d8b43c0969af8f7d512c608c", "fields": {"code_postal": "01370", "code_commune_insee": "01426", "libell_d_acheminement": "VAL REVERMONT", "ligne_5": "TREFFORT CUISIAT", "nom_de_la_commune": "VAL REVERMONT", "coordonnees_gps": [46.2853749129, 5.32614321781]}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863afcbd1f5c6a9b9323d228e678232152281cd8", "fields": {"code_postal": "01370", "code_commune_insee": "01426", "libell_d_acheminement": "VAL REVERMONT", "ligne_5": "CUISIAT", "nom_de_la_commune": "VAL REVERMONT", "coordonnees_gps": [46.2853749129, 5.32614321781]}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9df04fa5377e79d4394d3576054081eb91e970", "fields": {"nom_de_la_commune": "ST TRIVIER SUR MOIGNANS", "libell_d_acheminement": "ST TRIVIER SUR MOIGNANS", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01389"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324256b4bc38d08f29b2600c16515b8f0672bfd0", "fields": {"nom_de_la_commune": "ST TRIVIER DE COURTES", "libell_d_acheminement": "ST TRIVIER DE COURTES", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01388"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eeb62802324e6630e2f4a39f74c1cbefd34c61a", "fields": {"nom_de_la_commune": "SULIGNAT", "libell_d_acheminement": "SULIGNAT", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01412"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e0b5edd3cf4dce26fbefb79e82b4a59f64d5ec", "fields": {"nom_de_la_commune": "SUTRIEU", "libell_d_acheminement": "SUTRIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01414"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b32ef90556e2a5bc4bb8ddd47f679466e6ae44f", "fields": {"nom_de_la_commune": "VERNOUX", "libell_d_acheminement": "VERNOUX", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01433"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7182c9acf559eb2764bf53026e8836c9c497ada7", "fields": {"code_postal": "01700", "code_commune_insee": "01249", "libell_d_acheminement": "MIRIBEL", "ligne_5": "LES ECHETS", "nom_de_la_commune": "MIRIBEL", "coordonnees_gps": [45.8388521429, 4.95806179291]}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f84ab8124243d0727ffd6651ed828cd8951a3e93", "fields": {"nom_de_la_commune": "MURS ET GELIGNIEUX", "libell_d_acheminement": "MURS ET GELIGNIEUX", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01268"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7c6615bd9ea88e7b292becf873507a9bf9e5185", "fields": {"nom_de_la_commune": "LES NEYROLLES", "libell_d_acheminement": "LES NEYROLLES", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01274"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15693e758c6f874df3b22d3590c1e6e08452143e", "fields": {"nom_de_la_commune": "PONT D AIN", "libell_d_acheminement": "PONT D AIN", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01304"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9951cfb6cdc3865f27bf2e724ffc4734a6f8fedf", "fields": {"nom_de_la_commune": "MONTANGES", "libell_d_acheminement": "MONTANGES", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01257"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de74dfc12af0ee2df2ca0b914354f4cd71dad95a", "fields": {"nom_de_la_commune": "MEXIMIEUX", "libell_d_acheminement": "MEXIMIEUX", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01244"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c050e986b8aa34046bb2a9341a647d8e107575", "fields": {"nom_de_la_commune": "MERIGNAT", "libell_d_acheminement": "MERIGNAT", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01242"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e05e90895dc55b25cccbc49cd6db3e695ec6e79", "fields": {"nom_de_la_commune": "MONTCET", "libell_d_acheminement": "MONTCET", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01259"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613b5d1d554dcf7b0696657d7853ca051b7d5d9d", "fields": {"nom_de_la_commune": "NIEVROZ", "libell_d_acheminement": "NIEVROZ", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01276"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51759081def88dd191e9fee042bbed4f0431be77", "fields": {"nom_de_la_commune": "ONCIEU", "libell_d_acheminement": "ONCIEU", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01279"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19c5467fd6b9feb08a5dc170fc50ef4da1a9796", "fields": {"code_postal": "01310", "code_commune_insee": "01065", "libell_d_acheminement": "BUELLAS", "ligne_5": "CORGENON", "nom_de_la_commune": "BUELLAS", "coordonnees_gps": [46.2412963633, 5.11553315012]}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c65aad9c8054dd07284abe4fbb31b313153248b", "fields": {"nom_de_la_commune": "BELLEGARDE SUR VALSERINE", "libell_d_acheminement": "BELLEGARDE SUR VALSERINE", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01033"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf03eff2460bb802f6f95e0c2f09d5ba676f091f", "fields": {"nom_de_la_commune": "BELMONT LUTHEZIEU", "libell_d_acheminement": "BELMONT LUTHEZIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01036"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec6b564ce7c35eb632e33c500e658682e217d56", "fields": {"nom_de_la_commune": "BREGNIER CORDON", "libell_d_acheminement": "BREGNIER CORDON", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01058"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c40ac18c960695216b82a42d0ca0e79e6265ea", "fields": {"nom_de_la_commune": "BRESSOLLES", "libell_d_acheminement": "BRESSOLLES", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01062"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5270d28f08e27a05d895c172860eacc54d59f577", "fields": {"nom_de_la_commune": "BELLEYDOUX", "libell_d_acheminement": "BELLEYDOUX", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01035"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fa7017e3efcf63e54805f194aaa8cb793fc80f", "fields": {"nom_de_la_commune": "BOISSEY", "libell_d_acheminement": "BOISSEY", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01050"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c45e3ab1c9db5dfaa27a8206ddb12b1c8235610", "fields": {"nom_de_la_commune": "BETTANT", "libell_d_acheminement": "BETTANT", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01041"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4a5476df22c3ed0f3c43f27fe0e486f4ebc3e1", "fields": {"nom_de_la_commune": "BLYES", "libell_d_acheminement": "BLYES", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01047"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "605ad3871e6378486c4cb3c4645632b802119686", "fields": {"nom_de_la_commune": "BRENS", "libell_d_acheminement": "BRENS", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01061"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb2a9126c7ef03ba1ee44946dbfcbd3875fb2c8", "fields": {"nom_de_la_commune": "ST MAURICE DE GOURDANS", "libell_d_acheminement": "ST MAURICE DE GOURDANS", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01378"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093083170a86795366c97f203fd5f3a002b3186a", "fields": {"nom_de_la_commune": "ST NIZIER LE BOUCHOUX", "libell_d_acheminement": "ST NIZIER LE BOUCHOUX", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01380"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1c3ce98f975ba697293b9f0cd09be487996abb", "fields": {"nom_de_la_commune": "ST MAURICE DE REMENS", "libell_d_acheminement": "ST MAURICE DE REMENS", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01379"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149d0fcdfc7fcb6a71183b87658e556f1a8a4f86", "fields": {"nom_de_la_commune": "ST NIZIER LE DESERT", "libell_d_acheminement": "ST NIZIER LE DESERT", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01381"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a5903166e518bc097a4083a310955a2c0edabf", "fields": {"nom_de_la_commune": "ST MARTIN DU FRENE", "libell_d_acheminement": "ST MARTIN DU FRENE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01373"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06472f2af532ac04dfe8900f3ee4efa7a1f0ba9", "fields": {"nom_de_la_commune": "SIMANDRE SUR SURAN", "libell_d_acheminement": "SIMANDRE SUR SURAN", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01408"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adbbc0f15600bd0598d397b92cdcc5af4ac81dda", "fields": {"nom_de_la_commune": "STE JULIE", "libell_d_acheminement": "STE JULIE", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01366"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6928f9374efa6e5a2b0d20958c4b7f46715e1d4", "fields": {"nom_de_la_commune": "SAUVERNY", "libell_d_acheminement": "SAUVERNY", "code_postal": "01220", "coordonnees_gps": [46.3657930813, 6.1147054957], "code_commune_insee": "01397"}, "geometry": {"type": "Point", "coordinates": [6.1147054957, 46.3657930813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1105b15d50dca3c5a8afbd7208403b9515f9000b", "fields": {"nom_de_la_commune": "SERVAS", "libell_d_acheminement": "SERVAS", "code_postal": "01960", "coordonnees_gps": [46.1542253866, 5.17526170568], "code_commune_insee": "01405"}, "geometry": {"type": "Point", "coordinates": [5.17526170568, 46.1542253866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072a4bfa29595121c0b3b614c5751a92a91bb3c9", "fields": {"nom_de_la_commune": "SEGNY", "libell_d_acheminement": "SEGNY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01399"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce53a5cf885391b13bb25a52c411d032f181395e", "fields": {"code_postal": "01200", "code_commune_insee": "01091", "libell_d_acheminement": "CHATILLON EN MICHAILLE", "ligne_5": "VOUVRAY", "nom_de_la_commune": "CHATILLON EN MICHAILLE", "coordonnees_gps": [46.1338706653, 5.81259483702]}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55ebb5b6782c085ea1d225b96161664ac9d1e580", "fields": {"code_postal": "01200", "code_commune_insee": "01091", "libell_d_acheminement": "CHATILLON EN MICHAILLE", "ligne_5": "OCHIAZ", "nom_de_la_commune": "CHATILLON EN MICHAILLE", "coordonnees_gps": [46.1338706653, 5.81259483702]}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac1548be91e94f29f470b0db607aa79004760f8", "fields": {"nom_de_la_commune": "LA CHAPELLE DU CHATELARD", "libell_d_acheminement": "LA CHAPELLE DU CHATELARD", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01085"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c444df3cc15717d49cb3e3f4af2b5eeebddc43", "fields": {"nom_de_la_commune": "CHATILLON EN MICHAILLE", "libell_d_acheminement": "CHATILLON EN MICHAILLE", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01091"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5ad1f18607ee4812d604765e21b9392c56e67d", "fields": {"nom_de_la_commune": "CHALLES LA MONTAGNE", "libell_d_acheminement": "CHALLES LA MONTAGNE", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01077"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eafbd0af0daf5833093251145ccfa3e21f84079", "fields": {"nom_de_la_commune": "CHAVEYRIAT", "libell_d_acheminement": "CHAVEYRIAT", "code_postal": "01660", "coordonnees_gps": [46.2212048437, 5.05767036024], "code_commune_insee": "01096"}, "geometry": {"type": "Point", "coordinates": [5.05767036024, 46.2212048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745f4c3625e288e64d26afafc1c7a8763827f5b7", "fields": {"nom_de_la_commune": "CEYZERIEU", "libell_d_acheminement": "CEYZERIEU", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01073"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9fdf550cbbfd0b95988f8517d6ef48ce732f0a", "fields": {"nom_de_la_commune": "CHALAMONT", "libell_d_acheminement": "CHALAMONT", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01074"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3849cac430e553b179a3e6b300e2d5e579909a5", "fields": {"nom_de_la_commune": "CEIGNES", "libell_d_acheminement": "CEIGNES", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01067"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9363ab677036d9f077cb251a274c0961ce5aa20d", "fields": {"nom_de_la_commune": "CHANAY", "libell_d_acheminement": "CHANAY", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01082"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6095482ae538bb689d869541667339f0c7f12365", "fields": {"nom_de_la_commune": "ST ANDRE SUR VIEUX JONC", "libell_d_acheminement": "ST ANDRE SUR VIEUX JONC", "code_postal": "01960", "coordonnees_gps": [46.1542253866, 5.17526170568], "code_commune_insee": "01336"}, "geometry": {"type": "Point", "coordinates": [5.17526170568, 46.1542253866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c04f090d7b10378122180e670da0e0a84acb97", "fields": {"nom_de_la_commune": "ST GERMAIN SUR RENON", "libell_d_acheminement": "ST GERMAIN SUR RENON", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01359"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a136e14c38beeab33ff5739e43a4846d53de9faf", "fields": {"nom_de_la_commune": "ST DIDIER D AUSSIAT", "libell_d_acheminement": "ST DIDIER D AUSSIAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01346"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e6ce22755e9271a99c0f68208cf390859c6e4c", "fields": {"nom_de_la_commune": "ST DENIS EN BUGEY", "libell_d_acheminement": "ST DENIS EN BUGEY", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01345"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f532c854b509d35c7d46753f41dd12e35ff0a4a", "fields": {"nom_de_la_commune": "ST ANDRE D HUIRIAT", "libell_d_acheminement": "ST ANDRE D HUIRIAT", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01334"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf80f41a0137e3f8c0286f5fe5bcf7e47fb96c53", "fields": {"nom_de_la_commune": "GROSLEE ST BENOIT", "libell_d_acheminement": "GROSLEE ST BENOIT", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01338"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e83c4479d2db4bfb431e398508b8a7594c8f4e9", "fields": {"nom_de_la_commune": "PREMEYZEL", "libell_d_acheminement": "PREMEYZEL", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01310"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da8f22397da9d6e53a33771dcbfa2361436fd30a", "fields": {"nom_de_la_commune": "POUILLAT", "libell_d_acheminement": "POUILLAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01309"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e39db57ca68bfdba2091392a208aff8efb58be", "fields": {"nom_de_la_commune": "ST CHAMP", "libell_d_acheminement": "ST CHAMP", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01341"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1836bda3e81bd3a8066ca9e2962996e270690bfc", "fields": {"nom_de_la_commune": "PRIAY", "libell_d_acheminement": "PRIAY", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01314"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3731f248509671a9b2894a463d1c4762c71c0903", "fields": {"code_postal": "01800", "code_commune_insee": "01450", "libell_d_acheminement": "VILLIEU LOYES MOLLON", "ligne_5": "LOYES", "nom_de_la_commune": "VILLIEU LOYES MOLLON", "coordonnees_gps": [45.8984701804, 5.16340257624]}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7fd9783ca8d850bbb073bc4e7d7449ecac651e", "fields": {"nom_de_la_commune": "VILLEMOTIER", "libell_d_acheminement": "VILLEMOTIER", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01445"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cf81c9b77c817e07f67a6bde911e7e0dc71d14", "fields": {"nom_de_la_commune": "VILLES", "libell_d_acheminement": "VILLES", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01448"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd69a22e117b659b7cf7316bdff2ca54ce7f97ef", "fields": {"nom_de_la_commune": "ACHERY", "libell_d_acheminement": "ACHERY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02002"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843c9f0bfcfd7c6dd8094cb46e01e171e5f61575", "fields": {"nom_de_la_commune": "AGNICOURT ET SECHELLES", "libell_d_acheminement": "AGNICOURT ET SECHELLES", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02004"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a6cd48b3f7958e6f2df43dc0e511f6e54495a3", "fields": {"nom_de_la_commune": "AULNOIS SOUS LAON", "libell_d_acheminement": "AULNOIS SOUS LAON", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02037"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c02c2830e11bd5e5187c8a38610538762b14ed8", "fields": {"nom_de_la_commune": "ANY MARTIN RIEUX", "libell_d_acheminement": "ANY MARTIN RIEUX", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02020"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebeb30d65b3bafa5614021a5bd1e6e46c7d53303", "fields": {"nom_de_la_commune": "ASSIS SUR SERRE", "libell_d_acheminement": "ASSIS SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02027"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aca8ff902888af57ea7e12218db8351559c65832", "fields": {"nom_de_la_commune": "AUBENTON", "libell_d_acheminement": "AUBENTON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02031"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d2f343d74038833c8c427e6c049dc0d2c7bbbc", "fields": {"nom_de_la_commune": "AIZELLES", "libell_d_acheminement": "AIZELLES", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02007"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658ecc34419d351499574817dced0951486ea856", "fields": {"nom_de_la_commune": "ARRANCY", "libell_d_acheminement": "ARRANCY", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02024"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e688702a207de01a96cf41b848680afff57488", "fields": {"nom_de_la_commune": "ATTILLY", "libell_d_acheminement": "ATTILLY", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02029"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee673d1d4148a6eb378faf8d890a08f513cd4039", "fields": {"code_postal": "06160", "code_commune_insee": "06004", "libell_d_acheminement": "ANTIBES", "ligne_5": "CAP D ANTIBES", "nom_de_la_commune": "ANTIBES", "coordonnees_gps": [43.5876536208, 7.10542360834]}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05442794dbc1fe174fc544099595123972cab98d", "fields": {"nom_de_la_commune": "ST PIERRE D ARGENCON", "libell_d_acheminement": "ST PIERRE D ARGENCON", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05154"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f5f5e8a1be6d51bde33870b6dba0a70e2f87ba", "fields": {"nom_de_la_commune": "LE SAUZE DU LAC", "libell_d_acheminement": "LE SAUZE DU LAC", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05163"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2175154c91995c3110a1896dd2a3e8901caa19", "fields": {"nom_de_la_commune": "VALLOUISE", "libell_d_acheminement": "VALLOUISE", "code_postal": "05290", "coordonnees_gps": [44.8269347148, 6.42358106998], "code_commune_insee": "05175"}, "geometry": {"type": "Point", "coordinates": [6.42358106998, 44.8269347148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a86b5307e3f14858056907efb1023ba70411d11", "fields": {"nom_de_la_commune": "BENDEJUN", "libell_d_acheminement": "BENDEJUN", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06014"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ab914879ab477ca6f7bb6510b22927e973c354", "fields": {"nom_de_la_commune": "SERRES", "libell_d_acheminement": "SERRES", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05166"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e705e2a161f8981a887dd7e2e80109efcbc3504", "fields": {"nom_de_la_commune": "VEYNES", "libell_d_acheminement": "VEYNES", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05179"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2c4e05d4dcaeb7cdf983908eb7d384a7feaed7", "fields": {"nom_de_la_commune": "THEUS", "libell_d_acheminement": "THEUS", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05171"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff833e99d76960387f4f50c32c58442dcf8bc2a", "fields": {"nom_de_la_commune": "ANDON", "libell_d_acheminement": "ANDON", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06003"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9422753def655dc8b2c0773dd9865299d49f00a2", "fields": {"nom_de_la_commune": "ST MARTIN D ENTRAUNES", "libell_d_acheminement": "ST MARTIN D ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06125"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465b9db47ae3b2ccba7151f47caa384ebd3e89be", "fields": {"nom_de_la_commune": "ST DALMAS LE SELVAGE", "libell_d_acheminement": "ST DALMAS LE SELVAGE", "code_postal": "06660", "coordonnees_gps": [44.2619230059, 6.89791152248], "code_commune_insee": "06119"}, "geometry": {"type": "Point", "coordinates": [6.89791152248, 44.2619230059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d814ea7ea0d9a633fe13a8793df5614a6102b610", "fields": {"nom_de_la_commune": "ST ETIENNE DE TINEE", "libell_d_acheminement": "ST ETIENNE DE TINEE", "code_postal": "06660", "coordonnees_gps": [44.2619230059, 6.89791152248], "code_commune_insee": "06120"}, "geometry": {"type": "Point", "coordinates": [6.89791152248, 44.2619230059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abca505a9473b8fd342b586ab53767a38c8989c7", "fields": {"nom_de_la_commune": "ST JEAN CAP FERRAT", "libell_d_acheminement": "ST JEAN CAP FERRAT", "code_postal": "06230", "coordonnees_gps": [43.7028977501, 7.3242506305], "code_commune_insee": "06121"}, "geometry": {"type": "Point", "coordinates": [7.3242506305, 43.7028977501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad773d100cdf4d053502d0f3429d176e5d27dec", "fields": {"nom_de_la_commune": "ST LAURENT DU VAR", "libell_d_acheminement": "ST LAURENT DU VAR", "code_postal": "06700", "coordonnees_gps": [43.6865692143, 7.18230458019], "code_commune_insee": "06123"}, "geometry": {"type": "Point", "coordinates": [7.18230458019, 43.6865692143]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4890a2826cfd1d2a9af9e12f2d3536a65b66e387", "fields": {"nom_de_la_commune": "ROQUESTERON", "libell_d_acheminement": "ROQUESTERON", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06106"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c145aae887670cece8494a1ebbfd5138824bd2", "fields": {"nom_de_la_commune": "RIGAUD", "libell_d_acheminement": "RIGAUD", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06101"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba0276075f24833fac8bd6c559666303766f424", "fields": {"nom_de_la_commune": "MARIE", "libell_d_acheminement": "MARIE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06080"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9798f5ab0f289e71ccd9c490643a6dd5a985f1", "fields": {"nom_de_la_commune": "LACOUGOTTE CADOUL", "libell_d_acheminement": "LACOUGOTTE CADOUL", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81126"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382db5710876755b6afd054743a21415ed647a4f", "fields": {"nom_de_la_commune": "LASGRAISSES", "libell_d_acheminement": "LASGRAISSES", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81138"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0d1d7b16960b8d7ba5355520c21dabf6d40ddd", "fields": {"nom_de_la_commune": "LAUTREC", "libell_d_acheminement": "LAUTREC", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81139"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca840c5bdd3a020dff80802c6e4f74a2d18de9c6", "fields": {"nom_de_la_commune": "LEMPAUT", "libell_d_acheminement": "LEMPAUT", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81142"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a268b843062286594b12b7723cff43b9859c27", "fields": {"nom_de_la_commune": "LESCOUT", "libell_d_acheminement": "LESCOUT", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81143"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805ab4b5a03fb606a4c835a98de282f71fc0961b", "fields": {"nom_de_la_commune": "LESCURE D ALBIGEOIS", "libell_d_acheminement": "LESCURE D ALBIGEOIS", "code_postal": "81380", "coordonnees_gps": [43.9654056637, 2.18193704982], "code_commune_insee": "81144"}, "geometry": {"type": "Point", "coordinates": [2.18193704982, 43.9654056637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f03a0404b91df419d8d0cc00129d0e7eaf1895", "fields": {"nom_de_la_commune": "MARSSAC SUR TARN", "libell_d_acheminement": "MARSSAC SUR TARN", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81156"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0d52173a3db6a9acc561789c62609fca3d5135", "fields": {"nom_de_la_commune": "LE MASNAU MASSUGUIES", "libell_d_acheminement": "LE MASNAU MASSUGUIES", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81158"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa48bf2ce82fd4e8676cf5a10c6572e9b6fdbb3", "fields": {"nom_de_la_commune": "MASSAC SERAN", "libell_d_acheminement": "MASSAC SERAN", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81159"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "346fa0d0e891bc8bd2801190ee0c365c2ef46e8b", "fields": {"nom_de_la_commune": "MISSECLE", "libell_d_acheminement": "MISSECLE", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81169"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fccf23287d49aeaa3984661986ee41a96078ca0", "fields": {"nom_de_la_commune": "MONESTIES", "libell_d_acheminement": "MONESTIES", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81170"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d399a9cc55dad4e5bd05e38bd65b0ab495d841d5", "fields": {"nom_de_la_commune": "MONTCABRIER", "libell_d_acheminement": "MONTCABRIER", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81173"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0dcadcd5402bcc18f7bff6ec2608cb179d4fc5", "fields": {"nom_de_la_commune": "MONTDRAGON", "libell_d_acheminement": "MONTDRAGON", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81174"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af083785644515d424770323e0a07fe8c5711613", "fields": {"nom_de_la_commune": "MONT ROC", "libell_d_acheminement": "MONT ROC", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81183"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec1753c30d7b14b5233b4286929f7828aab7389", "fields": {"nom_de_la_commune": "MONTROSIER", "libell_d_acheminement": "MONTROSIER", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81184"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3bdc8ec83e9ec01a0a98af9f6a5fb420a89a42", "fields": {"nom_de_la_commune": "MOULIN MAGE", "libell_d_acheminement": "MOULIN MAGE", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81188"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c677afe9f9acca404400c277f658cab1da8fdbb0", "fields": {"nom_de_la_commune": "MOUZENS", "libell_d_acheminement": "MOUZENS", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81189"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786ab836efb5702e90d39e9cdbf23dea1e513212", "fields": {"nom_de_la_commune": "MOUZIEYS TEULET", "libell_d_acheminement": "MOUZIEYS TEULET", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81190"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582369d84978052c1e61841d55084510ddf0c8a0", "fields": {"nom_de_la_commune": "NAGES", "libell_d_acheminement": "NAGES", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81193"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768bf4d32a314fa93484b559b6ccbfc18a43f867", "fields": {"nom_de_la_commune": "ORBAN", "libell_d_acheminement": "ORBAN", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81198"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7852820b69bae261110e2ccf88759111adeff69", "fields": {"nom_de_la_commune": "PALLEVILLE", "libell_d_acheminement": "PALLEVILLE", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81200"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81830ae76cc61f83e58c5283bc5e94305697667d", "fields": {"nom_de_la_commune": "PAULINET", "libell_d_acheminement": "PAULINET", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81203"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "071889029ef019710ecea380f491b1c3a42fe3b8", "fields": {"nom_de_la_commune": "PEYROLE", "libell_d_acheminement": "PEYROLE", "code_postal": "81310", "coordonnees_gps": [43.8652051061, 1.81061411386], "code_commune_insee": "81208"}, "geometry": {"type": "Point", "coordinates": [1.81061411386, 43.8652051061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bf79178a2efe127e0ff46e3c64d81c02087508", "fields": {"nom_de_la_commune": "PONT DE LARN", "libell_d_acheminement": "PONT DE LARN", "code_postal": "81660", "coordonnees_gps": [43.5285716347, 2.39739974245], "code_commune_insee": "81209"}, "geometry": {"type": "Point", "coordinates": [2.39739974245, 43.5285716347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fc86f2559e22ce6dd37ded6b27dece0666b3ad", "fields": {"nom_de_la_commune": "PRATVIEL", "libell_d_acheminement": "PRATVIEL", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81213"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e21c453ffc7809a0a1f59c18c1cbd9cc6fe674", "fields": {"nom_de_la_commune": "RAYSSAC", "libell_d_acheminement": "RAYSSAC", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81221"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b408bc8a81dcc751958b0f71826d89eaf67ce38", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81230"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9623e4d2fa2061ef73d0979849e902a16f3ddc13", "fields": {"nom_de_la_commune": "ROUSSAYROLLES", "libell_d_acheminement": "ROUSSAYROLLES", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81234"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b0f9268f2a72db371ded36fab427d985ae23ef", "fields": {"nom_de_la_commune": "ST AMANCET", "libell_d_acheminement": "ST AMANCET", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81237"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e14ce02d6715d9b1a6b6be6a64d04f5a0397a", "fields": {"nom_de_la_commune": "ST BENOIT DE CARMAUX", "libell_d_acheminement": "ST BENOIT DE CARMAUX", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81244"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a64a73f07dc9d38faddd8811b906efc1198bd80", "fields": {"code_postal": "81190", "code_commune_insee": "81245", "libell_d_acheminement": "ST CHRISTOPHE", "ligne_5": "NARTHOUX", "nom_de_la_commune": "ST CHRISTOPHE", "coordonnees_gps": [44.1239197891, 2.18707972996]}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2adc39c62e117c9c9c5f3437b858808fabb47e93", "fields": {"nom_de_la_commune": "ST JEAN DE MARCEL", "libell_d_acheminement": "ST JEAN DE MARCEL", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81254"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b5899aa92aa6c2216631a1ca6f20d70555888a", "fields": {"nom_de_la_commune": "ST JEAN DE VALS", "libell_d_acheminement": "ST JEAN DE VALS", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81256"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267630ce9df6ce919566fc590ee81f3f3dae904d", "fields": {"nom_de_la_commune": "ST JULIEN GAULENE", "libell_d_acheminement": "ST JULIEN GAULENE", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81259"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de038299e4f7d94652bd37421e557e5d11a561a", "fields": {"nom_de_la_commune": "ST PAUL CAP DE JOUX", "libell_d_acheminement": "ST PAUL CAP DE JOUX", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81266"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155a0f650335bb590f35f9f4380221fdb8aeec0a", "fields": {"nom_de_la_commune": "ST PIERRE DE TRIVISY", "libell_d_acheminement": "ST PIERRE DE TRIVISY", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81267"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03e201db7684c7448c9b1681c29311923c130e7", "fields": {"nom_de_la_commune": "ST SALVI DE CARCAVES", "libell_d_acheminement": "ST SALVI DE CARCAVES", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81268"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90985719fc17fe40647c9870d90904438718204c", "fields": {"nom_de_la_commune": "LE SEQUESTRE", "libell_d_acheminement": "LE SEQUESTRE", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81284"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5e3902eada37c2995df031980f7e01e31386fe", "fields": {"nom_de_la_commune": "SERVIES", "libell_d_acheminement": "SERVIES", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81286"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d670c9ce354b98ed62d4344a09efb4deebd32cd4", "fields": {"nom_de_la_commune": "TAIX", "libell_d_acheminement": "TAIX", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81291"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161faef38d87304f6c94bd60d300fa308eab590e", "fields": {"nom_de_la_commune": "TERRE CLAPIER", "libell_d_acheminement": "TERRE CLAPIER", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81296"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b2a42470970aaa089cb0414f204660999230f0", "fields": {"nom_de_la_commune": "VERDALLE", "libell_d_acheminement": "VERDALLE", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81312"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbfcb27bc78014eca3afcd4c77f4e789c73af72", "fields": {"nom_de_la_commune": "VILLEFRANCHE D ALBIGEOIS", "libell_d_acheminement": "VILLEFRANCHE D ALBIGEOIS", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81317"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13a6e22a40829dcdc8d456e9a0aaa5a1b4f37c9", "fields": {"nom_de_la_commune": "VILLENEUVE LES LAVAUR", "libell_d_acheminement": "VILLENEUVE LES LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81318"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3622b665576f8065099aa5bdebe540949bd98d63", "fields": {"nom_de_la_commune": "VILLENEUVE SUR VERE", "libell_d_acheminement": "VILLENEUVE SUR VERE", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81319"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860319ba89f7e90246b60d235c3a46cc126334fc", "fields": {"nom_de_la_commune": "AUVILLAR", "libell_d_acheminement": "AUVILLAR", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82008"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc153a7d6a0dc002e170fa54fa27885c7c6a34c5", "fields": {"nom_de_la_commune": "BEAUMONT DE LOMAGNE", "libell_d_acheminement": "BEAUMONT DE LOMAGNE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82013"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd915c38ea9ceb73baa160898aba582481bb7cf", "fields": {"nom_de_la_commune": "BOURG DE VISA", "libell_d_acheminement": "BOURG DE VISA", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82022"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0002a58ac993223c883a3743e4d3b8f025159f43", "fields": {"nom_de_la_commune": "BRASSAC", "libell_d_acheminement": "BRASSAC", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82024"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb8e7fdd72df69a73e26449fb00510ea9265939", "fields": {"nom_de_la_commune": "CASTELSAGRAT", "libell_d_acheminement": "CASTELSAGRAT", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82032"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238504f7ea437908257598a1bdc9f9890bf82b18", "fields": {"nom_de_la_commune": "CASTERA BOUZET", "libell_d_acheminement": "CASTERA BOUZET", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82034"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c6db3267a05af41caeb858a23f80a73ab96b82", "fields": {"nom_de_la_commune": "CAZES MONDENARD", "libell_d_acheminement": "CAZES MONDENARD", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82042"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fbc792c7be3bf61659025f0f9be6d0c2471e0e4", "fields": {"nom_de_la_commune": "COMBEROUGER", "libell_d_acheminement": "COMBEROUGER", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82043"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669b9b79564ce77191a8909a88fce22934ec2336", "fields": {"nom_de_la_commune": "DIEUPENTALE", "libell_d_acheminement": "DIEUPENTALE", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82048"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059d215fd0929b0c445bfe4cd5e428a5bcdae3db", "fields": {"nom_de_la_commune": "ESCATALENS", "libell_d_acheminement": "ESCATALENS", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82052"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b434a45c182746ed55113729572c60f715f4ff8", "fields": {"nom_de_la_commune": "FAUDOAS", "libell_d_acheminement": "FAUDOAS", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82059"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c36ae62a0289d1575240f26448dbca7306c155c", "fields": {"nom_de_la_commune": "GOAS", "libell_d_acheminement": "GOAS", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82071"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d01bede8cf4b235e6d33e660be42bb10ce6642d", "fields": {"nom_de_la_commune": "LABARTHE", "libell_d_acheminement": "LABARTHE", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82077"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbffaf3fb2b981bd84b1a94b50c70a4c00ae4ac0", "fields": {"nom_de_la_commune": "LARRAZET", "libell_d_acheminement": "LARRAZET", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82093"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffb8133504f8351621d6f98625287a5888afdb1", "fields": {"nom_de_la_commune": "MARIGNAC", "libell_d_acheminement": "MARIGNAC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82103"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7baf7c5a5c8e9b05c52642d02e8225ce71e7283d", "fields": {"nom_de_la_commune": "MAUMUSSON", "libell_d_acheminement": "MAUMUSSON", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82107"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe362df17701761c88238f9d58ec12b8b1beb8c8", "fields": {"nom_de_la_commune": "MIRAMONT DE QUERCY", "libell_d_acheminement": "MIRAMONT DE QUERCY", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82111"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39a23b440d90e834a275d8e311430719460195d", "fields": {"nom_de_la_commune": "MONTBARLA", "libell_d_acheminement": "MONTBARLA", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82122"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2dfe0be1ac55c513e31432624e40eb67441c85", "fields": {"nom_de_la_commune": "MONTESQUIEU", "libell_d_acheminement": "MONTESQUIEU", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82127"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d226706d86e26528ecc4fe7f3357c8c220e6e383", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82129"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed40066eedc5700a3dc5829b468316c3b3b04e1", "fields": {"nom_de_la_commune": "MOUILLAC", "libell_d_acheminement": "MOUILLAC", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82133"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a18b555249fc56153814dc2ecabca84ccd478a", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82152"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455fcf6b12ff2ec7446e2e871ecbcfc62163430d", "fields": {"nom_de_la_commune": "ST ANTONIN NOBLE VAL", "libell_d_acheminement": "ST ANTONIN NOBLE VAL", "code_postal": "82140", "coordonnees_gps": [44.152188201, 1.74194876605], "code_commune_insee": "82155"}, "geometry": {"type": "Point", "coordinates": [1.74194876605, 44.152188201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a583de0f02692e26bef00d484f7f4af75e04e58", "fields": {"nom_de_la_commune": "ST CIRICE", "libell_d_acheminement": "ST CIRICE", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82158"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a1169bd2cac31743ba334b58ba1025f5f8bbe4", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82160"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80653793e374eab6589fed6a02640f35f7998d2f", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA GRAVE", "libell_d_acheminement": "ST NICOLAS DE LA GRAVE", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82169"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00da3c91ffef3283299b8f10f6a34aac5695a942", "fields": {"nom_de_la_commune": "ST SARDOS", "libell_d_acheminement": "ST SARDOS", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82173"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1efdc2c84ce18c0d2f19927e043b947a450cf1b", "fields": {"nom_de_la_commune": "ST VINCENT D AUTEJAC", "libell_d_acheminement": "ST VINCENT D AUTEJAC", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82174"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e180a444c29e0746c429351f844c74e4670f16f", "fields": {"nom_de_la_commune": "ST VINCENT LESPINASSE", "libell_d_acheminement": "ST VINCENT LESPINASSE", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82175"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e071cf839ec1ee30e4270cde5aeac86f390bc5e", "fields": {"nom_de_la_commune": "VERDUN SUR GARONNE", "libell_d_acheminement": "VERDUN SUR GARONNE", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82190"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0b4a807cf6dace4b05c84d023c6e38c64c7ceb", "fields": {"nom_de_la_commune": "VILLEBRUMIER", "libell_d_acheminement": "VILLEBRUMIER", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82194"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6aec45e008abf677eac56b6a4ed402e10f977fb", "fields": {"nom_de_la_commune": "ARTIGNOSC SUR VERDON", "libell_d_acheminement": "ARTIGNOSC SUR VERDON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83005"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4ac5ec65f33817e6361a3d67338123c7e5001b", "fields": {"nom_de_la_commune": "BAGNOLS EN FORET", "libell_d_acheminement": "BAGNOLS EN FORET", "code_postal": "83600", "coordonnees_gps": [43.4958707206, 6.756116629], "code_commune_insee": "83008"}, "geometry": {"type": "Point", "coordinates": [6.756116629, 43.4958707206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6355db4e468dc0346fd6259d19a52f27ca612de0", "fields": {"nom_de_la_commune": "BARGEMON", "libell_d_acheminement": "BARGEMON", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83011"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3597eeeb339b44bb491d352f4161d94aba5c17", "fields": {"nom_de_la_commune": "BAUDINARD SUR VERDON", "libell_d_acheminement": "BAUDINARD SUR VERDON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83014"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70feb8cfa045611e4ed858dc4115a4040c46174", "fields": {"nom_de_la_commune": "CABASSE", "libell_d_acheminement": "CABASSE", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83026"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe08ba1b78ae7011f41dfa0ebda55aeba95dae1", "fields": {"nom_de_la_commune": "LE CANNET DES MAURES", "libell_d_acheminement": "LE CANNET DES MAURES", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83031"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5fae2539b236f3d089f24be72e58c487cecb5d", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "LE CAMP", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b395acd65a5f4f9a433772916809e731418986", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83037"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "897d78a9f0c5464861b4dbae8421b0f42a910c39", "fields": {"nom_de_la_commune": "CLAVIERS", "libell_d_acheminement": "CLAVIERS", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83041"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971c9b9efb8c30eb2dcbe71bee435275832007a1", "fields": {"nom_de_la_commune": "COGOLIN", "libell_d_acheminement": "COGOLIN", "code_postal": "83310", "coordonnees_gps": [43.248161575, 6.50847082602], "code_commune_insee": "83042"}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "352a240d65eff330e97d34b31b5588a1a53f15f8", "fields": {"nom_de_la_commune": "COMPS SUR ARTUBY", "libell_d_acheminement": "COMPS SUR ARTUBY", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83044"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d98a0e846bf27f5bca7814cbcda2bbc50f0a38", "fields": {"nom_de_la_commune": "LA CRAU", "libell_d_acheminement": "LA CRAU", "code_postal": "83260", "coordonnees_gps": [43.1635844264, 6.09277944177], "code_commune_insee": "83047"}, "geometry": {"type": "Point", "coordinates": [6.09277944177, 43.1635844264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06471bb94a15f7dfb16f57859033bea10586a9b1", "fields": {"nom_de_la_commune": "EVENOS", "libell_d_acheminement": "EVENOS", "code_postal": "83330", "coordonnees_gps": [43.2073445411, 5.81845184293], "code_commune_insee": "83053"}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5487af279102d4885fafbbc25870b9ba3b49b3d", "fields": {"nom_de_la_commune": "FAYENCE", "libell_d_acheminement": "FAYENCE", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83055"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95d93c8701b49dabdff0048137e3e3c15dffe56", "fields": {"nom_de_la_commune": "LA GARDE", "libell_d_acheminement": "LA GARDE", "code_postal": "83130", "coordonnees_gps": [43.1266498114, 6.01917093261], "code_commune_insee": "83062"}, "geometry": {"type": "Point", "coordinates": [6.01917093261, 43.1266498114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba343477010817feff6831d2107a5452cdc9d19", "fields": {"nom_de_la_commune": "HYERES", "libell_d_acheminement": "HYERES", "code_postal": "83400", "coordonnees_gps": [43.1018498571, 6.18925765161], "code_commune_insee": "83069"}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa40a3103e6e1fabc88c7ea5e22b2d016489c76f", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "AYGUADE CEINTURON", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa69c3a5d4a2b830c2824ba40f0f407297899436", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "LA CAPTE", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c609a33dd23b9a4f17da653a11c626790638ff63", "fields": {"nom_de_la_commune": "LA LONDE LES MAURES", "libell_d_acheminement": "LA LONDE LES MAURES", "code_postal": "83250", "coordonnees_gps": [43.1690007504, 6.24259863091], "code_commune_insee": "83071"}, "geometry": {"type": "Point", "coordinates": [6.24259863091, 43.1690007504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c42f84de69488d98e5e87c437448376e3099c9", "fields": {"nom_de_la_commune": "OLLIOULES", "libell_d_acheminement": "OLLIOULES", "code_postal": "83190", "coordonnees_gps": [43.1387347267, 5.85457210121], "code_commune_insee": "83090"}, "geometry": {"type": "Point", "coordinates": [5.85457210121, 43.1387347267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3cfccc5247c39ff6f8f8fec1d88314cd099caf7", "fields": {"nom_de_la_commune": "PIERREFEU DU VAR", "libell_d_acheminement": "PIERREFEU DU VAR", "code_postal": "83390", "coordonnees_gps": [43.2473941525, 6.13306231898], "code_commune_insee": "83091"}, "geometry": {"type": "Point", "coordinates": [6.13306231898, 43.2473941525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd488440a52217539a1c5ce4f9318e065a13aa84", "fields": {"nom_de_la_commune": "PUGET SUR ARGENS", "libell_d_acheminement": "PUGET SUR ARGENS", "code_postal": "83480", "coordonnees_gps": [43.4713940239, 6.6860602971], "code_commune_insee": "83099"}, "geometry": {"type": "Point", "coordinates": [6.6860602971, 43.4713940239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19007fdae827b87f1b9c2b9b095598475688137c", "fields": {"nom_de_la_commune": "ROCBARON", "libell_d_acheminement": "ROCBARON", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83106"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71640091100bf9cba6dbde06e6bc6b7f5cb518b4", "fields": {"nom_de_la_commune": "ROQUEBRUNE SUR ARGENS", "libell_d_acheminement": "ROQUEBRUNE SUR ARGENS", "code_postal": "83520", "coordonnees_gps": [43.4286195636, 6.65195663362], "code_commune_insee": "83107"}, "geometry": {"type": "Point", "coordinates": [6.65195663362, 43.4286195636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06324fb6f697b1a3abb0a0b3cdd3f793a4445306", "fields": {"nom_de_la_commune": "YZENGREMER", "libell_d_acheminement": "YZENGREMER", "code_postal": "80520", "coordonnees_gps": [50.0605501817, 1.51862547548], "code_commune_insee": "80834"}, "geometry": {"type": "Point", "coordinates": [1.51862547548, 50.0605501817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aea02beff26b12525e7b7f9cede072a51fa8e7a", "fields": {"nom_de_la_commune": "BELCASTEL", "libell_d_acheminement": "BELCASTEL", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81025"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff071832fa2dad4fac70b507943d8bc0b6b67d57", "fields": {"code_postal": "81430", "code_commune_insee": "81026", "libell_d_acheminement": "BELLEGARDE MARSAL", "ligne_5": "MARSAL", "nom_de_la_commune": "BELLEGARDE MARSAL", "coordonnees_gps": [43.9055720904, 2.35289359915]}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54ce069dbbd0b5053dfa9a21f796dbf07aaaf07", "fields": {"nom_de_la_commune": "BERLATS", "libell_d_acheminement": "BERLATS", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81028"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a328816676368d1e1067ff4c4164f972132295f", "fields": {"nom_de_la_commune": "BLAYE LES MINES", "libell_d_acheminement": "BLAYE LES MINES", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81033"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3fe55074d436649e9908a4cb1b3404b02459120", "fields": {"nom_de_la_commune": "CAMBOUNES", "libell_d_acheminement": "CAMBOUNES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81053"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bbe1679ea023d18af0528d1104387f4895c315", "fields": {"nom_de_la_commune": "CAMBOUNET SUR LE SOR", "libell_d_acheminement": "CAMBOUNET SUR LE SOR", "code_postal": "81580", "coordonnees_gps": [43.5600042132, 2.12607706604], "code_commune_insee": "81054"}, "geometry": {"type": "Point", "coordinates": [2.12607706604, 43.5600042132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb71fb95c9faf08ca079facbb250712ba44cff0", "fields": {"nom_de_la_commune": "LES CAMMAZES", "libell_d_acheminement": "LES CAMMAZES", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81055"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687f48be00e3a59f33643446f686416ffd6d7e18", "fields": {"nom_de_la_commune": "CAMPAGNAC", "libell_d_acheminement": "CAMPAGNAC", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81056"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aeeeadf7a25ce4db4c2e6f87605178e8b2e5d98", "fields": {"nom_de_la_commune": "CARBES", "libell_d_acheminement": "CARBES", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81058"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2b8c153942a08a49b2f41822342f8db076ad2e", "fields": {"nom_de_la_commune": "CASTELNAU DE MONTMIRAL", "libell_d_acheminement": "CASTELNAU DE MONTMIRAL", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81064"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6deed41e7ce6a90d6fd71f6c473e879a1471881", "fields": {"nom_de_la_commune": "CRESPINET", "libell_d_acheminement": "CRESPINET", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81073"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0dc00ad70d2fec747b64d1acc91e6c48044c197", "fields": {"nom_de_la_commune": "CURVALLE", "libell_d_acheminement": "CURVALLE", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81077"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0e0e48a66636381aa52657f45a0b40090535d9", "fields": {"nom_de_la_commune": "FAYSSAC", "libell_d_acheminement": "FAYSSAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81087"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5066d20e9a0a0d5b4cd493c6efa0f2132786ca9b", "fields": {"nom_de_la_commune": "FAUCH", "libell_d_acheminement": "FAUCH", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81088"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a5caefd33d4c3149ffa5d39c4da24ad396bd26", "fields": {"nom_de_la_commune": "FIAC", "libell_d_acheminement": "FIAC", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81092"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2f14f4b5039b597ba0f0d2297d05d4c2ba3be5", "fields": {"nom_de_la_commune": "GAILLAC", "libell_d_acheminement": "GAILLAC", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81099"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5a9667cc9102f3bce36e9d6c6ff2d8c6fd849e", "fields": {"nom_de_la_commune": "GARREVAQUES", "libell_d_acheminement": "GARREVAQUES", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81100"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ffacce5d2725ade863b9f63c6d6d1c318c65f66", "fields": {"nom_de_la_commune": "ITZAC", "libell_d_acheminement": "ITZAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81108"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "affcafc2a506291f4876043da801f1fbbe51052f", "fields": {"nom_de_la_commune": "JOUQUEVIEL", "libell_d_acheminement": "JOUQUEVIEL", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81110"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c051c0513862cd418d5d9ce3dc6020bd238555f", "fields": {"nom_de_la_commune": "LABASTIDE ROUAIROUX", "libell_d_acheminement": "LABASTIDE ROUAIROUX", "code_postal": "81270", "coordonnees_gps": [43.4832244347, 2.63608077298], "code_commune_insee": "81115"}, "geometry": {"type": "Point", "coordinates": [2.63608077298, 43.4832244347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07341a0c9b059d0e3c9db9e282442dc88de2cb8", "fields": {"nom_de_la_commune": "LABOUTARIE", "libell_d_acheminement": "LABOUTARIE", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81119"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f28201c2db902f12d9f9c1329f7f77430b858f66", "fields": {"nom_de_la_commune": "LACAUNE", "libell_d_acheminement": "LACAUNE", "code_postal": "81230", "coordonnees_gps": [43.6972916552, 2.68834406731], "code_commune_insee": "81124"}, "geometry": {"type": "Point", "coordinates": [2.68834406731, 43.6972916552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d6f91bc9126420d4edaadf06b181ed764b1e57", "fields": {"nom_de_la_commune": "LAGARDIOLLE", "libell_d_acheminement": "LAGARDIOLLE", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81129"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7935a5c7608a8a99dfafe7f4c719d7cf9f9d32bd", "fields": {"nom_de_la_commune": "LAGRAVE", "libell_d_acheminement": "LAGRAVE", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81131"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f354ad1f9cafe6a3c6573a40de8bf30a245128a7", "fields": {"nom_de_la_commune": "GUITALENS L ALBAREDE", "libell_d_acheminement": "GUITALENS L ALBAREDE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81132"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b81022aca495e599859552dbdcb95e436815eb", "fields": {"nom_de_la_commune": "LASFAILLADES", "libell_d_acheminement": "LASFAILLADES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81137"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964ea6d3bbdc91fdb102602a8ccf8c330ae5aab9", "fields": {"nom_de_la_commune": "LAVAUR", "libell_d_acheminement": "LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81140"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ec70a1d258f3566e071aa124eddc13b01a9ada", "fields": {"nom_de_la_commune": "LISLE SUR TARN", "libell_d_acheminement": "LISLE SUR TARN", "code_postal": "81310", "coordonnees_gps": [43.8652051061, 1.81061411386], "code_commune_insee": "81145"}, "geometry": {"type": "Point", "coordinates": [1.81061411386, 43.8652051061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8c2ae0c92813f7c67fa26cb3406e0d1d7766cf", "fields": {"nom_de_la_commune": "MAILHOC", "libell_d_acheminement": "MAILHOC", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81152"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4950028a12d21200d1c09f91518acd626f62c4b8", "fields": {"nom_de_la_commune": "MASSAGUEL", "libell_d_acheminement": "MASSAGUEL", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81160"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52d20fd73475492cf5a6769dfebc35c3ccf59968", "fields": {"nom_de_la_commune": "MILHAVET", "libell_d_acheminement": "MILHAVET", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81166"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d050a2b87748de9fb3a9b141b0507b81b93e918", "fields": {"nom_de_la_commune": "MONTPINIER", "libell_d_acheminement": "MONTPINIER", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81181"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc43d720507cd8b402d2bdc95a4b85c9cf2fdfa", "fields": {"nom_de_la_commune": "POUDIS", "libell_d_acheminement": "POUDIS", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81210"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54b5abb7e129efec7ca638f4420af36537f1d69c", "fields": {"nom_de_la_commune": "PUECHOURSI", "libell_d_acheminement": "PUECHOURSI", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81214"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83f4b9a75058b1f4890fea272789b483005e181", "fields": {"nom_de_la_commune": "RABASTENS", "libell_d_acheminement": "RABASTENS", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81220"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d326a1aea73ebcf79077a72bc47dcb87422a9d", "fields": {"nom_de_la_commune": "ROQUEMAURE", "libell_d_acheminement": "ROQUEMAURE", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81228"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d86ba61a9eb1f8c96d5d4ed4bc5496beac0124", "fields": {"nom_de_la_commune": "ROUMEGOUX", "libell_d_acheminement": "ROUMEGOUX", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81233"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf964610dd5b556ab5f2568e83d1555aafa0bd1c", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81236"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e531982da203ce19db094ce764a9ef187faee6", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81252"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f286d789252bb9c181e7ef21825cc9a7464f3402", "fields": {"nom_de_la_commune": "ST GREGOIRE", "libell_d_acheminement": "ST GREGOIRE", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81253"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3da8646d7148e2c4de0fd41de8c1c488beb5c4", "fields": {"nom_de_la_commune": "ST JULIEN DU PUY", "libell_d_acheminement": "ST JULIEN DU PUY", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81258"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca1033855b39b5ed0305f19217269a656e946ccf", "fields": {"nom_de_la_commune": "ST MICHEL DE VAX", "libell_d_acheminement": "ST MICHEL DE VAX", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81265"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cfd65bda20a4ea9f24fbb719900e1d5e85e26d", "fields": {"nom_de_la_commune": "SAIX", "libell_d_acheminement": "SAIX", "code_postal": "81710", "coordonnees_gps": [43.5760032199, 2.19080149351], "code_commune_insee": "81273"}, "geometry": {"type": "Point", "coordinates": [2.19080149351, 43.5760032199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed720cbd0d05b772bc201bd467260f2b6245b0e", "fields": {"nom_de_la_commune": "LA SAUZIERE ST JEAN", "libell_d_acheminement": "LA SAUZIERE ST JEAN", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81279"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4c781c1c11d4324d712c0bca82ed48af868ba4", "fields": {"nom_de_la_commune": "LE SEGUR", "libell_d_acheminement": "LE SEGUR", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81280"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab4f61471673f159a92bd0c2ad64b8b18832741", "fields": {"nom_de_la_commune": "SIEURAC", "libell_d_acheminement": "SIEURAC", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81287"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37da6ff7f802f5acd51cb3f75426cf274b0d50e0", "fields": {"nom_de_la_commune": "SOUEL", "libell_d_acheminement": "SOUEL", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81290"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812115337bd406faf390e38ae2fecf5f6fc7e7de", "fields": {"nom_de_la_commune": "TAURIAC", "libell_d_acheminement": "TAURIAC", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81293"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2d216c21769363b0ae77d551146001fd811077", "fields": {"nom_de_la_commune": "TEILLET", "libell_d_acheminement": "TEILLET", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81295"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce4fd3c79f744bdbc379c6a9d87e47e289ed917", "fields": {"nom_de_la_commune": "TREBAN", "libell_d_acheminement": "TREBAN", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81302"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d240caf708911614a2a4de76adaee7e4f3b5ec14", "fields": {"nom_de_la_commune": "TREVIEN", "libell_d_acheminement": "TREVIEN", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81304"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78d1867d21f3c45ee6f12af1dae9776e5044821", "fields": {"nom_de_la_commune": "VABRE", "libell_d_acheminement": "VABRE", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81305"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b9ceb9fa4694d7453ee12e6163af0008ab85b5", "fields": {"nom_de_la_commune": "VALENCE D ALBIGEOIS", "libell_d_acheminement": "VALENCE D ALBIGEOIS", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81308"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f11e110a9820403835f5db54e58fdf200f7253", "fields": {"nom_de_la_commune": "AUCAMVILLE", "libell_d_acheminement": "AUCAMVILLE", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82005"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509c5ff31c19d8eb427b0cd2200d33c72bcaa01d", "fields": {"nom_de_la_commune": "BELVEZE", "libell_d_acheminement": "BELVEZE", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82016"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44959eb64a9291d1bf197031d58767be1622b840", "fields": {"nom_de_la_commune": "BESSENS", "libell_d_acheminement": "BESSENS", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82017"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e880a0a8134d025f9c566d1873644ff40dd9c9ba", "fields": {"nom_de_la_commune": "BIOULE", "libell_d_acheminement": "BIOULE", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82018"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0424eaa26120f98f90d0b4e28c3074fdd5b2704", "fields": {"nom_de_la_commune": "CASTELSARRASIN", "libell_d_acheminement": "CASTELSARRASIN", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82033"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bba82683bf7b720c3da930fc8d4c66538320a141", "fields": {"nom_de_la_commune": "LE CAUSE", "libell_d_acheminement": "LE CAUSE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82036"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce8257bee302e522b81531a7df59851ab4edd11", "fields": {"nom_de_la_commune": "DONZAC", "libell_d_acheminement": "DONZAC", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82049"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f313331479554305bf7576cdd0c53ee94e7455", "fields": {"nom_de_la_commune": "ESPALAIS", "libell_d_acheminement": "ESPALAIS", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82054"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e83e93210db79a8d8a5dc836caebc14d8dce116e", "fields": {"nom_de_la_commune": "GIMAT", "libell_d_acheminement": "GIMAT", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82068"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54c197d1014837d14419fdcbaac61688b5c2a56", "fields": {"nom_de_la_commune": "GINALS", "libell_d_acheminement": "GINALS", "code_postal": "82330", "coordonnees_gps": [44.1880105438, 1.88037084955], "code_commune_insee": "82069"}, "geometry": {"type": "Point", "coordinates": [1.88037084955, 44.1880105438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c9a3e948532d3d89543429dca646b634e195e2", "fields": {"nom_de_la_commune": "GOUDOURVILLE", "libell_d_acheminement": "GOUDOURVILLE", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82073"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7a9c95323920f705ca58f4718e54cfa3f0e805", "fields": {"nom_de_la_commune": "L HONOR DE COS", "libell_d_acheminement": "L HONOR DE COS", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82076"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f937a3893526a7b7a89b7c3d02ed6c0a0050007c", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LACHAPELLE", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82083"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b2fc2488b32a3228fc76d0231d13f17758f0fa", "fields": {"nom_de_la_commune": "LAGUEPIE", "libell_d_acheminement": "LAGUEPIE", "code_postal": "82250", "coordonnees_gps": [44.1628817298, 1.95843160329], "code_commune_insee": "82088"}, "geometry": {"type": "Point", "coordinates": [1.95843160329, 44.1628817298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7202724278871602ffd8a2a1b457e3f0c0118553", "fields": {"nom_de_la_commune": "LAMOTHE CAPDEVILLE", "libell_d_acheminement": "LAMOTHE CAPDEVILLE", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82090"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca26c69df409402afdc213eb65d762b2fe1cf8a", "fields": {"nom_de_la_commune": "LAVAURETTE", "libell_d_acheminement": "LAVAURETTE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82095"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5575b1b680a567cff0a323c1c71b1bc9a092fa20", "fields": {"nom_de_la_commune": "LA VILLE DIEU DU TEMPLE", "libell_d_acheminement": "LA VILLE DIEU DU TEMPLE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82096"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf52f6f04976ec3b5991b8f5b3ba4130b81f9355", "fields": {"nom_de_la_commune": "LEOJAC", "libell_d_acheminement": "LEOJAC", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82098"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d66c2e08dce583b5ef4d2b99746f9f748a20cffa", "fields": {"nom_de_la_commune": "LIZAC", "libell_d_acheminement": "LIZAC", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82099"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35366cf90abd48b7adcd6a878fcc7254cd9f9ada", "fields": {"nom_de_la_commune": "LOZE", "libell_d_acheminement": "LOZE", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82100"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b920bf9c12538853a75ac46620cc5d212cf73bcc", "fields": {"nom_de_la_commune": "MALAUSE", "libell_d_acheminement": "MALAUSE", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82101"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef1d815112f453958d130d22e5f726dac08b38b", "fields": {"nom_de_la_commune": "MANSONVILLE", "libell_d_acheminement": "MANSONVILLE", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82102"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df04e5f0a48aec490d8e8937f2c28dae0e7a4f68", "fields": {"nom_de_la_commune": "MAS GRENIER", "libell_d_acheminement": "MAS GRENIER", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82105"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30deb91b26e920392d4d7e0540ab2a7a4d18051c", "fields": {"nom_de_la_commune": "MEAUZAC", "libell_d_acheminement": "MEAUZAC", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82108"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b762076d88d99b4684bbe39116a12dd3f1774b0", "fields": {"nom_de_la_commune": "MERLES", "libell_d_acheminement": "MERLES", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82109"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8595a99fdabf96c5d8182a7fa3af65940eacb0eb", "fields": {"nom_de_la_commune": "MONCLAR DE QUERCY", "libell_d_acheminement": "MONCLAR DE QUERCY", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82115"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbc8754f5f5dd8a311d53c6fcbda05222640e4e", "fields": {"nom_de_la_commune": "MONTAGUDET", "libell_d_acheminement": "MONTAGUDET", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82116"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736837810de4386d94b26f3ab8514ce77517353f", "fields": {"nom_de_la_commune": "MONTAIN", "libell_d_acheminement": "MONTAIN", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82118"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e0748f93205b31365560258856216ee3f849aa", "fields": {"nom_de_la_commune": "MONTASTRUC", "libell_d_acheminement": "MONTASTRUC", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82120"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e739b5415264d1d9c8c4cd2e3286a1e2f100483", "fields": {"nom_de_la_commune": "MONTBARTIER", "libell_d_acheminement": "MONTBARTIER", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82123"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94bf3e4fa866333899d71755a657555712d926f", "fields": {"nom_de_la_commune": "NEGREPELISSE", "libell_d_acheminement": "NEGREPELISSE", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82134"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebbd7ceacc73c556c5258124e01bad101df0067", "fields": {"nom_de_la_commune": "NOHIC", "libell_d_acheminement": "NOHIC", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82135"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1599ad43841ac63eb89c2c55412430d4cefa8b18", "fields": {"nom_de_la_commune": "PUYCORNET", "libell_d_acheminement": "PUYCORNET", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82144"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac2e166b881c7d05df13e9616b7cb65615390c9", "fields": {"nom_de_la_commune": "PUYLAGARDE", "libell_d_acheminement": "PUYLAGARDE", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82147"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9192ab2d81294deda6ec879c3c9b00a52d312f52", "fields": {"nom_de_la_commune": "PUYLAROQUE", "libell_d_acheminement": "PUYLAROQUE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82148"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b2735b5c801f583ddf35fd9e7799fbf3847b3f", "fields": {"nom_de_la_commune": "ST JEAN DU BOUZET", "libell_d_acheminement": "ST JEAN DU BOUZET", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82163"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260d38955ee4f4aa94fa80f2aca5c922d9279779", "fields": {"nom_de_la_commune": "STE JULIETTE", "libell_d_acheminement": "STE JULIETTE", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82164"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2596ee5f5fccc0a0e0d71018c0bf2ae5ae050d5", "fields": {"nom_de_la_commune": "TOUFFAILLES", "libell_d_acheminement": "TOUFFAILLES", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82182"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad60574c58fe3616481db2822fee35b18f5dd483", "fields": {"nom_de_la_commune": "TREJOULS", "libell_d_acheminement": "TREJOULS", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82183"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c8ded9bf38dd85fb435052d787530c78c7ab54", "fields": {"nom_de_la_commune": "VALENCE", "libell_d_acheminement": "VALENCE D AGEN", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82186"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e8aec46a441022d72c24f02a698214c94822ee", "fields": {"nom_de_la_commune": "VAREN", "libell_d_acheminement": "VAREN", "code_postal": "82330", "coordonnees_gps": [44.1880105438, 1.88037084955], "code_commune_insee": "82187"}, "geometry": {"type": "Point", "coordinates": [1.88037084955, 44.1880105438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3a252d078f134d1ea924bb0fab2204d635eaf6", "fields": {"nom_de_la_commune": "VAZERAC", "libell_d_acheminement": "VAZERAC", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82189"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6658b992b676e47e35a07cc627c5c445e8046320", "fields": {"nom_de_la_commune": "VERFEIL", "libell_d_acheminement": "VERFEIL SUR SEYE", "code_postal": "82330", "coordonnees_gps": [44.1880105438, 1.88037084955], "code_commune_insee": "82191"}, "geometry": {"type": "Point", "coordinates": [1.88037084955, 44.1880105438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97615c187607b946cd9c20dd57959e2d511e6e52", "fields": {"nom_de_la_commune": "VIGUERON", "libell_d_acheminement": "VIGUERON", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82193"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f0b2698ca9ae7d61a97a2cd8ac30747a4d707a4", "fields": {"nom_de_la_commune": "AUPS", "libell_d_acheminement": "AUPS", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83007"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc10b7069e6312c78da17af0c881ff8b2283fd7", "fields": {"nom_de_la_commune": "BARJOLS", "libell_d_acheminement": "BARJOLS", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83012"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38471610c119a80414709efa0e2e6f7c8dc4f3eb", "fields": {"nom_de_la_commune": "NOUANS", "libell_d_acheminement": "NOUANS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72222"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a500d84e1aa4e2ddee6d12e7084d2f689646f1b8", "fields": {"nom_de_la_commune": "PANON", "libell_d_acheminement": "PANON", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72227"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9fb605e83632d3307996ac8fcbf26e0e26924d", "fields": {"nom_de_la_commune": "PERAY", "libell_d_acheminement": "PERAY", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72233"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c20a4749b815afb3840d78d3dc22ce94644013", "fields": {"nom_de_la_commune": "PIZIEUX", "libell_d_acheminement": "PIZIEUX", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72238"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d865f929c795209319f58f483e27960fe58cba", "fields": {"nom_de_la_commune": "MONTFORT LE GESNOIS", "libell_d_acheminement": "MONTFORT LE GESNOIS", "code_postal": "72450", "coordonnees_gps": [48.0737249038, 0.408649166982], "code_commune_insee": "72241"}, "geometry": {"type": "Point", "coordinates": [0.408649166982, 48.0737249038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b87e656e2a572f2f974c94ea317c54a14051eb", "fields": {"nom_de_la_commune": "PREVELLES", "libell_d_acheminement": "PREVELLES", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72246"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df6d40958e9c4ebbb6fb068902fe18be1fd3c02c", "fields": {"nom_de_la_commune": "PRUILLE LE CHETIF", "libell_d_acheminement": "PRUILLE LE CHETIF", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72247"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514ff6b4274dc8b0bfa8fa4eedd1811644d5933f", "fields": {"nom_de_la_commune": "ROEZE SUR SARTHE", "libell_d_acheminement": "ROEZE SUR SARTHE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72253"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c1d6d79343e93b46485f410b0d90b5069a287d2", "fields": {"nom_de_la_commune": "RUAUDIN", "libell_d_acheminement": "RUAUDIN", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72260"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05211d5e19bafcaa7127038540745e232d43708", "fields": {"nom_de_la_commune": "RUILLE EN CHAMPAGNE", "libell_d_acheminement": "RUILLE EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72261"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5641a6f9c4f0521517a9d4ad34666f0b0cbc28d7", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN CHAMPAGNE", "libell_d_acheminement": "ST CHRISTOPHE EN CHAMPAGNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72274"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd01e1542422a6c6cb9a856f8c40f93c82453d3", "fields": {"nom_de_la_commune": "ST GEORGES DU ROSAY", "libell_d_acheminement": "ST GEORGES DU ROSAY", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72281"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed44c32850f749b661ba6587c70b8955a87dc6c", "fields": {"nom_de_la_commune": "ST GERMAIN D ARCE", "libell_d_acheminement": "ST GERMAIN D ARCE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72283"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47d69d661f1eb2af54d2495a5fee7a1538d7515", "fields": {"nom_de_la_commune": "ST GERMAIN SUR SARTHE", "libell_d_acheminement": "ST GERMAIN SUR SARTHE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72284"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e011cf19bc744c18bae62ff0fa9a1d0166b8bbb", "fields": {"nom_de_la_commune": "ST MARCEAU", "libell_d_acheminement": "ST MARCEAU", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72297"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be718fba740da2f221565766621468941c11a31", "fields": {"nom_de_la_commune": "ST MARS DE LOCQUENAY", "libell_d_acheminement": "ST MARS DE LOCQUENAY", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72298"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f591b712d1f14629a25009469c055c160e38f22", "fields": {"nom_de_la_commune": "ST MARS D OUTILLE", "libell_d_acheminement": "ST MARS D OUTILLE", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72299"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d75bf9e512070241a0381986007c33dbfcd456", "fields": {"nom_de_la_commune": "ST MICHEL DE CHAVAIGNES", "libell_d_acheminement": "ST MICHEL DE CHAVAIGNES", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72303"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3b5eea7ac8b42d3fba90579ff3d54c8c1dc49d", "fields": {"nom_de_la_commune": "ST OUEN EN CHAMPAGNE", "libell_d_acheminement": "ST OUEN EN CHAMPAGNE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72307"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49df1d06f266bc240859d268415483372332bd53", "fields": {"nom_de_la_commune": "ST PIERRE DES ORMES", "libell_d_acheminement": "ST PIERRE DES ORMES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72313"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c395423e2ee3e9d70a95a50f062af2e2aba8303", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72320"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e826376c0858456e74a1817fe843be238b4ee7", "fields": {"nom_de_la_commune": "ST VINCENT DU LOROUER", "libell_d_acheminement": "ST VINCENT DU LOROUER", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72325"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a18a529138d86eb7f2af7dc43c8886721f8135", "fields": {"nom_de_la_commune": "SAVIGNE L EVEQUE", "libell_d_acheminement": "SAVIGNE L EVEQUE", "code_postal": "72460", "coordonnees_gps": [48.0865226783, 0.31265862637], "code_commune_insee": "72329"}, "geometry": {"type": "Point", "coordinates": [0.31265862637, 48.0865226783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b36181f6ef40bc5648eea1e60673705c21f373", "fields": {"nom_de_la_commune": "SOUGE LE GANELON", "libell_d_acheminement": "SOUGE LE GANELON", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72337"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bbaf5c8cfe2fe9aca448cc72194ea5084a4ffd", "fields": {"nom_de_la_commune": "SOUVIGNE SUR SARTHE", "libell_d_acheminement": "SOUVIGNE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72343"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a14461f7fb1977b8619a9bc386f0658c4d3052", "fields": {"nom_de_la_commune": "TASSILLE", "libell_d_acheminement": "TASSILLE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72348"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b211dbcef39e99239b5cd2e7e5b924195b343cb", "fields": {"nom_de_la_commune": "TENNIE", "libell_d_acheminement": "TENNIE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72351"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360f2fb6a5415f80a8be59953bb996c8007169a0", "fields": {"nom_de_la_commune": "THOREE LES PINS", "libell_d_acheminement": "THOREE LES PINS", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72357"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97bc33f4eede701b4127d3999735fd9220a5eb71", "fields": {"nom_de_la_commune": "TUFFE VAL DE LA CHERONNE", "libell_d_acheminement": "TUFFE VAL DE LA CHERONNE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72363"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eff731870f8f8a0c76e39d6ed46f4ab631deba8", "fields": {"nom_de_la_commune": "VAAS", "libell_d_acheminement": "VAAS", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72364"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90752b51d5e994555a9105919b9f91a1ae90d11", "fields": {"nom_de_la_commune": "VEZOT", "libell_d_acheminement": "VEZOT", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72372"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5bec1804246e79720fdde52637497e44bc8d57", "fields": {"nom_de_la_commune": "VILLAINES LA CARELLE", "libell_d_acheminement": "VILLAINES LA CARELLE", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72374"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20968de1a5931f7baa6ac99e5b59c350d1aeff6f", "fields": {"nom_de_la_commune": "VOUVRAY SUR LOIR", "libell_d_acheminement": "VOUVRAY SUR LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72384"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988406a25ba46aa159600372d7782000e7d7cd78", "fields": {"code_postal": "72500", "code_commune_insee": "72384", "libell_d_acheminement": "VOUVRAY SUR LOIR", "ligne_5": "COEMONT", "nom_de_la_commune": "VOUVRAY SUR LOIR", "coordonnees_gps": [47.6976279722, 0.40117269936]}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a80c799092d3eaf903c1f5df1e090f31479497c2", "fields": {"nom_de_la_commune": "AIGUEBELETTE LE LAC", "libell_d_acheminement": "AIGUEBELETTE LE LAC", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73001"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29482dba4de2cd51ed9b005eef3ebd917354609b", "fields": {"nom_de_la_commune": "AIGUEBELLE", "libell_d_acheminement": "AIGUEBELLE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73002"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f56bb61865c2f7054efd1ea20972917c173f91", "fields": {"nom_de_la_commune": "AIGUEBLANCHE", "libell_d_acheminement": "AIGUEBLANCHE", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73003"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079482d5b6027d2a27884bf1e3d3af4344be3627", "fields": {"nom_de_la_commune": "AILLON LE JEUNE", "libell_d_acheminement": "AILLON LE JEUNE", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73004"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df85045e2af3d57485807cd7dd286870848a820", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "VILLETTE", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694e496b5129bc7d74e862391ada8682c59a6a7f", "fields": {"nom_de_la_commune": "AIX LES BAINS", "libell_d_acheminement": "AIX LES BAINS", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73008"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c20b9a5fd1fec3ac39cfbe26a8468122208d38b", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ANSIGNY", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "237729ad054cf008bbf2237f25b136ec87239c61", "fields": {"nom_de_la_commune": "ALBERTVILLE", "libell_d_acheminement": "ALBERTVILLE", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73011"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dca2ca8a9e47c1ffbff200f8ca33fee7d4d796", "fields": {"nom_de_la_commune": "ALBIEZ LE JEUNE", "libell_d_acheminement": "ALBIEZ LE JEUNE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73012"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "653041450ed04940477b353560ac1451e3340237", "fields": {"code_postal": "73550", "code_commune_insee": "73015", "libell_d_acheminement": "LES ALLUES", "ligne_5": "MERIBEL LES ALLUES", "nom_de_la_commune": "LES ALLUES", "coordonnees_gps": [45.3696826174, 6.58760256597]}, "geometry": {"type": "Point", "coordinates": [6.58760256597, 45.3696826174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce261141810ca1e6cd5f946f1e9dffb30f4adbe", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73017"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f114282525900de2580be51530bdb861355f6aea", "fields": {"nom_de_la_commune": "ARGENTINE", "libell_d_acheminement": "ARGENTINE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73019"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a937ac957ed3e1427e24d7cf8fae469e9fd74c", "fields": {"nom_de_la_commune": "ARVILLARD", "libell_d_acheminement": "ARVILLARD", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73021"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e036f903f0a7a898c62a6405a8ed9b565553821", "fields": {"nom_de_la_commune": "AYN", "libell_d_acheminement": "AYN", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73027"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca10f070d836256cee09752dbce0f71b85961d68", "fields": {"nom_de_la_commune": "BASSENS", "libell_d_acheminement": "BASSENS", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73031"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fecb6cee41a82b52fd5159dc8987b1dd68d7ea1c", "fields": {"nom_de_la_commune": "BOURGET EN HUILE", "libell_d_acheminement": "BOURGET EN HUILE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73052"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c48a78f21db6a919ac46f8798c68ff73ffad71b", "fields": {"nom_de_la_commune": "BRIDES LES BAINS", "libell_d_acheminement": "BRIDES LES BAINS", "code_postal": "73570", "coordonnees_gps": [45.4538723348, 6.56920300077], "code_commune_insee": "73057"}, "geometry": {"type": "Point", "coordinates": [6.56920300077, 45.4538723348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04e3d4f93c4cd206a0c3e35a54633d0b65d1c0d", "fields": {"nom_de_la_commune": "BRISON ST INNOCENT", "libell_d_acheminement": "BRISON ST INNOCENT", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73059"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab2b6064d85497ed581fea4d5dd4ff12ecfcc3b", "fields": {"nom_de_la_commune": "CESARCHES", "libell_d_acheminement": "CESARCHES", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73061"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b52551d917e15c168fd9af795051702be63141", "fields": {"nom_de_la_commune": "CHAMBERY", "libell_d_acheminement": "CHAMBERY", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73065"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f34e6f93fcf575de11d8f09970b1b68e5b0277f", "fields": {"nom_de_la_commune": "LES CHAPELLES", "libell_d_acheminement": "LES CHAPELLES", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73077"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa34bf93b6cfe75b4ce7f6b72a9215cff0cc5c0", "fields": {"nom_de_la_commune": "LES CHAVANNES EN MAURIENNE", "libell_d_acheminement": "LES CHAVANNES EN MAURIENNE", "code_postal": "73660", "coordonnees_gps": [45.3946853407, 6.25313370974], "code_commune_insee": "73083"}, "geometry": {"type": "Point", "coordinates": [6.25313370974, 45.3946853407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c5fb5067974ecceb6334e51aa40bd1db4bc583", "fields": {"nom_de_la_commune": "COISE ST JEAN PIED GAUTHIER", "libell_d_acheminement": "COISE ST JEAN PIED GAUTHIER", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73089"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8881d6b5468aba36f0b69b91a288184f49a37d1", "fields": {"nom_de_la_commune": "LES DESERTS", "libell_d_acheminement": "LES DESERTS", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73098"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839915e6b867adc26345536627bbf337c970db3f", "fields": {"nom_de_la_commune": "ENTREMONT LE VIEUX", "libell_d_acheminement": "ENTREMONT LE VIEUX", "code_postal": "73670", "coordonnees_gps": [45.4459970452, 5.88302688379], "code_commune_insee": "73107"}, "geometry": {"type": "Point", "coordinates": [5.88302688379, 45.4459970452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3479a70b07b5b9832cdacdc90c657b2b9f4b1f07", "fields": {"nom_de_la_commune": "FOURNEAUX", "libell_d_acheminement": "FOURNEAUX", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73117"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40b36b5bf196c3ad72c38ae0468f5addfd8202d", "fields": {"nom_de_la_commune": "FRANCIN", "libell_d_acheminement": "FRANCIN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73118"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fcddf711a0b8e8b49ac1c1fd447ca7768554b99", "fields": {"nom_de_la_commune": "FRENEY", "libell_d_acheminement": "FRENEY", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73119"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e922c0f0d141ddc0cca850e53effd4fc19820467", "fields": {"nom_de_la_commune": "FRONTENEX", "libell_d_acheminement": "FRONTENEX", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73121"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981e6919e2bca66939e4505e580880433ef37c81", "fields": {"nom_de_la_commune": "GRESIN", "libell_d_acheminement": "GRESIN", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73127"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694968ef4c5a9549ec44438dcd6de89e5d6ed22f", "fields": {"nom_de_la_commune": "GRESY SUR ISERE", "libell_d_acheminement": "GRESY SUR ISERE", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73129"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0078ca68a28727d784292f0225c606dacc30b629", "fields": {"nom_de_la_commune": "GRIGNON", "libell_d_acheminement": "GRIGNON", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73130"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105211363a254e2d8d94c581b0fe52c4ff51a98a", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "LA PLAGNE", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a33f785ac0b258d16bcc75d162ba97507663f1", "fields": {"nom_de_la_commune": "MERCURY", "libell_d_acheminement": "MERCURY", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73154"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "640a04eb7b7b019fd48f191c962bd0befda39d88", "fields": {"nom_de_la_commune": "MEYRIEUX TROUET", "libell_d_acheminement": "MEYRIEUX TROUET", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73156"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d84f9d2db55bc795e8038d86391ddc876894b0", "fields": {"nom_de_la_commune": "MODANE", "libell_d_acheminement": "MODANE", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73157"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293b1009b56614a03b2d8a58d1157218c57848cc", "fields": {"nom_de_la_commune": "MONTAGNOLE", "libell_d_acheminement": "MONTAGNOLE", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73160"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcbf10c802d4feecc4d80fd34758ba9644b0db7", "fields": {"nom_de_la_commune": "MONTAGNY", "libell_d_acheminement": "MONTAGNY", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73161"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd86b8a4a77245407f860c093b3d2e964992832", "fields": {"nom_de_la_commune": "MONTAILLEUR", "libell_d_acheminement": "MONTAILLEUR", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73162"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e65a16f51ead6af113ed81d1002428a5b12f60", "fields": {"nom_de_la_commune": "MONTSAPEY", "libell_d_acheminement": "MONTSAPEY", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73175"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cc9a394e808b8d69bdb2e8a5d78d83b80bcd6a", "fields": {"nom_de_la_commune": "MYANS", "libell_d_acheminement": "MYANS", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73183"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab7a9047fe8316083e4f6be45d0505a3deea46c", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "DOUCY", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b006e0ad0202e9c7d81b63a054723b6ec255d3", "fields": {"nom_de_la_commune": "NOTRE DAME DU CRUET", "libell_d_acheminement": "NOTRE DAME DU CRUET", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73189"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c420917eead8a0096ee04b1924529f0512f068", "fields": {"nom_de_la_commune": "NOVALAISE", "libell_d_acheminement": "NOVALAISE", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73191"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cacedef0165154ddd13c76ab3d83ea911535cbb6", "fields": {"nom_de_la_commune": "ONTEX", "libell_d_acheminement": "ONTEX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73193"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9beef3d547a0fb9a300e09cb6477bf26476ee5b0", "fields": {"nom_de_la_commune": "ORELLE", "libell_d_acheminement": "ORELLE", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73194"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7ac64e34a9c6ef7e372deb948c5f0b884e84b9", "fields": {"nom_de_la_commune": "PALLUD", "libell_d_acheminement": "PALLUD", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73196"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d32f8ecd7544f3a9a747d536680620f7872d5c", "fields": {"nom_de_la_commune": "PONTAMAFREY MONTPASCAL", "libell_d_acheminement": "PONTAMAFREY MONTPASCAL", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73203"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82696124c36bd6ee3d61767d6e50091a58babd42", "fields": {"nom_de_la_commune": "PUYGROS", "libell_d_acheminement": "PUYGROS", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73210"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb3bc7cc3fef80239e610880f253778e6ab41bd", "fields": {"nom_de_la_commune": "QUEIGE", "libell_d_acheminement": "QUEIGE", "code_postal": "73720", "coordonnees_gps": [45.7074330489, 6.46519266465], "code_commune_insee": "73211"}, "geometry": {"type": "Point", "coordinates": [6.46519266465, 45.7074330489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6edf89bcc7db7dbb4fdb166e9987efbc3adb86", "fields": {"nom_de_la_commune": "ST ALBAN DES VILLARDS", "libell_d_acheminement": "ST ALBAN DES VILLARDS", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73221"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11e68b1f93ff7b90b0bdbc13bee059fc77151b1", "fields": {"nom_de_la_commune": "ST BON TARENTAISE", "libell_d_acheminement": "ST BON TARENTAISE", "code_postal": "73120", "coordonnees_gps": [45.3952559904, 6.63957315218], "code_commune_insee": "73227"}, "geometry": {"type": "Point", "coordinates": [6.63957315218, 45.3952559904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4975a1c40df1443a37a77c225c8c11f9a63c4ffa", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73229"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaac9eb676265b5dd5ea0fcd665475c2a596264a", "fields": {"nom_de_la_commune": "STE FOY TARENTAISE", "libell_d_acheminement": "STE FOY TARENTAISE", "code_postal": "73640", "coordonnees_gps": [45.5779597049, 6.92431874629], "code_commune_insee": "73232"}, "geometry": {"type": "Point", "coordinates": [6.92431874629, 45.5779597049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5efe2fdfda24349f7dccadf454b52a327d666962", "fields": {"nom_de_la_commune": "ST JEAN DE CHEVELU", "libell_d_acheminement": "ST JEAN DE CHEVELU", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73245"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1236ecb2cd23c52551ca64b8794c0af610f068", "fields": {"nom_de_la_commune": "STE MARIE DE CUINES", "libell_d_acheminement": "STE MARIE DE CUINES", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73255"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12aa02b321d2182de9d72b79a6b32dd466f7a65d", "fields": {"nom_de_la_commune": "ST MARTIN D ARC", "libell_d_acheminement": "ST MARTIN D ARC", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73256"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc0cf2c0c64877c59edcfc565e58b1fde9e80d0f", "fields": {"code_postal": "73440", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "ST MARTIN DE BELLEVILLE", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3533056918, 6.49727541624]}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdcd146137a4a5104b3a4d9d7c00fbab07921ac3", "fields": {"code_postal": "73600", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "VILLARLURIN", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3739609607, 6.53145730027]}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbdbe4f80aabbf77bdcedd9a8b45a3fcce14cdc", "fields": {"nom_de_la_commune": "ST MARTIN DE LA PORTE", "libell_d_acheminement": "ST MARTIN DE LA PORTE", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73258"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d202cbce43a5a1bc13c4917a5c0cbb4af72da832", "fields": {"nom_de_la_commune": "ST MICHEL DE MAURIENNE", "libell_d_acheminement": "ST MICHEL DE MAURIENNE", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73261"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f298984c724f2b7fcceae03d9948d3ae4cfa3876", "fields": {"nom_de_la_commune": "ST NICOLAS LA CHAPELLE", "libell_d_acheminement": "ST NICOLAS LA CHAPELLE", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73262"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bd3c4065a8b6abc136a8a5c9f9a0b451e9181c", "fields": {"nom_de_la_commune": "ST REMY DE MAURIENNE", "libell_d_acheminement": "ST REMY DE MAURIENNE", "code_postal": "73660", "coordonnees_gps": [45.3946853407, 6.25313370974], "code_commune_insee": "73278"}, "geometry": {"type": "Point", "coordinates": [6.25313370974, 45.3946853407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e0e505dd543bcb3bdffdb1284d3f4dccafa3a6", "fields": {"nom_de_la_commune": "ST THIBAUD DE COUZ", "libell_d_acheminement": "ST THIBAUD DE COUZ", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73282"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47444d6412e12b3fca615e1caae71fbc498e797", "fields": {"nom_de_la_commune": "SALINS FONTAINE", "libell_d_acheminement": "SALINS FONTAINE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73284"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5c174f73b9936ff85b73c309fe91036aa042d5", "fields": {"nom_de_la_commune": "SEEZ", "libell_d_acheminement": "SEEZ", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73285"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4e4862cb57c0b33e14691c1bbf383f91b4cd6b", "fields": {"nom_de_la_commune": "BEBING", "libell_d_acheminement": "BEBING", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57056"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "346e278edd046bb94ebceade03acc4b561351e06", "fields": {"nom_de_la_commune": "BELLANGE", "libell_d_acheminement": "BELLANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57059"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58bd77b4d5693305799003701e691f0fef511533", "fields": {"nom_de_la_commune": "BEUX", "libell_d_acheminement": "BEUX", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57075"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af76c2a0d9908e9a4dddd31b2bec2db1cd97e8d4", "fields": {"nom_de_la_commune": "BOULAY MOSELLE", "libell_d_acheminement": "BOULAY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57097"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f0d0af990104a23994d8d4bdae2965ffbc0435", "fields": {"nom_de_la_commune": "BOUSTROFF", "libell_d_acheminement": "BOUSTROFF", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57105"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6516ed492b22716ddba9b261dda80b7ef40f8a", "fields": {"nom_de_la_commune": "BOUZONVILLE", "libell_d_acheminement": "BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57106"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c841dab22d8eb3cdd581fea101b5afa1e90bfd", "fields": {"nom_de_la_commune": "BREHAIN", "libell_d_acheminement": "BREHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57107"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b231574dcdc08658eec179ad5e87302f4e279b", "fields": {"nom_de_la_commune": "BRETTNACH", "libell_d_acheminement": "BRETTNACH", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57110"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff48238fccb27f95d2fa3ee7e0542d102ee98b22", "fields": {"nom_de_la_commune": "BROUDERDORFF", "libell_d_acheminement": "BROUDERDORFF", "code_postal": "57565", "coordonnees_gps": [48.7051512311, 7.11288052052], "code_commune_insee": "57113"}, "geometry": {"type": "Point", "coordinates": [7.11288052052, 48.7051512311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984ad64bfae00ea05ece12ed76ac2ffecfbee346", "fields": {"nom_de_la_commune": "BRULANGE", "libell_d_acheminement": "BRULANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57115"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c71a88d6f91e6ab1a18ee1c1013940f667faee9", "fields": {"nom_de_la_commune": "BURTONCOURT", "libell_d_acheminement": "BURTONCOURT", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57121"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad547ee86d1bb28182664a1048d9c88721199f58", "fields": {"nom_de_la_commune": "CHANVILLE", "libell_d_acheminement": "CHANVILLE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57127"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30a845b7c4c81c4c7ff45a52342dbbc39abf60a", "fields": {"nom_de_la_commune": "CHEMINOT", "libell_d_acheminement": "CHEMINOT", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57137"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8868855ac2e83a1a2ac2360328291250ba1a03b2", "fields": {"nom_de_la_commune": "COIN LES CUVRY", "libell_d_acheminement": "COIN LES CUVRY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57146"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf1bd6cc3346e7651fdadcaaad2b37ee500134a", "fields": {"nom_de_la_commune": "COIN SUR SEILLE", "libell_d_acheminement": "COIN SUR SEILLE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57147"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c8968d3b275eb25b058adaadd24457f3c36a97", "fields": {"nom_de_la_commune": "COLLIGNY", "libell_d_acheminement": "COLLIGNY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57148"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080db9f2fe0d82293e61739484f41826689b4076", "fields": {"nom_de_la_commune": "CONTHIL", "libell_d_acheminement": "CONTHIL", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57151"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d860ea4b8778e9f53e1322a876f675c1117213", "fields": {"nom_de_la_commune": "CONTZ LES BAINS", "libell_d_acheminement": "CONTZ LES BAINS", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57152"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "611e6151d0d4075ea60cb47358fd2b828b872db4", "fields": {"nom_de_la_commune": "CREHANGE", "libell_d_acheminement": "CREHANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57159"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087002a67df6a1890c609a767400fe0a55aca92e", "fields": {"nom_de_la_commune": "DANNE ET QUATRE VENTS", "libell_d_acheminement": "DANNE ET QUATRE VENTS", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57168"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f30b8e620d310d1d310891b0d7f6e1f8fe65e4", "fields": {"nom_de_la_commune": "DIFFEMBACH LES HELLIMER", "libell_d_acheminement": "DIFFEMBACH LES HELLIMER", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57178"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb0af337a6b59ff0347a525db02ffb8b7cddf17", "fields": {"nom_de_la_commune": "DISTROFF", "libell_d_acheminement": "DISTROFF", "code_postal": "57925", "coordonnees_gps": [49.3367262408, 6.26183442661], "code_commune_insee": "57179"}, "geometry": {"type": "Point", "coordinates": [6.26183442661, 49.3367262408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74858bee60ed56b109722711b4c356045164b864", "fields": {"nom_de_la_commune": "EBERSVILLER", "libell_d_acheminement": "EBERSVILLER", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57186"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5bbad2da65cb919e53bb7bc4d7d4c32654b63f", "fields": {"nom_de_la_commune": "EPPING", "libell_d_acheminement": "EPPING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57195"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdfe5dffc4096fe3ad2575d75247c33a75d7c99", "fields": {"nom_de_la_commune": "ETTING", "libell_d_acheminement": "ETTING", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57201"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd14bfb15edccde696e02d5e2daabc7ffe7f9ba", "fields": {"nom_de_la_commune": "EVRANGE", "libell_d_acheminement": "EVRANGE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57203"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14457992d1df96576a3225572845f10612ab8a4e", "fields": {"code_postal": "57290", "code_commune_insee": "57206", "libell_d_acheminement": "FAMECK", "ligne_5": "OURY", "nom_de_la_commune": "FAMECK", "coordonnees_gps": [49.3041832839, 6.102475564]}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e21cc81518014850418571af88273f1123bca7d", "fields": {"nom_de_la_commune": "FAREBERSVILLER", "libell_d_acheminement": "FAREBERSVILLER", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57207"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700389cfb079b263ffc35f3ddaf6bf9840bd947a", "fields": {"nom_de_la_commune": "FEVES", "libell_d_acheminement": "FEVES", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57211"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8034f4374d429accfd15eaa9471f094d54f00e", "fields": {"nom_de_la_commune": "FILSTROFF", "libell_d_acheminement": "FILSTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57213"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99408ba11b191dfae2f106f9944fa19822b59ae", "fields": {"nom_de_la_commune": "FLASTROFF", "libell_d_acheminement": "FLASTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57215"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19378be3ecc0408e4f5d6d51e46997e6e8ea327e", "fields": {"nom_de_la_commune": "FOLSCHVILLER", "libell_d_acheminement": "FOLSCHVILLER", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57224"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea61e6d9b7a6d4c769e1fd1a01a17a6b2dd8aee", "fields": {"nom_de_la_commune": "FOULCREY", "libell_d_acheminement": "FOULCREY", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57229"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a34d2ffd78043e7c99a15a1b9d2245facd99c008", "fields": {"nom_de_la_commune": "FRAQUELFING", "libell_d_acheminement": "FRAQUELFING", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57233"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed794660d59705da7293536e74f0ed378053dad", "fields": {"nom_de_la_commune": "FREISTROFF", "libell_d_acheminement": "FREISTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57235"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892e1aed69a27012f667a423b3eebbe292b3a873", "fields": {"nom_de_la_commune": "FRIBOURG", "libell_d_acheminement": "FRIBOURG", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57241"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ba57ce6a1f50c93ef909a2c71cc2b46466b386", "fields": {"nom_de_la_commune": "GANDRANGE", "libell_d_acheminement": "GANDRANGE", "code_postal": "57175", "coordonnees_gps": [49.2737129619, 6.13465126369], "code_commune_insee": "57242"}, "geometry": {"type": "Point", "coordinates": [6.13465126369, 49.2737129619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c34a7e59072dedd9eb82947a98d51c84502cc5", "fields": {"nom_de_la_commune": "GARREBOURG", "libell_d_acheminement": "GARREBOURG", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57244"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea637ea0583f7fabe5cb00faa4f433b0e574704", "fields": {"nom_de_la_commune": "GELUCOURT", "libell_d_acheminement": "GELUCOURT", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57246"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7097c77eea0386ee69b99256b9ae3e9a11546366", "fields": {"nom_de_la_commune": "GIVRYCOURT", "libell_d_acheminement": "GIVRYCOURT", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57248"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded029db0e74471a5d69511e7b3817cc7c7c4a80", "fields": {"code_postal": "57620", "code_commune_insee": "57250", "libell_d_acheminement": "GOETZENBRUCK", "ligne_5": "SARREINSBERG", "nom_de_la_commune": "GOETZENBRUCK", "coordonnees_gps": [48.9917951549, 7.41577190853]}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4b4ce9d937d4d8f4d0ebeae4e26e724a8cc281", "fields": {"nom_de_la_commune": "GRENING", "libell_d_acheminement": "GRENING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57258"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d4b051e433111cd18a30921aa0e30e5d8da6e2", "fields": {"nom_de_la_commune": "GROSBLIEDERSTROFF", "libell_d_acheminement": "GROSBLIEDERSTROFF", "code_postal": "57520", "coordonnees_gps": [49.1484421064, 7.01208667491], "code_commune_insee": "57260"}, "geometry": {"type": "Point", "coordinates": [7.01208667491, 49.1484421064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a925b91164cb93632959e6eff735e305822f3d60", "fields": {"nom_de_la_commune": "HAGEN", "libell_d_acheminement": "HAGEN", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57282"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "106c1c838ae010e8b8f538b4375f7c4091003a58", "fields": {"nom_de_la_commune": "HAM SOUS VARSBERG", "libell_d_acheminement": "HAM SOUS VARSBERG", "code_postal": "57880", "coordonnees_gps": [49.1848577986, 6.63106406972], "code_commune_insee": "57288"}, "geometry": {"type": "Point", "coordinates": [6.63106406972, 49.1848577986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9806ff02299f0b8b4bdc04dfe0b94f49a60619b", "fields": {"nom_de_la_commune": "HANGVILLER", "libell_d_acheminement": "HANGVILLER", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57291"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f60a5a223f9f112a396112be5ed12ea8e4e29a", "fields": {"nom_de_la_commune": "HANVILLER", "libell_d_acheminement": "HANVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57294"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12180d61ad7bb7e5d9f126730def44c972e2614", "fields": {"nom_de_la_commune": "HARTZVILLER", "libell_d_acheminement": "HARTZVILLER", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57299"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de122ef99b64d8c326178ba33bd8996e6a83953", "fields": {"nom_de_la_commune": "HAUCONCOURT", "libell_d_acheminement": "HAUCONCOURT", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57303"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7dca92470286d291f6c87087d8ec97b19401f18", "fields": {"nom_de_la_commune": "HEMING", "libell_d_acheminement": "HEMING", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57314"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f157fe972a0e531152513e35540db7457fca56", "fields": {"nom_de_la_commune": "HERNY", "libell_d_acheminement": "HERNY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57319"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06d67e266d75da8f63a6bdabcad3b377a8ad05", "fields": {"nom_de_la_commune": "HERTZING", "libell_d_acheminement": "HERTZING", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57320"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234f35b59be785d9a9a4e334a68afaaa9baa4e47", "fields": {"nom_de_la_commune": "HETTANGE GRANDE", "libell_d_acheminement": "HETTANGE GRANDE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57323"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56e89f01c3008fc63b6577713a861f2813cea1c", "fields": {"nom_de_la_commune": "HOLLING", "libell_d_acheminement": "HOLLING", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57329"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "396174fd214745205caf60dc74e1bfcc9ff30e79", "fields": {"nom_de_la_commune": "HOMMARTING", "libell_d_acheminement": "HOMMARTING", "code_postal": "57405", "coordonnees_gps": [48.7255604204, 7.15431817508], "code_commune_insee": "57333"}, "geometry": {"type": "Point", "coordinates": [7.15431817508, 48.7255604204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac83e2cb5d7697fb0e99032190ebcffac08decf", "fields": {"nom_de_la_commune": "HUNTING", "libell_d_acheminement": "HUNTING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57341"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a685880e1e3f7441cf69ff1d0ab1fcf948466d", "fields": {"nom_de_la_commune": "ILLANGE", "libell_d_acheminement": "ILLANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57343"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ccea5852a7c8c7a9fd9ea4f79ab40ee357d17f", "fields": {"nom_de_la_commune": "IMLING", "libell_d_acheminement": "IMLING", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57344"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05f0edbe04cf708cb4c99e4754783d760a18c6b", "fields": {"nom_de_la_commune": "JUSSY", "libell_d_acheminement": "JUSSY", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57352"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f418be93a3b23e2adb86fe35d009ed85a900dec", "fields": {"nom_de_la_commune": "JUVILLE", "libell_d_acheminement": "JUVILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57354"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f697c239f6fad7402803860c195c1120ea9de6", "fields": {"nom_de_la_commune": "KANFEN", "libell_d_acheminement": "KANFEN", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57356"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c6b46571639bededdce8463943c524882ca104", "fields": {"nom_de_la_commune": "KEMPLICH", "libell_d_acheminement": "KEMPLICH", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57359"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2aa2df4c9dafcbb81581cfbf40da17a31c418a", "fields": {"nom_de_la_commune": "KIRSCH LES SIERCK", "libell_d_acheminement": "KIRSCH LES SIERCK", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57364"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb52c239bbceff0f3e4a256781eae9905df25101", "fields": {"nom_de_la_commune": "LANDANGE", "libell_d_acheminement": "LANDANGE", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57377"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59d5cc0560aa70bde30e29708f6c96928bfc64bf", "fields": {"nom_de_la_commune": "LANEUVEVILLE LES LORQUIN", "libell_d_acheminement": "LANEUVEVILLE LES LORQUIN", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57380"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091bbe5c71e98ce85a5d9d6bcfa7e922cf650aed", "fields": {"nom_de_la_commune": "LANGATTE", "libell_d_acheminement": "LANGATTE", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57382"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a257532e9138bacdf166f1ea1e000a495b8627d", "fields": {"nom_de_la_commune": "LENING", "libell_d_acheminement": "LENING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57394"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3d9f9f546c561cd737fd55813a2c33584b5fba", "fields": {"nom_de_la_commune": "LIDREZING", "libell_d_acheminement": "LIDREZING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57401"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677ab1a0cb5307673f4daa59ada480266bdbd189", "fields": {"nom_de_la_commune": "LIXHEIM", "libell_d_acheminement": "LIXHEIM", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57407"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c1f7188de112c6680dfd2181d81ed3b53e525e", "fields": {"nom_de_la_commune": "LOMMERANGE", "libell_d_acheminement": "LOMMERANGE", "code_postal": "57650", "coordonnees_gps": [49.3593317292, 5.99165623532], "code_commune_insee": "57411"}, "geometry": {"type": "Point", "coordinates": [5.99165623532, 49.3593317292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9609936ffc64b6cceef143d3d1e0c8b63cedb13", "fields": {"nom_de_la_commune": "LONGEVILLE LES ST AVOLD", "libell_d_acheminement": "LONGEVILLE LES ST AVOLD", "code_postal": "57740", "coordonnees_gps": [49.1191863561, 6.64931151715], "code_commune_insee": "57413"}, "geometry": {"type": "Point", "coordinates": [6.64931151715, 49.1191863561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0371d8f46b39f192ce50b88d5f6cedb9fce9c4", "fields": {"nom_de_la_commune": "LOSTROFF", "libell_d_acheminement": "LOSTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57417"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1bb10a04378b0bf926a84e46f58ff3c802fdd5", "fields": {"code_postal": "57730", "code_commune_insee": "57428", "libell_d_acheminement": "MACHEREN", "ligne_5": "PETIT EBERSVILLER", "nom_de_la_commune": "MACHEREN", "coordonnees_gps": [49.0823148993, 6.73315918141]}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3454a7b3a6aa8f9f4242ecba0f22dc3ad58d94bf", "fields": {"nom_de_la_commune": "MAIZEROY", "libell_d_acheminement": "MAIZEROY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57431"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d4b084e640bbe9dff8064801978393f908093c", "fields": {"nom_de_la_commune": "MANDEREN", "libell_d_acheminement": "MANDEREN", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57439"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b0d023b072b5f8b690d38a275c3bba492a8a97", "fields": {"nom_de_la_commune": "MANHOUE", "libell_d_acheminement": "MANHOUE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57440"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa450736ce63b8b9544f7752b3e79d3358a31dc0", "fields": {"nom_de_la_commune": "MARSILLY", "libell_d_acheminement": "MARSILLY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57449"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a69256ba5f29dcb69a6fda9c4eeddd3bfa6ba1", "fields": {"nom_de_la_commune": "MARTHILLE", "libell_d_acheminement": "MARTHILLE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57451"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b513f73c5c79222dbc36b553ae56348355d9232", "fields": {"nom_de_la_commune": "MAXSTADT", "libell_d_acheminement": "MAXSTADT", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57453"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057994f53c018049b06045e96c3ceb9a891d18d7", "fields": {"nom_de_la_commune": "METZERESCHE", "libell_d_acheminement": "METZERESCHE", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57464"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258b2b8eff455ac0f5a831a34efffb7e61971f7f", "fields": {"nom_de_la_commune": "MEY", "libell_d_acheminement": "MEY", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57467"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540d3d6ee1e476321c7c17173b291dad3e8021ce", "fields": {"nom_de_la_commune": "MONCOURT", "libell_d_acheminement": "MONCOURT", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57473"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aca33b78412f0678d962ebb12440708e641fb28", "fields": {"nom_de_la_commune": "MONTOIS LA MONTAGNE", "libell_d_acheminement": "MONTOIS LA MONTAGNE", "code_postal": "57860", "coordonnees_gps": [49.2108492485, 6.04018502241], "code_commune_insee": "57481"}, "geometry": {"type": "Point", "coordinates": [6.04018502241, 49.2108492485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87cc5fc193fc3fb3afd4257d4f25030cbfd2d99e", "fields": {"nom_de_la_commune": "NEUFVILLAGE", "libell_d_acheminement": "NEUFVILLAGE", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57501"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3e30665346df7e983b5d002040968132717a8d", "fields": {"nom_de_la_commune": "NIDERHOFF", "libell_d_acheminement": "NIDERHOFF", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57504"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee0c6ad95f1df4d95ff1a4a1f31acdbdce6006d", "fields": {"nom_de_la_commune": "NILVANGE", "libell_d_acheminement": "NILVANGE", "code_postal": "57240", "coordonnees_gps": [49.3410176091, 6.04326749195], "code_commune_insee": "57508"}, "geometry": {"type": "Point", "coordinates": [6.04326749195, 49.3410176091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab75d54dd1ff035d04501d209883c018424b6a25", "fields": {"nom_de_la_commune": "NOVEANT SUR MOSELLE", "libell_d_acheminement": "NOVEANT SUR MOSELLE", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57515"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e510e77a074446ab6a67a682271400efeddc08", "fields": {"nom_de_la_commune": "OUDRENNE", "libell_d_acheminement": "OUDRENNE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57531"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6e133437a4d62361719f2f5c8a93035e5b29fc", "fields": {"nom_de_la_commune": "PAGNY LES GOIN", "libell_d_acheminement": "PAGNY LES GOIN", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57532"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de919cb2458da35f1a591106202ae33dfb1b7182", "fields": {"nom_de_la_commune": "PELTRE", "libell_d_acheminement": "PELTRE", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57534"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be09ec9f27e4cf3a06c81cdf1aaba7b22475e4f", "fields": {"nom_de_la_commune": "PIERREVILLERS", "libell_d_acheminement": "PIERREVILLERS", "code_postal": "57120", "coordonnees_gps": [49.2378389849, 6.09052471357], "code_commune_insee": "57543"}, "geometry": {"type": "Point", "coordinates": [6.09052471357, 49.2378389849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58bd358bf90acda3aa7b4b2a6ad049457499ccc2", "fields": {"nom_de_la_commune": "PLAPPEVILLE", "libell_d_acheminement": "PLAPPEVILLE", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57545"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847bf0b916fade9d0237428689a7c0cf8b7afd4a", "fields": {"nom_de_la_commune": "POSTROFF", "libell_d_acheminement": "POSTROFF", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57551"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfed9630cfd670f49030506c8159e687eda6133", "fields": {"nom_de_la_commune": "POURNOY LA GRASSE", "libell_d_acheminement": "POURNOY LA GRASSE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57554"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c440445c41727758dda49a318993004076956a8", "fields": {"nom_de_la_commune": "PUZIEUX", "libell_d_acheminement": "PUZIEUX", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57559"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79127f3648bea43478353c19f2316ca63b1ae354", "fields": {"nom_de_la_commune": "RACRANGE", "libell_d_acheminement": "RACRANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57560"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733abda8ebb3dd1f401f9a50d7b11ab15243171f", "fields": {"nom_de_la_commune": "RAVILLE", "libell_d_acheminement": "RAVILLE", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57563"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35e66e2f7e083a7a94a2aaf28f8c1fee293d6bf3", "fields": {"nom_de_la_commune": "RETTEL", "libell_d_acheminement": "RETTEL", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57576"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58a61b56bc5fc4a938f62422e1423ddc49ee8d2", "fields": {"nom_de_la_commune": "RITZING", "libell_d_acheminement": "RITZING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57585"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4615f2beacadeb0a81d7e778a2ec397715fff574", "fields": {"nom_de_la_commune": "ROHRBACH LES BITCHE", "libell_d_acheminement": "ROHRBACH LES BITCHE", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57589"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320c4f432c9a32a05ace1aca9f89a3a4206d27f2", "fields": {"nom_de_la_commune": "ROURE", "libell_d_acheminement": "ROURE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06111"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e3d4d01bfd31b3ebcb2ebf5b98dafe5d5afbea", "fields": {"code_postal": "06800", "code_commune_insee": "06027", "libell_d_acheminement": "CAGNES SUR MER", "ligne_5": "CROS DE CAGNES", "nom_de_la_commune": "CAGNES SUR MER", "coordonnees_gps": [43.6717115004, 7.15221251149]}, "geometry": {"type": "Point", "coordinates": [7.15221251149, 43.6717115004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2259f6749424d51f8fee3eb130bffb8e0c6bf9eb", "fields": {"code_postal": "06110", "code_commune_insee": "06030", "libell_d_acheminement": "LE CANNET", "ligne_5": "ROCHEVILLE", "nom_de_la_commune": "LE CANNET", "coordonnees_gps": [43.5728764669, 7.0065967476]}, "geometry": {"type": "Point", "coordinates": [7.0065967476, 43.5728764669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e398e5f72fd7c20aaf4abacddc8e5c0e437f72", "fields": {"nom_de_la_commune": "CHATEAUNEUF GRASSE", "libell_d_acheminement": "CHATEAUNEUF GRASSE", "code_postal": "06740", "coordonnees_gps": [43.6648550756, 6.97966821617], "code_commune_insee": "06038"}, "geometry": {"type": "Point", "coordinates": [6.97966821617, 43.6648550756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26729d8fdd7f8714252c789db9ad32e176fdae15", "fields": {"nom_de_la_commune": "BEZAUDUN LES ALPES", "libell_d_acheminement": "BEZAUDUN LES ALPES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06017"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b867a759e40b5cbc3eb1876ecfc1bd6981d49166", "fields": {"nom_de_la_commune": "BRIANCONNET", "libell_d_acheminement": "BRIANCONNET", "code_postal": "06850", "coordonnees_gps": [43.8467484238, 6.75541099886], "code_commune_insee": "06024"}, "geometry": {"type": "Point", "coordinates": [6.75541099886, 43.8467484238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ccbda79a029c81b46610621d5c04cb38c440579", "fields": {"nom_de_la_commune": "BLAUSASC", "libell_d_acheminement": "BLAUSASC", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06019"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694ca87650454b3869d6b4aefd4da10284122d83", "fields": {"nom_de_la_commune": "CANNES", "libell_d_acheminement": "CANNES", "code_postal": "06400", "coordonnees_gps": [43.5526938306, 7.00247889833], "code_commune_insee": "06029"}, "geometry": {"type": "Point", "coordinates": [7.00247889833, 43.5526938306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e970030aa614547431eea337b38b09806b41152a", "fields": {"nom_de_la_commune": "BOUYON", "libell_d_acheminement": "BOUYON", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06022"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f769c75040041b1bc63aab0fc984ad7bd9042aa0", "fields": {"nom_de_la_commune": "BONSON", "libell_d_acheminement": "BONSON", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06021"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce9215f8c6fabaadfcc64c99b5b9249c6521be5d", "fields": {"nom_de_la_commune": "BIOT", "libell_d_acheminement": "BIOT", "code_postal": "06410", "coordonnees_gps": [43.6282240743, 7.08280083346], "code_commune_insee": "06018"}, "geometry": {"type": "Point", "coordinates": [7.08280083346, 43.6282240743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b146e15bc66901563d2282989e89b1774590b99", "fields": {"code_postal": "06470", "code_commune_insee": "06056", "libell_d_acheminement": "ENTRAUNES", "ligne_5": "ESTEING", "nom_de_la_commune": "ENTRAUNES", "coordonnees_gps": [44.1262277999, 6.84545324437]}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aba540dd3ca08b6edd62be7bd99946b4bccf1aa", "fields": {"code_postal": "06440", "code_commune_insee": "06077", "libell_d_acheminement": "LUCERAM", "ligne_5": "PEIRA CAVA", "nom_de_la_commune": "LUCERAM", "coordonnees_gps": [43.849932937, 7.37396481834]}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88862a05a145dadd0063c120ed5b1e3224244cc", "fields": {"code_postal": "06670", "code_commune_insee": "06075", "libell_d_acheminement": "LEVENS", "ligne_5": "PLAN DU VAR", "nom_de_la_commune": "LEVENS", "coordonnees_gps": [43.8396133826, 7.24053222455]}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f171f8f486d3011752b296ff403c7810eead04", "fields": {"nom_de_la_commune": "CHATEAUNEUF VILLEVIEILLE", "libell_d_acheminement": "CHATEAUNEUF VILLEVIEILLE", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06039"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9157a195dab7e516844acde38c0aa84c50d880", "fields": {"nom_de_la_commune": "COURSEGOULES", "libell_d_acheminement": "COURSEGOULES", "code_postal": "06140", "coordonnees_gps": [43.7526765774, 7.06029224738], "code_commune_insee": "06050"}, "geometry": {"type": "Point", "coordinates": [7.06029224738, 43.7526765774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e930a459e9567002ea11e43390b2d9975b5b644", "fields": {"nom_de_la_commune": "L ESCARENE", "libell_d_acheminement": "L ESCARENE", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06057"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b35cd4155c8f84e71806591b845a2be641ad5f", "fields": {"nom_de_la_commune": "ENTRAUNES", "libell_d_acheminement": "ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06056"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d2a1d4e4bec57c0c87a04ac44b50c33ea9a210", "fields": {"nom_de_la_commune": "GATTIERES", "libell_d_acheminement": "GATTIERES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06064"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344a2c3fb826004e995d8f5fbbc50b011da2563a", "fields": {"nom_de_la_commune": "CUEBRIS", "libell_d_acheminement": "CUEBRIS", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06052"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537b66c3ec4a6edbe73ed71830af1b275c5ac881", "fields": {"nom_de_la_commune": "GRASSE", "libell_d_acheminement": "GRASSE", "code_postal": "06130", "coordonnees_gps": [43.6557670284, 6.93183304936], "code_commune_insee": "06069"}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49af2cc16713700fa986ca2e309dbb8365b946cf", "fields": {"code_postal": "06590", "code_commune_insee": "06138", "libell_d_acheminement": "THEOULE SUR MER", "ligne_5": "MIRAMAR", "nom_de_la_commune": "THEOULE SUR MER", "coordonnees_gps": [43.4984064524, 6.92997887504]}, "geometry": {"type": "Point", "coordinates": [6.92997887504, 43.4984064524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fbe4a5a2921d8cff9d4f6d6196af349db796fe", "fields": {"code_postal": "06750", "code_commune_insee": "06134", "libell_d_acheminement": "SERANON", "ligne_5": "LE LOGIS DU PIN", "nom_de_la_commune": "SERANON", "coordonnees_gps": [43.7770802464, 6.7641665855]}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d158103c59ae4e4144acffcc7e26ce25fec4f9", "fields": {"nom_de_la_commune": "TOURRETTE LEVENS", "libell_d_acheminement": "TOURRETTE LEVENS", "code_postal": "06690", "coordonnees_gps": [43.7866561058, 7.27248419041], "code_commune_insee": "06147"}, "geometry": {"type": "Point", "coordinates": [7.27248419041, 43.7866561058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e66bec52889785a354397eed71addcf8313e06", "fields": {"nom_de_la_commune": "VILLARS SUR VAR", "libell_d_acheminement": "VILLARS SUR VAR", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06158"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea61c25990ef4c63b754e5397d1294db9e74de44", "fields": {"nom_de_la_commune": "LA BRIGUE", "libell_d_acheminement": "LA BRIGUE", "code_postal": "06430", "coordonnees_gps": [44.0898751159, 7.57878055901], "code_commune_insee": "06162"}, "geometry": {"type": "Point", "coordinates": [7.57878055901, 44.0898751159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cf3e345c1640796cc53987bfb251c9e28de0d0", "fields": {"nom_de_la_commune": "LA TOUR", "libell_d_acheminement": "LA TOUR", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06144"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc879a5898ec0a05db892889dafd08f0fa4a7340", "fields": {"nom_de_la_commune": "SAUZE", "libell_d_acheminement": "SAUZE", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06133"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67071b3374596d2e74b41564c5bb70f2daafaec4", "fields": {"nom_de_la_commune": "TENDE", "libell_d_acheminement": "TENDE", "code_postal": "06430", "coordonnees_gps": [44.0898751159, 7.57878055901], "code_commune_insee": "06163"}, "geometry": {"type": "Point", "coordinates": [7.57878055901, 44.0898751159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adaab7d2475ca2490d379c49a2b0f4e1c502ada8", "fields": {"nom_de_la_commune": "CREYSSEILLES", "libell_d_acheminement": "CREYSSEILLES", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07074"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a21478c46e5c1056794feaee37e94adcaf49b4d", "fields": {"nom_de_la_commune": "FREYSSENET", "libell_d_acheminement": "FREYSSENET", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07092"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2211b7698585b04800b75de27f3f1ba78475230f", "fields": {"nom_de_la_commune": "LE CHEYLARD", "libell_d_acheminement": "LE CHEYLARD", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07064"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04663fb14098943d446b10e62b0f1566c4be1e8", "fields": {"nom_de_la_commune": "DAVEZIEUX", "libell_d_acheminement": "DAVEZIEUX", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07078"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "695f5ec6fc3658d64cdd77e2f6d041cdc7dd7300", "fields": {"nom_de_la_commune": "FAUGERES", "libell_d_acheminement": "FAUGERES", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07088"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8ac1affb627857ba0a0ad19fd7da67aba2c6de", "fields": {"nom_de_la_commune": "CHAUZON", "libell_d_acheminement": "CHAUZON", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07061"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660bf3eb5338fc9737fe103798b857574002529f", "fields": {"nom_de_la_commune": "GLUIRAS", "libell_d_acheminement": "GLUIRAS", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07096"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d80aacb2a9358281523b7a17d6739c1fc4c2e5c", "fields": {"nom_de_la_commune": "INTRES", "libell_d_acheminement": "INTRES", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07103"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c1b7e269c4cff1ba8054771c32456a0b86aae1", "fields": {"code_postal": "07140", "code_commune_insee": "07334", "libell_d_acheminement": "LES VANS", "ligne_5": "CHASSAGNES", "nom_de_la_commune": "LES VANS", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416bbbd5676be66595445198045638f86347d01d", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SOUS CHOMERAC", "libell_d_acheminement": "ST SYMPHORIEN SOUS CHOMERAC", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07298"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0a9f955ea71bbeaf94b3f9ed54fa6713c5a57c", "fields": {"nom_de_la_commune": "ARDEUIL ET MONTFAUXELLES", "libell_d_acheminement": "ARDEUIL ET MONTFAUXELLES", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08018"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e24d7c0940501a530660571141da355334a318", "fields": {"nom_de_la_commune": "ALLAND HUY ET SAUSSEUIL", "libell_d_acheminement": "ALLAND HUY ET SAUSSEUIL", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08006"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b06c0e6a3ebeeaa354194c9c53105f0a0b4678", "fields": {"nom_de_la_commune": "VALLON PONT D ARC", "libell_d_acheminement": "VALLON PONT D ARC", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07330"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d15e140d90f8f5481c2094828966b686ba40193", "fields": {"nom_de_la_commune": "SERRIERES", "libell_d_acheminement": "SERRIERES", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07313"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2283be367b9b93ee840fe65b0045a8a75a84d2ff", "fields": {"nom_de_la_commune": "ST PRIEST", "libell_d_acheminement": "ST PRIEST", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07288"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70aeaa1c90aca61559f7bc43e2b5387874ff66b", "fields": {"nom_de_la_commune": "ANNELLES", "libell_d_acheminement": "ANNELLES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08014"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63086204a49ffe09ec32e441ceebd05b93c2377d", "fields": {"nom_de_la_commune": "SOYONS", "libell_d_acheminement": "SOYONS", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07316"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6b69e8c4cd1bd15781ec704ce95bdd60cf7449", "fields": {"nom_de_la_commune": "AUTHE", "libell_d_acheminement": "AUTHE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08033"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3dce3a6f1d7fa5b32874548effa7e83d6465074", "fields": {"code_postal": "07400", "code_commune_insee": "07270", "libell_d_acheminement": "ST MARTIN SUR LAVEZON", "ligne_5": "ST MARTIN L INFERIEUR", "nom_de_la_commune": "ST MARTIN SUR LAVEZON", "coordonnees_gps": [44.5767272135, 4.6363152024]}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee520a26e9cd1396a9bf10ca53372d21a32b44c2", "fields": {"nom_de_la_commune": "ST DIDIER SOUS AUBENAS", "libell_d_acheminement": "ST DIDIER SOUS AUBENAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07229"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3df47d5e19e8b539226c3b767d6b2925b200c9", "fields": {"nom_de_la_commune": "ST MICHEL DE BOULOGNE", "libell_d_acheminement": "ST MICHEL DE BOULOGNE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07277"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9eefed36c377a453d824f0a2a449184bd0659c", "fields": {"nom_de_la_commune": "ST ETIENNE DE VALOUX", "libell_d_acheminement": "ST ETIENNE DE VALOUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07234"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b6ec72f6f10d43f3abf955a9f694ce86232304", "fields": {"nom_de_la_commune": "ST MARCEL D ARDECHE", "libell_d_acheminement": "ST MARCEL D ARDECHE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07264"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d814a5f0da0c4d849ed161793bf23e3f2765a6d", "fields": {"nom_de_la_commune": "ST JULIEN LABROUSSE", "libell_d_acheminement": "ST JULIEN LABROUSSE", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07256"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4ab5fa7085c2a83a043f4a3e4fb50afc374d4b", "fields": {"nom_de_la_commune": "ST JULIEN DU GUA", "libell_d_acheminement": "ST JULIEN DU GUA", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07253"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028523d09a1dbb56e86b29435cba459f1cb796f8", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07235"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee94a06a7a9da12503827120dad4542b95eb402", "fields": {"nom_de_la_commune": "ST PERAY", "libell_d_acheminement": "ST PERAY", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07281"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09c7008ae4d2877c75a7da879f5d1760f2edc09b", "fields": {"nom_de_la_commune": "ST PONS", "libell_d_acheminement": "ST PONS", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07287"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271c31e16fbf7db054cbffa2db12b46d323de11a", "fields": {"nom_de_la_commune": "SAGNES ET GOUDOULET", "libell_d_acheminement": "SAGNES ET GOUDOULET", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07203"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a49c8d2e59aea764910e956719069cdd50e26c7", "fields": {"nom_de_la_commune": "ST CIERGE LA SERRE", "libell_d_acheminement": "ST CIERGE LA SERRE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07221"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbebed7f9f8cc5a46964d3964dd41906c2815ec", "fields": {"nom_de_la_commune": "ST ANDEOL DE VALS", "libell_d_acheminement": "ST ANDEOL DE VALS", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07210"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1814cdefa90f911db93542b4fa81cd34a6140bc", "fields": {"nom_de_la_commune": "ST ANDEOL DE BERG", "libell_d_acheminement": "ST ANDEOL DE BERG", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07208"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331caf5bbec573cb0a84861b3226cbc24220aa69", "fields": {"nom_de_la_commune": "POURCHERES", "libell_d_acheminement": "POURCHERES", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07179"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f7780e5cab5779a94c3e319d4a5b8c39eea414", "fields": {"nom_de_la_commune": "QUINTENAS", "libell_d_acheminement": "QUINTENAS", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07188"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b79159f4b0dcb9b5abe9d959bca178f3e7bf10", "fields": {"nom_de_la_commune": "PRIVAS", "libell_d_acheminement": "PRIVAS", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07186"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504c0ee8c6e8de8b8cbb5a3966ccbfe81d55af08", "fields": {"nom_de_la_commune": "ROMPON", "libell_d_acheminement": "ROMPON", "code_postal": "07250", "coordonnees_gps": [44.769843603, 4.73616090056], "code_commune_insee": "07198"}, "geometry": {"type": "Point", "coordinates": [4.73616090056, 44.769843603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042efb311a5d619e53b4a8eb37ba3f23aff3f516", "fields": {"nom_de_la_commune": "ROCLES", "libell_d_acheminement": "ROCLES", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07196"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20782f1896fc008494a2bc769315a3b8ee8f337c", "fields": {"nom_de_la_commune": "RUOMS", "libell_d_acheminement": "RUOMS", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07201"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd0d6d6e5914f1bb1c778cd96327905c6f7c127", "fields": {"nom_de_la_commune": "LE CHATELET SUR RETOURNE", "libell_d_acheminement": "LE CHATELET SUR RETOURNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08111"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5795be2abef0b7442caf30fad785de12cf867b2c", "fields": {"nom_de_la_commune": "CHESNOIS AUBONCOURT", "libell_d_acheminement": "CHESNOIS AUBONCOURT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08117"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11facd902cd3eb91fadc878463d7d7d66ed9862b", "fields": {"nom_de_la_commune": "EUILLY ET LOMBUT", "libell_d_acheminement": "EUILLY ET LOMBUT", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08159"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851bd4d48df531675d39131cd340c3250d8764a3", "fields": {"nom_de_la_commune": "DOM LE MESNIL", "libell_d_acheminement": "DOM LE MESNIL", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08140"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ddee3e1352720450394771e8e3b89f022e7f746", "fields": {"nom_de_la_commune": "CHEVEUGES", "libell_d_acheminement": "CHEVEUGES", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08119"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea425656c11f8c2bf604a0d1d249f5cc77b9865", "fields": {"nom_de_la_commune": "DONCHERY", "libell_d_acheminement": "DONCHERY", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08142"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8853ed0dfaac74a7161d7f8953ce0a0f8cc40b", "fields": {"nom_de_la_commune": "DAMOUZY", "libell_d_acheminement": "DAMOUZY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08137"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c5d3b748c9378e47283335855728aa9d35dc93f", "fields": {"nom_de_la_commune": "EVIGNY", "libell_d_acheminement": "EVIGNY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08160"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee13dc0ceb6331aee28495630cdc1243ec6e534e", "fields": {"nom_de_la_commune": "FAGNON", "libell_d_acheminement": "FAGNON", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08162"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b5a553c6f7ced8f23cf74c71ade6be2342a43c8", "fields": {"nom_de_la_commune": "CHILLY", "libell_d_acheminement": "CHILLY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08121"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08e3b657efa7fd71ae874a9c8f4f6b83b649d69", "fields": {"nom_de_la_commune": "LA FERTE SUR CHIERS", "libell_d_acheminement": "LA FERTE SUR CHIERS", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08168"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5f7ea0ca8dd5cc7818daafcda4d760b8d761b8", "fields": {"nom_de_la_commune": "FRANCHEVAL", "libell_d_acheminement": "FRANCHEVAL", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08179"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e87d3e71d5b7c0835a20cdee8fb3f7fcf80624", "fields": {"nom_de_la_commune": "FAISSAULT", "libell_d_acheminement": "FAISSAULT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08163"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54cb39c25a68efe21ec58ec7000d6691fdb5afe7", "fields": {"nom_de_la_commune": "LA FEREE", "libell_d_acheminement": "LA FEREE", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08167"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f815bf90c6f7022e1cd78b940a776b5111d9b7e", "fields": {"nom_de_la_commune": "FLOING", "libell_d_acheminement": "FLOING", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08174"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe0b0e3684853abdc088fad44acea30048d7056", "fields": {"nom_de_la_commune": "FLIZE", "libell_d_acheminement": "FLIZE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08173"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2228c8ca717ada8f0e8b7f814a1ecc64cde489f9", "fields": {"nom_de_la_commune": "CHAMPIGNEUL SUR VENCE", "libell_d_acheminement": "CHAMPIGNEUL SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08099"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce0b739cbb2ceadc95935f73aa3a1d70145acb9", "fields": {"nom_de_la_commune": "BEAUMONT EN ARGONNE", "libell_d_acheminement": "BEAUMONT EN ARGONNE", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08055"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b480491a741ea6ad90bdff9b3e829dfd20a14f17", "fields": {"nom_de_la_commune": "CHATEL CHEHERY", "libell_d_acheminement": "CHATEL CHEHERY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08109"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602333f7ac1a00285754d1906a3b2bcdf79dff38", "fields": {"nom_de_la_commune": "CHAMPIGNEULLE", "libell_d_acheminement": "CHAMPIGNEULLE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08098"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b649e956c19ac1248e60ee48740bd585888e1214", "fields": {"nom_de_la_commune": "BOULZICOURT", "libell_d_acheminement": "BOULZICOURT", "code_postal": "08410", "coordonnees_gps": [49.6898598982, 4.69790888092], "code_commune_insee": "08076"}, "geometry": {"type": "Point", "coordinates": [4.69790888092, 49.6898598982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2d1921474c21d558125cb74aa6306c595169f2", "fields": {"nom_de_la_commune": "BREVILLY", "libell_d_acheminement": "BREVILLY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08083"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101a7472cb03a584d7b7ed91f7413953cecf43ab", "fields": {"nom_de_la_commune": "CHAMPLIN", "libell_d_acheminement": "CHAMPLIN", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08100"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664cb8dd7d5f0b1ac7830ac86660ce246d77159f", "fields": {"nom_de_la_commune": "BARBAISE", "libell_d_acheminement": "BARBAISE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08047"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7ec68bf3c1ed5d5e079ad2100e309e3c0d1ae6", "fields": {"nom_de_la_commune": "BLAGNY", "libell_d_acheminement": "BLAGNY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08067"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d75181d5caaebe3faa9eafe787964cc24a7933", "fields": {"nom_de_la_commune": "AUTRY", "libell_d_acheminement": "AUTRY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08036"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6f0b6f01a021e74c8e6a31370fd7ab1f4197eb", "fields": {"code_postal": "08800", "code_commune_insee": "08218", "libell_d_acheminement": "LES HAUTES RIVIERES", "ligne_5": "LINCHAMPS", "nom_de_la_commune": "LES HAUTES RIVIERES", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab826aa992a87fa14ce61fad94db6febf8e3e5c", "fields": {"code_postal": "08250", "code_commune_insee": "08198", "libell_d_acheminement": "GRANDPRE", "ligne_5": "TERMES", "nom_de_la_commune": "GRANDPRE", "coordonnees_gps": [49.3052152829, 4.87924744188]}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1567f6e5adc72bbb86db83d37494347b75c14137", "fields": {"nom_de_la_commune": "HAM SUR MEUSE", "libell_d_acheminement": "HAM SUR MEUSE", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08207"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45b907c48a7d48e20f577a2dd221ce88eaabb281", "fields": {"nom_de_la_commune": "GIRONDELLE", "libell_d_acheminement": "GIRONDELLE", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08189"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17622fecbd87e1278b663d17170eb784f4901bdc", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08196"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28161348b0b27b6104fa00fc525dc75169c1dbe5", "fields": {"nom_de_la_commune": "GRANDPRE", "libell_d_acheminement": "GRANDPRE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08198"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b42083557a5d07b5dc03256793987da0d76d87b", "fields": {"nom_de_la_commune": "GIVET", "libell_d_acheminement": "GIVET", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08190"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78718ff31adf475f39f46bf40a38785243562bcc", "fields": {"code_postal": "83270", "code_commune_insee": "83112", "libell_d_acheminement": "ST CYR SUR MER", "ligne_5": "LA MADRAGUE", "nom_de_la_commune": "ST CYR SUR MER", "coordonnees_gps": [43.1726377038, 5.70862543611]}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd45807e38b9330fb00516f66ba0aa2e3d62725", "fields": {"code_postal": "83270", "code_commune_insee": "83112", "libell_d_acheminement": "ST CYR SUR MER", "ligne_5": "LES BAUMELLES", "nom_de_la_commune": "ST CYR SUR MER", "coordonnees_gps": [43.1726377038, 5.70862543611]}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa78ece321d3e5b8224900d73b6b884c02e52e3", "fields": {"nom_de_la_commune": "ST PAUL EN FORET", "libell_d_acheminement": "ST PAUL EN FORET", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83117"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea42efb94f054d7d0aa6f59fc9baab3dd373f3a", "fields": {"nom_de_la_commune": "SEILLONS SOURCE D ARGENS", "libell_d_acheminement": "SEILLONS SOURCE D ARGENS", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83125"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc3aecbf537674599de43fb289b88274a77ebfb", "fields": {"code_postal": "83500", "code_commune_insee": "83126", "libell_d_acheminement": "LA SEYNE SUR MER", "ligne_5": "TAMARIS SUR MER", "nom_de_la_commune": "LA SEYNE SUR MER", "coordonnees_gps": [43.0889033839, 5.87071213216]}, "geometry": {"type": "Point", "coordinates": [5.87071213216, 43.0889033839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e036c3b9f84491e081a66e857b303b648c7340e", "fields": {"nom_de_la_commune": "SIX FOURS LES PLAGES", "libell_d_acheminement": "SIX FOURS LES PLAGES", "code_postal": "83140", "coordonnees_gps": [43.0867535374, 5.8292161637], "code_commune_insee": "83129"}, "geometry": {"type": "Point", "coordinates": [5.8292161637, 43.0867535374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c3ac20746ce65cd0168e520b6026c517a729e7", "fields": {"nom_de_la_commune": "TOURRETTES", "libell_d_acheminement": "TOURRETTES", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83138"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1210c52882b82fe312f849f5fca8f4a2f09bd366", "fields": {"nom_de_la_commune": "TOURVES", "libell_d_acheminement": "TOURVES", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83140"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4913a0ecce3e308c7650d20953fef0d5b7a5fa", "fields": {"code_postal": "83820", "code_commune_insee": "83152", "libell_d_acheminement": "RAYOL CANADEL SUR MER", "ligne_5": "CANADEL", "nom_de_la_commune": "RAYOL CANADEL SUR MER", "coordonnees_gps": [43.1644119646, 6.47547585523]}, "geometry": {"type": "Point", "coordinates": [6.47547585523, 43.1644119646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af42f233de15d18c17b48a7cffeefdad3f9ff38", "fields": {"nom_de_la_commune": "ST MANDRIER SUR MER", "libell_d_acheminement": "ST MANDRIER SUR MER", "code_postal": "83430", "coordonnees_gps": [43.0757575636, 5.92712583865], "code_commune_insee": "83153"}, "geometry": {"type": "Point", "coordinates": [5.92712583865, 43.0757575636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9770325c22bea73c4c83ac4fa07425aba9d6bc2", "fields": {"nom_de_la_commune": "ALTHEN DES PALUDS", "libell_d_acheminement": "ALTHEN DES PALUDS", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84001"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c931c5fd3ad307f4c20697ec239ac2c6649a75d9", "fields": {"nom_de_la_commune": "LA BASTIDONNE", "libell_d_acheminement": "LA BASTIDONNE", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84010"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5104c39e1de025c58e30efecd6b4349221af740b", "fields": {"nom_de_la_commune": "BEAUMONT DE PERTUIS", "libell_d_acheminement": "BEAUMONT DE PERTUIS", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84014"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2067320bbbb4035d271fe1206879416f1373545", "fields": {"nom_de_la_commune": "BLAUVAC", "libell_d_acheminement": "BLAUVAC", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84018"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "141150dfb713f252c1816c624248e5ae40bd10c7", "fields": {"nom_de_la_commune": "BONNIEUX", "libell_d_acheminement": "BONNIEUX", "code_postal": "84480", "coordonnees_gps": [43.8257511419, 5.32106039419], "code_commune_insee": "84020"}, "geometry": {"type": "Point", "coordinates": [5.32106039419, 43.8257511419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63332f07e932d8d1154bd02dd46128a72fd0b9d", "fields": {"nom_de_la_commune": "BRANTES", "libell_d_acheminement": "BRANTES", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84021"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de889962432adfd2464367e7fd53b27c5b507f5b", "fields": {"nom_de_la_commune": "CAMARET SUR AIGUES", "libell_d_acheminement": "CAMARET SUR AIGUES", "code_postal": "84850", "coordonnees_gps": [44.1751054201, 4.89624702232], "code_commune_insee": "84029"}, "geometry": {"type": "Point", "coordinates": [4.89624702232, 44.1751054201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb17ba4456e94333d0b874d04849f49a1967779", "fields": {"nom_de_la_commune": "CASTELLET", "libell_d_acheminement": "CASTELLET", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84033"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793f23a64cbbd613001ff2011ef4581fd8c895f5", "fields": {"nom_de_la_commune": "FAUCON", "libell_d_acheminement": "FAUCON", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84045"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050f83d6cb66c72a01ff70ab1613d53996becd03", "fields": {"nom_de_la_commune": "LAGARDE D APT", "libell_d_acheminement": "LAGARDE D APT", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84060"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bebf1f7f9cef72a701bfe7a47bfbd8c89c4931b", "fields": {"nom_de_la_commune": "MALEMORT DU COMTAT", "libell_d_acheminement": "MALEMORT DU COMTAT", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84070"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaf3e32cb7f2dbd6abc40948cbb9f6374ca21f2", "fields": {"nom_de_la_commune": "METHAMIS", "libell_d_acheminement": "METHAMIS", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84075"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5690ad0da683f9646ca887ad8fd721284ca2792f", "fields": {"nom_de_la_commune": "MODENE", "libell_d_acheminement": "MODENE", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84077"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceddf9f03c41c13e3f1e3f02217d6ff653f3c7f5", "fields": {"nom_de_la_commune": "MURS", "libell_d_acheminement": "MURS", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84085"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855dd2a96dde659faaa3d581783e19e13ed6504a", "fields": {"nom_de_la_commune": "LA ROQUE ALRIC", "libell_d_acheminement": "LA ROQUE ALRIC", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84100"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49549b00499cb9df421fd1ca86c8c2bfb65f880f", "fields": {"nom_de_la_commune": "LA ROQUE SUR PERNES", "libell_d_acheminement": "LA ROQUE SUR PERNES", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84101"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b48e14beca78bbe8d44c02e9549c81ef80adcd", "fields": {"nom_de_la_commune": "SAIGNON", "libell_d_acheminement": "SAIGNON", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84105"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ec1c3c001751345c312755883af011e1f935a8", "fields": {"nom_de_la_commune": "UCHAUX", "libell_d_acheminement": "UCHAUX", "code_postal": "84100", "coordonnees_gps": [44.1461192195, 4.80873017728], "code_commune_insee": "84135"}, "geometry": {"type": "Point", "coordinates": [4.80873017728, 44.1461192195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0078e8824728cd78aa89b5bd2f5e20f53c458aa4", "fields": {"nom_de_la_commune": "VALREAS", "libell_d_acheminement": "VALREAS", "code_postal": "84600", "coordonnees_gps": [44.3773036634, 4.97155340684], "code_commune_insee": "84138"}, "geometry": {"type": "Point", "coordinates": [4.97155340684, 44.3773036634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d80623ef3136683d1c646ffcb9a2d61b3b6a590a", "fields": {"nom_de_la_commune": "VAUGINES", "libell_d_acheminement": "VAUGINES", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84140"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6cc89b899b1058a938a0db02385a79c0b878511", "fields": {"nom_de_la_commune": "VEDENE", "libell_d_acheminement": "VEDENE", "code_postal": "84270", "coordonnees_gps": [43.9708818844, 4.90310629122], "code_commune_insee": "84141"}, "geometry": {"type": "Point", "coordinates": [4.90310629122, 43.9708818844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210b4f3b92956e91cff7a0c676cb9da6c94ea52c", "fields": {"nom_de_la_commune": "BAZOGES EN PAILLERS", "libell_d_acheminement": "BAZOGES EN PAILLERS", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85013"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e6462af1c60b561322e4a72545e9686385ae3e", "fields": {"nom_de_la_commune": "BEAULIEU SOUS LA ROCHE", "libell_d_acheminement": "BEAULIEU SOUS LA ROCHE", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85016"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5a5460185ebce885a6a5208295162bdd474219", "fields": {"nom_de_la_commune": "BESSAY", "libell_d_acheminement": "BESSAY", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85023"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df79245eb6e7b3ac0129f4c1f617836dee9ffef", "fields": {"nom_de_la_commune": "BOUILLE COURDAULT", "libell_d_acheminement": "BOUILLE COURDAULT", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85028"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d27927c626b4e0e37a6425118f60e04b48abdffc", "fields": {"nom_de_la_commune": "LES BROUZILS", "libell_d_acheminement": "LES BROUZILS", "code_postal": "85260", "coordonnees_gps": [46.8968914818, -1.35853673733], "code_commune_insee": "85038"}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93749a1862c14c128fefcc8ba1a413229fad23a", "fields": {"code_postal": "85450", "code_commune_insee": "85042", "libell_d_acheminement": "CHAILLE LES MARAIS", "ligne_5": "SABLEAU", "nom_de_la_commune": "CHAILLE LES MARAIS", "coordonnees_gps": [46.3816104965, -1.06555900366]}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48945b8e6a33c56ff0c2f56c35122cb7f9527f4d", "fields": {"nom_de_la_commune": "CHALLANS", "libell_d_acheminement": "CHALLANS", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85047"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e8f30333a1a0b0944ba1fc99bb3e56d62e2217", "fields": {"nom_de_la_commune": "CHASNAIS", "libell_d_acheminement": "CHASNAIS", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85058"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0690a36d7f805dd8654ac0cb1f60ba3d8dc6b6", "fields": {"nom_de_la_commune": "CHEFFOIS", "libell_d_acheminement": "CHEFFOIS", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85067"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779615e55ed8601f3dc643a34383b483d08fd7e6", "fields": {"nom_de_la_commune": "CURZON", "libell_d_acheminement": "CURZON", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85077"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe44b8f09c54e1442f5c5844c8b5b03c788d460c", "fields": {"nom_de_la_commune": "DOIX LES FONTAINES", "libell_d_acheminement": "DOIX LES FONTAINES", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85080"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9344e6f8bcc5830792b2e89ee7195b1225ce997", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "LA FLOCELLIERE", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f8f74e6fa4fbb362d08d701d01a2de96302face", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "LES CHATELLIERS CHATEAUMUR", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc5f38af48f8a1bd7809bf6732ecd975196e183", "fields": {"code_postal": "85200", "code_commune_insee": "85092", "libell_d_acheminement": "FONTENAY LE COMTE", "ligne_5": "ST MEDARD DES PRES", "nom_de_la_commune": "FONTENAY LE COMTE", "coordonnees_gps": [46.4730274645, -0.80431270427]}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd54a3d6d01a429e7a800e0c963802d030e88ab", "fields": {"nom_de_la_commune": "LE GIROUARD", "libell_d_acheminement": "LE GIROUARD", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85099"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28716ff2df21f21d6e295b424b8e4ddf363e055", "fields": {"nom_de_la_commune": "LA GUYONNIERE", "libell_d_acheminement": "LA GUYONNIERE", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85107"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f1938bea3dcd47c11edb0dabb081fe02e72c1", "fields": {"nom_de_la_commune": "L ILE D ELLE", "libell_d_acheminement": "L ILE D ELLE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85111"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c06ee5ed7b8bdc60239f9344a79d50345f2a275", "fields": {"nom_de_la_commune": "LAIROUX", "libell_d_acheminement": "LAIROUX", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85117"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d575675898d9663e356925679745e536a773d6", "fields": {"nom_de_la_commune": "LES LUCS SUR BOULOGNE", "libell_d_acheminement": "LES LUCS SUR BOULOGNE", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85129"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918fde39fe72da0ab6be6c19bfa63444043a2f23", "fields": {"nom_de_la_commune": "MENOMBLET", "libell_d_acheminement": "MENOMBLET", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85141"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0420d71d1d34fb435f9076551794d4e8bbf25db3", "fields": {"nom_de_la_commune": "MERVENT", "libell_d_acheminement": "MERVENT", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85143"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68ceea505c009f28e16bdaa3ee990a06686e5ec", "fields": {"nom_de_la_commune": "CHERY LES POUILLY", "libell_d_acheminement": "CHERY LES POUILLY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02180"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26afb0050aa925bdeea8cb6d974cb6b841d7738", "fields": {"nom_de_la_commune": "CHARLY SUR MARNE", "libell_d_acheminement": "CHARLY SUR MARNE", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02163"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318c943937982ec63b115d5308630866caa37013", "fields": {"nom_de_la_commune": "CHEZY EN ORXOIS", "libell_d_acheminement": "CHEZY EN ORXOIS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02185"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f6602c7773a24f81f96380790f3fff99dd2eed", "fields": {"nom_de_la_commune": "CHERY LES ROZOY", "libell_d_acheminement": "CHERY LES ROZOY", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02181"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb4d2c4b4334a873319c10657c78229ebe82ad1", "fields": {"nom_de_la_commune": "CHATEAU THIERRY", "libell_d_acheminement": "CHATEAU THIERRY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02168"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e37c931ffb2c50ab40247b6d73005bfa676e26", "fields": {"nom_de_la_commune": "CONTESCOURT", "libell_d_acheminement": "CONTESCOURT", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02214"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8faa1a403f4fe219e1c09bebdd47b366c705189", "fields": {"nom_de_la_commune": "CHARTEVES", "libell_d_acheminement": "CHARTEVES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02166"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9139a82fdf656b1ac8dd203cf496e0440623b400", "fields": {"nom_de_la_commune": "CHAOURSE", "libell_d_acheminement": "CHAOURSE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02160"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044583b21de64faf5c55f3df46a4da62c96610ad", "fields": {"nom_de_la_commune": "CLAMECY", "libell_d_acheminement": "CLAMECY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02198"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cebe8a9619f44326bc0e9b19eac4443a9f6817f7", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "SONGIEU", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68171707b7f538edecc4274d1129b54c56570120", "fields": {"nom_de_la_commune": "BEARD GEOVREISSIAT", "libell_d_acheminement": "BEARD GEOVREISSIAT", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01170"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1528bfa1b13d449b3744bffbaf23c706cde1c672", "fields": {"nom_de_la_commune": "GRAND CORENT", "libell_d_acheminement": "GRAND CORENT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01177"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dfd32d7a6a63d15b9c8bd861316f7afc7244717", "fields": {"nom_de_la_commune": "LESCHEROUX", "libell_d_acheminement": "LESCHEROUX", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01212"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5b6e2d72686e72bfd12379207f586563fc010b", "fields": {"nom_de_la_commune": "LOYETTES", "libell_d_acheminement": "LOYETTES", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01224"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fd31c5500db878b9e7ce6cf50e078089f4feae", "fields": {"nom_de_la_commune": "LANTENAY", "libell_d_acheminement": "LANTENAY", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01206"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ec03122b9df409b7dc042f1acb939168ff3cd6", "fields": {"nom_de_la_commune": "LHOPITAL", "libell_d_acheminement": "LHOPITAL", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01215"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd03690fbde75e1a9b7616a6ea0b2ba17d429ed", "fields": {"nom_de_la_commune": "LOCHIEU", "libell_d_acheminement": "LOCHIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01218"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc88e7cc0ad1525427b80f223275065cc891f88", "fields": {"nom_de_la_commune": "FRANS", "libell_d_acheminement": "FRANS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01166"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c33f22972d6d62ec54a1fb50ba00e13b14f3a55", "fields": {"nom_de_la_commune": "GIRON", "libell_d_acheminement": "GIRON", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01174"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8c60c1b51da63e50cff33759e3bfd86623e1ef", "fields": {"code_postal": "01360", "code_commune_insee": "01032", "libell_d_acheminement": "BELIGNEUX", "ligne_5": "LA VALBONNE", "nom_de_la_commune": "BELIGNEUX", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a677d3b331cbd3926caad3a8c569b0fb187435", "fields": {"nom_de_la_commune": "BAGE LA VILLE", "libell_d_acheminement": "BAGE LA VILLE", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01025"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ce3609c920d3866977b4bb4224d23cc6e48b7c", "fields": {"nom_de_la_commune": "ANGLEFORT", "libell_d_acheminement": "ANGLEFORT", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01010"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16229fd0e0f915431725a196cb9ebab4f0325e85", "fields": {"nom_de_la_commune": "BEREZIAT", "libell_d_acheminement": "BEREZIAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01040"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "916830e5b32a943f11b0469d241a18eeb5e91cbc", "fields": {"nom_de_la_commune": "AMBRONAY", "libell_d_acheminement": "AMBRONAY", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01007"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332a5bf895a2d36de321fa36a84460ff5775a620", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01011"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde0b07849574c62de3c3f170ece87aea51b90ff", "fields": {"nom_de_la_commune": "ARBIGNY", "libell_d_acheminement": "ARBIGNY", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01016"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32611bad5377347300b5be82e9d388ff9bf44652", "fields": {"nom_de_la_commune": "BANEINS", "libell_d_acheminement": "BANEINS", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01028"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f472debf3de6d002382363d4bf53f4c2bdb6be92", "fields": {"nom_de_la_commune": "BALAN", "libell_d_acheminement": "BALAN", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01027"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d9117fcfb933de3c7ce6d5f5602589e8994553", "fields": {"nom_de_la_commune": "BEY", "libell_d_acheminement": "BEY", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01042"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0447269ff48ff0d2e3cbced74fac2409c29c301a", "fields": {"nom_de_la_commune": "CHAVANNES SUR REYSSOUZE", "libell_d_acheminement": "CHAVANNES SUR REYSSOUZE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01094"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e4dd6756e1c8d311e639a7aa2767ca8849b109f", "fields": {"nom_de_la_commune": "CHAMPAGNE EN VALROMEY", "libell_d_acheminement": "CHAMPAGNE EN VALROMEY", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01079"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac81e78f6b5cc1d13c50ec70f9708b66f3359b69", "fields": {"nom_de_la_commune": "CHATEAU GAILLARD", "libell_d_acheminement": "CHATEAU GAILLARD", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01089"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263c1fa60dbea9308340dd9cdc65eb370ee67390", "fields": {"nom_de_la_commune": "LA BOISSE", "libell_d_acheminement": "LA BOISSE", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01049"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "739e327bb2726ac342a2ce967ecfb572824b37f3", "fields": {"nom_de_la_commune": "CERTINES", "libell_d_acheminement": "CERTINES", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01069"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603b1ff40023390cf2e1f312442a6b56f8bc0f32", "fields": {"nom_de_la_commune": "CIVRIEUX", "libell_d_acheminement": "CIVRIEUX", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01105"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121e70e008f098abc296134455f4236e0683aad0", "fields": {"nom_de_la_commune": "BEYNOST", "libell_d_acheminement": "BEYNOST", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01043"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8e882cfaf703502acd234584178db00bab34b6", "fields": {"nom_de_la_commune": "BILLIAT", "libell_d_acheminement": "BILLIAT", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01044"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5950c0ff3f4aef6b305d6c5151c6afd7a436122", "fields": {"nom_de_la_commune": "BRIORD", "libell_d_acheminement": "BRIORD", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01064"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659d943c1ca48560be10217f00dd9cb1a08dcced", "fields": {"nom_de_la_commune": "BRENOD", "libell_d_acheminement": "BRENOD", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01060"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310f98fc35dc313af282b6ce67c4bb4fd0487546", "fields": {"code_postal": "01300", "code_commune_insee": "01286", "libell_d_acheminement": "PARVES ET NATTAGES", "ligne_5": "NATTAGES", "nom_de_la_commune": "PARVES ET NATTAGES", "coordonnees_gps": [45.7328309975, 5.65715901636]}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3508a3bff29824b90057ed70d710c3a7a0bb0a2f", "fields": {"code_postal": "01280", "code_commune_insee": "01313", "libell_d_acheminement": "PREVESSIN MOENS", "ligne_5": "MOENS", "nom_de_la_commune": "PREVESSIN MOENS", "coordonnees_gps": [46.2579919706, 6.07173985899]}, "geometry": {"type": "Point", "coordinates": [6.07173985899, 46.2579919706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e1ea314f38dd70900aa063aa794222c045ac67b", "fields": {"code_postal": "01100", "code_commune_insee": "01283", "libell_d_acheminement": "OYONNAX", "ligne_5": "BOUVENT", "nom_de_la_commune": "OYONNAX", "coordonnees_gps": [46.2468792013, 5.65226081977]}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e73c889b866bbd7fe510c996b8099456facb1d8", "fields": {"nom_de_la_commune": "PREVESSIN MOENS", "libell_d_acheminement": "PREVESSIN MOENS", "code_postal": "01280", "coordonnees_gps": [46.2579919706, 6.07173985899], "code_commune_insee": "01313"}, "geometry": {"type": "Point", "coordinates": [6.07173985899, 46.2579919706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd994f5003c8a4bfc9f2f8f4ac46590473a62b7", "fields": {"nom_de_la_commune": "LE PLANTAY", "libell_d_acheminement": "LE PLANTAY", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01299"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb64009380d3d2090bbaf3aab49fbc5752e24e9", "fields": {"nom_de_la_commune": "REYRIEUX", "libell_d_acheminement": "REYRIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01322"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f371ce98188dc5723ead0c41f8b4d2456f0c55c6", "fields": {"nom_de_la_commune": "RAMASSE", "libell_d_acheminement": "RAMASSE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01317"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d65963de7a7d60b738514119a791123a3e3bd0", "fields": {"nom_de_la_commune": "OYONNAX", "libell_d_acheminement": "OYONNAX", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01283"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff96b158c135a27d08758126962910802ce2644f", "fields": {"nom_de_la_commune": "PERREX", "libell_d_acheminement": "PERREX", "code_postal": "01540", "coordonnees_gps": [46.2212986861, 4.98198011208], "code_commune_insee": "01291"}, "geometry": {"type": "Point", "coordinates": [4.98198011208, 46.2212986861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f7f7208835b0fb24cba516620addab7dbadf9d", "fields": {"nom_de_la_commune": "LA BASTIDE", "libell_d_acheminement": "LA BASTIDE", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83013"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23cc66724e94109b95528877123d9f46b79ed329", "fields": {"nom_de_la_commune": "BAUDUEN", "libell_d_acheminement": "BAUDUEN", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83015"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90007d75ea73e411b60d4070a0922bc47c8a902", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "STE ANNE DU CASTELLET", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f068599fe69e91d5fffe73175714906bb66d07cd", "fields": {"nom_de_la_commune": "CHATEAUDOUBLE", "libell_d_acheminement": "CHATEAUDOUBLE", "code_postal": "83300", "coordonnees_gps": [43.574421442, 6.44637854358], "code_commune_insee": "83038"}, "geometry": {"type": "Point", "coordinates": [6.44637854358, 43.574421442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85db808855b2a5d7cfa4d47834c1fbc9b7b82fe3", "fields": {"nom_de_la_commune": "CHATEAUVERT", "libell_d_acheminement": "CHATEAUVERT", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83039"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab531e4f762e150020987828e3f27f58491a2fe", "fields": {"nom_de_la_commune": "COTIGNAC", "libell_d_acheminement": "COTIGNAC", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83046"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0771fdc172726b8068be9fcb3354ac496f124678", "fields": {"nom_de_la_commune": "LA CROIX VALMER", "libell_d_acheminement": "LA CROIX VALMER", "code_postal": "83420", "coordonnees_gps": [43.1956754103, 6.5853396294], "code_commune_insee": "83048"}, "geometry": {"type": "Point", "coordinates": [6.5853396294, 43.1956754103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ee828ca656c0fe6620748d5b35ddedd937368c", "fields": {"nom_de_la_commune": "ENTRECASTEAUX", "libell_d_acheminement": "ENTRECASTEAUX", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83051"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54b4b5841c4021380d50f5ff6482083fc0a6bc74", "fields": {"nom_de_la_commune": "LA FARLEDE", "libell_d_acheminement": "LA FARLEDE", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83054"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed5cb9a5b4584dcbee52a5803eea22085556f0f", "fields": {"nom_de_la_commune": "FIGANIERES", "libell_d_acheminement": "FIGANIERES", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83056"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69118e1578262c2501e0ee6369510ee44be7af56", "fields": {"nom_de_la_commune": "FLAYOSC", "libell_d_acheminement": "FLAYOSC", "code_postal": "83780", "coordonnees_gps": [43.5421689584, 6.36328677589], "code_commune_insee": "83058"}, "geometry": {"type": "Point", "coordinates": [6.36328677589, 43.5421689584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76b04bd65edf2ff4fc49cae23918f1c69d1c8b8", "fields": {"nom_de_la_commune": "FORCALQUEIRET", "libell_d_acheminement": "FORCALQUEIRET", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83059"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af97281324cb0ebf1608c774da95d769693099e", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "GIENS", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80063aa1ed8af2f54a8d73121a3edf19f796812", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "LES SALINS D HYERES", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca170a616125a08f0905df9d3b2d3be31aa3e0b9", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "PORT CROS", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ddbd341ad757cab3f5b8e71114d0164daf1727c", "fields": {"nom_de_la_commune": "LE LUC", "libell_d_acheminement": "LE LUC", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83073"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81e9d5eae7d51bea44cbc1d908812deae48de9c", "fields": {"nom_de_la_commune": "LES MAYONS", "libell_d_acheminement": "LES MAYONS", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83075"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9f91cdaff076cfb09fa674698e033f8694c2ce", "fields": {"nom_de_la_commune": "MEOUNES LES MONTRIEUX", "libell_d_acheminement": "MEOUNES LES MONTRIEUX", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83077"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9acba4f83b724ff792e909f91cb13d3c16d0abea", "fields": {"nom_de_la_commune": "LA MOTTE", "libell_d_acheminement": "LA MOTTE", "code_postal": "83920", "coordonnees_gps": [43.5080153187, 6.55105685354], "code_commune_insee": "83085"}, "geometry": {"type": "Point", "coordinates": [6.55105685354, 43.5080153187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "367cfae45bdf291e10a2fdf14a79267f88177f9f", "fields": {"nom_de_la_commune": "PLAN D AUPS STE BAUME", "libell_d_acheminement": "PLAN D AUPS STE BAUME", "code_postal": "83640", "coordonnees_gps": [43.3568755159, 5.72816455305], "code_commune_insee": "83093"}, "geometry": {"type": "Point", "coordinates": [5.72816455305, 43.3568755159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34feee58dfa811186da98140f6183bcdea79bd7", "fields": {"nom_de_la_commune": "POURCIEUX", "libell_d_acheminement": "POURCIEUX", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83096"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5d60081064df04571f72f2de6ef6eb841d2f00", "fields": {"nom_de_la_commune": "LE PRADET", "libell_d_acheminement": "LE PRADET", "code_postal": "83220", "coordonnees_gps": [43.0999163534, 6.02750820464], "code_commune_insee": "83098"}, "geometry": {"type": "Point", "coordinates": [6.02750820464, 43.0999163534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d713d4912acfe8679ac5d73c5693c7cf00ee142", "fields": {"nom_de_la_commune": "RIANS", "libell_d_acheminement": "RIANS", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83104"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d32a99006bceb7df7d4c684f2d2881623e8ac60", "fields": {"nom_de_la_commune": "LA ROQUE ESCLAPON", "libell_d_acheminement": "LA ROQUE ESCLAPON", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83109"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0132ee5a6bdd03fbb06274c395e5995a6f69ab4b", "fields": {"nom_de_la_commune": "STE ANASTASIE SUR ISSOLE", "libell_d_acheminement": "STE ANASTASIE SUR ISSOLE", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83111"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47cd3f17ef90391b28d0f2daddced3e3a8118fa2", "fields": {"nom_de_la_commune": "SANARY SUR MER", "libell_d_acheminement": "SANARY SUR MER", "code_postal": "83110", "coordonnees_gps": [43.1387724085, 5.79572803908], "code_commune_insee": "83123"}, "geometry": {"type": "Point", "coordinates": [5.79572803908, 43.1387724085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38da695d3443bde4871782ff247c556d304e63b7", "fields": {"nom_de_la_commune": "SOLLIES PONT", "libell_d_acheminement": "SOLLIES PONT", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83130"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e86c296e355040ad885867f48e950c47c734d8", "fields": {"nom_de_la_commune": "TARADEAU", "libell_d_acheminement": "TARADEAU", "code_postal": "83460", "coordonnees_gps": [43.4531977218, 6.47549589741], "code_commune_insee": "83134"}, "geometry": {"type": "Point", "coordinates": [6.47549589741, 43.4531977218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb63e52a3663195bfd22568e9127452ff2145c8", "fields": {"nom_de_la_commune": "VINS SUR CARAMY", "libell_d_acheminement": "VINS SUR CARAMY", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83151"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc16006e0aac981532840ef3228b9659bdddc85c", "fields": {"nom_de_la_commune": "ST ANTONIN DU VAR", "libell_d_acheminement": "ST ANTONIN DU VAR", "code_postal": "83510", "coordonnees_gps": [43.4882924341, 6.34408995292], "code_commune_insee": "83154"}, "geometry": {"type": "Point", "coordinates": [6.34408995292, 43.4882924341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad3dde009891509406ac66c049b7c4b10886602", "fields": {"nom_de_la_commune": "APT", "libell_d_acheminement": "APT", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84003"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c8e4b9035243a1689dd496d572cbe83af1c926", "fields": {"nom_de_la_commune": "AUBIGNAN", "libell_d_acheminement": "AUBIGNAN", "code_postal": "84810", "coordonnees_gps": [44.0976163616, 5.03227736154], "code_commune_insee": "84004"}, "geometry": {"type": "Point", "coordinates": [5.03227736154, 44.0976163616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e129a8eb476be43d6793ae4d0e1aef7fd88a77", "fields": {"nom_de_la_commune": "AUREL", "libell_d_acheminement": "AUREL", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84005"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfbe4fcb7a5e6b89b56552813005fec58b65fac", "fields": {"nom_de_la_commune": "BEAUMETTES", "libell_d_acheminement": "BEAUMETTES", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84013"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f23aa1eeac82f84502a01e7d57abb53ad23c944", "fields": {"nom_de_la_commune": "BEAUMONT DU VENTOUX", "libell_d_acheminement": "BEAUMONT DU VENTOUX", "code_postal": "84340", "coordonnees_gps": [44.1923275684, 5.16748338542], "code_commune_insee": "84015"}, "geometry": {"type": "Point", "coordinates": [5.16748338542, 44.1923275684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37631091f1cc7bf4898641f8e40d041cc5474cf8", "fields": {"nom_de_la_commune": "BUISSON", "libell_d_acheminement": "BUISSON", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84022"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a44e9cb74d2d66cb5b5677721b2577eb3a0851", "fields": {"nom_de_la_commune": "CADENET", "libell_d_acheminement": "CADENET", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84026"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de2df0e6b633a23050f605876e4335139be02a8f", "fields": {"nom_de_la_commune": "CASENEUVE", "libell_d_acheminement": "CASENEUVE", "code_postal": "84750", "coordonnees_gps": [43.880271182, 5.52723627077], "code_commune_insee": "84032"}, "geometry": {"type": "Point", "coordinates": [5.52723627077, 43.880271182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0307254e4d45e7d1f46772b90e475dd11470042", "fields": {"nom_de_la_commune": "CAUMONT SUR DURANCE", "libell_d_acheminement": "CAUMONT SUR DURANCE", "code_postal": "84510", "coordonnees_gps": [43.8915775446, 4.95613093098], "code_commune_insee": "84034"}, "geometry": {"type": "Point", "coordinates": [4.95613093098, 43.8915775446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9a4d309a4ee2da5bb739eb7bd321bae20bc0db", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE GADAGNE", "libell_d_acheminement": "CHATEAUNEUF DE GADAGNE", "code_postal": "84470", "coordonnees_gps": [43.9279468427, 4.94298545759], "code_commune_insee": "84036"}, "geometry": {"type": "Point", "coordinates": [4.94298545759, 43.9279468427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba6978970395097c2bb54f23ffc7e562134a923", "fields": {"nom_de_la_commune": "CHATEAUNEUF DU PAPE", "libell_d_acheminement": "CHATEAUNEUF DU PAPE", "code_postal": "84230", "coordonnees_gps": [44.0602370328, 4.82723484316], "code_commune_insee": "84037"}, "geometry": {"type": "Point", "coordinates": [4.82723484316, 44.0602370328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd35d7d9ff6785427b0edb965ca008e71f1ed69", "fields": {"nom_de_la_commune": "COURTHEZON", "libell_d_acheminement": "COURTHEZON", "code_postal": "84350", "coordonnees_gps": [44.0868810229, 4.88193709084], "code_commune_insee": "84039"}, "geometry": {"type": "Point", "coordinates": [4.88193709084, 44.0868810229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef6ba202c46d67e73615f7e121c5be315227775", "fields": {"nom_de_la_commune": "CUCURON", "libell_d_acheminement": "CUCURON", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84042"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8556489a912abdf3b356dfac6d5b31847d8b71e", "fields": {"nom_de_la_commune": "ENTRECHAUX", "libell_d_acheminement": "ENTRECHAUX", "code_postal": "84340", "coordonnees_gps": [44.1923275684, 5.16748338542], "code_commune_insee": "84044"}, "geometry": {"type": "Point", "coordinates": [5.16748338542, 44.1923275684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b13486ae5c6800cdb73b89ca19f6a83701642be", "fields": {"nom_de_la_commune": "GRAMBOIS", "libell_d_acheminement": "GRAMBOIS", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84052"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2227ed4dbef124caf023832fdf50e58a43388bd", "fields": {"nom_de_la_commune": "GRILLON", "libell_d_acheminement": "GRILLON", "code_postal": "84600", "coordonnees_gps": [44.3773036634, 4.97155340684], "code_commune_insee": "84053"}, "geometry": {"type": "Point", "coordinates": [4.97155340684, 44.3773036634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0bc7ccc9a80c3ff1a6377860ab5a62da5165c3", "fields": {"nom_de_la_commune": "LAURIS", "libell_d_acheminement": "LAURIS", "code_postal": "84360", "coordonnees_gps": [43.7644472633, 5.24997704663], "code_commune_insee": "84065"}, "geometry": {"type": "Point", "coordinates": [5.24997704663, 43.7644472633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab4c8d049f6b6f298b8f3424bda468cb38ab2f46", "fields": {"nom_de_la_commune": "MALAUCENE", "libell_d_acheminement": "MALAUCENE", "code_postal": "84340", "coordonnees_gps": [44.1923275684, 5.16748338542], "code_commune_insee": "84069"}, "geometry": {"type": "Point", "coordinates": [5.16748338542, 44.1923275684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e040710d9fed9c066dc020af0ee020a7534e3d1", "fields": {"nom_de_la_commune": "MENERBES", "libell_d_acheminement": "MENERBES", "code_postal": "84560", "coordonnees_gps": [43.8242647476, 5.22097372006], "code_commune_insee": "84073"}, "geometry": {"type": "Point", "coordinates": [5.22097372006, 43.8242647476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e610e2034cb43e710254a2577bc805ae742149", "fields": {"nom_de_la_commune": "MONTEUX", "libell_d_acheminement": "MONTEUX", "code_postal": "84170", "coordonnees_gps": [44.0338869082, 4.98488620571], "code_commune_insee": "84080"}, "geometry": {"type": "Point", "coordinates": [4.98488620571, 44.0338869082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf19a574224ddb9cffff2aa70bac186a75c87bd4", "fields": {"nom_de_la_commune": "PUYVERT", "libell_d_acheminement": "PUYVERT", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84095"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933515577fc76fd309ac93a7757e86c28da89d10", "fields": {"nom_de_la_commune": "RASTEAU", "libell_d_acheminement": "RASTEAU", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84096"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0f2ea83b309faff4d1daf25095edf047cae497", "fields": {"nom_de_la_commune": "RICHERENCHES", "libell_d_acheminement": "RICHERENCHES", "code_postal": "84600", "coordonnees_gps": [44.3773036634, 4.97155340684], "code_commune_insee": "84097"}, "geometry": {"type": "Point", "coordinates": [4.97155340684, 44.3773036634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ad76aa9103afcba71252a1f3a2763d36a24be8", "fields": {"nom_de_la_commune": "RUSTREL", "libell_d_acheminement": "RUSTREL", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84103"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a87a844c951cc7f0625c1a3ae421b4db9abb58", "fields": {"nom_de_la_commune": "STE CECILE LES VIGNES", "libell_d_acheminement": "STE CECILE LES VIGNES", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84106"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b5f87abd83b6467e0859f87ad4292a74dcf49a", "fields": {"nom_de_la_commune": "ST HIPPOLYTE LE GRAVEYRON", "libell_d_acheminement": "ST HIPPOLYTE LE GRAVEYRON", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84109"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997b79fa655b7c5296c82ca3062c4c166aef57c4", "fields": {"nom_de_la_commune": "ST MARCELLIN LES VAISON", "libell_d_acheminement": "ST MARCELLIN LES VAISON", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84111"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f4fcace52612e240bc0886daf0da4872f77468", "fields": {"nom_de_la_commune": "ST MARTIN DE LA BRASQUE", "libell_d_acheminement": "ST MARTIN DE LA BRASQUE", "code_postal": "84760", "coordonnees_gps": [43.7642887492, 5.53941013259], "code_commune_insee": "84113"}, "geometry": {"type": "Point", "coordinates": [5.53941013259, 43.7642887492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b782a24e00ebc2dd7152b8c266cc56a48d4187b9", "fields": {"nom_de_la_commune": "ST PIERRE DE VASSOLS", "libell_d_acheminement": "ST PIERRE DE VASSOLS", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84115"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d745746ceb0ff7cbf78dae627057020277dcb1", "fields": {"nom_de_la_commune": "ST TRINIT", "libell_d_acheminement": "ST TRINIT", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84120"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30239c3d928553084082dfc3910b3bcb8ebaaeea", "fields": {"nom_de_la_commune": "SANNES", "libell_d_acheminement": "SANNES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84121"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5464a5aefc36a6de66558872adece686ea05667", "fields": {"nom_de_la_commune": "SAULT", "libell_d_acheminement": "SAULT", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84123"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cbb15dabe2bb027724453806f01b035b1114af5", "fields": {"nom_de_la_commune": "SEGURET", "libell_d_acheminement": "SEGURET", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84126"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfbc527e365d8402d78873b5b2d2462afbbf8c26", "fields": {"nom_de_la_commune": "TRAVAILLAN", "libell_d_acheminement": "TRAVAILLAN", "code_postal": "84850", "coordonnees_gps": [44.1751054201, 4.89624702232], "code_commune_insee": "84134"}, "geometry": {"type": "Point", "coordinates": [4.89624702232, 44.1751054201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16b4e9fccab1ef98a6979ad17595f134735a1ad", "fields": {"nom_de_la_commune": "VACQUEYRAS", "libell_d_acheminement": "VACQUEYRAS", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84136"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d872c1a0b0715731b21738031a96421378651b", "fields": {"nom_de_la_commune": "VENASQUE", "libell_d_acheminement": "VENASQUE", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84143"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b768a8a7bce54368e66173e5aaadf9a1be2d17", "fields": {"nom_de_la_commune": "VIOLES", "libell_d_acheminement": "VIOLES", "code_postal": "84150", "coordonnees_gps": [44.1493241493, 4.92779558377], "code_commune_insee": "84149"}, "geometry": {"type": "Point", "coordinates": [4.92779558377, 44.1493241493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5c4fa0d104cdefdfcbd1784da623f338d8b7a3", "fields": {"nom_de_la_commune": "VISAN", "libell_d_acheminement": "VISAN", "code_postal": "84820", "coordonnees_gps": [44.3267341787, 4.94383549242], "code_commune_insee": "84150"}, "geometry": {"type": "Point", "coordinates": [4.94383549242, 44.3267341787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6905566275f16dd908b835717cec02dadbbcbfd4", "fields": {"nom_de_la_commune": "AIZENAY", "libell_d_acheminement": "AIZENAY", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85003"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030666b7aa83d147ad644d83adb4aa0d63b37324", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85006"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f180fd564322d756d139e8ba0c16e0b87a0ce601", "fields": {"code_postal": "85430", "code_commune_insee": "85008", "libell_d_acheminement": "AUBIGNY LES CLOUZEAUX", "ligne_5": "LES CLOUZEAUX", "nom_de_la_commune": "AUBIGNY LES CLOUZEAUX", "coordonnees_gps": [46.5767007042, -1.4774062897]}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4370ef6bb5ade0e34c3fe103913cca9250768df", "fields": {"nom_de_la_commune": "AVRILLE", "libell_d_acheminement": "AVRILLE", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85010"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4a52b4f025ee0b8c2701e59b71fde169dea1f1", "fields": {"code_postal": "85550", "code_commune_insee": "85012", "libell_d_acheminement": "LA BARRE DE MONTS", "ligne_5": "FROMENTINE", "nom_de_la_commune": "LA BARRE DE MONTS", "coordonnees_gps": [46.8721318025, -2.10134483894]}, "geometry": {"type": "Point", "coordinates": [-2.10134483894, 46.8721318025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad34e9498304f1f465ad00ee1336bbf8814c062b", "fields": {"nom_de_la_commune": "BEAUFOU", "libell_d_acheminement": "BEAUFOU", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85015"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2002f27eb33f6d17327488034f1635c307ccaa76", "fields": {"nom_de_la_commune": "LA BOISSIERE DE MONTAIGU", "libell_d_acheminement": "LA BOISSIERE DE MONTAIGU", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85025"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ee771d21610372afc3b3d58c2868decd68b281", "fields": {"nom_de_la_commune": "LA BOISSIERE DES LANDES", "libell_d_acheminement": "LA BOISSIERE DES LANDES", "code_postal": "85430", "coordonnees_gps": [46.5767007042, -1.4774062897], "code_commune_insee": "85026"}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ac7a9fb3cae3d5f1c31433c85afcab4ee1c1f3e", "fields": {"nom_de_la_commune": "BOUIN", "libell_d_acheminement": "BOUIN", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85029"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb56b1d07d1c261581fa4eec8251e65e9c5bc18", "fields": {"code_postal": "85320", "code_commune_insee": "85036", "libell_d_acheminement": "LA BRETONNIERE LA CLAYE", "ligne_5": "LA CLAYE", "nom_de_la_commune": "LA BRETONNIERE LA CLAYE", "coordonnees_gps": [46.544588242, -1.21560029511]}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e785af71f705deb1d317a1a280649e2e1c9705f", "fields": {"nom_de_la_commune": "LA BRUFFIERE", "libell_d_acheminement": "LA BRUFFIERE", "code_postal": "85530", "coordonnees_gps": [47.0147133622, -1.18319119935], "code_commune_insee": "85039"}, "geometry": {"type": "Point", "coordinates": [-1.18319119935, 47.0147133622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b4415ae19dbaa823e441a6dd38d5e3bc6b5b18", "fields": {"nom_de_la_commune": "LA CAILLERE ST HILAIRE", "libell_d_acheminement": "LA CAILLERE ST HILAIRE", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85040"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b243e9967791f4c5aa00990a63a4f658b33b4b84", "fields": {"code_postal": "85410", "code_commune_insee": "85040", "libell_d_acheminement": "LA CAILLERE ST HILAIRE", "ligne_5": "ST HILAIRE DU BOIS", "nom_de_la_commune": "LA CAILLERE ST HILAIRE", "coordonnees_gps": [46.5977381891, -0.875564546454]}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1723c2d1a8d89ec881805d65b0199377f0df7f2a", "fields": {"nom_de_la_commune": "CEZAIS", "libell_d_acheminement": "CEZAIS", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85041"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6539f5bb03126bfa01f0921ce6218c3a98a68113", "fields": {"nom_de_la_commune": "LA CHAIZE GIRAUD", "libell_d_acheminement": "LA CHAIZE GIRAUD", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85045"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52085392511711b56514bff596fbfe406660d93", "fields": {"nom_de_la_commune": "CHAMPAGNE LES MARAIS", "libell_d_acheminement": "CHAMPAGNE LES MARAIS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85049"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019def071a6312b30295e372d0deaa13c3d97263", "fields": {"code_postal": "85110", "code_commune_insee": "85051", "libell_d_acheminement": "CHANTONNAY", "ligne_5": "ST PHILBERT DU PONT CHARRAULT", "nom_de_la_commune": "CHANTONNAY", "coordonnees_gps": [46.7036383964, -1.03264404466]}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1beeeea23fd236524a9b590b90276083e6d7e17d", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX LYS", "libell_d_acheminement": "LA CHAPELLE AUX LYS", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85053"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86216e18c510a4ef153e500c030368f28f1cf5e8", "fields": {"nom_de_la_commune": "LA CHAPELLE HERMIER", "libell_d_acheminement": "LA CHAPELLE HERMIER", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85054"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b703bab3394e5bee2ca5fdca09fe5027a279433e", "fields": {"nom_de_la_commune": "LA CHAPELLE THEMER", "libell_d_acheminement": "LA CHAPELLE THEMER", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85056"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b156314739b3c6a99ef0c2937371c4c1bbcbd5", "fields": {"nom_de_la_commune": "LA CHATAIGNERAIE", "libell_d_acheminement": "LA CHATAIGNERAIE", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85059"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f10507e137a9b9a3bde6326af9dfc02e998e61", "fields": {"nom_de_la_commune": "CHATEAU GUIBERT", "libell_d_acheminement": "CHATEAU GUIBERT", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85061"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2f6bb9fcab799e5db4d2f142d4110a5826529b", "fields": {"nom_de_la_commune": "CHAVAGNES EN PAILLERS", "libell_d_acheminement": "CHAVAGNES EN PAILLERS", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85065"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "306226630c7ff105d4808030c59a7d24b0414cba", "fields": {"nom_de_la_commune": "LA COPECHAGNIERE", "libell_d_acheminement": "LA COPECHAGNIERE", "code_postal": "85260", "coordonnees_gps": [46.8968914818, -1.35853673733], "code_commune_insee": "85072"}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68348ddd6fd70d1a60e69b4f381c2e61b23d9c2", "fields": {"nom_de_la_commune": "CUGAND", "libell_d_acheminement": "CUGAND", "code_postal": "85610", "coordonnees_gps": [47.0477932643, -1.2636898898], "code_commune_insee": "85076"}, "geometry": {"type": "Point", "coordinates": [-1.2636898898, 47.0477932643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b8521da137f55412f86711a15dfbbba3c5bec6", "fields": {"nom_de_la_commune": "LES EPESSES", "libell_d_acheminement": "LES EPESSES", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85082"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cac2c4a2d522396f847d0717f566db00ea10e47", "fields": {"nom_de_la_commune": "FALLERON", "libell_d_acheminement": "FALLERON", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85086"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e85ee5f7ec64db6e7dc711fce21ffe095f717c", "fields": {"nom_de_la_commune": "FOUSSAIS PAYRE", "libell_d_acheminement": "FOUSSAIS PAYRE", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85094"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e5ddb031247deb242b1abf249c3feaf9b077e8", "fields": {"nom_de_la_commune": "GIVRAND", "libell_d_acheminement": "GIVRAND", "code_postal": "85800", "coordonnees_gps": [46.6993264019, -1.89528926065], "code_commune_insee": "85100"}, "geometry": {"type": "Point", "coordinates": [-1.89528926065, 46.6993264019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cefbd0977589e50a33ca807ce798a85bbdd08d1e", "fields": {"nom_de_la_commune": "GROSBREUIL", "libell_d_acheminement": "GROSBREUIL", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85103"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5600abf61bf4b7ad6e0a7b74f30c5adcbec9a8c", "fields": {"nom_de_la_commune": "GRUES", "libell_d_acheminement": "GRUES", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85104"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0e80790f88cfc3d24b1e883e0ea649c95463e18", "fields": {"nom_de_la_commune": "L ILE D OLONNE", "libell_d_acheminement": "L ILE D OLONNE", "code_postal": "85340", "coordonnees_gps": [46.5499182477, -1.78394732739], "code_commune_insee": "85112"}, "geometry": {"type": "Point", "coordinates": [-1.78394732739, 46.5499182477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9b7e186a54acb388654c1f69b5561a854dc617", "fields": {"nom_de_la_commune": "SOLLIERES SARDIERES", "libell_d_acheminement": "SOLLIERES SARDIERES", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73287"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354eb5dce7c7490d385ce706b0fa29b3c0c515ad", "fields": {"nom_de_la_commune": "TOURS EN SAVOIE", "libell_d_acheminement": "TOURS EN SAVOIE", "code_postal": "73790", "coordonnees_gps": [45.6664303306, 6.461393526], "code_commune_insee": "73298"}, "geometry": {"type": "Point", "coordinates": [6.461393526, 45.6664303306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32bf43068ced5160b48563dd4631f66e5532811e", "fields": {"nom_de_la_commune": "TRAIZE", "libell_d_acheminement": "TRAIZE", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73299"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f424873bf29b2f3eaa75a2b1d56599bc7e905e17", "fields": {"nom_de_la_commune": "UGINE", "libell_d_acheminement": "UGINE", "code_postal": "73400", "coordonnees_gps": [45.7638408088, 6.43638316061], "code_commune_insee": "73303"}, "geometry": {"type": "Point", "coordinates": [6.43638316061, 45.7638408088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789e2d58f2c32f0b9640d2585251193245a89f17", "fields": {"nom_de_la_commune": "VENTHON", "libell_d_acheminement": "VENTHON", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73308"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d77eb721a5ea115a76adbb48b67ef9710797ff62", "fields": {"nom_de_la_commune": "VEREL DE MONTBEL", "libell_d_acheminement": "VEREL DE MONTBEL", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73309"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db38626574c85df5ddd17e9d7a75c6050c46c17", "fields": {"nom_de_la_commune": "VILLARGONDRAN", "libell_d_acheminement": "VILLARGONDRAN", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73320"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5cfb1d5c48f8fede80f0f173cbb428c8577510", "fields": {"nom_de_la_commune": "VIONS", "libell_d_acheminement": "VIONS", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73327"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0823c72bf358f2ffb5e2ca53e44d07c2443146e", "fields": {"nom_de_la_commune": "ALEX", "libell_d_acheminement": "ALEX", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74003"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80615315c392562b4017a502f85c7ee77d82ee2e", "fields": {"nom_de_la_commune": "ARCHAMPS", "libell_d_acheminement": "ARCHAMPS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74016"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b22902cc794c671f697bb7c74374877cc0f3f9b", "fields": {"nom_de_la_commune": "ARMOY", "libell_d_acheminement": "ARMOY", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74020"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee3fe7a1ad9f26134cc17566b75bb05ab5bc3d8", "fields": {"nom_de_la_commune": "ARTHAZ PONT NOTRE DAME", "libell_d_acheminement": "ARTHAZ PONT NOTRE DAME", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74021"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3908f14f25114d5372d66265f6912cc49a898360", "fields": {"nom_de_la_commune": "AYSE", "libell_d_acheminement": "AYSE", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74024"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f3da053db275cc80c31f93bf0bf31ae25c770e", "fields": {"nom_de_la_commune": "BALLAISON", "libell_d_acheminement": "BALLAISON", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74025"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b87d7c8e618b2714700c8c1da7dd25b5ad837f0", "fields": {"nom_de_la_commune": "LA BALME DE THUY", "libell_d_acheminement": "LA BALME DE THUY", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74027"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1cdbe5984a9124ac6a491dfad9fda0c41e2ed15", "fields": {"nom_de_la_commune": "LA BAUME", "libell_d_acheminement": "LA BAUME", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74030"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099e3499a0f793a97960ad282b79d53433d27d79", "fields": {"nom_de_la_commune": "BERNEX", "libell_d_acheminement": "BERNEX", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74033"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3a9ee70ef1080ce8f239d0fdb2be0b754cce46", "fields": {"nom_de_la_commune": "BOEGE", "libell_d_acheminement": "BOEGE", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74037"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90a25093731035d716af6eba6b2b3bd64962fdf", "fields": {"nom_de_la_commune": "BONNEVAUX", "libell_d_acheminement": "BONNEVAUX", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74041"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee0fc66086081f5653f871d8661495c5ac237fc", "fields": {"nom_de_la_commune": "BONS EN CHABLAIS", "libell_d_acheminement": "BONS EN CHABLAIS", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74043"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e544a647c50f01277d5d3ed7b83aadb5780960af", "fields": {"nom_de_la_commune": "BOUSSY", "libell_d_acheminement": "BOUSSY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74046"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c042336e1c99d0cbcdcaa4d1a26887d559516a2e", "fields": {"code_postal": "74400", "code_commune_insee": "74056", "libell_d_acheminement": "CHAMONIX MONT BLANC", "ligne_5": "LES BOSSONS", "nom_de_la_commune": "CHAMONIX MONT BLANC", "coordonnees_gps": [45.931307263, 6.92411845534]}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330a5e463a8c78ef61cf23e92a1f77c0c8d33f86", "fields": {"nom_de_la_commune": "LA CHAPELLE RAMBAUD", "libell_d_acheminement": "LA CHAPELLE RAMBAUD", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74059"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b6c53ff3597d5829cfcfdc6ae3df2465b3f875", "fields": {"nom_de_la_commune": "CHATILLON SUR CLUSES", "libell_d_acheminement": "CHATILLON SUR CLUSES", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74064"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1f4b9bd1991b1bee30bff7cfe6d118034b71b4", "fields": {"nom_de_la_commune": "COMBLOUX", "libell_d_acheminement": "COMBLOUX", "code_postal": "74920", "coordonnees_gps": [45.8914249839, 6.63668541903], "code_commune_insee": "74083"}, "geometry": {"type": "Point", "coordinates": [6.63668541903, 45.8914249839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae89a7f0980b689ee84364cb2c4c9b1264df843", "fields": {"nom_de_la_commune": "CONTAMINE SARZIN", "libell_d_acheminement": "CONTAMINE SARZIN", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74086"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2bf1a8265db72fa390bf1e4f366e6bb358bb4b1", "fields": {"nom_de_la_commune": "CORDON", "libell_d_acheminement": "CORDON", "code_postal": "74700", "coordonnees_gps": [45.935449139, 6.60325360691], "code_commune_insee": "74089"}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e23c84175aa1b5e9ce8a6f62cf379e45b3d7a3", "fields": {"nom_de_la_commune": "CREMPIGNY BONNEGUETE", "libell_d_acheminement": "CREMPIGNY BONNEGUETE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74095"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92df46ed22e621f798304d3a9fa55f1ce3be371f", "fields": {"nom_de_la_commune": "CUSY", "libell_d_acheminement": "CUSY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74097"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1424b7d6cfe6361976ae6a048433ee6ced947fe0", "fields": {"nom_de_la_commune": "DINGY EN VUACHE", "libell_d_acheminement": "DINGY EN VUACHE", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74101"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6f5316030402343493efbb14152ee55e021478", "fields": {"nom_de_la_commune": "DRAILLANT", "libell_d_acheminement": "DRAILLANT", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74106"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfeef87cf6d3e9072ee6d95d9580604ffcc0d70", "fields": {"nom_de_la_commune": "EPAGNY METZ TESSY", "libell_d_acheminement": "EPAGNY METZ TESSY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74112"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c57ca49d5d509ab910fc2c6f40c85a64ec8043a", "fields": {"code_postal": "74370", "code_commune_insee": "74112", "libell_d_acheminement": "EPAGNY METZ TESSY", "ligne_5": "METZ TESSY", "nom_de_la_commune": "EPAGNY METZ TESSY", "coordonnees_gps": [45.9600301741, 6.15863714117]}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc2642bd743040f2d54924a2a0c491306c4a0d84", "fields": {"code_postal": "74100", "code_commune_insee": "74118", "libell_d_acheminement": "ETREMBIERES", "ligne_5": "PAS DE L ECHELLE", "nom_de_la_commune": "ETREMBIERES", "coordonnees_gps": [46.1886553142, 6.24703235488]}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1653b3f7c25a172d4cb633f4913ae591f2b7080f", "fields": {"nom_de_la_commune": "FEIGERES", "libell_d_acheminement": "FEIGERES", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74124"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "badd2d0c8f6a7e516708fec48aabac27f9a38779", "fields": {"nom_de_la_commune": "LE GRAND BORNAND", "libell_d_acheminement": "LE GRAND BORNAND", "code_postal": "74450", "coordonnees_gps": [45.9510244124, 6.46516169644], "code_commune_insee": "74136"}, "geometry": {"type": "Point", "coordinates": [6.46516169644, 45.9510244124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f19c955b009a8507d993412a551de99a3f2070", "fields": {"nom_de_la_commune": "GRUFFY", "libell_d_acheminement": "GRUFFY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74138"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fabf051351f2a44769c07b00239010c5f8e33e4", "fields": {"nom_de_la_commune": "MACHILLY", "libell_d_acheminement": "MACHILLY", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74158"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b996624bd1b1e07e3467d5d422df68260caa29dc", "fields": {"nom_de_la_commune": "MAGLAND", "libell_d_acheminement": "MAGLAND", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74159"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e61ae2666fbcc1cbb274efe890fdd8757ac36ef", "fields": {"code_postal": "74300", "code_commune_insee": "74159", "libell_d_acheminement": "MAGLAND", "ligne_5": "FLAINE", "nom_de_la_commune": "MAGLAND", "coordonnees_gps": [46.0342131745, 6.61842009953]}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd11e63257f86bd04c0a8a317d43929c2926334", "fields": {"nom_de_la_commune": "MARIN", "libell_d_acheminement": "MARIN", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74166"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f629af538dbf96e3e941f6820f355b19f9b5de", "fields": {"code_postal": "74210", "code_commune_insee": "74167", "libell_d_acheminement": "VAL DE CHAISE", "ligne_5": "MARLENS", "nom_de_la_commune": "VAL DE CHAISE", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ec33ac980505a964d5ec8c9b06fe8689b4baa4", "fields": {"nom_de_la_commune": "MEGEVETTE", "libell_d_acheminement": "MEGEVETTE", "code_postal": "74490", "coordonnees_gps": [46.1756757633, 6.49134958977], "code_commune_insee": "74174"}, "geometry": {"type": "Point", "coordinates": [6.49134958977, 46.1756757633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9392c7816df48d31cc086c4ad676b8e4320ef1", "fields": {"nom_de_la_commune": "MEYTHET", "libell_d_acheminement": "MEYTHET", "code_postal": "74960", "coordonnees_gps": [45.9084676642, 6.09877501469], "code_commune_insee": "74182"}, "geometry": {"type": "Point", "coordinates": [6.09877501469, 45.9084676642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f096eb1d91198a07fc0bbf4a9dd7c9dd9c1d5e6a", "fields": {"nom_de_la_commune": "MONT SAXONNEX", "libell_d_acheminement": "MONT SAXONNEX", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74189"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11eddffcfdeb7611139bf0451e7fb0cdaf31b084", "fields": {"nom_de_la_commune": "MOYE", "libell_d_acheminement": "MOYE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74192"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cadd0a58a4840d118948826b7d84892f2678ea16", "fields": {"nom_de_la_commune": "LA MURAZ", "libell_d_acheminement": "LA MURAZ", "code_postal": "74560", "coordonnees_gps": [46.1345324619, 6.20396278518], "code_commune_insee": "74193"}, "geometry": {"type": "Point", "coordinates": [6.20396278518, 46.1345324619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8cce6f998f9169786b908a3b4a64200948ca98", "fields": {"nom_de_la_commune": "MURES", "libell_d_acheminement": "MURES", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74194"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6541ea07e98e13ea97e0a4a886ef628e4d816437", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "MARTEL DE JANVILLE", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508aba702219afb8d8e514f63545423780da3d2d", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "SANCELLEMOZ", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bdce0c2346b671f303f32777f857bafc326f13f", "fields": {"nom_de_la_commune": "PERS JUSSY", "libell_d_acheminement": "PERS JUSSY", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74211"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90dcedd98adca67fe49fc35f5a20c637004043c", "fields": {"nom_de_la_commune": "POISY", "libell_d_acheminement": "POISY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74213"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096c63d9a4148f6e6068ebf4e4df084425c55791", "fields": {"nom_de_la_commune": "PRINGY", "libell_d_acheminement": "PRINGY", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74217"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336c69ca4186a5a749b457079572116d11b22dc7", "fields": {"nom_de_la_commune": "PUBLIER", "libell_d_acheminement": "PUBLIER", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74218"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92d3f0daf14b00e014430f27bfdb76d0fbadf50", "fields": {"code_postal": "74930", "code_commune_insee": "74220", "libell_d_acheminement": "REIGNIER ESERY", "ligne_5": "ESERY", "nom_de_la_commune": "REIGNIER ESERY", "coordonnees_gps": [46.1144620291, 6.25657495958]}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf014d4c96327ab4551b2430d396c1da996cf69", "fields": {"nom_de_la_commune": "REYVROZ", "libell_d_acheminement": "REYVROZ", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74222"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c2b69f090548d7e8ce16daa0ae0d88f0c4ba29", "fields": {"nom_de_la_commune": "ST CERGUES", "libell_d_acheminement": "ST CERGUES", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74229"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5177b5c5690226cde64d9a9c61e4265618d8ae58", "fields": {"nom_de_la_commune": "ST EUSTACHE", "libell_d_acheminement": "ST EUSTACHE", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74232"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da67685a64f7cafa9d0489f0773870441996ec7", "fields": {"nom_de_la_commune": "ST GERVAIS LES BAINS", "libell_d_acheminement": "ST GERVAIS LES BAINS", "code_postal": "74170", "coordonnees_gps": [45.8240346924, 6.73668125318], "code_commune_insee": "74236"}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dd8babf5aec3a702a64d32a780d18a09c99ab7", "fields": {"code_postal": "74170", "code_commune_insee": "74236", "libell_d_acheminement": "ST GERVAIS LES BAINS", "ligne_5": "LE FAYET", "nom_de_la_commune": "ST GERVAIS LES BAINS", "coordonnees_gps": [45.8240346924, 6.73668125318]}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad99a302fd9970eec59ebe925de6159c339d69be", "fields": {"nom_de_la_commune": "ST JEAN D AULPS", "libell_d_acheminement": "ST JEAN D AULPS", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74238"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2c87d076b41b2c6320cccffb107fe02b1151f5", "fields": {"nom_de_la_commune": "ST JEAN DE THOLOME", "libell_d_acheminement": "ST JEAN DE THOLOME", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74240"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955209d8e57df22a43149bf1855fe49a23d0e180", "fields": {"nom_de_la_commune": "ST JULIEN EN GENEVOIS", "libell_d_acheminement": "ST JULIEN EN GENEVOIS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74243"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980f2a10d4c0974d40531697dc50131166f1bce3", "fields": {"code_postal": "74700", "code_commune_insee": "74256", "libell_d_acheminement": "SALLANCHES", "ligne_5": "ST ROCH", "nom_de_la_commune": "SALLANCHES", "coordonnees_gps": [45.935449139, 6.60325360691]}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9386db3d82feb10fcc6ac70e7202a49ec1b1c1", "fields": {"nom_de_la_commune": "SCIENTRIER", "libell_d_acheminement": "SCIENTRIER", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74262"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2324eed20f5eafde7e8082298f4de339de0d5f93", "fields": {"nom_de_la_commune": "SEYSSEL", "libell_d_acheminement": "SEYSSEL", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74269"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a7c88690f1b2dab56f917ade4872c5e499d14e", "fields": {"nom_de_la_commune": "THOLLON LES MEMISES", "libell_d_acheminement": "THOLLON LES MEMISES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74279"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5375003b849c3af5aa378dd2d19d5bedb77f3c3", "fields": {"nom_de_la_commune": "USINENS", "libell_d_acheminement": "USINENS", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74285"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0591c61562ad3e425c04cb6017ddd346cc678434", "fields": {"nom_de_la_commune": "VACHERESSE", "libell_d_acheminement": "VACHERESSE", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74286"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a4b5686bd8ed904bafb54cc54653902f54acf2", "fields": {"nom_de_la_commune": "VANZY", "libell_d_acheminement": "VANZY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74291"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43799f46bb41eda5c1976907c021ac6ad5555265", "fields": {"nom_de_la_commune": "VEIGY FONCENEX", "libell_d_acheminement": "VEIGY FONCENEX", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74293"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fda02dcdc9fc62c37053088f912605559782231", "fields": {"nom_de_la_commune": "VEYRIER DU LAC", "libell_d_acheminement": "VEYRIER DU LAC", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74299"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da262422cd4d94d8906353323bc6bb5f053a55d0", "fields": {"nom_de_la_commune": "VILLE LA GRAND", "libell_d_acheminement": "VILLE LA GRAND", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74305"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ab87d6e37221fb8acc914564bf06b0487741c8", "fields": {"nom_de_la_commune": "VILLY LE BOUVERET", "libell_d_acheminement": "VILLY LE BOUVERET", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74306"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d54858c63fc17b481f54b2e03e5952dba42ebb9", "fields": {"nom_de_la_commune": "PARIS 04", "libell_d_acheminement": "PARIS", "code_postal": "75004", "coordonnees_gps": [48.8542262543, 2.35736312527], "code_commune_insee": "75104"}, "geometry": {"type": "Point", "coordinates": [2.35736312527, 48.8542262543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a1c86e38493f93472f50616ad1a584792213254", "fields": {"nom_de_la_commune": "PARIS 10", "libell_d_acheminement": "PARIS", "code_postal": "75010", "coordonnees_gps": [48.8759734307, 2.36068494701], "code_commune_insee": "75110"}, "geometry": {"type": "Point", "coordinates": [2.36068494701, 48.8759734307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc240767af5a63c3bf0fd181ef6a7e7795f5f105", "fields": {"nom_de_la_commune": "PARIS 17", "libell_d_acheminement": "PARIS", "code_postal": "75017", "coordonnees_gps": [48.8872660268, 2.30686780021], "code_commune_insee": "75117"}, "geometry": {"type": "Point", "coordinates": [2.30686780021, 48.8872660268]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f072886594658e2fa3ea20edab6fd248f97815", "fields": {"nom_de_la_commune": "AMBRUMESNIL", "libell_d_acheminement": "AMBRUMESNIL", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76004"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704af4f1196e5fdbf9149b48479e13bb7e6b3e90", "fields": {"nom_de_la_commune": "ANCEAUMEVILLE", "libell_d_acheminement": "ANCEAUMEVILLE", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76007"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894f64573302a2c7f9bb776062902ada61e68ec0", "fields": {"nom_de_la_commune": "AUMALE", "libell_d_acheminement": "AUMALE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76035"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea27903bc3a10e1c10d78333145b56e5237bc10", "fields": {"nom_de_la_commune": "AUTRETOT", "libell_d_acheminement": "AUTRETOT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76041"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a249d05dc8014d46b7c122ed74ff0d45509e7b1d", "fields": {"nom_de_la_commune": "AUVILLIERS", "libell_d_acheminement": "AUVILLIERS", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76042"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcba28087e22d91221f557a29d684e83fe357622", "fields": {"nom_de_la_commune": "AUZOUVILLE AUBERBOSC", "libell_d_acheminement": "AUZOUVILLE AUBERBOSC", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76044"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954ba92a4f357c07c2f9c1c4f52b115ce067b1c8", "fields": {"nom_de_la_commune": "AUZOUVILLE L ESNEVAL", "libell_d_acheminement": "AUZOUVILLE L ESNEVAL", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76045"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c21fd47e595603ff68cda76e67b6da60c64f63", "fields": {"nom_de_la_commune": "AVESNES EN VAL", "libell_d_acheminement": "AVESNES EN VAL", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76049"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb35b2680334370c3eab8768229d14ec88c27379", "fields": {"nom_de_la_commune": "BACQUEVILLE EN CAUX", "libell_d_acheminement": "BACQUEVILLE EN CAUX", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76051"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee32004acbfb2aac58d733f6049f5a9bbbb1d5c", "fields": {"nom_de_la_commune": "BAILLY EN RIVIERE", "libell_d_acheminement": "BAILLY EN RIVIERE", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76054"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ab3acd2a7c89da2c4eb0c406f02ff5bdff63cd", "fields": {"nom_de_la_commune": "BEAUVAL EN CAUX", "libell_d_acheminement": "BEAUVAL EN CAUX", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76063"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f57849a411e05077ba88b2ff1900ec3c770b52", "fields": {"nom_de_la_commune": "BEAUTOT", "libell_d_acheminement": "BEAUTOT", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76066"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fd640c9d8478d91029ca92acf8e97517d76032", "fields": {"nom_de_la_commune": "LA BELLIERE", "libell_d_acheminement": "LA BELLIERE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76074"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeed20eb049a0b731b457f29055ab42bb76a1363", "fields": {"nom_de_la_commune": "BERTRIMONT", "libell_d_acheminement": "BERTRIMONT", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76086"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ac49382e3911875ed61c4cc771b0389f599e6e", "fields": {"nom_de_la_commune": "BIHOREL", "libell_d_acheminement": "BIHOREL", "code_postal": "76420", "coordonnees_gps": [49.4623061723, 1.1278900454], "code_commune_insee": "76095"}, "geometry": {"type": "Point", "coordinates": [1.1278900454, 49.4623061723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4afbe4d738b2150f3131f62be1d5125e5d10f79b", "fields": {"nom_de_la_commune": "BLOSSEVILLE", "libell_d_acheminement": "BLOSSEVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76104"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6bdcf54068e18bbb3dafd023206c05643d9f16", "fields": {"nom_de_la_commune": "LE BOCASSE", "libell_d_acheminement": "LE BOCASSE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76105"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a75908305c340bc8d0cce9a8184fb11c65d171e", "fields": {"nom_de_la_commune": "BOIS L EVEQUE", "libell_d_acheminement": "BOIS L EVEQUE", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76111"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e39dad1a31a308f8d95fbdfd0f2628618d99a86", "fields": {"nom_de_la_commune": "BOISSAY", "libell_d_acheminement": "BOISSAY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76113"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d491f5d83cebb35695f8847342ab0b67821cc8a8", "fields": {"nom_de_la_commune": "BOOS", "libell_d_acheminement": "BOOS", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76116"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69b45279abc8fb484f8ca0c53cb7e477f104fb1", "fields": {"nom_de_la_commune": "BOSC EDELINE", "libell_d_acheminement": "BOSC EDELINE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76121"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba07a5d88648d5a0a9a24641740d24a051d2103", "fields": {"nom_de_la_commune": "BOUDEVILLE", "libell_d_acheminement": "BOUDEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76129"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede4fb301089253e9c1021472695c9c6e982efe7", "fields": {"nom_de_la_commune": "BREAUTE", "libell_d_acheminement": "BREAUTE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76141"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2a481d8fa8d0da512b148d6aa4b4bca8be3367", "fields": {"nom_de_la_commune": "ROUHLING", "libell_d_acheminement": "ROUHLING", "code_postal": "57520", "coordonnees_gps": [49.1484421064, 7.01208667491], "code_commune_insee": "57598"}, "geometry": {"type": "Point", "coordinates": [7.01208667491, 49.1484421064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3113fc9e3196b7780a2836bc76ea83c51c0fe1", "fields": {"nom_de_la_commune": "SAILLY ACHATEL", "libell_d_acheminement": "SAILLY ACHATEL", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57605"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "befa3236023be18fa36d12960f091f5046635c43", "fields": {"nom_de_la_commune": "ST EPVRE", "libell_d_acheminement": "ST EPVRE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57609"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99de00e5698a9f7bd14c3e805eaa7420c3087ac1", "fields": {"nom_de_la_commune": "ST FRANCOIS LACROIX", "libell_d_acheminement": "ST FRANCOIS LACROIX", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57610"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a436505ed170018e85e25e6d7a6766e93b47b20", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57611"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804b8e948a22f76e973679b16a4cf7c870036d1f", "fields": {"nom_de_la_commune": "ST JEAN DE BASSEL", "libell_d_acheminement": "ST JEAN DE BASSEL", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57613"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5add09d3f0c05e83f025c53624a704d76bc5d5b2", "fields": {"nom_de_la_commune": "ST PRIVAT LA MONTAGNE", "libell_d_acheminement": "ST PRIVAT LA MONTAGNE", "code_postal": "57855", "coordonnees_gps": [49.1864102941, 6.04036362293], "code_commune_insee": "57622"}, "geometry": {"type": "Point", "coordinates": [6.04036362293, 49.1864102941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07eec769bcd17a2523d1639eb96c0cdc3aff59f2", "fields": {"nom_de_la_commune": "SCHMITTVILLER", "libell_d_acheminement": "SCHMITTVILLER", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57636"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3d029180cf2ae202f625a86bb084e302cfe3a7", "fields": {"nom_de_la_commune": "SCHNECKENBUSCH", "libell_d_acheminement": "SCHNECKENBUSCH", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57637"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28631ad0287e0f270e41f6fc13bac24ec3dd3356", "fields": {"nom_de_la_commune": "SEINGBOUSE", "libell_d_acheminement": "SEINGBOUSE", "code_postal": "57455", "coordonnees_gps": [49.1084512886, 6.83139003658], "code_commune_insee": "57644"}, "geometry": {"type": "Point", "coordinates": [6.83139003658, 49.1084512886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ed7bd8a0f74dd2ef8f433e4230d71400bbc1ec", "fields": {"nom_de_la_commune": "SILLEGNY", "libell_d_acheminement": "SILLEGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57652"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b801f027e4f427a2ee07659b85a32499cb1b98d9", "fields": {"nom_de_la_commune": "SILLY EN SAULNOIS", "libell_d_acheminement": "SILLY EN SAULNOIS", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57653"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df18782e9f440afd02e901f430f2d8f09c271a6e", "fields": {"nom_de_la_commune": "SORBEY", "libell_d_acheminement": "SORBEY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57656"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac53fa32730e04780693849aec9d5043a2d24e47", "fields": {"nom_de_la_commune": "STIRING WENDEL", "libell_d_acheminement": "STIRING WENDEL", "code_postal": "57350", "coordonnees_gps": [49.2014476423, 6.94907800284], "code_commune_insee": "57660"}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47053f1eeef6151eb7d8c045dd811b8c4d2fca28", "fields": {"code_postal": "57350", "code_commune_insee": "57660", "libell_d_acheminement": "STIRING WENDEL", "ligne_5": "HABSTERDICK", "nom_de_la_commune": "STIRING WENDEL", "coordonnees_gps": [49.2014476423, 6.94907800284]}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492c63adbbed9da12ff563d3930298279028beb5", "fields": {"nom_de_la_commune": "TALANGE", "libell_d_acheminement": "TALANGE", "code_postal": "57525", "coordonnees_gps": [49.2344881839, 6.17214593452], "code_commune_insee": "57663"}, "geometry": {"type": "Point", "coordinates": [6.17214593452, 49.2344881839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8af69fbd8a6aa8903cb394ddfccd0fadc7ef9c", "fields": {"nom_de_la_commune": "TERVILLE", "libell_d_acheminement": "TERVILLE", "code_postal": "57180", "coordonnees_gps": [49.3465424928, 6.13266808067], "code_commune_insee": "57666"}, "geometry": {"type": "Point", "coordinates": [6.13266808067, 49.3465424928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfe8eef618ca3097bd1f97a133d210b00dc7fe5", "fields": {"nom_de_la_commune": "THONVILLE", "libell_d_acheminement": "THONVILLE", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57673"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d310e6d6fae82a487510af615342c29b35e142", "fields": {"nom_de_la_commune": "TRAGNY", "libell_d_acheminement": "TRAGNY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57676"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8daa6f73861aa9d528c09904b5d457eb011224", "fields": {"nom_de_la_commune": "TRITTELING REDLACH", "libell_d_acheminement": "TRITTELING REDLACH", "code_postal": "57385", "coordonnees_gps": [49.0669027987, 6.64766782853], "code_commune_insee": "57679"}, "geometry": {"type": "Point", "coordinates": [6.64766782853, 49.0669027987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2297cad66752552d1e92599fb6567f1494fb5b63", "fields": {"nom_de_la_commune": "TROISFONTAINES", "libell_d_acheminement": "TROISFONTAINES", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57680"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587bce62b87aa42754749bbc550940b18ce0faea", "fields": {"nom_de_la_commune": "VAHL LES BENESTROFF", "libell_d_acheminement": "VAHL LES BENESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57685"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328fbffc26bff2af17d0e1cc82d303b78e8c9577", "fields": {"nom_de_la_commune": "VALMUNSTER", "libell_d_acheminement": "VALMUNSTER", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57691"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b81e01e3f527ba531af894ec572ca922790a625", "fields": {"nom_de_la_commune": "VANNECOURT", "libell_d_acheminement": "VANNECOURT", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57692"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796a722ec14e99bdbbe67d0dc71408dfd4ee081c", "fields": {"code_postal": "57220", "code_commune_insee": "57695", "libell_d_acheminement": "VARIZE", "ligne_5": "VAUDONCOURT", "nom_de_la_commune": "VARIZE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef0d93cda956f8d1b7332a0826e0245b3049318", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57701"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ca1c66477f3ca37eae0c3524164faf287c64fe", "fields": {"nom_de_la_commune": "VIBERSVILLER", "libell_d_acheminement": "VIBERSVILLER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57711"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ff209fe8d761803672be59abfe582849d4762f", "fields": {"nom_de_la_commune": "VIC SUR SEILLE", "libell_d_acheminement": "VIC SUR SEILLE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57712"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc881c69734b29c3518f86b93149787a7f7bfc1", "fields": {"nom_de_la_commune": "VILLERS STONCOURT", "libell_d_acheminement": "VILLERS STONCOURT", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57718"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab247fcea955f26403772a21ede7cd2395a933a", "fields": {"nom_de_la_commune": "VOIMHAUT", "libell_d_acheminement": "VOIMHAUT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57728"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ffbde1a7faf05507d5d43f647d28a04305d528b", "fields": {"nom_de_la_commune": "WALTEMBOURG", "libell_d_acheminement": "WALTEMBOURG", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57743"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad1f9ade7ad4271f5ad6c2a842723182345b4e7", "fields": {"nom_de_la_commune": "WOIPPY", "libell_d_acheminement": "WOIPPY", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57751"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d55d0dad160dd2f0778f8aa5eba4ab1c2f8780d6", "fields": {"nom_de_la_commune": "WUISSE", "libell_d_acheminement": "WUISSE", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57753"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8364d20f67e0a858824ec69df76f0d881dc13220", "fields": {"nom_de_la_commune": "XOUAXANGE", "libell_d_acheminement": "XOUAXANGE", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57756"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fc4a54b93d36d5f3a779a9cc30340db6b8d0e2", "fields": {"nom_de_la_commune": "ZILLING", "libell_d_acheminement": "ZILLING", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57761"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a00c2ef1fdc6c19184dc447f1a463df8f590c24", "fields": {"nom_de_la_commune": "ZOMMANGE", "libell_d_acheminement": "ZOMMANGE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57763"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e1fc2d5b19d454f7f414fb1d00492764da54bd", "fields": {"nom_de_la_commune": "DIESEN", "libell_d_acheminement": "DIESEN", "code_postal": "57890", "coordonnees_gps": [49.1645840246, 6.6727973003], "code_commune_insee": "57765"}, "geometry": {"type": "Point", "coordinates": [6.6727973003, 49.1645840246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a609914cd2d1b7321566867dab7ad30b61afdd06", "fields": {"nom_de_la_commune": "ARBOURSE", "libell_d_acheminement": "ARBOURSE", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58009"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1b506260c0e3a91c25b1224fb14d59b635a9b4", "fields": {"nom_de_la_commune": "ASNAN", "libell_d_acheminement": "ASNAN", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58015"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9321cd8afd14553961d0c7b8c3b0b3f83b19444b", "fields": {"nom_de_la_commune": "AUNAY EN BAZOIS", "libell_d_acheminement": "AUNAY EN BAZOIS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58017"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1860f2481b30b004b0e43df11e8dbf1aa18c6013", "fields": {"nom_de_la_commune": "AZY LE VIF", "libell_d_acheminement": "AZY LE VIF", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58021"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a080fb317f65e253c34615f6e33632377ae8780", "fields": {"nom_de_la_commune": "BEARD", "libell_d_acheminement": "BEARD", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58025"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0affcb1869eebd1aa1b4532b9259cf32a484589", "fields": {"code_postal": "58420", "code_commune_insee": "58026", "libell_d_acheminement": "BEAULIEU", "ligne_5": "MICHAUGUES", "nom_de_la_commune": "BEAULIEU", "coordonnees_gps": [47.256904548, 3.52495199281]}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3df23bd01544ee927e1c29dada494083257b36", "fields": {"nom_de_la_commune": "BILLY CHEVANNES", "libell_d_acheminement": "BILLY CHEVANNES", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58031"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10da25c5e87ede9d00b9a778000bdd61c18cfa2", "fields": {"nom_de_la_commune": "BITRY", "libell_d_acheminement": "BITRY", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58033"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e755a8cca3ddb65c92deada3bdba043c10651ec4", "fields": {"nom_de_la_commune": "BLISMES", "libell_d_acheminement": "BLISMES", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58034"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c51ada5b059e992950815b8e74324b7a4c947af", "fields": {"nom_de_la_commune": "CHALAUX", "libell_d_acheminement": "CHALAUX", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58049"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0e48d472f66e383bc50d5f7e2f99fd17b0d1b9e", "fields": {"nom_de_la_commune": "CHALLEMENT", "libell_d_acheminement": "CHALLEMENT", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58050"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155a7ecbc8cd1bf7623b6cdbc70a166a607d6c6b", "fields": {"nom_de_la_commune": "CHALLUY", "libell_d_acheminement": "CHALLUY", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58051"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06ed5fbd5e83632f9f7659c019c3af56eb9bf09", "fields": {"nom_de_la_commune": "CHAMPLEMY", "libell_d_acheminement": "CHAMPLEMY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58053"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601ecb0679263e02d77e4400111a626c03382d60", "fields": {"nom_de_la_commune": "LA CHAPELLE ST ANDRE", "libell_d_acheminement": "LA CHAPELLE ST ANDRE", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58058"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccbbe13d820aa7a0fe01e46a84fb689a94e8ef9", "fields": {"nom_de_la_commune": "CHATEAU CHINON CAMPAGNE", "libell_d_acheminement": "CHATEAU CHINON CAMPAGNE", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58063"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f1fed999246e9f0ad7d067c67a39dc730747e2", "fields": {"nom_de_la_commune": "CHATEAUNEUF VAL DE BARGIS", "libell_d_acheminement": "CHATEAUNEUF VAL DE BARGIS", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58064"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f909bf27ffc0dc6e972157bf3186235d725e9e6a", "fields": {"nom_de_la_commune": "CHAUMARD", "libell_d_acheminement": "CHAUMARD", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58068"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa232ef217db3a6f4c86c458f460f8c2b99f1e58", "fields": {"nom_de_la_commune": "CHEVANNES CHANGY", "libell_d_acheminement": "CHEVANNES CHANGY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58071"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f07e08f699cb2b56995007a5b702c2b0a277252", "fields": {"nom_de_la_commune": "CORANCY", "libell_d_acheminement": "CORANCY", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58082"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5fe054910d87d72904f9bc53f5273f36a944d8", "fields": {"nom_de_la_commune": "COSSAYE", "libell_d_acheminement": "COSSAYE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58087"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d437b57d96b374d9c4741bda13abe6a75a07ea9e", "fields": {"nom_de_la_commune": "COULANGES LES NEVERS", "libell_d_acheminement": "COULANGES LES NEVERS", "code_postal": "58660", "coordonnees_gps": [47.0135723345, 3.19658804343], "code_commune_insee": "58088"}, "geometry": {"type": "Point", "coordinates": [3.19658804343, 47.0135723345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f176cee26bc534faf02078c4d095a0b92d1c4977", "fields": {"nom_de_la_commune": "COULOUTRE", "libell_d_acheminement": "COULOUTRE", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58089"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "833794e65085e15c2b0fd86be8537698b0e3940a", "fields": {"nom_de_la_commune": "DECIZE", "libell_d_acheminement": "DECIZE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58095"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89499600d245eb3f83019e8d0408e15b7eab6885", "fields": {"nom_de_la_commune": "DRUY PARIGNY", "libell_d_acheminement": "DRUY PARIGNY", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58105"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566e9bedff5d002770d8dafed7c44981357d76d0", "fields": {"nom_de_la_commune": "DUN SUR GRANDRY", "libell_d_acheminement": "DUN SUR GRANDRY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58107"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd91082e78df8da355fdd134d3bd6ce5e08ed9d6", "fields": {"nom_de_la_commune": "FACHIN", "libell_d_acheminement": "FACHIN", "code_postal": "58430", "coordonnees_gps": [47.0330840616, 4.00599450154], "code_commune_insee": "58111"}, "geometry": {"type": "Point", "coordinates": [4.00599450154, 47.0330840616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49154a1e471de15b04358f798fcc0db368f2792b", "fields": {"nom_de_la_commune": "FLEURY SUR LOIRE", "libell_d_acheminement": "FLEURY SUR LOIRE", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58115"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce03f544e983b76104c3021c9999558c24788331", "fields": {"nom_de_la_commune": "FLEZ CUZY", "libell_d_acheminement": "FLEZ CUZY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58116"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54117d4ad7c4ede79685c4c8edc66a9374af02e2", "fields": {"nom_de_la_commune": "GIEN SUR CURE", "libell_d_acheminement": "GIEN SUR CURE", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58125"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc8bf4248bbe96d7c5fdc291e988d4022b70dee2", "fields": {"nom_de_la_commune": "GLUX EN GLENNE", "libell_d_acheminement": "GLUX EN GLENNE", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58128"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e9313d4f3b91d08d83d7fdecfac98046018e53", "fields": {"nom_de_la_commune": "GOULOUX", "libell_d_acheminement": "GOULOUX", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58129"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1055a077a05beef2422d731888776a66313f790a", "fields": {"nom_de_la_commune": "IMPHY", "libell_d_acheminement": "IMPHY", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58134"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26cfd939c1d4487cb8320c80ea7ef4b527221aa", "fields": {"nom_de_la_commune": "JAILLY", "libell_d_acheminement": "JAILLY", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58136"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a276adf2edb36bf0ccc15a4b9f863d3f0bd3509f", "fields": {"nom_de_la_commune": "LIMON", "libell_d_acheminement": "LIMON", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58143"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb6840fb4c6fe777204292facf05a61b324ee90", "fields": {"nom_de_la_commune": "LA MAISON DIEU", "libell_d_acheminement": "LA MAISON DIEU", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58154"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6441100657bea7a53a33267fc7b21cd9c0ca3e9f", "fields": {"nom_de_la_commune": "MARCY", "libell_d_acheminement": "MARCY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58156"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9aa2ddced3740588225e60e583a48f8adc6915", "fields": {"nom_de_la_commune": "MARZY", "libell_d_acheminement": "MARZY", "code_postal": "58180", "coordonnees_gps": [46.984190932, 3.09279267873], "code_commune_insee": "58160"}, "geometry": {"type": "Point", "coordinates": [3.09279267873, 46.984190932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801ead85069d84ae53c11396a1b5696aa5cbba35", "fields": {"nom_de_la_commune": "MESVES SUR LOIRE", "libell_d_acheminement": "MESVES SUR LOIRE", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58164"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea264a47ab4d7c408ab96b1fffaa638aeab20eca", "fields": {"nom_de_la_commune": "MONTARON", "libell_d_acheminement": "MONTARON", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58173"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e047e64705db0a64e7978545da98deb29d222b8", "fields": {"nom_de_la_commune": "MONTIGNY EN MORVAN", "libell_d_acheminement": "MONTIGNY EN MORVAN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58177"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a61e2f0eb7061306d39ff5c50c2e2d30423c3c1", "fields": {"nom_de_la_commune": "MORACHES", "libell_d_acheminement": "MORACHES", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58181"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0961b1fa934e2bbb4cc67c263b2a677bbf81fc3a", "fields": {"nom_de_la_commune": "MYENNES", "libell_d_acheminement": "MYENNES", "code_postal": "58440", "coordonnees_gps": [47.4771194845, 2.93695618494], "code_commune_insee": "58187"}, "geometry": {"type": "Point", "coordinates": [2.93695618494, 47.4771194845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae1dcc11b8a9bf350b3a93233bed5076d78942c", "fields": {"nom_de_la_commune": "NEUILLY", "libell_d_acheminement": "NEUILLY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58191"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00e0f09c286cb97b666e6e07eee6c5987c27287", "fields": {"nom_de_la_commune": "POUQUES LORMES", "libell_d_acheminement": "POUQUES LORMES", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58216"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc12bbfdc0a00b0c69a81c5fc42c37b82683edcf", "fields": {"nom_de_la_commune": "RIX", "libell_d_acheminement": "RIX", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58222"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f8d9cf98357d1f98328d4b82895e1b83aa02ff", "fields": {"nom_de_la_commune": "ST ANDELAIN", "libell_d_acheminement": "ST ANDELAIN", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58228"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0c8c5ee769d5ba51f1ae7abcf03bfa253f3879", "fields": {"nom_de_la_commune": "ST AUBIN DES CHAUMES", "libell_d_acheminement": "ST AUBIN DES CHAUMES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58230"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427600b9c6a769cadd1ebb1b3619e801fd33abc4", "fields": {"nom_de_la_commune": "ST ELOI", "libell_d_acheminement": "ST ELOI", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58238"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f474085e402a8fe87c8bc634de23be068776847", "fields": {"nom_de_la_commune": "ST GERMAIN DES BOIS", "libell_d_acheminement": "ST GERMAIN DES BOIS", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58242"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8c22ddbadc8437b5c4706aa1c089ec2a134273", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58251"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a54876482dc75654217f4bc9e94bb837c3c0de18", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58253"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d0e06f04f7967721910aa265696e3333a36775", "fields": {"nom_de_la_commune": "ST MARTIN D HEUILLE", "libell_d_acheminement": "ST MARTIN D HEUILLE", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58254"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7c98ca38c7c81cfde9170659731d68db813d9a", "fields": {"nom_de_la_commune": "ST MARTIN SUR NOHAIN", "libell_d_acheminement": "ST MARTIN SUR NOHAIN", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58256"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a4c2d6486037324d6770f387159dacd7e827b1", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58257"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37fdd638cde03d27e78c65c4f1dcb243ac198eef", "fields": {"nom_de_la_commune": "ST PERE", "libell_d_acheminement": "ST PERE", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58261"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dcb6fb0d975840048fa700da88ad570750d68d9", "fields": {"nom_de_la_commune": "ST PIERRE DU MONT", "libell_d_acheminement": "ST PIERRE DU MONT", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58263"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b69cbba1c0f7dde782cc7611d2c6ec32ea13c16", "fields": {"nom_de_la_commune": "CAMPUGNAN", "libell_d_acheminement": "CAMPUGNAN", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33089"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9328951100f824caab0cd50d5cf86689f93773", "fields": {"nom_de_la_commune": "CANTOIS", "libell_d_acheminement": "CANTOIS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33092"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f19b4b6ca8da08ea0a04491097c62d6a71e0e3", "fields": {"nom_de_la_commune": "CAPIAN", "libell_d_acheminement": "CAPIAN", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33093"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7a5c4808e33df8ba20fb153e5b73f43ab81464", "fields": {"nom_de_la_commune": "CARBON BLANC", "libell_d_acheminement": "CARBON BLANC", "code_postal": "33560", "coordonnees_gps": [44.9021503344, -0.484694308207], "code_commune_insee": "33096"}, "geometry": {"type": "Point", "coordinates": [-0.484694308207, 44.9021503344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3474b21d3d56e9be4ccdd9aa89e5b97c8d910bc6", "fields": {"nom_de_la_commune": "CARCANS", "libell_d_acheminement": "CARCANS", "code_postal": "33121", "coordonnees_gps": [45.0848035764, -1.04925222437], "code_commune_insee": "33097"}, "geometry": {"type": "Point", "coordinates": [-1.04925222437, 45.0848035764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dab70debd70ac0f6f19b6606d6ce38007ce7718b", "fields": {"nom_de_la_commune": "CAZALIS", "libell_d_acheminement": "CAZALIS", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33115"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1703b5d2234ab026d812cf1a519660de62df5c3f", "fields": {"code_postal": "33610", "code_commune_insee": "33122", "libell_d_acheminement": "CESTAS", "ligne_5": "GAZINET", "nom_de_la_commune": "CESTAS", "coordonnees_gps": [44.7278908774, -0.719193509806]}, "geometry": {"type": "Point", "coordinates": [-0.719193509806, 44.7278908774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f79555e6b654abbc1734f3ffa855b80c818cb25", "fields": {"nom_de_la_commune": "GIVRY", "libell_d_acheminement": "GIVRY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08193"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7bbae28f3423d6ae45aa6824bdd659155572d0", "fields": {"nom_de_la_commune": "LAUNOIS SUR VENCE", "libell_d_acheminement": "LAUNOIS SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08248"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f969cecbab8916e2492b32bdeb52a7790b23b73", "fields": {"nom_de_la_commune": "JOIGNY SUR MEUSE", "libell_d_acheminement": "JOIGNY SUR MEUSE", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08237"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05d2e060099f6a23a7e1a9354e891af228c1647", "fields": {"nom_de_la_commune": "MARVAUX VIEUX", "libell_d_acheminement": "MARVAUX VIEUX", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08280"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb28858fcc8c5edd6e83435d40fb990f35239c7a", "fields": {"nom_de_la_commune": "JUNIVILLE", "libell_d_acheminement": "JUNIVILLE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08239"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e219d1b163a697621cc484901548e3fd4c09f55e", "fields": {"nom_de_la_commune": "MARLEMONT", "libell_d_acheminement": "MARLEMONT", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08277"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca55caefdd28741231e5225b1d55c84b4c23fdc", "fields": {"nom_de_la_commune": "LA HORGNE", "libell_d_acheminement": "LA HORGNE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08228"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4b93083282619cad59ae5ece703308ae71e236", "fields": {"nom_de_la_commune": "MARGNY", "libell_d_acheminement": "MARGNY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08275"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cacc02e74ec1526503253d21529072c520607df0", "fields": {"nom_de_la_commune": "LAMETZ", "libell_d_acheminement": "LAMETZ", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08244"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c7f5738e216b48e065d5c28491454501b3d433", "fields": {"code_postal": "09000", "code_commune_insee": "09264", "libell_d_acheminement": "ST JEAN DE VERGES", "ligne_5": "VILLENEUVE DU BOSC", "nom_de_la_commune": "ST JEAN DE VERGES", "coordonnees_gps": [42.9514815414, 1.58076108382]}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cc88e8b5ded6d97756dc827faa6b5ba6b59de2", "fields": {"code_postal": "09400", "code_commune_insee": "09280", "libell_d_acheminement": "SAURAT", "ligne_5": "PRAT COMMUNAL", "nom_de_la_commune": "SAURAT", "coordonnees_gps": [42.8458484074, 1.57117119842]}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b037deb39c41049d59732900e15534f37592c892", "fields": {"nom_de_la_commune": "ST JEAN D AIGUES VIVES", "libell_d_acheminement": "ST JEAN D AIGUES VIVES", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09262"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03b4a6eb016aa2113c5d3b78f0be40041a23156", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09271"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30502cf89e4c4c28c30c529dd53c362e979bc740", "fields": {"nom_de_la_commune": "ST QUIRC", "libell_d_acheminement": "ST QUIRC", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09275"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d087c9aeb583b9ad533b65f6233b7d5ab834bf", "fields": {"nom_de_la_commune": "ST GIRONS", "libell_d_acheminement": "ST GIRONS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09261"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25944881e20d30f5e17d6cb9af9565440c55c171", "fields": {"nom_de_la_commune": "SABARAT", "libell_d_acheminement": "SABARAT", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09253"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f748ccd98480c96368b4d72ab6a0ff4bbede35af", "fields": {"nom_de_la_commune": "SAURAT", "libell_d_acheminement": "SAURAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09280"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5844f4820e915ea706e171acec4fea257849587d", "fields": {"nom_de_la_commune": "SAUTEL", "libell_d_acheminement": "SAUTEL", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09281"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8221dfb2c8c2921ec03a5f1901f99e3ecf527986", "fields": {"nom_de_la_commune": "SEGURA", "libell_d_acheminement": "SEGURA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09284"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7506635bbe63ef579aa17e2eb98d43b404a116ff", "fields": {"code_postal": "09140", "code_commune_insee": "09322", "libell_d_acheminement": "USTOU", "ligne_5": "TREIN D USTOU", "nom_de_la_commune": "USTOU", "coordonnees_gps": [42.7992501708, 1.2327189582]}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29192d419938afafdbb00a271428b3bbc4f059a3", "fields": {"nom_de_la_commune": "TAURIGNAN VIEUX", "libell_d_acheminement": "TAURIGNAN VIEUX", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09308"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0e5ad09a43c0abf4e5b56750af5afd1db04db8", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09335"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186e8c566be63ae811bb06056d2ca847ed8e4ba9", "fields": {"nom_de_la_commune": "AILLEVILLE", "libell_d_acheminement": "AILLEVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10002"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4623e2b2db407ee1211811f0970c6a5ae75350", "fields": {"nom_de_la_commune": "VICDESSOS", "libell_d_acheminement": "VICDESSOS", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09334"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c906c49e118693b9230c6ddabc7b83a576650de", "fields": {"nom_de_la_commune": "VIVIES", "libell_d_acheminement": "VIVIES", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09341"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b42a873e46963da998a608375cc5046495cd4f", "fields": {"nom_de_la_commune": "UNZENT", "libell_d_acheminement": "UNZENT", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09319"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5701550dcd3a0843a442128769d3ac1627655bf3", "fields": {"nom_de_la_commune": "VEBRE", "libell_d_acheminement": "VEBRE", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09326"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2ac6b8c5bae8f5767d0a0e865a72d496922106", "fields": {"nom_de_la_commune": "USTOU", "libell_d_acheminement": "USTOU", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09322"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5836bbe5da7f2a051ba9fda340f6c6c0b7813549", "fields": {"code_postal": "10220", "code_commune_insee": "10019", "libell_d_acheminement": "VAL D AUZON", "ligne_5": "MONTANGON", "nom_de_la_commune": "VAL D AUZON", "coordonnees_gps": [48.3496514843, 4.3203044052]}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1098d76db8f338a4ee7cac0b7850d102d81ddae7", "fields": {"code_postal": "10400", "code_commune_insee": "10031", "libell_d_acheminement": "BARBUISE", "ligne_5": "COURTAVANT", "nom_de_la_commune": "BARBUISE", "coordonnees_gps": [48.4799726716, 3.5156539842]}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b37e4e4006a62e9ff87ff7fda4afed10c02e0b", "fields": {"nom_de_la_commune": "AVON LA PEZE", "libell_d_acheminement": "AVON LA PEZE", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10023"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b413287064e441c49310acb4e1c05993d94b7470", "fields": {"nom_de_la_commune": "ASSENCIERES", "libell_d_acheminement": "ASSENCIERES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10014"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2fd2bde2127630f1ed9e054689ee95e28dbabf", "fields": {"nom_de_la_commune": "VAL D AUZON", "libell_d_acheminement": "VAL D AUZON", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10019"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bad64f307e4bd27eb0d1b226990eb9d664d8d2e", "fields": {"nom_de_la_commune": "BAROVILLE", "libell_d_acheminement": "BAROVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10032"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5fd6f0baaf760e4a9b76cee46d97c00331afb4", "fields": {"nom_de_la_commune": "ARRELLES", "libell_d_acheminement": "ARRELLES", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10009"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f7453f36e4c29f7446c9889b7d1bb691269f62", "fields": {"nom_de_la_commune": "BARBUISE", "libell_d_acheminement": "BARBUISE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10031"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0279d8bb3e367d1e793c50b512bbb7c1912c7a9", "fields": {"nom_de_la_commune": "AMANCE", "libell_d_acheminement": "AMANCE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10005"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4b4e585529089a7154c9517f1c0b04a25cb6b5", "fields": {"nom_de_la_commune": "AUXON", "libell_d_acheminement": "AUXON", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10018"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e12138dbae0763d680a8c7dd781844062ce190c", "fields": {"code_postal": "10150", "code_commune_insee": "10084", "libell_d_acheminement": "CHARMONT SOUS BARBUISE", "ligne_5": "FONTAINE LUYERES", "nom_de_la_commune": "CHARMONT SOUS BARBUISE", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3f917a88be179167c962cd7f6313db4e8a4c75", "fields": {"nom_de_la_commune": "CHAUFFOUR LES BAILLY", "libell_d_acheminement": "CHAUFFOUR LES BAILLY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10092"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508c180e40f8519bd1525c88880aa1b6f6618901", "fields": {"nom_de_la_commune": "CHASEREY", "libell_d_acheminement": "CHASEREY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10087"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15afdf108d007d3f7e31006499275072c5e100d7", "fields": {"nom_de_la_commune": "LE CHENE", "libell_d_acheminement": "LE CHENE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10095"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf763574f87ea58e5fe85baa58864fce39b9389", "fields": {"nom_de_la_commune": "CHENNEGY", "libell_d_acheminement": "CHENNEGY", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10096"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b6381cb35aa1092cbe0c6c325107b0d66fe4e3", "fields": {"nom_de_la_commune": "CORMOST", "libell_d_acheminement": "CORMOST", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10104"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e5d61d38dc81f304289f1f177a93795ba6d2ea", "fields": {"nom_de_la_commune": "CLEREY", "libell_d_acheminement": "CLEREY", "code_postal": "10390", "coordonnees_gps": [48.2168971056, 4.18018933938], "code_commune_insee": "10100"}, "geometry": {"type": "Point", "coordinates": [4.18018933938, 48.2168971056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88340c98398143d57cf1a5990e82373ac51feecb", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10083"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29f3c58d86edbcf1ac451985b3d7fdd130ebeea", "fields": {"nom_de_la_commune": "ETRELLES SUR AUBE", "libell_d_acheminement": "ETRELLES SUR AUBE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10144"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84093597a673010e4e99f344294e53098e98d33", "fields": {"nom_de_la_commune": "DIERREY ST PIERRE", "libell_d_acheminement": "DIERREY ST PIERRE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10125"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0674a9bbdb9207997c4e864ebf508b073f097b", "fields": {"nom_de_la_commune": "FAYS LA CHAPELLE", "libell_d_acheminement": "FAYS LA CHAPELLE", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10147"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829381f67649aa996d519a717d37417cf09cb0b4", "fields": {"nom_de_la_commune": "DOMMARTIN LE COQ", "libell_d_acheminement": "DOMMARTIN LE COQ", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10127"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556ab1deff39923505a8fe22e0049d8724450637", "fields": {"nom_de_la_commune": "COUSSEGREY", "libell_d_acheminement": "COUSSEGREY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10112"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c17e8f2df20e7788fa7753472d9d2ad1dc679ae", "fields": {"nom_de_la_commune": "DIENVILLE", "libell_d_acheminement": "DIENVILLE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10123"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be03ad7d5889e1af63e5f55a87cf1f9aa9e56ca7", "fields": {"nom_de_la_commune": "COURTENOT", "libell_d_acheminement": "COURTENOT", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10109"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b581ed72350d3290c78ee7ef1ca0789780e2ee", "fields": {"nom_de_la_commune": "CRANCEY", "libell_d_acheminement": "CRANCEY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10114"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb85f90eef6f1c7ffa40ea28b25c0ab96ab48b5", "fields": {"nom_de_la_commune": "EPAGNE", "libell_d_acheminement": "EPAGNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10138"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c4d3e87110150e24716e823517e52d03153d79", "fields": {"nom_de_la_commune": "DOSNON", "libell_d_acheminement": "DOSNON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10130"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f7bb38d4218790051d8e33d64d7d3154149fb0", "fields": {"code_postal": "10400", "code_commune_insee": "10148", "libell_d_acheminement": "FERREUX QUINCEY", "ligne_5": "QUINCEY", "nom_de_la_commune": "FERREUX QUINCEY", "coordonnees_gps": [48.4799726716, 3.5156539842]}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b28eb6673a99e3573b9a33b1914ac5642b6d1f", "fields": {"nom_de_la_commune": "FERREUX QUINCEY", "libell_d_acheminement": "FERREUX QUINCEY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10148"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6edb803717817f00261a6324f2ac943757fb58", "fields": {"nom_de_la_commune": "GYE SUR SEINE", "libell_d_acheminement": "GYE SUR SEINE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10170"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a4004800027d68d9c69fe2551f3d150db7f1a6", "fields": {"nom_de_la_commune": "FONTVANNES", "libell_d_acheminement": "FONTVANNES", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10156"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf217248c6b63d4c36a0ab48d77274c92ffd5c1", "fields": {"nom_de_la_commune": "GELANNES", "libell_d_acheminement": "GELANNES", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10164"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38daf6c515aa7dccb5bbb3c5937ba1b14d484d13", "fields": {"nom_de_la_commune": "FEUGES", "libell_d_acheminement": "FEUGES", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10149"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8438bc8e5e0d81760df17a70c4899d291bf527b5", "fields": {"nom_de_la_commune": "GUMERY", "libell_d_acheminement": "GUMERY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10169"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3ec107b24b7ca5dc7c57d933e20589e6ff6fcd", "fields": {"nom_de_la_commune": "ST CLOUD", "libell_d_acheminement": "ST CLOUD", "code_postal": "92210", "coordonnees_gps": [48.8429394128, 2.2083054219], "code_commune_insee": "92064"}, "geometry": {"type": "Point", "coordinates": [2.2083054219, 48.8429394128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37701c68b3bb3884fe961d3fd3cd795f97dda8c0", "fields": {"nom_de_la_commune": "VANVES", "libell_d_acheminement": "VANVES", "code_postal": "92170", "coordonnees_gps": [48.8217649306, 2.28743996329], "code_commune_insee": "92075"}, "geometry": {"type": "Point", "coordinates": [2.28743996329, 48.8217649306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c6d023dc0bb9b6b648211e1621d2db19411eda", "fields": {"nom_de_la_commune": "L ILE ST DENIS", "libell_d_acheminement": "L ILE ST DENIS", "code_postal": "93450", "coordonnees_gps": [48.9374451959, 2.32575278947], "code_commune_insee": "93039"}, "geometry": {"type": "Point", "coordinates": [2.32575278947, 48.9374451959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e90b4726f302e29f301020de87528ff7132a64f", "fields": {"nom_de_la_commune": "LIVRY GARGAN", "libell_d_acheminement": "LIVRY GARGAN", "code_postal": "93190", "coordonnees_gps": [48.9202959655, 2.53498349051], "code_commune_insee": "93046"}, "geometry": {"type": "Point", "coordinates": [2.53498349051, 48.9202959655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3020c1780615ed2da7322f0e0e1cb2394c4cf9", "fields": {"nom_de_la_commune": "NOISY LE GRAND", "libell_d_acheminement": "NOISY LE GRAND", "code_postal": "93160", "coordonnees_gps": [48.8359828216, 2.56524933143], "code_commune_insee": "93051"}, "geometry": {"type": "Point", "coordinates": [2.56524933143, 48.8359828216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aca5054661471331f19090279f8ca4563ff6a5e", "fields": {"code_postal": "93210", "code_commune_insee": "93066", "libell_d_acheminement": "ST DENIS", "ligne_5": "LA PLAINE ST DENIS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [48.9296140653, 2.35920270384]}, "geometry": {"type": "Point", "coordinates": [2.35920270384, 48.9296140653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40498b205d4127d31a39f07e7848daa117c8c5b0", "fields": {"nom_de_la_commune": "SEVRAN", "libell_d_acheminement": "SEVRAN", "code_postal": "93270", "coordonnees_gps": [48.939044766, 2.53067518881], "code_commune_insee": "93071"}, "geometry": {"type": "Point", "coordinates": [2.53067518881, 48.939044766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bd60549b9fc1c0b29622020b02825a83867e88", "fields": {"nom_de_la_commune": "ALFORTVILLE", "libell_d_acheminement": "ALFORTVILLE", "code_postal": "94140", "coordonnees_gps": [48.7961692844, 2.42129188527], "code_commune_insee": "94002"}, "geometry": {"type": "Point", "coordinates": [2.42129188527, 48.7961692844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8b93e510d023a37497941627c49840a2156ad4", "fields": {"nom_de_la_commune": "JOINVILLE LE PONT", "libell_d_acheminement": "JOINVILLE LE PONT", "code_postal": "94340", "coordonnees_gps": [48.8194565588, 2.47055350311], "code_commune_insee": "94042"}, "geometry": {"type": "Point", "coordinates": [2.47055350311, 48.8194565588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e678839b6e78a06348600a03d0e58ad287604849", "fields": {"nom_de_la_commune": "LE KREMLIN BICETRE", "libell_d_acheminement": "LE KREMLIN BICETRE", "code_postal": "94270", "coordonnees_gps": [48.8088832334, 2.35629106776], "code_commune_insee": "94043"}, "geometry": {"type": "Point", "coordinates": [2.35629106776, 48.8088832334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f36a1aa73747fbd4c337e7ca1158d972f41135", "fields": {"nom_de_la_commune": "LIMEIL BREVANNES", "libell_d_acheminement": "LIMEIL BREVANNES", "code_postal": "94450", "coordonnees_gps": [48.7454489962, 2.48939333385], "code_commune_insee": "94044"}, "geometry": {"type": "Point", "coordinates": [2.48939333385, 48.7454489962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a095019f8ee329fa7003a5f4b39d803400d2d55", "fields": {"nom_de_la_commune": "NOGENT SUR MARNE", "libell_d_acheminement": "NOGENT SUR MARNE", "code_postal": "94130", "coordonnees_gps": [48.8364035754, 2.4820398446], "code_commune_insee": "94052"}, "geometry": {"type": "Point", "coordinates": [2.4820398446, 48.8364035754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2c3eb514a43c965bb99b57c39c8866aa998684", "fields": {"nom_de_la_commune": "NOISEAU", "libell_d_acheminement": "NOISEAU", "code_postal": "94880", "coordonnees_gps": [48.7742764728, 2.55417449488], "code_commune_insee": "94053"}, "geometry": {"type": "Point", "coordinates": [2.55417449488, 48.7742764728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60478bf7bade4bc1c68f4a8321706e66eef9cb53", "fields": {"nom_de_la_commune": "ORMESSON SUR MARNE", "libell_d_acheminement": "ORMESSON SUR MARNE", "code_postal": "94490", "coordonnees_gps": [48.785408155, 2.53852149199], "code_commune_insee": "94055"}, "geometry": {"type": "Point", "coordinates": [2.53852149199, 48.785408155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef85c5d4902ebcdc7d520c349ce2f84310d6d05d", "fields": {"nom_de_la_commune": "AINCOURT", "libell_d_acheminement": "AINCOURT", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95008"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d353451260073107e39e5fcbe2895eccde5cdedd", "fields": {"nom_de_la_commune": "AUVERS SUR OISE", "libell_d_acheminement": "AUVERS SUR OISE", "code_postal": "95430", "coordonnees_gps": [49.0811077214, 2.16105485374], "code_commune_insee": "95039"}, "geometry": {"type": "Point", "coordinates": [2.16105485374, 49.0811077214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79e1665ac4ce5d550469bf027ae6f458c9f36f48", "fields": {"nom_de_la_commune": "BESSANCOURT", "libell_d_acheminement": "BESSANCOURT", "code_postal": "95550", "coordonnees_gps": [49.0374755181, 2.19888886036], "code_commune_insee": "95060"}, "geometry": {"type": "Point", "coordinates": [2.19888886036, 49.0374755181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06bcefefcc0dccf938edb5d8dc395749da64a4c", "fields": {"nom_de_la_commune": "BONNEUIL EN FRANCE", "libell_d_acheminement": "BONNEUIL EN FRANCE", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95088"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3defe0f424ffd871f52e32989223344328878aaf", "fields": {"nom_de_la_commune": "BOUFFEMONT", "libell_d_acheminement": "BOUFFEMONT", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95091"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945ffb0ec9c65b3e33789f29dca08d0f742bd76f", "fields": {"nom_de_la_commune": "BOUQUEVAL", "libell_d_acheminement": "BOUQUEVAL", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95094"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc7efaf3b94d16cdc921502e93a5b2d271f3f2c", "fields": {"nom_de_la_commune": "BRIGNANCOURT", "libell_d_acheminement": "BRIGNANCOURT", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95110"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7b9a3dbcdc307b1cde86f807697709fd6afd9a", "fields": {"nom_de_la_commune": "CERGY", "libell_d_acheminement": "CERGY", "code_postal": "95800", "coordonnees_gps": [49.0404241863, 2.0356184662], "code_commune_insee": "95127"}, "geometry": {"type": "Point", "coordinates": [2.0356184662, 49.0404241863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f2911000cd78482c34a88a0d312eab92dc0589", "fields": {"nom_de_la_commune": "CHARMONT", "libell_d_acheminement": "CHARMONT", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95141"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71dadb43843a14932c9e465ce96c659f33088475", "fields": {"nom_de_la_commune": "CHATENAY EN FRANCE", "libell_d_acheminement": "CHATENAY EN FRANCE", "code_postal": "95190", "coordonnees_gps": [49.0402800937, 2.45734698588], "code_commune_insee": "95144"}, "geometry": {"type": "Point", "coordinates": [2.45734698588, 49.0402800937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c77259fc01fc44eafdc218f5fc98442dad9ea3", "fields": {"nom_de_la_commune": "DEUIL LA BARRE", "libell_d_acheminement": "DEUIL LA BARRE", "code_postal": "95170", "coordonnees_gps": [48.9720784312, 2.32647855462], "code_commune_insee": "95197"}, "geometry": {"type": "Point", "coordinates": [2.32647855462, 48.9720784312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4c4523301a2dfd9ac4cdeb311aaf93bc43a301a", "fields": {"nom_de_la_commune": "ENGHIEN LES BAINS", "libell_d_acheminement": "ENGHIEN LES BAINS", "code_postal": "95880", "coordonnees_gps": [48.9698387143, 2.30410164938], "code_commune_insee": "95210"}, "geometry": {"type": "Point", "coordinates": [2.30410164938, 48.9698387143]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "031313dea47e7da33017246d7130c4f6c1909f6b", "fields": {"nom_de_la_commune": "EPIAIS LES LOUVRES", "libell_d_acheminement": "EPIAIS LES LOUVRES", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95212"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918dea4213f6061cb09f9a21dd5b5a7891893d23", "fields": {"nom_de_la_commune": "FRANCONVILLE", "libell_d_acheminement": "FRANCONVILLE LA GARENNE", "code_postal": "95130", "coordonnees_gps": [48.9926867479, 2.22747200568], "code_commune_insee": "95252"}, "geometry": {"type": "Point", "coordinates": [2.22747200568, 48.9926867479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce56a95e9ddb0f850a8902bdbd44b9bff51a9460", "fields": {"nom_de_la_commune": "FREMAINVILLE", "libell_d_acheminement": "FREMAINVILLE", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95253"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8d670f23eea028c380e9d7d463818c501fa2e3", "fields": {"nom_de_la_commune": "GADANCOURT", "libell_d_acheminement": "GADANCOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95259"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c4fed1d5450b55ee4962b665e5a8e423a731a22", "fields": {"nom_de_la_commune": "GARGES LES GONESSE", "libell_d_acheminement": "GARGES LES GONESSE", "code_postal": "95140", "coordonnees_gps": [48.9703086597, 2.40500499402], "code_commune_insee": "95268"}, "geometry": {"type": "Point", "coordinates": [2.40500499402, 48.9703086597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77cbd32d7bf847e20a8a51d010f56ec05bc5c482", "fields": {"nom_de_la_commune": "GRISY LES PLATRES", "libell_d_acheminement": "GRISY LES PLATRES", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95287"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adaa241a743ae0fe8db8433a4206a944cfae021c", "fields": {"nom_de_la_commune": "LE HEAULME", "libell_d_acheminement": "LE HEAULME", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95303"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2eba366f450954811ce4166d1d82f259e9c601", "fields": {"nom_de_la_commune": "HERBLAY", "libell_d_acheminement": "HERBLAY", "code_postal": "95220", "coordonnees_gps": [49.0082603783, 2.15434312371], "code_commune_insee": "95306"}, "geometry": {"type": "Point", "coordinates": [2.15434312371, 49.0082603783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c6d306b5ce7580b79774802b99f585161f0c4d", "fields": {"code_postal": "95280", "code_commune_insee": "95323", "libell_d_acheminement": "JOUY LE MOUTIER", "ligne_5": "VINCOURT", "nom_de_la_commune": "JOUY LE MOUTIER", "coordonnees_gps": [49.0112311928, 2.03342738029]}, "geometry": {"type": "Point", "coordinates": [2.03342738029, 49.0112311928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d71b5c20d0d719cc2cc6e3ae94dbb9514bc937", "fields": {"nom_de_la_commune": "LIVILLIERS", "libell_d_acheminement": "LIVILLIERS", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95341"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2326f88389768154ec56597506576dcf8516a9", "fields": {"nom_de_la_commune": "LUZARCHES", "libell_d_acheminement": "LUZARCHES", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95352"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454048217322ce6d091fd3fb3c40685b47734ed4", "fields": {"nom_de_la_commune": "PIZAY", "libell_d_acheminement": "PIZAY", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01297"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e76f784023ad8bdebdddd176fab3bef4e8b4189", "fields": {"nom_de_la_commune": "MONTMERLE SUR SAONE", "libell_d_acheminement": "MONTMERLE SUR SAONE", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01263"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66c5ff2a13ca1e164ab082bad87419938125528", "fields": {"nom_de_la_commune": "NEUVILLE SUR AIN", "libell_d_acheminement": "NEUVILLE SUR AIN", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01273"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9182777bd2ffc9622750ff95a5e694aabdb066f3", "fields": {"nom_de_la_commune": "LE MONTELLIER", "libell_d_acheminement": "LE MONTELLIER", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01260"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b738ed1871b56111f6703dfadd636f787fa9833", "fields": {"nom_de_la_commune": "MONTHIEUX", "libell_d_acheminement": "MONTHIEUX", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01261"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17392e73fe18ba917ecf1878383d245f4355d755", "fields": {"nom_de_la_commune": "MONTRACOL", "libell_d_acheminement": "MONTRACOL", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01264"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93030d71ab7237b0c275a9bad511198015164f9a", "fields": {"nom_de_la_commune": "MONTAGNAT", "libell_d_acheminement": "MONTAGNAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01254"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb824d1981f868f9f3ec0208d5f5de8978c6ccc", "fields": {"nom_de_la_commune": "MARLIEUX", "libell_d_acheminement": "MARLIEUX", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01235"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06db57878a2042412854b4ed0ea5051987f786f6", "fields": {"nom_de_la_commune": "MEZERIAT", "libell_d_acheminement": "MEZERIAT", "code_postal": "01660", "coordonnees_gps": [46.2212048437, 5.05767036024], "code_commune_insee": "01246"}, "geometry": {"type": "Point", "coordinates": [5.05767036024, 46.2212048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4873f7beba1178f1fe9e686e199a9f59091ff608", "fields": {"nom_de_la_commune": "MAGNIEU", "libell_d_acheminement": "MAGNIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01227"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7dd2d533511556cab75ecaecade3f2405f7e056", "fields": {"nom_de_la_commune": "MARBOZ", "libell_d_acheminement": "MARBOZ", "code_postal": "01851", "coordonnees_gps": [46.3443305857, 5.24375404397], "code_commune_insee": "01232"}, "geometry": {"type": "Point", "coordinates": [5.24375404397, 46.3443305857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39f08ef70817b263e22dacb1b14b10b1411270e", "fields": {"nom_de_la_commune": "FRANCHELEINS", "libell_d_acheminement": "FRANCHELEINS", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01165"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b33dcb610214f1de26eaa8b34621955a5435fca", "fields": {"nom_de_la_commune": "FARAMANS", "libell_d_acheminement": "FARAMANS", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01156"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182055fb5aa190457ddaa7b78e4b8d3a4a1993b3", "fields": {"nom_de_la_commune": "CORBONOD", "libell_d_acheminement": "CORBONOD", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01118"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af392575e815113b58c033d5a54ee650cfa47b37", "fields": {"nom_de_la_commune": "DOMSURE", "libell_d_acheminement": "DOMSURE", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01147"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54908b094bf06c2a3229e5e2ee97066d34a8b0e6", "fields": {"nom_de_la_commune": "CROZET", "libell_d_acheminement": "CROZET", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01135"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b315bd0edf8d9660a6ea442d0fe3d8474ba7b500", "fields": {"nom_de_la_commune": "FARGES", "libell_d_acheminement": "FARGES", "code_postal": "01550", "coordonnees_gps": [46.1521009626, 5.90976446888], "code_commune_insee": "01158"}, "geometry": {"type": "Point", "coordinates": [5.90976446888, 46.1521009626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b72706ad410b199cd544d7b84f9ed7e729174d3", "fields": {"nom_de_la_commune": "CUZIEU", "libell_d_acheminement": "CUZIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01141"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4353928244c4ff248866a770654776bf762105b9", "fields": {"nom_de_la_commune": "CROTTET", "libell_d_acheminement": "CROTTET", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01134"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02eba80ca48b43231b49e6dd3e252029e0626e4", "fields": {"nom_de_la_commune": "CORMOZ", "libell_d_acheminement": "CORMOZ", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01124"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323db03f12100a2a5ce6bf0dcc6c4bc47a15f891", "fields": {"nom_de_la_commune": "CONAND", "libell_d_acheminement": "CONAND", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01111"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ec6f8c94cd30df6d34abdc15f63f84c362e02f", "fields": {"nom_de_la_commune": "VILLIEU LOYES MOLLON", "libell_d_acheminement": "VILLIEU LOYES MOLLON", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01450"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da53801703ad4b6406905d40bb83c20d647ca4b0", "fields": {"nom_de_la_commune": "VILLARS LES DOMBES", "libell_d_acheminement": "VILLARS LES DOMBES", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01443"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a27f72cbd4a43d53af8d06304a052ce2668e17", "fields": {"nom_de_la_commune": "AUTREMENCOURT", "libell_d_acheminement": "AUTREMENCOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02039"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949af47097502c9f8bf8865113ad6947503d05b2", "fields": {"nom_de_la_commune": "AUTREPPES", "libell_d_acheminement": "AUTREPPES", "code_postal": "02580", "coordonnees_gps": [49.9024615408, 3.89676959472], "code_commune_insee": "02040"}, "geometry": {"type": "Point", "coordinates": [3.89676959472, 49.9024615408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1223440358f87282cbbdd14d115c62c3aaf07b69", "fields": {"nom_de_la_commune": "ST ETIENNE SUR CHALARONNE", "libell_d_acheminement": "ST ETIENNE SUR CHALARONNE", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01351"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3634417ef82f7a72078bc7a47a67f801823bc0", "fields": {"nom_de_la_commune": "ST DIDIER SUR CHALARONNE", "libell_d_acheminement": "ST DIDIER SUR CHALARONNE", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01348"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e35b99c196b96d0d56cddf7353b47a381dbde2", "fields": {"nom_de_la_commune": "ST JEAN SUR REYSSOUZE", "libell_d_acheminement": "ST JEAN SUR REYSSOUZE", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01364"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368ae02d74c3d672aa529c35f5293b4abbc3c99d", "fields": {"nom_de_la_commune": "ST DIDIER DE FORMANS", "libell_d_acheminement": "ST DIDIER DE FORMANS", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01347"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2357d5b57745270352de1f4501791575e1b0202d", "fields": {"nom_de_la_commune": "ST DENIS LES BOURG", "libell_d_acheminement": "ST DENIS LES BOURG", "code_postal": "01000", "coordonnees_gps": [46.2069478835, 5.22442559307], "code_commune_insee": "01344"}, "geometry": {"type": "Point", "coordinates": [5.22442559307, 46.2069478835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2357993108bb1ef38ec80db8e8fd5ba9be1d12e6", "fields": {"nom_de_la_commune": "ST ETIENNE DU BOIS", "libell_d_acheminement": "ST ETIENNE DU BOIS", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01350"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4595e45de0f9518e74f974651b08e12b4a832c3", "fields": {"nom_de_la_commune": "ST CYR SUR MENTHON", "libell_d_acheminement": "ST CYR SUR MENTHON", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01343"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06de31d5992036883757739239f3b5e0cbf8598", "fields": {"nom_de_la_commune": "RIGNIEUX LE FRANC", "libell_d_acheminement": "RIGNIEUX LE FRANC", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01325"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eefc5129d650771455cb7ae2b023ef53559762f5", "fields": {"nom_de_la_commune": "ST GERMAIN DE JOUX", "libell_d_acheminement": "ST GERMAIN DE JOUX", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01357"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9d3b443e3284958cf54f0e8cd1bca5fe30600f", "fields": {"nom_de_la_commune": "ST GENIS POUILLY", "libell_d_acheminement": "ST GENIS POUILLY", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01354"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f54ada3a7a3f84584bc1fde29b502e83bb6db45", "fields": {"nom_de_la_commune": "ST LAURENT SUR SAONE", "libell_d_acheminement": "ST LAURENT SUR SAONE", "code_postal": "01750", "coordonnees_gps": [46.2973437135, 4.87546330177], "code_commune_insee": "01370"}, "geometry": {"type": "Point", "coordinates": [4.87546330177, 46.2973437135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b989a29fdc665e7e1370800e278c6b989ae1d5a", "fields": {"nom_de_la_commune": "ST JEAN SUR VEYLE", "libell_d_acheminement": "ST JEAN SUR VEYLE", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01365"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a87cf6cdb0e63dad4ad75bdc2a6e0a7f7dde4f18", "fields": {"nom_de_la_commune": "SAULT BRENAZ", "libell_d_acheminement": "SAULT BRENAZ", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01396"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7a97a98164d1f8b117b17e84f6a8ccf5cc0af5", "fields": {"nom_de_la_commune": "SEILLONNAZ", "libell_d_acheminement": "SEILLONNAZ", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01400"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968e29d3eff0769eb62bbb9838b64d5c6ff144be", "fields": {"nom_de_la_commune": "SAVIGNEUX", "libell_d_acheminement": "SAVIGNEUX", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01398"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4186ae0b0b5248939e6e82e61f96ad32d6b05d89", "fields": {"nom_de_la_commune": "ST VULBAS", "libell_d_acheminement": "ST VULBAS", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01390"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720397bb09fa221606ad318ad1869bcee1e1ed9b", "fields": {"nom_de_la_commune": "STE OLIVE", "libell_d_acheminement": "STE OLIVE", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01382"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fe7e58f24778ddc545487000e3e2f59f42a817", "fields": {"nom_de_la_commune": "SERMOYER", "libell_d_acheminement": "SERMOYER", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01402"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528d7bd3964cf4ef5ff7a14391812570c6ab7213", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01385"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6988d6fae184b1a79b51f64948b9f86113cc0f0f", "fields": {"nom_de_la_commune": "SEYSSEL", "libell_d_acheminement": "SEYSSEL", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01407"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82805979fb17a454cf59d899c5b6564a9c859945", "fields": {"nom_de_la_commune": "VIRIEU LE PETIT", "libell_d_acheminement": "VIRIEU LE PETIT", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01453"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d264ebae4147a92e55d4250b670f24704261cfc", "fields": {"nom_de_la_commune": "ALAINCOURT", "libell_d_acheminement": "ALAINCOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02009"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a5a40b272d0d030853d746f012002654d7e381", "fields": {"nom_de_la_commune": "ABBECOURT", "libell_d_acheminement": "ABBECOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02001"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7161510c97cc1e775b5f30358eee8cc1fec1b4", "fields": {"nom_de_la_commune": "ALLEMANT", "libell_d_acheminement": "ALLEMANT", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02010"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b7ee5848bf7ef67fbb7c7d0f2f0c51ee326bd6f", "fields": {"nom_de_la_commune": "VANDEINS", "libell_d_acheminement": "VANDEINS", "code_postal": "01660", "coordonnees_gps": [46.2212048437, 5.05767036024], "code_commune_insee": "01429"}, "geometry": {"type": "Point", "coordinates": [5.05767036024, 46.2212048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf0d0f4dfe0f49a8ea831365e981359b4ad0886", "fields": {"nom_de_la_commune": "VIRIGNIN", "libell_d_acheminement": "VIRIGNIN", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01454"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebdb8465733bb88253ca0f2d9818afb0bfba8c93", "fields": {"nom_de_la_commune": "ARTEMPS", "libell_d_acheminement": "ARTEMPS", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02025"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0e1a7c3f6a1bc5b2f5baf9a68320a968a65f90", "fields": {"nom_de_la_commune": "AMBLENY", "libell_d_acheminement": "AMBLENY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02011"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09533b1e140163059a6271924faf264de35fe195", "fields": {"nom_de_la_commune": "AMBRIEF", "libell_d_acheminement": "AMBRIEF", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02012"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a40a87b2cd6f8c4de155e8199adec4da37f4db", "fields": {"nom_de_la_commune": "ANNOIS", "libell_d_acheminement": "ANNOIS", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02019"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ede07b71afab2b43a33d1b4e1419ac79275cdca", "fields": {"code_postal": "02330", "code_commune_insee": "02053", "libell_d_acheminement": "VALLEES EN CHAMPAGNE", "ligne_5": "LA CHAPELLE MONTHODON", "nom_de_la_commune": "VALLEES EN CHAMPAGNE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cf36b8ec27a61d4aa3573d0703ef4edbbb5dbdd", "fields": {"code_postal": "02330", "code_commune_insee": "02053", "libell_d_acheminement": "VALLEES EN CHAMPAGNE", "ligne_5": "BAULNE EN BRIE", "nom_de_la_commune": "VALLEES EN CHAMPAGNE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16632287f99fd92c0d52a5bbc120892ea3a2b0a0", "fields": {"code_postal": "02330", "code_commune_insee": "02053", "libell_d_acheminement": "VALLEES EN CHAMPAGNE", "ligne_5": "ST AGNAN", "nom_de_la_commune": "VALLEES EN CHAMPAGNE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c117f90c861d9bf3886e0a0579f3338f21ec6967", "fields": {"nom_de_la_commune": "BARENTON SUR SERRE", "libell_d_acheminement": "BARENTON SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02048"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c74a1cdf6266623e374c1c3ee623858b0c87e3", "fields": {"nom_de_la_commune": "BARISIS AUX BOIS", "libell_d_acheminement": "BARISIS AUX BOIS", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02049"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d388995259b654ec28f46b9cf3d249c9528d2dd9", "fields": {"nom_de_la_commune": "BELLICOURT", "libell_d_acheminement": "BELLICOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02065"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb0528db7de88440582f5bb9ecaf439ebbb49a0", "fields": {"nom_de_la_commune": "BERTAUCOURT EPOURDON", "libell_d_acheminement": "BERTAUCOURT EPOURDON", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02074"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946470573d89dd97798ba3d60c4aea3c900b4de7", "fields": {"nom_de_la_commune": "BERGUES SUR SAMBRE", "libell_d_acheminement": "BERGUES SUR SAMBRE", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02067"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14bab5af402cd9c9d00f84d549104a12735f7124", "fields": {"nom_de_la_commune": "BERTHENICOURT", "libell_d_acheminement": "BERTHENICOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02075"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34dc1bea2a26a9c39104e34d0bd24f68d03261c", "fields": {"nom_de_la_commune": "BERZY LE SEC", "libell_d_acheminement": "BERZY LE SEC", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02077"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053377fed26547a25f1df6169f949d0f618e09d5", "fields": {"nom_de_la_commune": "BEZU LE GUERY", "libell_d_acheminement": "BEZU LE GUERY", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02084"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb110785af6b1e1e40956409a92b752f57fe609", "fields": {"nom_de_la_commune": "BERRY AU BAC", "libell_d_acheminement": "BERRY AU BAC", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02073"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d37ff038eed44833f5d58f4d2271c24e0c6230", "fields": {"nom_de_la_commune": "BEUGNEUX", "libell_d_acheminement": "BEUGNEUX", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02082"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a801e1562720e2742865d6773891501df2390c58", "fields": {"nom_de_la_commune": "BENAY", "libell_d_acheminement": "BENAY", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02066"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b02265cbee6447f8d9ab8d3bd95e155c9c0a6d", "fields": {"nom_de_la_commune": "BESME", "libell_d_acheminement": "BESME", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02078"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ad644bf1d41e3d27256309db97973c6f76c392", "fields": {"nom_de_la_commune": "BONY", "libell_d_acheminement": "BONY", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02100"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720b00c2b4e2ddfc04cffa715e42132cd7d59a31", "fields": {"nom_de_la_commune": "BRISSAY CHOIGNY", "libell_d_acheminement": "BRISSAY CHOIGNY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02123"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870a3013498e06bdd764b25fbf0dc11f8e153376", "fields": {"nom_de_la_commune": "BUIRONFOSSE", "libell_d_acheminement": "BUIRONFOSSE", "code_postal": "02620", "coordonnees_gps": [49.9583862549, 3.83858463348], "code_commune_insee": "02135"}, "geometry": {"type": "Point", "coordinates": [3.83858463348, 49.9583862549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918ba5e932f5022d5513be9fb46f02ef08151bb4", "fields": {"nom_de_la_commune": "BRUNEHAMEL", "libell_d_acheminement": "BRUNEHAMEL", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02126"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77ae3aa3dba972717f49b964eafb2d9a6b05cc9", "fields": {"nom_de_la_commune": "LE CATELET", "libell_d_acheminement": "LE CATELET", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02143"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2021b6a89f8328444c3c891dc16f5aa2416d04c3", "fields": {"nom_de_la_commune": "CESSIERES", "libell_d_acheminement": "CESSIERES", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02153"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462dc6864eea077116f94aef8457bfbc3ca1c234", "fields": {"nom_de_la_commune": "BUSSIARES", "libell_d_acheminement": "BUSSIARES", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02137"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027bc51922706864fab1128c679c13de58f89544", "fields": {"nom_de_la_commune": "CHALANDRY", "libell_d_acheminement": "CHALANDRY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02156"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6446827298d00f20c4974aa4b2739413f9059df", "fields": {"nom_de_la_commune": "BRASLES", "libell_d_acheminement": "BRASLES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02114"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3c147e4808e0539126a4fe0b39e43a213d80b6", "fields": {"nom_de_la_commune": "CERIZY", "libell_d_acheminement": "CERIZY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02149"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcb9e52f79b3bc2eccd5bc47ca2c4242258909b", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02122"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e3d78ab4a5bda7c84c70e562842e1720ad56ca", "fields": {"code_postal": "02130", "code_commune_insee": "02220", "libell_d_acheminement": "COULONGES COHAN", "ligne_5": "COHAN", "nom_de_la_commune": "COULONGES COHAN", "coordonnees_gps": [49.1935797302, 3.55982855371]}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6965723db86d1553df3026865ffbeac2a8f24a8b", "fields": {"nom_de_la_commune": "COUCY LE CHATEAU AUFFRIQUE", "libell_d_acheminement": "COUCY LE CHATEAU AUFFRIQUE", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02217"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7aba3f1490d97fc91e6094518b78a28d1f3dc5", "fields": {"nom_de_la_commune": "COURTEMONT VARENNES", "libell_d_acheminement": "COURTEMONT VARENNES", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02228"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc59851e98b01932bb1b4dd0fcfc81f7ddfe0a3e", "fields": {"nom_de_la_commune": "COUCY LA VILLE", "libell_d_acheminement": "COUCY LA VILLE", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02219"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84adb5e9451ffce386bae8e9fe1548f896a1272d", "fields": {"nom_de_la_commune": "COURMELLES", "libell_d_acheminement": "COURMELLES", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02226"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8bce6b9a2e8a6395af31656c6e55341c78d810", "fields": {"nom_de_la_commune": "COURBES", "libell_d_acheminement": "COURBES", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02222"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f38ab88de19552803fb7f23e91534262189219", "fields": {"nom_de_la_commune": "CORCY", "libell_d_acheminement": "CORCY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02216"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f822dad3421da3ac3c3a6a1a5d4dc87b56c0e58", "fields": {"nom_de_la_commune": "CROUTTES SUR MARNE", "libell_d_acheminement": "CROUTTES SUR MARNE", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02242"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5f247b8e87e9a7554b526d230419da70a6a900", "fields": {"nom_de_la_commune": "CUIRY LES IVIERS", "libell_d_acheminement": "CUIRY LES IVIERS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02251"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c524171a0dc643af86fb7718c38883aa4b01ba7b", "fields": {"nom_de_la_commune": "CRECY AU MONT", "libell_d_acheminement": "CRECY AU MONT", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02236"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152deb2f791b4ec2343769fe0025c9c458393125", "fields": {"nom_de_la_commune": "CUIRY HOUSSE", "libell_d_acheminement": "CUIRY HOUSSE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02249"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514f4a22180ca00aff6ada86f5c01c76f45811f8", "fields": {"nom_de_la_commune": "COUVRELLES", "libell_d_acheminement": "COUVRELLES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02230"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43893f419cc36602a519841d41234a0a7130dde", "fields": {"nom_de_la_commune": "CREZANCY", "libell_d_acheminement": "CREZANCY", "code_postal": "02650", "coordonnees_gps": [49.0487416682, 3.50137456467], "code_commune_insee": "02239"}, "geometry": {"type": "Point", "coordinates": [3.50137456467, 49.0487416682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31088f01a3021ab9ef911fa472c344cd8044ba5", "fields": {"nom_de_la_commune": "CUFFIES", "libell_d_acheminement": "CUFFIES", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02245"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56b244d94152e958942cf99ace0e5301dd4ad96", "fields": {"nom_de_la_commune": "DAMMARD", "libell_d_acheminement": "DAMMARD", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02258"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb4b1ff1148ec5a14f5abbc2675d6acace5f83d", "fields": {"nom_de_la_commune": "CREPY", "libell_d_acheminement": "CREPY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02238"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6bccd04ddf6708fa0cfe62549bb41227e057f8", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "VILLERS EN PRAYERES", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1509a90575994b3429a066ae7aab4ca7d6f6c70", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "REVILLON", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4cba8559ba08bdbc0e21670c41cb15550e036d", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "GLENNES", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a440fe729f8c8d6b592d7c3fad9c2abe421508ef", "fields": {"nom_de_la_commune": "LA JAUDONNIERE", "libell_d_acheminement": "LA JAUDONNIERE", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85115"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ab41ca15fb5c1b8ccacce38954706a89772779", "fields": {"nom_de_la_commune": "LA JONCHERE", "libell_d_acheminement": "LA JONCHERE", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85116"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad4f6c2c334dd363d4b9de7dd32121d9d6408a1", "fields": {"nom_de_la_commune": "LANDERONDE", "libell_d_acheminement": "LANDERONDE", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85118"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40aeeef0d65033df61f9e0f95366a23035c8597a", "fields": {"nom_de_la_commune": "LES LANDES GENUSSON", "libell_d_acheminement": "LES LANDES GENUSSON", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85119"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c250fc475f8aeb1a2057ff5f1cc0606a6f46b5", "fields": {"nom_de_la_commune": "LONGEVES", "libell_d_acheminement": "LONGEVES", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85126"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234af446606bedceb85f4bdcfd6b43a307b9bd91", "fields": {"nom_de_la_commune": "MARSAIS STE RADEGONDE", "libell_d_acheminement": "MARSAIS STE RADEGONDE", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85137"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ede80142fbca44908cf964bce5683083032d00", "fields": {"nom_de_la_commune": "MARTINET", "libell_d_acheminement": "MARTINET", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85138"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24569f60ec3881805973ed4f3084290976023e0a", "fields": {"nom_de_la_commune": "BASSEVELLE", "libell_d_acheminement": "BASSEVELLE", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77024"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ec5a6e42d41aa5e70e50e6292665bfa644dd5c", "fields": {"nom_de_la_commune": "BELLOT", "libell_d_acheminement": "BELLOT", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77030"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d01c9c5f94526c043f255481bfbbc2b1f6102f", "fields": {"nom_de_la_commune": "BOULANCOURT", "libell_d_acheminement": "BOULANCOURT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77046"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9e980ef0c550e4145798427926f05612d4a5a4", "fields": {"nom_de_la_commune": "BUSSY ST GEORGES", "libell_d_acheminement": "BUSSY ST GEORGES", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77058"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f6171ebff9dd233deb4a7807d060b1070497ab", "fields": {"nom_de_la_commune": "LA CELLE SUR MORIN", "libell_d_acheminement": "LA CELLE SUR MORIN", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77063"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c4ccf06ec98aed05ae755a71ffcd07194b5074", "fields": {"nom_de_la_commune": "CESSOY EN MONTOIS", "libell_d_acheminement": "CESSOY EN MONTOIS", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77068"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08eaae871273ec3482cf8f1aded7111931e911ac", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR SEINE", "libell_d_acheminement": "CHAMPAGNE SUR SEINE", "code_postal": "77430", "coordonnees_gps": [48.4090474802, 2.80758778322], "code_commune_insee": "77079"}, "geometry": {"type": "Point", "coordinates": [2.80758778322, 48.4090474802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8f12042a0469167f674c278d6513719dffba0b", "fields": {"nom_de_la_commune": "CHANGIS SUR MARNE", "libell_d_acheminement": "CHANGIS SUR MARNE", "code_postal": "77660", "coordonnees_gps": [48.947885441, 3.02624344893], "code_commune_insee": "77084"}, "geometry": {"type": "Point", "coordinates": [3.02624344893, 48.947885441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b880c8e4e7b6276e0223f0c2e703267d5a1aad80", "fields": {"nom_de_la_commune": "LA CHAPELLE GAUTHIER", "libell_d_acheminement": "LA CHAPELLE GAUTHIER", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77086"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b8d131016fff76a6762e8094cced844bc58e2c", "fields": {"nom_de_la_commune": "LA CHAPELLE LA REINE", "libell_d_acheminement": "LA CHAPELLE LA REINE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77088"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d25fbf5249a0367e8951c10ccaee0a9824980a", "fields": {"nom_de_la_commune": "LA CHAPELLE ST SULPICE", "libell_d_acheminement": "LA CHAPELLE ST SULPICE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77090"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59ca31800a80a0373d8a8a004556d2c1ff2748a", "fields": {"nom_de_la_commune": "CHARTRETTES", "libell_d_acheminement": "CHARTRETTES", "code_postal": "77590", "coordonnees_gps": [48.4860029495, 2.72692404848], "code_commune_insee": "77096"}, "geometry": {"type": "Point", "coordinates": [2.72692404848, 48.4860029495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cbe1ea87b6acc680a85b935cbe8469291ae21e", "fields": {"nom_de_la_commune": "CHARTRONGES", "libell_d_acheminement": "CHARTRONGES", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77097"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d303b663c339356205ca0cf3d75fb2127796b6e8", "fields": {"nom_de_la_commune": "CHATENOY", "libell_d_acheminement": "CHATENOY", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77102"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13747a6a68c307f524a0b645567310f64ca64c16", "fields": {"nom_de_la_commune": "CHAUMES EN BRIE", "libell_d_acheminement": "CHAUMES EN BRIE", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77107"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b53e031cb11729ce18a77cf0cba558071245903e", "fields": {"nom_de_la_commune": "CHENOU", "libell_d_acheminement": "CHENOU", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77110"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327219f186fc88870eb0a33990751f0ccbd1bccd", "fields": {"nom_de_la_commune": "CHEVRY COSSIGNY", "libell_d_acheminement": "CHEVRY COSSIGNY", "code_postal": "77173", "coordonnees_gps": [48.7235256788, 2.6769970058], "code_commune_insee": "77114"}, "geometry": {"type": "Point", "coordinates": [2.6769970058, 48.7235256788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f1a0a0aa964b7f175bd259609b8d8ca9cdb221", "fields": {"nom_de_la_commune": "CHOISY EN BRIE", "libell_d_acheminement": "CHOISY EN BRIE", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77116"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39e9de6d82491f1e156b14243ff34fabd5c5938", "fields": {"nom_de_la_commune": "CITRY", "libell_d_acheminement": "CITRY", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77117"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4157e71ff5f0e31b94458ea39e9c33aa6503dfce", "fields": {"nom_de_la_commune": "CLOS FONTAINE", "libell_d_acheminement": "CLOS FONTAINE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77119"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41584e5d83107dd6b86228dc11dfd3e997dfb81a", "fields": {"nom_de_la_commune": "COCHEREL", "libell_d_acheminement": "COCHEREL", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77120"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9278503d4fb32fbeb3c974c172b6c6ef145e18ab", "fields": {"nom_de_la_commune": "COLLEGIEN", "libell_d_acheminement": "COLLEGIEN", "code_postal": "77090", "coordonnees_gps": [48.8280688136, 2.67763564393], "code_commune_insee": "77121"}, "geometry": {"type": "Point", "coordinates": [2.67763564393, 48.8280688136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9f2c501b7dad1489a1bc07c7e93831b47efbc5", "fields": {"nom_de_la_commune": "CONGIS SUR THEROUANNE", "libell_d_acheminement": "CONGIS SUR THEROUANNE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77126"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ec0838176eda09202616cb241b57424bec7456", "fields": {"nom_de_la_commune": "COULOMBS EN VALOIS", "libell_d_acheminement": "COULOMBS EN VALOIS", "code_postal": "77840", "coordonnees_gps": [49.0796099088, 3.11275376018], "code_commune_insee": "77129"}, "geometry": {"type": "Point", "coordinates": [3.11275376018, 49.0796099088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba252e60fd5c0ff658daabd867ec6ca9b292c063", "fields": {"nom_de_la_commune": "COURCELLES EN BASSEE", "libell_d_acheminement": "COURCELLES EN BASSEE", "code_postal": "77126", "coordonnees_gps": [48.4261598514, 3.09512447411], "code_commune_insee": "77133"}, "geometry": {"type": "Point", "coordinates": [3.09512447411, 48.4261598514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e27942530898d7e603999af8c5bd74dddd5db8", "fields": {"nom_de_la_commune": "COURTOMER", "libell_d_acheminement": "COURTOMER", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77138"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca2b742b4929075abf6bcfa7ad0e100d6ac631b", "fields": {"nom_de_la_commune": "COURTRY", "libell_d_acheminement": "COURTRY", "code_postal": "77181", "coordonnees_gps": [48.9151571578, 2.61878172318], "code_commune_insee": "77139"}, "geometry": {"type": "Point", "coordinates": [2.61878172318, 48.9151571578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b80e6743898ffed6b15ac07a5e537adf260b3d1", "fields": {"nom_de_la_commune": "COUTEVROULT", "libell_d_acheminement": "COUTEVROULT", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77141"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a66432a324db7edbd671b9dad374007ef7b7c6", "fields": {"code_postal": "77580", "code_commune_insee": "77142", "libell_d_acheminement": "CRECY LA CHAPELLE", "ligne_5": "LA CHAPELLE SUR CRECY", "nom_de_la_commune": "CRECY LA CHAPELLE", "coordonnees_gps": [48.8615810668, 2.95011085183]}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064f060009da8aa4119986bf35c92e3e9385ed44", "fields": {"nom_de_la_commune": "LA CROIX EN BRIE", "libell_d_acheminement": "LA CROIX EN BRIE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77147"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b96638a6aec2c7ced77a3071bca1a35404c71f3", "fields": {"nom_de_la_commune": "DAMMARTIN SUR TIGEAUX", "libell_d_acheminement": "DAMMARTIN SUR TIGEAUX", "code_postal": "77163", "coordonnees_gps": [48.7979316478, 2.90271680607], "code_commune_insee": "77154"}, "geometry": {"type": "Point", "coordinates": [2.90271680607, 48.7979316478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48a0eb85f0df0e77dedac76195c07cc793d9e37", "fields": {"nom_de_la_commune": "DORMELLES", "libell_d_acheminement": "DORMELLES", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77161"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97fa3343f0d33d85c895b61aeaec08e8ac6a7ac7", "fields": {"nom_de_la_commune": "LES ECRENNES", "libell_d_acheminement": "LES ECRENNES", "code_postal": "77820", "coordonnees_gps": [48.5045041989, 2.83445609947], "code_commune_insee": "77165"}, "geometry": {"type": "Point", "coordinates": [2.83445609947, 48.5045041989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544fd98d7a4c085521c7d9b11fb0f83c8c173aa1", "fields": {"nom_de_la_commune": "ETREPILLY", "libell_d_acheminement": "ETREPILLY", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77173"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36aa5b2fed926b47cb6996e1c939b4e193ef36a", "fields": {"nom_de_la_commune": "EVRY GREGY SUR YERRE", "libell_d_acheminement": "EVRY GREGY SUR YERRE", "code_postal": "77166", "coordonnees_gps": [48.6689119155, 2.65738604224], "code_commune_insee": "77175"}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76651c96d8be4e4179cc427bc34f2f81f5605ba", "fields": {"nom_de_la_commune": "LA GENEVRAYE", "libell_d_acheminement": "LA GENEVRAYE", "code_postal": "77690", "coordonnees_gps": [48.32561464, 2.75158001552], "code_commune_insee": "77202"}, "geometry": {"type": "Point", "coordinates": [2.75158001552, 48.32561464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faba70e78a4a7b424072d5a7ef4cb888ee15e11", "fields": {"nom_de_la_commune": "GESVRES LE CHAPITRE", "libell_d_acheminement": "GESVRES LE CHAPITRE", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77205"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73375daff6d186fe6b211d385c3c70a9d6f6213", "fields": {"nom_de_la_commune": "GOUAIX", "libell_d_acheminement": "GOUAIX", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77208"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d7444d6a236bd710134720c61b304aacee329d", "fields": {"nom_de_la_commune": "GOUVERNES", "libell_d_acheminement": "GOUVERNES", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77209"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b1f3089ffe52532e2a4ed4be6150320b14ab05", "fields": {"nom_de_la_commune": "GUIGNES", "libell_d_acheminement": "GUIGNES", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77222"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cafa49c54396f885cb1ee1ed80b1350c38e96d", "fields": {"nom_de_la_commune": "GURCY LE CHATEL", "libell_d_acheminement": "GURCY LE CHATEL", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77223"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f57668b4125dbab3c9114621615c0e6f28a09fd", "fields": {"nom_de_la_commune": "JAIGNES", "libell_d_acheminement": "JAIGNES", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77235"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca45749d453cc84dfe9728ecce02b11009ea7c5", "fields": {"nom_de_la_commune": "LESCHEROLLES", "libell_d_acheminement": "LESCHEROLLES", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77247"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6862cedf9b1827d0b3893e40bd13aaf315723c", "fields": {"nom_de_la_commune": "LIVRY SUR SEINE", "libell_d_acheminement": "LIVRY SUR SEINE", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77255"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c87fa5bd49d661456584d6efcfbe73a895f175", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77260"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0fed5b2aaf9897e7c0d536ffdbff8b54e2740a", "fields": {"code_postal": "77540", "code_commune_insee": "77264", "libell_d_acheminement": "LUMIGNY NESLES ORMEAUX", "ligne_5": "ORMEAUX", "nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", "coordonnees_gps": [48.6871810178, 2.97337841043]}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c837e2ae8eace8b38941e715eeff1a570e5d85b", "fields": {"nom_de_la_commune": "MARCILLY", "libell_d_acheminement": "MARCILLY", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77274"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b9b2dfd1ff7a9e2d6dd610bd95838221057a1eb", "fields": {"nom_de_la_commune": "MAROLLES SUR SEINE", "libell_d_acheminement": "MAROLLES SUR SEINE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77279"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f1e55d0abf94ccc6e988f92a0f61339b0dd86d", "fields": {"nom_de_la_commune": "MEIGNEUX", "libell_d_acheminement": "MEIGNEUX", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77286"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397426b802eea20abdbae61b328ec2dc4973a78c", "fields": {"nom_de_la_commune": "MERY SUR MARNE", "libell_d_acheminement": "MERY SUR MARNE", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77290"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3fde7f04409b284c607e1421c392324ddd4b351", "fields": {"nom_de_la_commune": "MISY SUR YONNE", "libell_d_acheminement": "MISY SUR YONNE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77293"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce594e60045bf710ba493874a1a988f38b978f3", "fields": {"nom_de_la_commune": "MONTCOURT FROMONVILLE", "libell_d_acheminement": "MONTCOURT FROMONVILLE", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77302"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af1a19698aead429ce8a9895cd1e151c7eba19b", "fields": {"nom_de_la_commune": "MONTIGNY LE GUESDIER", "libell_d_acheminement": "MONTIGNY LE GUESDIER", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77310"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5e1ffeb21e7d83f6dc598e300cbbdb41235530", "fields": {"nom_de_la_commune": "MOUSSEAUX LES BRAY", "libell_d_acheminement": "MOUSSEAUX LES BRAY", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77321"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942c59c26c100c3b765258152cedeaf8a7b9c28", "fields": {"nom_de_la_commune": "MOUSSY LE NEUF", "libell_d_acheminement": "MOUSSY LE NEUF", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77322"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34eb60798c32ef6bf951256ce3edb41166622120", "fields": {"nom_de_la_commune": "NANTEAU SUR LUNAIN", "libell_d_acheminement": "NANTEAU SUR LUNAIN", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77329"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1fcc61553ab46828a164bb65cce4c2168eb0e2e", "fields": {"nom_de_la_commune": "NANTEUIL SUR MARNE", "libell_d_acheminement": "NANTEUIL SUR MARNE", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77331"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5aaa30b2aecbc819745366ca0d028485d42dcf", "fields": {"nom_de_la_commune": "NEUFMOUTIERS EN BRIE", "libell_d_acheminement": "NEUFMOUTIERS EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77336"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb33e54e56d5cb6eeb98bb56510ebf6f11e6b32", "fields": {"nom_de_la_commune": "NOYEN SUR SEINE", "libell_d_acheminement": "NOYEN SUR SEINE", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77341"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7e7bc2e601c39616e0c956ee626e13d7389d04", "fields": {"nom_de_la_commune": "OISSERY", "libell_d_acheminement": "OISSERY", "code_postal": "77178", "coordonnees_gps": [49.0712863864, 2.81026251267], "code_commune_insee": "77344"}, "geometry": {"type": "Point", "coordinates": [2.81026251267, 49.0712863864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe8df0f2b9efc99da6ba4f4445145a8329f6c36", "fields": {"nom_de_la_commune": "PECY", "libell_d_acheminement": "PECY", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77357"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11fd3bda675ec23cf2e3122300447cd4d9a5e85a", "fields": {"nom_de_la_commune": "LE PLESSIS PLACY", "libell_d_acheminement": "LE PLESSIS PLACY", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77367"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d999e41ebaf304609a11b2fbd4e59afda07778", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77370"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b041e961e8ef8168a997b7db4e4bd86bc284c4", "fields": {"nom_de_la_commune": "POMMEUSE", "libell_d_acheminement": "POMMEUSE", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77371"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f01f41fb16a2f3aaa3b6a47fd9465b908d7b72", "fields": {"code_postal": "77400", "code_commune_insee": "77372", "libell_d_acheminement": "POMPONNE", "ligne_5": "LA POMPONNETTE", "nom_de_la_commune": "POMPONNE", "coordonnees_gps": [48.8816806976, 2.70264618038]}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9803fe5439ea6f77b5bc974c4f901519dfb5a127", "fields": {"nom_de_la_commune": "RAMPILLON", "libell_d_acheminement": "RAMPILLON", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77383"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a97228e33ef94276f9756a178847e547b092c6", "fields": {"nom_de_la_commune": "RUBELLES", "libell_d_acheminement": "RUBELLES", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77394"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c846597c4c0eaedd7ca3fd86276ee38b67bb3d3", "fields": {"nom_de_la_commune": "RUPEREUX", "libell_d_acheminement": "RUPEREUX", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77396"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74c88873c8f72f00e4d0c78cf63b63cff3b9474", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77402"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d7e9176b4a96658dc610dbb023655ffee239b8", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77403"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27e04fde70d7e0c6b8e3c77aa4f8a5cbac99a01a", "fields": {"nom_de_la_commune": "ST FIACRE", "libell_d_acheminement": "ST FIACRE", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77408"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5fa5ec0c83e0d4bf00df49d24eefb417b05d8a", "fields": {"nom_de_la_commune": "ST GERMAIN LAXIS", "libell_d_acheminement": "ST GERMAIN LAXIS", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77410"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e8cbdbda4a416cd092dc01b12efe2fdad08763", "fields": {"nom_de_la_commune": "ST GERMAIN SUR ECOLE", "libell_d_acheminement": "ST GERMAIN SUR ECOLE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77412"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff241e00926ea8e72198328608d367712be35fcf", "fields": {"nom_de_la_commune": "ST HILLIERS", "libell_d_acheminement": "ST HILLIERS", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77414"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6d414da4a08ea080b4ede30a56c360eb52be6c", "fields": {"nom_de_la_commune": "ST MARTIN DU BOSCHET", "libell_d_acheminement": "ST MARTIN DU BOSCHET", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77424"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102453a81ac6ae437da4a967fd3203b9d035f724", "fields": {"nom_de_la_commune": "ST MERY", "libell_d_acheminement": "ST MERY", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77426"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09db38826e80ec153d04cc05210bd8f66c11e552", "fields": {"nom_de_la_commune": "ST THIBAULT DES VIGNES", "libell_d_acheminement": "ST THIBAULT DES VIGNES", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77438"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1671c496ffd8e9c67ab8cd99680fa5e9344f44bc", "fields": {"nom_de_la_commune": "SAMOIS SUR SEINE", "libell_d_acheminement": "SAMOIS SUR SEINE", "code_postal": "77920", "coordonnees_gps": [48.4560557931, 2.75252560303], "code_commune_insee": "77441"}, "geometry": {"type": "Point", "coordinates": [2.75252560303, 48.4560557931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dd6d9a5f52ca3a847995520d6009b4c6381200", "fields": {"nom_de_la_commune": "SERVON", "libell_d_acheminement": "SERVON", "code_postal": "77170", "coordonnees_gps": [48.6935707994, 2.63183347569], "code_commune_insee": "77450"}, "geometry": {"type": "Point", "coordinates": [2.63183347569, 48.6935707994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9942b8704950e609290b05962c6e46f7de57b1a0", "fields": {"nom_de_la_commune": "SIVRY COURTRY", "libell_d_acheminement": "SIVRY COURTRY", "code_postal": "77115", "coordonnees_gps": [48.5423516758, 2.77150375047], "code_commune_insee": "77453"}, "geometry": {"type": "Point", "coordinates": [2.77150375047, 48.5423516758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6195d21b66b2b473fd481eeb5f0746ab524482cb", "fields": {"nom_de_la_commune": "SOURDUN", "libell_d_acheminement": "SOURDUN", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77459"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25bcf47726de76427d1721ca4b49c8c8a5346876", "fields": {"nom_de_la_commune": "THOMERY", "libell_d_acheminement": "THOMERY", "code_postal": "77810", "coordonnees_gps": [48.4043165887, 2.78049278049], "code_commune_insee": "77463"}, "geometry": {"type": "Point", "coordinates": [2.78049278049, 48.4043165887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccd1a54239007d088604e58fbd77ce78ebcff30", "fields": {"nom_de_la_commune": "THORIGNY SUR MARNE", "libell_d_acheminement": "THORIGNY SUR MARNE", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77464"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9c5022ec4aad2900f217b98f92da7c81ac49ff", "fields": {"nom_de_la_commune": "URY", "libell_d_acheminement": "URY", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77477"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a778663848d3dbe9c5400f12156df975901881ec", "fields": {"nom_de_la_commune": "VAUCOURTOIS", "libell_d_acheminement": "VAUCOURTOIS", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77484"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3670940420bb16347b75bef6ca955e65005b0e", "fields": {"nom_de_la_commune": "VERT ST DENIS", "libell_d_acheminement": "VERT ST DENIS", "code_postal": "77240", "coordonnees_gps": [48.5645874906, 2.60004351705], "code_commune_insee": "77495"}, "geometry": {"type": "Point", "coordinates": [2.60004351705, 48.5645874906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f347d5fdad719d979fd30b60a92d765d91431e1", "fields": {"nom_de_la_commune": "VILLEMARECHAL", "libell_d_acheminement": "VILLEMARECHAL", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77504"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e6fbf8315a2e583c0404f95ac2e9d24ca4af34", "fields": {"nom_de_la_commune": "VILLEMAREUIL", "libell_d_acheminement": "VILLEMAREUIL", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77505"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee0ff167076f3b1005e103a404d1481470b0771", "fields": {"nom_de_la_commune": "VILLEMER", "libell_d_acheminement": "VILLEMER", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77506"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02deaab581230e29b44da36ed127bc854acd0738", "fields": {"nom_de_la_commune": "VILLENEUVE ST DENIS", "libell_d_acheminement": "VILLENEUVE ST DENIS", "code_postal": "77174", "coordonnees_gps": [48.8118209596, 2.82523717272], "code_commune_insee": "77510"}, "geometry": {"type": "Point", "coordinates": [2.82523717272, 48.8118209596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53505a68a18910da766e17058bf79c1611672b83", "fields": {"nom_de_la_commune": "VILLENOY", "libell_d_acheminement": "VILLENOY", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77513"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f78924177c95bed3cd6fdffcfb2f8c3644b8882", "fields": {"nom_de_la_commune": "VILLEROY", "libell_d_acheminement": "VILLEROY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77515"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffc91513e6b6bc9cc9a9538eea7e1cae25fb006", "fields": {"code_postal": "77410", "code_commune_insee": "77517", "libell_d_acheminement": "VILLEVAUDE", "ligne_5": "MONTJAY LA TOUR", "nom_de_la_commune": "VILLEVAUDE", "coordonnees_gps": [48.9493778355, 2.7161171355]}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bcd42ae396d6d7ce948bea8e9217b69fd30e33", "fields": {"nom_de_la_commune": "BRETTEVILLE ST LAURENT", "libell_d_acheminement": "BRETTEVILLE ST LAURENT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76144"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fba805abe3e18d6661f356a00ea4732457882cb", "fields": {"nom_de_la_commune": "BULLY", "libell_d_acheminement": "BULLY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76147"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d491804dac729a10eebafa575eb476f89b06429", "fields": {"nom_de_la_commune": "CAILLY", "libell_d_acheminement": "CAILLY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76152"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb36ca592143aa517833e092344a55e8893d0ae", "fields": {"nom_de_la_commune": "CANTELEU", "libell_d_acheminement": "CANTELEU", "code_postal": "76380", "coordonnees_gps": [49.425520648, 1.00384964963], "code_commune_insee": "76157"}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7e845e387daa1885fa894674534719f258bedc", "fields": {"nom_de_la_commune": "CAUDEBEC LES ELBEUF", "libell_d_acheminement": "CAUDEBEC LES ELBEUF", "code_postal": "76320", "coordonnees_gps": [49.2796174465, 1.0395659245], "code_commune_insee": "76165"}, "geometry": {"type": "Point", "coordinates": [1.0395659245, 49.2796174465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383df4dfa84d288b7563fd74bdfd06a849b4464d", "fields": {"nom_de_la_commune": "LA CHAUSSEE", "libell_d_acheminement": "LA CHAUSSEE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76173"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4282f10fd3c8cd8a889daec0bd6c73c2eeaf2e6c", "fields": {"nom_de_la_commune": "CONTREMOULINS", "libell_d_acheminement": "CONTREMOULINS", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76187"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f3ecd105449652c863cd9f2532584f36e4a7aa", "fields": {"nom_de_la_commune": "COTTEVRARD", "libell_d_acheminement": "COTTEVRARD", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76188"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43940eb312cfc96d2f76d2477af4b3a94054e76c", "fields": {"nom_de_la_commune": "CRASVILLE LA MALLET", "libell_d_acheminement": "CRASVILLE LA MALLET", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76189"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1acb414ba27a4c84a2e192db39e63a21f3e560", "fields": {"nom_de_la_commune": "CRASVILLE LA ROCQUEFORT", "libell_d_acheminement": "CRASVILLE LA ROCQUEFORT", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76190"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "533934e845ff47525aa9322179781a9854a7a5cf", "fields": {"nom_de_la_commune": "CRIEL SUR MER", "libell_d_acheminement": "CRIEL SUR MER", "code_postal": "76910", "coordonnees_gps": [50.002581149, 1.30116674877], "code_commune_insee": "76192"}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7f046dd66d23d3bb9b14f5cf1903fef44a0c58", "fields": {"nom_de_la_commune": "CRIQUETOT L ESNEVAL", "libell_d_acheminement": "CRIQUETOT L ESNEVAL", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76196"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81889eb0aedd851f84b632afe4a6e45c7792bb32", "fields": {"nom_de_la_commune": "CRIQUETOT SUR OUVILLE", "libell_d_acheminement": "CRIQUETOT SUR OUVILLE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76198"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45dd09401b575c571055dd350f80bb82aa675d2", "fields": {"nom_de_la_commune": "CUY ST FIACRE", "libell_d_acheminement": "CUY ST FIACRE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76208"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39075fcd29a900d03cee4763c4b1ccb0bd23eabc", "fields": {"nom_de_la_commune": "DAMPIERRE ST NICOLAS", "libell_d_acheminement": "DAMPIERRE ST NICOLAS", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76210"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ae21766679d6677e62c057b5769bb964a4e84e", "fields": {"nom_de_la_commune": "DEVILLE LES ROUEN", "libell_d_acheminement": "DEVILLE LES ROUEN", "code_postal": "76250", "coordonnees_gps": [49.4669354731, 1.05115010486], "code_commune_insee": "76216"}, "geometry": {"type": "Point", "coordinates": [1.05115010486, 49.4669354731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93113f4e1d6438ed2bacc60dad37517be493d16f", "fields": {"nom_de_la_commune": "DOUDEVILLE", "libell_d_acheminement": "DOUDEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76219"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a54c86578791cdee12b5e9b02282ec483f6e5cc", "fields": {"nom_de_la_commune": "ECRAINVILLE", "libell_d_acheminement": "ECRAINVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76224"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d40662f0a0d21bcd01983bd27560a6e0093c27", "fields": {"nom_de_la_commune": "ECTOT LES BAONS", "libell_d_acheminement": "ECTOT LES BAONS", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76228"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3daceb6a09622142222cfa6cfa584ff745c14de2", "fields": {"nom_de_la_commune": "ELBEUF EN BRAY", "libell_d_acheminement": "ELBEUF EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76229"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cc1395a2c1885f749f9faa09223a92ccf2369f", "fields": {"nom_de_la_commune": "ETAIMPUIS", "libell_d_acheminement": "ETAIMPUIS", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76249"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f13b05139ccccc71667579c3aaa6ab0dd260fdd", "fields": {"nom_de_la_commune": "FLAMANVILLE", "libell_d_acheminement": "FLAMANVILLE", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76264"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7d7fe96eafc41438639f0f816b483ca5cd6cb19", "fields": {"nom_de_la_commune": "FLOCQUES", "libell_d_acheminement": "FLOCQUES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76266"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6aac87749f3e26255957fd70bacf1e903b3a522", "fields": {"code_postal": "76440", "code_commune_insee": "76276", "libell_d_acheminement": "FORGES LES EAUX", "ligne_5": "LE FOSSE", "nom_de_la_commune": "FORGES LES EAUX", "coordonnees_gps": [49.6188544023, 1.54394824597]}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9760ba52a321aa14bae144d0609585a531876d2", "fields": {"nom_de_la_commune": "FOUCARMONT", "libell_d_acheminement": "FOUCARMONT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76278"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2715d4ff671e28df6008cd57559464eef5663e", "fields": {"nom_de_la_commune": "LA FRENAYE", "libell_d_acheminement": "LA FRENAYE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76281"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d74f5233ef64ec446bc4ef1d990dc01151cc58", "fields": {"nom_de_la_commune": "FRESNAY LE LONG", "libell_d_acheminement": "FRESNAY LE LONG", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76284"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3697480ee5554109f12ea8c6f4940aabcb152ef6", "fields": {"nom_de_la_commune": "FRESQUIENNES", "libell_d_acheminement": "FRESQUIENNES", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76287"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f7f71344fe5a811975f5ca3d4a5401a96b939", "fields": {"nom_de_la_commune": "LA GAILLARDE", "libell_d_acheminement": "LA GAILLARDE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76294"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223a2f0dcf00ff85372959d3387f7c5935aebfd8", "fields": {"nom_de_la_commune": "GAILLEFONTAINE", "libell_d_acheminement": "GAILLEFONTAINE", "code_postal": "76870", "coordonnees_gps": [49.670350783, 1.60614437004], "code_commune_insee": "76295"}, "geometry": {"type": "Point", "coordinates": [1.60614437004, 49.670350783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f4c633b2f81f1446fdf8035379bd2f3e18d61c", "fields": {"nom_de_la_commune": "GONNETOT", "libell_d_acheminement": "GONNETOT", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76306"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179b88d7116f52a9be1c14437f5bba6bd3fbe72d", "fields": {"nom_de_la_commune": "GRAINVILLE YMAUVILLE", "libell_d_acheminement": "GRAINVILLE YMAUVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76317"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe226e0a8a1b44cffe613fa089de4c3de4a1b766", "fields": {"code_postal": "76530", "code_commune_insee": "76319", "libell_d_acheminement": "GRAND COURONNE", "ligne_5": "LES ESSARTS", "nom_de_la_commune": "GRAND COURONNE", "coordonnees_gps": [49.3726997193, 0.948232561629]}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a85467b819347af1c012401243d59074d075387", "fields": {"nom_de_la_commune": "LE HANOUARD", "libell_d_acheminement": "LE HANOUARD", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76339"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfb57f1be459c3ee90183f7cabef86c34219252", "fields": {"nom_de_la_commune": "HAUTOT L AUVRAY", "libell_d_acheminement": "HAUTOT L AUVRAY", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76346"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c532e4d5f3a9fbd234f834c9c48ad960b01d3b4b", "fields": {"nom_de_la_commune": "HAUTOT SUR MER", "libell_d_acheminement": "HAUTOT SUR MER", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76349"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52bcff60c3eec72e2b33ae9287e439e6e35ea0a", "fields": {"nom_de_la_commune": "HAUTOT SUR SEINE", "libell_d_acheminement": "HAUTOT SUR SEINE", "code_postal": "76113", "coordonnees_gps": [49.3773922379, 0.947884639946], "code_commune_insee": "76350"}, "geometry": {"type": "Point", "coordinates": [0.947884639946, 49.3773922379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64677f8b5bf304441d8653c02625a61e8e7ffecc", "fields": {"nom_de_la_commune": "HENOUVILLE", "libell_d_acheminement": "HENOUVILLE", "code_postal": "76840", "coordonnees_gps": [49.4447486828, 0.958671899236], "code_commune_insee": "76354"}, "geometry": {"type": "Point", "coordinates": [0.958671899236, 49.4447486828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb7948ca910e6821d3f628a1e6aa2f775fd2826", "fields": {"nom_de_la_commune": "HERICOURT EN CAUX", "libell_d_acheminement": "HERICOURT EN CAUX", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76355"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4784ccdeaefe904ce8865f5fd8e9aa75102754f", "fields": {"nom_de_la_commune": "HERONCHELLES", "libell_d_acheminement": "HERONCHELLES", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76359"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ec3c5921d01e8db7082363b7b8e87cd45d9a08", "fields": {"nom_de_la_commune": "HODENG AU BOSC", "libell_d_acheminement": "HODENG AU BOSC", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76363"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3569131cd87687dbc35d9172b429263147ac64b", "fields": {"nom_de_la_commune": "HOUQUETOT", "libell_d_acheminement": "HOUQUETOT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76368"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d5c6313e104cf73a79757088b9750200059ed2", "fields": {"nom_de_la_commune": "IMBLEVILLE", "libell_d_acheminement": "IMBLEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76373"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1ab6360739d18a53b5f085762319e003f2ef0f", "fields": {"nom_de_la_commune": "ISNEAUVILLE", "libell_d_acheminement": "ISNEAUVILLE", "code_postal": "76230", "coordonnees_gps": [49.5059681606, 1.15634318194], "code_commune_insee": "76377"}, "geometry": {"type": "Point", "coordinates": [1.15634318194, 49.5059681606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1089a36c9fc909b7fef1c623c74a606141320c7", "fields": {"nom_de_la_commune": "JUMIEGES", "libell_d_acheminement": "JUMIEGES", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76378"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48280d71cdf3b207fffd6e0e78a6247ab0c7a9b", "fields": {"nom_de_la_commune": "LAMMERVILLE", "libell_d_acheminement": "LAMMERVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76380"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68a4ae8776f74bda6c606cb9ccf10ec818fc943", "fields": {"nom_de_la_commune": "LANQUETOT", "libell_d_acheminement": "LANQUETOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76382"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3835911a566ef2fd1a06fa43a7445d90853ab60", "fields": {"nom_de_la_commune": "LA LONDE", "libell_d_acheminement": "LA LONDE", "code_postal": "76500", "coordonnees_gps": [49.3087517455, 0.955689730263], "code_commune_insee": "76391"}, "geometry": {"type": "Point", "coordinates": [0.955689730263, 49.3087517455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c838a4630331527ca8921b64d339023977afc67", "fields": {"nom_de_la_commune": "LONGMESNIL", "libell_d_acheminement": "LONGMESNIL", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76393"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d496c6a6f22b735da01f46550f889af68d53082", "fields": {"nom_de_la_commune": "LOUVETOT", "libell_d_acheminement": "LOUVETOT", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76398"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d085a5a2b42904f7d78fc7d401df9adfd000ac04", "fields": {"nom_de_la_commune": "MANNEVILLETTE", "libell_d_acheminement": "MANNEVILLETTE", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76409"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417e2a3bc98c8f8ba26758256f5809a167c9e1a6", "fields": {"nom_de_la_commune": "MARTIN EGLISE", "libell_d_acheminement": "MARTIN EGLISE", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76414"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1932acde4d1ab6861815cbf2e28d6aec59843fd9", "fields": {"nom_de_la_commune": "MENONVAL", "libell_d_acheminement": "MENONVAL", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76424"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0077415663b410bd9230439d095834f70e7a61e", "fields": {"nom_de_la_commune": "MESNIL FOLLEMPRISE", "libell_d_acheminement": "MESNIL FOLLEMPRISE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76430"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf94f17f60adf81cde257be3adb54c8bd853036", "fields": {"nom_de_la_commune": "MESNIL PANNEVILLE", "libell_d_acheminement": "MESNIL PANNEVILLE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76433"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de0ccb4dc533b70d6e1d8f7866c49c559c4626d", "fields": {"nom_de_la_commune": "MILLEBOSC", "libell_d_acheminement": "MILLEBOSC", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76438"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3824c457f89f4e40f6d4820bd195dd9bc11a928e", "fields": {"nom_de_la_commune": "MONCHAUX SORENG", "libell_d_acheminement": "MONCHAUX SORENG", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76441"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684c44b8d870f17294cb9b940acd2b9be28c7628", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "76380", "coordonnees_gps": [49.425520648, 1.00384964963], "code_commune_insee": "76446"}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba9b6ed6b5a479388d6f430d7fc2cfd6dbd0885", "fields": {"nom_de_la_commune": "MONTREUIL EN CAUX", "libell_d_acheminement": "MONTREUIL EN CAUX", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76449"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75c8c599ebbded2fc15eb9cbac2a68ee28558e7", "fields": {"nom_de_la_commune": "MORVILLE SUR ANDELLE", "libell_d_acheminement": "MORVILLE SUR ANDELLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76455"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d505213e372f2025f3992188cf830806ce5516", "fields": {"nom_de_la_commune": "NESLE HODENG", "libell_d_acheminement": "NESLE HODENG", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76459"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9eb781cc745646ff89886fa812696811e45a238", "fields": {"nom_de_la_commune": "NEUFBOSC", "libell_d_acheminement": "NEUFBOSC", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76461"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440b27eb026efbc067475baf560075c3993b5dc5", "fields": {"nom_de_la_commune": "NEUFCHATEL EN BRAY", "libell_d_acheminement": "NEUFCHATEL EN BRAY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76462"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401b3bcd2dc9f86c3511fecb483d3b3ef3f0a7bd", "fields": {"nom_de_la_commune": "NORMANVILLE", "libell_d_acheminement": "NORMANVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76470"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebe7170c88e90f088c7ff0aa60efb44f66f2ead", "fields": {"nom_de_la_commune": "NORVILLE", "libell_d_acheminement": "NORVILLE", "code_postal": "76330", "coordonnees_gps": [49.4716972983, 0.6014275892], "code_commune_insee": "76471"}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c70477d5126416108ed1778549b6d47cdd59bac", "fields": {"nom_de_la_commune": "FRANQUEVILLE ST PIERRE", "libell_d_acheminement": "FRANQUEVILLE ST PIERRE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76475"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2195b27c66d80e89ad1fabfe582a6f526aa7ef", "fields": {"code_postal": "76330", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "NOTRE DAME DE GRAVENCHON", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.4716972983, 0.6014275892]}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a00463df33fad22bbf1144114bb19b3d65cb3ced", "fields": {"nom_de_la_commune": "NOTRE DAME DU BEC", "libell_d_acheminement": "NOTRE DAME DU BEC", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76477"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c573e7ce7e3d779d7cb9a3ce76a5fd528acec1", "fields": {"nom_de_la_commune": "OCTEVILLE SUR MER", "libell_d_acheminement": "OCTEVILLE SUR MER", "code_postal": "76930", "coordonnees_gps": [49.5712629659, 0.127046049266], "code_commune_insee": "76481"}, "geometry": {"type": "Point", "coordinates": [0.127046049266, 49.5712629659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed2cc66032d984c60c1b491bb2e17d7ff31c0337", "fields": {"nom_de_la_commune": "OFFRANVILLE", "libell_d_acheminement": "OFFRANVILLE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76482"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8345914be6f0b86193a02af8bf14f5b53ae4aed5", "fields": {"nom_de_la_commune": "OHERVILLE", "libell_d_acheminement": "OHERVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76483"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "767554c40183d4859267e83f224b3536b693c1cd", "fields": {"nom_de_la_commune": "OISSEL", "libell_d_acheminement": "OISSEL", "code_postal": "76350", "coordonnees_gps": [49.3475706994, 1.07406447579], "code_commune_insee": "76484"}, "geometry": {"type": "Point", "coordinates": [1.07406447579, 49.3475706994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c6ef9770b806ab337a68e7d530a1a86e113ee28", "fields": {"nom_de_la_commune": "OMONVILLE", "libell_d_acheminement": "OMONVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76485"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f7d50a7fb452cc2eda18233d1c006a8c139273", "fields": {"nom_de_la_commune": "PALUEL", "libell_d_acheminement": "PALUEL", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76493"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eec6c56d35964c09a10c51098e8fd29afda7cbb", "fields": {"nom_de_la_commune": "PARC D ANXTOT", "libell_d_acheminement": "PARC D ANXTOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76494"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31818720f6e58961a62c55883ce4f34a6a9e0388", "fields": {"nom_de_la_commune": "PAVILLY", "libell_d_acheminement": "PAVILLY", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76495"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8749e08d9d0c30987318ca6be2e69f3d899bcdf7", "fields": {"nom_de_la_commune": "PETIVILLE", "libell_d_acheminement": "PETIVILLE", "code_postal": "76330", "coordonnees_gps": [49.4716972983, 0.6014275892], "code_commune_insee": "76499"}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfb78658a9d9d5a647a67e6463fee9145363392", "fields": {"nom_de_la_commune": "PIERRECOURT", "libell_d_acheminement": "PIERRECOURT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76500"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fbe25da6933759cedbf79671a65551da56472b", "fields": {"nom_de_la_commune": "PIERREVAL", "libell_d_acheminement": "PIERREVAL", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76502"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57db36cc40de3f426ae6adc12c56e797dda5c85", "fields": {"nom_de_la_commune": "POMMEREUX", "libell_d_acheminement": "POMMEREUX", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76505"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df048064aaa248df1a60c986b23b6728063dc20", "fields": {"nom_de_la_commune": "PRETOT VICQUEMARE", "libell_d_acheminement": "PRETOT VICQUEMARE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76510"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6572602219630d50ac0b4083b162a5e48c62187", "fields": {"nom_de_la_commune": "QUEVILLON", "libell_d_acheminement": "QUEVILLON", "code_postal": "76840", "coordonnees_gps": [49.4447486828, 0.958671899236], "code_commune_insee": "76513"}, "geometry": {"type": "Point", "coordinates": [0.958671899236, 49.4447486828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27e2bfb17054725501a6850005363fac5d2420df", "fields": {"nom_de_la_commune": "RICARVILLE DU VAL", "libell_d_acheminement": "RICARVILLE DU VAL", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76526"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8742c05b908546d8dd820f2a976421c4ec499102", "fields": {"nom_de_la_commune": "ROCQUEFORT", "libell_d_acheminement": "ROCQUEFORT", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76531"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "944e1baf346f74861736a81b9c9405c11c4fe9e5", "fields": {"nom_de_la_commune": "SAINNEVILLE", "libell_d_acheminement": "SAINNEVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76551"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc20ebdc9d98ecb417e31034b726498056b0851a", "fields": {"nom_de_la_commune": "ST AUBIN CELLOVILLE", "libell_d_acheminement": "ST AUBIN CELLOVILLE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76558"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e381e9da7ba6567569b3d4e26bafee7956e3b7c", "fields": {"nom_de_la_commune": "ST AUBIN SUR SCIE", "libell_d_acheminement": "ST AUBIN SUR SCIE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76565"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2057829fb989b4c2a9fb01d16c77ea43e472cf8a", "fields": {"nom_de_la_commune": "STE AUSTREBERTHE", "libell_d_acheminement": "STE AUSTREBERTHE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76566"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c4fe33046a909a0e5b5b69b4cc5e8c5a8e1c82", "fields": {"nom_de_la_commune": "STE CROIX SUR BUCHY", "libell_d_acheminement": "STE CROIX SUR BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76571"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d787006f7247646f1b0d60d3e6e46dc707bd3bd", "fields": {"nom_de_la_commune": "ST DENIS D ACLON", "libell_d_acheminement": "ST DENIS D ACLON", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76572"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789523fa21ae54e364b018b30b5f33b072083826", "fields": {"nom_de_la_commune": "ST GEORGES SUR FONTAINE", "libell_d_acheminement": "ST GEORGES SUR FONTAINE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76580"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ab15b948d6adbf368497834b30550d9bd0ce73", "fields": {"nom_de_la_commune": "ST GERMAIN D ETABLES", "libell_d_acheminement": "ST GERMAIN D ETABLES", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76582"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1c73d94da3e436b7f68a753624b2af8c18fcd7", "fields": {"nom_de_la_commune": "ST GERMAIN SOUS CAILLY", "libell_d_acheminement": "ST GERMAIN SOUS CAILLY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76583"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b45635b1378cf35e344e828522c0c5dd42a170c2", "fields": {"nom_de_la_commune": "ST JEAN DE LA NEUVILLE", "libell_d_acheminement": "ST JEAN DE LA NEUVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76593"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aab3308d9408a2d34a82f43f305cda0ef2e2137", "fields": {"nom_de_la_commune": "ST LEGER DU BOURG DENIS", "libell_d_acheminement": "ST LEGER DU BOURG DENIS", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76599"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b693d135cf55636b582cf7c7217811a3d64db52b", "fields": {"nom_de_la_commune": "ST MARTIN AUX ARBRES", "libell_d_acheminement": "ST MARTIN AUX ARBRES", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76611"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f600d499f6c8019805e41840ba523f8fcefef752", "fields": {"nom_de_la_commune": "ST MARTIN AUX BUNEAUX", "libell_d_acheminement": "ST MARTIN AUX BUNEAUX", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76613"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06969eda93a86ad2f9668fdb92142d3149d27c9d", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GUILMECOURT", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377390daa352537ce7a170b720e1d784ec507f6b", "fields": {"nom_de_la_commune": "ST MARTIN L HORTIER", "libell_d_acheminement": "ST MARTIN L HORTIER", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76620"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135864758f838cde5fb75b299c07b95860837c8a", "fields": {"nom_de_la_commune": "ST PAER", "libell_d_acheminement": "ST PAER", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76631"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d25367ff5822c0f39106189c93e5489660001a", "fields": {"nom_de_la_commune": "CHAMADELLE", "libell_d_acheminement": "CHAMADELLE", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33124"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7553953d56fe7538d1965f608045bb839ba9431", "fields": {"nom_de_la_commune": "CURSAN", "libell_d_acheminement": "CURSAN", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33145"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef6e9e84ad695df7269b8e333dc2e6c62bbf0ec", "fields": {"nom_de_la_commune": "DIEULIVOL", "libell_d_acheminement": "DIEULIVOL", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33150"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ddeb109c55a5949ad22a9d94a9b9182515bde6", "fields": {"nom_de_la_commune": "DONZAC", "libell_d_acheminement": "DONZAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33152"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acf2e1678318de94dd788e6be52fa85e7b40175", "fields": {"nom_de_la_commune": "LES EGLISOTTES ET CHALAURES", "libell_d_acheminement": "LES EGLISOTTES ET CHALAURES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33154"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e525255894ecc6c286ab0c9121a9463e3d824e", "fields": {"nom_de_la_commune": "ESCAUDES", "libell_d_acheminement": "ESCAUDES", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33155"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f6c9799c95bdbaf345e2be05e2e22c021f1ed25", "fields": {"nom_de_la_commune": "FALEYRAS", "libell_d_acheminement": "FALEYRAS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33163"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf98ca85e2eb32657726dc85db3d1cca74bccea", "fields": {"nom_de_la_commune": "FARGUES ST HILAIRE", "libell_d_acheminement": "FARGUES ST HILAIRE", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33165"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe6e4b4ceaad2539e8171dac7681d94c547026d", "fields": {"nom_de_la_commune": "FRONTENAC", "libell_d_acheminement": "FRONTENAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33175"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6247a5a84f0d9595628654bf34ab75a22d0a423", "fields": {"nom_de_la_commune": "GAILLAN EN MEDOC", "libell_d_acheminement": "GAILLAN EN MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33177"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb782d804b1061f8b5a59463a52df6db2679cb81", "fields": {"nom_de_la_commune": "GOUALADE", "libell_d_acheminement": "GOUALADE", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33190"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f41dc436ba44caf6af3bfcec3366971c7cce2d", "fields": {"nom_de_la_commune": "GOURS", "libell_d_acheminement": "GOURS", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33191"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a01edb460540d28b86bcd119ff6ffcf4507231", "fields": {"nom_de_la_commune": "GRIGNOLS", "libell_d_acheminement": "GRIGNOLS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33195"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1810737403941e7ea80ea527f3486770e4500ae0", "fields": {"nom_de_la_commune": "HAUX", "libell_d_acheminement": "HAUX", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33201"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1927402dd43dc0f2047f13809b305a456b1f4951", "fields": {"nom_de_la_commune": "HOURTIN", "libell_d_acheminement": "HOURTIN", "code_postal": "33990", "coordonnees_gps": [45.2054974489, -1.06281862188], "code_commune_insee": "33203"}, "geometry": {"type": "Point", "coordinates": [-1.06281862188, 45.2054974489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa025d13a59529fc8c87329c55978091e2e9f879", "fields": {"nom_de_la_commune": "JAU DIGNAC ET LOIRAC", "libell_d_acheminement": "JAU DIGNAC ET LOIRAC", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33208"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff01c1d586a720bb6f1e3a2707c3253e4549375", "fields": {"nom_de_la_commune": "JUILLAC", "libell_d_acheminement": "JUILLAC", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33210"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3bb4a488fe199d098b72de22d9942275ec86ac", "fields": {"nom_de_la_commune": "LACANAU", "libell_d_acheminement": "LACANAU", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33214"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47943cddce7061f8be244ec222fa1631f4a74d11", "fields": {"code_postal": "33680", "code_commune_insee": "33214", "libell_d_acheminement": "LACANAU", "ligne_5": "LACANAU OCEAN", "nom_de_la_commune": "LACANAU", "coordonnees_gps": [44.9228309984, -1.08469185775]}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373334fe609f0696b1b43cd160585346cfb1f838", "fields": {"nom_de_la_commune": "LANDERROUAT", "libell_d_acheminement": "LANDERROUAT", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33223"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd897f785c04b55d7ee494d0399274c8f347d5f", "fields": {"nom_de_la_commune": "LANDERROUET SUR SEGUR", "libell_d_acheminement": "LANDERROUET SUR SEGUR", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33224"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2831ec5a8212e9606cde63fcf4b0c496d815dbc", "fields": {"nom_de_la_commune": "LANGOIRAN", "libell_d_acheminement": "LANGOIRAN", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33226"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2caa28b99a2aedd7d3242f0c1cb182fde958b21b", "fields": {"nom_de_la_commune": "LANTON", "libell_d_acheminement": "LANTON", "code_postal": "33138", "coordonnees_gps": [44.7747400288, -0.9772534872], "code_commune_insee": "33229"}, "geometry": {"type": "Point", "coordinates": [-0.9772534872, 44.7747400288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6e259dec49b18ffa5d0d75c87a73a61c358230", "fields": {"nom_de_la_commune": "LEGE CAP FERRET", "libell_d_acheminement": "LEGE CAP FERRET", "code_postal": "33950", "coordonnees_gps": [44.7600136809, -1.19365601812], "code_commune_insee": "33236"}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b533318d9115a817ffbf8b47c7ac3e8f5413e38", "fields": {"nom_de_la_commune": "LERM ET MUSSET", "libell_d_acheminement": "LERM ET MUSSET", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33239"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd4d0d34774c4d04c5e68ba214ad3df9ed459d89", "fields": {"nom_de_la_commune": "LOUPIAC DE LA REOLE", "libell_d_acheminement": "LOUPIAC DE LA REOLE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33254"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de11d7f68c2a6e019566b3a2fe33435409d2e78e", "fields": {"nom_de_la_commune": "LUGON ET L ILE DU CARNAY", "libell_d_acheminement": "LUGON ET L ILE DU CARNAY", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33259"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777668f74bf39569364d5806966f92dcf3617d24", "fields": {"nom_de_la_commune": "LUGOS", "libell_d_acheminement": "LUGOS", "code_postal": "33830", "coordonnees_gps": [44.48117634, -0.823096035056], "code_commune_insee": "33260"}, "geometry": {"type": "Point", "coordinates": [-0.823096035056, 44.48117634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8989b1f31aa4e762f44caf7aa0a74b3d0de099e", "fields": {"nom_de_la_commune": "MADIRAC", "libell_d_acheminement": "MADIRAC", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33263"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbc8cf61121ef6ca91fc7e1c5cb7d95e09e29fd", "fields": {"nom_de_la_commune": "MARANSIN", "libell_d_acheminement": "MARANSIN", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33264"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6c1170c9b5819b7d8d4007b021bc802c2397b7", "fields": {"nom_de_la_commune": "MARIONS", "libell_d_acheminement": "MARIONS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33271"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6919cfbe162508841cb87b29051a4f974201d0dc", "fields": {"nom_de_la_commune": "MARTRES", "libell_d_acheminement": "MARTRES", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33275"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6f8ff5ea970fcbf75886d914155061bfaaffb5", "fields": {"nom_de_la_commune": "MASSEILLES", "libell_d_acheminement": "MASSEILLES", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33276"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864750331390f740986603cbcc27369eea3cf0d9", "fields": {"nom_de_la_commune": "MONGAUZY", "libell_d_acheminement": "MONGAUZY", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33287"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0393eab77cc5b51f0844f5f21cec75cf71189da", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33289"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb316f423cb36ccee6920acf6aa644c00dee5f9", "fields": {"code_postal": "33570", "code_commune_insee": "33290", "libell_d_acheminement": "MONTAGNE", "ligne_5": "ST GEORGES", "nom_de_la_commune": "MONTAGNE", "coordonnees_gps": [44.952442946, -0.0837974329549]}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0ac321299d8271164ed824ae198cf065dd382b", "fields": {"nom_de_la_commune": "NAUJAC SUR MER", "libell_d_acheminement": "NAUJAC SUR MER", "code_postal": "33990", "coordonnees_gps": [45.2054974489, -1.06281862188], "code_commune_insee": "33300"}, "geometry": {"type": "Point", "coordinates": [-1.06281862188, 45.2054974489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5606619a7a08889e4850598ff4041cf01ea8af00", "fields": {"nom_de_la_commune": "ORDONNAC", "libell_d_acheminement": "ORDONNAC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33309"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6157bf45d506787254d59ed82982ed0f02d14a78", "fields": {"nom_de_la_commune": "PELLEGRUE", "libell_d_acheminement": "PELLEGRUE", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33316"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed829b3ce1d83c3f268402cdfae2c462b21ed44", "fields": {"nom_de_la_commune": "PERISSAC", "libell_d_acheminement": "PERISSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33317"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd39eb26db22450581911603a72ac9c2224d8e7", "fields": {"nom_de_la_commune": "PEUJARD", "libell_d_acheminement": "PEUJARD", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33321"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1641aa7c7932dd9f249598a0aa56e2bc95aa1c4", "fields": {"nom_de_la_commune": "LE PORGE", "libell_d_acheminement": "LE PORGE", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33333"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b7611c35920f358cac4fd3b3334ea0cb76afc8", "fields": {"nom_de_la_commune": "PREIGNAC", "libell_d_acheminement": "PREIGNAC", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33337"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfd382bf8a7246b7b6ac996c56e857e0659f2d3", "fields": {"nom_de_la_commune": "PUJOLS SUR CIRON", "libell_d_acheminement": "PUJOLS SUR CIRON", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33343"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975bd9d5239872b755c47c5d812a537f708e1e4c", "fields": {"nom_de_la_commune": "RAUZAN", "libell_d_acheminement": "RAUZAN", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33350"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b313508befca57c5a0a2b59aa32d35236e7d5c38", "fields": {"nom_de_la_commune": "LA REOLE", "libell_d_acheminement": "LA REOLE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33352"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a772fbf46e71b2302b9abd3c5eca2d80693822c8", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33365"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfc9eb6b3a282e6630b744f9dec084850502893", "fields": {"nom_de_la_commune": "ST ANTOINE SUR L ISLE", "libell_d_acheminement": "ST ANTOINE SUR L ISLE", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33373"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5fbd337239ab85a847e67b969c84a065a879b7", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33379"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b45c0bdf58c073c91ed86038d7afcbe55e39f18c", "fields": {"nom_de_la_commune": "ST CAPRAIS DE BLAYE", "libell_d_acheminement": "ST CAPRAIS DE BLAYE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33380"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "171c860a806e924e17f675d65fe9003872d11a2a", "fields": {"nom_de_la_commune": "ST COME", "libell_d_acheminement": "ST COME", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33391"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197d53e522be6dc974dafa787f4cf023127cf374", "fields": {"nom_de_la_commune": "ST ESTEPHE", "libell_d_acheminement": "ST ESTEPHE", "code_postal": "33180", "coordonnees_gps": [45.262541575, -0.809284319605], "code_commune_insee": "33395"}, "geometry": {"type": "Point", "coordinates": [-0.809284319605, 45.262541575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73342ac01c85ea93ba319e0c985e8b841978134e", "fields": {"nom_de_la_commune": "ST EXUPERY", "libell_d_acheminement": "ST EXUPERY", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33398"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e461d49f13dfa8c72a7f91c838766a4754dde9", "fields": {"nom_de_la_commune": "ST FELIX DE FONCAUDE", "libell_d_acheminement": "ST FELIX DE FONCAUDE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33399"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e39d0c3da5bea764d20457885d6b15050d4f3780", "fields": {"nom_de_la_commune": "STE FOY LA LONGUE", "libell_d_acheminement": "STE FOY LA LONGUE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33403"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372d43ece0db9edb94131347fff7cbcc875aa155", "fields": {"nom_de_la_commune": "ST GENES DE LOMBAUD", "libell_d_acheminement": "ST GENES DE LOMBAUD", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33408"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5997f47eb29f28a3c295460764cf2fed431203c8", "fields": {"nom_de_la_commune": "ST GENIS DU BOIS", "libell_d_acheminement": "ST GENIS DU BOIS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33409"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a7ff6f04630e168009d6b19c747389df780e71", "fields": {"nom_de_la_commune": "ST GERMAIN DE LA RIVIERE", "libell_d_acheminement": "ST GERMAIN DE LA RIVIERE", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33414"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae92bb0458ef4dbd5cdfdf7e47fa53ce05e99fe6", "fields": {"nom_de_la_commune": "ST GIRONS D AIGUEVIVES", "libell_d_acheminement": "ST GIRONS D AIGUEVIVES", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33416"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559bdff89f4985b94ea11f4fe682241f9e6d1449", "fields": {"nom_de_la_commune": "ST HILAIRE DE LA NOAILLE", "libell_d_acheminement": "ST HILAIRE DE LA NOAILLE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33418"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522924ba6ea670d06435da6663bedf40ff727ddf", "fields": {"nom_de_la_commune": "ST LAURENT DES COMBES", "libell_d_acheminement": "ST LAURENT DES COMBES", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33426"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd56bc93fb3dcf8b63e7aba0086517058058baaa", "fields": {"nom_de_la_commune": "ST LOUIS DE MONTFERRAND", "libell_d_acheminement": "ST LOUIS DE MONTFERRAND", "code_postal": "33440", "coordonnees_gps": [44.9552105783, -0.50282224185], "code_commune_insee": "33434"}, "geometry": {"type": "Point", "coordinates": [-0.50282224185, 44.9552105783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52948c1a7e0acbc3fd875e82444f1630f7dd330e", "fields": {"nom_de_la_commune": "ST MAGNE", "libell_d_acheminement": "ST MAGNE", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33436"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bebe4d72d949c57aabeb41fdfe851dc0cc9b158", "fields": {"nom_de_la_commune": "ST MAIXANT", "libell_d_acheminement": "ST MAIXANT", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33438"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6791fe317a9ae6a9907abedf7257e9bb1c2430c", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33440"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2d2961869f8f7f12b1227ca932334250d3bae5", "fields": {"nom_de_la_commune": "ST MARTIN DU PUY", "libell_d_acheminement": "ST MARTIN DU PUY", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33446"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e5dc031e0ddc5d72b8d1d88bbab14e8eb6b1be", "fields": {"nom_de_la_commune": "ST MICHEL DE CASTELNAU", "libell_d_acheminement": "ST MICHEL DE CASTELNAU", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33450"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc03f218edf7b366bad8b59fe5867b0c48018b0f", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33458"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5462fff56426a32add5a12847252f5225552de", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33468"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1762242baee9475eb08c37239b68b0efdc640b83", "fields": {"nom_de_la_commune": "ST VIVIEN DE MONSEGUR", "libell_d_acheminement": "ST VIVIEN DE MONSEGUR", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33491"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9a8429ef290c88e65fa216f714bcda2ef15ab4", "fields": {"nom_de_la_commune": "SENDETS", "libell_d_acheminement": "SENDETS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33511"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb1a3251aa3ce4c626d1c303793f5a13836a0481", "fields": {"nom_de_la_commune": "SOUSSAC", "libell_d_acheminement": "SOUSSAC", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33516"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc6a8c5b0e8b6b4e72a87af16f99e2637c4d7450", "fields": {"nom_de_la_commune": "TALAIS", "libell_d_acheminement": "TALAIS", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33521"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2edfa3970e56770c83575d155f32fc64015b3c05", "fields": {"nom_de_la_commune": "TAURIAC", "libell_d_acheminement": "TAURIAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33525"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b56f2d800454adc34babb264f338413bdd0b750", "fields": {"nom_de_la_commune": "LE TEMPLE", "libell_d_acheminement": "LE TEMPLE", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33528"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a82dff73188858483d587a29c2d29a70fd826b", "fields": {"code_postal": "33260", "code_commune_insee": "33529", "libell_d_acheminement": "LA TESTE DE BUCH", "ligne_5": "CAZAUX", "nom_de_la_commune": "LA TESTE DE BUCH", "coordonnees_gps": [44.5562733518, -1.17522251719]}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdececfc8c892728e66cc1572022d76deb6aca5c", "fields": {"nom_de_la_commune": "UZESTE", "libell_d_acheminement": "UZESTE", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33537"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10df577b160a40f3f52068bc193dbed139cbed3", "fields": {"nom_de_la_commune": "VIGNONET", "libell_d_acheminement": "VIGNONET", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33546"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535cdc6b920015b2c5feed6f11cba39ceeba563c", "fields": {"nom_de_la_commune": "VILLANDRAUT", "libell_d_acheminement": "VILLANDRAUT", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33547"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44101409dfbe68ae27271cbabca6485a29bed0d", "fields": {"nom_de_la_commune": "VILLEGOUGE", "libell_d_acheminement": "VILLEGOUGE", "code_postal": "33141", "coordonnees_gps": [44.9675844038, -0.299545189755], "code_commune_insee": "33548"}, "geometry": {"type": "Point", "coordinates": [-0.299545189755, 44.9675844038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b424e28bd71cd0b453e21bf4b701f771586049f8", "fields": {"nom_de_la_commune": "VIRSAC", "libell_d_acheminement": "VIRSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33553"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b974017c9b850ea748dca09afdfc96588f8c82", "fields": {"nom_de_la_commune": "MARCHEPRIME", "libell_d_acheminement": "MARCHEPRIME", "code_postal": "33380", "coordonnees_gps": [44.6379766887, -0.903316939902], "code_commune_insee": "33555"}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f8b91c0554e566520b1d739b7737407506070d", "fields": {"code_postal": "34300", "code_commune_insee": "34003", "libell_d_acheminement": "AGDE", "ligne_5": "LE CAP D AGDE", "nom_de_la_commune": "AGDE", "coordonnees_gps": [43.3094378248, 3.48447174054]}, "geometry": {"type": "Point", "coordinates": [3.48447174054, 43.3094378248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a42cada15b14c4cb0e026a3f8b86936e11505f66", "fields": {"nom_de_la_commune": "AGONES", "libell_d_acheminement": "AGONES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34005"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "766ae49921e096bb37b417a63db5b2ba897abf5a", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34007"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69f93b22138aac31686503dcc0d0dcf9277ece9", "fields": {"nom_de_la_commune": "ASSAS", "libell_d_acheminement": "ASSAS", "code_postal": "34820", "coordonnees_gps": [43.7090659495, 3.91319760845], "code_commune_insee": "34014"}, "geometry": {"type": "Point", "coordinates": [3.91319760845, 43.7090659495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80836eb5fafaaa944410bec6b400683e4998a32", "fields": {"nom_de_la_commune": "AZILLANET", "libell_d_acheminement": "AZILLANET", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34020"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b082e71441fa9a5bccbd0bdb2fe1a11b955eccd0", "fields": {"nom_de_la_commune": "BALARUC LE VIEUX", "libell_d_acheminement": "BALARUC LE VIEUX", "code_postal": "34540", "coordonnees_gps": [43.4557715487, 3.69388023516], "code_commune_insee": "34024"}, "geometry": {"type": "Point", "coordinates": [3.69388023516, 43.4557715487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc05f3fa79bb432c858b29592b7c13d834ab627", "fields": {"nom_de_la_commune": "BEDARIEUX", "libell_d_acheminement": "BEDARIEUX", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34028"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faa15ddb5089c9f6bd62fdc994bf3ce93b08655", "fields": {"nom_de_la_commune": "LE BOSC", "libell_d_acheminement": "LE BOSC", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34036"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19d0169a834b94d76e3b99a03afeddc4fc63865c", "fields": {"nom_de_la_commune": "BRISSAC", "libell_d_acheminement": "BRISSAC", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34042"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660b694ad03378c84405f8177c01a57c5d2b89f5", "fields": {"nom_de_la_commune": "CABREROLLES", "libell_d_acheminement": "CABREROLLES", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34044"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92155c8d7dc201139d515af4151670446c18ec3d", "fields": {"nom_de_la_commune": "CAMBON ET SALVERGUES", "libell_d_acheminement": "CAMBON ET SALVERGUES", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34046"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9daf1f87512ee3133dd4dec56df148c9353787c", "fields": {"nom_de_la_commune": "CAMPLONG", "libell_d_acheminement": "CAMPLONG", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34049"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a5e740fa5e849adac369a9a53ec3d0773b4129", "fields": {"nom_de_la_commune": "CARLENCAS ET LEVAS", "libell_d_acheminement": "CARLENCAS ET LEVAS", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34053"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a8c5630b307c9f9cef2aed25d758b37f8c4451", "fields": {"nom_de_la_commune": "CASTANET LE HAUT", "libell_d_acheminement": "CASTANET LE HAUT", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34055"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4f876aff57bd0147b0d39c01d68c962cc50af3", "fields": {"nom_de_la_commune": "CASTELNAU LE LEZ", "libell_d_acheminement": "CASTELNAU LE LEZ", "code_postal": "34170", "coordonnees_gps": [43.6379670076, 3.91229109044], "code_commune_insee": "34057"}, "geometry": {"type": "Point", "coordinates": [3.91229109044, 43.6379670076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42db4b2f4837b65a7aa1b3a7f510c33cae72dffc", "fields": {"nom_de_la_commune": "LA CAUNETTE", "libell_d_acheminement": "LA CAUNETTE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34059"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da96de08b33e8bf9ddc728dbcb5913aa737bb937", "fields": {"nom_de_la_commune": "CAUSSE DE LA SELLE", "libell_d_acheminement": "CAUSSE DE LA SELLE", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34060"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211606e0cfbf29eb105daecd9177637f52de179d", "fields": {"nom_de_la_commune": "CAUSSINIOJOULS", "libell_d_acheminement": "CAUSSINIOJOULS", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34062"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6933376cc9fb53dffd3dc2fb8b2c716da942b680", "fields": {"nom_de_la_commune": "MAFFLIERS", "libell_d_acheminement": "MAFFLIERS", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95353"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149f9344662204cd67f399df6e7de0cf940978c2", "fields": {"nom_de_la_commune": "MAREIL EN FRANCE", "libell_d_acheminement": "MAREIL EN FRANCE", "code_postal": "95850", "coordonnees_gps": [49.0746281693, 2.42764597482], "code_commune_insee": "95365"}, "geometry": {"type": "Point", "coordinates": [2.42764597482, 49.0746281693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5947cb01ddbfc7ffdfd2945f4b30533496349e2e", "fields": {"nom_de_la_commune": "MARGENCY", "libell_d_acheminement": "MARGENCY", "code_postal": "95580", "coordonnees_gps": [49.0070961158, 2.30020142224], "code_commune_insee": "95369"}, "geometry": {"type": "Point", "coordinates": [2.30020142224, 49.0070961158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57da0ecc902463667a566896ce612ce82e82f5f0", "fields": {"nom_de_la_commune": "MENUCOURT", "libell_d_acheminement": "MENUCOURT", "code_postal": "95180", "coordonnees_gps": [49.0273000331, 1.97386966143], "code_commune_insee": "95388"}, "geometry": {"type": "Point", "coordinates": [1.97386966143, 49.0273000331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92be33dafd2ebd8988e36e7e195ceed93e9ba8fa", "fields": {"nom_de_la_commune": "MONTMORENCY", "libell_d_acheminement": "MONTMORENCY", "code_postal": "95160", "coordonnees_gps": [48.9920553677, 2.32124546377], "code_commune_insee": "95428"}, "geometry": {"type": "Point", "coordinates": [2.32124546377, 48.9920553677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d89ae3858133c4a857f95e760cac7fbd179e2b07", "fields": {"nom_de_la_commune": "MONTREUIL SUR EPTE", "libell_d_acheminement": "MONTREUIL SUR EPTE", "code_postal": "95770", "coordonnees_gps": [49.1959926831, 1.69814198153], "code_commune_insee": "95429"}, "geometry": {"type": "Point", "coordinates": [1.69814198153, 49.1959926831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8e0c504794e50024e45738a0063d3f07a301fb", "fields": {"nom_de_la_commune": "NESLES LA VALLEE", "libell_d_acheminement": "NESLES LA VALLEE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95446"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87bc0fd00b068295333f4a2b4600d52e03cba98", "fields": {"nom_de_la_commune": "NOISY SUR OISE", "libell_d_acheminement": "NOISY SUR OISE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95456"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e847ed446569376f116bcd360048dc1138c425ec", "fields": {"nom_de_la_commune": "OMERVILLE", "libell_d_acheminement": "OMERVILLE", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95462"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1c8d9c5f54962aff20c91ba43469d14ded843e", "fields": {"nom_de_la_commune": "PIERRELAYE", "libell_d_acheminement": "PIERRELAYE", "code_postal": "95480", "coordonnees_gps": [49.0191135363, 2.16069060879], "code_commune_insee": "95488"}, "geometry": {"type": "Point", "coordinates": [2.16069060879, 49.0191135363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27cebec57bc19ce8976458cc0cf35abd9629ea9", "fields": {"nom_de_la_commune": "ST BRICE SOUS FORET", "libell_d_acheminement": "ST BRICE SOUS FORET", "code_postal": "95350", "coordonnees_gps": [49.0078529263, 2.34646436487], "code_commune_insee": "95539"}, "geometry": {"type": "Point", "coordinates": [2.34646436487, 49.0078529263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9234b22e1334f782add1a174f43d1c00329e65b1", "fields": {"nom_de_la_commune": "ST GRATIEN", "libell_d_acheminement": "ST GRATIEN", "code_postal": "95210", "coordonnees_gps": [48.9693159337, 2.28466574486], "code_commune_insee": "95555"}, "geometry": {"type": "Point", "coordinates": [2.28466574486, 48.9693159337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4813a032d53fb19598c2610cec927eb77d100e4d", "fields": {"nom_de_la_commune": "SEUGY", "libell_d_acheminement": "SEUGY", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95594"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f4891a6ad1fa62a3f2c9d36f54322ff2e79757", "fields": {"nom_de_la_commune": "SURVILLIERS", "libell_d_acheminement": "SURVILLIERS", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95604"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e45fe241d6999f1fd55dd82a025d678d6e23b36", "fields": {"nom_de_la_commune": "THEUVILLE", "libell_d_acheminement": "THEUVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95611"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698295fd9f28bb9bb5c18d4d272ebb59f05e7047", "fields": {"nom_de_la_commune": "LE THILLAY", "libell_d_acheminement": "LE THILLAY", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95612"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82d9ea397d98cf0cacec3d7cb350fe2c44e4fdb", "fields": {"nom_de_la_commune": "VALLANGOUJARD", "libell_d_acheminement": "VALLANGOUJARD", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95627"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb46709891bc7e719c0cbda7f57cda58fb73cd7", "fields": {"nom_de_la_commune": "VILLERS EN ARTHIES", "libell_d_acheminement": "VILLERS EN ARTHIES", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95676"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94e6fd1f92f2b58c45b09d5549bd75c96177061", "fields": {"nom_de_la_commune": "VILLIERS ADAM", "libell_d_acheminement": "VILLIERS ADAM", "code_postal": "95840", "coordonnees_gps": [49.0653892741, 2.2420258849], "code_commune_insee": "95678"}, "geometry": {"type": "Point", "coordinates": [2.2420258849, 49.0653892741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd64511b39e6d5976f75673b3d7b7f88894beaab", "fields": {"nom_de_la_commune": "VILLIERS LE BEL", "libell_d_acheminement": "VILLIERS LE BEL", "code_postal": "95400", "coordonnees_gps": [49.0014583896, 2.40751013382], "code_commune_insee": "95680"}, "geometry": {"type": "Point", "coordinates": [2.40751013382, 49.0014583896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc06ad26f266a8c61f0f979c3a1ad5ffcae73691", "fields": {"nom_de_la_commune": "ANSE BERTRAND", "libell_d_acheminement": "ANSE BERTRAND", "code_postal": "97121", "coordonnees_gps": [16.4654769414, -61.4621246483], "code_commune_insee": "97102"}, "geometry": {"type": "Point", "coordinates": [-61.4621246483, 16.4654769414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a416876e5a430b967c335e3286cf36ecbd914e27", "fields": {"code_postal": "97130", "code_commune_insee": "97107", "libell_d_acheminement": "CAPESTERRE BELLE EAU", "ligne_5": "STE MARIE", "nom_de_la_commune": "CAPESTERRE BELLE EAU", "coordonnees_gps": [16.0552203846, -61.6118226443]}, "geometry": {"type": "Point", "coordinates": [-61.6118226443, 16.0552203846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbdfd74f4ca7e6734934b8a8b3fcc2b106d7a6b0", "fields": {"nom_de_la_commune": "PETIT CANAL", "libell_d_acheminement": "PETIT CANAL", "code_postal": "97131", "coordonnees_gps": [16.389934769, -61.4497015093], "code_commune_insee": "97119"}, "geometry": {"type": "Point", "coordinates": [-61.4497015093, 16.389934769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12afe98cb94d12e6fae47cc947eb57c3b3a34a2", "fields": {"nom_de_la_commune": "POINTE A PITRE", "libell_d_acheminement": "POINTE A PITRE", "code_postal": "97110", "coordonnees_gps": [16.2380667496, -61.5355740279], "code_commune_insee": "97120"}, "geometry": {"type": "Point", "coordinates": [-61.5355740279, 16.2380667496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdbb2522a4e7a08f0fac55128e9c8a8cab92d2ea", "fields": {"nom_de_la_commune": "POINTE NOIRE", "libell_d_acheminement": "POINTE NOIRE", "code_postal": "97116", "coordonnees_gps": [16.2272378429, -61.7633385461], "code_commune_insee": "97121"}, "geometry": {"type": "Point", "coordinates": [-61.7633385461, 16.2272378429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ccbdd558c01f8507becaee42c5175662b618fa", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "97180", "coordonnees_gps": [16.2574429678, -61.3876760708], "code_commune_insee": "97128"}, "geometry": {"type": "Point", "coordinates": [-61.3876760708, 16.2574429678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07965323aa9ef4878a4d887eef42dbd793344d39", "fields": {"code_postal": "97180", "code_commune_insee": "97128", "libell_d_acheminement": "STE ANNE", "ligne_5": "DOUVILLE", "nom_de_la_commune": "STE ANNE", "coordonnees_gps": [16.2574429678, -61.3876760708]}, "geometry": {"type": "Point", "coordinates": [-61.3876760708, 16.2574429678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "499fa1770876df27c2d8f78c4176124ab2325c94", "fields": {"nom_de_la_commune": "TERRE DE BAS", "libell_d_acheminement": "TERRE DE BAS", "code_postal": "97136", "coordonnees_gps": [15.8543440567, -61.6336329172], "code_commune_insee": "97130"}, "geometry": {"type": "Point", "coordinates": [-61.6336329172, 15.8543440567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201e0200dbe06b79054736c7d320ca5396648aa7", "fields": {"nom_de_la_commune": "LES ANSES D ARLET", "libell_d_acheminement": "LES ANSES D ARLET", "code_postal": "97217", "coordonnees_gps": [14.4986608999, -61.072398951], "code_commune_insee": "97202"}, "geometry": {"type": "Point", "coordinates": [-61.072398951, 14.4986608999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ecd89b15d8530fee3f40612ec89f0614c800704", "fields": {"nom_de_la_commune": "FORT DE FRANCE", "libell_d_acheminement": "FORT DE FRANCE", "code_postal": "97234", "coordonnees_gps": [14.6410271251, -61.069074331], "code_commune_insee": "97209"}, "geometry": {"type": "Point", "coordinates": [-61.069074331, 14.6410271251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ded5b3efa0e3a61e1c200705c5ecd08292f47b6", "fields": {"nom_de_la_commune": "LE LORRAIN", "libell_d_acheminement": "LE LORRAIN", "code_postal": "97214", "coordonnees_gps": [14.801591672, -61.076751749], "code_commune_insee": "97214"}, "geometry": {"type": "Point", "coordinates": [-61.076751749, 14.801591672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c89d3f3abbdf35c007e20fcbe769262902a7af", "fields": {"nom_de_la_commune": "RIVIERE PILOTE", "libell_d_acheminement": "RIVIERE PILOTE", "code_postal": "97211", "coordonnees_gps": [14.508934061, -60.8976277652], "code_commune_insee": "97220"}, "geometry": {"type": "Point", "coordinates": [-60.8976277652, 14.508934061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbb04ee7ebb4e27a62f19c10dd53cbcf082082f", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "97212", "coordonnees_gps": [14.6765114574, -61.0439882663], "code_commune_insee": "97224"}, "geometry": {"type": "Point", "coordinates": [-61.0439882663, 14.6765114574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e81d331046de7f73726b49c5de18292cca6601", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "97227", "coordonnees_gps": [14.4366151393, -60.8549724261], "code_commune_insee": "97226"}, "geometry": {"type": "Point", "coordinates": [-60.8549724261, 14.4366151393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150f2a0e097a1882a9b633018a45d9ae9078f7c7", "fields": {"code_postal": "97353", "code_commune_insee": "97301", "libell_d_acheminement": "REGINA", "ligne_5": "KAW", "nom_de_la_commune": "REGINA", "coordonnees_gps": [3.94089788732, -52.5199751227]}, "geometry": {"type": "Point", "coordinates": [-52.5199751227, 3.94089788732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a9e6d672ab63f0009446c6eb7acf9c9db62c8f", "fields": {"nom_de_la_commune": "GRAND SANTI", "libell_d_acheminement": "GRAND SANTI", "code_postal": "97340", "coordonnees_gps": [4.38950741601, -54.187446328], "code_commune_insee": "97357"}, "geometry": {"type": "Point", "coordinates": [-54.187446328, 4.38950741601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689b967d965a67d4d30c97762622d53dd1099d7f", "fields": {"code_postal": "97440", "code_commune_insee": "97409", "libell_d_acheminement": "ST ANDRE", "ligne_5": "CAMBUSTON", "nom_de_la_commune": "ST ANDRE", "coordonnees_gps": [-20.9634830614, 55.6422659103]}, "geometry": {"type": "Point", "coordinates": [55.6422659103, -20.9634830614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdc116b92a15847c534d0dd426fa3b6ecf169fc", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST DENIS CAMELIAS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a0b3ea4ad75a975757128411bf4004f2970d29", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST FRANCOIS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1b28992fa6bb0129481ef891c68b6133cc8b6a", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST DENIS CHAUDRON", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e331ce62ba8313677f3a77132a4f1e0cbec12a4", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "97480", "coordonnees_gps": [-21.3061982734, 55.6419643354], "code_commune_insee": "97412"}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48bb1987f120d441df1a8773a06f8a02b5325c4", "fields": {"code_postal": "97422", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "LA SALINE", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65671d963cae975fc46ee406818ab0ae91bf88cf", "fields": {"code_postal": "97423", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "LE GUILLAUME", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1de2503e156fa62bfc59111112e9c3a7821ab2", "fields": {"code_postal": "97435", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "ST GILLES LES HAUTS", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8274e9c2ece466bd0d55717f318d32ac70f2350b", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "GRAND BOIS", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da488306888781def923cc93522f2abf0f7f48fa", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "MONT VERT", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c768d35dfe480e46a09174ff343dc3f5868790", "fields": {"code_postal": "97418", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "LA PLAINE DES CAFRES", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e82a39f7424a69d5c60aff8e0c397afaeffab41", "fields": {"nom_de_la_commune": "LE TAMPON", "libell_d_acheminement": "LE TAMPON", "code_postal": "97430", "coordonnees_gps": [-21.2232735842, 55.5587522693], "code_commune_insee": "97422"}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c0f0ea04324b782fd0bc616c8273db01965146", "fields": {"code_postal": "97430", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "PONT D YVES", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8b7dedaeabd74fb28d24fc21f41093b151a365", "fields": {"nom_de_la_commune": "MIQUELON LANGLADE", "libell_d_acheminement": "ST PIERRE ET MIQUELON", "code_postal": "97500", "ligne_5": "MIQUELON LANGLADE", "code_commune_insee": "97501"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d1b167aba15bd686c6f847c5d53f7a36cfc319", "fields": {"code_postal": "97615", "code_commune_insee": "97608", "libell_d_acheminement": "DZAOUDZI", "ligne_5": "LABATTOIR", "nom_de_la_commune": "DZAOUDZI", "coordonnees_gps": [-12.785467309, 45.2832655596]}, "geometry": {"type": "Point", "coordinates": [45.2832655596, -12.785467309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aca9fd12f28cf620dc42ef6a83452de0abd1fd67", "fields": {"nom_de_la_commune": "KANI KELI", "libell_d_acheminement": "KANI KELI", "code_postal": "97625", "coordonnees_gps": [-12.9718620297, 45.126001688], "code_commune_insee": "97609"}, "geometry": {"type": "Point", "coordinates": [45.126001688, -12.9718620297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755d7f800c0be5410dd9d4903873f55691e2eaa5", "fields": {"code_postal": "97680", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "COMBANI", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.7864627251, 45.1670124096]}, "geometry": {"type": "Point", "coordinates": [45.1670124096, -12.7864627251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f3c9b0e3c7b744bbf274d41e556a8ad9f8b952", "fields": {"nom_de_la_commune": "TSINGONI", "libell_d_acheminement": "TSINGONI", "code_postal": "97680", "coordonnees_gps": [-12.7864627251, 45.1670124096], "code_commune_insee": "97617"}, "geometry": {"type": "Point", "coordinates": [45.1670124096, -12.7864627251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a299e68621abe16260eed1e4d41a9e64c1076f", "fields": {"nom_de_la_commune": "ALO", "libell_d_acheminement": "ALO", "code_postal": "98610", "code_commune_insee": "98611"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6f9b7f8c072f3c787ee5ccbeccece819f6c961", "fields": {"nom_de_la_commune": "ARUE", "libell_d_acheminement": "ARUE", "code_postal": "98701", "code_commune_insee": "98712"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab347f20b85aa092985317f788c0973c7de4d6a", "fields": {"nom_de_la_commune": "ARUTUA", "libell_d_acheminement": "RAITAHITI", "code_postal": "98785", "ligne_5": "ARUTUA", "code_commune_insee": "98713"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59af4d560fe6e34f37efc109b9dcc191c791ca3", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "ANAU", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80cdf255901b1a910c82bc338f2cd2c0be1e4d92", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "FAANUI", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff77362ce51a6ff9b0493ac095e25fd1ea29a766", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "NUNUE", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1396e3781a394348942e95c91c91272cd2286833", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "TEARAVERO", "code_postal": "98787", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9eee37e5b79108c5ca25e97bcdf8e8a0b233198", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MAKAROA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6379f561589804bbcfe8f43fdc6a4c749de6612", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MOTUREIVAVAO", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad3b9f3a00da58db4a0333d684f42ed043e53a6", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TEMOE", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bebd9ce4da033069c50a6162c18393dc48ecbc", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TENARARO", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b32bb533a5c7fc2b21a753860309d2ce43f6aaaa", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MARUTEA SUD", "code_postal": "98793", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd76ce557d8f255e34228a7b660ccaa657347aee", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "OTEPA", "code_postal": "98767", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477608abf4a913439aceea5296eeaec87bb0f2c1", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "HIKITAKE", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0cacf1efc335ac35b5f52b7f40ca1c510593324", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "OTETOU", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4917fbeddd6aee8dc128896caa69226d3af835c", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "PAPENOO", "code_postal": "98707", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1eecccb9f385f83dd7a20c2667c3e8673566cb1", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "EIAONE", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e500756af40c58e3bae1dab882d2b8587b0e084b", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "MOTU UA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b644b74f43c11717647c58eba6126f4bdcfbabd", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "NAHOE", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec0291b42e546c6e090bbc72dd3b04ec607572b", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "PAUMAU", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57eb421ae3a364ca93386eae4f2e50aabdf98273", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "FAIE", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de013466a7b52bcdefbd1090736196037cb0ea74", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "FITII", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77133da73c6185a4ce8732fd25b6e99965d947b2", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "HAAPU", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5a32b6b447d99c4ca7a2894aefe1e49cd8c59b", "fields": {"nom_de_la_commune": "MAHINA", "libell_d_acheminement": "MAHINA", "code_postal": "98709", "code_commune_insee": "98725"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fead593d06da5d0deceb485ccf882e248af726d7", "fields": {"nom_de_la_commune": "MAHINA", "libell_d_acheminement": "OROFARA", "code_postal": "98710", "ligne_5": "MAHINA", "code_commune_insee": "98725"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca7fc5494108b1c1e375f429f47b755bba3416e", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "POUHEVA", "code_postal": "98769", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ec6bd4035c8356be458c1cb79088ec4264b483", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "TUANAKE", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04465801674c41b66c31293f6eac6451c8ba4268", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "SCILLY", "code_postal": "98732", "ligne_5": "MAUPITI", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6748bb64070b1704335813ceba09b1b681a4182", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "MAHAREPA", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3594bbc7f7bb7aa8a851333980034656e5d291", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TEAVARO", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b8dee505668854b5578c406ff9270bf1b9755c", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "VAIARE", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e6c2dec2a00948522b05cff57ad557a8d46127", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "ATIHA", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f9ac4dba2d17a617cec6ef724c31b381b80c72", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "HAAPITI", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90cfe8fd7f97733b374861ff39078fc1991b4ab", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PAOPAO", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ce02419abbb8fa60e97a05e4b8df327c428847", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "TAIOHAE", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b10f99bbdfab165790f51c394c526955fac5130", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "HATU ITI", "code_postal": "98796", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b57aace2400bfa9b2e91259fa8c1412c23a7bf5", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "HATUTAA", "code_postal": "98796", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b0f1b8a2912982f0792bf6a428b1042e0cb4039", "fields": {"nom_de_la_commune": "PAEA", "libell_d_acheminement": "PAEA", "code_postal": "98711", "code_commune_insee": "98733"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e473671d74cdc75e3fb63dc6801b41f9c2f84792", "fields": {"nom_de_la_commune": "PAPARA", "libell_d_acheminement": "PAPARA", "code_postal": "98712", "code_commune_insee": "98734"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676e0e2205b7160b3f2659c03ced8de9b7c730c4", "fields": {"nom_de_la_commune": "PUNAAUIA", "libell_d_acheminement": "PUNAAUIA", "code_postal": "98718", "code_commune_insee": "98738"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bd40286d314e750f53d30f2fd9a2ff435cc165", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "VAITEPAUA", "code_postal": "98790", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e34526b14d34a1286b1c89755bb4baabd9f9ba7", "fields": {"nom_de_la_commune": "REAO", "libell_d_acheminement": "TAPUARAVA", "code_postal": "98779", "ligne_5": "REAO", "code_commune_insee": "98742"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f51b087482ef15aa0f67a2242b680076969163f", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "ANAPOTO", "code_postal": "98752", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9f9130146a2d55f45c2f0854b27b1228380acc", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "MUTUAURA", "code_postal": "98752", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b90ffe0002c4b6d0939752bad40dc5be5b05676", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "NIUA", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e8bddd3360e78354920b6cec37129221e06440", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "TARAVAO", "code_postal": "98719", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c8d771d0f6b7246330271fa57350d5999cac04", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "PERLES", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2992c7366b5438de6731db5977b22bd663faccbc", "fields": {"nom_de_la_commune": "MESNIL ST LAURENT", "libell_d_acheminement": "MESNIL ST LAURENT", "code_postal": "02720", "coordonnees_gps": [49.8506777552, 3.38251026426], "code_commune_insee": "02481"}, "geometry": {"type": "Point", "coordinates": [3.38251026426, 49.8506777552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446b2112f2b8e7efc0c5c8cf793dd811d53550f9", "fields": {"nom_de_la_commune": "MARCHAIS", "libell_d_acheminement": "MARCHAIS", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02457"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760f6d7571efc8b5735bce09946ec143006d7721", "fields": {"nom_de_la_commune": "LUZOIR", "libell_d_acheminement": "LUZOIR", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02445"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6037bb0eb0fdecb23d580fafcf69dc933bc85f", "fields": {"nom_de_la_commune": "MAYOT", "libell_d_acheminement": "MAYOT", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02473"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b46262425c3b487737cf41e6d4fec9f0dfa8932", "fields": {"nom_de_la_commune": "MARLE", "libell_d_acheminement": "MARLE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02468"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5e320f0042b7baa4fa839efd15323eb272e218", "fields": {"nom_de_la_commune": "FERE EN TARDENOIS", "libell_d_acheminement": "FERE EN TARDENOIS", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02305"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a78b6cb7a87dfe4c6194415e4288e46d7768014", "fields": {"nom_de_la_commune": "ESSIGNY LE GRAND", "libell_d_acheminement": "ESSIGNY LE GRAND", "code_postal": "02690", "coordonnees_gps": [49.7818519929, 3.29506303769], "code_commune_insee": "02287"}, "geometry": {"type": "Point", "coordinates": [3.29506303769, 49.7818519929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6dea44a7d702ee9067b5b946f49dd31e9c1bfb7", "fields": {"nom_de_la_commune": "L EPINE AUX BOIS", "libell_d_acheminement": "L EPINE AUX BOIS", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02281"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34349ccedcd7164eeb713ae039123fb179acf00d", "fields": {"nom_de_la_commune": "LA FERTE MILON", "libell_d_acheminement": "LA FERTE MILON", "code_postal": "02460", "coordonnees_gps": [49.1801295296, 3.14646603898], "code_commune_insee": "02307"}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f198f39041dade90d6020f09507b38e5f55ae4", "fields": {"nom_de_la_commune": "EVERGNICOURT", "libell_d_acheminement": "EVERGNICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02299"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c6ce9e10024e12bb4c45297d98a5ac6ea1af86", "fields": {"nom_de_la_commune": "ETREILLERS", "libell_d_acheminement": "ETREILLERS", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02296"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00181f3529c21dd21c26c8d7c719c1d8bd7ed75", "fields": {"nom_de_la_commune": "DOMMIERS", "libell_d_acheminement": "DOMMIERS", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02267"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b922b642b814db0fc6671f242c34cea595cd4", "fields": {"nom_de_la_commune": "DAMPLEUX", "libell_d_acheminement": "DAMPLEUX", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02259"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061b0925899b6abcea71a104da05431c161235f0", "fields": {"nom_de_la_commune": "DROIZY", "libell_d_acheminement": "DROIZY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02272"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5884e54bfb47c4dd7214733678d990c8b3b3baa5", "fields": {"nom_de_la_commune": "EPAGNY", "libell_d_acheminement": "EPAGNY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02277"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25f3d7b0b7a605dad5fffbe0cf4bb3a8ccb5018", "fields": {"nom_de_la_commune": "FONTAINE NOTRE DAME", "libell_d_acheminement": "FONTAINE NOTRE DAME", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02322"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b08c14c18c511c8f4654b371862633b6596af8c", "fields": {"nom_de_la_commune": "FRIERES FAILLOUEL", "libell_d_acheminement": "FRIERES FAILLOUEL", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02336"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c3e595472591844632068aaecf734b8da5c818", "fields": {"nom_de_la_commune": "FRESNOY LE GRAND", "libell_d_acheminement": "FRESNOY LE GRAND", "code_postal": "02230", "coordonnees_gps": [49.9537168891, 3.41962452957], "code_commune_insee": "02334"}, "geometry": {"type": "Point", "coordinates": [3.41962452957, 49.9537168891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592f8cc5dfcedabf23b8cbc3786fa45ee02d5385", "fields": {"nom_de_la_commune": "FESMY LE SART", "libell_d_acheminement": "FESMY LE SART", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02308"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9d5817ef2c135683cc693f5e884ac38cb5e16f", "fields": {"nom_de_la_commune": "FROIDESTREES", "libell_d_acheminement": "FROIDESTREES", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02337"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fb82c587e25d88f5ea603a7b67b62ae7569b74", "fields": {"nom_de_la_commune": "LA FLAMENGRIE", "libell_d_acheminement": "LA FLAMENGRIE", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02312"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f6e8e8ab9d049db5426f9078f92174378f77be3", "fields": {"nom_de_la_commune": "FOURDRAIN", "libell_d_acheminement": "FOURDRAIN", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02329"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6598efae32589c515f7393d67e2ca93d2881c99c", "fields": {"nom_de_la_commune": "FONSOMME", "libell_d_acheminement": "FONSOMME", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02319"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41517abf20e69c969a0b48e0e654578e950df04", "fields": {"nom_de_la_commune": "FORESTE", "libell_d_acheminement": "FORESTE", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02327"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc2a840b51600d0c254316cd0d68447967085390", "fields": {"nom_de_la_commune": "FILAIN", "libell_d_acheminement": "FILAIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02311"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d304e370db0f5b0dd214cccb1a575837d90a93", "fields": {"nom_de_la_commune": "HAPPENCOURT", "libell_d_acheminement": "HAPPENCOURT", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02367"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f8bbfd54ce3ed145648d21ce6d2721aeca05bb", "fields": {"nom_de_la_commune": "HAUTEVESNES", "libell_d_acheminement": "HAUTEVESNES", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02375"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2717782998aad9170d79c1c94bbc25dd6a6e9300", "fields": {"nom_de_la_commune": "GUIGNICOURT", "libell_d_acheminement": "GUIGNICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02360"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8456c9cceb94486e51d2e9a73f70fc14bbaafa7", "fields": {"nom_de_la_commune": "GRANDRIEUX", "libell_d_acheminement": "GRANDRIEUX", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02354"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf29b31d644f28c5e6c51d2cc5cfe83efd6ee5f", "fields": {"nom_de_la_commune": "GUYENCOURT", "libell_d_acheminement": "GUYENCOURT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02364"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0a425908224b73fcbf5956d30c8c10e31f1e6a", "fields": {"nom_de_la_commune": "JAULGONNE", "libell_d_acheminement": "JAULGONNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02389"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3715f10522b6576873ce3640a65cb444755d9e", "fields": {"nom_de_la_commune": "HANNAPES", "libell_d_acheminement": "HANNAPES", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02366"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ee3d0abae231811154934c5d97840f60a276f8", "fields": {"nom_de_la_commune": "GANDELU", "libell_d_acheminement": "GANDELU", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02339"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12d19860851f4a49eca13e6336c89edaf3d0502", "fields": {"nom_de_la_commune": "GAUCHY", "libell_d_acheminement": "GAUCHY", "code_postal": "02430", "coordonnees_gps": [49.8229552715, 3.28619899863], "code_commune_insee": "02340"}, "geometry": {"type": "Point", "coordinates": [3.28619899863, 49.8229552715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b14bf072e3f3962243fe98afe01c66d49e4a66", "fields": {"nom_de_la_commune": "IRON", "libell_d_acheminement": "IRON", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02386"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24c696bef2d162b83ab209b8012b8f1a9606604", "fields": {"nom_de_la_commune": "MISSY LES PIERREPONT", "libell_d_acheminement": "MISSY LES PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02486"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "438c4c9d0d7df8ca4a54744a79696532e6d4114f", "fields": {"nom_de_la_commune": "MONCEAU SUR OISE", "libell_d_acheminement": "MONCEAU SUR OISE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02494"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d56bc093cf80a90dbe2eb1f4830ab5be0272292", "fields": {"nom_de_la_commune": "MONCEAU LE WAAST", "libell_d_acheminement": "MONCEAU LE WAAST", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02493"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3770573fdae3deba78974946c9236d6b35878c", "fields": {"nom_de_la_commune": "MONS EN LAONNOIS", "libell_d_acheminement": "MONS EN LAONNOIS", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02497"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47626a485ec3148f9abbe8f5e3db25d570ee8634", "fields": {"nom_de_la_commune": "MOLINCHART", "libell_d_acheminement": "MOLINCHART", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02489"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb122cc714d99efe1fdb14c29997842f325fb7f", "fields": {"nom_de_la_commune": "MONTAIGU", "libell_d_acheminement": "MONTAIGU", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02498"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a4faf1b5a3c1ff482cccb88d97bf5e2e0c4ccd", "fields": {"nom_de_la_commune": "MONNES", "libell_d_acheminement": "MONNES", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02496"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5068aa97ec424d7a8009dae4a57696899e4812b", "fields": {"nom_de_la_commune": "MONTESCOURT LIZEROLLES", "libell_d_acheminement": "MONTESCOURT LIZEROLLES", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02504"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7e3f401432122380dc9d8ae562cdbba5b6466e", "fields": {"nom_de_la_commune": "LA NEUVILLE HOUSSET", "libell_d_acheminement": "LA NEUVILLE HOUSSET", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02547"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157bdf926d5f2593e1c45bef84aee4b0ccf4b569", "fields": {"nom_de_la_commune": "MONTIGNY LE FRANC", "libell_d_acheminement": "MONTIGNY LE FRANC", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02513"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700ebcd36bc64d4f8ac14cc3009b444e92d5676e", "fields": {"nom_de_la_commune": "NEUVILLE ST AMAND", "libell_d_acheminement": "NEUVILLE ST AMAND", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02549"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fb44d6fdc74b3065185ac391993ba872248209", "fields": {"nom_de_la_commune": "NEUILLY ST FRONT", "libell_d_acheminement": "NEUILLY ST FRONT", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02543"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba56e826f979dbda0d4a5c9c40bd97971aa9e72", "fields": {"nom_de_la_commune": "MOUSSY VERNEUIL", "libell_d_acheminement": "MOUSSY VERNEUIL", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02531"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c5c5bec18bfe3ec92ff1eb506115608b789c70", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02523"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3fc016e54874ac56bb82d13027b1f1209ad4f2", "fields": {"nom_de_la_commune": "MONTHIERS", "libell_d_acheminement": "MONTHIERS", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02509"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c93f38b1f3a62f6dca6543fe08235ff3b808e5", "fields": {"nom_de_la_commune": "NEUVILLE SUR MARGIVAL", "libell_d_acheminement": "NEUVILLE SUR MARGIVAL", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02551"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e35b554b7f7e006e163835e56d6b63261fb3597", "fields": {"nom_de_la_commune": "NOUVION ET CATILLON", "libell_d_acheminement": "NOUVION ET CATILLON", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02559"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f48b9807314e7fd6c619051fb496e4b6e76a4c47", "fields": {"nom_de_la_commune": "PANCY COURTECON", "libell_d_acheminement": "PANCY COURTECON", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02583"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad199fed6ec41080c1ad75f1e04501dcf2d5f2b3", "fields": {"nom_de_la_commune": "PARCY ET TIGNY", "libell_d_acheminement": "PARCY ET TIGNY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02585"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378819229e2e9d3638ab44bc6fe6895f64dcf9b9", "fields": {"nom_de_la_commune": "NOUVRON VINGRE", "libell_d_acheminement": "NOUVRON VINGRE", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02562"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd92b5593a911ab0ea0ca91caef084fc3a5b8874", "fields": {"nom_de_la_commune": "PARGNY FILAIN", "libell_d_acheminement": "PARGNY FILAIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02589"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95e665845b625e193d53a4f3faa06b14d0244fe", "fields": {"nom_de_la_commune": "PARFONDEVAL", "libell_d_acheminement": "PARFONDEVAL", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02586"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeab805a71625e4878c3e536b695fe20e197c7c6", "fields": {"nom_de_la_commune": "PARFONDRU", "libell_d_acheminement": "PARFONDRU", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02587"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d928170bfcd071f499775be951cc25feb003431a", "fields": {"nom_de_la_commune": "ORGEVAL", "libell_d_acheminement": "ORGEVAL", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02573"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1e304c5f0eaa99b641d471a84a29ca9929ae68", "fields": {"nom_de_la_commune": "NOYALES", "libell_d_acheminement": "NOYALES", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02563"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7abc9108884204f914f933128bcf33f4fc1e567", "fields": {"nom_de_la_commune": "CHASSENARD", "libell_d_acheminement": "CHASSENARD", "code_postal": "03510", "coordonnees_gps": [46.4530576935, 3.94915396581], "code_commune_insee": "03063"}, "geometry": {"type": "Point", "coordinates": [3.94915396581, 46.4530576935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc866f0b7c7637942b473263f28dc5871dbec469", "fields": {"nom_de_la_commune": "LE BRETHON", "libell_d_acheminement": "LE BRETHON", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03041"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df11f5d8c20623c88d2919489967cd3ac64605e", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03069"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55b35f15e83d036ec8ba47d4564332b24104b0e", "fields": {"nom_de_la_commune": "CHARROUX", "libell_d_acheminement": "CHARROUX", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03062"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523abc4cab3cb428763f59125aaa6ef078417439", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03047"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca5e371add7b6ec10bd40ca836326f7cd4147a5", "fields": {"nom_de_la_commune": "BRANSAT", "libell_d_acheminement": "BRANSAT", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03038"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d50a4c1ecc414681ec254acdeec75afe41d0ade", "fields": {"nom_de_la_commune": "CHAPEAU", "libell_d_acheminement": "CHAPEAU", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03054"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e48f9dde6c9b512008dab5a8040f906accb1211", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03061"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46f25f7b428eacaf1e2d482c1d0d2812fe5ef1e", "fields": {"code_postal": "02120", "code_commune_insee": "02757", "libell_d_acheminement": "VADENCOURT", "ligne_5": "LONGCHAMPS", "nom_de_la_commune": "VADENCOURT", "coordonnees_gps": [49.8880905983, 3.64129929098]}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a12896033bd2df7724e294a469b395af9d8075", "fields": {"nom_de_la_commune": "LA VILLE AUX BOIS LES PONTAVERT", "libell_d_acheminement": "LA VILLE AUX BOIS LES PONTAVERT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02803"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b91475a0ae34b2b7bbb5adda7e03758cae80a0", "fields": {"nom_de_la_commune": "VERNEUIL SOUS COUCY", "libell_d_acheminement": "VERNEUIL SOUS COUCY", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02786"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9665c3d1b183b1eab6208d9c1445e43e671392", "fields": {"nom_de_la_commune": "VESLES ET CAUMONT", "libell_d_acheminement": "VESLES ET CAUMONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02790"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2d8d7d5dc8973b7c902c3b0973ca087cbfa2cb", "fields": {"nom_de_la_commune": "VENDRESSE BEAULNE", "libell_d_acheminement": "VENDRESSE BEAULNE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02778"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797c1d8db4a1d536c6dab3b0ebd7e9b616e6016c", "fields": {"nom_de_la_commune": "VIELS MAISONS", "libell_d_acheminement": "VIELS MAISONS", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02798"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14461a03a723f88a64000291fec0cc5fae832393", "fields": {"nom_de_la_commune": "URVILLERS", "libell_d_acheminement": "URVILLERS", "code_postal": "02690", "coordonnees_gps": [49.7818519929, 3.29506303769], "code_commune_insee": "02756"}, "geometry": {"type": "Point", "coordinates": [3.29506303769, 49.7818519929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c885c0ee39bfb3366295c641990ae601b3d50ea9", "fields": {"nom_de_la_commune": "VAUXBUIN", "libell_d_acheminement": "VAUXBUIN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02770"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0132ce5e9ed6ae577bbc9b35b997e4016851a589", "fields": {"nom_de_la_commune": "VERMAND", "libell_d_acheminement": "VERMAND", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02785"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8a9afd84efcd0ed7a1f4dee4ce521d1de39273e", "fields": {"nom_de_la_commune": "VASSENS", "libell_d_acheminement": "VASSENS", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02762"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6af841d9e05e8a31cedcfa994016ae8897d0868", "fields": {"nom_de_la_commune": "ST REMY BLANZY", "libell_d_acheminement": "ST REMY BLANZY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02693"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12688167d1d1fa58adfcf15422715cc353d2b6f", "fields": {"nom_de_la_commune": "TUGNY ET PONT", "libell_d_acheminement": "TUGNY ET PONT", "code_postal": "02640", "coordonnees_gps": [49.7574538282, 3.17195418496], "code_commune_insee": "02752"}, "geometry": {"type": "Point", "coordinates": [3.17195418496, 49.7574538282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1425dc3e9dbe99364081dbf5b5a47640cf299e4f", "fields": {"nom_de_la_commune": "ST PIERREMONT", "libell_d_acheminement": "ST PIERREMONT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02689"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f7410569acd7e56820033bf70bf90685b296682", "fields": {"nom_de_la_commune": "THENAILLES", "libell_d_acheminement": "THENAILLES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02740"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "518fdb2a549bee17775caf1eb1895646d204824e", "fields": {"nom_de_la_commune": "ST BANDRY", "libell_d_acheminement": "ST BANDRY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02672"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f073cf00eb4671020032a106d5eb2242882b8020", "fields": {"nom_de_la_commune": "TREFCON", "libell_d_acheminement": "TREFCON", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02747"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35270accd981a760383a1e76c9385447802a7543", "fields": {"nom_de_la_commune": "SORBAIS", "libell_d_acheminement": "SORBAIS", "code_postal": "02580", "coordonnees_gps": [49.9024615408, 3.89676959472], "code_commune_insee": "02728"}, "geometry": {"type": "Point", "coordinates": [3.89676959472, 49.9024615408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153eb44fc45a084a496a5ff4d162d7e71f38f93f", "fields": {"nom_de_la_commune": "TRAVECY", "libell_d_acheminement": "TRAVECY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02746"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3163b7dbdffb8f30740b80090b788118de03f865", "fields": {"nom_de_la_commune": "SELENS", "libell_d_acheminement": "SELENS", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02704"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00cfdd8760d131b1590ac7da7d49e44d4cbdfe4", "fields": {"nom_de_la_commune": "URCEL", "libell_d_acheminement": "URCEL", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02755"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361e1e0c5f974aa0812366efa9e1668569538cf1", "fields": {"nom_de_la_commune": "LOUROUX BOURBONNAIS", "libell_d_acheminement": "LOUROUX BOURBONNAIS", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03150"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b58109d7c62fb667ff05a709c457d7d3e45c9a", "fields": {"nom_de_la_commune": "LOUCHY MONTFAND", "libell_d_acheminement": "LOUCHY MONTFAND", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03149"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029c0ff7ef5cc9031afe43edbab223731b95b13c", "fields": {"nom_de_la_commune": "LA GUILLERMIE", "libell_d_acheminement": "LA GUILLERMIE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03125"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eab573eef642a6e967bf5b3eb9462f0ccbf188f", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03145"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc0f2e7f9cbee930dec476597f945e9e87331190", "fields": {"nom_de_la_commune": "LURCY LEVIS", "libell_d_acheminement": "LURCY LEVIS", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03155"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa503f805a87f1ac89290c3466eba5054b7fb2fc", "fields": {"nom_de_la_commune": "LETELON", "libell_d_acheminement": "LETELON", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03143"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a02b9d2b44bf0bde9c7ecb4fcff626e600fc1a", "fields": {"nom_de_la_commune": "LUSIGNY", "libell_d_acheminement": "LUSIGNY", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03156"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36000c79471c02be943aacd526b50496a1b3a5b", "fields": {"nom_de_la_commune": "LENAX", "libell_d_acheminement": "LENAX", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03142"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0c7f183affaa9cfbdd3414d2574ade3b6c52e6", "fields": {"nom_de_la_commune": "PLOYART ET VAURSEINE", "libell_d_acheminement": "PLOYART ET VAURSEINE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02609"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af918ead4061cef9f8ee8cd263a29f2b5aaabf55", "fields": {"nom_de_la_commune": "PUISIEUX ET CLANLIEU", "libell_d_acheminement": "PUISIEUX ET CLANLIEU", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02629"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a900ec5d4bfe5f57652ee62ee67879203a8d776b", "fields": {"nom_de_la_commune": "POUILLY SUR SERRE", "libell_d_acheminement": "POUILLY SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02617"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4599242aac84c281c771951d2c5fa824b7d4fb70", "fields": {"nom_de_la_commune": "VILLIERS EN BIERE", "libell_d_acheminement": "VILLIERS EN BIERE", "code_postal": "77190", "coordonnees_gps": [48.5045043002, 2.61429281246], "code_commune_insee": "77518"}, "geometry": {"type": "Point", "coordinates": [2.61429281246, 48.5045043002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf674cab12284503694cffe33f698759f26b3e5", "fields": {"nom_de_la_commune": "VILLIERS ST GEORGES", "libell_d_acheminement": "VILLIERS ST GEORGES", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77519"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5da567134a6b3ace3b5105035212f712cd2955", "fields": {"nom_de_la_commune": "VILLUIS", "libell_d_acheminement": "VILLUIS", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77523"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e154efc1b1d0af6c20f58db0365f7691606fd4f", "fields": {"nom_de_la_commune": "VOULTON", "libell_d_acheminement": "VOULTON", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77530"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752985e0fc95b5d9ef5d2db59401b88051db89e1", "fields": {"nom_de_la_commune": "VOULX", "libell_d_acheminement": "VOULX", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77531"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd555d04d30a5bd9ff0178dd5e66425ad32d14e", "fields": {"nom_de_la_commune": "VULAINES SUR SEINE", "libell_d_acheminement": "VULAINES SUR SEINE", "code_postal": "77870", "coordonnees_gps": [48.4316298407, 2.76933878495], "code_commune_insee": "77533"}, "geometry": {"type": "Point", "coordinates": [2.76933878495, 48.4316298407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212b4d19a17fdb717ed62d923d2d1147bfdf37cb", "fields": {"nom_de_la_commune": "YEBLES", "libell_d_acheminement": "YEBLES", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77534"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778a7dc76f3d2945f028b5514385eec9c24b35d3", "fields": {"nom_de_la_commune": "ABLIS", "libell_d_acheminement": "ABLIS", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78003"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92724bfc815f4dd9f041a4bd47dfe9c5855ad58b", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "78240", "coordonnees_gps": [48.8975283122, 2.02796979095], "code_commune_insee": "78007"}, "geometry": {"type": "Point", "coordinates": [2.02796979095, 48.8975283122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d845646525dc9bb40b2df573f72f50712e87ca56", "fields": {"nom_de_la_commune": "AUFFREVILLE BRASSEUIL", "libell_d_acheminement": "AUFFREVILLE BRASSEUIL", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78031"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ed47dc6bf64e4be94bbac8210dc1345dddbc11", "fields": {"nom_de_la_commune": "LA BOISSIERE ECOLE", "libell_d_acheminement": "LA BOISSIERE ECOLE", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78077"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0fee6b60c1309d5ee3fcaf3fcebf3462bd2a6e", "fields": {"code_postal": "78955", "code_commune_insee": "78123", "libell_d_acheminement": "CARRIERES SOUS POISSY", "ligne_5": "LES GRESILLONS", "nom_de_la_commune": "CARRIERES SOUS POISSY", "coordonnees_gps": [48.9453564407, 2.02870519723]}, "geometry": {"type": "Point", "coordinates": [2.02870519723, 48.9453564407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0b2491367d142310b549e1c1c93ff1917ae4c3", "fields": {"nom_de_la_commune": "LA CELLE LES BORDES", "libell_d_acheminement": "LA CELLE LES BORDES", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78125"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c592ddc0eb844846bd7de64f147055b88479c5", "fields": {"nom_de_la_commune": "CERNAY LA VILLE", "libell_d_acheminement": "CERNAY LA VILLE", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78128"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262f3413edca59aa0a33a1768a0466618025c4d4", "fields": {"nom_de_la_commune": "CLAIREFONTAINE EN YVELINES", "libell_d_acheminement": "CLAIREFONTAINE EN YVELINES", "code_postal": "78120", "coordonnees_gps": [48.6165414495, 1.85994599568], "code_commune_insee": "78164"}, "geometry": {"type": "Point", "coordinates": [1.85994599568, 48.6165414495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace6b9b3083e3a8e0432c44babf4d37560106317", "fields": {"nom_de_la_commune": "CRAVENT", "libell_d_acheminement": "CRAVENT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78188"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51af6d7fbe4dc4c27080e56289b04d4c945c5091", "fields": {"nom_de_la_commune": "CROISSY SUR SEINE", "libell_d_acheminement": "CROISSY SUR SEINE", "code_postal": "78290", "coordonnees_gps": [48.8786239272, 2.13607514646], "code_commune_insee": "78190"}, "geometry": {"type": "Point", "coordinates": [2.13607514646, 48.8786239272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de6c091b46ead5930ef0c91b03217f849449bbb", "fields": {"code_postal": "78720", "code_commune_insee": "78193", "libell_d_acheminement": "DAMPIERRE EN YVELINES", "ligne_5": "MAINCOURT SUR YVETTE", "nom_de_la_commune": "DAMPIERRE EN YVELINES", "coordonnees_gps": [48.6724843894, 1.96251286173]}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18da654c50557145d396f2f72f8aa22991e88498", "fields": {"nom_de_la_commune": "ELANCOURT", "libell_d_acheminement": "ELANCOURT", "code_postal": "78990", "coordonnees_gps": [48.7781495042, 1.96078632541], "code_commune_insee": "78208"}, "geometry": {"type": "Point", "coordinates": [1.96078632541, 48.7781495042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c167579f61906096a575af93e5061134a2dfeb", "fields": {"nom_de_la_commune": "EMANCE", "libell_d_acheminement": "EMANCE", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78209"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1ee41c1151a9647455d1f971d74eeab5e660b7", "fields": {"nom_de_la_commune": "LES ESSARTS LE ROI", "libell_d_acheminement": "LES ESSARTS LE ROI", "code_postal": "78690", "coordonnees_gps": [48.7275992987, 1.8882726457], "code_commune_insee": "78220"}, "geometry": {"type": "Point", "coordinates": [1.8882726457, 48.7275992987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd648eb766bda6b4d8fd3d5b8d9c6397837f22ef", "fields": {"nom_de_la_commune": "EVECQUEMONT", "libell_d_acheminement": "EVECQUEMONT", "code_postal": "78740", "coordonnees_gps": [49.0109765215, 1.96738669464], "code_commune_insee": "78227"}, "geometry": {"type": "Point", "coordinates": [1.96738669464, 49.0109765215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54966daeb4bdcd610f279b611d85a214801d0de", "fields": {"nom_de_la_commune": "FEUCHEROLLES", "libell_d_acheminement": "FEUCHEROLLES", "code_postal": "78810", "coordonnees_gps": [48.8749563511, 1.96917098756], "code_commune_insee": "78233"}, "geometry": {"type": "Point", "coordinates": [1.96917098756, 48.8749563511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007abc80c95c5bd63398e7ecd381c59db68d2fa8", "fields": {"nom_de_la_commune": "FLINS SUR SEINE", "libell_d_acheminement": "FLINS SUR SEINE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78238"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9fbbd4149e954acba1ce89dc12865192e1dbfc", "fields": {"nom_de_la_commune": "FONTENAY ST PERE", "libell_d_acheminement": "FONTENAY ST PERE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78246"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d80f42d946236a50af35e888ebb59c83f4bdd97", "fields": {"nom_de_la_commune": "FRENEUSE", "libell_d_acheminement": "FRENEUSE", "code_postal": "78840", "coordonnees_gps": [49.0584919382, 1.63612899817], "code_commune_insee": "78255"}, "geometry": {"type": "Point", "coordinates": [1.63612899817, 49.0584919382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1400ed7ae51e54fc7989bf29eaf218a3e777aaf2", "fields": {"nom_de_la_commune": "GAZERAN", "libell_d_acheminement": "GAZERAN", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78269"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acac69ba9c7c5a7637b03eb37b72476a50e47dd", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78278"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82175c1fe0031a5a5ef96b469c433935afbaaba", "fields": {"nom_de_la_commune": "GOUSSONVILLE", "libell_d_acheminement": "GOUSSONVILLE", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78281"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ac8eab7f4b62b8f29dd5571ae6d850ea4632c25", "fields": {"nom_de_la_commune": "GROSROUVRE", "libell_d_acheminement": "GROSROUVRE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78289"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a73b57fff944a10302bd2b64220bbb4c55accae", "fields": {"nom_de_la_commune": "GUERNES", "libell_d_acheminement": "GUERNES", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78290"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aad67ea1e5e8312cc2be75eab726e531df4871b9", "fields": {"nom_de_la_commune": "LA HAUTEVILLE", "libell_d_acheminement": "LA HAUTEVILLE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78302"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27378dc1fc92e1995ade0eb700845fe808dd0384", "fields": {"nom_de_la_commune": "HOUDAN", "libell_d_acheminement": "HOUDAN", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78310"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db00d6ca2e431f1350fcc86f4343db5f8e21d710", "fields": {"nom_de_la_commune": "JOUY EN JOSAS", "libell_d_acheminement": "JOUY EN JOSAS", "code_postal": "78350", "coordonnees_gps": [48.7655340154, 2.15902519445], "code_commune_insee": "78322"}, "geometry": {"type": "Point", "coordinates": [2.15902519445, 48.7655340154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4782555e7522e48c0f62dddc7386e484f2aa5e65", "fields": {"nom_de_la_commune": "LOMMOYE", "libell_d_acheminement": "LOMMOYE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78344"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51239b966818ce864f41769ee5196656ab99ca0", "fields": {"nom_de_la_commune": "MAREIL SUR MAULDRE", "libell_d_acheminement": "MAREIL SUR MAULDRE", "code_postal": "78124", "coordonnees_gps": [48.884244051, 1.86268946991], "code_commune_insee": "78368"}, "geometry": {"type": "Point", "coordinates": [1.86268946991, 48.884244051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208672b34de75e673b23bf8f1589d02d3417c9fa", "fields": {"nom_de_la_commune": "MAULE", "libell_d_acheminement": "MAULE", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78380"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b06515dcc4af4c3c70599ed455e9176c6a6ffaf", "fields": {"nom_de_la_commune": "MENERVILLE", "libell_d_acheminement": "MENERVILLE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78385"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551e401049e5979ca93eb1c1295b6255ee0232fe", "fields": {"nom_de_la_commune": "MERE", "libell_d_acheminement": "MERE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78389"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba307b17ede08c1388436a2a10f9d006abae636", "fields": {"nom_de_la_commune": "MONDREVILLE", "libell_d_acheminement": "MONDREVILLE", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78413"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c688160ca26716cabbbc4db754752106891c88", "fields": {"nom_de_la_commune": "MONTESSON", "libell_d_acheminement": "MONTESSON", "code_postal": "78360", "coordonnees_gps": [48.9173237175, 2.13949842115], "code_commune_insee": "78418"}, "geometry": {"type": "Point", "coordinates": [2.13949842115, 48.9173237175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc53ece7ca7cd232db921d5e5e954aaae85d1e7", "fields": {"nom_de_la_commune": "MULCENT", "libell_d_acheminement": "MULCENT", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78439"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f681f020555700e722d5c2566eea24f147736b", "fields": {"nom_de_la_commune": "NEZEL", "libell_d_acheminement": "NEZEL", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78451"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155c9cb51d91a377a228f9e009ce3b5f802ca346", "fields": {"nom_de_la_commune": "PONTHEVRARD", "libell_d_acheminement": "PONTHEVRARD", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78499"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e756914cf8df52ab16cd0d01994a6c141520ecf3", "fields": {"nom_de_la_commune": "PORCHEVILLE", "libell_d_acheminement": "PORCHEVILLE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78501"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c138f0385baed6ef3f156bc3b3f689695ce24b82", "fields": {"nom_de_la_commune": "LE PORT MARLY", "libell_d_acheminement": "LE PORT MARLY", "code_postal": "78560", "coordonnees_gps": [48.881651817, 2.10990010942], "code_commune_insee": "78502"}, "geometry": {"type": "Point", "coordinates": [2.10990010942, 48.881651817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bead249eb6d688188f6bcd6749bf3a6cb4b6411d", "fields": {"nom_de_la_commune": "LA QUEUE LES YVELINES", "libell_d_acheminement": "LA QUEUE LES YVELINES", "code_postal": "78940", "coordonnees_gps": [48.8051176494, 1.74709379357], "code_commune_insee": "78513"}, "geometry": {"type": "Point", "coordinates": [1.74709379357, 48.8051176494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a49ea6f27fa27ba7bf2d166f401ce6e182fa42", "fields": {"nom_de_la_commune": "RICHEBOURG", "libell_d_acheminement": "RICHEBOURG", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78520"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fee036c5efe51a48f8eb6a3c6efd7c27a34666", "fields": {"nom_de_la_commune": "ROCQUENCOURT", "libell_d_acheminement": "ROCQUENCOURT", "code_postal": "78150", "coordonnees_gps": [48.8291874065, 2.12052828501], "code_commune_insee": "78524"}, "geometry": {"type": "Point", "coordinates": [2.12052828501, 48.8291874065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8bb52b26d3d82cc49d2ba9c533754febcffa1f", "fields": {"nom_de_la_commune": "ROLLEBOISE", "libell_d_acheminement": "ROLLEBOISE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78528"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f1ddae089d4cddc2660d91d17d419b27dca01c", "fields": {"nom_de_la_commune": "ROSAY", "libell_d_acheminement": "ROSAY", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78530"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f28d450d381cb09e7538efd3bf483eb3d70a0aa1", "fields": {"nom_de_la_commune": "ROSNY SUR SEINE", "libell_d_acheminement": "ROSNY SUR SEINE", "code_postal": "78710", "coordonnees_gps": [48.9968477595, 1.60769084206], "code_commune_insee": "78531"}, "geometry": {"type": "Point", "coordinates": [1.60769084206, 48.9968477595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98aede5b530545e77739f50a511029a2e167dff6", "fields": {"nom_de_la_commune": "ST CYR L ECOLE", "libell_d_acheminement": "ST CYR L ECOLE", "code_postal": "78210", "coordonnees_gps": [48.8064735796, 2.0656262845], "code_commune_insee": "78545"}, "geometry": {"type": "Point", "coordinates": [2.0656262845, 48.8064735796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d926776129bbc1630345e0f7542f139ebab2357", "fields": {"nom_de_la_commune": "ST GERMAIN DE LA GRANGE", "libell_d_acheminement": "ST GERMAIN DE LA GRANGE", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78550"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d92befe0c401d31c40aff72d64a1651e9f621579", "fields": {"nom_de_la_commune": "ST NOM LA BRETECHE", "libell_d_acheminement": "ST NOM LA BRETECHE", "code_postal": "78860", "coordonnees_gps": [48.8631666578, 2.01892251697], "code_commune_insee": "78571"}, "geometry": {"type": "Point", "coordinates": [2.01892251697, 48.8631666578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1517d74a7a67a186a20046b73fc707c9984b70c8", "fields": {"nom_de_la_commune": "ST REMY L HONORE", "libell_d_acheminement": "ST REMY L HONORE", "code_postal": "78690", "coordonnees_gps": [48.7275992987, 1.8882726457], "code_commune_insee": "78576"}, "geometry": {"type": "Point", "coordinates": [1.8882726457, 48.7275992987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5734bde5798906d2107cff53a5d0e4b914da21e1", "fields": {"nom_de_la_commune": "THOIRY", "libell_d_acheminement": "THOIRY", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78616"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e18b8cb6588ea06124b3629cb426d6ebb58148", "fields": {"nom_de_la_commune": "AIFFRES", "libell_d_acheminement": "AIFFRES", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79003"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60912d973f3e30fb503b84e34da0b9b90f384242", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "ARGENTON LES VALLEES", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f0cf125b9f30b1893d10d33441142f9d18ee9b", "fields": {"code_postal": "79300", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "LA CHAPELLE GAUDIN", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2108757f66f0c8d8e0438dc0c90384e8b9fba77", "fields": {"nom_de_la_commune": "ARGENTON L EGLISE", "libell_d_acheminement": "ARGENTON L EGLISE", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79014"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10785a25f9241b28f765624e739ab094cf62bb09", "fields": {"nom_de_la_commune": "BEAUSSAIS VITRE", "libell_d_acheminement": "BEAUSSAIS VITRE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79030"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72bb5943afc87627f21c59fe8a8fe63dcef824f", "fields": {"nom_de_la_commune": "LE BEUGNON", "libell_d_acheminement": "LE BEUGNON", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79035"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27aae307eac09c8c3af87e1a2079dafdda99f02c", "fields": {"nom_de_la_commune": "BOUILLE LORETZ", "libell_d_acheminement": "BOUILLE LORETZ", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79043"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4fe8e0751dccbf497db798b7f6bf6f07bd87d2", "fields": {"nom_de_la_commune": "BOUIN", "libell_d_acheminement": "BOUIN", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79045"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840ee74646b4117ac0f5ca545d3b437e9405a647", "fields": {"nom_de_la_commune": "BRION PRES THOUET", "libell_d_acheminement": "BRION PRES THOUET", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79056"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095ce61500e5a178eb0c31b783de7b251754b827", "fields": {"nom_de_la_commune": "CAUNAY", "libell_d_acheminement": "CAUNAY", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79060"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e380717bc20bb3c3945dcad06e70862383ef02", "fields": {"code_postal": "79370", "code_commune_insee": "79061", "libell_d_acheminement": "CELLES SUR BELLE", "ligne_5": "VERRINES SOUS CELLES", "nom_de_la_commune": "CELLES SUR BELLE", "coordonnees_gps": [46.2791849908, -0.237039794874]}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e92aea3913e66d3afca7be433a2e3e9c21b41f", "fields": {"nom_de_la_commune": "CERSAY", "libell_d_acheminement": "CERSAY", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79063"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0135fa8b74e827821edcbb6ed30900e2a890f37", "fields": {"nom_de_la_commune": "CHAIL", "libell_d_acheminement": "CHAIL", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79064"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0028342b6b1e7cd83b8833c409b938f0931e4866", "fields": {"nom_de_la_commune": "CHANTELOUP", "libell_d_acheminement": "CHANTELOUP", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79069"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0877121b04c2066b1b6379f6eb1e871a95905340", "fields": {"code_postal": "79360", "code_commune_insee": "79078", "libell_d_acheminement": "PRISSE LA CHARRIERE", "ligne_5": "LA CHARRIERE", "nom_de_la_commune": "PRISSE LA CHARRIERE", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb8ba0872e445bfe7e1426931b0c05e7c19b50c", "fields": {"code_postal": "79360", "code_commune_insee": "79078", "libell_d_acheminement": "PRISSE LA CHARRIERE", "ligne_5": "PRISSE", "nom_de_la_commune": "PRISSE LA CHARRIERE", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6adc79d6a919a42b62d090f328a712cee2ab5d12", "fields": {"nom_de_la_commune": "MAULEON", "libell_d_acheminement": "MAULEON", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79079"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e18fcdb3647693e0ae77444c31553ab9566024", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "LOUBLANDE", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f4ee8c08c91632ed639a09dda6d5744b379e57", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "MOULINS", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2068ac73738fda5f072f08eb7493c3d05e9c2505", "fields": {"nom_de_la_commune": "LA COUARDE", "libell_d_acheminement": "LA COUARDE", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79098"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c45f2f22b896fede758fb053c06e056b087ba973", "fields": {"nom_de_la_commune": "COULON", "libell_d_acheminement": "COULON", "code_postal": "79510", "coordonnees_gps": [46.3373584247, -0.585039967907], "code_commune_insee": "79100"}, "geometry": {"type": "Point", "coordinates": [-0.585039967907, 46.3373584247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c2a36ccb62b54863e215e06b607243fcb7fba6", "fields": {"nom_de_la_commune": "ECHIRE", "libell_d_acheminement": "ECHIRE", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79109"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d58e61af00e82aaa7f1b7a7b041482daf00b3a", "fields": {"nom_de_la_commune": "EPANNES", "libell_d_acheminement": "EPANNES", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79112"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b625d2722334c7c62578c5a1bbc5a35b82dbf710", "fields": {"nom_de_la_commune": "EXIREUIL", "libell_d_acheminement": "EXIREUIL", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79114"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18be3c34206e3ce9aea34796bd5063c868c881da", "fields": {"nom_de_la_commune": "FAYE SUR ARDIN", "libell_d_acheminement": "FAYE SUR ARDIN", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79117"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971c4666d1740638baa99fa8d714d1c20c785455", "fields": {"nom_de_la_commune": "FONTENILLE ST MARTIN D ENTRAIGUES", "libell_d_acheminement": "FONTENILLE ST MARTIN ENTRAIGUES", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79122"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce91b5bde9f740267a582fb45e5dfa6203fd38a", "fields": {"code_postal": "79110", "code_commune_insee": "79122", "libell_d_acheminement": "FONTENILLE ST MARTIN ENTRAIGUES", "ligne_5": "ST MARTIN D ENTRAIGUES", "nom_de_la_commune": "FONTENILLE ST MARTIN D ENTRAIGUES", "coordonnees_gps": [46.0796792551, -0.0776262361776]}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23802d5ca904189b510f80f89ae63057c88aef4d", "fields": {"nom_de_la_commune": "LA FORET SUR SEVRE", "libell_d_acheminement": "LA FORET SUR SEVRE", "code_postal": "79380", "coordonnees_gps": [46.7639583246, -0.657227871413], "code_commune_insee": "79123"}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769c4c4afe10f9a3cc2a8538033dfd6ba5034b68", "fields": {"nom_de_la_commune": "GLENAY", "libell_d_acheminement": "GLENAY", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79134"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec2bf269d1ae3e314db83996596d0321c4af2ae", "fields": {"nom_de_la_commune": "GRANZAY GRIPT", "libell_d_acheminement": "GRANZAY GRIPT", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79137"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab286809238c1d99eacb430af58d7d4992878a9c", "fields": {"nom_de_la_commune": "LES GROSEILLERS", "libell_d_acheminement": "LES GROSEILLERS", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79139"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5a76f2ef073ca059a98d6ebb2a18d838dfb4dc", "fields": {"nom_de_la_commune": "LEZAY", "libell_d_acheminement": "LEZAY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79148"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192ba763563e62da24d663c0157a5b220f68a46e", "fields": {"nom_de_la_commune": "LOUBILLE", "libell_d_acheminement": "LOUBILLE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79154"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32da3db3b7b973bb138ec90825c304cf1b95f00a", "fields": {"nom_de_la_commune": "LOUZY", "libell_d_acheminement": "LOUZY", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79157"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96d725c60a5b9f6a5724d5b6d6d888c7bcee3722", "fields": {"nom_de_la_commune": "LUZAY", "libell_d_acheminement": "LUZAY", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79161"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309456b21305326a4b99f213e917e74475c1d8f4", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79166"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ea4b74be9ac0eca98f66eab423aa388f681030", "fields": {"nom_de_la_commune": "MAUZE SUR LE MIGNON", "libell_d_acheminement": "MAUZE SUR LE MIGNON", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79170"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19c774aef3095c0dc41c7b20acfb6fa7a5bc6a2", "fields": {"nom_de_la_commune": "MAZIERES SUR BERONNE", "libell_d_acheminement": "MAZIERES SUR BERONNE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79173"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cade5a99f2314b0f4258d06dfa6956e346a70bd", "fields": {"nom_de_la_commune": "NEUVY BOUIN", "libell_d_acheminement": "NEUVY BOUIN", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79190"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4edd3a74286b66b13dfe0f37aeb44593d5ae63", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "SOUCHE", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa5d3a59d7ae69b71e892ad5564ef567d4112da", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79209"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c09b0544950d1794383e28459b80489f161eb6", "fields": {"nom_de_la_commune": "PLIBOUX", "libell_d_acheminement": "PLIBOUX", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79212"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41740ae286193e0b3f59504d0fa22a0f9ba8d4c", "fields": {"nom_de_la_commune": "PUGNY", "libell_d_acheminement": "PUGNY", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79222"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a666912214828cdffb433e66676ec4f54c9bf402", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76641"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbdf46c2ab91a5d6115870ca72d010ec28c70ed", "fields": {"nom_de_la_commune": "ST RIQUIER EN RIVIERE", "libell_d_acheminement": "ST RIQUIER EN RIVIERE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76645"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34002393996fa76234a1dce75be84e762f6dd52", "fields": {"nom_de_la_commune": "ST SYLVAIN", "libell_d_acheminement": "ST SYLVAIN", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76651"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80fe2b68452fb0c6c501ce8aec2de3b3b3554593", "fields": {"nom_de_la_commune": "ST VAAST DIEPPEDALLE", "libell_d_acheminement": "ST VAAST DIEPPEDALLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76653"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b2df7f887df475d34a5efdf1e334f4a124ccb9", "fields": {"nom_de_la_commune": "SASSETOT LE MAUCONDUIT", "libell_d_acheminement": "SASSETOT LE MAUCONDUIT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76663"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa81cbcd70bf90bd30cfc6a8374545916db3ec5", "fields": {"code_postal": "76540", "code_commune_insee": "76663", "libell_d_acheminement": "SASSETOT LE MAUCONDUIT", "ligne_5": "LES PETITES DALLES", "nom_de_la_commune": "SASSETOT LE MAUCONDUIT", "coordonnees_gps": [49.7570077564, 0.523798637411]}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b46c4f0ebe58ad961a774916da4fa3a2dd53fe4", "fields": {"nom_de_la_commune": "SIERVILLE", "libell_d_acheminement": "SIERVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76675"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4040f10e61d97dce683484d805d4f208eb40e6a8", "fields": {"nom_de_la_commune": "SIGY EN BRAY", "libell_d_acheminement": "SIGY EN BRAY", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76676"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48e196f620c449acf029b3b4ae1e45c79ecca9c", "fields": {"nom_de_la_commune": "SOMMERY", "libell_d_acheminement": "SOMMERY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76678"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fdd014a79ec518bedb5a25c17afc08fbde26311", "fields": {"nom_de_la_commune": "SOMMESNIL", "libell_d_acheminement": "SOMMESNIL", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76679"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df81d7a4b9b331c132600d40cca7df90c7c6bf5d", "fields": {"nom_de_la_commune": "SOTTEVILLE SOUS LE VAL", "libell_d_acheminement": "SOTTEVILLE SOUS LE VAL", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76682"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcb8e3fc14dd1d04b52077755e5dd27f6868dfb", "fields": {"nom_de_la_commune": "SOTTEVILLE SUR MER", "libell_d_acheminement": "SOTTEVILLE SUR MER", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76683"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5307f64e232ba43e6b7976d20cfd20ac18b68e6", "fields": {"nom_de_la_commune": "THIETREVILLE", "libell_d_acheminement": "THIETREVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76689"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aff849f5b001d9ae24f5b8378373fb74af3bd0", "fields": {"nom_de_la_commune": "THIL MANNEVILLE", "libell_d_acheminement": "THIL MANNEVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76690"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cbecd93ae8741a19aead10b4e48b4d62e0ccbb2", "fields": {"nom_de_la_commune": "TOUFFREVILLE LA CORBELINE", "libell_d_acheminement": "TOUFFREVILLE LA CORBELINE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76702"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a979bddc4b95fb6f949b96a99c8bf27bee4a88", "fields": {"nom_de_la_commune": "TOURVILLE SUR ARQUES", "libell_d_acheminement": "TOURVILLE SUR ARQUES", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76707"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e84fd65cf95f91c8180424c3c8ac865f00a6d11", "fields": {"nom_de_la_commune": "LES TROIS PIERRES", "libell_d_acheminement": "LES TROIS PIERRES", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76714"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095b6a9040948795aaa4af7f0e7698ad94f7bc24", "fields": {"nom_de_la_commune": "TROUVILLE", "libell_d_acheminement": "TROUVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76715"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc60f8ffcc46dea92de1954a082b4ee2f43e281", "fields": {"nom_de_la_commune": "TURRETOT", "libell_d_acheminement": "TURRETOT", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76716"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca01fadc2a211a972b31c3408680e058fb70a42", "fields": {"code_postal": "76450", "code_commune_insee": "76732", "libell_d_acheminement": "BUTOT VENESVILLE", "ligne_5": "BUTOT EN CAUX", "nom_de_la_commune": "BUTOT VENESVILLE", "coordonnees_gps": [49.775306419, 0.640370985618]}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d84252fd178359039cdf5818f8f61ab259baa8", "fields": {"nom_de_la_commune": "VERGETOT", "libell_d_acheminement": "VERGETOT", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76734"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29317383ca97938540d1c519e60b3b1a68f965bc", "fields": {"nom_de_la_commune": "YMARE", "libell_d_acheminement": "YMARE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76753"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b48ad0d2ee42d2b9d5e9c4cb6bc90248056c10", "fields": {"nom_de_la_commune": "ACHERES LA FORET", "libell_d_acheminement": "ACHERES LA FORET", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77001"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09be2f5e4c9e46f36b20df96e0b00e98fc0e42ab", "fields": {"nom_de_la_commune": "AUBEPIERRE OZOUER LE REPOS", "libell_d_acheminement": "AUBEPIERRE OZOUER LE REPOS", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77010"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1885114fb4a4848f3c33d539537ca93f3b71afc5", "fields": {"nom_de_la_commune": "AVON", "libell_d_acheminement": "AVON", "code_postal": "77210", "coordonnees_gps": [48.417089136, 2.75506799012], "code_commune_insee": "77014"}, "geometry": {"type": "Point", "coordinates": [2.75506799012, 48.417089136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fea010b9ced3bda10a3f4d2bc7b1d1fd29c9e4b", "fields": {"nom_de_la_commune": "BEAUCHERY ST MARTIN", "libell_d_acheminement": "BEAUCHERY ST MARTIN", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77026"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acaff12f1bd91e2fc10017d8f33f1e97cdd2e6d0", "fields": {"nom_de_la_commune": "BERNAY VILBERT", "libell_d_acheminement": "BERNAY VILBERT", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77031"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f3915776dd6e7c3ae0a0b7ea445ea2c11ba6b6", "fields": {"code_postal": "77540", "code_commune_insee": "77031", "libell_d_acheminement": "BERNAY VILBERT", "ligne_5": "VILBERT", "nom_de_la_commune": "BERNAY VILBERT", "coordonnees_gps": [48.6871810178, 2.97337841043]}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6254d58ef5d8fa16caf61aacce53a3d3399b898", "fields": {"nom_de_la_commune": "BETON BAZOCHES", "libell_d_acheminement": "BETON BAZOCHES", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77032"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae8e0649ffc3986a11f9e6855e9b1aefec0344c", "fields": {"nom_de_la_commune": "BOULEURS", "libell_d_acheminement": "BOULEURS", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77047"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731c2b16abd1d8b73de58e0c9338de9b113996dc", "fields": {"nom_de_la_commune": "LA BROSSE MONTCEAUX", "libell_d_acheminement": "LA BROSSE MONTCEAUX", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77054"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed35112814c8f8f369996caf2547e48197c87fdb", "fields": {"nom_de_la_commune": "BROU SUR CHANTEREINE", "libell_d_acheminement": "BROU SUR CHANTEREINE", "code_postal": "77177", "coordonnees_gps": [48.8903763139, 2.63870656579], "code_commune_insee": "77055"}, "geometry": {"type": "Point", "coordinates": [2.63870656579, 48.8903763139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d0c2a1006ae2cfc873bbdc201c027b1d07b0f4a", "fields": {"nom_de_la_commune": "BURCY", "libell_d_acheminement": "BURCY", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77056"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9207fdc2d8ac2130c115348f4f4c047d81827b9", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77057"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20504e2b3bf163716e489f7a7eff1813662fd6f8", "fields": {"nom_de_la_commune": "CHAILLY EN BIERE", "libell_d_acheminement": "CHAILLY EN BIERE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77069"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd2228e710bfd9740d5428bebb15ae3aecc01b5", "fields": {"nom_de_la_commune": "CHAILLY EN BRIE", "libell_d_acheminement": "CHAILLY EN BRIE", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77070"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749b65fcf7b55b3c5118db8ce7502b355eb1e6f6", "fields": {"nom_de_la_commune": "CHALAUTRE LA GRANDE", "libell_d_acheminement": "CHALAUTRE LA GRANDE", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77072"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1646067b41d2ddef9bff3263ac6e1e0eab45b2dc", "fields": {"nom_de_la_commune": "CHALIFERT", "libell_d_acheminement": "CHALIFERT", "code_postal": "77144", "coordonnees_gps": [48.8764616468, 2.75749686803], "code_commune_insee": "77075"}, "geometry": {"type": "Point", "coordinates": [2.75749686803, 48.8764616468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991d9442ecf590937862f0af8f7da8baedfc1cec", "fields": {"nom_de_la_commune": "CHALMAISON", "libell_d_acheminement": "CHALMAISON", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77076"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11f3bb9f1664a9625048a237dab17ae212b896f", "fields": {"nom_de_la_commune": "CHAMBRY", "libell_d_acheminement": "CHAMBRY", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77077"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a463036e6b32d59ee37f360a1b3e4fed5bbfff18", "fields": {"nom_de_la_commune": "CHANTELOUP EN BRIE", "libell_d_acheminement": "CHANTELOUP EN BRIE", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77085"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6658d3bd5966d69d0ded6c192820f8a4fb2d8e69", "fields": {"nom_de_la_commune": "LES CHAPELLES BOURBON", "libell_d_acheminement": "LES CHAPELLES BOURBON", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77091"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e12d082c7dd46a8fd61bc08b6d26ab3501327c5", "fields": {"nom_de_la_commune": "CHAUFFRY", "libell_d_acheminement": "CHAUFFRY", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77106"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb14cad673ee76014eabb28972c091a6519ab13a", "fields": {"nom_de_la_commune": "CHESSY", "libell_d_acheminement": "CHESSY", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77111"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f536ae596cf6ea11cf86743abf3de5fcb6faf0bc", "fields": {"nom_de_la_commune": "CHEVRU", "libell_d_acheminement": "CHEVRU", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77113"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ce5fbec8498e4c31367738325612d009cb4dc9", "fields": {"nom_de_la_commune": "CLAYE SOUILLY", "libell_d_acheminement": "CLAYE SOUILLY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77118"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014dd45036f0cf4969517b204574fed33038cfe8", "fields": {"code_postal": "77410", "code_commune_insee": "77118", "libell_d_acheminement": "CLAYE SOUILLY", "ligne_5": "SOUILLY", "nom_de_la_commune": "CLAYE SOUILLY", "coordonnees_gps": [48.9493778355, 2.7161171355]}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1644f86b237e94433814fb3ea120d917e35c0e8", "fields": {"nom_de_la_commune": "COUBERT", "libell_d_acheminement": "COUBERT", "code_postal": "77170", "coordonnees_gps": [48.6935707994, 2.63183347569], "code_commune_insee": "77127"}, "geometry": {"type": "Point", "coordinates": [2.63183347569, 48.6935707994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe23520927c3b0ffaef7c240cd44287a45dd83b1", "fields": {"nom_de_la_commune": "COUILLY PONT AUX DAMES", "libell_d_acheminement": "COUILLY PONT AUX DAMES", "code_postal": "77860", "coordonnees_gps": [48.889293661, 2.86625543445], "code_commune_insee": "77128"}, "geometry": {"type": "Point", "coordinates": [2.86625543445, 48.889293661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba61f8e38e00e2b7acbd12cf6c6880eea94f2e5", "fields": {"nom_de_la_commune": "COULOMMES", "libell_d_acheminement": "COULOMMES", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77130"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4318ea2761d1a3e689ddb9725c5982921c203fd7", "fields": {"nom_de_la_commune": "COURCHAMP", "libell_d_acheminement": "COURCHAMP", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77134"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d60c8138b218d456874b79fc06bde4993c443d9c", "fields": {"nom_de_la_commune": "COURPALAY", "libell_d_acheminement": "COURPALAY", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77135"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de05b9e4e8dafbcade56184d448648578bb2be5", "fields": {"nom_de_la_commune": "CROISSY BEAUBOURG", "libell_d_acheminement": "CROISSY BEAUBOURG", "code_postal": "77183", "coordonnees_gps": [48.8166135478, 2.65568100478], "code_commune_insee": "77146"}, "geometry": {"type": "Point", "coordinates": [2.65568100478, 48.8166135478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152e35187eedbbb23a881b045fa625ff6f4fe224", "fields": {"nom_de_la_commune": "CROUY SUR OURCQ", "libell_d_acheminement": "CROUY SUR OURCQ", "code_postal": "77840", "coordonnees_gps": [49.0796099088, 3.11275376018], "code_commune_insee": "77148"}, "geometry": {"type": "Point", "coordinates": [3.11275376018, 49.0796099088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bb82e35e8c47162f380f98c5e7ed5a4531cc4c", "fields": {"nom_de_la_commune": "CUCHARMOY", "libell_d_acheminement": "CUCHARMOY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77149"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10b037c5d315c489fa7bb698178e55b172c2f97", "fields": {"nom_de_la_commune": "DAMMARIE LES LYS", "libell_d_acheminement": "DAMMARIE LES LYS", "code_postal": "77190", "coordonnees_gps": [48.5045043002, 2.61429281246], "code_commune_insee": "77152"}, "geometry": {"type": "Point", "coordinates": [2.61429281246, 48.5045043002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36e1fac52c323678cd739f9394fc318bc92383c", "fields": {"nom_de_la_commune": "DIANT", "libell_d_acheminement": "DIANT", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77158"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b013939b35ed50e84f88399a362f7062c86214f", "fields": {"nom_de_la_commune": "DOUY LA RAMEE", "libell_d_acheminement": "DOUY LA RAMEE", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77163"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eaf33ea25cc15fbe7f21a19f2b4436d6918ecae", "fields": {"nom_de_la_commune": "ECHOUBOULAINS", "libell_d_acheminement": "ECHOUBOULAINS", "code_postal": "77830", "coordonnees_gps": [48.4598569753, 2.90486661459], "code_commune_insee": "77164"}, "geometry": {"type": "Point", "coordinates": [2.90486661459, 48.4598569753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "515aeaf51a673068a5a1194142e35172631a975d", "fields": {"nom_de_la_commune": "EGLIGNY", "libell_d_acheminement": "EGLIGNY", "code_postal": "77126", "coordonnees_gps": [48.4261598514, 3.09512447411], "code_commune_insee": "77167"}, "geometry": {"type": "Point", "coordinates": [3.09512447411, 48.4261598514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d37a9d61e3c382e7c312ab63fda209910c34db99", "fields": {"nom_de_la_commune": "EMERAINVILLE", "libell_d_acheminement": "EMERAINVILLE", "code_postal": "77184", "coordonnees_gps": [48.8191814737, 2.61008151215], "code_commune_insee": "77169"}, "geometry": {"type": "Point", "coordinates": [2.61008151215, 48.8191814737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46549aefc46c8c03ffb413f0eeb9499c0a5daa3e", "fields": {"nom_de_la_commune": "ESMANS", "libell_d_acheminement": "ESMANS", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77172"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7689fb35508119e577d7a1245212c6e4252e7c", "fields": {"nom_de_la_commune": "FERICY", "libell_d_acheminement": "FERICY", "code_postal": "77133", "coordonnees_gps": [48.4532100891, 2.828016762], "code_commune_insee": "77179"}, "geometry": {"type": "Point", "coordinates": [2.828016762, 48.4532100891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a7bbdd8a4a1ccbf09b3e1dac70f497e80ea80f", "fields": {"nom_de_la_commune": "FEROLLES ATTILLY", "libell_d_acheminement": "FEROLLES ATTILLY", "code_postal": "77150", "coordonnees_gps": [48.7409851538, 2.62903924486], "code_commune_insee": "77180"}, "geometry": {"type": "Point", "coordinates": [2.62903924486, 48.7409851538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "719471fd4934c7fe3dde5a335f5a90bceaa81aaa", "fields": {"nom_de_la_commune": "FERRIERES EN BRIE", "libell_d_acheminement": "FERRIERES EN BRIE", "code_postal": "77164", "coordonnees_gps": [48.8197885569, 2.70933036195], "code_commune_insee": "77181"}, "geometry": {"type": "Point", "coordinates": [2.70933036195, 48.8197885569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7a7d90c2ec76ca2edc1d6b6e49c0adbe5a13ee", "fields": {"nom_de_la_commune": "LA FERTE GAUCHER", "libell_d_acheminement": "LA FERTE GAUCHER", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77182"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebecb02b8ec21c25482aeff76c1098fcb12433b6", "fields": {"nom_de_la_commune": "LA FERTE SOUS JOUARRE", "libell_d_acheminement": "LA FERTE SOUS JOUARRE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77183"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5567a5785591bc237362c9ff12cfb947ce5406b", "fields": {"nom_de_la_commune": "FONTAINE FOURCHES", "libell_d_acheminement": "FONTAINE FOURCHES", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77187"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfde7cade6b767791b30942716420f465e492a17", "fields": {"nom_de_la_commune": "FONTAINE LE PORT", "libell_d_acheminement": "FONTAINE LE PORT", "code_postal": "77590", "coordonnees_gps": [48.4860029495, 2.72692404848], "code_commune_insee": "77188"}, "geometry": {"type": "Point", "coordinates": [2.72692404848, 48.4860029495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e36ed44f45ce9708bbcc636d0cbd5163b2e66bb", "fields": {"nom_de_la_commune": "FONTAINS", "libell_d_acheminement": "FONTAINS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77190"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0249482735fb0eb99519363d2900cfbbf235f10", "fields": {"nom_de_la_commune": "FONTENAILLES", "libell_d_acheminement": "FONTENAILLES", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77191"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6beea7639bba70bb41dc92bc65d61f34d08f2855", "fields": {"nom_de_la_commune": "FRETOY", "libell_d_acheminement": "FRETOY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77197"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a151cd734349300705abe4c8bf74ba7c5b8131d5", "fields": {"nom_de_la_commune": "GARENTREVILLE", "libell_d_acheminement": "GARENTREVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77200"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52be9c716d788ac9de4a25c251457084faf2f3fd", "fields": {"nom_de_la_commune": "GERMIGNY L EVEQUE", "libell_d_acheminement": "GERMIGNY L EVEQUE", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77203"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8794d35858ad15f38fd6c5594f8ad070b58ab5e", "fields": {"nom_de_la_commune": "GERMIGNY SOUS COULOMBS", "libell_d_acheminement": "GERMIGNY SOUS COULOMBS", "code_postal": "77840", "coordonnees_gps": [49.0796099088, 3.11275376018], "code_commune_insee": "77204"}, "geometry": {"type": "Point", "coordinates": [3.11275376018, 49.0796099088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8535913a7da3cfbb42ba50eb0671044fc848bee", "fields": {"nom_de_la_commune": "GIRONVILLE", "libell_d_acheminement": "GIRONVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77207"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ddb9fae316dabef283279b65b7b1dc36f7d84d", "fields": {"nom_de_la_commune": "LA GRANDE PAROISSE", "libell_d_acheminement": "LA GRANDE PAROISSE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77210"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5bfb7e3c48dae8699e821ddd992fee113554cca", "fields": {"nom_de_la_commune": "GRISY SUR SEINE", "libell_d_acheminement": "GRISY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77218"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b01088590d02ef713a6b8c457d3348b70abc96", "fields": {"code_postal": "77520", "code_commune_insee": "77223", "libell_d_acheminement": "GURCY LE CHATEL", "ligne_5": "CHALAUTRE LA REPOSTE", "nom_de_la_commune": "GURCY LE CHATEL", "coordonnees_gps": [48.4787752425, 3.12194735393]}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ca1a6450c320c6cded4cd076842058379a14f6", "fields": {"nom_de_la_commune": "HERME", "libell_d_acheminement": "HERME", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77227"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b049e2f248d0707b5c9eecef67bd12b9108b64", "fields": {"nom_de_la_commune": "JABLINES", "libell_d_acheminement": "JABLINES", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77234"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de4bae7535e6f25859ce6e63e38489110c692cc1", "fields": {"nom_de_la_commune": "JUILLY", "libell_d_acheminement": "JUILLY", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77241"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f737a50f80abe5ca8f4d23e97884e07a7d64e6f4", "fields": {"nom_de_la_commune": "JUTIGNY", "libell_d_acheminement": "JUTIGNY", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77242"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599324f0c0df18e83565596ac4f5560b7c7d1d65", "fields": {"nom_de_la_commune": "LECHELLE", "libell_d_acheminement": "LECHELLE", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77246"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a827937f26b55b3b4aae82f45d9b069c323ecb", "fields": {"nom_de_la_commune": "LIEUSAINT", "libell_d_acheminement": "LIEUSAINT", "code_postal": "77127", "coordonnees_gps": [48.6260881297, 2.55027058367], "code_commune_insee": "77251"}, "geometry": {"type": "Point", "coordinates": [2.55027058367, 48.6260881297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd305128a71d834a5eb44515d0d9fcc00990ffb", "fields": {"nom_de_la_commune": "LIMOGES FOURCHES", "libell_d_acheminement": "LIMOGES FOURCHES", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77252"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad985317b4ef6b4f6a510f2054d4ea75fefae137", "fields": {"nom_de_la_commune": "LISSY", "libell_d_acheminement": "LISSY", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77253"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f086fb581f3c104b580ef17c486396e369a3f7", "fields": {"nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", "libell_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77262"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bb101461bb89ceff822a1de474d9cf6a359703", "fields": {"code_postal": "77540", "code_commune_insee": "77264", "libell_d_acheminement": "LUMIGNY NESLES ORMEAUX", "ligne_5": "NESLES LA GILBERDE", "nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", "coordonnees_gps": [48.6871810178, 2.97337841043]}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87e6b0daaf1c61551b3af820513ca00fef0add2", "fields": {"nom_de_la_commune": "MACHAULT", "libell_d_acheminement": "MACHAULT", "code_postal": "77133", "coordonnees_gps": [48.4532100891, 2.828016762], "code_commune_insee": "77266"}, "geometry": {"type": "Point", "coordinates": [2.828016762, 48.4532100891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1798ca7974f7b6326005f8744e38d1a27b02615", "fields": {"nom_de_la_commune": "LES MARETS", "libell_d_acheminement": "LES MARETS", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77275"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ecb9726a84ecafbe2ab09c5ec49e2aa08c61edc", "fields": {"nom_de_la_commune": "MAREUIL LES MEAUX", "libell_d_acheminement": "MAREUIL LES MEAUX", "code_postal": "77100", "coordonnees_gps": [48.9417341013, 2.89233400365], "code_commune_insee": "77276"}, "geometry": {"type": "Point", "coordinates": [2.89233400365, 48.9417341013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411da61de0b67ec321c6e39f23636fcaf487fdcd", "fields": {"nom_de_la_commune": "MARLES EN BRIE", "libell_d_acheminement": "MARLES EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77277"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "badff9f2f29a1330bcab5f5f7475fbd5ecedbc57", "fields": {"nom_de_la_commune": "MELUN", "libell_d_acheminement": "MELUN", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77288"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25c8369abb5b70ee1d168ddd6c75aab10d278a9", "fields": {"nom_de_la_commune": "MELZ SUR SEINE", "libell_d_acheminement": "MELZ SUR SEINE", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77289"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11491b1e8866aa96bc190feece473f4da6558fb9", "fields": {"nom_de_la_commune": "MONTENILS", "libell_d_acheminement": "MONTENILS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77304"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a61cf10a284489b518da9fd00e6fdbab28ed947", "fields": {"nom_de_la_commune": "MONTIGNY SUR LOING", "libell_d_acheminement": "MONTIGNY SUR LOING", "code_postal": "77690", "coordonnees_gps": [48.32561464, 2.75158001552], "code_commune_insee": "77312"}, "geometry": {"type": "Point", "coordinates": [2.75158001552, 48.32561464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb91e0dd96fbae2e4411fc13c3300fc9b5bb6e4", "fields": {"nom_de_la_commune": "MONTOLIVET", "libell_d_acheminement": "MONTOLIVET", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77314"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430976bf580256d0de9e2d90c9bc2a87886fdfb5", "fields": {"nom_de_la_commune": "MONTRY", "libell_d_acheminement": "MONTRY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77315"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c7a7f041e52a185f619284abaaf46901220826", "fields": {"nom_de_la_commune": "NANDY", "libell_d_acheminement": "NANDY", "code_postal": "77176", "coordonnees_gps": [48.5856002138, 2.56311279324], "code_commune_insee": "77326"}, "geometry": {"type": "Point", "coordinates": [2.56311279324, 48.5856002138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5403226a846386e95dc02ac3acb47af031260d0", "fields": {"nom_de_la_commune": "LE CAYLAR", "libell_d_acheminement": "LE CAYLAR", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34064"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86ad2a3e05d5713a7a4909a49be6a6de55e7311", "fields": {"nom_de_la_commune": "CAZEVIEILLE", "libell_d_acheminement": "CAZEVIEILLE", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34066"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1dcc6103c23eac8fb03f5171da924ab6a9ba0f", "fields": {"nom_de_la_commune": "CAZOULS D HERAULT", "libell_d_acheminement": "CAZOULS D HERAULT", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34068"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3348c6df18a47df8e56c4a2896a3ce296b032a1", "fields": {"nom_de_la_commune": "CERS", "libell_d_acheminement": "CERS", "code_postal": "34420", "coordonnees_gps": [43.3127282598, 3.32015070092], "code_commune_insee": "34073"}, "geometry": {"type": "Point", "coordinates": [3.32015070092, 43.3127282598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8090e2e2aacf536426984ed7635e298ec560d95a", "fields": {"nom_de_la_commune": "CEYRAS", "libell_d_acheminement": "CEYRAS", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34076"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4af30a1941e61eee7edce61a8c4e5deaa2488f", "fields": {"nom_de_la_commune": "CLERMONT L HERAULT", "libell_d_acheminement": "CLERMONT L HERAULT", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34079"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3da1225f20dee537f79d0110f20582ffa34bd4", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "34440", "coordonnees_gps": [43.2898778698, 3.12028009829], "code_commune_insee": "34081"}, "geometry": {"type": "Point", "coordinates": [3.12028009829, 43.2898778698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fbc079aa944a48e82b76b1d202c3d4a2a82722", "fields": {"nom_de_la_commune": "COURNONSEC", "libell_d_acheminement": "COURNONSEC", "code_postal": "34660", "coordonnees_gps": [43.5604318583, 3.70546216229], "code_commune_insee": "34087"}, "geometry": {"type": "Point", "coordinates": [3.70546216229, 43.5604318583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6597dd11734ba24c16ad52e5c123418f502a419b", "fields": {"nom_de_la_commune": "FELINES MINERVOIS", "libell_d_acheminement": "FELINES MINERVOIS", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34097"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c61cb1770cb864d3f9e9b1bfad61a5f3536a37", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34102"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cfa02081f950ae89e35ea98a8660b85548f416", "fields": {"nom_de_la_commune": "FOZIERES", "libell_d_acheminement": "FOZIERES", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34106"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad95d90e71f072cd2bb4e68a27cafe1eccf7cd6", "fields": {"nom_de_la_commune": "GABIAN", "libell_d_acheminement": "GABIAN", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34109"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50b9126d138b7127da887a98715b00fa67f86b7", "fields": {"nom_de_la_commune": "GRAISSESSAC", "libell_d_acheminement": "GRAISSESSAC", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34117"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3233fa2ed59971031860e675a91b1983b7493866", "fields": {"nom_de_la_commune": "LATTES", "libell_d_acheminement": "LATTES", "code_postal": "34970", "coordonnees_gps": [43.5636689381, 3.90272500139], "code_commune_insee": "34129"}, "geometry": {"type": "Point", "coordinates": [3.90272500139, 43.5636689381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38aba6ae5abb67e791e167e13861770a5ab861f0", "fields": {"nom_de_la_commune": "LAURET", "libell_d_acheminement": "LAURET", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34131"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b18d27329cfaba6e9c054e43899370cda18abfff", "fields": {"nom_de_la_commune": "LAUROUX", "libell_d_acheminement": "LAUROUX", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34132"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a608e96fadeb1a5b16903ac7c6383d8a0789070", "fields": {"nom_de_la_commune": "LIGNAN SUR ORB", "libell_d_acheminement": "LIGNAN SUR ORB", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34140"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafa94672442c2b04199beabb808b53780baf953", "fields": {"nom_de_la_commune": "LA LIVINIERE", "libell_d_acheminement": "LA LIVINIERE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34141"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c80d24c9872dd89fb8950b850705d9b6c436800", "fields": {"nom_de_la_commune": "MARAUSSAN", "libell_d_acheminement": "MARAUSSAN", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34148"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da71e5b627e5153178d4b463d0cf3778f429582", "fields": {"nom_de_la_commune": "MARGON", "libell_d_acheminement": "MARGON", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34149"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e61692308379e60580745218e9bef1a74f96f6c3", "fields": {"nom_de_la_commune": "MAUGUIO", "libell_d_acheminement": "MAUGUIO", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34154"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69e1aa2a99972f7537c244f128cb7330d549337", "fields": {"code_postal": "34280", "code_commune_insee": "34154", "libell_d_acheminement": "MAUGUIO", "ligne_5": "CARNON PLAGE", "nom_de_la_commune": "MAUGUIO", "coordonnees_gps": [43.5892643554, 4.01559155736]}, "geometry": {"type": "Point", "coordinates": [4.01559155736, 43.5892643554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe9195c6fbede29247a3b0269fb2d46a5342f6c", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34160"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe47ed57d735b0946e237975d9bcf671a5c82e9", "fields": {"nom_de_la_commune": "MONTADY", "libell_d_acheminement": "MONTADY", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34161"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b62407ae5d3bdbf3583d3a8c803f0916c1042d", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34080", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f17e248e293988b7319d33adc13dee4e52f375b", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34090", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af96654d8cafaaaee02a03d9605567254c07df2f", "fields": {"nom_de_la_commune": "NEFFIES", "libell_d_acheminement": "NEFFIES", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34181"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf8062aeb3f92809703e0b93bf5d1c4b918ba28", "fields": {"nom_de_la_commune": "NEZIGNAN L EVEQUE", "libell_d_acheminement": "NEZIGNAN L EVEQUE", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34182"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5822d3c87868418ac3c63b597fd35afbfc419d", "fields": {"nom_de_la_commune": "NISSAN LEZ ENSERUNE", "libell_d_acheminement": "NISSAN LEZ ENSERUNE", "code_postal": "34440", "coordonnees_gps": [43.2898778698, 3.12028009829], "code_commune_insee": "34183"}, "geometry": {"type": "Point", "coordinates": [3.12028009829, 43.2898778698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b41d5afa6fccf545551baab91db820caaa1da98", "fields": {"nom_de_la_commune": "OCTON", "libell_d_acheminement": "OCTON", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34186"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a6f0985dd0730c2ca579e86ef0c360159291fc", "fields": {"nom_de_la_commune": "PAULHAN", "libell_d_acheminement": "PAULHAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34194"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cdc8886244fdba1339347d13a5b20edf600603", "fields": {"nom_de_la_commune": "PEZENAS", "libell_d_acheminement": "PEZENAS", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34199"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e8c805490c783461dfcb405967df2ea637caa6", "fields": {"nom_de_la_commune": "POPIAN", "libell_d_acheminement": "POPIAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34208"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b52d04b0be513760a116018e8681f8c043c0752", "fields": {"nom_de_la_commune": "POUJOLS", "libell_d_acheminement": "POUJOLS", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34212"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ace779ba01f89f9bc824b06965b15de0ca70f4", "fields": {"nom_de_la_commune": "POUZOLLES", "libell_d_acheminement": "POUZOLLES", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34214"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3747a75850041dc699da81cac76b88bd0c3f6c00", "fields": {"nom_de_la_commune": "RIOLS", "libell_d_acheminement": "RIOLS", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34229"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb10006e554c8a31510374afc1ca64c99c605a32", "fields": {"nom_de_la_commune": "ROQUEREDONDE", "libell_d_acheminement": "ROQUEREDONDE", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34233"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1803587d7890d1485844cf0894a9b86e2c39bd17", "fields": {"nom_de_la_commune": "ROQUESSELS", "libell_d_acheminement": "ROQUESSELS", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34234"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62de4ee98a6c1bf47d8acf5204f9df480a568804", "fields": {"nom_de_la_commune": "ST ANDRE DE BUEGES", "libell_d_acheminement": "ST ANDRE DE BUEGES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34238"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3422bee5b7ce0fd1960413dc80a1d9e2fd278267", "fields": {"nom_de_la_commune": "ST ANDRE DE SANGONIS", "libell_d_acheminement": "ST ANDRE DE SANGONIS", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34239"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9bfa7340d13d9147a8130bbd6b1487e5a84318f", "fields": {"nom_de_la_commune": "ST BAUZILLE DE LA SYLVE", "libell_d_acheminement": "ST BAUZILLE DE LA SYLVE", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34241"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3789215c48b695c4f4e5c8ab7aacbb1b3241e2ca", "fields": {"nom_de_la_commune": "ST CHINIAN", "libell_d_acheminement": "ST CHINIAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34245"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1dd009ef8ec66fe23354570b20dd9533ac2218", "fields": {"nom_de_la_commune": "ST ETIENNE ESTRECHOUX", "libell_d_acheminement": "ST ETIENNE ESTRECHOUX", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34252"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79335d91bb7ece22adbb1a77ac2e2a4e7a72b08f", "fields": {"code_postal": "34610", "code_commune_insee": "34257", "libell_d_acheminement": "ST GENIES DE VARENSAL", "ligne_5": "PLAISANCE", "nom_de_la_commune": "ST GENIES DE VARENSAL", "coordonnees_gps": [43.6529362037, 2.99617489245]}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a456de18ad8228a2e8fe4cd7d116ad3f2bfea764", "fields": {"nom_de_la_commune": "ST GENIES DE FONTEDIT", "libell_d_acheminement": "ST GENIES DE FONTEDIT", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34258"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2325f717084d68e409b6a90b1fbe7a12915328f", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34271"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a5e37112f9a3cdfd1e2338368a1c77afcf7a02", "fields": {"nom_de_la_commune": "ST NAZAIRE DE PEZAN", "libell_d_acheminement": "ST NAZAIRE DE PEZAN", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34280"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82113518975bf70ee8925d40b28e72ee0dba077f", "fields": {"nom_de_la_commune": "ST PAUL ET VALMALLE", "libell_d_acheminement": "ST PAUL ET VALMALLE", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34282"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c929d2d036d65b0ba0bdc296b191a66761021536", "fields": {"nom_de_la_commune": "ST PIERRE DE LA FAGE", "libell_d_acheminement": "ST PIERRE DE LA FAGE", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34283"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33984709ee230c2bbf47699cd3f8120ac4e0c578", "fields": {"nom_de_la_commune": "ST SERIES", "libell_d_acheminement": "ST SERIES", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34288"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65987933cce680dc9b5c0e530a429c1674433c30", "fields": {"nom_de_la_commune": "SATURARGUES", "libell_d_acheminement": "SATURARGUES", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34294"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b2f589afcac03c92ada167f2ba2307b9072392", "fields": {"nom_de_la_commune": "SORBS", "libell_d_acheminement": "SORBS", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34303"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578d65a6cd89714a865ae21c0d57d9ce6567c404", "fields": {"nom_de_la_commune": "TOURBES", "libell_d_acheminement": "TOURBES", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34311"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0439990a8c2d292167a9ecfc271695db5a8cd50f", "fields": {"nom_de_la_commune": "LE TRIADOU", "libell_d_acheminement": "LE TRIADOU", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34314"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db29c76a1b613a626a280d3b3c69e08da18f300d", "fields": {"nom_de_la_commune": "USCLAS D HERAULT", "libell_d_acheminement": "USCLAS D HERAULT", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34315"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04dc9f7f46da3b237ae6d30ddb1d1f482a9c046f", "fields": {"nom_de_la_commune": "VACQUIERES", "libell_d_acheminement": "VACQUIERES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34318"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7309a5f9150880837e968b5755f630a83cfb7c", "fields": {"nom_de_la_commune": "VALERGUES", "libell_d_acheminement": "VALERGUES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34321"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2639066307a9f8c400c0a2389f54a3fd6853ea", "fields": {"nom_de_la_commune": "VENDRES", "libell_d_acheminement": "VENDRES", "code_postal": "34350", "coordonnees_gps": [43.2574196352, 3.23174001635], "code_commune_insee": "34329"}, "geometry": {"type": "Point", "coordinates": [3.23174001635, 43.2574196352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c386d03c918462cb98917073a20881fafd61966d", "fields": {"nom_de_la_commune": "VERARGUES", "libell_d_acheminement": "VERARGUES", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34330"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b930067fc0dcd55e90736dcf39516a176fceaf2", "fields": {"nom_de_la_commune": "VERRERIES DE MOUSSANS", "libell_d_acheminement": "VERRERIES DE MOUSSANS", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34331"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2995601b97a8db144ccdd04aa416d49c6b501c2f", "fields": {"nom_de_la_commune": "VIC LA GARDIOLE", "libell_d_acheminement": "VIC LA GARDIOLE", "code_postal": "34110", "coordonnees_gps": [43.471821386, 3.77729139459], "code_commune_insee": "34333"}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdee6b692cd7a56f7f07b15526728d8a41fd1a8f", "fields": {"nom_de_la_commune": "VILLEMAGNE L ARGENTIERE", "libell_d_acheminement": "VILLEMAGNE L ARGENTIERE", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34335"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec53619a78ab7423bba72bb3b31c44c1a53f4b6", "fields": {"nom_de_la_commune": "VILLENEUVE LES MAGUELONE", "libell_d_acheminement": "VILLENEUVE LES MAGUELONE", "code_postal": "34750", "coordonnees_gps": [43.5254993943, 3.85847522654], "code_commune_insee": "34337"}, "geometry": {"type": "Point", "coordinates": [3.85847522654, 43.5254993943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc40b308707a1ca34fa770a0ea82294a737aa1a", "fields": {"nom_de_la_commune": "VIOLS EN LAVAL", "libell_d_acheminement": "VIOLS EN LAVAL", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34342"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63f699245ae4a05d2910db9e54546b5ca8953a4", "fields": {"nom_de_la_commune": "LA GRANDE MOTTE", "libell_d_acheminement": "LA GRANDE MOTTE", "code_postal": "34280", "coordonnees_gps": [43.5892643554, 4.01559155736], "code_commune_insee": "34344"}, "geometry": {"type": "Point", "coordinates": [4.01559155736, 43.5892643554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de84cfd37a739459b2fde4178d201950ce366311", "fields": {"nom_de_la_commune": "BAGUER PICAN", "libell_d_acheminement": "BAGUER PICAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35010"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d37140f2222999c99682df049ffc32aebe511ab8", "fields": {"nom_de_la_commune": "BOISTRUDAN", "libell_d_acheminement": "BOISTRUDAN", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35028"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ba39e89ff59ef23a24980e0156f5a9ccbf6991", "fields": {"nom_de_la_commune": "BOURG DES COMPTES", "libell_d_acheminement": "BOURG DES COMPTES", "code_postal": "35890", "coordonnees_gps": [47.9478686946, -1.71764789932], "code_commune_insee": "35033"}, "geometry": {"type": "Point", "coordinates": [-1.71764789932, 47.9478686946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8eaad88ff297080dc16a8b11224a226772b600a", "fields": {"nom_de_la_commune": "LES BRULAIS", "libell_d_acheminement": "LES BRULAIS", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35046"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36e43ab7b7f835dc36015efca0b25dba09fa73d", "fields": {"nom_de_la_commune": "CHANTELOUP", "libell_d_acheminement": "CHANTELOUP", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35054"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34de3a84b8ad4912b23a745be0dc3d8b3b509682", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX FILTZMEENS", "libell_d_acheminement": "LA CHAPELLE AUX FILTZMEENS", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35056"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba65edd2c627388ca6af9d3b9210540fd1389d6", "fields": {"nom_de_la_commune": "LA CHAPELLE CHAUSSEE", "libell_d_acheminement": "LA CHAPELLE CHAUSSEE", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35058"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c10c65f8e434fb3b952dd10b1aef213a5000da4", "fields": {"nom_de_la_commune": "LA CHAPELLE DU LOU DU LAC", "libell_d_acheminement": "LA CHAPELLE DU LOU DU LAC", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35060"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053f72f3191ae2dd3760764efac88d1b74f70595", "fields": {"nom_de_la_commune": "CHATEAUBOURG", "libell_d_acheminement": "CHATEAUBOURG", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35068"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede6b672da34c4165fb96bcae568009114e511b1", "fields": {"code_postal": "35220", "code_commune_insee": "35068", "libell_d_acheminement": "CHATEAUBOURG", "ligne_5": "ST MELAINE", "nom_de_la_commune": "CHATEAUBOURG", "coordonnees_gps": [48.1189448859, -1.37446219817]}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c777f7c98eb22ef112fe6a1b86e61c2b3a56aa2", "fields": {"nom_de_la_commune": "CLAYES", "libell_d_acheminement": "CLAYES", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35081"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc906c79351342b2450c8e2a7912fd841e237a6b", "fields": {"nom_de_la_commune": "CORPS NUDS", "libell_d_acheminement": "CORPS NUDS", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35088"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283de4af23c09f74cefc27b8581a8f1945502eb0", "fields": {"nom_de_la_commune": "DOL DE BRETAGNE", "libell_d_acheminement": "DOL DE BRETAGNE", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35095"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791d2571d25c708a5d02c9fd7b970dbdeb27dc9d", "fields": {"nom_de_la_commune": "DOMPIERRE DU CHEMIN", "libell_d_acheminement": "DOMPIERRE DU CHEMIN", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35100"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846c41810e9784e775c17ecd6775967ba86330b9", "fields": {"nom_de_la_commune": "EANCE", "libell_d_acheminement": "EANCE", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35103"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3277bb237349153910f6098f11a73dd998eac9", "fields": {"nom_de_la_commune": "ERCE PRES LIFFRE", "libell_d_acheminement": "ERCE PRES LIFFRE", "code_postal": "35340", "coordonnees_gps": [48.199281564, -1.48595491187], "code_commune_insee": "35107"}, "geometry": {"type": "Point", "coordinates": [-1.48595491187, 48.199281564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39a4696c74b051fe5f29aeedf1e7a5613148b44", "fields": {"nom_de_la_commune": "ETRELLES", "libell_d_acheminement": "ETRELLES", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35109"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80b6a49efb5b2938a444ed4399ae307979cae3b", "fields": {"nom_de_la_commune": "FOUGERES", "libell_d_acheminement": "FOUGERES", "code_postal": "35300", "coordonnees_gps": [48.3524114648, -1.19508479795], "code_commune_insee": "35115"}, "geometry": {"type": "Point", "coordinates": [-1.19508479795, 48.3524114648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43c96d1cc64c2a45a42b612c7cb19f68bbe13c0", "fields": {"nom_de_la_commune": "GEVEZE", "libell_d_acheminement": "GEVEZE", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35120"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e77762ae1ca5da48d2eaba26bd1a5663b0a1d85", "fields": {"nom_de_la_commune": "GUIGNEN", "libell_d_acheminement": "GUIGNEN", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35127"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479231853aaed6dca762037fcbeeebb44baca7c2", "fields": {"nom_de_la_commune": "GUIPEL", "libell_d_acheminement": "GUIPEL", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35128"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6c882a58a391b2100c7a51e70e517c41ae11dc", "fields": {"nom_de_la_commune": "HEDE BAZOUGES", "libell_d_acheminement": "HEDE BAZOUGES", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35130"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749094df1c3255f1c3eb605d806a492574fcb106", "fields": {"nom_de_la_commune": "IFFENDIC", "libell_d_acheminement": "IFFENDIC", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35133"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de0fc545fddb4fedefdb0712ca042b6b58856b27", "fields": {"nom_de_la_commune": "LAIGNELET", "libell_d_acheminement": "LAIGNELET", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35138"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6fd44fdff078d1248b4eec928ca53fe645fbb2", "fields": {"nom_de_la_commune": "LANDUJAN", "libell_d_acheminement": "LANDUJAN", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35143"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24febe21a2346a7b226e67fa3894e076c418c73", "fields": {"nom_de_la_commune": "LASSY", "libell_d_acheminement": "LASSY", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35149"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdbf80e5c459426af015d13af04a0829161eab5", "fields": {"nom_de_la_commune": "MARTIGNE FERCHAUD", "libell_d_acheminement": "MARTIGNE FERCHAUD", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35167"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5423355e58cc97f659215614452979fa4202e084", "fields": {"nom_de_la_commune": "MAURE DE BRETAGNE", "libell_d_acheminement": "MAURE DE BRETAGNE", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35168"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e7b28085351afd144a2dc9015c48d3f47cec91", "fields": {"nom_de_la_commune": "MEDREAC", "libell_d_acheminement": "MEDREAC", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35171"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5798052397011fc61b43e8b12c65c42ab836e861", "fields": {"nom_de_la_commune": "MELLE", "libell_d_acheminement": "MELLE", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35174"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64727074e7db3186db3ff7839eb5422d925cc525", "fields": {"nom_de_la_commune": "MERNEL", "libell_d_acheminement": "MERNEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35175"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9579d3e26f7b9924dc0e007c2fa0b815db983bc9", "fields": {"nom_de_la_commune": "MONTAUTOUR", "libell_d_acheminement": "MONTAUTOUR", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35185"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137ff76ba2d3d912f035d9a6ec675e2729de5975", "fields": {"nom_de_la_commune": "MONTHAULT", "libell_d_acheminement": "MONTHAULT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35190"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb210261a7ae6543e4d112a02c9d7df4880316ef", "fields": {"nom_de_la_commune": "MORDELLES", "libell_d_acheminement": "MORDELLES", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35196"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d53a72361b3ec5d69a9668b8e941333bbf4364cc", "fields": {"nom_de_la_commune": "PAIMPONT", "libell_d_acheminement": "PAIMPONT", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35211"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599c4f85d5abf8361e75a49a632c2a9aff7d2526", "fields": {"nom_de_la_commune": "TAIARAPU OUEST", "libell_d_acheminement": "TEAHUPOO", "code_postal": "98723", "ligne_5": "TAIARAPU OUEST", "code_commune_insee": "98748"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6b6c3de0d7c724b88011331517b2673fc435a1", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "AVERA", "code_postal": "98735", "ligne_5": "TAPUTAPUATEA", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8219d0a91d77b8978aacf38d40ad58f5c34d228", "fields": {"nom_de_la_commune": "TATAKOTO", "libell_d_acheminement": "TUMUKURU", "code_postal": "98783", "ligne_5": "TATAKOTO", "code_commune_insee": "98751"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9fe41781fe47b469100ec1a2c001d22ea54acd", "fields": {"nom_de_la_commune": "TUBUAI", "libell_d_acheminement": "TAAHUAIA", "code_postal": "98754", "ligne_5": "TUBUAI", "code_commune_insee": "98753"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "723631eb3d4d4a758fc2ecb100735e77ff94e06b", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "TUMARAA", "code_postal": "98735", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e199bb0f28a20270cdaaf23263bcaa9555dbfa7", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "FETUNA", "code_postal": "98735", "ligne_5": "TUMARAA", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7b44e8a5be12adb2e6f2cd1d91ab62438098ec", "fields": {"nom_de_la_commune": "BELEP", "libell_d_acheminement": "BELEP", "code_postal": "98811", "code_commune_insee": "98801"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5b887117cc2f5e60d3d19246f023ed86773d5f", "fields": {"nom_de_la_commune": "BOURAIL", "libell_d_acheminement": "BOURAIL", "code_postal": "98870", "code_commune_insee": "98803"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24de990f9acecccd0d5b37719aa08497f5f30930", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA GA", "code_postal": "98836", "ligne_5": "DUMBEA", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093f6d0a1ba6efa22eee35d00b3661e17f0a86f9", "fields": {"nom_de_la_commune": "FARINO", "libell_d_acheminement": "FARINO", "code_postal": "98881", "code_commune_insee": "98806"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561f720dfcf8db38652a5c67942ad48ee267f8ef", "fields": {"nom_de_la_commune": "HIENGHENE", "libell_d_acheminement": "HIENGHENE", "code_postal": "98815", "code_commune_insee": "98807"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06462464ea2f7117734b705d7c0914fa523ab614", "fields": {"nom_de_la_commune": "L ILE DES PINS", "libell_d_acheminement": "VAO", "code_postal": "98832", "ligne_5": "L ILE DES PINS", "code_commune_insee": "98809"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0e184bd985cbeaa90377c5768da0d42b63c3fd", "fields": {"nom_de_la_commune": "KONE", "libell_d_acheminement": "KONE", "code_postal": "98860", "code_commune_insee": "98811"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983b7f1f548056fba40d6c086965571f58f8f41b", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "PLUM", "code_postal": "98875", "ligne_5": "LE MONT DORE", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454e6e34fb8fc451f5499019d26668dfb4ba6e62", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "LA COULEE", "code_postal": "98876", "ligne_5": "LE MONT DORE", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7998b49c8f5b6840fa02144bb31ff46e0be60bce", "fields": {"nom_de_la_commune": "PAITA", "libell_d_acheminement": "TONTOUTA", "code_postal": "98840", "ligne_5": "PAITA", "code_commune_insee": "98821"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fc2b5e6028c47d16f7a8fa7ff50e088e4a2821", "fields": {"nom_de_la_commune": "THIO", "libell_d_acheminement": "THIO", "code_postal": "98829", "code_commune_insee": "98829"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b8b659fd308cc5f33097dd8546edea530a75cd", "fields": {"nom_de_la_commune": "ILE DE CLIPPERTON", "libell_d_acheminement": "ILE DE CLIPPERTON", "code_postal": "98799", "code_commune_insee": "98901"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca1e12d33135b5af8faf175178efe5d35f5892a", "fields": {"nom_de_la_commune": "ALBITRECCIA", "libell_d_acheminement": "ALBITRECCIA", "code_postal": "20166", "coordonnees_gps": [41.8437560104, 8.85889610104], "code_commune_insee": "2A008"}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5e7515677964ef5aca0fdc241a58083beb42f7", "fields": {"nom_de_la_commune": "AMBIEGNA", "libell_d_acheminement": "AMBIEGNA", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A014"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1a5a88815ae3dc466edf7328adc25d5586f431", "fields": {"nom_de_la_commune": "BALOGNA", "libell_d_acheminement": "BALOGNA", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A028"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d64aa20b273c040f3ce72e69dd4c83c0906c81", "fields": {"nom_de_la_commune": "BILIA", "libell_d_acheminement": "BILIA", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A038"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ee87fbf4288762f38543651f5e92ab3b074976", "fields": {"nom_de_la_commune": "CAMPO", "libell_d_acheminement": "CAMPO", "code_postal": "20142", "coordonnees_gps": [41.9026734548, 9.00649807358], "code_commune_insee": "2A056"}, "geometry": {"type": "Point", "coordinates": [9.00649807358, 41.9026734548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5c8481793e1fa4c37ab318655f2036eff6e8b2", "fields": {"nom_de_la_commune": "CARGESE", "libell_d_acheminement": "CARGESE", "code_postal": "20130", "coordonnees_gps": [42.1544879939, 8.62641378113], "code_commune_insee": "2A065"}, "geometry": {"type": "Point", "coordinates": [8.62641378113, 42.1544879939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9167a0b429f53aea88655b63c6010eb2c4f17f", "fields": {"nom_de_la_commune": "CARGIACA", "libell_d_acheminement": "CARGIACA", "code_postal": "20164", "coordonnees_gps": [41.7320104087, 9.04140404782], "code_commune_insee": "2A066"}, "geometry": {"type": "Point", "coordinates": [9.04140404782, 41.7320104087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2611c10055802799f1468c8eedeea2e0d3fae1", "fields": {"nom_de_la_commune": "CASALABRIVA", "libell_d_acheminement": "CASALABRIVA", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A071"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d311662aa42905e6dd5172cb31c8766c2ea3f98c", "fields": {"nom_de_la_commune": "CORRANO", "libell_d_acheminement": "CORRANO", "code_postal": "20168", "coordonnees_gps": [41.8821937585, 9.07138118672], "code_commune_insee": "2A094"}, "geometry": {"type": "Point", "coordinates": [9.07138118672, 41.8821937585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20469e9e3e34edbfcd565aee90aec370d51dca3e", "fields": {"nom_de_la_commune": "COTI CHIAVARI", "libell_d_acheminement": "COTI CHIAVARI", "code_postal": "20138", "coordonnees_gps": [41.7690759494, 8.75247801887], "code_commune_insee": "2A098"}, "geometry": {"type": "Point", "coordinates": [8.75247801887, 41.7690759494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d82fa360b23c67fd13a4076e7c8e2e0d15a4e1", "fields": {"nom_de_la_commune": "CRISTINACCE", "libell_d_acheminement": "CRISTINACCE", "code_postal": "20126", "coordonnees_gps": [42.2751546292, 8.82859750608], "code_commune_insee": "2A100"}, "geometry": {"type": "Point", "coordinates": [8.82859750608, 42.2751546292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54333689cf0d45bdaa64976eba1ac1382990d3e", "fields": {"nom_de_la_commune": "GIUNCHETO", "libell_d_acheminement": "GIUNCHETO", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A127"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b620eeb0a0e42d646d8edc2effa00addefb0b3d3", "fields": {"nom_de_la_commune": "GROSSA", "libell_d_acheminement": "GROSSA", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A129"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1985ba44063ee60aff052d6193020f7e44e9847b", "fields": {"code_postal": "20166", "code_commune_insee": "2A130", "libell_d_acheminement": "GROSSETO PRUGNA", "ligne_5": "PORTICCIO", "nom_de_la_commune": "GROSSETO PRUGNA", "coordonnees_gps": [41.8437560104, 8.85889610104]}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9018853a7eddeace026d0a3abacae03a1e802dd8", "fields": {"nom_de_la_commune": "LECCI", "libell_d_acheminement": "LECCI", "code_postal": "20137", "coordonnees_gps": [41.6028867799, 9.2627396032], "code_commune_insee": "2A139"}, "geometry": {"type": "Point", "coordinates": [9.2627396032, 41.6028867799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2ace9c5903d2a9cec3fb802b2e13fe49336af5", "fields": {"nom_de_la_commune": "LOPIGNA", "libell_d_acheminement": "LOPIGNA", "code_postal": "20139", "coordonnees_gps": [42.0901856403, 8.85411271851], "code_commune_insee": "2A144"}, "geometry": {"type": "Point", "coordinates": [8.85411271851, 42.0901856403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e80ed85c6349180e5751dd838be02ea022dd3a", "fields": {"nom_de_la_commune": "LORETO DI TALLANO", "libell_d_acheminement": "LORETO DI TALLANO", "code_postal": "20165", "coordonnees_gps": [41.7000985242, 9.03162580074], "code_commune_insee": "2A146"}, "geometry": {"type": "Point", "coordinates": [9.03162580074, 41.7000985242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e4247d5191d391e510ec3d70968deb41d40bc1", "fields": {"nom_de_la_commune": "OCANA", "libell_d_acheminement": "OCANA", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A181"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a235d67e3c948feb2b14212ff4e478b153c3883c", "fields": {"nom_de_la_commune": "OLIVESE", "libell_d_acheminement": "OLIVESE", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A186"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e9b53489d2dd0b7b289d6d580e6c835c742d88", "fields": {"nom_de_la_commune": "OLMETO", "libell_d_acheminement": "OLMETO", "code_postal": "20113", "coordonnees_gps": [41.7122104572, 8.90500823174], "code_commune_insee": "2A189"}, "geometry": {"type": "Point", "coordinates": [8.90500823174, 41.7122104572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c26acee5241b0e28bdda429fb56880afc6bcde", "fields": {"code_postal": "20150", "code_commune_insee": "2A198", "libell_d_acheminement": "OTA", "ligne_5": "PORTO", "nom_de_la_commune": "OTA", "coordonnees_gps": [42.2552083617, 8.7336084267]}, "geometry": {"type": "Point", "coordinates": [8.7336084267, 42.2552083617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df043d21b467e38e6dd27d046f90159a979581c", "fields": {"nom_de_la_commune": "PIETROSELLA", "libell_d_acheminement": "PIETROSELLA", "code_postal": "20166", "coordonnees_gps": [41.8437560104, 8.85889610104], "code_commune_insee": "2A228"}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b361fc44927869aa63c12bdc7b6ccbf359d37b23", "fields": {"code_postal": "20160", "code_commune_insee": "2A240", "libell_d_acheminement": "POGGIOLO", "ligne_5": "GUAGNO LES BAINS", "nom_de_la_commune": "POGGIOLO", "coordonnees_gps": [42.1658822701, 8.82370475032]}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d550840d5ad1f6f9448e83bcf2fb2e2755b83d", "fields": {"nom_de_la_commune": "QUENZA", "libell_d_acheminement": "QUENZA", "code_postal": "20122", "coordonnees_gps": [41.8074031089, 9.20057614219], "code_commune_insee": "2A254"}, "geometry": {"type": "Point", "coordinates": [9.20057614219, 41.8074031089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f82a95f38e08a4d8e3bb0f19f812a0b080b425", "fields": {"nom_de_la_commune": "REZZA", "libell_d_acheminement": "REZZA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A259"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da43b0a3df294f4ad2398963eb1fa480d684d32", "fields": {"nom_de_la_commune": "SARROLA CARCOPINO", "libell_d_acheminement": "SARROLA CARCOPINO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A271"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6de66055e4d876565590006758a0a7427329de3", "fields": {"nom_de_la_commune": "SERRIERA", "libell_d_acheminement": "SERRIERA", "code_postal": "20147", "coordonnees_gps": [42.3264086022, 8.67199581743], "code_commune_insee": "2A279"}, "geometry": {"type": "Point", "coordinates": [8.67199581743, 42.3264086022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ba8f36cd85109442fcb615c1b43a4f8e9811b5", "fields": {"nom_de_la_commune": "SOLLACARO", "libell_d_acheminement": "SOLLACARO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A284"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607b84cc61e21af384e39680c532dd2934824c5b", "fields": {"nom_de_la_commune": "SORBOLLANO", "libell_d_acheminement": "SORBOLLANO", "code_postal": "20152", "coordonnees_gps": [41.7504467167, 9.11574610291], "code_commune_insee": "2A285"}, "geometry": {"type": "Point", "coordinates": [9.11574610291, 41.7504467167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293bdfd1e3811d5d8deab7727dbee01de7583ed1", "fields": {"nom_de_la_commune": "SAN GAVINO DI CARBINI", "libell_d_acheminement": "SAN GAVINO DI CARBINI", "code_postal": "20170", "coordonnees_gps": [41.663555071, 9.15818579459], "code_commune_insee": "2A300"}, "geometry": {"type": "Point", "coordinates": [9.15818579459, 41.663555071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710ea224590601b51a10bf64d83200039db7ce2e", "fields": {"nom_de_la_commune": "SANTA MARIA SICHE", "libell_d_acheminement": "SANTA MARIA SICHE", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A312"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbff3f41ef68b80f5e83a54650e094def8ec7728", "fields": {"nom_de_la_commune": "TAVERA", "libell_d_acheminement": "TAVERA", "code_postal": "20163", "coordonnees_gps": [42.0698449564, 9.01655653658], "code_commune_insee": "2A324"}, "geometry": {"type": "Point", "coordinates": [9.01655653658, 42.0698449564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b79c6f8937f28aa6c20ebd62d0e4dc366d1022f", "fields": {"nom_de_la_commune": "URBALACONE", "libell_d_acheminement": "URBALACONE", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A331"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d0f30a5977ecdda40c78df995ba59e23033ce0", "fields": {"code_postal": "20118", "code_commune_insee": "2A348", "libell_d_acheminement": "VICO", "ligne_5": "SAGONE", "nom_de_la_commune": "VICO", "coordonnees_gps": [42.1361535255, 8.73174812561]}, "geometry": {"type": "Point", "coordinates": [8.73174812561, 42.1361535255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb3ca7a5726809d35368a092277f94ae9056237", "fields": {"nom_de_la_commune": "ALANDO", "libell_d_acheminement": "ALANDO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B005"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f867e40b342a4147a94267a05c8cda9d0dca874", "fields": {"nom_de_la_commune": "ALERIA", "libell_d_acheminement": "ALERIA", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B009"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b135f306a1061ccfb4622ddc5f06fbb5fe2910", "fields": {"nom_de_la_commune": "AREGNO", "libell_d_acheminement": "AREGNO", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B020"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b5f49ccaca373f5145596c42d3d7c974943425", "fields": {"nom_de_la_commune": "BARBAGGIO", "libell_d_acheminement": "BARBAGGIO", "code_postal": "20253", "coordonnees_gps": [42.7087957082, 9.36671940301], "code_commune_insee": "2B029"}, "geometry": {"type": "Point", "coordinates": [9.36671940301, 42.7087957082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888fb440ba56dc49a11c1837bf848f1a1d50ccd5", "fields": {"nom_de_la_commune": "BELGODERE", "libell_d_acheminement": "BELGODERE", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B034"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099829e354ea159279bc0de4039d7f762891a9c2", "fields": {"code_postal": "20226", "code_commune_insee": "2B034", "libell_d_acheminement": "BELGODERE", "ligne_5": "LOZARI", "nom_de_la_commune": "BELGODERE", "coordonnees_gps": [42.6078256045, 9.04614705699]}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d642ab7bf034027363c477b405ced08690eb0076", "fields": {"nom_de_la_commune": "BRANDO", "libell_d_acheminement": "BRANDO", "code_postal": "20222", "coordonnees_gps": [42.7794898116, 9.45079121274], "code_commune_insee": "2B043"}, "geometry": {"type": "Point", "coordinates": [9.45079121274, 42.7794898116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8483f4623d4018aaab48d80f75faea2a07aa4407", "fields": {"code_postal": "20222", "code_commune_insee": "2B043", "libell_d_acheminement": "BRANDO", "ligne_5": "ERBALUNGA", "nom_de_la_commune": "BRANDO", "coordonnees_gps": [42.7794898116, 9.45079121274]}, "geometry": {"type": "Point", "coordinates": [9.45079121274, 42.7794898116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295271ef45744a8ab592cf4b6562a53c283cb843", "fields": {"nom_de_la_commune": "CANARI", "libell_d_acheminement": "CANARI", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B058"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d6d61e76d7d32bc33f66d7f66c5a205607ab62", "fields": {"nom_de_la_commune": "CARPINETO", "libell_d_acheminement": "CARPINETO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B067"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0d60e007aabeaf0580ad2af349d17ff8dc22ac", "fields": {"nom_de_la_commune": "CARTICASI", "libell_d_acheminement": "CARTICASI", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B068"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a86564087f564d9b280568b9c4b49a864226c8", "fields": {"nom_de_la_commune": "CASTELLO DI ROSTINO", "libell_d_acheminement": "CASTELLO DI ROSTINO", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B079"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805d4f07b6b45bc2dd116a08467a56f13793daa3", "fields": {"nom_de_la_commune": "CORBARA", "libell_d_acheminement": "CORBARA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B093"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a977edf803b9956734753bb0fd713420b31d91", "fields": {"nom_de_la_commune": "CROCICCHIA", "libell_d_acheminement": "CROCICCHIA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B102"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827b0cb69e2e20671a67dec22a72a5c235a44b8b", "fields": {"nom_de_la_commune": "FELCE", "libell_d_acheminement": "FELCE", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B111"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e9daf0d645f8de626e00865a98d099172e43ec", "fields": {"nom_de_la_commune": "FICAJA", "libell_d_acheminement": "FICAJA", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B113"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6c090782ebb6f383bf9489eb9ae22e84b5b089", "fields": {"nom_de_la_commune": "GAVIGNANO", "libell_d_acheminement": "GAVIGNANO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B122"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41719dfee3e8312ec0c416b95d35ba34abea5324", "fields": {"nom_de_la_commune": "LENTO", "libell_d_acheminement": "LENTO", "code_postal": "20252", "coordonnees_gps": [42.5302771841, 9.28449262062], "code_commune_insee": "2B140"}, "geometry": {"type": "Point", "coordinates": [9.28449262062, 42.5302771841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558e06acf9a269650e6b57c0c4456f5959d3b852", "fields": {"nom_de_la_commune": "LINGUIZZETTA", "libell_d_acheminement": "LINGUIZZETTA", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B143"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8414dfd3de1601446d84e33396df9944417c3e94", "fields": {"code_postal": "20290", "code_commune_insee": "2B148", "libell_d_acheminement": "LUCCIANA", "ligne_5": "PORETTA", "nom_de_la_commune": "LUCCIANA", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be614df4c98d1ea0ab160b97ab67212e59a06f6e", "fields": {"nom_de_la_commune": "MONCALE", "libell_d_acheminement": "MONCALE", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B165"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de84f1725f51b668453f4b900f1112f129e24da5", "fields": {"nom_de_la_commune": "MONTEGROSSO", "libell_d_acheminement": "MONTEGROSSO", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B167"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c450dc5c94e926c4856a891449f8ba1aa6a040d9", "fields": {"code_postal": "20218", "code_commune_insee": "2B169", "libell_d_acheminement": "MOROSAGLIA", "ligne_5": "PONTE LECCIA", "nom_de_la_commune": "MOROSAGLIA", "coordonnees_gps": [42.4947584139, 9.16559153423]}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de142cb6195fe1af14caa3dad2e9bf4dc159c2d", "fields": {"nom_de_la_commune": "MORSIGLIA", "libell_d_acheminement": "MORSIGLIA", "code_postal": "20238", "coordonnees_gps": [42.948308645, 9.37005973], "code_commune_insee": "2B170"}, "geometry": {"type": "Point", "coordinates": [9.37005973, 42.948308645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c4101cd5737238284d8a62c42d02065a6d687f", "fields": {"nom_de_la_commune": "MURACCIOLE", "libell_d_acheminement": "MURACCIOLE", "code_postal": "20219", "coordonnees_gps": [42.1546750022, 9.13106391385], "code_commune_insee": "2B171"}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209de1c0e2b8b86c8a107d235a8c0d1e3513d1a9", "fields": {"nom_de_la_commune": "MURO", "libell_d_acheminement": "MURO", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B173"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82dc6fda2fea6e362eebafd3b732afd5e3d356c1", "fields": {"nom_de_la_commune": "NOVALE", "libell_d_acheminement": "NOVALE", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B179"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186c220802f24940e1616bf684ca62eeaf14a1f3", "fields": {"nom_de_la_commune": "OCCHIATANA", "libell_d_acheminement": "OCCHIATANA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B182"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2eab8ea33c28108337c2e7eee76faf7fa5cc62", "fields": {"nom_de_la_commune": "OGLIASTRO", "libell_d_acheminement": "OGLIASTRO", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B183"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17093602e3bce97fe9eddf9cd61f4cb9a517c22", "fields": {"nom_de_la_commune": "OLMETA DI CAPOCORSO", "libell_d_acheminement": "OLMETA DI CAPOCORSO", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B187"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc0dcbed546a788959eebccc57d5a3ef54b8271e", "fields": {"nom_de_la_commune": "OLMO", "libell_d_acheminement": "OLMO", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B192"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242cc3567077bce73edfe2d3af0f04eec4e3f002", "fields": {"nom_de_la_commune": "PARATA", "libell_d_acheminement": "PARATA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B202"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ae51d9cff587c02ae93555bc301a215ef06826", "fields": {"nom_de_la_commune": "PENTA ACQUATELLA", "libell_d_acheminement": "PENTA ACQUATELLA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B206"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0024a343dbff3f6f5ef0999459b85885f0696f6", "fields": {"nom_de_la_commune": "PENTA DI CASINCA", "libell_d_acheminement": "PENTA DI CASINCA", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B207"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7f11ef2ce73e119860ca07ebb3133d8adba7815", "fields": {"nom_de_la_commune": "PIOBETTA", "libell_d_acheminement": "PIOBETTA", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B234"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6359d1c4ea9f6d3143d4fcf5b665576d8f180129", "fields": {"nom_de_la_commune": "POGGIO DI VENACO", "libell_d_acheminement": "POGGIO DI VENACO", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B238"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2e2d1b2817a69ae2d24e59d9ede6e7533ae679", "fields": {"nom_de_la_commune": "PORRI", "libell_d_acheminement": "PORRI", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B245"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94b9578a238745dce2530f567c50408ae4b1bbf5", "fields": {"nom_de_la_commune": "PRUNO", "libell_d_acheminement": "PRUNO", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B252"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f89c253cb7e884ca318038f720a2d759ef61217", "fields": {"nom_de_la_commune": "RAPAGGIO", "libell_d_acheminement": "RAPAGGIO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B256"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305b0da471b5e69eadbbf1910be6c79037a36f1d", "fields": {"nom_de_la_commune": "RIVENTOSA", "libell_d_acheminement": "RIVENTOSA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B260"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3076c0e2adfe577cbd706a8515bf5d58b8018e64", "fields": {"code_postal": "20248", "code_commune_insee": "2B261", "libell_d_acheminement": "ROGLIANO", "ligne_5": "MACINAGGIO", "nom_de_la_commune": "ROGLIANO", "coordonnees_gps": [42.9672830665, 9.42945630303]}, "geometry": {"type": "Point", "coordinates": [9.42945630303, 42.9672830665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3061339bf91c40d8a067e58565a49cf636e89c00", "fields": {"nom_de_la_commune": "SALICETO", "libell_d_acheminement": "SALICETO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B267"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b08902fc99103bd4be223f4efe4ab191847677d", "fields": {"nom_de_la_commune": "SOLARO", "libell_d_acheminement": "SOLARO", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B283"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57319a3cb434471f40475f075fda73a7df94740", "fields": {"nom_de_la_commune": "SORIO", "libell_d_acheminement": "SORIO", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B287"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "202ef5686273dde82d51ae3ebd606f49d4f87ae3", "fields": {"nom_de_la_commune": "SAN MARTINO DI LOTA", "libell_d_acheminement": "SAN MARTINO DI LOTA", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B305"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b303db67a1285bca16e5473d32b9de35729f90", "fields": {"nom_de_la_commune": "SANTO PIETRO DI TENDA", "libell_d_acheminement": "SANTO PIETRO DI TENDA", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B314"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5b81100c99485b655c6076861c5c4fdf459c93", "fields": {"code_postal": "20230", "code_commune_insee": "2B319", "libell_d_acheminement": "TALASANI", "ligne_5": "FIGARETTO", "nom_de_la_commune": "TALASANI", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3c78ff9077df2684138937bb5cf1ef480a1e31", "fields": {"code_postal": "20270", "code_commune_insee": "2B320", "libell_d_acheminement": "TALLONE", "ligne_5": "PIANICCIA", "nom_de_la_commune": "TALLONE", "coordonnees_gps": [42.1585517957, 9.43977225577]}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb8a87d8ddc2b1708274965ee33b4ac153114be", "fields": {"nom_de_la_commune": "PARGNY LES BOIS", "libell_d_acheminement": "PARGNY LES BOIS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02591"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44004ed6b35e64c1ea6a7b43778446756c3f5bb3", "fields": {"nom_de_la_commune": "PONT ST MARD", "libell_d_acheminement": "PONT ST MARD", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02616"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7b4fcad26ca5009c934ac667e0a3dcb7932ae2", "fields": {"nom_de_la_commune": "PARPEVILLE", "libell_d_acheminement": "PARPEVILLE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02592"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e1344651dcab79807916efc50371769ffa083e", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02610"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b636c7dbfa19f9bb8d8ad37662becfc7dab3303", "fields": {"nom_de_la_commune": "PREMONT", "libell_d_acheminement": "PREMONT", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02618"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537b9fb4d10d7424e3180f7929661f9aabfe0c11", "fields": {"nom_de_la_commune": "QUIERZY", "libell_d_acheminement": "QUIERZY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02631"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd2c45d3fd93f9c0af1aed888aac1c3e7f42efd", "fields": {"nom_de_la_commune": "PONTRU", "libell_d_acheminement": "PONTRU", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02614"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bb42df6ea87757cbfe26c9b91aa28f9c33813a", "fields": {"nom_de_la_commune": "REUILLY SAUVIGNY", "libell_d_acheminement": "REUILLY SAUVIGNY", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02645"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da247bad33fb31a80f362b979a29c967d2eb0ad0", "fields": {"nom_de_la_commune": "RESSONS LE LONG", "libell_d_acheminement": "RESSONS LE LONG", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02643"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ccb865ab6ffde90d55bcc69eaa3fa19bdb34b3", "fields": {"nom_de_la_commune": "RAILLIMONT", "libell_d_acheminement": "RAILLIMONT", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02634"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c761a558e125d3bfcff54495725ecb9d84843ee", "fields": {"nom_de_la_commune": "RONCHERES", "libell_d_acheminement": "RONCHERES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02655"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e454c8d30bf80f9f01d4773eddfc03a4bcd3748b", "fields": {"nom_de_la_commune": "RAMICOURT", "libell_d_acheminement": "RAMICOURT", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02635"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61671e6d868d7bf67b179d7b4216ce6a4bb65015", "fields": {"nom_de_la_commune": "RIBEMONT", "libell_d_acheminement": "RIBEMONT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02648"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71d5b698f042cd70f494a285b6701af6b363d4a", "fields": {"nom_de_la_commune": "ROUVROY", "libell_d_acheminement": "ROUVROY", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02659"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8e3cee5641b08239f0a677addff712f3104938", "fields": {"nom_de_la_commune": "ROMERY", "libell_d_acheminement": "ROMERY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02654"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f36b29acc1e20dca5590f46b55bcbc1cc7939cc5", "fields": {"nom_de_la_commune": "ROGNY", "libell_d_acheminement": "ROGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02652"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521248878849cee876ef7c77cdca994758180327", "fields": {"nom_de_la_commune": "ROUCY", "libell_d_acheminement": "ROUCY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02656"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15fbb5ffb5ead87cc97af1b20446448316e6d59", "fields": {"nom_de_la_commune": "CREUZIER LE NEUF", "libell_d_acheminement": "CREUZIER LE NEUF", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03093"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ea425ee29eb2d0d6e0cac8bf2cb523341f8429", "fields": {"nom_de_la_commune": "CRESSANGES", "libell_d_acheminement": "CRESSANGES", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03092"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae7fb198256a1e0cf782929ce1bfaa6fbac3da9", "fields": {"nom_de_la_commune": "FRANCHESSE", "libell_d_acheminement": "FRANCHESSE", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03117"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fad6d56d552dccc05664636b02348a1ec8cc241", "fields": {"nom_de_la_commune": "FOURILLES", "libell_d_acheminement": "FOURILLES", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03116"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebf3299e55bbc8139e41165e823addd85ecffb8", "fields": {"nom_de_la_commune": "CHEZELLE", "libell_d_acheminement": "CHEZELLE", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03075"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5ee1ea4687f244c30caa7f91df4ad6cac5d2b8d", "fields": {"nom_de_la_commune": "COUZON", "libell_d_acheminement": "COUZON", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03090"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03cb1bbdf5f3af328f7094a0dc85a1b0e57b965", "fields": {"nom_de_la_commune": "CUSSET", "libell_d_acheminement": "CUSSET", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03095"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e666b38bd7e6dbc75d6731b98dd5f1025ae7862", "fields": {"nom_de_la_commune": "CHEZY", "libell_d_acheminement": "CHEZY", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03076"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23be747d5f8e522d2374232a5d953ce86bb63123", "fields": {"code_postal": "04510", "code_commune_insee": "04046", "libell_d_acheminement": "LE CHAFFAUT ST JURSON", "ligne_5": "ESPINOUSE", "nom_de_la_commune": "LE CHAFFAUT ST JURSON", "coordonnees_gps": [44.0399432995, 6.10204866093]}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab16cec4998af236e0a8bb400c8c90a4a611d10", "fields": {"nom_de_la_commune": "LA CONDAMINE CHATELARD", "libell_d_acheminement": "LA CONDAMINE CHATELARD", "code_postal": "04530", "coordonnees_gps": [44.529721781, 6.79644418503], "code_commune_insee": "04062"}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52083d326122f3964d29392133d22bf7484bbc55", "fields": {"nom_de_la_commune": "BARCELONNETTE", "libell_d_acheminement": "BARCELONNETTE", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04019"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e16f5f9961cadf5d19f25b24c3074d9fc83829", "fields": {"nom_de_la_commune": "LA BRILLANNE", "libell_d_acheminement": "LA BRILLANNE", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04034"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014a9c076d4f3c0a5eaaeec3ef18fd6d4191f77e", "fields": {"nom_de_la_commune": "BELLAFFAIRE", "libell_d_acheminement": "BELLAFFAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04026"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ff7056ac7e56ac8c654a524eea05889f88b66d", "fields": {"nom_de_la_commune": "BRAS D ASSE", "libell_d_acheminement": "BRAS D ASSE", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04031"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e20e4940c5372a3b05bfc844da9f8ea3e634fed", "fields": {"nom_de_la_commune": "LE VILHAIN", "libell_d_acheminement": "LE VILHAIN", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03313"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c8309e70abcb247a5e2a3990cd1cbeb09ed7e0", "fields": {"nom_de_la_commune": "BEYNES", "libell_d_acheminement": "BEYNES", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04028"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "616e52f4fe64307a18028794272bb60c4b26c90b", "fields": {"nom_de_la_commune": "ALLOS", "libell_d_acheminement": "ALLOS", "code_postal": "04260", "coordonnees_gps": [44.2616156328, 6.62661023596], "code_commune_insee": "04006"}, "geometry": {"type": "Point", "coordinates": [6.62661023596, 44.2616156328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f17e0759788844c0d9c393a3da35382f2b30b3", "fields": {"nom_de_la_commune": "ANNOT", "libell_d_acheminement": "ANNOT", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04008"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66eb585d3de68e96ec79c5d1790d73a3e2d173a4", "fields": {"nom_de_la_commune": "MONTEIGNET SUR L ANDELOT", "libell_d_acheminement": "MONTEIGNET SUR L ANDELOT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03182"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3593e0f31981dfc59ee498ca884b6d2338170063", "fields": {"nom_de_la_commune": "PARAY SOUS BRIAILLES", "libell_d_acheminement": "PARAY SOUS BRIAILLES", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03204"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c794d73f0a024f4040e499e43508485d9a714fd", "fields": {"nom_de_la_commune": "MONTAIGUET EN FOREZ", "libell_d_acheminement": "MONTAIGUET EN FOREZ", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03178"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e71f222d05c4a2fbc2ca11a81538f21e67e9922", "fields": {"nom_de_la_commune": "MONTBEUGNY", "libell_d_acheminement": "MONTBEUGNY", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03180"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f827c610c1cf0c9a4a06ba144a0a6420e6647627", "fields": {"nom_de_la_commune": "MALICORNE", "libell_d_acheminement": "MALICORNE", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03159"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c8f42bc31bea87a9b49ce7fd2344cdb0c9f1a2", "fields": {"nom_de_la_commune": "MONTOLDRE", "libell_d_acheminement": "MONTOLDRE", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03187"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26ffd2e969b4e6926876d7a3134677e938b446e", "fields": {"nom_de_la_commune": "MONTLUCON", "libell_d_acheminement": "MONTLUCON", "code_postal": "03100", "coordonnees_gps": [46.3299080468, 2.60294961501], "code_commune_insee": "03185"}, "geometry": {"type": "Point", "coordinates": [2.60294961501, 46.3299080468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab0920abe71422a0ae1888f7ac661b2aa57746cb", "fields": {"nom_de_la_commune": "MONTVICQ", "libell_d_acheminement": "MONTVICQ", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03189"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df993c7c67a7d32dacddded6dd941073112774b4", "fields": {"nom_de_la_commune": "MESPLES", "libell_d_acheminement": "MESPLES", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03172"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c25ba691afcb1208d496125f0d1ee01b3bbae4", "fields": {"nom_de_la_commune": "NADES", "libell_d_acheminement": "NADES", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03192"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee53a282c9997b106a07c3b94f48763207a78552", "fields": {"nom_de_la_commune": "ST BONNET DE ROCHEFORT", "libell_d_acheminement": "ST BONNET DE ROCHEFORT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03220"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "739016c46a5dde408639a7e6b0c5e9a6d66a5165", "fields": {"nom_de_la_commune": "ST BONNET TRONCAIS", "libell_d_acheminement": "ST BONNET TRONCAIS", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03221"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4cd8c0be5f4cf3351c0b88cc398d2b10aa3e8d", "fields": {"nom_de_la_commune": "ST ETIENNE DE VICQ", "libell_d_acheminement": "ST ETIENNE DE VICQ", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03230"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1bb1cd43519a99d597720e47319b797bffc7daa", "fields": {"nom_de_la_commune": "ST DIDIER LA FORET", "libell_d_acheminement": "ST DIDIER LA FORET", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03227"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbb57a4dad18fd68b9d69472a4244599e13d8356", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03223"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c862e28245b2f57bf83beb0aad690a06b363a0fd", "fields": {"nom_de_la_commune": "QUINSSAINES", "libell_d_acheminement": "QUINSSAINES", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03212"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351574fbc670d2b361b1bfb524e107073ccc6c3a", "fields": {"nom_de_la_commune": "PREMILHAT", "libell_d_acheminement": "PREMILHAT", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03211"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc75bb37aa5a4aa2b28733313f78c9e0b3d1ea52", "fields": {"nom_de_la_commune": "RONGERES", "libell_d_acheminement": "RONGERES", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03215"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bf842866607ae99979b7d3c62478c77cbd670e", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03205"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606319477327e45e9e4e072364680138371dcddc", "fields": {"nom_de_la_commune": "REUGNY", "libell_d_acheminement": "REUGNY", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03213"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "985717e36cb3e5b9eb67cff4c06195c260441abc", "fields": {"nom_de_la_commune": "ST MARCEL EN MURAT", "libell_d_acheminement": "ST MARCEL EN MURAT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03243"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f8a3fac8f4516d36977599b89027fcb639df7c", "fields": {"nom_de_la_commune": "TEILLET ARGENTY", "libell_d_acheminement": "TEILLET ARGENTY", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03279"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4be7c60d1e8727dbfd3605c70304182cf50487f", "fields": {"nom_de_la_commune": "ST PLAISIR", "libell_d_acheminement": "ST PLAISIR", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03251"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3971397b734124143c3d89851b441feeee84ce4", "fields": {"nom_de_la_commune": "ST SAUVIER", "libell_d_acheminement": "ST SAUVIER", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03259"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6490b5f5027a084f4e853617b2754510f5c66ed6", "fields": {"nom_de_la_commune": "SAUVAGNY", "libell_d_acheminement": "SAUVAGNY", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03269"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1979d825f662ee3586b6a88c9bc5d36faec181", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03232"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb84eb2f9ad2907ff539fa01ca1fd01855c61b2", "fields": {"nom_de_la_commune": "SAULCET", "libell_d_acheminement": "SAULCET", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03267"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553a52a3d09462e96e09312a634a2f069cfb99f3", "fields": {"nom_de_la_commune": "ST VOIR", "libell_d_acheminement": "ST VOIR", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03263"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1c00f91a8fa42ba2c634b41d656be41ff7288c3", "fields": {"nom_de_la_commune": "SORBIER", "libell_d_acheminement": "SORBIER", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03274"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1157b78c58f2ff3c61fc28d07611cf5a4fb3cc", "fields": {"nom_de_la_commune": "TERJAT", "libell_d_acheminement": "TERJAT", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03280"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62d9e1665c3a0a17d4f7e7c409bf604abceac65", "fields": {"nom_de_la_commune": "VERNEUIL EN BOURBONNAIS", "libell_d_acheminement": "VERNEUIL EN BOURBONNAIS", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03307"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d012d1487bbb4530f91b6cac3d39cbab542bbdb", "fields": {"nom_de_la_commune": "THENEUILLE", "libell_d_acheminement": "THENEUILLE", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03282"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e407222c43b4734a1735dce3cf8e0125e29a58", "fields": {"nom_de_la_commune": "TREZELLES", "libell_d_acheminement": "TREZELLES", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03291"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c299811e591e0e371c432420038ba31dc127afa0", "fields": {"nom_de_la_commune": "VERNUSSE", "libell_d_acheminement": "VERNUSSE", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03308"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4671405cf6a0abe4aadc015fa30e066bba5ca5", "fields": {"nom_de_la_commune": "TREIGNAT", "libell_d_acheminement": "TREIGNAT", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03288"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b02b58ae93a05cdefc790f7f9a44baee8551c8", "fields": {"nom_de_la_commune": "VERNEIX", "libell_d_acheminement": "VERNEIX", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03305"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c1b8e891a4b341a26b99d2c534f388a5f22e90", "fields": {"nom_de_la_commune": "TREVOL", "libell_d_acheminement": "TREVOL", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03290"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a390b906f3e1c0687ca0e8bb9315818aaea4fd5", "fields": {"nom_de_la_commune": "VEAUCE", "libell_d_acheminement": "VEAUCE", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03302"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af35639c4242e3cce57a801b06b0dbd25ac18f3", "fields": {"nom_de_la_commune": "VICHY", "libell_d_acheminement": "VICHY", "code_postal": "03200", "coordonnees_gps": [46.1075083503, 3.45428306112], "code_commune_insee": "03310"}, "geometry": {"type": "Point", "coordinates": [3.45428306112, 46.1075083503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9474f53551e5d0c3363aaf06423fd3e41324af0e", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03301"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7b288850efc09e964f4668d62fb436362faa6f", "fields": {"nom_de_la_commune": "CURBANS", "libell_d_acheminement": "CURBANS", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "04066"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb388d65c1e0029c27fee92c49c32d5ffc4f1b72", "fields": {"nom_de_la_commune": "CRUIS", "libell_d_acheminement": "CRUIS", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04065"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ffb4f4dce4b0d6d3f9f2eea9171e5a6dccffba", "fields": {"nom_de_la_commune": "DRAIX", "libell_d_acheminement": "DRAIX", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04072"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cebb2f0e83dd5c96059f1b6f7a43741294a55396", "fields": {"code_postal": "04200", "code_commune_insee": "04075", "libell_d_acheminement": "ENTREPIERRES", "ligne_5": "ST SYMPHORIEN", "nom_de_la_commune": "ENTREPIERRES", "coordonnees_gps": [44.2004441719, 5.9040305038]}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9c76e987966d7b940b2b44053f39994bab61e9", "fields": {"code_postal": "04200", "code_commune_insee": "04075", "libell_d_acheminement": "ENTREPIERRES", "ligne_5": "VILHOSC", "nom_de_la_commune": "ENTREPIERRES", "coordonnees_gps": [44.2004441719, 5.9040305038]}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672ffe552b6898d2a16046eb54afb0acfba19806", "fields": {"code_postal": "04510", "code_commune_insee": "04108", "libell_d_acheminement": "MALIJAI", "ligne_5": "CHENERILLES", "nom_de_la_commune": "MALIJAI", "coordonnees_gps": [44.0399432995, 6.10204866093]}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3b484c12c276349111f6c5eb7991f2bc5fcfa0", "fields": {"nom_de_la_commune": "ESPARRON DE VERDON", "libell_d_acheminement": "ESPARRON DE VERDON", "code_postal": "04800", "coordonnees_gps": [43.7622916617, 5.91644609387], "code_commune_insee": "04081"}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69dc9612b770d5d20530b5fab8d51a39cc9d3c6a", "fields": {"nom_de_la_commune": "ENCHASTRAYES", "libell_d_acheminement": "ENCHASTRAYES", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04073"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5d3783fedf86cfd411374c8508bbb5a7b5a438", "fields": {"nom_de_la_commune": "L HOSPITALET", "libell_d_acheminement": "L HOSPITALET", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04095"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbc644071bb306e76cb904d4ce7ecbc3af16195", "fields": {"nom_de_la_commune": "FONTIENNE", "libell_d_acheminement": "FONTIENNE", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04087"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cecad35615317fe6cfba377bb5f7b9908682d0a", "fields": {"nom_de_la_commune": "LARDIERS", "libell_d_acheminement": "LARDIERS", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04101"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f015e80d6dd895ecc562512cefc8b585821d16", "fields": {"nom_de_la_commune": "L ARGENTIERE LA BESSEE", "libell_d_acheminement": "L ARGENTIERE LA BESSEE", "code_postal": "05120", "coordonnees_gps": [44.8094841001, 6.52475602144], "code_commune_insee": "05006"}, "geometry": {"type": "Point", "coordinates": [6.52475602144, 44.8094841001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347807b16f479854bbf78fcdfee5cb44179056bc", "fields": {"nom_de_la_commune": "LA BATIE MONTSALEON", "libell_d_acheminement": "LA BATIE MONTSALEON", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05016"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6478ebbe8f70262efb1ca195b58e5b5a6eb0931e", "fields": {"nom_de_la_commune": "FURMEYER", "libell_d_acheminement": "FURMEYER", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05060"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468c87f23a91d87d350e26d5fd779c5b6508db25", "fields": {"nom_de_la_commune": "BRIANCON", "libell_d_acheminement": "BRIANCON", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05023"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f962d29f17e11781860d6d15bbbac199f9addd7b", "fields": {"nom_de_la_commune": "BARATIER", "libell_d_acheminement": "BARATIER", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05012"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3298df7193e88be09131ba1f06d81bf3447fd1c4", "fields": {"nom_de_la_commune": "JARJAYES", "libell_d_acheminement": "JARJAYES", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05068"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce63f0b1fe3d155a8071d3b9b8e3adc55e5d902", "fields": {"nom_de_la_commune": "EOURRES", "libell_d_acheminement": "EOURRES", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05047"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9a07448f6ca95d7292eb0720ecb989fd9ece40", "fields": {"nom_de_la_commune": "ABRIES", "libell_d_acheminement": "ABRIES", "code_postal": "05460", "coordonnees_gps": [44.7747049241, 6.96776772287], "code_commune_insee": "05001"}, "geometry": {"type": "Point", "coordinates": [6.96776772287, 44.7747049241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a51889b08b1db32786055191be681dcd61f10f3", "fields": {"nom_de_la_commune": "LAYE", "libell_d_acheminement": "LAYE", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05072"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef6c9081cdd75c356e759f6134526c2d9822b090", "fields": {"code_postal": "04120", "code_commune_insee": "04144", "libell_d_acheminement": "LA PALUD SUR VERDON", "ligne_5": "CHATEAUNEUF LES MOUSTIERS", "nom_de_la_commune": "LA PALUD SUR VERDON", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b071cfaa00f4e62c8ea54ec8f7fd354de1fb4c9c", "fields": {"code_postal": "04500", "code_commune_insee": "04124", "libell_d_acheminement": "MONTAGNAC MONTPEZAT", "ligne_5": "MONTPEZAT", "nom_de_la_commune": "MONTAGNAC MONTPEZAT", "coordonnees_gps": [43.779502795, 6.08235734615]}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e65a0b79d4ba2318f4fb1db7f1af3ed1c3e19f5", "fields": {"nom_de_la_commune": "MALLEFOUGASSE AUGES", "libell_d_acheminement": "MALLEFOUGASSE AUGES", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04109"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aef7f02e52783a93b38e29575dd40cdba9f1b12", "fields": {"nom_de_la_commune": "MOUSTIERS STE MARIE", "libell_d_acheminement": "MOUSTIERS STE MARIE", "code_postal": "04360", "coordonnees_gps": [43.8382123386, 6.22822943235], "code_commune_insee": "04135"}, "geometry": {"type": "Point", "coordinates": [6.22822943235, 43.8382123386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e79eb27ac5f5d280189c8a8789473e045ab5df9", "fields": {"nom_de_la_commune": "PIERREVERT", "libell_d_acheminement": "PIERREVERT", "code_postal": "04860", "coordonnees_gps": [43.8067613023, 5.72268377281], "code_commune_insee": "04152"}, "geometry": {"type": "Point", "coordinates": [5.72268377281, 43.8067613023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2872bc10480f9d2d49a7bf480b35b9b5c3dfdc27", "fields": {"nom_de_la_commune": "LA ROCHENARD", "libell_d_acheminement": "LA ROCHENARD", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79229"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d482cb87fabccac1d8b1aab69ee5f0e56745769", "fields": {"nom_de_la_commune": "ST AUBIN LE CLOUD", "libell_d_acheminement": "ST AUBIN LE CLOUD", "code_postal": "79450", "coordonnees_gps": [46.6633315069, -0.348872972345], "code_commune_insee": "79239"}, "geometry": {"type": "Point", "coordinates": [-0.348872972345, 46.6633315069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3eb171d4cb4ff2e708a1c642b393742599138f", "fields": {"nom_de_la_commune": "ST COUTANT", "libell_d_acheminement": "ST COUTANT", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79243"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98850397708025b4504da030ed3b88a187b10190", "fields": {"nom_de_la_commune": "STE EANNE", "libell_d_acheminement": "STE EANNE", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79246"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd3a9828988ed613095b9d0f900172be00735ec", "fields": {"nom_de_la_commune": "ST GENARD", "libell_d_acheminement": "ST GENARD", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79251"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a27dd9622e178ad5211caeb3f0a2ed572812883", "fields": {"nom_de_la_commune": "ST JACQUES DE THOUARS", "libell_d_acheminement": "ST JACQUES DE THOUARS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79258"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4fb23dce1c8cf686804665a462f68ece99ef732", "fields": {"nom_de_la_commune": "ST LAURS", "libell_d_acheminement": "ST LAURS", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79263"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72ef1ce786517759dd88e5f2d6b247a3c1f262e", "fields": {"code_postal": "79500", "code_commune_insee": "79264", "libell_d_acheminement": "ST LEGER DE LA MARTINIERE", "ligne_5": "L ENCLAVE DE LA MARTINIERE", "nom_de_la_commune": "ST LEGER DE LA MARTINIERE", "coordonnees_gps": [46.2096053952, -0.119503446916]}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d61348351efd19e0d872e48235e0dfcb649b52", "fields": {"code_postal": "79150", "code_commune_insee": "79280", "libell_d_acheminement": "ST MAURICE ETUSSON", "ligne_5": "ETUSSON", "nom_de_la_commune": "ST MAURICE ETUSSON", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620542f6ace38b7444df55d3137de8aa4c4a7cef", "fields": {"nom_de_la_commune": "ST PARDOUX", "libell_d_acheminement": "ST PARDOUX", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79285"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990a09764d4dff9a9a7a39f5455792c90a34c3d5", "fields": {"nom_de_la_commune": "ST PAUL EN GATINE", "libell_d_acheminement": "ST PAUL EN GATINE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79286"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac55c618b91b82a3bb21af92841c94f90f7d5324", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79298"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce5644d6a06fd032edff3853bcb8e6afc28d778", "fields": {"nom_de_la_commune": "ST VARENT", "libell_d_acheminement": "ST VARENT", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79299"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115fe3b0d72f3b3838ef9760a87d3609c32e6a5c", "fields": {"nom_de_la_commune": "ST VINCENT LA CHATRE", "libell_d_acheminement": "ST VINCENT LA CHATRE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79301"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9243890622ba0e5d1355b55a1a935b7f65e05a", "fields": {"nom_de_la_commune": "SAUZE VAUSSAIS", "libell_d_acheminement": "SAUZE VAUSSAIS", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79307"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd132f9f204a8b39bb1a67b191c160d9805e722", "fields": {"nom_de_la_commune": "SECONDIGNE SUR BELLE", "libell_d_acheminement": "SECONDIGNE SUR BELLE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79310"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd52439c3fcc56d35d31012a11db747f8c61f2f", "fields": {"nom_de_la_commune": "SOUVIGNE", "libell_d_acheminement": "SOUVIGNE", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79319"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5365359ce38de5d10d6d83a2a94c01e0c9f31ac8", "fields": {"nom_de_la_commune": "VASLES", "libell_d_acheminement": "VASLES", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79339"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd2ede796758544ae637857ef4eaf5f045e67c0", "fields": {"nom_de_la_commune": "VAUSSEROUX", "libell_d_acheminement": "VAUSSEROUX", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79340"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097cac4befe746cd3780732fbb0dc112b0d79036", "fields": {"nom_de_la_commune": "ACHEUX EN AMIENOIS", "libell_d_acheminement": "ACHEUX EN AMIENOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80003"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe428937a786ced8543d4541ddcbfd53c71cfe0e", "fields": {"nom_de_la_commune": "AGENVILLERS", "libell_d_acheminement": "AGENVILLERS", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80006"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1190c1a8bece8adea5e2ec3d67b123841865ba", "fields": {"nom_de_la_commune": "AILLY LE HAUT CLOCHER", "libell_d_acheminement": "AILLY LE HAUT CLOCHER", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80009"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40271e35b0869a83a577110034a56d7815e2bf4f", "fields": {"nom_de_la_commune": "AILLY SUR NOYE", "libell_d_acheminement": "AILLY SUR NOYE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80010"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720421a27bc782c8d4a163b4d329551c64542792", "fields": {"nom_de_la_commune": "AILLY SUR SOMME", "libell_d_acheminement": "AILLY SUR SOMME", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80011"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6c2d50a863b2d0f8411d97d77db9b05ec14760", "fields": {"nom_de_la_commune": "ALLERY", "libell_d_acheminement": "ALLERY", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80019"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89049c538226ec382698752b2a5aba6198f745f", "fields": {"nom_de_la_commune": "AMIENS", "libell_d_acheminement": "AMIENS", "code_postal": "80000", "coordonnees_gps": [49.9004650343, 2.29084588963], "code_commune_insee": "80021"}, "geometry": {"type": "Point", "coordinates": [2.29084588963, 49.9004650343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7c8c6b94f593ddeef31d2d9ce3ea0b802193ca", "fields": {"nom_de_la_commune": "ARGOEUVES", "libell_d_acheminement": "ARGOEUVES", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80024"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97f5f1555fddddb91b3ba948a84f2c51ba9c60a", "fields": {"nom_de_la_commune": "ARGUEL", "libell_d_acheminement": "ARGUEL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80026"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8cc867c64a34649ba7a7631d912f6ace679200", "fields": {"nom_de_la_commune": "ARVILLERS", "libell_d_acheminement": "ARVILLERS", "code_postal": "80910", "coordonnees_gps": [49.7367812704, 2.64925549457], "code_commune_insee": "80031"}, "geometry": {"type": "Point", "coordinates": [2.64925549457, 49.7367812704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d93a1c1cdacb4b8b2efaba68d8508f0325d1cba", "fields": {"nom_de_la_commune": "ASSEVILLERS", "libell_d_acheminement": "ASSEVILLERS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80033"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4121e2fba5b9a0609d54109bc271525d1a7889b", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80036"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e58af34b575a53ca904f51bbdae468fa0b99d3b", "fields": {"nom_de_la_commune": "AUBVILLERS", "libell_d_acheminement": "AUBVILLERS", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80037"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b557f5452813d0bfcc0c5093fc262e3904eb554b", "fields": {"nom_de_la_commune": "AUTHIE", "libell_d_acheminement": "AUTHIE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80043"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76c1dbacf6615393f2d3f5b307f8a776d0d7b31d", "fields": {"nom_de_la_commune": "BALATRE", "libell_d_acheminement": "BALATRE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80053"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f7b7017e87f8de5f59178fb94217668fe72294a", "fields": {"nom_de_la_commune": "BAVELINCOURT", "libell_d_acheminement": "BAVELINCOURT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80056"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "809aee30c49b5516bbf9c08ab89078c9dba6a199", "fields": {"nom_de_la_commune": "BEAUCHAMPS", "libell_d_acheminement": "BEAUCHAMPS", "code_postal": "80770", "coordonnees_gps": [50.018728764, 1.52401496202], "code_commune_insee": "80063"}, "geometry": {"type": "Point", "coordinates": [1.52401496202, 50.018728764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651f0d35a8b77252112b44bd7f77e5ab3429d1b7", "fields": {"nom_de_la_commune": "BEAUFORT EN SANTERRE", "libell_d_acheminement": "BEAUFORT EN SANTERRE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80067"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f502466df7653200b3594c5ceb65c4c235e72d", "fields": {"nom_de_la_commune": "BEAUVAL", "libell_d_acheminement": "BEAUVAL", "code_postal": "80630", "coordonnees_gps": [50.1081352442, 2.32874451789], "code_commune_insee": "80071"}, "geometry": {"type": "Point", "coordinates": [2.32874451789, 50.1081352442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195cf5af9e9796f749e339b59b0054835ad632a6", "fields": {"nom_de_la_commune": "BECQUIGNY", "libell_d_acheminement": "BECQUIGNY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80074"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80ee833c360e4e1405544414ff415b765070440", "fields": {"nom_de_la_commune": "BELLEUSE", "libell_d_acheminement": "BELLEUSE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80079"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e236141986a5919676d3f283ca475e64ff90e568", "fields": {"nom_de_la_commune": "BELLOY ST LEONARD", "libell_d_acheminement": "BELLOY ST LEONARD", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80081"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203418613e23cf7af0819b36d640357743521296", "fields": {"code_postal": "80370", "code_commune_insee": "80086", "libell_d_acheminement": "BERNAVILLE", "ligne_5": "VACQUERIE", "nom_de_la_commune": "BERNAVILLE", "coordonnees_gps": [50.1625147057, 2.13483617177]}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5376f426fd2706b8142ba93f27663c0b0c36c7b4", "fields": {"nom_de_la_commune": "BETTENCOURT RIVIERE", "libell_d_acheminement": "BETTENCOURT RIVIERE", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80099"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c19db31c09f1fd03f98f70d2e21fcd151373245", "fields": {"nom_de_la_commune": "BEUVRAIGNES", "libell_d_acheminement": "BEUVRAIGNES", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80101"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9789e0027dda55b074d485eea82111c6a3fab64", "fields": {"nom_de_la_commune": "BLANGY TRONVILLE", "libell_d_acheminement": "BLANGY TRONVILLE", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80107"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73521679fae2f3b2cf3dfecd83761d422238134", "fields": {"nom_de_la_commune": "LE BOISLE", "libell_d_acheminement": "LE BOISLE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80109"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f033e000b8daa97618d025ceb978323313655200", "fields": {"nom_de_la_commune": "BOVES", "libell_d_acheminement": "BOVES", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80131"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc281e05aa9b4d2b0262209b12c0d6b3eee9b10", "fields": {"nom_de_la_commune": "BRASSY", "libell_d_acheminement": "BRASSY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80134"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ef68439cf2f76b00b1629a4be2ae02851240d7", "fields": {"nom_de_la_commune": "BREUIL", "libell_d_acheminement": "BREUIL", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80139"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91188b692cdc0e71994b7d5e44c12a927e583ae", "fields": {"nom_de_la_commune": "BROCOURT", "libell_d_acheminement": "BROCOURT", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80143"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ccb7241a91dc9511abbce9650ecbde4f4d3d12", "fields": {"nom_de_la_commune": "BUSSUS BUSSUEL", "libell_d_acheminement": "BUSSUS BUSSUEL", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80155"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b76ec1b5775f019edcd469dce979d3d40c07a253", "fields": {"nom_de_la_commune": "CAGNY", "libell_d_acheminement": "CAGNY", "code_postal": "80330", "coordonnees_gps": [49.8585815171, 2.34498416532], "code_commune_insee": "80160"}, "geometry": {"type": "Point", "coordinates": [2.34498416532, 49.8585815171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3129048be16947ab8287e9e659d8a19424b556", "fields": {"nom_de_la_commune": "CAHON", "libell_d_acheminement": "CAHON GOUY", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80161"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2be66bf21cef3d542e4a14fd99b9e02995a3e97", "fields": {"nom_de_la_commune": "CANDAS", "libell_d_acheminement": "CANDAS", "code_postal": "80750", "coordonnees_gps": [50.1069765579, 2.26231827427], "code_commune_insee": "80168"}, "geometry": {"type": "Point", "coordinates": [2.26231827427, 50.1069765579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "444ac47e70c62bc1ef8e60d784aa0f83b09e7ea9", "fields": {"nom_de_la_commune": "CAYEUX EN SANTERRE", "libell_d_acheminement": "CAYEUX EN SANTERRE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80181"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cc0d60fcd5236b4df1494b5f5cef9c1d9fc187", "fields": {"nom_de_la_commune": "CHILLY", "libell_d_acheminement": "CHILLY", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80191"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255b884ba6afbbfd14be078dd987dc7755b6aa95", "fields": {"nom_de_la_commune": "CHUIGNOLLES", "libell_d_acheminement": "CHUIGNOLLES", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80195"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b791522feb9a4469cec6c6ae5a0c2c8bf5c0d7f6", "fields": {"nom_de_la_commune": "CITERNE", "libell_d_acheminement": "CITERNE", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80196"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5648d79aa99876cccf298f3a5e09ebea771fe80c", "fields": {"nom_de_la_commune": "COISY", "libell_d_acheminement": "COISY", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80202"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a26c70c8fc9bac2578a95f875ccd1a46194b61d3", "fields": {"nom_de_la_commune": "CONTAY", "libell_d_acheminement": "CONTAY", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80207"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f8c2e12675e32ab6a807901e6d1ac34a3a90f9", "fields": {"nom_de_la_commune": "CORBIE", "libell_d_acheminement": "CORBIE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80212"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e7944abf3b724c65d09f109c713ec491a1903c", "fields": {"nom_de_la_commune": "DEMUIN", "libell_d_acheminement": "DEMUIN", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80237"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3641e73cc1635987726f1910b2c8b5d29d9482ba", "fields": {"nom_de_la_commune": "DOINGT", "libell_d_acheminement": "DOINGT FLAMICOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80240"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bab21527b13418515a61014d61ccf6e7aac657", "fields": {"nom_de_la_commune": "DOMLEGER LONGVILLERS", "libell_d_acheminement": "DOMLEGER LONGVILLERS", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80245"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd0524872161fe96fe4052792aeeb3eca0c3a7e", "fields": {"nom_de_la_commune": "DOUILLY", "libell_d_acheminement": "DOUILLY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80252"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bd4bf41bc8ea811aecd39c8a5cda215246d836", "fields": {"nom_de_la_commune": "DREUIL LES AMIENS", "libell_d_acheminement": "DREUIL LES AMIENS", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80256"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cbb9ac3d9d6eddf7c4b852b9cba3212dd5a089", "fields": {"nom_de_la_commune": "DRIENCOURT", "libell_d_acheminement": "DRIENCOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80258"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dfc75cbd09502f70402bf2f2a607929fdd3620", "fields": {"nom_de_la_commune": "L ECHELLE ST AURIN", "libell_d_acheminement": "L ECHELLE ST AURIN", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80263"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec2096c73e4b23175b1b2c8971176014cda5203", "fields": {"nom_de_la_commune": "ECLUSIER VAUX", "libell_d_acheminement": "ECLUSIER VAUX", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80264"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93546af72f8f936cfccdb9eaf8236bfef956fb63", "fields": {"nom_de_la_commune": "EMBREVILLE", "libell_d_acheminement": "EMBREVILLE", "code_postal": "80570", "coordonnees_gps": [50.0369511716, 1.54351875131], "code_commune_insee": "80265"}, "geometry": {"type": "Point", "coordinates": [1.54351875131, 50.0369511716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce5b70166fed449716c8dc7955e0afe3aada495", "fields": {"nom_de_la_commune": "EPEHY", "libell_d_acheminement": "EPEHY", "code_postal": "80740", "coordonnees_gps": [49.9986688504, 3.14330928776], "code_commune_insee": "80271"}, "geometry": {"type": "Point", "coordinates": [3.14330928776, 49.9986688504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0f3b96d9053b0c69805e1d2c61ead7d69b194b", "fields": {"nom_de_la_commune": "EPENANCOURT", "libell_d_acheminement": "EPENANCOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80272"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0257c387f6887b39b43461cfd4b0e58d9d53a5d8", "fields": {"nom_de_la_commune": "EQUANCOURT", "libell_d_acheminement": "EQUANCOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80275"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea8be1436991206edc52b6a2455239657a17888", "fields": {"nom_de_la_commune": "ERGNIES", "libell_d_acheminement": "ERGNIES", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80281"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f413382db033644ef1c0e7bcd5f82d2e857e13", "fields": {"nom_de_la_commune": "ESTREES DENIECOURT", "libell_d_acheminement": "ESTREES DENIECOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80288"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581340396ca83294b33fce4a054229371591a2c2", "fields": {"nom_de_la_commune": "ETALON", "libell_d_acheminement": "ETALON", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80292"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7df52e991626fc078c0a190761d7a351aa88082", "fields": {"nom_de_la_commune": "ETELFAY", "libell_d_acheminement": "ETELFAY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80293"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "278e85f535e38f59352f359a31c3cc594f8b429b", "fields": {"nom_de_la_commune": "FALVY", "libell_d_acheminement": "FALVY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80300"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deae4482e0ffc370697a08b7fe8ad0c76d486474", "fields": {"nom_de_la_commune": "FLUY", "libell_d_acheminement": "FLUY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80319"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15826d3326bd737ebddd872bd5c793ad30ef5812", "fields": {"nom_de_la_commune": "FONTAINE LE SEC", "libell_d_acheminement": "FONTAINE LE SEC", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80324"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0533fd7d64d14ec23f08edda2655c0d5f783f5", "fields": {"nom_de_la_commune": "FOURCIGNY", "libell_d_acheminement": "FOURCIGNY", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80340"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ba2ca3a982b62b50da9d5a7a7c84247261130e", "fields": {"nom_de_la_commune": "FRANCIERES", "libell_d_acheminement": "FRANCIERES", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80344"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965a9231d36cf4b8cb020ce33dde54321954615e", "fields": {"nom_de_la_commune": "FRANSURES", "libell_d_acheminement": "FRANSURES", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80349"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a806373d30f5947e271ae79b8f8e92dad1f87bb", "fields": {"nom_de_la_commune": "FRESNES MAZANCOURT", "libell_d_acheminement": "FRESNES MAZANCOURT", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80353"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d252884e845d89be835c749de8426672fd13e1", "fields": {"nom_de_la_commune": "FRESNEVILLE", "libell_d_acheminement": "FRESNEVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80355"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8ac37afca364a6b6c77918cc6185d28332d85e", "fields": {"nom_de_la_commune": "FRESNOY ANDAINVILLE", "libell_d_acheminement": "FRESNOY ANDAINVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80356"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35e63ee285993e1d24e8aa9cfb982fd4f31f017d", "fields": {"nom_de_la_commune": "FRESSENNEVILLE", "libell_d_acheminement": "FRESSENNEVILLE", "code_postal": "80390", "coordonnees_gps": [50.081035948, 1.5796731248], "code_commune_insee": "80360"}, "geometry": {"type": "Point", "coordinates": [1.5796731248, 50.081035948]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86eb5c8423c01186707e89a847ab10536a1c7e15", "fields": {"nom_de_la_commune": "FRETTECUISSE", "libell_d_acheminement": "FRETTECUISSE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80361"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0289707f2ded6277769fc06ab92402b2f0afc28", "fields": {"nom_de_la_commune": "FRICAMPS", "libell_d_acheminement": "FRICAMPS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80365"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b1ff326103610c02e6bda17899028fa6c49efd", "fields": {"nom_de_la_commune": "FRISE", "libell_d_acheminement": "FRISE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80367"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41249ad60747b4ba9a2dfe3984a344ef0913f4d", "fields": {"nom_de_la_commune": "FRIVILLE ESCARBOTIN", "libell_d_acheminement": "FRIVILLE ESCARBOTIN", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80368"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f84c659c623d2e257078298927ad698f148ec54", "fields": {"nom_de_la_commune": "ST GOIN", "libell_d_acheminement": "ST GOIN", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64481"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336a2d6858b886b6e11ec6234f8a0f3c7fe75ba1", "fields": {"nom_de_la_commune": "SAUVAGNON", "libell_d_acheminement": "SAUVAGNON", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64511"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcdbaa5e71756af9075d5d9a8245e800736554a5", "fields": {"nom_de_la_commune": "SAUVETERRE DE BEARN", "libell_d_acheminement": "SAUVETERRE DE BEARN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64513"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4221eb0a0a1fb4885c73509edb32c163c7c380", "fields": {"nom_de_la_commune": "SEMEACQ BLACHON", "libell_d_acheminement": "SEMEACQ BLACHON", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64517"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ea775caee6b1b568780da68a47c7a243fcfa47", "fields": {"nom_de_la_commune": "SERRES MORLAAS", "libell_d_acheminement": "SERRES MORLAAS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64520"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb26b5e8ed79bafe4d1ab04ea87f53987e5ab609", "fields": {"nom_de_la_commune": "SUHESCUN", "libell_d_acheminement": "SUHESCUN", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64528"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad40c55fdf4a864b25b8aa7b464903c5c5fec3d2", "fields": {"nom_de_la_commune": "TARDETS SORHOLUS", "libell_d_acheminement": "TARDETS SORHOLUS", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64533"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8291c8fb07715b547231ddc9aff2dfd90629f7c", "fields": {"nom_de_la_commune": "TARSACQ", "libell_d_acheminement": "TARSACQ", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64535"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aefa74559b4762acbd066c2e87b3655a394e254c", "fields": {"nom_de_la_commune": "URCUIT", "libell_d_acheminement": "URCUIT", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64540"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3e16f9e6995eca81e8280e9f2181c37a3ef4d3", "fields": {"nom_de_la_commune": "NEMOURS", "libell_d_acheminement": "NEMOURS", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77333"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbf9d81a6c5daa514872558b68401af6daa06f6", "fields": {"nom_de_la_commune": "ORLY SUR MORIN", "libell_d_acheminement": "ORLY SUR MORIN", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77345"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06951ed1e3b06a735693fb31ccfdc2e4cead308", "fields": {"nom_de_la_commune": "ORMESSON", "libell_d_acheminement": "ORMESSON", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77348"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fff75153cbb724585a61db03772ba5b94c0122a", "fields": {"nom_de_la_commune": "PALEY", "libell_d_acheminement": "PALEY", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77353"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b1cf02ab46e16696c81a7d0d7068286de6210f4", "fields": {"nom_de_la_commune": "POINCY", "libell_d_acheminement": "POINCY", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77369"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d7375ce4ab6f80cf6c3eeb96faf4853c7aefeec", "fields": {"nom_de_la_commune": "PRESLES EN BRIE", "libell_d_acheminement": "PRESLES EN BRIE", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77377"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6813644283ab8d12962e9419468ca095e0c2fc", "fields": {"nom_de_la_commune": "REAU", "libell_d_acheminement": "REAU", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77384"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c51666d22938694f1b55cf78af8170c0ecdc266", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77389"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "303a2385cbf375273135c9b929a23ae1fa459945", "fields": {"nom_de_la_commune": "ROISSY EN BRIE", "libell_d_acheminement": "ROISSY EN BRIE", "code_postal": "77680", "coordonnees_gps": [48.7896457179, 2.66063704289], "code_commune_insee": "77390"}, "geometry": {"type": "Point", "coordinates": [2.66063704289, 48.7896457179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c159592584d5767de301c7d29c2c8d7be969bf20", "fields": {"nom_de_la_commune": "ST GERMAIN SUR MORIN", "libell_d_acheminement": "ST GERMAIN SUR MORIN", "code_postal": "77860", "coordonnees_gps": [48.889293661, 2.86625543445], "code_commune_insee": "77413"}, "geometry": {"type": "Point", "coordinates": [2.86625543445, 48.889293661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e330682ffcdb9815035097a384b3d4aa790c793d", "fields": {"nom_de_la_commune": "ST JEAN LES DEUX JUMEAUX", "libell_d_acheminement": "ST JEAN LES DEUX JUMEAUX", "code_postal": "77660", "coordonnees_gps": [48.947885441, 3.02624344893], "code_commune_insee": "77415"}, "geometry": {"type": "Point", "coordinates": [3.02624344893, 48.947885441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7476860ef86032aa6588832134696056dd6b8891", "fields": {"nom_de_la_commune": "ST JUST EN BRIE", "libell_d_acheminement": "ST JUST EN BRIE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77416"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13209a73b7f1916d4ffecd455be3dc3360a6b3e", "fields": {"code_postal": "77320", "code_commune_insee": "77421", "libell_d_acheminement": "ST MARS VIEUX MAISONS", "ligne_5": "VIEUX MAISONS", "nom_de_la_commune": "ST MARS VIEUX MAISONS", "coordonnees_gps": [48.7632652303, 3.31883214084]}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d06f836b9b2c0bb2201c1c9db39dc28e247183", "fields": {"nom_de_la_commune": "ST MESMES", "libell_d_acheminement": "ST MESMES", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77427"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4709494d17aa7e04586b1a4fe3395859a2b75e", "fields": {"nom_de_la_commune": "ST OUEN SUR MORIN", "libell_d_acheminement": "ST OUEN SUR MORIN", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77429"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d838d2785d1dfd2722207f8319e9cc3b3f6ff4bb", "fields": {"nom_de_la_commune": "ST PATHUS", "libell_d_acheminement": "ST PATHUS", "code_postal": "77178", "coordonnees_gps": [49.0712863864, 2.81026251267], "code_commune_insee": "77430"}, "geometry": {"type": "Point", "coordinates": [2.81026251267, 49.0712863864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af3de0ecac63ce398d27664dc3aefdb6cd1cf28", "fields": {"nom_de_la_commune": "SAINTS", "libell_d_acheminement": "SAINTS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77433"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8e28b3c415cd7c5fd125ba09f943985ddc3e59", "fields": {"nom_de_la_commune": "ST SAUVEUR LES BRAY", "libell_d_acheminement": "ST SAUVEUR LES BRAY", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77434"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ae76a76fa566122fa58e1c365fdb27923f8640", "fields": {"nom_de_la_commune": "ST SOUPPLETS", "libell_d_acheminement": "ST SOUPPLETS", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77437"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb733baa3dadf21f4810842c30854b4677329d6d", "fields": {"nom_de_la_commune": "SAVIGNY LE TEMPLE", "libell_d_acheminement": "SAVIGNY LE TEMPLE", "code_postal": "77176", "coordonnees_gps": [48.5856002138, 2.56311279324], "code_commune_insee": "77445"}, "geometry": {"type": "Point", "coordinates": [2.56311279324, 48.5856002138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606b526b6027a890d7f2b0f3c9b1fd7a48aecefc", "fields": {"nom_de_la_commune": "SAVINS", "libell_d_acheminement": "SAVINS", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77446"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea905f1f1b0c816271642c9438639484ae5d581", "fields": {"nom_de_la_commune": "SEPT SORTS", "libell_d_acheminement": "SEPT SORTS", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77448"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572124de8a21cd5d5f8ff3952d1e5293703d9dc5", "fields": {"nom_de_la_commune": "SERRIS", "libell_d_acheminement": "SERRIS", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77449"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763fe12331e5f3c2561b8b75cf4b10bc3dcb029b", "fields": {"nom_de_la_commune": "THENISY", "libell_d_acheminement": "THENISY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77461"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361aa947946e1998005d0d597091ad694241ad0f", "fields": {"nom_de_la_commune": "TIGEAUX", "libell_d_acheminement": "TIGEAUX", "code_postal": "77163", "coordonnees_gps": [48.7979316478, 2.90271680607], "code_commune_insee": "77466"}, "geometry": {"type": "Point", "coordinates": [2.90271680607, 48.7979316478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27dc3ad7082fb87d364f3703edc0083f329f60e0", "fields": {"nom_de_la_commune": "LA TRETOIRE", "libell_d_acheminement": "LA TRETOIRE", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77472"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06641d4218da216eb8171a7abf489e46bcd2a452", "fields": {"nom_de_la_commune": "TREUZY LEVELAY", "libell_d_acheminement": "TREUZY LEVELAY", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77473"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f05f757dfc44d09867fee18ec7ed195bb7acebd", "fields": {"nom_de_la_commune": "TRILPORT", "libell_d_acheminement": "TRILPORT", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77475"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f25b49c0922372d1cf9eaf8e8e17ce70141ea5", "fields": {"nom_de_la_commune": "TROCY EN MULTIEN", "libell_d_acheminement": "TROCY EN MULTIEN", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77476"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472c65d60ada97590caabbac0311083c58ae6fab", "fields": {"nom_de_la_commune": "VARENNES SUR SEINE", "libell_d_acheminement": "VARENNES SUR SEINE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77482"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1744619f3e10b8669e05c2d96f9245b1c18f43c", "fields": {"nom_de_la_commune": "VARREDDES", "libell_d_acheminement": "VARREDDES", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77483"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae3b8eb742be14629a31aa5330a169fc2cb0a230", "fields": {"nom_de_la_commune": "VAUDOY EN BRIE", "libell_d_acheminement": "VAUDOY EN BRIE", "code_postal": "77141", "coordonnees_gps": [48.6974710032, 3.08222071028], "code_commune_insee": "77486"}, "geometry": {"type": "Point", "coordinates": [3.08222071028, 48.6974710032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d379908fe1fab50582072adf73256086198ec3e", "fields": {"nom_de_la_commune": "VENDREST", "libell_d_acheminement": "VENDREST", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77490"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff17f904b7ee87986271667694948ef28c2d8f4c", "fields": {"nom_de_la_commune": "VERDELOT", "libell_d_acheminement": "VERDELOT", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77492"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af144da9bc71e6ffc43b0c31b54744685512aa6", "fields": {"code_postal": "77670", "code_commune_insee": "77494", "libell_d_acheminement": "VERNOU LA CELLE SUR SEINE", "ligne_5": "LA CELLE SUR SEINE", "nom_de_la_commune": "VERNOU LA CELLE SUR SEINE", "coordonnees_gps": [48.4047875044, 2.85078204772]}, "geometry": {"type": "Point", "coordinates": [2.85078204772, 48.4047875044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3502277a1779f7f249634bf5fc5c9d8940e505", "fields": {"nom_de_la_commune": "VILLECERF", "libell_d_acheminement": "VILLECERF", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77501"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e69c864eafe1ea205fbfa3ea6a75bd476e8ebc", "fields": {"nom_de_la_commune": "VILLENAUXE LA PETITE", "libell_d_acheminement": "VILLENAUXE LA PETITE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77507"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af1bacc39f0d2c6ba4119b8e15e93bd156f1ab4", "fields": {"nom_de_la_commune": "VILLENEUVE SUR BELLOT", "libell_d_acheminement": "VILLENEUVE SUR BELLOT", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77512"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc86a01e0c01c963d162c1f027ecc2509418b8b", "fields": {"code_postal": "77410", "code_commune_insee": "77517", "libell_d_acheminement": "VILLEVAUDE", "ligne_5": "BORDEAUX", "nom_de_la_commune": "VILLEVAUDE", "coordonnees_gps": [48.9493778355, 2.7161171355]}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f24e3327dc1fe5cf2d9fe24d44a97ecac119b46", "fields": {"nom_de_la_commune": "VILLIERS SOUS GREZ", "libell_d_acheminement": "VILLIERS SOUS GREZ", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77520"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4082dab8a9019406e6629886c0c54667ddbc6918", "fields": {"nom_de_la_commune": "VIMPELLES", "libell_d_acheminement": "VIMPELLES", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77524"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b012c685d4b257ca1fec587dcb257a12feafdc9b", "fields": {"nom_de_la_commune": "VOINSLES", "libell_d_acheminement": "VOINSLES", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77527"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f11c54e5a911c53248f58eddaf20ed700fd76c4", "fields": {"nom_de_la_commune": "ACHERES", "libell_d_acheminement": "ACHERES", "code_postal": "78260", "coordonnees_gps": [48.9716145916, 2.08821497883], "code_commune_insee": "78005"}, "geometry": {"type": "Point", "coordinates": [2.08821497883, 48.9716145916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e1326a882553394221ed9220165d1abe8e115b", "fields": {"nom_de_la_commune": "BAZEMONT", "libell_d_acheminement": "BAZEMONT", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78049"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f6a38f670ad651a7e5c40b38f1eef0ba5ece8b", "fields": {"nom_de_la_commune": "BENNECOURT", "libell_d_acheminement": "BENNECOURT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78057"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67717b20ba9928bfaab958f615df60fc9efe631b", "fields": {"nom_de_la_commune": "BEYNES", "libell_d_acheminement": "BEYNES", "code_postal": "78650", "coordonnees_gps": [48.853666314, 1.86642479384], "code_commune_insee": "78062"}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aecbb84761ddca1dd2f25248b7c6ef03f0672f", "fields": {"code_postal": "78650", "code_commune_insee": "78062", "libell_d_acheminement": "BEYNES", "ligne_5": "VAL DES QUATRE PIGNONS", "nom_de_la_commune": "BEYNES", "coordonnees_gps": [48.853666314, 1.86642479384]}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325c8069e4f06092eea4ebfc90f6f5efc75412ff", "fields": {"nom_de_la_commune": "BOINVILLIERS", "libell_d_acheminement": "BOINVILLIERS", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78072"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4cc836807738a17aa6125fd2b7d783b9b2eba85", "fields": {"nom_de_la_commune": "BOISSY MAUVOISIN", "libell_d_acheminement": "BOISSY MAUVOISIN", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78082"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba16490b5795812ddd946043279ef10b6cf75b06", "fields": {"nom_de_la_commune": "BONNIERES SUR SEINE", "libell_d_acheminement": "BONNIERES SUR SEINE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78089"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e5388923e712722abbef887d8dd4dc11f914f0", "fields": {"nom_de_la_commune": "BOUGIVAL", "libell_d_acheminement": "BOUGIVAL", "code_postal": "78380", "coordonnees_gps": [48.8637892909, 2.13732683237], "code_commune_insee": "78092"}, "geometry": {"type": "Point", "coordinates": [2.13732683237, 48.8637892909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1132323f73581a9c2e8dbc61f8963b2ef99e1202", "fields": {"nom_de_la_commune": "BREVAL", "libell_d_acheminement": "BREVAL", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78107"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f695e28d24b4fb58103d51fd243d4462fc8967", "fields": {"nom_de_la_commune": "CHAMBOURCY", "libell_d_acheminement": "CHAMBOURCY", "code_postal": "78240", "coordonnees_gps": [48.8975283122, 2.02796979095], "code_commune_insee": "78133"}, "geometry": {"type": "Point", "coordinates": [2.02796979095, 48.8975283122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7042b2f16628103d2601853a4d703c49a78b31", "fields": {"nom_de_la_commune": "LE CHESNAY", "libell_d_acheminement": "LE CHESNAY", "code_postal": "78150", "coordonnees_gps": [48.8291874065, 2.12052828501], "code_commune_insee": "78158"}, "geometry": {"type": "Point", "coordinates": [2.12052828501, 48.8291874065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b935aaaa1d203c66f88af4d61a69a1ca963af8", "fields": {"nom_de_la_commune": "CHEVREUSE", "libell_d_acheminement": "CHEVREUSE", "code_postal": "78460", "coordonnees_gps": [48.6939321598, 2.02878492296], "code_commune_insee": "78160"}, "geometry": {"type": "Point", "coordinates": [2.02878492296, 48.6939321598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c95a524aed1fdc2c47be918b8f8d9dac7473f555", "fields": {"nom_de_la_commune": "CIVRY LA FORET", "libell_d_acheminement": "CIVRY LA FORET", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78163"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f647b230f3dc8a2cfe4b9f4c93f459ffaf40934b", "fields": {"nom_de_la_commune": "COURGENT", "libell_d_acheminement": "COURGENT", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78185"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1156a9f1dce98e3fefe6b1019bc6813cb6ae20f8", "fields": {"nom_de_la_commune": "DROCOURT", "libell_d_acheminement": "DROCOURT", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78202"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9654471b35f7d80accc3e8cdfb88a9808525c299", "fields": {"nom_de_la_commune": "ECQUEVILLY", "libell_d_acheminement": "ECQUEVILLY", "code_postal": "78920", "coordonnees_gps": [48.9461356808, 1.92079973197], "code_commune_insee": "78206"}, "geometry": {"type": "Point", "coordinates": [1.92079973197, 48.9461356808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4b742a5d04e28e5da7267d4daa27a814ff0238", "fields": {"nom_de_la_commune": "GAILLON SUR MONTCIENT", "libell_d_acheminement": "GAILLON SUR MONTCIENT", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78261"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "821696d3ca321ae7aaa54851a8a297c8cfb2f5ef", "fields": {"nom_de_la_commune": "GAMBAISEUIL", "libell_d_acheminement": "GAMBAISEUIL", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78264"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edaf010bbf5d1ac1ed0ec9701145cb67dcd2e7c4", "fields": {"nom_de_la_commune": "GOMMECOURT", "libell_d_acheminement": "GOMMECOURT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78276"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7570b4e2dd2e90de800163a682448258c7d48bd8", "fields": {"nom_de_la_commune": "GUITRANCOURT", "libell_d_acheminement": "GUITRANCOURT", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78296"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3756441e336c51a972049991e4fa5023ae4633a8", "fields": {"nom_de_la_commune": "ISSOU", "libell_d_acheminement": "ISSOU", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78314"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec33dfb536a81ac0969839830e424843314f2875", "fields": {"nom_de_la_commune": "JAMBVILLE", "libell_d_acheminement": "JAMBVILLE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78317"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d9cf459ecbc5dc6394122aa022c2677872f3fd", "fields": {"nom_de_la_commune": "JEUFOSSE", "libell_d_acheminement": "JEUFOSSE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78320"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1339c49ee99c6512fcd6b3c7d2ac9c8979fc3326", "fields": {"nom_de_la_commune": "JOUARS PONTCHARTRAIN", "libell_d_acheminement": "JOUARS PONTCHARTRAIN", "code_postal": "78760", "coordonnees_gps": [48.7906207752, 1.90681294761], "code_commune_insee": "78321"}, "geometry": {"type": "Point", "coordinates": [1.90681294761, 48.7906207752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06032e1bc942b1af22df6e9caf3451e33c38b5c5", "fields": {"nom_de_la_commune": "JUMEAUVILLE", "libell_d_acheminement": "JUMEAUVILLE", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78325"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ac2c900715a5f44806650379462c4ff19d546c", "fields": {"nom_de_la_commune": "LEVIS ST NOM", "libell_d_acheminement": "LEVIS ST NOM", "code_postal": "78320", "coordonnees_gps": [48.7362483478, 1.95125411115], "code_commune_insee": "78334"}, "geometry": {"type": "Point", "coordinates": [1.95125411115, 48.7362483478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af50c90e792f3df32518e5e085013c7eae129b7", "fields": {"nom_de_la_commune": "LIMAY", "libell_d_acheminement": "LIMAY", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78335"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e4efe58276b302739c6808bc4e5c3b00ce6530", "fields": {"nom_de_la_commune": "LES LOGES EN JOSAS", "libell_d_acheminement": "LES LOGES EN JOSAS", "code_postal": "78350", "coordonnees_gps": [48.7655340154, 2.15902519445], "code_commune_insee": "78343"}, "geometry": {"type": "Point", "coordinates": [2.15902519445, 48.7655340154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b6bb1c381374e96fb59dfc17fd8c83777dc60e", "fields": {"nom_de_la_commune": "MAGNANVILLE", "libell_d_acheminement": "MAGNANVILLE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78354"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a6970a45d9236833dec0f332a83d94e9a92c27", "fields": {"nom_de_la_commune": "MAISONS LAFFITTE", "libell_d_acheminement": "MAISONS LAFFITTE", "code_postal": "78600", "coordonnees_gps": [48.9430101305, 2.14143556123], "code_commune_insee": "78358"}, "geometry": {"type": "Point", "coordinates": [2.14143556123, 48.9430101305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e296f81a3e52922ada9a26d497fd8d49ba6985", "fields": {"nom_de_la_commune": "MANTES LA JOLIE", "libell_d_acheminement": "MANTES LA JOLIE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78361"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ac19954f11b92baa19b126993c4f3383543e10", "fields": {"nom_de_la_commune": "MARCQ", "libell_d_acheminement": "MARCQ", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78364"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06ff8725249ac0de9de7cd9f7c16725825cb0a7", "fields": {"code_postal": "78550", "code_commune_insee": "78381", "libell_d_acheminement": "MAULETTE", "ligne_5": "THIONVILLE SUR OPTON", "nom_de_la_commune": "MAULETTE", "coordonnees_gps": [48.8059624153, 1.62530918633]}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5541bbd91be83f9b82eddabc8ad4f4e524ad1c63", "fields": {"nom_de_la_commune": "MAURECOURT", "libell_d_acheminement": "MAURECOURT", "code_postal": "78780", "coordonnees_gps": [48.9987117472, 2.05346510271], "code_commune_insee": "78382"}, "geometry": {"type": "Point", "coordinates": [2.05346510271, 48.9987117472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946fa92742d302a9d93ca4aa49d65c085e87abbc", "fields": {"nom_de_la_commune": "MAUREPAS", "libell_d_acheminement": "MAUREPAS", "code_postal": "78310", "coordonnees_gps": [48.7604855324, 1.91898209487], "code_commune_insee": "78383"}, "geometry": {"type": "Point", "coordinates": [1.91898209487, 48.7604855324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4feea1b4918bd5b8f9dbd78ee01044a2e303dc21", "fields": {"nom_de_la_commune": "LE MESNIL ST DENIS", "libell_d_acheminement": "LE MESNIL ST DENIS", "code_postal": "78320", "coordonnees_gps": [48.7362483478, 1.95125411115], "code_commune_insee": "78397"}, "geometry": {"type": "Point", "coordinates": [1.95125411115, 48.7362483478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4036cbe1643ec565e9c0dbfc26150d72450e04d4", "fields": {"nom_de_la_commune": "MEZY SUR SEINE", "libell_d_acheminement": "MEZY SUR SEINE", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78403"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4e89f14b506bab9213305cf758d084393d33e6", "fields": {"nom_de_la_commune": "MOISSON", "libell_d_acheminement": "MOISSON", "code_postal": "78840", "coordonnees_gps": [49.0584919382, 1.63612899817], "code_commune_insee": "78410"}, "geometry": {"type": "Point", "coordinates": [1.63612899817, 49.0584919382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbda0ae471512344ffb5c2dd769aabd921daf819", "fields": {"nom_de_la_commune": "NOISY LE ROI", "libell_d_acheminement": "NOISY LE ROI", "code_postal": "78590", "coordonnees_gps": [48.8425372745, 2.05184137552], "code_commune_insee": "78455"}, "geometry": {"type": "Point", "coordinates": [2.05184137552, 48.8425372745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed36c4d387a52576e9ebfbab4e005dac07fcbab", "fields": {"nom_de_la_commune": "OINVILLE SUR MONTCIENT", "libell_d_acheminement": "OINVILLE SUR MONTCIENT", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78460"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3dcc2815c3ab2fddaefc475f641bb0f1e67d9ca", "fields": {"nom_de_la_commune": "ORGEVAL", "libell_d_acheminement": "ORGEVAL", "code_postal": "78630", "coordonnees_gps": [48.9218149018, 1.96212376753], "code_commune_insee": "78466"}, "geometry": {"type": "Point", "coordinates": [1.96212376753, 48.9218149018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d28596f6459dfffe1bf92d3f65c8d21074e1b5", "fields": {"nom_de_la_commune": "ORSONVILLE", "libell_d_acheminement": "ORSONVILLE", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78472"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d86d0dd57bfc4ea191c92c3f86af2d687e0334", "fields": {"nom_de_la_commune": "ORVILLIERS", "libell_d_acheminement": "ORVILLIERS", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78474"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12e60238bec88a7b91d02cc964d9d13ef37ca2ab", "fields": {"nom_de_la_commune": "OSMOY", "libell_d_acheminement": "OSMOY", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78475"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c24beda727e865dd15169f57fbd1229b07e9d6", "fields": {"nom_de_la_commune": "LE PECQ", "libell_d_acheminement": "LE PECQ", "code_postal": "78230", "coordonnees_gps": [48.8943723497, 2.1057199648], "code_commune_insee": "78481"}, "geometry": {"type": "Point", "coordinates": [2.1057199648, 48.8943723497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c249aad8767d526ddf7f71a7e1251e2ac72fa6f", "fields": {"nom_de_la_commune": "PRUNAY LE TEMPLE", "libell_d_acheminement": "PRUNAY LE TEMPLE", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78505"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284031a17f61788f10f0960e900e3ce7f92c0ad3", "fields": {"nom_de_la_commune": "ROCHEFORT EN YVELINES", "libell_d_acheminement": "ROCHEFORT EN YVELINES", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78522"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1406e5d473c03bc269dd1a01169742b5cb6cd2ae", "fields": {"nom_de_la_commune": "ST ARNOULT EN YVELINES", "libell_d_acheminement": "ST ARNOULT EN YVELINES", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78537"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e53d04b3e947fbf72c870ca9ddb3a4ca4a743a", "fields": {"nom_de_la_commune": "ST HILARION", "libell_d_acheminement": "ST HILARION", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78557"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d4ec2f649a700a52d3af492ce6614e25826d3d", "fields": {"nom_de_la_commune": "ST LAMBERT", "libell_d_acheminement": "ST LAMBERT DES BOIS", "code_postal": "78470", "coordonnees_gps": [48.7175747571, 2.05026286373], "code_commune_insee": "78561"}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e750231309cfc0a059e1025242407b93e62eac83", "fields": {"nom_de_la_commune": "SONCHAMP", "libell_d_acheminement": "SONCHAMP", "code_postal": "78120", "coordonnees_gps": [48.6165414495, 1.85994599568], "code_commune_insee": "78601"}, "geometry": {"type": "Point", "coordinates": [1.85994599568, 48.6165414495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956c19cfadee0151af6650a8050766b5605e403e", "fields": {"nom_de_la_commune": "LE TERTRE ST DENIS", "libell_d_acheminement": "LE TERTRE ST DENIS", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78608"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402920c96200635d94e53da1f509660ecfed955e", "fields": {"nom_de_la_commune": "THIVERVAL GRIGNON", "libell_d_acheminement": "THIVERVAL GRIGNON", "code_postal": "78850", "coordonnees_gps": [48.844252131, 1.93267960779], "code_commune_insee": "78615"}, "geometry": {"type": "Point", "coordinates": [1.93267960779, 48.844252131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d92f67d3392cd2ff44edebafcd9b3ad4674c92d4", "fields": {"code_postal": "78510", "code_commune_insee": "78624", "libell_d_acheminement": "TRIEL SUR SEINE", "ligne_5": "CHEVERCHEMONT", "nom_de_la_commune": "TRIEL SUR SEINE", "coordonnees_gps": [48.9781198658, 2.00818427315]}, "geometry": {"type": "Point", "coordinates": [2.00818427315, 48.9781198658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b25e7ec18cab71a677d62c1a8b6d1da0433a946", "fields": {"nom_de_la_commune": "LE VESINET", "libell_d_acheminement": "LE VESINET", "code_postal": "78110", "coordonnees_gps": [48.89356401, 2.12981922298], "code_commune_insee": "78650"}, "geometry": {"type": "Point", "coordinates": [2.12981922298, 48.89356401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aee37ccb1e7632eb9806f144d14373be198d8b2", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78653"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81f6e8a85a5b830b2653057cfbdb82b9afd4ac0", "fields": {"nom_de_la_commune": "VIEILLE EGLISE EN YVELINES", "libell_d_acheminement": "VIEILLE EGLISE EN YVELINES", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78655"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38535ecb04efe571bda9ad41504f6d6972812e65", "fields": {"nom_de_la_commune": "PLELAN LE GRAND", "libell_d_acheminement": "PLELAN LE GRAND", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35223"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33339fd4f989f66422823c1668cbe8e24135ace1", "fields": {"nom_de_la_commune": "PLEUGUENEUC", "libell_d_acheminement": "PLEUGUENEUC", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35226"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f579e755c494aa008ff8d0eb8977982281d46ca", "fields": {"nom_de_la_commune": "PLEURTUIT", "libell_d_acheminement": "PLEURTUIT", "code_postal": "35730", "coordonnees_gps": [48.5827668702, -2.06027401288], "code_commune_insee": "35228"}, "geometry": {"type": "Point", "coordinates": [-2.06027401288, 48.5827668702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa70009b2ffb73cab74c7cc67f046a5068ded67", "fields": {"nom_de_la_commune": "REDON", "libell_d_acheminement": "REDON", "code_postal": "35600", "coordonnees_gps": [47.6975566329, -2.0582593409], "code_commune_insee": "35236"}, "geometry": {"type": "Point", "coordinates": [-2.0582593409, 47.6975566329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9b96160370dd8d89fef9b47353cdd459275ca4", "fields": {"nom_de_la_commune": "RIMOU", "libell_d_acheminement": "RIMOU", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35242"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395bc4e8e7a1d8bdd71176494c7e9af76d01d2f5", "fields": {"nom_de_la_commune": "ROMAGNE", "libell_d_acheminement": "ROMAGNE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35243"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce914c85e7e7d851d6f4a1570264c5163392b7c7", "fields": {"nom_de_la_commune": "ROZ SUR COUESNON", "libell_d_acheminement": "ROZ SUR COUESNON", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35247"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7c00502a4bf1ac62f2e70e73fd24580ede85f4", "fields": {"nom_de_la_commune": "ST ARMEL", "libell_d_acheminement": "ST ARMEL", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35250"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0cb72b90626d75a9e560361bcabc781c5a8e3ac", "fields": {"nom_de_la_commune": "ST AUBIN D AUBIGNE", "libell_d_acheminement": "ST AUBIN D AUBIGNE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35251"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9a437fdfcc157cce2f97319b6ba5db212fab5c", "fields": {"nom_de_la_commune": "ST BENOIT DES ONDES", "libell_d_acheminement": "ST BENOIT DES ONDES", "code_postal": "35114", "coordonnees_gps": [48.6133414914, -1.86078756626], "code_commune_insee": "35255"}, "geometry": {"type": "Point", "coordinates": [-1.86078756626, 48.6133414914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d123ee0d70a9bd2e2c2fc4d29cbc7e09d0e3f43", "fields": {"nom_de_la_commune": "ST GERMAIN EN COGLES", "libell_d_acheminement": "ST GERMAIN EN COGLES", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35273"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac81e005ae55ad2cd7aabf5081f6622bb029c2c6", "fields": {"nom_de_la_commune": "ST GREGOIRE", "libell_d_acheminement": "ST GREGOIRE", "code_postal": "35760", "coordonnees_gps": [48.1574437046, -1.69175560497], "code_commune_insee": "35278"}, "geometry": {"type": "Point", "coordinates": [-1.69175560497, 48.1574437046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39fd2acf5a1d58fe903b6d32849760e57aa1c54", "fields": {"nom_de_la_commune": "ST HILAIRE DES LANDES", "libell_d_acheminement": "ST HILAIRE DES LANDES", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35280"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff9aa54ce1205acac7b298cad34d5421172dd8d", "fields": {"nom_de_la_commune": "ST JACQUES DE LA LANDE", "libell_d_acheminement": "ST JACQUES DE LA LANDE", "code_postal": "35136", "coordonnees_gps": [48.0756152409, -1.72379516308], "code_commune_insee": "35281"}, "geometry": {"type": "Point", "coordinates": [-1.72379516308, 48.0756152409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9609cd9e822a1c05a0e5cc240a10e242bfc4935", "fields": {"nom_de_la_commune": "ST MALO", "libell_d_acheminement": "ST MALO", "code_postal": "35400", "coordonnees_gps": [48.6399039698, -1.9807980796], "code_commune_insee": "35288"}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801b8cf9335e55e6bf39ee02004398b18e3bf843", "fields": {"nom_de_la_commune": "ST MALON SUR MEL", "libell_d_acheminement": "ST MALON SUR MEL", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35290"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26754c3c50575ed33e7f7085257d1f5a8598b1d7", "fields": {"nom_de_la_commune": "ST MAUGAN", "libell_d_acheminement": "ST MAUGAN", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35295"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a7ac3df0a7ffd16b5ec17f5048d4876346f250", "fields": {"nom_de_la_commune": "ST MEDARD SUR ILLE", "libell_d_acheminement": "ST MEDARD SUR ILLE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35296"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ba9bec3de59b011293169dd5aceb244a9d930a", "fields": {"nom_de_la_commune": "ST M HERVE", "libell_d_acheminement": "ST M HERVE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35300"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48d2c0d7bf11c6a8ba40ec665b46bcdf1498c8d", "fields": {"nom_de_la_commune": "ST M HERVON", "libell_d_acheminement": "ST M HERVON", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35301"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0125d409126e6d5d97eae7422ed3cf670e6029", "fields": {"nom_de_la_commune": "ST PERE", "libell_d_acheminement": "ST PERE", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35306"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca5fcbd6b62b089dda57b505c72c1f0bba5ff01", "fields": {"nom_de_la_commune": "ST PIERRE DE PLESGUEN", "libell_d_acheminement": "ST PIERRE DE PLESGUEN", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35308"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6c0894b2754280dbedd394cb06edd867637b50", "fields": {"nom_de_la_commune": "ST SEGLIN", "libell_d_acheminement": "ST SEGLIN", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35311"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24f1324d9f3d0742116bae36cd056ab496473b4", "fields": {"nom_de_la_commune": "ST THUAL", "libell_d_acheminement": "ST THUAL", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35318"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9d3a310ad369ab2bc91b2ef8eebaaf8e961f3e", "fields": {"nom_de_la_commune": "ST UNIAC", "libell_d_acheminement": "ST UNIAC", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35320"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d373c09c51757957d0a27826c640020625ca153", "fields": {"nom_de_la_commune": "TORCE", "libell_d_acheminement": "TORCE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35338"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdbc2ab63f1b44516886b060dda064639fce916", "fields": {"nom_de_la_commune": "TREMEHEUC", "libell_d_acheminement": "TREMEHEUC", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35342"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3962319de409e067528dc5f90d55eb27e79cb9e", "fields": {"nom_de_la_commune": "TRESBOEUF", "libell_d_acheminement": "TRESBOEUF", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35343"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81cbbf369157e9bbe6949767cf9db45076e3dfb", "fields": {"nom_de_la_commune": "TRIMER", "libell_d_acheminement": "TRIMER", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35346"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de2c9197e1dc51aef95d49e6f29378d8a3c3b83", "fields": {"nom_de_la_commune": "VISSEICHE", "libell_d_acheminement": "VISSEICHE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35359"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204619153ee9b82485278e287d2a8bac47b68163", "fields": {"nom_de_la_commune": "LE VIVIER SUR MER", "libell_d_acheminement": "LE VIVIER SUR MER", "code_postal": "35960", "coordonnees_gps": [48.5973022539, -1.78118761404], "code_commune_insee": "35361"}, "geometry": {"type": "Point", "coordinates": [-1.78118761404, 48.5973022539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e4de7147116d32cae553522d7a993c951a4b87", "fields": {"nom_de_la_commune": "LE TRONCHET", "libell_d_acheminement": "LE TRONCHET", "code_postal": "35540", "coordonnees_gps": [48.5204175583, -1.86964225248], "code_commune_insee": "35362"}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e52ff99de8867a79dbf72f4e1d10f8909584f48", "fields": {"nom_de_la_commune": "AIZE", "libell_d_acheminement": "AIZE", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36002"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b6bb9e30308db712f23088e2017a3a473be0231", "fields": {"nom_de_la_commune": "ARPHEUILLES", "libell_d_acheminement": "ARPHEUILLES", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36008"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db10b6914fd0de77730305b367dbde25137be391", "fields": {"nom_de_la_commune": "LE BLANC", "libell_d_acheminement": "LE BLANC", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36018"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70309ddd7e579da5a949e7dc4aa8b24be88fa01", "fields": {"nom_de_la_commune": "BOUGES LE CHATEAU", "libell_d_acheminement": "BOUGES LE CHATEAU", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36023"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272780073779c25d53ec4b1d243e6a8e9ccf0db3", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36026"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb30dfe0f41b9bcfdd84cc156d949c9ae7abb0f", "fields": {"nom_de_la_commune": "CEAULMONT", "libell_d_acheminement": "CEAULMONT", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36032"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b4831905de1874f0eec9f691232eb33f0831f8", "fields": {"nom_de_la_commune": "CHATILLON SUR INDRE", "libell_d_acheminement": "CHATILLON SUR INDRE", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36045"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daea37cf4c861d7b3ee3a85b5f543827b1d1b132", "fields": {"nom_de_la_commune": "CLUIS", "libell_d_acheminement": "CLUIS", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36056"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b3aebe1024f4199ed42260e12e439eafa5fd4a", "fields": {"nom_de_la_commune": "CONDE", "libell_d_acheminement": "CONDE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36059"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a237162a7239d14789583f04a7f7f421fc84295a", "fields": {"nom_de_la_commune": "DUNET", "libell_d_acheminement": "DUNET", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36067"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2c45f45dd9f58a6b6f0ba82775b5326eb537c4", "fields": {"nom_de_la_commune": "DUN LE POELIER", "libell_d_acheminement": "DUN LE POELIER", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36068"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08175146afc085de30fb02b108d2dc8dabf20cc2", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "36360", "coordonnees_gps": [47.137029518, 1.41123831497], "code_commune_insee": "36072"}, "geometry": {"type": "Point", "coordinates": [1.41123831497, 47.137029518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5860239dbd67f331494785642aeabd2a29e3b228", "fields": {"nom_de_la_commune": "FEUSINES", "libell_d_acheminement": "FEUSINES", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36073"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac95b99ae95b62c8d1b43ced109fa6717a6e312", "fields": {"nom_de_la_commune": "FLERE LA RIVIERE", "libell_d_acheminement": "FLERE LA RIVIERE", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36074"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790c5050de7ffac4cea3c9c0cf73cee7947ecb7c", "fields": {"nom_de_la_commune": "LINGE", "libell_d_acheminement": "LINGE", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36096"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df06a4442b7ca9f493d7767660d2d2a31be513e2", "fields": {"nom_de_la_commune": "LUCAY LE LIBRE", "libell_d_acheminement": "LUCAY LE LIBRE", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36102"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76fbef46a5beb2a87fb0eba9a1c4f92dbd200fe1", "fields": {"nom_de_la_commune": "LUREUIL", "libell_d_acheminement": "LUREUIL", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36105"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76986227595c924d1134ee8d1548523065bc97d", "fields": {"nom_de_la_commune": "LUZERET", "libell_d_acheminement": "LUZERET", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36106"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482bee197ac83fae965ef86edc3e6f1e4edf676d", "fields": {"nom_de_la_commune": "LE MAGNY", "libell_d_acheminement": "LE MAGNY", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36109"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17fb7174d8d6bfcee30d5c58aa2068f04d08582", "fields": {"nom_de_la_commune": "MENETOU SUR NAHON", "libell_d_acheminement": "MENETOU SUR NAHON", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36115"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8570da0cc4548403eaebc41ca94c6c190e7a24bf", "fields": {"nom_de_la_commune": "LE MENOUX", "libell_d_acheminement": "LE MENOUX", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36117"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bfbe06a3d5b211782ab86ff8370b1977326ef70", "fields": {"nom_de_la_commune": "MEZIERES EN BRENNE", "libell_d_acheminement": "MEZIERES EN BRENNE", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36123"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34c31388e47f266f79fe70e59e378a69cb1ac8a", "fields": {"nom_de_la_commune": "MONTGIVRAY", "libell_d_acheminement": "MONTGIVRAY", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36127"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ddb9c4517c0ef3258c7bcac5e7806f17e80de2", "fields": {"nom_de_la_commune": "MOSNAY", "libell_d_acheminement": "MOSNAY", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36131"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9d34fc03d4bd9cfcfe40c8943b0900476ea4b3", "fields": {"nom_de_la_commune": "NEUVY ST SEPULCHRE", "libell_d_acheminement": "NEUVY ST SEPULCHRE", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36141"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f34bd5e3249ef221d3ead4cac6cddf3e6a2af78", "fields": {"nom_de_la_commune": "NIHERNE", "libell_d_acheminement": "NIHERNE", "code_postal": "36250", "coordonnees_gps": [46.7938326835, 1.59829810404], "code_commune_insee": "36142"}, "geometry": {"type": "Point", "coordinates": [1.59829810404, 46.7938326835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3ffbee823ad773f1ea9974fe5b6455299f211e", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36147"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cccdcfb7bb4b687e52700df362cf026f6886b69", "fields": {"nom_de_la_commune": "LE PECHEREAU", "libell_d_acheminement": "LE PECHEREAU", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36154"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc9daf1108e609588d251afd567f7c765a75eef", "fields": {"nom_de_la_commune": "PELLEVOISIN", "libell_d_acheminement": "PELLEVOISIN", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36155"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae0cb36e75df51593a46e0d740d183bd6897d9e", "fields": {"nom_de_la_commune": "LA PEROUILLE", "libell_d_acheminement": "LA PEROUILLE", "code_postal": "36350", "coordonnees_gps": [46.720531376, 1.54304656727], "code_commune_insee": "36157"}, "geometry": {"type": "Point", "coordinates": [1.54304656727, 46.720531376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b020b9bfbcd0e29880c3eadc980d3dc532148bc", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36160"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac974f8d5e0942ddb01fe395824bc2d91af47f52", "fields": {"nom_de_la_commune": "POULAINES", "libell_d_acheminement": "POULAINES", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36162"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2de8fdbe11fb7af956665159cbb38d228f17b7", "fields": {"nom_de_la_commune": "POULIGNY NOTRE DAME", "libell_d_acheminement": "POULIGNY NOTRE DAME", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36163"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01fc5e3dbf01ffafb80331ea58a4af9b939bca47", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36166"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc52b9380d79e9f922e3ecc2dfe8a0da98a58740", "fields": {"nom_de_la_commune": "PRUNIERS", "libell_d_acheminement": "PRUNIERS", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36169"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25067094b32cdad15925ec695f97c04828d504e", "fields": {"nom_de_la_commune": "RIVARENNES", "libell_d_acheminement": "RIVARENNES", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36172"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13c6756c4dc603f843e78395d3d2ebba02da2ca", "fields": {"nom_de_la_commune": "SACIERGES ST MARTIN", "libell_d_acheminement": "SACIERGES ST MARTIN", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36177"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633445ee54f78ca5189babffbc43a07d5017438c", "fields": {"nom_de_la_commune": "ST CIVRAN", "libell_d_acheminement": "ST CIVRAN", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36187"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181b48c09b20f86c52ea42d216407b3d018fe880", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36200"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ecd49d50ce753583cebf5737d88c38046bbba3", "fields": {"nom_de_la_commune": "ST MICHEL EN BRENNE", "libell_d_acheminement": "ST MICHEL EN BRENNE", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36204"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04932d80ce27933cf43d312082e5abc23883bbbc", "fields": {"nom_de_la_commune": "ST PIERRE DE JARDS", "libell_d_acheminement": "ST PIERRE DE JARDS", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36205"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcfbecc67300d1214fb7afed7c70804d1365d771", "fields": {"nom_de_la_commune": "ST PLANTAIRE", "libell_d_acheminement": "ST PLANTAIRE", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36207"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e8e5674c6797d9798a112b3118779cd8773d5f", "fields": {"nom_de_la_commune": "THENAY", "libell_d_acheminement": "THENAY", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36220"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5fea935293359d992e8438bd186078d2dd00c8", "fields": {"nom_de_la_commune": "THIZAY", "libell_d_acheminement": "THIZAY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36222"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d908794596cca830b3b50c3e48f094b79d1d9c0", "fields": {"nom_de_la_commune": "VERNEUIL SUR IGNERAIE", "libell_d_acheminement": "VERNEUIL SUR IGNERAIE", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36234"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddaba2785c8cd584d516895352b7908915f0114e", "fields": {"nom_de_la_commune": "VILLEDIEU SUR INDRE", "libell_d_acheminement": "VILLEDIEU SUR INDRE", "code_postal": "36320", "coordonnees_gps": [46.8445939544, 1.51594825068], "code_commune_insee": "36241"}, "geometry": {"type": "Point", "coordinates": [1.51594825068, 46.8445939544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0f2b17f7d1ed68152fcd094fbd9464b535513f", "fields": {"nom_de_la_commune": "VILLEGONGIS", "libell_d_acheminement": "VILLEGONGIS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36242"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40efad6fbcd045523452f5161b3da6f80800f944", "fields": {"nom_de_la_commune": "VILLENTROIS", "libell_d_acheminement": "VILLENTROIS", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36244"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ddfc04802c9aba32827afcde6e7e35a9bdf95", "fields": {"nom_de_la_commune": "VINEUIL", "libell_d_acheminement": "VINEUIL", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36247"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2651e3b75507a71f95c438c0132760cd44bb0d7", "fields": {"nom_de_la_commune": "ANCHE", "libell_d_acheminement": "ANCHE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37004"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25012e91aa4bbde022f0c778b5158c7bffd4d6c7", "fields": {"nom_de_la_commune": "ASSAY", "libell_d_acheminement": "ASSAY", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37007"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d2e22a325a29e1164a965fd159574f5869c88f", "fields": {"nom_de_la_commune": "AZAY SUR CHER", "libell_d_acheminement": "AZAY SUR CHER", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37015"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0e6cb67e0496a96cce7183bb28ba269ad7d87b", "fields": {"nom_de_la_commune": "BALLAN MIRE", "libell_d_acheminement": "BALLAN MIRE", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37018"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e163383fb2c8100611adcb650a3a50f56b3bc68", "fields": {"nom_de_la_commune": "BRAYE SUR MAULNE", "libell_d_acheminement": "BRAYE SUR MAULNE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37036"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8619bf4b6f5924cf9375b5133d3d73a08d8aa21", "fields": {"nom_de_la_commune": "BRIDORE", "libell_d_acheminement": "BRIDORE", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37039"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a27ab875ef1351628928e99456d5849753719a7", "fields": {"nom_de_la_commune": "BRIZAY", "libell_d_acheminement": "BRIZAY", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37040"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d2aae3a3cac0cad5e93ff5a040966c86eb2b9e", "fields": {"nom_de_la_commune": "LA CELLE ST AVANT", "libell_d_acheminement": "LA CELLE ST AVANT", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37045"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8241c3f43561cbce1c6a2a40e9855820813495", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX NAUX", "libell_d_acheminement": "LA CHAPELLE AUX NAUX", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37056"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dc500b668c9cbebc2a2f0fadbc819af29da39ae", "fields": {"nom_de_la_commune": "CHEMILLE SUR DEME", "libell_d_acheminement": "CHEMILLE SUR DEME", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37068"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8892c0734abef2b49c60460440c9e9a774dbecb", "fields": {"nom_de_la_commune": "CHINON", "libell_d_acheminement": "CHINON", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37072"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e26135b08ad6f9a8b5b242a812c71de4828c7b", "fields": {"nom_de_la_commune": "CINAIS", "libell_d_acheminement": "CINAIS", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37076"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7ebc7ce9b1623d1bae1704773e9ea4568989db", "fields": {"nom_de_la_commune": "CIRAN", "libell_d_acheminement": "CIRAN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37078"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e4cd278a4034ffccbaa02434f5903a6171a775", "fields": {"nom_de_la_commune": "CIVRAY DE TOURAINE", "libell_d_acheminement": "CIVRAY DE TOURAINE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37079"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6478a89347ff2fb6c66f72f4571b4d7ea014d8f", "fields": {"nom_de_la_commune": "CORMERY", "libell_d_acheminement": "CORMERY", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37083"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d654e7811e134437a8ec1610105fe1d9b4cdcd", "fields": {"nom_de_la_commune": "COURCAY", "libell_d_acheminement": "COURCAY", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37085"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a48538a7a57adfbcf7dc2a1df671d57a3316952", "fields": {"nom_de_la_commune": "EPEIGNE LES BOIS", "libell_d_acheminement": "EPEIGNE LES BOIS", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37100"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6f2207525ccb08acb7cf3c2f23fb2f3dd15031", "fields": {"nom_de_la_commune": "FRANCUEIL", "libell_d_acheminement": "FRANCUEIL", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37110"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c147f8bb6aacaae89ba248ab9ce1d7613403998e", "fields": {"nom_de_la_commune": "L ILE BOUCHARD", "libell_d_acheminement": "L ILE BOUCHARD", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37119"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e460c1badc72c8191ad22226e06376fc878158e6", "fields": {"nom_de_la_commune": "VALLE D ALESANI", "libell_d_acheminement": "VALLE D ALESANI", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B334"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b38b00d27a7f671d75b5539e34ddbbe6be9515", "fields": {"nom_de_la_commune": "VALLE DI ROSTINO", "libell_d_acheminement": "VALLE DI ROSTINO", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B337"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd64bb7cfa2b8481f89724a11d3ba223b516f45", "fields": {"code_postal": "20240", "code_commune_insee": "2B342", "libell_d_acheminement": "VENTISERI", "ligne_5": "MIGNATAJA", "nom_de_la_commune": "VENTISERI", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c1477b969424ef1d3ba826fc137b9e08c6b6119", "fields": {"code_postal": "20240", "code_commune_insee": "2B342", "libell_d_acheminement": "VENTISERI", "ligne_5": "TRAVO", "nom_de_la_commune": "VENTISERI", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ed50765fdd23e5fe54944f82733ea1475780ad", "fields": {"nom_de_la_commune": "VENZOLASCA", "libell_d_acheminement": "VENZOLASCA", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B343"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "500e92237d25193ec38acdef9322888fccee98f4", "fields": {"nom_de_la_commune": "VESCOVATO", "libell_d_acheminement": "VESCOVATO", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B346"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1512a93a33376ac5b771a6eb696ac308acd5354e", "fields": {"nom_de_la_commune": "VIGNALE", "libell_d_acheminement": "VIGNALE", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B350"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a4d0530b058309a8b153bb31ecdd9d15a0bf9a", "fields": {"code_postal": "20219", "code_commune_insee": "2B354", "libell_d_acheminement": "VIVARIO", "ligne_5": "VIZZAVONA", "nom_de_la_commune": "VIVARIO", "coordonnees_gps": [42.1546750022, 9.13106391385]}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bc21c5b22daad8b788514cb9bd430e1e6d6543", "fields": {"nom_de_la_commune": "CHAUSSOY EPAGNY", "libell_d_acheminement": "CHAUSSOY EPAGNY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80188"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17c19731e60e6929198d261bbff58be974020e5", "fields": {"nom_de_la_commune": "CHUIGNES", "libell_d_acheminement": "CHUIGNES", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80194"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31d5c8bd65d621cf0bc470452146e37b134dbf3", "fields": {"nom_de_la_commune": "CIZANCOURT", "libell_d_acheminement": "CIZANCOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80197"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b433ddfefc0df2a611b1e15cb84eb5a297a521", "fields": {"nom_de_la_commune": "CLERY SUR SOMME", "libell_d_acheminement": "CLERY SUR SOMME", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80199"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "396c96657eef337e72a879b1a451165110325a49", "fields": {"nom_de_la_commune": "COCQUEREL", "libell_d_acheminement": "COCQUEREL", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80200"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9734a72418b19b17539deec9cf93d688bd2997df", "fields": {"nom_de_la_commune": "CONDE FOLIE", "libell_d_acheminement": "CONDE FOLIE", "code_postal": "80890", "coordonnees_gps": [50.0032537045, 2.02227175079], "code_commune_insee": "80205"}, "geometry": {"type": "Point", "coordinates": [2.02227175079, 50.0032537045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cd70f8d524002e6a9cf04db85a77db8c982247", "fields": {"nom_de_la_commune": "CONTALMAISON", "libell_d_acheminement": "CONTALMAISON", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80206"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff582a982ed4a329fc66cf4e4430f04c92249d8", "fields": {"nom_de_la_commune": "CONTRE", "libell_d_acheminement": "CONTRE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80210"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c2987220c6869a82b9731bb8f9b3e2dafbf9e4", "fields": {"nom_de_la_commune": "CONTY", "libell_d_acheminement": "CONTY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80211"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07285a5a95462048ef7ccc6c9b00d91796b96484", "fields": {"nom_de_la_commune": "COURCELLES SOUS MOYENCOURT", "libell_d_acheminement": "COURCELLES SOUS MOYENCOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80218"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44821a4b6e6cbca1ddc6aeb7a64530542b7ac130", "fields": {"nom_de_la_commune": "COURCELLES SOUS THOIX", "libell_d_acheminement": "COURCELLES SOUS THOIX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80219"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a3326b97b9d7b8a2733e4c6641667b3b361294", "fields": {"code_postal": "80190", "code_commune_insee": "80230", "libell_d_acheminement": "CURCHY", "ligne_5": "MANICOURT", "nom_de_la_commune": "CURCHY", "coordonnees_gps": [49.7735190405, 2.91598423819]}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0fdb3fc6fd32b29144f7a1e7d21c74bf5da335", "fields": {"nom_de_la_commune": "CURLU", "libell_d_acheminement": "CURLU", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80231"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce0b311f8dd924a6971ddf1c02805794afd9868", "fields": {"nom_de_la_commune": "DAMERY", "libell_d_acheminement": "DAMERY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80232"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb91ba106e57f022fb9b1ef4bf27e924fd348078", "fields": {"nom_de_la_commune": "DAOURS", "libell_d_acheminement": "DAOURS", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80234"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25fe32cce76661795d260bd50c37f8f3cd3962c9", "fields": {"nom_de_la_commune": "DARGNIES", "libell_d_acheminement": "DARGNIES", "code_postal": "80570", "coordonnees_gps": [50.0369511716, 1.54351875131], "code_commune_insee": "80235"}, "geometry": {"type": "Point", "coordinates": [1.54351875131, 50.0369511716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18fc5572905d70bd39af18b42a59376a662175f2", "fields": {"nom_de_la_commune": "DAVENESCOURT", "libell_d_acheminement": "DAVENESCOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80236"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12380eb12dd229768ad3dd579c6c620848eb6eb", "fields": {"nom_de_la_commune": "DOMART EN PONTHIEU", "libell_d_acheminement": "DOMART EN PONTHIEU", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80241"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0bdd227fe770122e90e060ede13501213cc1eab", "fields": {"nom_de_la_commune": "DOMPIERRE SUR AUTHIE", "libell_d_acheminement": "DOMPIERRE SUR AUTHIE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80248"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ee0f2687bb4a3c0434ab08f2834c0d3b8bb294", "fields": {"nom_de_la_commune": "DOMVAST", "libell_d_acheminement": "DOMVAST", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80250"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f528c0e0a7522793ae171a4fb35c4633dbb6d1e", "fields": {"nom_de_la_commune": "DOUDELAINVILLE", "libell_d_acheminement": "DOUDELAINVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80251"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e50881a1d2a8039fefb58d3c6a175a24eafb15", "fields": {"nom_de_la_commune": "EPAUMESNIL", "libell_d_acheminement": "EPAUMESNIL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80269"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b01795d43a23561d953daebd15cd746e123681e7", "fields": {"nom_de_la_commune": "EPECAMPS", "libell_d_acheminement": "EPECAMPS", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80270"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cc0427bce714a91f0791f0c71a271cc36a634b", "fields": {"nom_de_la_commune": "EQUENNES ERAMECOURT", "libell_d_acheminement": "EQUENNES ERAMECOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80276"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab04e8ab6ba39b913c2e3cd696d57df39c71620", "fields": {"nom_de_la_commune": "ERCOURT", "libell_d_acheminement": "ERCOURT", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80280"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2c4e3d6116e5e62bf15e530fa026f0bb569457", "fields": {"nom_de_la_commune": "ERONDELLE", "libell_d_acheminement": "ERONDELLE", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80282"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85609e84c2c9b9622b0148b777a393edaaacbe88", "fields": {"nom_de_la_commune": "ETERPIGNY", "libell_d_acheminement": "ETERPIGNY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80294"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4e6d969b7f9576001f8892180df4afe6b79c00", "fields": {"nom_de_la_commune": "ETINEHEM", "libell_d_acheminement": "ETINEHEM", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80295"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a66181961dfd68e45939636f9ea3cb5563f301b", "fields": {"nom_de_la_commune": "ETREJUST", "libell_d_acheminement": "ETREJUST", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80297"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87eb7701c96eaa443cbe4a838a83848523549bc1", "fields": {"nom_de_la_commune": "FESCAMPS", "libell_d_acheminement": "FESCAMPS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80306"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b4adb0c12fb2e89745ccf5cd33de67c72d346d", "fields": {"nom_de_la_commune": "FIENVILLERS", "libell_d_acheminement": "FIENVILLERS", "code_postal": "80750", "coordonnees_gps": [50.1069765579, 2.26231827427], "code_commune_insee": "80310"}, "geometry": {"type": "Point", "coordinates": [2.26231827427, 50.1069765579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6020d9bc477b7f7a13d07f59e22a9700965958d", "fields": {"nom_de_la_commune": "FLERS", "libell_d_acheminement": "FLERS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80314"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3705b2cf2845c2ca63e300b6ced00ecde9c5f39", "fields": {"nom_de_la_commune": "FLIXECOURT", "libell_d_acheminement": "FLIXECOURT", "code_postal": "80420", "coordonnees_gps": [50.0231078641, 2.0845688682], "code_commune_insee": "80318"}, "geometry": {"type": "Point", "coordinates": [2.0845688682, 50.0231078641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846eb03332501091d6dcb8c3a511ab0446f185c6", "fields": {"nom_de_la_commune": "FOUENCAMPS", "libell_d_acheminement": "FOUENCAMPS", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80337"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d2dc516b1867f04a99e40ddbaf7221fe83cc20", "fields": {"nom_de_la_commune": "FRANSU", "libell_d_acheminement": "FRANSU", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80348"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59485b58d986702f46d2cc06d341763c59a46f96", "fields": {"nom_de_la_commune": "FRESNES TILLOLOY", "libell_d_acheminement": "FRESNES TILLOLOY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80354"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9bcc85b555f54144ec01962d043ce45ca1e5969", "fields": {"nom_de_la_commune": "FRESNOY AU VAL", "libell_d_acheminement": "FRESNOY AU VAL", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80357"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f06c2fec96c891b02688c1dc1c03243e456abf", "fields": {"nom_de_la_commune": "FRESNOY EN CHAUSSEE", "libell_d_acheminement": "FRESNOY EN CHAUSSEE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80358"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d737c22e086c1831913d2e1a36a8fc1ad527b0fa", "fields": {"nom_de_la_commune": "FRETTEMEULE", "libell_d_acheminement": "FRETTEMEULE", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80362"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ff32449bc96a3203c2b728aeb369b1634ccce5", "fields": {"nom_de_la_commune": "GAUVILLE", "libell_d_acheminement": "GAUVILLE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80375"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fa006e65b493394b594e8e1db07b7ddeb3867b", "fields": {"nom_de_la_commune": "GENTELLES", "libell_d_acheminement": "GENTELLES", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80376"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1eaedb3ec1056e5d80955d765281af6f4885cd", "fields": {"nom_de_la_commune": "GEZAINCOURT", "libell_d_acheminement": "GEZAINCOURT", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80377"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c43a0feecf2921ca621a2e886e68a5ed30f23f", "fields": {"nom_de_la_commune": "HALLU", "libell_d_acheminement": "HALLU", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80409"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a097ffc19b5827be5866208279007e8411923f6a", "fields": {"nom_de_la_commune": "HANCOURT", "libell_d_acheminement": "HANCOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80413"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97033084ebb9f275a3564b5a64350eff6993f5d0", "fields": {"nom_de_la_commune": "HERLY", "libell_d_acheminement": "HERLY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80433"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f91c4d95f7e17249921d48e1bef4e188bd2f74", "fields": {"nom_de_la_commune": "HERVILLY", "libell_d_acheminement": "HERVILLY", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80434"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b2cfdd5e4f71483f0949f93596686371a08c3a", "fields": {"nom_de_la_commune": "HESBECOURT", "libell_d_acheminement": "HESBECOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80435"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c3e0855fc02d6f051411dea8f2139b4d5d4c48", "fields": {"nom_de_la_commune": "HEUCOURT CROQUOISON", "libell_d_acheminement": "HEUCOURT CROQUOISON", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80437"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c454b56aea9c2886dff0cec0ee21570075f8aa8b", "fields": {"nom_de_la_commune": "HORNOY LE BOURG", "libell_d_acheminement": "HORNOY LE BOURG", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80443"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49bdb69af2a090f922d53f36604dadc57d47c3f", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "ORIVAL", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb03ac26c9d36ccd89dea04ea4fe6fb456f1f3fb", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "TRONCHOY", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0a2764724968bbeec1d231b9a275849b5b090ef", "fields": {"nom_de_la_commune": "INVAL BOIRON", "libell_d_acheminement": "INVAL BOIRON", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80450"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a42e569a755326a49d940942607eb5cb2a0b2ca", "fields": {"nom_de_la_commune": "LABOISSIERE EN SANTERRE", "libell_d_acheminement": "LABOISSIERE EN SANTERRE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80453"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7119802c9413cd5f64623cabe16d199bb0c1a94", "fields": {"nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80456"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f084c9eb1b811508922d0b353fc9660aadb2ccd", "fields": {"code_postal": "80430", "code_commune_insee": "80456", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "ligne_5": "LABOISSIERE ST MARTIN", "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c75b3247c6831f0168b5e8cec77d0f68823889", "fields": {"code_postal": "80800", "code_commune_insee": "80463", "libell_d_acheminement": "LAMOTTE WARFUSEE", "ligne_5": "WARFUSEE ABANCOURT", "nom_de_la_commune": "LAMOTTE WARFUSEE", "coordonnees_gps": [49.9016470659, 2.53555403839]}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a09ad967b79bcad574d148f5c9dda6975cfde4c", "fields": {"nom_de_la_commune": "LANCHERES", "libell_d_acheminement": "LANCHERES", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80464"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096412a17f8cfacdcf0bfd37fca613de892798cf", "fields": {"nom_de_la_commune": "LANGUEVOISIN QUIQUERY", "libell_d_acheminement": "LANGUEVOISIN QUIQUERY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80465"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abedf6689fdffd02b6f9ff025f45b428c05b937c", "fields": {"nom_de_la_commune": "LAUCOURT", "libell_d_acheminement": "LAUCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80467"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dbebdcca57f3f1d89d81ee7e0735be5497136c", "fields": {"nom_de_la_commune": "LAWARDE MAUGER L HORTOY", "libell_d_acheminement": "LAWARDE MAUGER L HORTOY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80469"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b89b198efbf93b970c60c5a9e9b6fbc6d9f9c27", "fields": {"nom_de_la_commune": "LICOURT", "libell_d_acheminement": "LICOURT", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80474"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c619af813e43d661e5586c8d3df541bd04de2604", "fields": {"nom_de_la_commune": "LOEUILLY", "libell_d_acheminement": "LOEUILLY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80485"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9434d736014f96de60b7838ba5c324243c194af", "fields": {"nom_de_la_commune": "LOUVENCOURT", "libell_d_acheminement": "LOUVENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80493"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ca9bad46e9a9ddaefc4c196522584c3b525f57", "fields": {"nom_de_la_commune": "MAILLY RAINEVAL", "libell_d_acheminement": "MAILLY RAINEVAL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80499"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e5c35cd1b25488b7b02fee9776bd75555eb281", "fields": {"nom_de_la_commune": "MARCHELEPOT", "libell_d_acheminement": "MARCHELEPOT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80509"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8359788cb20ede7f23a93a8aa728c0129a6baa9d", "fields": {"nom_de_la_commune": "MARICOURT", "libell_d_acheminement": "MARICOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80513"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910899f7b6386afafa7ce1d5f2c40520face2c76", "fields": {"nom_de_la_commune": "MARTAINNEVILLE", "libell_d_acheminement": "MARTAINNEVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80518"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b8500a116c27b34f75831f8d9e2ed23124eae8", "fields": {"nom_de_la_commune": "MAUCOURT", "libell_d_acheminement": "MAUCOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80520"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982948468efb76b0d000020e476bfddd2cf7e587", "fields": {"nom_de_la_commune": "MENESLIES", "libell_d_acheminement": "MENESLIES", "code_postal": "80520", "coordonnees_gps": [50.0605501817, 1.51862547548], "code_commune_insee": "80527"}, "geometry": {"type": "Point", "coordinates": [1.51862547548, 50.0605501817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a6b4dfb76614490c06975b286bef514080a3c9", "fields": {"nom_de_la_commune": "MERELESSART", "libell_d_acheminement": "MERELESSART", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80529"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac2dac7bcab070fff7992a2b47235e3839ec008", "fields": {"nom_de_la_commune": "MERICOURT SUR SOMME", "libell_d_acheminement": "MERICOURT SUR SOMME", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80532"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f1e2151060896fe6cde6e8dc88116dabeea45ec", "fields": {"nom_de_la_commune": "MESNIL BRUNTEL", "libell_d_acheminement": "MESNIL BRUNTEL", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80536"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b55876fb33fcfcadfdddd617e1ed0b876122d76", "fields": {"nom_de_la_commune": "MESNIL ST GEORGES", "libell_d_acheminement": "MESNIL ST GEORGES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80541"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019877cc7c132f9416695eece5ac2df402e6a64f", "fields": {"nom_de_la_commune": "MONS BOUBERT", "libell_d_acheminement": "MONS BOUBERT", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80556"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a3226e76da2fcea4d28760676726a20495fada", "fields": {"code_postal": "80200", "code_commune_insee": "80557", "libell_d_acheminement": "ESTREES MONS", "ligne_5": "ESTREES EN CHAUSSEE", "nom_de_la_commune": "ESTREES MONS", "coordonnees_gps": [49.9092274559, 2.93799194086]}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325287142cac80c36e35966a2ba6fdaa36cce33a", "fields": {"nom_de_la_commune": "MONTAUBAN DE PICARDIE", "libell_d_acheminement": "MONTAUBAN DE PICARDIE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80560"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759ceed4bfcdc5b84e000f5bdc6a66a61d1747db", "fields": {"nom_de_la_commune": "MONTDIDIER", "libell_d_acheminement": "MONTDIDIER", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80561"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff9164d32c29f6b0c64f00187beb21ddf6b2350e", "fields": {"nom_de_la_commune": "MONTIGNY SUR L HALLUE", "libell_d_acheminement": "MONTIGNY SUR L HALLUE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80562"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c04ee701c0ee3c8cb9216c32449979726168572", "fields": {"code_postal": "80670", "code_commune_insee": "80566", "libell_d_acheminement": "FIEFFES MONTRELET", "ligne_5": "FIEFFES", "nom_de_la_commune": "FIEFFES MONTRELET", "coordonnees_gps": [50.0646181987, 2.22461051282]}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cdf2879aa03596746abb94b79e38b1eb31edd8", "fields": {"nom_de_la_commune": "MORCOURT", "libell_d_acheminement": "MORCOURT", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80569"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e2d182d64df26eb71d095a336ee6c21251ff2d", "fields": {"nom_de_la_commune": "MORISEL", "libell_d_acheminement": "MORISEL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80571"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9542d7e94254af234b5aa9f2537b7a5ecf02c1d5", "fields": {"code_postal": "80290", "code_commune_insee": "80573", "libell_d_acheminement": "MORVILLERS ST SATURNIN", "ligne_5": "DIGEON", "nom_de_la_commune": "MORVILLERS ST SATURNIN", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfe772d3ccc79f94e7d00a233b474a4812c0a3b", "fields": {"nom_de_la_commune": "NESLE L HOPITAL", "libell_d_acheminement": "NESLE L HOPITAL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80586"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3037828bedeabae6ecc89f8223101ebae16604a", "fields": {"nom_de_la_commune": "NEUVILLE COPPEGUEULE", "libell_d_acheminement": "NEUVILLE COPPEGUEULE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80592"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbdefd39f76581da0f691bb032feea1cc837458a", "fields": {"nom_de_la_commune": "NEUVILLE LES LOEUILLY", "libell_d_acheminement": "NEUVILLE LES LOEUILLY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80594"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebfc1db30c562576eacc0699d1e3f62806fe487", "fields": {"nom_de_la_commune": "LA NEUVILLE SIRE BERNARD", "libell_d_acheminement": "LA NEUVILLE SIRE BERNARD", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80595"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11bd0a6babd32b4080a4eb91df7d4c551b74d0c", "fields": {"nom_de_la_commune": "NIBAS", "libell_d_acheminement": "NIBAS", "code_postal": "80390", "coordonnees_gps": [50.081035948, 1.5796731248], "code_commune_insee": "80597"}, "geometry": {"type": "Point", "coordinates": [1.5796731248, 50.081035948]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28ee6ad4118959140cbd75c91d3704ebb8401c7", "fields": {"nom_de_la_commune": "NURLU", "libell_d_acheminement": "NURLU", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80601"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2087bccef79dd5d353475fe5df9397283d84d275", "fields": {"nom_de_la_commune": "OFFOY", "libell_d_acheminement": "OFFOY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80605"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1a749f036381f6fb7fd78540933a393335169c", "fields": {"nom_de_la_commune": "OISSY", "libell_d_acheminement": "OISSY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80607"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ae9f3e5de913bcce7aab3fde44e4a45fbb783c6", "fields": {"nom_de_la_commune": "ORESMAUX", "libell_d_acheminement": "ORESMAUX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80611"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5464ecc091b44a7e7ded48f197a4169c56d8bfe", "fields": {"nom_de_la_commune": "PIERREGOT", "libell_d_acheminement": "PIERREGOT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80624"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2cbe3d02bb59b704e2e130e8448f756d02c0f5", "fields": {"nom_de_la_commune": "MONTJUSTIN", "libell_d_acheminement": "MONTJUSTIN", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04129"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d90dc391637011fc2c010025735b5d0be58809", "fields": {"nom_de_la_commune": "MONTFURON", "libell_d_acheminement": "MONTFURON", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04128"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f3f54ca7404e0325592455427bbaac9c5dd252", "fields": {"nom_de_la_commune": "MARCOUX", "libell_d_acheminement": "MARCOUX", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04113"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c938dca25117fec4046a4657bd93a4ec9b6748", "fields": {"nom_de_la_commune": "MORIEZ", "libell_d_acheminement": "MORIEZ", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04133"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a7941d97e23dbd9ad25424fba5a5131117eaf2", "fields": {"nom_de_la_commune": "MISON", "libell_d_acheminement": "MISON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04123"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8be5360ccaa4401a88fbb6df6cd014d6d32064", "fields": {"nom_de_la_commune": "MOLINES EN QUEYRAS", "libell_d_acheminement": "MOLINES EN QUEYRAS", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05077"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f8f73d6e1facd2ed029a5fa4355c2ddbfe6fa94", "fields": {"nom_de_la_commune": "MONETIER ALLEMONT", "libell_d_acheminement": "MONETIER ALLEMONT", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05078"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d347096f0c902dbac087181a28df82325aee307", "fields": {"nom_de_la_commune": "MONTMORIN", "libell_d_acheminement": "MONTMORIN", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05088"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64aa09a147742aaa53b924b8be65adf5dae0ecfe", "fields": {"nom_de_la_commune": "MONTMAUR", "libell_d_acheminement": "MONTMAUR", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05087"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2dd2fdfe30eac0cfb60e4add1860df5610a05c", "fields": {"nom_de_la_commune": "LE NOYER", "libell_d_acheminement": "LE NOYER", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05095"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ea6628bdc499b6a03723b7b4bad64d30e6dd65", "fields": {"nom_de_la_commune": "MEREUIL", "libell_d_acheminement": "MEREUIL", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05076"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12176b785c9be7ab8926b800079a7ffbb24c3c9", "fields": {"nom_de_la_commune": "LE POET", "libell_d_acheminement": "LE POET", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05103"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0512c7bd0400525973fdc858593560961ed0157e", "fields": {"nom_de_la_commune": "RABOU", "libell_d_acheminement": "RABOU", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05112"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1df392fa646b34b1e93087698df246cc04bfc1", "fields": {"nom_de_la_commune": "LAZER", "libell_d_acheminement": "LAZER", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05073"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3d5648acbe4b60338326437f097604a8b04801", "fields": {"code_postal": "04400", "code_commune_insee": "04226", "libell_d_acheminement": "UVERNET FOURS", "ligne_5": "PRA LOUP", "nom_de_la_commune": "UVERNET FOURS", "coordonnees_gps": [44.3554624604, 6.65679459978]}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3760db5e3769d25e0a5a4ebe93c5bb06fa83d811", "fields": {"nom_de_la_commune": "ST JULIEN DU VERDON", "libell_d_acheminement": "ST JULIEN DU VERDON", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04183"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8846cc7d069930d8496a2a6d48a6ee7410503aec", "fields": {"nom_de_la_commune": "ST MARTIN LES EAUX", "libell_d_acheminement": "ST MARTIN LES EAUX", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04190"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a8f955e2b6d4c6c4ff020c8f132fd4cf888f86", "fields": {"nom_de_la_commune": "UVERNET FOURS", "libell_d_acheminement": "UVERNET FOURS", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04226"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6d6bafb511c609b0b638991f6f3852c9626d04", "fields": {"nom_de_la_commune": "VALAVOIRE", "libell_d_acheminement": "VALAVOIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04228"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ee33d90a7d412d5ae6b70fbecd1c8ce8855aa1", "fields": {"nom_de_la_commune": "STE TULLE", "libell_d_acheminement": "STE TULLE", "code_postal": "04220", "coordonnees_gps": [43.7711056931, 5.75846047346], "code_commune_insee": "04197"}, "geometry": {"type": "Point", "coordinates": [5.75846047346, 43.7711056931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc38ff0a4ae67c7af21ecb69949ddfbc3b9f2262", "fields": {"nom_de_la_commune": "SALIGNAC", "libell_d_acheminement": "SALIGNAC", "code_postal": "04290", "coordonnees_gps": [44.1438661231, 6.02689394814], "code_commune_insee": "04200"}, "geometry": {"type": "Point", "coordinates": [6.02689394814, 44.1438661231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185854aedd4c00182a34a672fd22bcb3b5c4ff19", "fields": {"nom_de_la_commune": "VENTEROL", "libell_d_acheminement": "VENTEROL", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "04234"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81a54ea8936737e93723a3d7b5ab93ac791af99", "fields": {"nom_de_la_commune": "VILLEMUS", "libell_d_acheminement": "VILLEMUS", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04241"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49cda01e2e3ab712c124ce29dfc931988a989e75", "fields": {"nom_de_la_commune": "ST PONS", "libell_d_acheminement": "ST PONS", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04195"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a14c084bc260db01e55024f73ee2856090927e", "fields": {"code_postal": "05300", "code_commune_insee": "05118", "libell_d_acheminement": "VAL BUECH MEOUGE", "ligne_5": "CHATEAUNEUF DE CHABRE", "nom_de_la_commune": "VAL BUECH MEOUGE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb30ee74638962b84e13facb0fc55bea8df49f4", "fields": {"code_postal": "05300", "code_commune_insee": "05118", "libell_d_acheminement": "VAL BUECH MEOUGE", "ligne_5": "RIBIERS", "nom_de_la_commune": "VAL BUECH MEOUGE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b48ad5f1f5907db4d3fcbb4c917fabf66522ce", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "AGNIERES EN DEVOLUY", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8981a80c94895d79e17a79bcd23f80747ea598f2", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "SUPERDEVOLUY", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f36f7bb978f6917183e1adad9caf91b5e817baa", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "ST DISDIER", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3cd918df66d6729d7c845fb47a239c94b8e1c4", "fields": {"nom_de_la_commune": "ST CLEMENT SUR DURANCE", "libell_d_acheminement": "ST CLEMENT SUR DURANCE", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05134"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3dd2d245f6cf8a9aeeeaf6a8248eb0dad8fad5", "fields": {"nom_de_la_commune": "ST JEAN ST NICOLAS", "libell_d_acheminement": "ST JEAN ST NICOLAS", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05145"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a7c271a590ac969d444ed917d45eaf6eb9422a", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05135"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0b584744993a358d0584715806581a111cfa769", "fields": {"nom_de_la_commune": "REALLON", "libell_d_acheminement": "REALLON", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05114"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8c51d0d8d988bd24183fff1c61feb73db38976", "fields": {"nom_de_la_commune": "BEAULIEU SUR MER", "libell_d_acheminement": "BEAULIEU SUR MER", "code_postal": "06310", "coordonnees_gps": [43.7085739948, 7.33186986482], "code_commune_insee": "06011"}, "geometry": {"type": "Point", "coordinates": [7.33186986482, 43.7085739948]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4619193b566a86bf03acb0249079340a5b9af7c0", "fields": {"nom_de_la_commune": "VILLAR LOUBIERE", "libell_d_acheminement": "VILLAR LOUBIERE", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05182"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff192395deccf23c026972e9f2d96a9849a6677", "fields": {"nom_de_la_commune": "ST PIERRE AVEZ", "libell_d_acheminement": "ST PIERRE AVEZ", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05155"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65032c25facee232a2beb18bd63af1efea3b24de", "fields": {"nom_de_la_commune": "SIGOTTIER", "libell_d_acheminement": "SIGOTTIER", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05167"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d029d913f1ee73ee1906453423e433160d7126", "fields": {"nom_de_la_commune": "BELVEDERE", "libell_d_acheminement": "BELVEDERE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06013"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0784c18cf33029c0ad12a2aa4a7d064fe64e2033", "fields": {"nom_de_la_commune": "LA SAULCE", "libell_d_acheminement": "LA SAULCE", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05162"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab847c258002cc8beef38f3826abf7a74664eb25", "fields": {"nom_de_la_commune": "LE SAIX", "libell_d_acheminement": "LE SAIX", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05158"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe37007c9fa43d447fc6b5d8e43654dab9c2a424", "fields": {"nom_de_la_commune": "TALLARD", "libell_d_acheminement": "TALLARD", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05170"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49faea94b77bc485fae3ddfdcdb4a8cddafac344", "fields": {"nom_de_la_commune": "LA BOLLENE VESUBIE", "libell_d_acheminement": "LA BOLLENE VESUBIE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06020"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3bc3b4e343a36eeaf5b8dfb7d05f805af303c62", "fields": {"nom_de_la_commune": "BERRE LES ALPES", "libell_d_acheminement": "BERRE LES ALPES", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06015"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9d04b733ddd5cf077a8f1b49b4ef9b68ad653c", "fields": {"nom_de_la_commune": "CASTAGNIERS", "libell_d_acheminement": "CASTAGNIERS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06034"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd44c02d4f27155ddf41a0769c3ccb0ad5dfbd6", "fields": {"nom_de_la_commune": "CASTELLAR", "libell_d_acheminement": "CASTELLAR", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06035"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f4e18b6273a5929b9324c3725a91d8c08c21d9", "fields": {"nom_de_la_commune": "CIPIERES", "libell_d_acheminement": "CIPIERES", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06041"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43867c4c0be211f674cd3b1a02bb44c1e922584d", "fields": {"nom_de_la_commune": "COARAZE", "libell_d_acheminement": "COARAZE", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06043"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d2389e4d689a328c7552afcae41f877d0374773", "fields": {"nom_de_la_commune": "CARROS", "libell_d_acheminement": "CARROS", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06033"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4ae23818fca39d44c522665920f65cf36e1777", "fields": {"nom_de_la_commune": "CONTES", "libell_d_acheminement": "CONTES", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06048"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d397fde710b24c09e370a970cdef9cc16f0412", "fields": {"nom_de_la_commune": "LA ROQUETTE SUR SIAGNE", "libell_d_acheminement": "LA ROQUETTE SUR SIAGNE", "code_postal": "06550", "coordonnees_gps": [43.5852300356, 6.94977873957], "code_commune_insee": "06108"}, "geometry": {"type": "Point", "coordinates": [6.94977873957, 43.5852300356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657dafe91b5539bb41178e318b9e5d9278b489ac", "fields": {"nom_de_la_commune": "MANDELIEU LA NAPOULE", "libell_d_acheminement": "MANDELIEU LA NAPOULE", "code_postal": "06210", "coordonnees_gps": [43.5382980817, 6.91782917147], "code_commune_insee": "06079"}, "geometry": {"type": "Point", "coordinates": [6.91782917147, 43.5382980817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe3bae0d67cf31803b3872a44597d20b51983e9", "fields": {"nom_de_la_commune": "REVEST LES ROCHES", "libell_d_acheminement": "REVEST LES ROCHES", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06100"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e217a137fd2a28d2a29ea054f155d09d2390175b", "fields": {"nom_de_la_commune": "MOUANS SARTOUX", "libell_d_acheminement": "MOUANS SARTOUX", "code_postal": "06370", "coordonnees_gps": [43.6185114437, 6.96458568918], "code_commune_insee": "06084"}, "geometry": {"type": "Point", "coordinates": [6.96458568918, 43.6185114437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3976ed91146cee216218a84ccab5c10465e1142", "fields": {"nom_de_la_commune": "LES FERRES", "libell_d_acheminement": "LES FERRES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06061"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8f4dbfff8ab092c636ca5f28e8e09245c90e60", "fields": {"nom_de_la_commune": "FALICON", "libell_d_acheminement": "FALICON", "code_postal": "06950", "coordonnees_gps": [43.7524734133, 7.26485123417], "code_commune_insee": "06060"}, "geometry": {"type": "Point", "coordinates": [7.26485123417, 43.7524734133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb884b8b3dff06e933b8300bf234b57b160f421", "fields": {"nom_de_la_commune": "ROUBION", "libell_d_acheminement": "ROUBION", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06110"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c69ddd8430d8dafd6ac6c323fef1250d623bcc", "fields": {"nom_de_la_commune": "GORBIO", "libell_d_acheminement": "GORBIO", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06067"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d469b4664a6bd674b69bc1768e7cdf8dd7dedb2f", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06100", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54c287beffa2a4c2aad9f94e4444811aa0a219e", "fields": {"nom_de_la_commune": "EZE", "libell_d_acheminement": "EZE", "code_postal": "06360", "coordonnees_gps": [43.729145316, 7.36098672759], "code_commune_insee": "06059"}, "geometry": {"type": "Point", "coordinates": [7.36098672759, 43.729145316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6e6ee93ce5ea74922b6d6e8acab3306a1a0156e", "fields": {"code_postal": "07140", "code_commune_insee": "07147", "libell_d_acheminement": "MALARCE SUR LA THINES", "ligne_5": "LAFIGERE", "nom_de_la_commune": "MALARCE SUR LA THINES", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e98813bf9174a1eb8e9912d5d6eb3f844328f59", "fields": {"nom_de_la_commune": "GILHAC ET BRUZAC", "libell_d_acheminement": "GILHAC ET BRUZAC", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07094"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e24293cd395a28f5483575740f982f6474bb0e3", "fields": {"nom_de_la_commune": "MARCOLS LES EAUX", "libell_d_acheminement": "MARCOLS LES EAUX", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07149"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98b96b1b9f180b2d7637bfdd5ed10945255b069", "fields": {"nom_de_la_commune": "LACHAMP RAPHAEL", "libell_d_acheminement": "LACHAMP RAPHAEL", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07120"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50dddfc002d1ceec331de4d6d360d3d1c8407960", "fields": {"nom_de_la_commune": "EMPURANY", "libell_d_acheminement": "EMPURANY", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07085"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b23018cb96975733e7cd0ffc60f2ce831cbeed", "fields": {"nom_de_la_commune": "LAVEYRUNE", "libell_d_acheminement": "LAVEYRUNE", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "07136"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9ab83448513db574b55d7cde8ca345b1796e7e", "fields": {"nom_de_la_commune": "LAGORCE", "libell_d_acheminement": "LAGORCE", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07126"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5a309deeba654e4ab42496a0b6f08dc0ed6060", "fields": {"nom_de_la_commune": "MARS", "libell_d_acheminement": "MARS", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07151"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef136b6588ffc97b108acab88d1776356fcf81fa", "fields": {"code_postal": "07120", "code_commune_insee": "07207", "libell_d_acheminement": "ST ALBAN AURIOLLES", "ligne_5": "AURIOLLES", "nom_de_la_commune": "ST ALBAN AURIOLLES", "coordonnees_gps": [44.4494191927, 4.32528793215]}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d851f7f521f10c48bf632d28994494df6678f7", "fields": {"nom_de_la_commune": "ST APOLLINAIRE DE RIAS", "libell_d_acheminement": "ST APOLLINAIRE DE RIAS", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07214"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af0e35e0840b8409bb3524cc49c5ee126cbffe2", "fields": {"nom_de_la_commune": "ST BARTHELEMY LE MEIL", "libell_d_acheminement": "ST BARTHELEMY LE MEIL", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07215"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a15f6fdbc8bf9ae7c35a30b8a18dca79df61ca1", "fields": {"nom_de_la_commune": "ROCHEPAULE", "libell_d_acheminement": "ROCHEPAULE", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07192"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002d1d11ccf3861d8b128ca3eea022243a19b0a1", "fields": {"nom_de_la_commune": "ROCHEMAURE", "libell_d_acheminement": "ROCHEMAURE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07191"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc7edd571eb2e0f6683a130617412514bc394e7", "fields": {"nom_de_la_commune": "ROIFFIEUX", "libell_d_acheminement": "ROIFFIEUX", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07197"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928cb2f04f7c12362cc03038f141b6123eb7f209", "fields": {"nom_de_la_commune": "ST BASILE", "libell_d_acheminement": "ST BASILE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07218"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed19f8e6254d70ed7654c7b49d355cd37f2479f8", "fields": {"nom_de_la_commune": "ROMPON", "libell_d_acheminement": "ROMPON", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07198"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5125b7141b4eae38499eadee076e436cd2d7cff4", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07185"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d2f27998a00d2f0d95fc971d082afd11dba0aa", "fields": {"nom_de_la_commune": "ROCHER", "libell_d_acheminement": "ROCHER", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07193"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe25a442ef2839c973dcb6a007f2d37ca9b21e6", "fields": {"nom_de_la_commune": "ST FORTUNAT SUR EYRIEUX", "libell_d_acheminement": "ST FORTUNAT SUR EYRIEUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07237"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5500e2343b0d78e34e544d44724bfeafd115e104", "fields": {"nom_de_la_commune": "ST JEAN LE CENTENIER", "libell_d_acheminement": "ST JEAN LE CENTENIER", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07247"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7550e93a99a543e8d7bfc9987f1976d772bf0211", "fields": {"nom_de_la_commune": "ST GEORGES LES BAINS", "libell_d_acheminement": "ST GEORGES LES BAINS", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07240"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f933124b0a4af527dd253a5c287d5b32b00fad9", "fields": {"nom_de_la_commune": "ST ETIENNE DE SERRE", "libell_d_acheminement": "ST ETIENNE DE SERRE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07233"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7faaad12b198f2521f07434cf6e55ec4538fd100", "fields": {"nom_de_la_commune": "ST JULIEN DU SERRE", "libell_d_acheminement": "ST JULIEN DU SERRE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07254"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f940f00d31c93f695416264d30322d6e43670bb", "fields": {"nom_de_la_commune": "ST JEAN DE MUZOLS", "libell_d_acheminement": "ST JEAN DE MUZOLS", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07245"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417c5646103ac2c5a7d187ab7f4401db7b4586b4", "fields": {"nom_de_la_commune": "ST JEURE D AY", "libell_d_acheminement": "ST JEURE D AY", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07250"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e74a7b4e8f9e5915da8468289d0d33738c6bcc", "fields": {"nom_de_la_commune": "ST CHRISTOL", "libell_d_acheminement": "ST CHRISTOL", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07220"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe54beaa1d23edd62eff3b5d672bb87ca3a3c26a", "fields": {"nom_de_la_commune": "ST FELICIEN", "libell_d_acheminement": "ST FELICIEN", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07236"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f530411bf39eff1f0411746f13b5bca950a9f7", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07226"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4128e7945157391f7eb83ec02143ff2467464a94", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE MAHUN", "libell_d_acheminement": "ST SYMPHORIEN DE MAHUN", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07299"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69abf2ca69774b7621e8e0cb5634a12e90751e73", "fields": {"nom_de_la_commune": "ST MAURICE D ARDECHE", "libell_d_acheminement": "ST MAURICE D ARDECHE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07272"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cade746e28b73290fcf886de3e9690aa5bc149ba", "fields": {"nom_de_la_commune": "ST PIERRE SUR DOUX", "libell_d_acheminement": "ST PIERRE SUR DOUX", "code_postal": "07520", "coordonnees_gps": [45.1121738943, 4.50340666434], "code_commune_insee": "07285"}, "geometry": {"type": "Point", "coordinates": [4.50340666434, 45.1121738943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed1f9a22c0cea12964219a19a0e561e8760ed20", "fields": {"nom_de_la_commune": "ST LAURENT DU PAPE", "libell_d_acheminement": "ST LAURENT DU PAPE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07261"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893eed937c729e3e1169fcee64d3a5bbd74a1a86", "fields": {"nom_de_la_commune": "ST JULIEN LE ROUX", "libell_d_acheminement": "ST JULIEN LE ROUX", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07257"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5558741f5ce829a367e09177b465a83820139f4a", "fields": {"nom_de_la_commune": "ST JULIEN VOCANCE", "libell_d_acheminement": "ST JULIEN VOCANCE", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07258"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283dc7c6f145bb824d02c28190d6df993dc0fe0c", "fields": {"nom_de_la_commune": "ST LAGER BRESSAC", "libell_d_acheminement": "ST LAGER BRESSAC", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07260"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "418a5e6208c562cb28ef53d5c19be0561d67509f", "fields": {"nom_de_la_commune": "ST PRIVAT", "libell_d_acheminement": "ST PRIVAT", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07289"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "861639e1f2c41fe71662f83d294c9dd6b0530458", "fields": {"nom_de_la_commune": "ST SERNIN", "libell_d_acheminement": "ST SERNIN", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07296"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d0a4acefd52f3c5c9d05606a3b91e56ed94b0c", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07290"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7feb4ce635e95af07b8439ca6449c0fc5ac7bf", "fields": {"nom_de_la_commune": "USCLADES ET RIEUTORD", "libell_d_acheminement": "USCLADES ET RIEUTORD", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07326"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3844d087521e86c46420c888e848be47292d36", "fields": {"nom_de_la_commune": "VERNOUX EN VIVARAIS", "libell_d_acheminement": "VERNOUX EN VIVARAIS", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07338"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974a2649ad101755f4dd11d5ada0757a28ae4ce0", "fields": {"nom_de_la_commune": "ST THOME", "libell_d_acheminement": "ST THOME", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07300"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6476faf071a7f5e55df1975e835c1f5316fb429", "fields": {"nom_de_la_commune": "UROST", "libell_d_acheminement": "UROST", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64544"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e62867a48307c58edbc29f0b3323869945c117", "fields": {"code_postal": "64700", "code_commune_insee": "64545", "libell_d_acheminement": "URRUGNE", "ligne_5": "BEHOBIE", "nom_de_la_commune": "URRUGNE", "coordonnees_gps": [43.3477852312, -1.71224103787]}, "geometry": {"type": "Point", "coordinates": [-1.71224103787, 43.3477852312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25855f7ef37f2ca25859a6a3d99a6aae7359d81c", "fields": {"nom_de_la_commune": "UZEIN", "libell_d_acheminement": "UZEIN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64549"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf379bd632a9893a24fad086ea867d249d31f2e", "fields": {"nom_de_la_commune": "VIELLENAVE D ARTHEZ", "libell_d_acheminement": "VIELLENAVE D ARTHEZ", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64554"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8954489b2d1a6c7801adc21e6bf97303f193fa5d", "fields": {"nom_de_la_commune": "VIGNES", "libell_d_acheminement": "VIGNES", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64557"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d37c1eab22d48ebf5e632d712741f3177201a1", "fields": {"nom_de_la_commune": "AGOS VIDALOS", "libell_d_acheminement": "AGOS VIDALOS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65004"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da15be255ee087c6dc279da0e09d647529b7233", "fields": {"nom_de_la_commune": "LES ANGLES", "libell_d_acheminement": "LES ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65011"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdab471cb8700170e7ddd3b4f6f4eb3038db643f", "fields": {"nom_de_la_commune": "ARBEOST", "libell_d_acheminement": "ARBEOST", "code_postal": "65560", "coordonnees_gps": [42.9975341833, -0.255768295954], "code_commune_insee": "65018"}, "geometry": {"type": "Point", "coordinates": [-0.255768295954, 42.9975341833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fde3010b3a8c02969430fb5a63be31abc7911e9", "fields": {"nom_de_la_commune": "ARDENGOST", "libell_d_acheminement": "ARDENGOST", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65023"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2077e715e04034894d38bc7e20d955bbc57ae632", "fields": {"nom_de_la_commune": "ARIES ESPENAN", "libell_d_acheminement": "ARIES ESPENAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65026"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5c31f2321a282f687cf113e0606948e20d6bbc", "fields": {"nom_de_la_commune": "ARRAS EN LAVEDAN", "libell_d_acheminement": "ARRAS EN LAVEDAN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65029"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1695a07ac7b70122541b90f1000e07cc3cb7d5dd", "fields": {"nom_de_la_commune": "ARRODETS EZ ANGLES", "libell_d_acheminement": "ARRODETS EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65033"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8743bf6d98eb108420607440f1520ab9f8ff7288", "fields": {"nom_de_la_commune": "ARTIGUEMY", "libell_d_acheminement": "ARTIGUEMY", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65037"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eeb244a34f8236cfaf49f2af68f0df7c62c8eac", "fields": {"nom_de_la_commune": "ASPIN EN LAVEDAN", "libell_d_acheminement": "ASPIN EN LAVEDAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65040"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce65002b79662e86ca4232f4c65b4ddefd0bd06", "fields": {"nom_de_la_commune": "AUCUN", "libell_d_acheminement": "AUCUN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65045"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb608fc6c4de44e8eac5ff3134848b4fd9b8c21", "fields": {"nom_de_la_commune": "AURIEBAT", "libell_d_acheminement": "AURIEBAT", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65049"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f56187c6961e45deb938fd3af1e3072a3f59e7", "fields": {"nom_de_la_commune": "AYZAC OST", "libell_d_acheminement": "AYZAC OST", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65056"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e7d5cea63d8cd69873fd7b360ead4f454185e8", "fields": {"nom_de_la_commune": "AZEREIX", "libell_d_acheminement": "AZEREIX", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65057"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d936f481fa019a059413378aa95424b98e07cba8", "fields": {"nom_de_la_commune": "AZET", "libell_d_acheminement": "AZET", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65058"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "349974aaedffc0f4cb172fc01d5f672d5735cb4f", "fields": {"nom_de_la_commune": "BATSERE", "libell_d_acheminement": "BATSERE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65071"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee815217daf176062cbf479b30f3fb2842a945b9", "fields": {"nom_de_la_commune": "BAZILLAC", "libell_d_acheminement": "BAZILLAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65073"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03a53e437bd86faecab75c78694a6e9833087355", "fields": {"nom_de_la_commune": "BEAUDEAN", "libell_d_acheminement": "BEAUDEAN", "code_postal": "65710", "coordonnees_gps": [42.9707906298, 0.166937174771], "code_commune_insee": "65078"}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31b87ff751f051b147944e379b622254b8d94f5", "fields": {"nom_de_la_commune": "BETBEZE", "libell_d_acheminement": "BETBEZE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65088"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2254d4933dc511ff60533dc49c7319194f780f", "fields": {"nom_de_la_commune": "BEYREDE JUMET", "libell_d_acheminement": "BEYREDE JUMET", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65092"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381e123f513d42ad6cb3b1189aea9c80b9b064ca", "fields": {"nom_de_la_commune": "BOO SILHEN", "libell_d_acheminement": "BOO SILHEN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65098"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd436cee8bfaf54efbcf3adbd466f9717512916", "fields": {"nom_de_la_commune": "BOULIN", "libell_d_acheminement": "BOULIN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65104"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc65d85a395b3b89abe7e5a1919067ca6ce7f44b", "fields": {"nom_de_la_commune": "BUN", "libell_d_acheminement": "BUN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65112"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c6d3be135ac2d0afde4b87d5cf1c1f2e355403", "fields": {"nom_de_la_commune": "BUZON", "libell_d_acheminement": "BUZON", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65114"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb67352ba140f89c1b3c52fbd9aeddde85b1c8e1", "fields": {"nom_de_la_commune": "CAHARET", "libell_d_acheminement": "CAHARET", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65118"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c6a023a396f35e80f3103a29119245b2170a5cf", "fields": {"nom_de_la_commune": "CALAVANTE", "libell_d_acheminement": "CALAVANTE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65120"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287d53a3916dae62f265f3dba2a5d2a3af4e25df", "fields": {"nom_de_la_commune": "CAMPUZAN", "libell_d_acheminement": "CAMPUZAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65126"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "006f1acc08f58b8dec2d86b4ad9650c7cb420bd2", "fields": {"nom_de_la_commune": "CAPVERN", "libell_d_acheminement": "CAPVERN LES BAINS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65127"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59c87073dce0953980870fec6f9e1747f7e2faa", "fields": {"nom_de_la_commune": "CASTERA LANUSSE", "libell_d_acheminement": "CASTERA LANUSSE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65132"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4edebc472f28cc2476a18da05575ac821cb9690d", "fields": {"nom_de_la_commune": "CAUSSADE RIVIERE", "libell_d_acheminement": "CAUSSADE RIVIERE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65137"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2336b50cce045b00a9fff7ab39e180232a8ba01b", "fields": {"nom_de_la_commune": "CAZARILH", "libell_d_acheminement": "CAZARILH", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65139"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bb6444cdee805483380fa31d329c6d00e49523", "fields": {"nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", "libell_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65141"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4344c88283646cb91b194e7b905bd28362c101", "fields": {"nom_de_la_commune": "CHELLE DEBAT", "libell_d_acheminement": "CHELLE DEBAT", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65142"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118d33bdb8f14c5f6c373ebe02893c9b84f49dbd", "fields": {"nom_de_la_commune": "CHELLE SPOU", "libell_d_acheminement": "CHELLE SPOU", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65143"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a85350a8f6210a8c06e273b8ef0bc51b36cdbee", "fields": {"nom_de_la_commune": "CHEZE", "libell_d_acheminement": "CHEZE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65145"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b343e48e7b0627ff42a9fe889a0de8948c1fd6", "fields": {"nom_de_la_commune": "COLLONGUES", "libell_d_acheminement": "COLLONGUES", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65151"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d1c7f04956e99cd0a4938518f6519617d966b5", "fields": {"nom_de_la_commune": "COUSSAN", "libell_d_acheminement": "COUSSAN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65153"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97366738b1cb93ca08e202ce320cc498c6c889c4", "fields": {"nom_de_la_commune": "ESBAREICH", "libell_d_acheminement": "ESBAREICH", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65158"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7a0b77c17f61d76d86c3bfab749a5d8c297827", "fields": {"nom_de_la_commune": "ESTAING", "libell_d_acheminement": "ESTAING", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65169"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f148055c8ebdb262279f63d91c6be5b216b5b1a", "fields": {"nom_de_la_commune": "ESTENSAN", "libell_d_acheminement": "ESTENSAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65172"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff927fc13c80ef19fbaaa69f69421b0b5fe5ae0", "fields": {"nom_de_la_commune": "FERRERE", "libell_d_acheminement": "FERRERE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65175"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bfe9fd73a2fef57ee2c5aa75eb937562204713f", "fields": {"nom_de_la_commune": "GAILLAGOS", "libell_d_acheminement": "GAILLAGOS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65182"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcbba9a1c7d35a871ce9c24d6edee1d979cb576", "fields": {"nom_de_la_commune": "GAUSSAN", "libell_d_acheminement": "GAUSSAN", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65187"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8554886f5f3927b7b89c23382cbdcba44a7748e9", "fields": {"nom_de_la_commune": "GAZOST", "libell_d_acheminement": "GAZOST", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65191"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964137b6ba947b9eb3307f718a5eea51315227b0", "fields": {"nom_de_la_commune": "GAVARNIE GEDRE", "libell_d_acheminement": "GAVARNIE GEDRE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65192"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28606210fe1570d03d124484da91536c68be0396", "fields": {"nom_de_la_commune": "GENEREST", "libell_d_acheminement": "GENEREST", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65194"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef329c3073d5a57f7c4797ceef5fbc7ae220782", "fields": {"nom_de_la_commune": "GENSAC", "libell_d_acheminement": "GENSAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65196"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d889df110560528d46f73a98c0141d0eb96c729", "fields": {"nom_de_la_commune": "GER", "libell_d_acheminement": "GER", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65197"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1689c8efc4629f1845a667532250f9b35fd020", "fields": {"nom_de_la_commune": "GERM", "libell_d_acheminement": "GERM", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65199"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6277ca106704bdc9eabdf4f466c8b9e8b55df246", "fields": {"nom_de_la_commune": "GUIZERIX", "libell_d_acheminement": "GUIZERIX", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65213"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092a539c23299f3c8dfc136a2c3d2b82e0d3c85b", "fields": {"nom_de_la_commune": "HITTE", "libell_d_acheminement": "HITTE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65222"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e96d1160103031c548c2922b7c81ab8c0759bb86", "fields": {"nom_de_la_commune": "HORGUES", "libell_d_acheminement": "HORGUES", "code_postal": "65310", "coordonnees_gps": [43.1967929202, 0.0668474057462], "code_commune_insee": "65223"}, "geometry": {"type": "Point", "coordinates": [0.0668474057462, 43.1967929202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def2875177ac7a009cea344bc291fb58d6b6dc2a", "fields": {"nom_de_la_commune": "JACQUE", "libell_d_acheminement": "JACQUE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65232"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db865a0b76c21bcbcd1104fe7bc1c4054287a267", "fields": {"nom_de_la_commune": "LABATUT RIVIERE", "libell_d_acheminement": "LABATUT RIVIERE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65240"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c8ba0b2858a9b3edc4bcb246411617629b3658", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65244"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8dd5250a92bb515589d84bd60105cc5c69e4a2", "fields": {"nom_de_la_commune": "LANSAC", "libell_d_acheminement": "LANSAC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65259"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665e4d488ec2ab28e23c60c92d6282e4f0f88b90", "fields": {"nom_de_la_commune": "LAPEYRE", "libell_d_acheminement": "LAPEYRE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65260"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec6e92dc2025da4dc0f22427f6a5385e3b5b55d", "fields": {"nom_de_la_commune": "LASSALES", "libell_d_acheminement": "LASSALES", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65266"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3e192036d4f4af78e01682657aeee7d0492c77", "fields": {"nom_de_la_commune": "LEZIGNAN", "libell_d_acheminement": "LEZIGNAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65271"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b840de6063ec868081cda321c5c65e7648f9a24", "fields": {"nom_de_la_commune": "LIAC", "libell_d_acheminement": "LIAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65273"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d61c008728027eeda456e645e4e9d0f2f9d52f", "fields": {"nom_de_la_commune": "LIZOS", "libell_d_acheminement": "LIZOS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65276"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a9368377c4a9fcd92185b6fb37cf4ce6851287", "fields": {"code_postal": "65240", "code_commune_insee": "65282", "libell_d_acheminement": "LOUDENVIELLE", "ligne_5": "ARMENTEULE", "nom_de_la_commune": "LOUDENVIELLE", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4214cba5a20a242abaee906faa0f231b7ce7f1", "fields": {"nom_de_la_commune": "LOUEY", "libell_d_acheminement": "LOUEY", "code_postal": "65290", "coordonnees_gps": [43.1908085674, 0.0212768080657], "code_commune_insee": "65284"}, "geometry": {"type": "Point", "coordinates": [0.0212768080657, 43.1908085674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a50e959e0b1641be0c9c3081fe796e3b0fc09b5", "fields": {"nom_de_la_commune": "LUBY BETMONT", "libell_d_acheminement": "LUBY BETMONT", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65289"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de4de2fa58b54ea430931ba3ac60d55c1a7cf4b", "fields": {"nom_de_la_commune": "LUQUET", "libell_d_acheminement": "LUQUET", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65292"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7605afeef715e5a5b596854a926df6436c009ce2", "fields": {"nom_de_la_commune": "LUTILHOUS", "libell_d_acheminement": "LUTILHOUS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65294"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0e7eadc3b423dfd78eec0794dd437f84f33652", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65299"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2586e249279bae1a38b14a1ec99f3a3d1b96ae71", "fields": {"nom_de_la_commune": "MARSAS", "libell_d_acheminement": "MARSAS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65300"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01d07890c4d50fb528420ff2fe7da9626e03c0a5", "fields": {"nom_de_la_commune": "MARSEILLAN", "libell_d_acheminement": "MARSEILLAN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65301"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9acae96e3d12e2427373967b947d3bbbfffbcb", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65308"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c71803bbb6cba9528504f1de56ffa968eab0b5", "fields": {"nom_de_la_commune": "MAZOUAU", "libell_d_acheminement": "MAZOUAU", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65309"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb37d07ec9e4bcf75dc1f479f3a74f7694c8ee9", "fields": {"nom_de_la_commune": "MERILHEU", "libell_d_acheminement": "MERILHEU", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65310"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d921b1fa6a1e995ef3eae818ee178095ee88a4", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65320"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5b41cd63032b57fb934a1aa8f3b980c3e0c2a4", "fields": {"nom_de_la_commune": "OLEAC DESSUS", "libell_d_acheminement": "OLEAC DESSUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65333"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b58c88e9a4241254ff9264fd3f72c19f4b15d5", "fields": {"nom_de_la_commune": "OMEX", "libell_d_acheminement": "OMEX", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65334"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce0a7dab89156a7d2cf61533c94849b555080a5", "fields": {"nom_de_la_commune": "ORLEIX", "libell_d_acheminement": "ORLEIX", "code_postal": "65800", "coordonnees_gps": [43.2687329702, 0.110735154449], "code_commune_insee": "65340"}, "geometry": {"type": "Point", "coordinates": [0.110735154449, 43.2687329702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0063acf061934bf8a444c94a00d6b173304500b", "fields": {"nom_de_la_commune": "OSSUN", "libell_d_acheminement": "OSSUN", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65344"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd734bba9da71ff1c317178cbc643850c6475e3", "fields": {"nom_de_la_commune": "OURDE", "libell_d_acheminement": "OURDE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65347"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e597a374a10e3ae3301c5c37ed286c8ab92d6589", "fields": {"nom_de_la_commune": "OZON", "libell_d_acheminement": "OZON", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65353"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0cf0ed16df3a61b5b25e3de6021befd8a90f56", "fields": {"nom_de_la_commune": "PAREAC", "libell_d_acheminement": "PAREAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65355"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e288b2e25bea7801d74ff5906eeac92a091d5b0", "fields": {"nom_de_la_commune": "PINTAC", "libell_d_acheminement": "PINTAC", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65364"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f0a8e05bcbe2af37231df19ddce5752a8de01e5", "fields": {"nom_de_la_commune": "POUY", "libell_d_acheminement": "POUY", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65368"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ffe93395ad91e4e81cba0931a597d9dbbd1228", "fields": {"nom_de_la_commune": "POUZAC", "libell_d_acheminement": "POUZAC", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65370"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300ca196d3bbb117d8a555c33d1310eba37417bb", "fields": {"nom_de_la_commune": "SABARROS", "libell_d_acheminement": "SABARROS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65381"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e94178719eb08509858837978e4dc3255a79c33", "fields": {"nom_de_la_commune": "ST ARROMAN", "libell_d_acheminement": "ST ARROMAN", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65385"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e77dae529762d59830ab55bbe8681d53ada93d", "fields": {"nom_de_la_commune": "ST LANNE", "libell_d_acheminement": "ST LANNE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65387"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1d2eab3a8e40493ed811c10828e17f80238ada", "fields": {"nom_de_la_commune": "SARROUILLES", "libell_d_acheminement": "SARROUILLES", "code_postal": "65600", "coordonnees_gps": [43.2273906132, 0.117609350526], "code_commune_insee": "65410"}, "geometry": {"type": "Point", "coordinates": [0.117609350526, 43.2273906132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c292ad19e6cf3008f69d05db41b43ecfc32b1101", "fields": {"nom_de_la_commune": "SENTOUS", "libell_d_acheminement": "SENTOUS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65419"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3406e6cebfccc6b0aa9cc9e4b73174942280fc", "fields": {"nom_de_la_commune": "SERE RUSTAING", "libell_d_acheminement": "SERE RUSTAING", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65423"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8741a926034278477b1d01656c582c160185da5d", "fields": {"nom_de_la_commune": "SINZOS", "libell_d_acheminement": "SINZOS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65426"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6715aa8f79ace7c1bbd2dd5f801584b4fa1fb94e", "fields": {"nom_de_la_commune": "SOUES", "libell_d_acheminement": "SOUES", "code_postal": "65430", "coordonnees_gps": [43.206244803, 0.0988685553871], "code_commune_insee": "65433"}, "geometry": {"type": "Point", "coordinates": [0.0988685553871, 43.206244803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8424169ac00070d89c53ff8a0ce93eb38850dd7", "fields": {"nom_de_la_commune": "SOULOM", "libell_d_acheminement": "SOULOM", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65435"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57f086fe3ed8ea3aa916c8aa053168c7e5229fa", "fields": {"nom_de_la_commune": "THUY", "libell_d_acheminement": "THUY", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65443"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "034cfced37796583aab3909d27c55e26c631e4fe", "fields": {"nom_de_la_commune": "TOSTAT", "libell_d_acheminement": "TOSTAT", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65446"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00938e508671e0b124fca1bb6f6ab3c3e0643f0a", "fields": {"nom_de_la_commune": "TREBONS", "libell_d_acheminement": "TREBONS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65451"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0fc2342185c116b806848dc67b004757acf7eb7", "fields": {"nom_de_la_commune": "TROUBAT", "libell_d_acheminement": "TROUBAT", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65453"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c7f9905ca65b541086101be4c581a154cfbd398", "fields": {"nom_de_la_commune": "VILLEPREUX", "libell_d_acheminement": "VILLEPREUX", "code_postal": "78450", "coordonnees_gps": [48.8376725842, 2.00127278452], "code_commune_insee": "78674"}, "geometry": {"type": "Point", "coordinates": [2.00127278452, 48.8376725842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f9055528cc3fa4c1d6adc648f84dfa15b37e56", "fields": {"nom_de_la_commune": "VILLIERS LE MAHIEU", "libell_d_acheminement": "VILLIERS LE MAHIEU", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78681"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b95faaa535ee92437e8f4040e80c67dc74a2756", "fields": {"nom_de_la_commune": "AIRVAULT", "libell_d_acheminement": "AIRVAULT", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79005"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b8df27892e828abc6ca0e1f09e27f6859e1d4a", "fields": {"nom_de_la_commune": "ALLONNE", "libell_d_acheminement": "ALLONNE", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79007"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efc40ff4017693f6e464cc91f42327491caf2e5", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "ULCOT", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56fdc74c300287f69f1c356d28002fde4caff75", "fields": {"nom_de_la_commune": "ASNIERES EN POITOU", "libell_d_acheminement": "ASNIERES EN POITOU", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79015"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0d1dc26a21061b25d28ed07c1d25254d78b3c0f", "fields": {"nom_de_la_commune": "ASSAIS LES JUMEAUX", "libell_d_acheminement": "ASSAIS LES JUMEAUX", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79016"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fcee5badeb30ed3b28c3046fb3de61b2c23a10", "fields": {"code_postal": "79600", "code_commune_insee": "79016", "libell_d_acheminement": "ASSAIS LES JUMEAUX", "ligne_5": "LES JUMEAUX", "nom_de_la_commune": "ASSAIS LES JUMEAUX", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c3591525abb2b6e6fddc1c3011210914323f14", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79019"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2430bc1cbe6e7bd78479c01d2b353e5d608ed2d0", "fields": {"nom_de_la_commune": "AZAY SUR THOUET", "libell_d_acheminement": "AZAY SUR THOUET", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79025"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c703eddce5824d1abcb99c63e8cb0a2fbcb32a4a", "fields": {"nom_de_la_commune": "LA BATAILLE", "libell_d_acheminement": "LA BATAILLE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79027"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822d6197c1a2019579f0e55ee105073057bfa736", "fields": {"nom_de_la_commune": "BEAUVOIR SUR NIORT", "libell_d_acheminement": "BEAUVOIR SUR NIORT", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79031"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6e067db0d6ecdb6a89fdee6dc14845d11758a1e", "fields": {"nom_de_la_commune": "BESSINES", "libell_d_acheminement": "BESSINES", "code_postal": "79000", "coordonnees_gps": [46.3258954005, -0.471948799186], "code_commune_insee": "79034"}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb27625f1824123446758dc49b9989a6bc9d95e", "fields": {"nom_de_la_commune": "BRESSUIRE", "libell_d_acheminement": "BRESSUIRE", "code_postal": "79300", "coordonnees_gps": [46.8619599412, -0.471600678729], "code_commune_insee": "79049"}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109305ac7b33b0db76b43a2763102434c58e2b51", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "BEAULIEU SOUS BRESSUIRE", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974f105bdd78c80c75e6e65b1d13dc853452a93b", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "NOIRTERRE", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d873931b766d48c99137ba58eab6da1bd7cc49d", "fields": {"nom_de_la_commune": "CELLES SUR BELLE", "libell_d_acheminement": "CELLES SUR BELLE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79061"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed60380a3b876e69aa9f0397295d8a4e61cbf84", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "LA CHAPELLE LARGEAU", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2685dbfa8cfa7f3031a2284e1ddd90860846e637", "fields": {"code_postal": "79170", "code_commune_insee": "79090", "libell_d_acheminement": "CHIZE", "ligne_5": "AVAILLES SUR CHIZE", "nom_de_la_commune": "CHIZE", "coordonnees_gps": [46.1222201678, -0.263662394431]}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5d3a38a6f29b07315501cccd8223c5e93e830f", "fields": {"nom_de_la_commune": "FENIOUX", "libell_d_acheminement": "FENIOUX", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79119"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f179b39f88c96023bd437936d9eb5cdf04df0d2", "fields": {"code_postal": "79380", "code_commune_insee": "79123", "libell_d_acheminement": "LA FORET SUR SEVRE", "ligne_5": "LA RONDE", "nom_de_la_commune": "LA FORET SUR SEVRE", "coordonnees_gps": [46.7639583246, -0.657227871413]}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57eb9439129e061e5384906614a201cd685be81", "fields": {"code_postal": "79380", "code_commune_insee": "79123", "libell_d_acheminement": "LA FORET SUR SEVRE", "ligne_5": "ST MARSAULT", "nom_de_la_commune": "LA FORET SUR SEVRE", "coordonnees_gps": [46.7639583246, -0.657227871413]}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b7f30be6d805d416d3a75a100de413b7ee8ace1", "fields": {"nom_de_la_commune": "FORS", "libell_d_acheminement": "FORS", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79125"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "431162961357e6998fd3acf07027121defd93592", "fields": {"nom_de_la_commune": "LES FOSSES", "libell_d_acheminement": "LES FOSSES", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79126"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b231829ba5f1d1cf46eb4799b63aabd55fc0fb67", "fields": {"nom_de_la_commune": "LA FOYE MONJAULT", "libell_d_acheminement": "LA FOYE MONJAULT", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79127"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83f219e522dbbc5c04d31b40aff52a1293c2b166", "fields": {"nom_de_la_commune": "FRANCOIS", "libell_d_acheminement": "FRANCOIS", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79128"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d36a539d3f42283bdd7d0a2eb4673ca2f9ceaf1", "fields": {"nom_de_la_commune": "GEAY", "libell_d_acheminement": "GEAY", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79131"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90f30273b53f02029a93597f644d791102ad3da", "fields": {"nom_de_la_commune": "JUILLE", "libell_d_acheminement": "JUILLE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79142"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d608433f81ab0a43d86dc55ce6902c24030351", "fields": {"nom_de_la_commune": "LHOUMOIS", "libell_d_acheminement": "LHOUMOIS", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79149"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9fe1fdcde46c454df27851929b84095323f825a", "fields": {"nom_de_la_commune": "LORIGNE", "libell_d_acheminement": "LORIGNE", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79152"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe60781177cf66da03f7dbe95e605d58005e92c", "fields": {"nom_de_la_commune": "LOUBIGNE", "libell_d_acheminement": "LOUBIGNE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79153"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c087c648a5f6ea99981fe1b08c9aedc3a06e9795", "fields": {"nom_de_la_commune": "LOUIN", "libell_d_acheminement": "LOUIN", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79156"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676710b791ec7d45e916b53c1e7f0eba14d9c921", "fields": {"nom_de_la_commune": "LUCHE THOUARSAIS", "libell_d_acheminement": "LUCHE THOUARSAIS", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79159"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafac8019f8a1d22e00eca334e26e09f9d429f7c", "fields": {"nom_de_la_commune": "LUSSERAY", "libell_d_acheminement": "LUSSERAY", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79160"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17bf4c1ec5b68a8e1e82529d74ab2e6bed50c1d7", "fields": {"nom_de_la_commune": "MAGNE", "libell_d_acheminement": "MAGNE", "code_postal": "79460", "coordonnees_gps": [46.3099521799, -0.55805579577], "code_commune_insee": "79162"}, "geometry": {"type": "Point", "coordinates": [-0.55805579577, 46.3099521799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e94406b36b804c15a15bdf538aa2504fb8e3a49", "fields": {"nom_de_la_commune": "MAIRE LEVESCAULT", "libell_d_acheminement": "MAIRE LEVESCAULT", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79163"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abb1818b99fda9a2e6aeb23922f10b0d6671256", "fields": {"code_postal": "79100", "code_commune_insee": "79171", "libell_d_acheminement": "MAUZE THOUARSAIS", "ligne_5": "RIGNE", "nom_de_la_commune": "MAUZE THOUARSAIS", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a6a73e277983349a11068e0991932cb6f2c9b4", "fields": {"nom_de_la_commune": "MONTROUGE", "libell_d_acheminement": "MONTROUGE", "code_postal": "92120", "coordonnees_gps": [48.8152695492, 2.31739229511], "code_commune_insee": "92049"}, "geometry": {"type": "Point", "coordinates": [2.31739229511, 48.8152695492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7bb775f63b023528819e50cfb6830857dda9d2", "fields": {"nom_de_la_commune": "PUTEAUX", "libell_d_acheminement": "PUTEAUX", "code_postal": "92800", "coordonnees_gps": [48.8837267791, 2.23798819786], "code_commune_insee": "92062"}, "geometry": {"type": "Point", "coordinates": [2.23798819786, 48.8837267791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b674682df6c942396ce990ece86dbe889c00019", "fields": {"nom_de_la_commune": "RUEIL MALMAISON", "libell_d_acheminement": "RUEIL MALMAISON", "code_postal": "92500", "coordonnees_gps": [48.8694433502, 2.17774350372], "code_commune_insee": "92063"}, "geometry": {"type": "Point", "coordinates": [2.17774350372, 48.8694433502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae770cc46fd8ac9fd6f07e6c0e42cedef6f0f8ae", "fields": {"nom_de_la_commune": "SCEAUX", "libell_d_acheminement": "SCEAUX", "code_postal": "92330", "coordonnees_gps": [48.7768435541, 2.29818849146], "code_commune_insee": "92071"}, "geometry": {"type": "Point", "coordinates": [2.29818849146, 48.7768435541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351f15dcd97b61daa6a5562e9a8a82fbac387ddd", "fields": {"nom_de_la_commune": "AUBERVILLIERS", "libell_d_acheminement": "AUBERVILLIERS", "code_postal": "93300", "coordonnees_gps": [48.9126312095, 2.38445065454], "code_commune_insee": "93001"}, "geometry": {"type": "Point", "coordinates": [2.38445065454, 48.9126312095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c56fa32623bd7da854dc596b132dedaafc0f964", "fields": {"nom_de_la_commune": "LE BOURGET", "libell_d_acheminement": "LE BOURGET", "code_postal": "93350", "coordonnees_gps": [48.9360294977, 2.42725334124], "code_commune_insee": "93013"}, "geometry": {"type": "Point", "coordinates": [2.42725334124, 48.9360294977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e69e69e292b759df080ee0cda3044921a7b187b", "fields": {"nom_de_la_commune": "COUBRON", "libell_d_acheminement": "COUBRON", "code_postal": "93470", "coordonnees_gps": [48.917508483, 2.57625656428], "code_commune_insee": "93015"}, "geometry": {"type": "Point", "coordinates": [2.57625656428, 48.917508483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb05c5282fd9a1d93732f3cf736b875c186f8bc3", "fields": {"nom_de_la_commune": "LES LILAS", "libell_d_acheminement": "LES LILAS", "code_postal": "93260", "coordonnees_gps": [48.8814307657, 2.41995218789], "code_commune_insee": "93045"}, "geometry": {"type": "Point", "coordinates": [2.41995218789, 48.8814307657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281e2e46d242c6c70f778f777a6fcb1c233034bd", "fields": {"nom_de_la_commune": "NOISY LE SEC", "libell_d_acheminement": "NOISY LE SEC", "code_postal": "93130", "coordonnees_gps": [48.8912402494, 2.45891586026], "code_commune_insee": "93053"}, "geometry": {"type": "Point", "coordinates": [2.45891586026, 48.8912402494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750399b6aa1d2923fe7a4e3153e431f0fac19fc1", "fields": {"nom_de_la_commune": "TREMBLAY EN FRANCE", "libell_d_acheminement": "TREMBLAY EN FRANCE", "code_postal": "93290", "coordonnees_gps": [48.9785410017, 2.55473541662], "code_commune_insee": "93073"}, "geometry": {"type": "Point", "coordinates": [2.55473541662, 48.9785410017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06095fa05a78460453b899d6d4efcef25b928d8d", "fields": {"nom_de_la_commune": "BOISSY ST LEGER", "libell_d_acheminement": "BOISSY ST LEGER", "code_postal": "94470", "coordonnees_gps": [48.7472376073, 2.5259450582], "code_commune_insee": "94004"}, "geometry": {"type": "Point", "coordinates": [2.5259450582, 48.7472376073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2707f34d25c413447b5f77f0efb97a3a450fa7ed", "fields": {"nom_de_la_commune": "CACHAN", "libell_d_acheminement": "CACHAN", "code_postal": "94230", "coordonnees_gps": [48.7911645648, 2.33171907473], "code_commune_insee": "94016"}, "geometry": {"type": "Point", "coordinates": [2.33171907473, 48.7911645648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fe895238ae9885357d54d70481d9cb1afb35f0", "fields": {"nom_de_la_commune": "CHAMPIGNY SUR MARNE", "libell_d_acheminement": "CHAMPIGNY SUR MARNE", "code_postal": "94500", "coordonnees_gps": [48.8176869619, 2.51584557843], "code_commune_insee": "94017"}, "geometry": {"type": "Point", "coordinates": [2.51584557843, 48.8176869619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df860a2e98d2abd7c951799048f146334923c56", "fields": {"nom_de_la_commune": "CHARENTON LE PONT", "libell_d_acheminement": "CHARENTON LE PONT", "code_postal": "94220", "coordonnees_gps": [48.8223756473, 2.40805462767], "code_commune_insee": "94018"}, "geometry": {"type": "Point", "coordinates": [2.40805462767, 48.8223756473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ca787a8e3ce95c4f66587b10078616cd3f7d51", "fields": {"nom_de_la_commune": "L HAY LES ROSES", "libell_d_acheminement": "L HAY LES ROSES", "code_postal": "94240", "coordonnees_gps": [48.7760896848, 2.33669657104], "code_commune_insee": "94038"}, "geometry": {"type": "Point", "coordinates": [2.33669657104, 48.7760896848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c7626d4d4f4a6f2412a4815a5ef5c648d437226", "fields": {"nom_de_la_commune": "MANDRES LES ROSES", "libell_d_acheminement": "MANDRES LES ROSES", "code_postal": "94520", "coordonnees_gps": [48.7018918505, 2.55461467284], "code_commune_insee": "94047"}, "geometry": {"type": "Point", "coordinates": [2.55461467284, 48.7018918505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1781f73c1e4ad278d096192ca7b2ee0ef9d58f5e", "fields": {"nom_de_la_commune": "LA QUEUE EN BRIE", "libell_d_acheminement": "LA QUEUE EN BRIE", "code_postal": "94510", "coordonnees_gps": [48.7776236893, 2.5836227171], "code_commune_insee": "94060"}, "geometry": {"type": "Point", "coordinates": [2.5836227171, 48.7776236893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1644aabb730a3ccd502666f720ec15591326d5", "fields": {"nom_de_la_commune": "ST MAUR DES FOSSES", "libell_d_acheminement": "ST MAUR DES FOSSES", "code_postal": "94100", "coordonnees_gps": [48.7989796618, 2.49424383679], "code_commune_insee": "94068"}, "geometry": {"type": "Point", "coordinates": [2.49424383679, 48.7989796618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7299815a2b129e6a05ae23860cea311c41f2870a", "fields": {"code_postal": "94210", "code_commune_insee": "94068", "libell_d_acheminement": "ST MAUR DES FOSSES", "ligne_5": "LA VARENNE ST HILAIRE", "nom_de_la_commune": "ST MAUR DES FOSSES", "coordonnees_gps": [48.7989796618, 2.49424383679]}, "geometry": {"type": "Point", "coordinates": [2.49424383679, 48.7989796618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8813e599e36885b7e97a50dbc47fb9f598f94ef", "fields": {"code_postal": "94370", "code_commune_insee": "94071", "libell_d_acheminement": "SUCY EN BRIE", "ligne_5": "LES BRUYERES", "nom_de_la_commune": "SUCY EN BRIE", "coordonnees_gps": [48.7657010886, 2.53346938213]}, "geometry": {"type": "Point", "coordinates": [2.53346938213, 48.7657010886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb5228f075c98ee5b6fb6f81aa0cf82c666bda2b", "fields": {"nom_de_la_commune": "AVERNES", "libell_d_acheminement": "AVERNES", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95040"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e973a7f6dd09fcd9a0dd67c1cf4c79617a3b48b", "fields": {"nom_de_la_commune": "LE BELLAY EN VEXIN", "libell_d_acheminement": "LE BELLAY EN VEXIN", "code_postal": "95750", "coordonnees_gps": [49.1561369779, 1.91918704594], "code_commune_insee": "95054"}, "geometry": {"type": "Point", "coordinates": [1.91918704594, 49.1561369779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7098af0be32efce936361fa084605ab5ba69597", "fields": {"nom_de_la_commune": "BELLOY EN FRANCE", "libell_d_acheminement": "BELLOY EN FRANCE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95056"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dabea61e40ef99fbc1ed2a7c4c3897e71093d6f8", "fields": {"nom_de_la_commune": "BERNES SUR OISE", "libell_d_acheminement": "BERNES SUR OISE", "code_postal": "95340", "coordonnees_gps": [49.1610028463, 2.26428490236], "code_commune_insee": "95058"}, "geometry": {"type": "Point", "coordinates": [2.26428490236, 49.1610028463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad51171b25634b1c5aa220e59497137ed3b62a5e", "fields": {"nom_de_la_commune": "BETHEMONT LA FORET", "libell_d_acheminement": "BETHEMONT LA FORET", "code_postal": "95840", "coordonnees_gps": [49.0653892741, 2.2420258849], "code_commune_insee": "95061"}, "geometry": {"type": "Point", "coordinates": [2.2420258849, 49.0653892741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcb72f271f95619e3ee6c6fa122fb0ff45aa5a3", "fields": {"nom_de_la_commune": "BOISSY L AILLERIE", "libell_d_acheminement": "BOISSY L AILLERIE", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95078"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3477d016a789083d0cce2c0eb57edefde4da92b7", "fields": {"nom_de_la_commune": "BRAY ET LU", "libell_d_acheminement": "BRAY ET LU", "code_postal": "95710", "coordonnees_gps": [49.1290552989, 1.69526260075], "code_commune_insee": "95101"}, "geometry": {"type": "Point", "coordinates": [1.69526260075, 49.1290552989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b62d0c383efc6cad8301cf6c7c594145476c48", "fields": {"code_postal": "95000", "code_commune_insee": "95127", "libell_d_acheminement": "CERGY", "ligne_5": "MENANDON", "nom_de_la_commune": "CERGY", "coordonnees_gps": [49.0378977963, 2.06061895699]}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ac1b1b70f2a11df9c044375217eefbd88290d9", "fields": {"nom_de_la_commune": "EAUBONNE", "libell_d_acheminement": "EAUBONNE", "code_postal": "95600", "coordonnees_gps": [48.9906752112, 2.27748227881], "code_commune_insee": "95203"}, "geometry": {"type": "Point", "coordinates": [2.27748227881, 48.9906752112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23944409e3dec75d434ff35a559d4f5ff761aa1", "fields": {"nom_de_la_commune": "ENNERY", "libell_d_acheminement": "ENNERY", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95211"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6db90966d06844c92191908c9b986f48b486c8bc", "fields": {"nom_de_la_commune": "EPIAIS RHUS", "libell_d_acheminement": "EPIAIS RHUS", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95213"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d48dbe00b5a490c0449aec5070c204c2e62ae0", "fields": {"nom_de_la_commune": "EPINAY CHAMPLATREUX", "libell_d_acheminement": "EPINAY CHAMPLATREUX", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95214"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3284985b31fb5e55e9bf5ce156c47e20ab378428", "fields": {"nom_de_la_commune": "GONESSE", "libell_d_acheminement": "GONESSE", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95277"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "399f3d75986228acd56334c188ca2c6bedf6ba65", "fields": {"nom_de_la_commune": "GOUZANGREZ", "libell_d_acheminement": "GOUZANGREZ", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95282"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a43ca1273daaa27e44a5e994a0d8e52550e386", "fields": {"nom_de_la_commune": "HARAVILLIERS", "libell_d_acheminement": "HARAVILLIERS", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95298"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8919eebb68dfc6919fafc0f1eab4f8396bc28a", "fields": {"nom_de_la_commune": "LABBEVILLE", "libell_d_acheminement": "LABBEVILLE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95328"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b662d5e03830c3ad9f7a13b82669937f63a5e99", "fields": {"nom_de_la_commune": "LASSY", "libell_d_acheminement": "LASSY", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95331"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d690054939a0e4b1ffddaa4114a9d983b0f8286f", "fields": {"nom_de_la_commune": "MAGNY EN VEXIN", "libell_d_acheminement": "MAGNY EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95355"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd14a1957e0a676a0c171483d526c7f971ec98d", "fields": {"nom_de_la_commune": "MERIEL", "libell_d_acheminement": "MERIEL", "code_postal": "95630", "coordonnees_gps": [49.0775759075, 2.21403948928], "code_commune_insee": "95392"}, "geometry": {"type": "Point", "coordinates": [2.21403948928, 49.0775759075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b92184b8bb213ae7db5cfccfcdaae9938896f7", "fields": {"nom_de_la_commune": "MOISSELLES", "libell_d_acheminement": "MOISSELLES", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95409"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044cd8aad00e14f69252211aef6dc8639df61104", "fields": {"nom_de_la_commune": "MONTGEROULT", "libell_d_acheminement": "MONTGEROULT", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95422"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b75217caa44d018a2b805bcec443c8190726a68", "fields": {"nom_de_la_commune": "MOURS", "libell_d_acheminement": "MOURS", "code_postal": "95260", "coordonnees_gps": [49.1373667054, 2.28877829148], "code_commune_insee": "95436"}, "geometry": {"type": "Point", "coordinates": [2.28877829148, 49.1373667054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caec2117bf7053e98929458425719591b8345a64", "fields": {"nom_de_la_commune": "MOUSSY", "libell_d_acheminement": "MOUSSY", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95438"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce4ca6ff7d746db56a7aab56c97ddecc5d9e350", "fields": {"nom_de_la_commune": "NERVILLE LA FORET", "libell_d_acheminement": "NERVILLE LA FORET", "code_postal": "95590", "coordonnees_gps": [49.1078677101, 2.28470413018], "code_commune_insee": "95445"}, "geometry": {"type": "Point", "coordinates": [2.28470413018, 49.1078677101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc6b9a9f8b50dbcca886fb0ca84f0006860249f", "fields": {"nom_de_la_commune": "NEUILLY EN VEXIN", "libell_d_acheminement": "NEUILLY EN VEXIN", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95447"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dafb353d1b949b7585b114ac6ebe65c002a90b91", "fields": {"nom_de_la_commune": "PARMAIN", "libell_d_acheminement": "PARMAIN", "code_postal": "95620", "coordonnees_gps": [49.1222554248, 2.20125148071], "code_commune_insee": "95480"}, "geometry": {"type": "Point", "coordinates": [2.20125148071, 49.1222554248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ad823e32f4fecafad8272dbe4b34758506c8fd", "fields": {"nom_de_la_commune": "LE PLESSIS BOUCHARD", "libell_d_acheminement": "LE PLESSIS BOUCHARD", "code_postal": "95130", "coordonnees_gps": [48.9926867479, 2.22747200568], "code_commune_insee": "95491"}, "geometry": {"type": "Point", "coordinates": [2.22747200568, 48.9926867479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8ef4dd88eb39d514ac88f6f41fb8383c93cc3e2", "fields": {"nom_de_la_commune": "ROISSY EN FRANCE", "libell_d_acheminement": "ROISSY EN FRANCE", "code_postal": "95700", "coordonnees_gps": [49.0063802146, 2.51398787772], "code_commune_insee": "95527"}, "geometry": {"type": "Point", "coordinates": [2.51398787772, 49.0063802146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68fc5f70fa14205a4cabf4abac054f0231410a1e", "fields": {"nom_de_la_commune": "SAGY", "libell_d_acheminement": "SAGY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95535"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68bc359065fa9b8648a52d3ec7bb60e36f6d8c86", "fields": {"nom_de_la_commune": "ST MARTIN DU TERTRE", "libell_d_acheminement": "ST MARTIN DU TERTRE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95566"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6e5a01e5fdefae7ab4d78d0ccfdb7e1942ebbf", "fields": {"nom_de_la_commune": "SERAINCOURT", "libell_d_acheminement": "SERAINCOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95592"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647aa73db8257a2ce8fef947456f93e8958f478b", "fields": {"nom_de_la_commune": "SOISY SOUS MONTMORENCY", "libell_d_acheminement": "SOISY SOUS MONTMORENCY", "code_postal": "95230", "coordonnees_gps": [48.9883061292, 2.30107479116], "code_commune_insee": "95598"}, "geometry": {"type": "Point", "coordinates": [2.30107479116, 48.9883061292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2503c9a752c9d5c74041561d66394d3963c6525", "fields": {"nom_de_la_commune": "US", "libell_d_acheminement": "US", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95625"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa9279cbbadb07f93cee1513bcb1a70b71cf9cd", "fields": {"nom_de_la_commune": "VALMONDOIS", "libell_d_acheminement": "VALMONDOIS", "code_postal": "95760", "coordonnees_gps": [49.0979523574, 2.18039661688], "code_commune_insee": "95628"}, "geometry": {"type": "Point", "coordinates": [2.18039661688, 49.0979523574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef11fa92d4697feb8a79efc1753c70b8973ec43", "fields": {"nom_de_la_commune": "VIENNE EN ARTHIES", "libell_d_acheminement": "VIENNE EN ARTHIES", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95656"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a8887b75fa8135cb82112e1349b3b76c032264", "fields": {"nom_de_la_commune": "VILLAINES SOUS BOIS", "libell_d_acheminement": "VILLAINES SOUS BOIS", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95660"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b8cad0218dbae476e3941155a625e7f45caedc", "fields": {"nom_de_la_commune": "BASSE TERRE", "libell_d_acheminement": "BASSE TERRE", "code_postal": "97100", "coordonnees_gps": [16.000229725, -61.7284119107], "code_commune_insee": "97105"}, "geometry": {"type": "Point", "coordinates": [-61.7284119107, 16.000229725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a32465c836f3f4092845fdb4b77b08d3171b00", "fields": {"nom_de_la_commune": "GOURBEYRE", "libell_d_acheminement": "GOURBEYRE", "code_postal": "97113", "coordonnees_gps": [15.993855755, -61.6864386175], "code_commune_insee": "97109"}, "geometry": {"type": "Point", "coordinates": [-61.6864386175, 15.993855755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb12c02c459b4ae4b19570fcd473e98b118dba8", "fields": {"nom_de_la_commune": "LA DESIRADE", "libell_d_acheminement": "LA DESIRADE", "code_postal": "97127", "coordonnees_gps": [16.3116058289, -61.0528909428], "code_commune_insee": "97110"}, "geometry": {"type": "Point", "coordinates": [-61.0528909428, 16.3116058289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46fdd1a87ce98742b194f7e1e6dd33c519552ff", "fields": {"nom_de_la_commune": "LE GOSIER", "libell_d_acheminement": "LE GOSIER", "code_postal": "97190", "coordonnees_gps": [16.2251928413, -61.4693969265], "code_commune_insee": "97113"}, "geometry": {"type": "Point", "coordinates": [-61.4693969265, 16.2251928413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47895b0d7ae63f6b67951366c4be0add046eb1c", "fields": {"nom_de_la_commune": "GOYAVE", "libell_d_acheminement": "GOYAVE", "code_postal": "97128", "coordonnees_gps": [16.1217743593, -61.6136927674], "code_commune_insee": "97114"}, "geometry": {"type": "Point", "coordinates": [-61.6136927674, 16.1217743593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad5122c357f139c55bb9241d4916269d87630cc", "fields": {"nom_de_la_commune": "PORT LOUIS", "libell_d_acheminement": "PORT LOUIS", "code_postal": "97117", "coordonnees_gps": [16.4261243637, -61.4958534694], "code_commune_insee": "97122"}, "geometry": {"type": "Point", "coordinates": [-61.4958534694, 16.4261243637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "355c8a22c194f0a5df40b5bb2251b3a53c32e4c5", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "97134", "coordonnees_gps": [15.9661945569, -61.2759189177], "code_commune_insee": "97126"}, "geometry": {"type": "Point", "coordinates": [-61.2759189177, 15.9661945569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa8cbf13888f97b6d45355b1bcf40f080a78aec", "fields": {"nom_de_la_commune": "INGRANDES DE TOURAINE", "libell_d_acheminement": "INGRANDES DE TOURAINE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37120"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0b2df046e1387484bc7676cb32eda1814d722e", "fields": {"nom_de_la_commune": "LANGEAIS", "libell_d_acheminement": "LANGEAIS", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37123"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e8aa45da56bf5a8e340b07372af8e9943ca66c", "fields": {"nom_de_la_commune": "LIGNIERES DE TOURAINE", "libell_d_acheminement": "LIGNIERES DE TOURAINE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37128"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f344e8049f427bb6444877f63b16d21bfcf783", "fields": {"nom_de_la_commune": "LIGUEIL", "libell_d_acheminement": "LIGUEIL", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37130"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cccbb32aebd174892d998a19a2a0b7df87f18e8", "fields": {"nom_de_la_commune": "MARCILLY SUR MAULNE", "libell_d_acheminement": "MARCILLY SUR MAULNE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37146"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f39a1dd81dc21793c6a82dc57310ae67218d7ae", "fields": {"nom_de_la_commune": "LA MEMBROLLE SUR CHOISILLE", "libell_d_acheminement": "LA MEMBROLLE SUR CHOISILLE", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37151"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9a34959a7d072fbd687c06e1ff2c70405a9f64", "fields": {"nom_de_la_commune": "MONTS", "libell_d_acheminement": "MONTS", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37159"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7ac5c6b0e99d87088c9e53d1c34d75d24c475f", "fields": {"nom_de_la_commune": "NEUILLE PONT PIERRE", "libell_d_acheminement": "NEUILLE PONT PIERRE", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37167"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab97100726f9a7be819bb2bf5d4d991c41e5c7c8", "fields": {"nom_de_la_commune": "NEUVY LE ROI", "libell_d_acheminement": "NEUVY LE ROI", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37170"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4648f68c9aa530d4a786174ef73a0b33268ed180", "fields": {"nom_de_la_commune": "NOIZAY", "libell_d_acheminement": "NOIZAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37171"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5d525770458aaec8921c844e0266bee7f32bd4", "fields": {"nom_de_la_commune": "NOUATRE", "libell_d_acheminement": "NOUATRE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37174"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5c66fc65732063c4d06286af683273c72e4e5f", "fields": {"nom_de_la_commune": "NOUZILLY", "libell_d_acheminement": "NOUZILLY", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37175"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3a57d76ff22d57ffb6bbbd435ae615b2913fb9", "fields": {"nom_de_la_commune": "PANZOULT", "libell_d_acheminement": "PANZOULT", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37178"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56346c698fbf70434f541686f2c6f6dda8155ad3", "fields": {"nom_de_la_commune": "PAULMY", "libell_d_acheminement": "PAULMY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37181"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a2e22a6934d8544e9c1e79290fdf53a80a318b", "fields": {"nom_de_la_commune": "PERNAY", "libell_d_acheminement": "PERNAY", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37182"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458d079dea1c103e0b521f75dc39fc4597c0114a", "fields": {"nom_de_la_commune": "POCE SUR CISSE", "libell_d_acheminement": "POCE SUR CISSE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37185"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cb372b083fd9a769f0ff0490fbe5abf27f3bc0", "fields": {"nom_de_la_commune": "PONT DE RUAN", "libell_d_acheminement": "PONT DE RUAN", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37186"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6515c4de6d80ab9f6c2eb6034d80ecd2abdd0bce", "fields": {"nom_de_la_commune": "PORTS", "libell_d_acheminement": "PORTS SUR VIENNE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37187"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245c8a45803a9958c7fb688cb326f7bd1400ee96", "fields": {"nom_de_la_commune": "REIGNAC SUR INDRE", "libell_d_acheminement": "REIGNAC SUR INDRE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37192"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888b83f540f78c866f78dd9d77996ff358ed3422", "fields": {"nom_de_la_commune": "LA RICHE", "libell_d_acheminement": "LA RICHE", "code_postal": "37520", "coordonnees_gps": [47.3813639721, 0.637958236655], "code_commune_insee": "37195"}, "geometry": {"type": "Point", "coordinates": [0.637958236655, 47.3813639721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e0238851d1e38911a94a2d0532dd39ce5d5430", "fields": {"nom_de_la_commune": "RIVIERE", "libell_d_acheminement": "RIVIERE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37201"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe3763724e16e8ab7024b08a794b1bb4580fea6", "fields": {"nom_de_la_commune": "ROCHECORBON", "libell_d_acheminement": "ROCHECORBON", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37203"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a029ccdf9ee509d67efb9d94ee9e00b8de371cdf", "fields": {"nom_de_la_commune": "ST AVERTIN", "libell_d_acheminement": "ST AVERTIN", "code_postal": "37550", "coordonnees_gps": [47.3561409994, 0.738500345816], "code_commune_insee": "37208"}, "geometry": {"type": "Point", "coordinates": [0.738500345816, 47.3561409994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "533601b2b1307ded3936173fc38afd1a870bc18e", "fields": {"nom_de_la_commune": "ST BENOIT LA FORET", "libell_d_acheminement": "ST BENOIT LA FORET", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37210"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e083c0585f925d08306ad03a12f8e697a201b972", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "LE GUEDENIAU", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179fd14800c651dd937cfe42773e5ab5470767ae", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "ST MARTIN D ARCE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087c9b1aa813be33c97dd850956e995706222779", "fields": {"code_postal": "49250", "code_commune_insee": "49021", "libell_d_acheminement": "BEAUFORT EN ANJOU", "ligne_5": "GEE", "nom_de_la_commune": "BEAUFORT EN ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45669a629ae86331860f15c08fda8c70d6d63839", "fields": {"nom_de_la_commune": "BEAULIEU SUR LAYON", "libell_d_acheminement": "BEAULIEU SUR LAYON", "code_postal": "49750", "coordonnees_gps": [47.2426647325, -0.667761115453], "code_commune_insee": "49022"}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0288d71330579be0ce49d528989397cb8a85db77", "fields": {"code_postal": "49510", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "JALLAIS", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2126550508, -0.983267587264]}, "geometry": {"type": "Point", "coordinates": [-0.983267587264, 47.2126550508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3466ce34ff67600c547f47bccaa5ca9c9f78ceb8", "fields": {"code_postal": "49510", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LA JUBAUDIERE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2126550508, -0.983267587264]}, "geometry": {"type": "Point", "coordinates": [-0.983267587264, 47.2126550508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1675a4b263fb92692133c7cc6c6751a188e0ed6a", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "GESTE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a72598be62dbfadd20588f70e53ea7c9578665", "fields": {"nom_de_la_commune": "BEGROLLES EN MAUGES", "libell_d_acheminement": "BEGROLLES EN MAUGES", "code_postal": "49122", "coordonnees_gps": [47.1332874312, -0.894051156902], "code_commune_insee": "49027"}, "geometry": {"type": "Point", "coordinates": [-0.894051156902, 47.1332874312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0115d019b229491524e18ec0a3b9c985d2b6b694", "fields": {"code_postal": "49320", "code_commune_insee": "49029", "libell_d_acheminement": "BLAISON ST SULPICE", "ligne_5": "ST SULPICE", "nom_de_la_commune": "BLAISON ST SULPICE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "040eaff44d31ddbe4fbb9b78e22dbed3241cce2b", "fields": {"nom_de_la_commune": "BRAIN SUR ALLONNES", "libell_d_acheminement": "BRAIN SUR ALLONNES", "code_postal": "49650", "coordonnees_gps": [47.3050801952, 0.0400351360047], "code_commune_insee": "49041"}, "geometry": {"type": "Point", "coordinates": [0.0400351360047, 47.3050801952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9267b98ca566857bdb62afa34604e4e7d7774193", "fields": {"nom_de_la_commune": "BREIL", "libell_d_acheminement": "BREIL", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49044"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43fddcadddce76e4094be47993650b5bd2f0f5d2", "fields": {"nom_de_la_commune": "BROSSAY", "libell_d_acheminement": "BROSSAY", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49053"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030790ef2405f8b365ead9b44106be71254b169d", "fields": {"nom_de_la_commune": "CHACE", "libell_d_acheminement": "CHACE", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49060"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1ba56fe4eeb4eadf11972421f23def6bb10d4c", "fields": {"nom_de_la_commune": "LA CHAPELLE HULLIN", "libell_d_acheminement": "LA CHAPELLE HULLIN", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49073"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b0a7cf4f3e3f80b9d85a84c75785f22d4124d9", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LAUD", "libell_d_acheminement": "LA CHAPELLE ST LAUD", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49076"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f318df524ad1c87db00e2f69d704f1033c25d853", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR OUDON", "libell_d_acheminement": "LA CHAPELLE SUR OUDON", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49077"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84b61267fbbb1d76c2d4f215c5da510831d8e37", "fields": {"nom_de_la_commune": "CHARCE ST ELLIER SUR AUBANCE", "libell_d_acheminement": "CHARCE ST ELLIER SUR AUBANCE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49078"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d12689cf093773df7a6c865cdc28f6f07960b5", "fields": {"code_postal": "49320", "code_commune_insee": "49078", "libell_d_acheminement": "CHARCE ST ELLIER SUR AUBANCE", "ligne_5": "ST ELLIER", "nom_de_la_commune": "CHARCE ST ELLIER SUR AUBANCE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a84d90a1f9385bcab513f37877738b47315c5a", "fields": {"nom_de_la_commune": "CHATELAIS", "libell_d_acheminement": "CHATELAIS", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49081"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8c07965ef654813f94dbdc1bf7f2394dab1bef", "fields": {"nom_de_la_commune": "CHAVAIGNES", "libell_d_acheminement": "CHAVAIGNES", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49087"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79e192fdde66da70b66345d724ac7c2151296eb", "fields": {"nom_de_la_commune": "CHAZE SUR ARGOS", "libell_d_acheminement": "CHAZE SUR ARGOS", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49089"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72069ea7786997652f160254812d54d59b2f4da2", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "COSSE D ANJOU", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371911375c4fcd218c5517ba22ff35c838f14486", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "MELAY", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e9e315d57d8944203a56a0c3b4fccd2145f388", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "ST LEZIN", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94a0006e70acaa0e998e9f4911898f3bef066c12", "fields": {"code_postal": "49300", "code_commune_insee": "49099", "libell_d_acheminement": "CHOLET", "ligne_5": "LE PUY ST BONNET", "nom_de_la_commune": "CHOLET", "coordonnees_gps": [47.0459625077, -0.876963134951]}, "geometry": {"type": "Point", "coordinates": [-0.876963134951, 47.0459625077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8562ebbf1750756662a459ff3c724876a34cd979", "fields": {"nom_de_la_commune": "CIZAY LA MADELEINE", "libell_d_acheminement": "CIZAY LA MADELEINE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49100"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5b0c235d15bccc59d102e2db0328a8e9b82c6e", "fields": {"nom_de_la_commune": "CONCOURSON SUR LAYON", "libell_d_acheminement": "CONCOURSON SUR LAYON", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49104"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac15d513b8c1fa2c9fc58ea8b3799ed002986a8", "fields": {"nom_de_la_commune": "CONTIGNE", "libell_d_acheminement": "CONTIGNE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49105"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11c03cbaddd97c99ee2721826fa9f817837e53c", "fields": {"nom_de_la_commune": "LA CORNUAILLE", "libell_d_acheminement": "LA CORNUAILLE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49108"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced9c7a086f897030bb3efbe0bf65faaf6ebc0e1", "fields": {"nom_de_la_commune": "CORON", "libell_d_acheminement": "CORON", "code_postal": "49690", "coordonnees_gps": [47.1203300309, -0.635811367413], "code_commune_insee": "49109"}, "geometry": {"type": "Point", "coordinates": [-0.635811367413, 47.1203300309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817338ee6f899f840969833ebdad867c3823a727", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49115"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09c35a3ab502fc9097fab977b811e305c7541aae", "fields": {"nom_de_la_commune": "ECUILLE", "libell_d_acheminement": "ECUILLE", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49130"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3694c1a29cbdca14298a9617c25c0d241a1d96", "fields": {"nom_de_la_commune": "ETRICHE", "libell_d_acheminement": "ETRICHE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49132"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819ff11fe4d49a0c1f3bbb7f87f75807b7b6dbde", "fields": {"nom_de_la_commune": "FENEU", "libell_d_acheminement": "FENEU", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49135"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa46dbd44636e63dbdd5eca73eaa60d7e959165", "fields": {"code_postal": "49250", "code_commune_insee": "49138", "libell_d_acheminement": "LES BOIS D ANJOU", "ligne_5": "FONTAINE GUERIN", "nom_de_la_commune": "LES BOIS D ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34570b71addea8108f3621a70d931c983f52e20", "fields": {"nom_de_la_commune": "FREIGNE", "libell_d_acheminement": "FREIGNE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49144"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937410c4721ca1267aa82a871328f22eaa02101d", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "LE THOUREIL", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc62bf4a294981d614c2941282f07d8a8d74b93", "fields": {"nom_de_la_commune": "INGRANDES LE FRESNE SUR LOIRE", "libell_d_acheminement": "INGRANDES LE FRESNE SUR LOIRE", "code_postal": "49123", "coordonnees_gps": [47.4332447625, -0.895504618393], "code_commune_insee": "49160"}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a323611fcde2b559d32ee91e9f324a726c841c", "fields": {"code_postal": "49123", "code_commune_insee": "49160", "libell_d_acheminement": "INGRANDES LE FRESNE SUR LOIRE", "ligne_5": "LE FRESNE SUR LOIRE", "nom_de_la_commune": "INGRANDES LE FRESNE SUR LOIRE", "coordonnees_gps": [47.4332447625, -0.895504618393]}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9370a66b3dc4cfec6009a229be8f277dd7ccedf", "fields": {"nom_de_la_commune": "LA JAILLE YVON", "libell_d_acheminement": "LA JAILLE YVON", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49161"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77937c87d7770e5d00ab85d1af5e6bb06dbbae0a", "fields": {"nom_de_la_commune": "LA LANDE CHASLES", "libell_d_acheminement": "LA LANDE CHASLES", "code_postal": "49150", "coordonnees_gps": [47.5402607075, -0.0974658784366], "code_commune_insee": "49171"}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6ea3aa87fe0774c7858a4b67dd2c12d20b206c", "fields": {"nom_de_la_commune": "LASSE", "libell_d_acheminement": "LASSE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49173"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bdf0d9bb039be6d3bfb108ec32ac63a5caafe15", "fields": {"nom_de_la_commune": "LOUVAINES", "libell_d_acheminement": "LOUVAINES", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49184"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d037f2cb0265f8956c6c51d679a7b9383a6d73a7", "fields": {"nom_de_la_commune": "MARCE", "libell_d_acheminement": "MARCE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49188"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ad004c27a443917fc4747b099f04488d7bd0b5", "fields": {"nom_de_la_commune": "MARIGNE", "libell_d_acheminement": "MARIGNE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49189"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07630d62c088447bcf71df6dcdb950ece5a74edf", "fields": {"nom_de_la_commune": "MARTIGNE BRIAND", "libell_d_acheminement": "MARTIGNE BRIAND", "code_postal": "49540", "coordonnees_gps": [47.1719461736, -0.518340326258], "code_commune_insee": "49191"}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8042bbb04acfe8176e602b738ce07d8277e7607", "fields": {"nom_de_la_commune": "LE MAY SUR EVRE", "libell_d_acheminement": "LE MAY SUR EVRE", "code_postal": "49122", "coordonnees_gps": [47.1332874312, -0.894051156902], "code_commune_insee": "49193"}, "geometry": {"type": "Point", "coordinates": [-0.894051156902, 47.1332874312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efa56608883ad2b2b8bdb8b5f6d8bc675f621ea", "fields": {"nom_de_la_commune": "MAZIERES EN MAUGES", "libell_d_acheminement": "MAZIERES EN MAUGES", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49195"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4955eef7b4ec328a30e22d155533e19db638fb1", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49207"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e77b04a1ba806d8962b8be8160ff23c6087a39", "fields": {"nom_de_la_commune": "MONTGUILLON", "libell_d_acheminement": "MONTGUILLON", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49208"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93ab30c09e304df5b10dd75e8f9c5f6890b3e6c", "fields": {"nom_de_la_commune": "MONTREUIL SUR LOIR", "libell_d_acheminement": "MONTREUIL SUR LOIR", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49216"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b7ae8ff5344c40c3b055bddf2c9ea9326994b7", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LA BOISSIERE SUR EVRE", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c868a89ea6e928095b7c9ae0166359b0b4ef72", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "ST PIERRE MONTLIMART", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55de3064bc39bb10de6d79ab077e03797043e9e3", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "ST REMY EN MAUGES", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc0dd64d395340303eea016fa88d1a7dec12fca", "fields": {"code_postal": "49270", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LE FUILET", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bcd0626d2f33a327cce1223e5f35d939ca08093", "fields": {"nom_de_la_commune": "MORANNES SUR SARTHE", "libell_d_acheminement": "MORANNES SUR SARTHE", "code_postal": "49640", "coordonnees_gps": [47.7052254952, -0.382455900897], "code_commune_insee": "49220"}, "geometry": {"type": "Point", "coordinates": [-0.382455900897, 47.7052254952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c44249452bbccebe8fdbd0461878a23b13e06fb", "fields": {"code_postal": "49640", "code_commune_insee": "49220", "libell_d_acheminement": "MORANNES SUR SARTHE", "ligne_5": "CHEMIRE SUR SARTHE", "nom_de_la_commune": "MORANNES SUR SARTHE", "coordonnees_gps": [47.7052254952, -0.382455900897]}, "geometry": {"type": "Point", "coordinates": [-0.382455900897, 47.7052254952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44229918452c97b3692384bcc4dd442c5566fd1", "fields": {"nom_de_la_commune": "PARNAY", "libell_d_acheminement": "PARNAY", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49235"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96deecc2b3170a8e455802f447c4b82f826910be", "fields": {"code_postal": "49290", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "BOURGNEUF EN MAUGES", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3431019383, -0.806177214608]}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e27e9fe6c28b075f0da70832f8aa6f16cb7326", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LE MARILLAIS", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b7134094bf04b16866e1c1cfd4140217859941b", "fields": {"nom_de_la_commune": "ROCHEFORT SUR LOIRE", "libell_d_acheminement": "ROCHEFORT SUR LOIRE", "code_postal": "49190", "coordonnees_gps": [47.3455543641, -0.637191878311], "code_commune_insee": "49259"}, "geometry": {"type": "Point", "coordinates": [-0.637191878311, 47.3455543641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621648f95327b28d2a492d3062549a7a9c5b4f0c", "fields": {"nom_de_la_commune": "STE GEMMES D ANDIGNE", "libell_d_acheminement": "STE GEMMES D ANDIGNE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49277"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4febe92cd3dc7b3db50c097fde3996862cc1d7", "fields": {"nom_de_la_commune": "ST GEORGES SUR LAYON", "libell_d_acheminement": "ST GEORGES SUR LAYON", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49282"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b5953342d2c09bef975a387f18bf1e58709760", "fields": {"code_postal": "49190", "code_commune_insee": "49292", "libell_d_acheminement": "VAL DU LAYON", "ligne_5": "ST AUBIN DE LUIGNE", "nom_de_la_commune": "VAL DU LAYON", "coordonnees_gps": [47.3455543641, -0.637191878311]}, "geometry": {"type": "Point", "coordinates": [-0.637191878311, 47.3455543641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734db65f3907d3bcbe9d3131c3e7ff2262babca2", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST GERMAIN SUR MOINE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361cc1795a7b61ae42ac1af905d49e79903af3aa", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "LA RENAUDIERE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ea105105026ffe562f8391c42b52fffbd76018", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST MACAIRE EN MAUGES", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58306e40fe7ce7bf2c45e71687df9e1efcd5f71", "fields": {"code_postal": "49660", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "TORFOU", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dcc225f573535307e311a3256b6d7525adf1a7", "fields": {"nom_de_la_commune": "ST MARTIN DE LA PLACE", "libell_d_acheminement": "ST MARTIN DE LA PLACE", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49304"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3807caac3f9b90ece09569832bcafbbf8eb78e62", "fields": {"code_postal": "49630", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "CORNE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4461983754, -0.297232608581]}, "geometry": {"type": "Point", "coordinates": [-0.297232608581, 47.4461983754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0e5d761607e1f0036931cbf95643e2c2f40187", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "LA DAGUENIERE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afdf5e8785e1c66d26eaf97bf255fbda3241beb", "fields": {"nom_de_la_commune": "ST MELAINE SUR AUBANCE", "libell_d_acheminement": "ST MELAINE SUR AUBANCE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49308"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275281547e7b3d2fd3b414e64dc57b13abdf698e", "fields": {"nom_de_la_commune": "ST PHILBERT DU PEUPLE", "libell_d_acheminement": "ST PHILBERT DU PEUPLE", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49311"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c2d49456a9c2aee768cbb770efbd97c95f4c1a3", "fields": {"nom_de_la_commune": "ST SAUVEUR DE FLEE", "libell_d_acheminement": "ST SAUVEUR DE FLEE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49319"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a646e61c6e8de753d48ab4cdeafe27c4802e8dc4", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "49123", "coordonnees_gps": [47.4332447625, -0.895504618393], "code_commune_insee": "49321"}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6199b6263034165712fb99b28cc120a2d1685ef2", "fields": {"nom_de_la_commune": "SAVENNIERES", "libell_d_acheminement": "SAVENNIERES", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49329"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e5f3d207259d3e925d00c0fd1bfef5314375be", "fields": {"nom_de_la_commune": "PONTHOILE", "libell_d_acheminement": "PONTHOILE", "code_postal": "80860", "coordonnees_gps": [50.2062809553, 1.7329737582], "code_commune_insee": "80633"}, "geometry": {"type": "Point", "coordinates": [1.7329737582, 50.2062809553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b197842ee358ee6e52685c2674d61a6cba564ac", "fields": {"nom_de_la_commune": "POULAINVILLE", "libell_d_acheminement": "POULAINVILLE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80639"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e249ac8ef43fd156b7535ecf95ace8d50a0c9718", "fields": {"nom_de_la_commune": "POZIERES", "libell_d_acheminement": "POZIERES", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80640"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3fb73da97005432237458c6df26977577d076e", "fields": {"nom_de_la_commune": "PROYART", "libell_d_acheminement": "PROYART", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80644"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2367c54c88d2370e6a08920579d5f15355f209", "fields": {"nom_de_la_commune": "LE QUESNE", "libell_d_acheminement": "LE QUESNE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80651"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f94df663d97be60481b86ba171f221d9368fdc2e", "fields": {"nom_de_la_commune": "QUEVAUVILLERS", "libell_d_acheminement": "QUEVAUVILLERS", "code_postal": "80710", "coordonnees_gps": [49.8158250825, 2.07377059938], "code_commune_insee": "80656"}, "geometry": {"type": "Point", "coordinates": [2.07377059938, 49.8158250825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4e89ea6271479a5dade181b11ead02ca5c1b93", "fields": {"nom_de_la_commune": "RAMBURELLES", "libell_d_acheminement": "RAMBURELLES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80662"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac86a26176646d270ff7547933d0a20f74fb13dd", "fields": {"nom_de_la_commune": "REMAUGIES", "libell_d_acheminement": "REMAUGIES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80667"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff6455ab318ca19a533209376bee7499ab247d5", "fields": {"nom_de_la_commune": "REMIENCOURT", "libell_d_acheminement": "REMIENCOURT", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80668"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91465704713b496921347ea29f465aeb1e5a77c", "fields": {"nom_de_la_commune": "RUMIGNY", "libell_d_acheminement": "RUMIGNY", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80690"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893a034c66d58c62f84418617b016d8a68d21527", "fields": {"nom_de_la_commune": "SAIGNEVILLE", "libell_d_acheminement": "SAIGNEVILLE", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80691"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7c9a395307814f2df52088a83790f730f6bc67", "fields": {"nom_de_la_commune": "SAILLY LAURETTE", "libell_d_acheminement": "SAILLY LAURETTE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80693"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578d492452a468559643ad5059407f2946f08656", "fields": {"nom_de_la_commune": "SAILLY SAILLISEL", "libell_d_acheminement": "SAILLY SAILLISEL", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80695"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca73e7f56742cac05ade8b6fb0d2ebe6e31b3050", "fields": {"nom_de_la_commune": "ST CHRIST BRIOST", "libell_d_acheminement": "ST CHRIST BRIOST", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80701"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efefd385156d883239ab3eac34e033b5db77e12c", "fields": {"nom_de_la_commune": "ST FUSCIEN", "libell_d_acheminement": "ST FUSCIEN", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80702"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef1dc437f6cbe7dbfd1bef4a3d86d553316878c", "fields": {"nom_de_la_commune": "ST GRATIEN", "libell_d_acheminement": "ST GRATIEN", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80704"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e817ace70f0eb7ccc3f246d6d0d709d31a8125", "fields": {"nom_de_la_commune": "ST RIQUIER", "libell_d_acheminement": "ST RIQUIER", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80716"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7078b6b60cc6c5a90ee1e00336df36a8a0dde4c9", "fields": {"nom_de_la_commune": "SAVEUSE", "libell_d_acheminement": "SAVEUSE", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80730"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a800ea9f003c97907b88fa74d4d16c6b0586f8", "fields": {"nom_de_la_commune": "THORY", "libell_d_acheminement": "THORY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80758"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae548f24459e0081a2d15d3910ff3f374290b32", "fields": {"nom_de_la_commune": "TINCOURT BOUCLY", "libell_d_acheminement": "TINCOURT BOUCLY", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80762"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0120841966cce5eb139393aa1f038c3eeeece7", "fields": {"nom_de_la_commune": "TOEUFLES", "libell_d_acheminement": "TOEUFLES", "code_postal": "80870", "coordonnees_gps": [50.0653042148, 1.7446378135], "code_commune_insee": "80764"}, "geometry": {"type": "Point", "coordinates": [1.7446378135, 50.0653042148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413914a9b4e7dc78d7b0b7626d18698d7dbac828", "fields": {"nom_de_la_commune": "VADENCOURT", "libell_d_acheminement": "VADENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80773"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf56d237f5d80eb28ec9338a8d558a59741d3248", "fields": {"nom_de_la_commune": "VAUX SUR SOMME", "libell_d_acheminement": "VAUX SUR SOMME", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80784"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9d7d1afa3974a446e3466601604a841461f0fc", "fields": {"nom_de_la_commune": "VERPILLIERES", "libell_d_acheminement": "VERPILLIERES", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80790"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17e6bf54ba1302145db3144e0bdc52174401dbb", "fields": {"nom_de_la_commune": "VERS SUR SELLES", "libell_d_acheminement": "VERS SUR SELLES", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80791"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ad0c13d3504e2a3bec62eb56ca681bb4bf9c11", "fields": {"nom_de_la_commune": "VRON", "libell_d_acheminement": "VRON", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80815"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6321baf6db06808a555695340460443725f22ed8", "fields": {"nom_de_la_commune": "WARLUS", "libell_d_acheminement": "WARLUS", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80821"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bfbf06084ae41110024c93a2671b48f023dfd5", "fields": {"nom_de_la_commune": "WIENCOURT L EQUIPEE", "libell_d_acheminement": "WIENCOURT L EQUIPEE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80824"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4e9b56d301c5ca314835af99566cb301402c27", "fields": {"nom_de_la_commune": "AGUTS", "libell_d_acheminement": "AGUTS", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81001"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa69b43a20c0073ab3d3e82bc7b3f696ad5a90e", "fields": {"nom_de_la_commune": "ALBINE", "libell_d_acheminement": "ALBINE", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81005"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bab3443b4497d0d9347029dc2661a3d4682713", "fields": {"nom_de_la_commune": "ALOS", "libell_d_acheminement": "ALOS", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81007"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059628a3c11822250885c55bde5b5cc8bf9b8368", "fields": {"nom_de_la_commune": "AMBIALET", "libell_d_acheminement": "AMBIALET", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81010"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2c32d37b43840f1bd7e314060bda2063ec5cae", "fields": {"nom_de_la_commune": "ANGLES", "libell_d_acheminement": "ANGLES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81014"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2726d524908f7a85160ac9174a73fabb1026da7f", "fields": {"nom_de_la_commune": "APPELLE", "libell_d_acheminement": "APPELLE", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81015"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "169e9299e258c35657be24370f0c38381ca84748", "fields": {"nom_de_la_commune": "ARFONS", "libell_d_acheminement": "ARFONS", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81016"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4757a63dcb85442cde6550c5b6a0ef76d0ab753", "fields": {"nom_de_la_commune": "ARIFAT", "libell_d_acheminement": "ARIFAT", "code_postal": "81360", "coordonnees_gps": [43.7318763376, 2.32676924299], "code_commune_insee": "81017"}, "geometry": {"type": "Point", "coordinates": [2.32676924299, 43.7318763376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2d318d8c06e03005b5086e956f04bd8bb6eeb6", "fields": {"nom_de_la_commune": "BANNIERES", "libell_d_acheminement": "BANNIERES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81022"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6760cd44641993014192e6221afc60cabb2878d", "fields": {"nom_de_la_commune": "BARRE", "libell_d_acheminement": "BARRE", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81023"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fbb1cc42d1bea6c52e21264821cf1b99fc33ff", "fields": {"nom_de_la_commune": "BERNAC", "libell_d_acheminement": "BERNAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81029"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356ae156996d5c732df1b72c8365e7ccd272ed0a", "fields": {"nom_de_la_commune": "LE BEZ", "libell_d_acheminement": "LE BEZ", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81031"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6f8fc4700257910e787957dafb8faa9675363e", "fields": {"nom_de_la_commune": "BLAN", "libell_d_acheminement": "BLAN", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81032"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "787044d10a33a98670a86afdd484cc54da58652e", "fields": {"nom_de_la_commune": "BOUT DU PONT DE LARN", "libell_d_acheminement": "BOUT DU PONT DE LARN", "code_postal": "81660", "coordonnees_gps": [43.5285716347, 2.39739974245], "code_commune_insee": "81036"}, "geometry": {"type": "Point", "coordinates": [2.39739974245, 43.5285716347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4cab19ce9734b4679a477b0912985ebfdebd12", "fields": {"nom_de_la_commune": "BRASSAC", "libell_d_acheminement": "BRASSAC", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81037"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aa1842b59b7abcf3c825bce48766f62f348ad88", "fields": {"nom_de_la_commune": "BROUSSE", "libell_d_acheminement": "BROUSSE", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81040"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270542fd5b9293954184fcaa68a0f12869b12f5d", "fields": {"nom_de_la_commune": "BUSQUE", "libell_d_acheminement": "BUSQUE", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81043"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588b5834136d426ad50d7f10cd6d539ba66ecc0b", "fields": {"nom_de_la_commune": "CAHUZAC SUR VERE", "libell_d_acheminement": "CAHUZAC SUR VERE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81051"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af95d4ed20dfbd196fc1332b77314a0ba76e522a", "fields": {"nom_de_la_commune": "CARLUS", "libell_d_acheminement": "CARLUS", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81059"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d577fb36697aaef9663a5865740e55b14b7ea5e", "fields": {"nom_de_la_commune": "CAUCALIERES", "libell_d_acheminement": "CAUCALIERES", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81066"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a509db420e8520ab12bcac1a1434021278f9080d", "fields": {"nom_de_la_commune": "CESTAYROLS", "libell_d_acheminement": "CESTAYROLS", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81067"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e0021f9f50af12cdf258bd60c61752fbbda936", "fields": {"nom_de_la_commune": "CORDES SUR CIEL", "libell_d_acheminement": "CORDES SUR CIEL", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81069"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afb7d367ede5c796c03c3c092aca19f6d5ece413", "fields": {"nom_de_la_commune": "DAMIATTE", "libell_d_acheminement": "DAMIATTE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81078"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0d5c4c2a8cbb2ae106505340eac8adf8694671", "fields": {"nom_de_la_commune": "DONNAZAC", "libell_d_acheminement": "DONNAZAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81080"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660a4148f3cd36e2032fc3b0daa95ecaaa637523", "fields": {"nom_de_la_commune": "DOURGNE", "libell_d_acheminement": "DOURGNE", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81081"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9049439ba90801532921a05e8a1a64f797d0d12a", "fields": {"nom_de_la_commune": "LE DOURN", "libell_d_acheminement": "LE DOURN", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81082"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0be9e8477b2c8eea1e1822d11dc3bdd0b8f36a", "fields": {"nom_de_la_commune": "FREJEVILLE", "libell_d_acheminement": "FREJEVILLE", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81098"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7320c7950f334d0d71986aee72ff180b1f40f44", "fields": {"nom_de_la_commune": "LE GARRIC", "libell_d_acheminement": "LE GARRIC", "code_postal": "81450", "coordonnees_gps": [44.0037119924, 2.1739071178], "code_commune_insee": "81101"}, "geometry": {"type": "Point", "coordinates": [2.1739071178, 44.0037119924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0c26004b7447ff1951acc7c699484721251e44", "fields": {"nom_de_la_commune": "LACAPELLE SEGALAR", "libell_d_acheminement": "LACAPELLE SEGALAR", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81123"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ccc6630a27159bc8e4934ac8e2ef2adcdf5c5c", "fields": {"nom_de_la_commune": "LACROISILLE", "libell_d_acheminement": "LACROISILLE", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81127"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ecbfaae52a1f884a2d2fdcb9db0d0db63f0f234", "fields": {"nom_de_la_commune": "LAGARRIGUE", "libell_d_acheminement": "LAGARRIGUE", "code_postal": "81090", "coordonnees_gps": [43.5738802542, 2.29897159692], "code_commune_insee": "81130"}, "geometry": {"type": "Point", "coordinates": [2.29897159692, 43.5738802542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb43488e9420b144ac6fe3fe474b83292cf5dcb", "fields": {"nom_de_la_commune": "LAMONTELARIE", "libell_d_acheminement": "LAMONTELARIE", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81134"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d39699d457840402193df9fed8faee898ee07f6", "fields": {"nom_de_la_commune": "LIVERS CAZELLES", "libell_d_acheminement": "LIVERS CAZELLES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81146"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e068bfc5bfe8053e570b8b28a45e3a17b0cee04c", "fields": {"nom_de_la_commune": "LOUBERS", "libell_d_acheminement": "LOUBERS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81148"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1697dcea44d86c67cc354fe2753d89b65c420c41", "fields": {"nom_de_la_commune": "MEZENS", "libell_d_acheminement": "MEZENS", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81164"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5096faa91dec295520592f34074b3773c3dc721", "fields": {"nom_de_la_commune": "MILHARS", "libell_d_acheminement": "MILHARS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81165"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4d908a80cc9155cceb5c3ef5ab519e5565f3f0", "fields": {"nom_de_la_commune": "MIRANDOL BOURGNOUNAC", "libell_d_acheminement": "MIRANDOL BOURGNOUNAC", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81168"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1c931b78030dcd8cefce4b799312e8a495b0b2", "fields": {"nom_de_la_commune": "MONTELS", "libell_d_acheminement": "MONTELS", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81176"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df9e03e932e5f60e33a9fd8ee50ba296457e141", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81178"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f18963ede20358e8dba5022ee3547e87d343f17", "fields": {"nom_de_la_commune": "MONTGEY", "libell_d_acheminement": "MONTGEY", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81179"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8696a04978e527b24c081ff986fe7d0b4b5d95ae", "fields": {"nom_de_la_commune": "MONTIRAT", "libell_d_acheminement": "MONTIRAT", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81180"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "269a86a8a0d8a3227e05b9d8ce64ec8e524a5207", "fields": {"nom_de_la_commune": "MONTVALEN", "libell_d_acheminement": "MONTVALEN", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81185"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007e00600d1a3c4592a85f8ea369a5c40a388413", "fields": {"nom_de_la_commune": "MOULARES", "libell_d_acheminement": "MOULARES", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81186"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2fdd110bea8e98a303b02e82ea7b1add12630d", "fields": {"nom_de_la_commune": "MOUZIEYS PANENS", "libell_d_acheminement": "MOUZIEYS PANENS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81191"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a63519e61c61323b07615a28de32fe3a843175f", "fields": {"nom_de_la_commune": "MURAT SUR VEBRE", "libell_d_acheminement": "MURAT SUR VEBRE", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81192"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735e0365c766d899b3417b636bb5ff9645b8916c", "fields": {"nom_de_la_commune": "PADIES", "libell_d_acheminement": "PADIES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81199"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c78b86f9cedd074cc129a6da69723fd1b5d322a", "fields": {"nom_de_la_commune": "PENNE", "libell_d_acheminement": "PENNE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81206"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395b03c75eafbcaf0522b25d8f20220f5e9d958f", "fields": {"nom_de_la_commune": "PUYCELSI", "libell_d_acheminement": "PUYCELSI", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81217"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10e6e4d2d64c4091c777385b7475aead7aef3f3", "fields": {"nom_de_la_commune": "PUYLAURENS", "libell_d_acheminement": "PUYLAURENS", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81219"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483bcf6eaf122357eb0d55be0288d51c243ee352", "fields": {"nom_de_la_commune": "RONEL", "libell_d_acheminement": "RONEL", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81226"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf83cbd9e4a7b9bbf64d09e9f4ea3a0f9721d98", "fields": {"nom_de_la_commune": "ROQUEVIDAL", "libell_d_acheminement": "ROQUEVIDAL", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81229"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f6cc8266e98e718ab37f5534cc7f50d3cb4bf9", "fields": {"nom_de_la_commune": "ROUAIROUX", "libell_d_acheminement": "ROUAIROUX", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81231"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15508a54bf159b652419c3aa43e37e7c71b4d2d7", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81232"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915fd0295421c11c9e85a6fb8ed3ee773ec1313e", "fields": {"nom_de_la_commune": "ST CIRGUE", "libell_d_acheminement": "ST CIRGUE", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81247"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac698e41753c6ae316bd34498f949bb72a9f700a", "fields": {"nom_de_la_commune": "ST JEAN DE RIVES", "libell_d_acheminement": "ST JEAN DE RIVES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81255"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466a255896437fac5f93996580b6b5aa35a322d0", "fields": {"nom_de_la_commune": "ST JUERY", "libell_d_acheminement": "ST JUERY", "code_postal": "81160", "coordonnees_gps": [43.9525794482, 2.22487127822], "code_commune_insee": "81257"}, "geometry": {"type": "Point", "coordinates": [2.22487127822, 43.9525794482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4986709d46cbc46ca279830f2ca76b037db0cf01", "fields": {"nom_de_la_commune": "ST LIEUX LES LAVAUR", "libell_d_acheminement": "ST LIEUX LES LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81261"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7b01ce17267284bbec357257f56c722ac7aa13", "fields": {"nom_de_la_commune": "ST MARCEL CAMPES", "libell_d_acheminement": "ST MARCEL CAMPES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81262"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7630eb2cd994cf3999d1afb75ac2117b397de41e", "fields": {"code_postal": "81170", "code_commune_insee": "81262", "libell_d_acheminement": "ST MARCEL CAMPES", "ligne_5": "CAMPES", "nom_de_la_commune": "ST MARCEL CAMPES", "coordonnees_gps": [44.0807353424, 1.93361594933]}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6799895ee90f5623468352e8278723f878580f88", "fields": {"nom_de_la_commune": "ST MICHEL LABADIE", "libell_d_acheminement": "ST MICHEL LABADIE", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81264"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d324fa4a09347678da250bfd847aa0ec6b57732e", "fields": {"nom_de_la_commune": "ST SULPICE LA POINTE", "libell_d_acheminement": "ST SULPICE LA POINTE", "code_postal": "81370", "coordonnees_gps": [43.7592511808, 1.68654140886], "code_commune_insee": "81271"}, "geometry": {"type": "Point", "coordinates": [1.68654140886, 43.7592511808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e409a43fdf634d6a4bf4ff34267c3873f22773f6", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81275"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148a133eb317e499e87ff5ef7f76a7ee6f23826c", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81278"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fc7ef417734d1aedefb72896cfb6ccb4a443dc", "fields": {"nom_de_la_commune": "TECOU", "libell_d_acheminement": "TECOU", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81294"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c6b9f28741dd7cbd9928ba19bd0f11c256854da", "fields": {"nom_de_la_commune": "TEYSSODE", "libell_d_acheminement": "TEYSSODE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81299"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb99c6703909a7d8c8f510172e918106de6e948", "fields": {"nom_de_la_commune": "VALDERIES", "libell_d_acheminement": "VALDERIES", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81306"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d3bc275a01bea9ac15db755bfb20a012971417", "fields": {"nom_de_la_commune": "VALDURENQUE", "libell_d_acheminement": "VALDURENQUE", "code_postal": "81090", "coordonnees_gps": [43.5738802542, 2.29897159692], "code_commune_insee": "81307"}, "geometry": {"type": "Point", "coordinates": [2.29897159692, 43.5738802542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e674c644d3e3bc8274ff3064412b931ff4f7d3", "fields": {"nom_de_la_commune": "VEILHES", "libell_d_acheminement": "VEILHES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81310"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "299b06799237977f65671db7697ec5b5d9069175", "fields": {"nom_de_la_commune": "VIANE", "libell_d_acheminement": "VIANE", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81314"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2161c5469b41fa6acbb30864b81ca51323ebb494", "fields": {"nom_de_la_commune": "VIELMUR SUR AGOUT", "libell_d_acheminement": "VIELMUR SUR AGOUT", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81315"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b33a12505bf0c48d3064a16fb92a5d04f7c0d8", "fields": {"nom_de_la_commune": "VITERBE", "libell_d_acheminement": "VITERBE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81323"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e6584650c89626e2030f99c78bf49c5dd9e0c6", "fields": {"nom_de_la_commune": "AUTERIVE", "libell_d_acheminement": "AUTERIVE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82006"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132c0ad976fc084f093ecf6a3a5d5fb256a5ae85", "fields": {"nom_de_la_commune": "VALGORGE", "libell_d_acheminement": "VALGORGE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07329"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2d7c56ff80ec37090d1a006045482d3b13d489", "fields": {"nom_de_la_commune": "SAMPZON", "libell_d_acheminement": "SAMPZON", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07306"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62662092ecc2b259df035eb438f1d435b888dd7", "fields": {"nom_de_la_commune": "THUEYTS", "libell_d_acheminement": "THUEYTS", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07322"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb2a84f60c41f3e838c719319a9a05a80bd7fa9", "fields": {"nom_de_la_commune": "LE TEIL", "libell_d_acheminement": "LE TEIL", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07319"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c8cb725322aaf80c21f5bc48475176f218e8fe", "fields": {"nom_de_la_commune": "SAVAS", "libell_d_acheminement": "SAVAS", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07310"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5a0d3afe3d6541e2929379c9f990ee9d76b2b5", "fields": {"nom_de_la_commune": "UCEL", "libell_d_acheminement": "UCEL", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07325"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fdf432601a5e1275d7d563252f72159a4acec5a", "fields": {"nom_de_la_commune": "UZER", "libell_d_acheminement": "UZER", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07327"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc75c2d51e0039ffb91ac49dd9ccf83eedf473e1", "fields": {"code_postal": "08260", "code_commune_insee": "08037", "libell_d_acheminement": "AUVILLERS LES FORGES", "ligne_5": "MON IDEE", "nom_de_la_commune": "AUVILLERS LES FORGES", "coordonnees_gps": [49.8443145713, 4.39580518668]}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de8b8e1e77cbac3ddf9928feec8a1e92576bb6d", "fields": {"nom_de_la_commune": "AUTRECOURT ET POURRON", "libell_d_acheminement": "AUTRECOURT ET POURRON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08034"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9606f17a2f62be38772efa196e0b690409a7c68", "fields": {"nom_de_la_commune": "AUTRUCHE", "libell_d_acheminement": "AUTRUCHE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08035"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c72b7f680777ba248cd1fb0bcc1666d62789cf1", "fields": {"nom_de_la_commune": "BAALONS", "libell_d_acheminement": "BAALONS", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08041"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b810afb6c9db7071e287e32af17eceb23ff36d76", "fields": {"nom_de_la_commune": "BALHAM", "libell_d_acheminement": "BALHAM", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08044"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df976d1c645bdb03c5586e70d07e8afbafec8ff", "fields": {"nom_de_la_commune": "BALAN", "libell_d_acheminement": "BALAN", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08043"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "438fe3336fe6ebe832a27f5591308ed575621b53", "fields": {"code_postal": "06660", "code_commune_insee": "06120", "libell_d_acheminement": "ST ETIENNE DE TINEE", "ligne_5": "AURON", "nom_de_la_commune": "ST ETIENNE DE TINEE", "coordonnees_gps": [44.2619230059, 6.89791152248]}, "geometry": {"type": "Point", "coordinates": [6.89791152248, 44.2619230059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f91679e4c9241a1de12414f367c7c9dbc2dcb27", "fields": {"code_postal": "06560", "code_commune_insee": "06152", "libell_d_acheminement": "VALBONNE", "ligne_5": "SOPHIA ANTIPOLIS", "nom_de_la_commune": "VALBONNE", "coordonnees_gps": [43.6276793002, 7.02951667075]}, "geometry": {"type": "Point", "coordinates": [7.02951667075, 43.6276793002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55adf9a1353dc36ded5841900c1f622fc026b89a", "fields": {"nom_de_la_commune": "THEOULE SUR MER", "libell_d_acheminement": "THEOULE SUR MER", "code_postal": "06590", "coordonnees_gps": [43.4984064524, 6.92997887504], "code_commune_insee": "06138"}, "geometry": {"type": "Point", "coordinates": [6.92997887504, 43.4984064524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad753698effde1ade4c42074b2ada1a301f977a7", "fields": {"nom_de_la_commune": "SPERACEDES", "libell_d_acheminement": "SPERACEDES", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06137"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2159520d57c03783917704c8ef26f3d0c3c761e", "fields": {"nom_de_la_commune": "VALDEBLORE", "libell_d_acheminement": "VALDEBLORE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06153"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523af3990c8f661c2dd7ce82236df544d0f7e8bf", "fields": {"nom_de_la_commune": "VALBONNE", "libell_d_acheminement": "VALBONNE", "code_postal": "06560", "coordonnees_gps": [43.6276793002, 7.02951667075], "code_commune_insee": "06152"}, "geometry": {"type": "Point", "coordinates": [7.02951667075, 43.6276793002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89516543708f35406681a585f8ced0ceea7176c4", "fields": {"nom_de_la_commune": "ST AUBAN", "libell_d_acheminement": "ST AUBAN", "code_postal": "06850", "coordonnees_gps": [43.8467484238, 6.75541099886], "code_commune_insee": "06116"}, "geometry": {"type": "Point", "coordinates": [6.75541099886, 43.8467484238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65214e9dc23880dc25a1c260c1cbfbfe83061566", "fields": {"nom_de_la_commune": "SERANON", "libell_d_acheminement": "SERANON", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06134"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe230e7c98e4ca54f45df4bc9a7d887b21b89d1", "fields": {"nom_de_la_commune": "SIGALE", "libell_d_acheminement": "SIGALE", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06135"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddf54d93e2cd70756d509e3c9ff0b7001b1b680", "fields": {"nom_de_la_commune": "SAORGE", "libell_d_acheminement": "SAORGE", "code_postal": "06540", "coordonnees_gps": [43.9800223211, 7.52586230957], "code_commune_insee": "06132"}, "geometry": {"type": "Point", "coordinates": [7.52586230957, 43.9800223211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15a54d6f73cc1019b0326f6419f5d99fec3ae0b", "fields": {"code_postal": "07460", "code_commune_insee": "07031", "libell_d_acheminement": "BERRIAS ET CASTELJAU", "ligne_5": "CASTELJAU", "nom_de_la_commune": "BERRIAS ET CASTELJAU", "coordonnees_gps": [44.343480855, 4.20658690309]}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d80819aec9762e950a13f193734cb529b85fa4", "fields": {"nom_de_la_commune": "ALBON D ARDECHE", "libell_d_acheminement": "ALBON D ARDECHE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07006"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbd3af579786a72162618bb02ac89b6989819ab", "fields": {"nom_de_la_commune": "VALLAURIS", "libell_d_acheminement": "VALLAURIS", "code_postal": "06220", "coordonnees_gps": [43.5766743671, 7.05796623737], "code_commune_insee": "06155"}, "geometry": {"type": "Point", "coordinates": [7.05796623737, 43.5766743671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd39d7a3dd5c8591994b2f8ae6dc841ee337fcdd", "fields": {"nom_de_la_commune": "BEAUVENE", "libell_d_acheminement": "BEAUVENE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07030"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba33ddf798a61d0d8807c9c645ebca473c632d3", "fields": {"nom_de_la_commune": "AUBIGNAS", "libell_d_acheminement": "AUBIGNAS", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07020"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bd91a83812fe4d54dff332cda09ab5d1df96fc", "fields": {"nom_de_la_commune": "BERZEME", "libell_d_acheminement": "BERZEME", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07032"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f01403a75ac63b5c2ee999829d5c139cad6c269", "fields": {"nom_de_la_commune": "BARNAS", "libell_d_acheminement": "BARNAS", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07025"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a46b86d7f299d62942ac0df8d48ab25c43e428", "fields": {"nom_de_la_commune": "BESSAS", "libell_d_acheminement": "BESSAS", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07033"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4613e82116f7dc2b1a27c7e99ce3d76bb0db5031", "fields": {"nom_de_la_commune": "ASTET", "libell_d_acheminement": "ASTET", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07018"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be90566169986271d9fca625856e23fedb875a12", "fields": {"nom_de_la_commune": "BOGY", "libell_d_acheminement": "BOGY", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07036"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6acb8ab4ef71c607ae58599bbeaa1cc06b983f1", "fields": {"nom_de_la_commune": "MONTPEZAT SOUS BAUZON", "libell_d_acheminement": "MONTPEZAT SOUS BAUZON", "code_postal": "07560", "coordonnees_gps": [44.7182672724, 4.176983695], "code_commune_insee": "07161"}, "geometry": {"type": "Point", "coordinates": [4.176983695, 44.7182672724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab07ccb1602944bd49cbdbf0f4cdb22154c64a91", "fields": {"nom_de_la_commune": "MAZAN L ABBAYE", "libell_d_acheminement": "MAZAN L ABBAYE", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07154"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183b8940dddf44d3ff41cd9f9e9efaf83818eb14", "fields": {"nom_de_la_commune": "LE PLAGNAL", "libell_d_acheminement": "LE PLAGNAL", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07175"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4cd37178dbb26b66189102387c7bd5db9449d2c", "fields": {"nom_de_la_commune": "MONESTIER", "libell_d_acheminement": "MONESTIER", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07160"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb6b158004d7be9080b591ac8a85f8f1e40c91e", "fields": {"nom_de_la_commune": "PEREYRES", "libell_d_acheminement": "PEREYRES", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07173"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b0c8ada5b1ef58e2526e4e7d047e984d2d1a16", "fields": {"nom_de_la_commune": "LE POUZIN", "libell_d_acheminement": "LE POUZIN", "code_postal": "07250", "coordonnees_gps": [44.769843603, 4.73616090056], "code_commune_insee": "07181"}, "geometry": {"type": "Point", "coordinates": [4.73616090056, 44.769843603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625f5d4eba0f6ee97be23bad47d966f0c41fe609", "fields": {"nom_de_la_commune": "MEYSSE", "libell_d_acheminement": "MEYSSE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07157"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7e141dc27504ec10031ff9e6006bcca9400671", "fields": {"nom_de_la_commune": "PLATS", "libell_d_acheminement": "PLATS", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07177"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f930cb7f0215dbbf84108a466fe506d4a5167126", "fields": {"nom_de_la_commune": "AUBIGNY LES POTHEES", "libell_d_acheminement": "AUBIGNY LES POTHEES", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08026"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b134c0dee7d585b8ae98c0c8b1ce62d2dc68e968", "fields": {"nom_de_la_commune": "ACY ROMANCE", "libell_d_acheminement": "ACY ROMANCE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08001"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4377e847e3ba1202d7bec4cb48e97d1a4b50b597", "fields": {"nom_de_la_commune": "ALINCOURT", "libell_d_acheminement": "ALINCOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08005"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c790038d2e2f954ec82dfcf729fe72cd1d6028d3", "fields": {"nom_de_la_commune": "ANGECOURT", "libell_d_acheminement": "ANGECOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08013"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e16ff4589a5e16e48f06efc871b3d829f95545", "fields": {"nom_de_la_commune": "VIVIERS", "libell_d_acheminement": "VIVIERS", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07346"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2556e61523a46f25f1f3e2bacda46dbc7b5ca860", "fields": {"nom_de_la_commune": "ATTIGNY", "libell_d_acheminement": "ATTIGNY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08025"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c989e52ddcd1611a0a64339e773a7bdd5a49c29f", "fields": {"nom_de_la_commune": "VINEZAC", "libell_d_acheminement": "VINEZAC", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07343"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c783a33763a0338c7a798678aa0eaa1b85ab96fe", "fields": {"nom_de_la_commune": "ARREUX", "libell_d_acheminement": "ARREUX", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08022"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918c4e9835c846520cd2dad776609043c4e1c659", "fields": {"nom_de_la_commune": "VION", "libell_d_acheminement": "VION", "code_postal": "07610", "coordonnees_gps": [45.1098494748, 4.78303209156], "code_commune_insee": "07345"}, "geometry": {"type": "Point", "coordinates": [4.78303209156, 45.1098494748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1058a9bafdc0fee3ac036390a6eefe060b5b1c", "fields": {"nom_de_la_commune": "AUGE", "libell_d_acheminement": "AUGE", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08030"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477e9a37ddc2bbc33beaa04103b9c97cc80d4c2c", "fields": {"nom_de_la_commune": "BLANZY LA SALONNAISE", "libell_d_acheminement": "BLANZY LA SALONNAISE", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08070"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2044052a230a7dc9276c20f4a0142dc8f5e0658", "fields": {"nom_de_la_commune": "BOGNY SUR MEUSE", "libell_d_acheminement": "BOGNY SUR MEUSE", "code_postal": "08120", "coordonnees_gps": [49.8480830098, 4.7512697377], "code_commune_insee": "08081"}, "geometry": {"type": "Point", "coordinates": [4.7512697377, 49.8480830098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3b3ca80d281121eb8055264b968613e4af7e4d", "fields": {"nom_de_la_commune": "BERGNICOURT", "libell_d_acheminement": "BERGNICOURT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08060"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5332c0dea5e4694b9e3e8aa55ae39e6462f84e49", "fields": {"nom_de_la_commune": "BERTONCOURT", "libell_d_acheminement": "BERTONCOURT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08062"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab3152852912a5636a52002e3066d485c50cf15", "fields": {"nom_de_la_commune": "BOUTANCOURT", "libell_d_acheminement": "BOUTANCOURT", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08079"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c464403a986b79d96f1a3016aaea0581ca93d0", "fields": {"nom_de_la_commune": "BIERMES", "libell_d_acheminement": "BIERMES", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08064"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fd1e86d560c43236beaff97d8c024b932e4228", "fields": {"nom_de_la_commune": "BOURCQ", "libell_d_acheminement": "BOURCQ", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08077"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6367a696942aad9b3dbbef7034dcad5e7ebebb70", "fields": {"nom_de_la_commune": "CORNY MACHEROMENIL", "libell_d_acheminement": "CORNY MACHEROMENIL", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08132"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f0d9e7c6a79c1ff70259bd2e7b430216ad4caa", "fields": {"nom_de_la_commune": "LES DEUX VILLES", "libell_d_acheminement": "LES DEUX VILLES", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08138"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ebc4f9b1579606831d0ce61b65c711a2e1915a", "fields": {"nom_de_la_commune": "DRICOURT", "libell_d_acheminement": "DRICOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08147"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de16017a9413bd3becb47966f18a4fc1a05bb3d4", "fields": {"nom_de_la_commune": "CORNAY", "libell_d_acheminement": "CORNAY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08131"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3916634e9c80e7efdec35ee6d3e9f5e68c884c", "fields": {"nom_de_la_commune": "DAIGNY", "libell_d_acheminement": "DAIGNY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08136"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e2aebe44f0fd712f3d1466cdbf2092a4bf14a19", "fields": {"nom_de_la_commune": "ELAN", "libell_d_acheminement": "ELAN", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08152"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd12a6aadba43f84ffc2ecf1dffb3d320c0ffa70", "fields": {"nom_de_la_commune": "FAUX", "libell_d_acheminement": "FAUX", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08165"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b02710dc1916e0fff1b8809ecb0c61c36f8ac75", "fields": {"nom_de_la_commune": "MALAKOFF", "libell_d_acheminement": "MALAKOFF", "code_postal": "92240", "coordonnees_gps": [48.8165665198, 2.29609038322], "code_commune_insee": "92046"}, "geometry": {"type": "Point", "coordinates": [2.29609038322, 48.8165665198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297e4599add5101a0f58fab47e479a448c2617ea", "fields": {"nom_de_la_commune": "MARNES LA COQUETTE", "libell_d_acheminement": "MARNES LA COQUETTE", "code_postal": "92430", "coordonnees_gps": [48.830772096, 2.16611369469], "code_commune_insee": "92047"}, "geometry": {"type": "Point", "coordinates": [2.16611369469, 48.830772096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2d43f00e75c09f20f3dd61d339bd9e3670accc", "fields": {"nom_de_la_commune": "MEUDON", "libell_d_acheminement": "MEUDON", "code_postal": "92190", "coordonnees_gps": [48.8040544516, 2.22691872954], "code_commune_insee": "92048"}, "geometry": {"type": "Point", "coordinates": [2.22691872954, 48.8040544516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c836a820473baf80df74dc4b603882d9cf4e7cb0", "fields": {"code_postal": "92360", "code_commune_insee": "92048", "libell_d_acheminement": "MEUDON", "ligne_5": "MEUDON LA FORET", "nom_de_la_commune": "MEUDON", "coordonnees_gps": [48.8040544516, 2.22691872954]}, "geometry": {"type": "Point", "coordinates": [2.22691872954, 48.8040544516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efb33e6c38c5218712cedd75caf7e92cabc8618", "fields": {"nom_de_la_commune": "NEUILLY SUR SEINE", "libell_d_acheminement": "NEUILLY SUR SEINE", "code_postal": "92200", "coordonnees_gps": [48.8855663756, 2.26645990318], "code_commune_insee": "92051"}, "geometry": {"type": "Point", "coordinates": [2.26645990318, 48.8855663756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5de54661529c79e5647300c7757e441606ba078", "fields": {"nom_de_la_commune": "LE PLESSIS ROBINSON", "libell_d_acheminement": "LE PLESSIS ROBINSON", "code_postal": "92350", "coordonnees_gps": [48.7805420361, 2.25983416504], "code_commune_insee": "92060"}, "geometry": {"type": "Point", "coordinates": [2.25983416504, 48.7805420361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309e3de00879fe3d7cf70715fd3cdb66b7ef160d", "fields": {"code_postal": "92350", "code_commune_insee": "92060", "libell_d_acheminement": "LE PLESSIS ROBINSON", "ligne_5": "ROBINSON", "nom_de_la_commune": "LE PLESSIS ROBINSON", "coordonnees_gps": [48.7805420361, 2.25983416504]}, "geometry": {"type": "Point", "coordinates": [2.25983416504, 48.7805420361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687e5126c6bb2533fc75f519ae32d6b5bb5390bf", "fields": {"code_postal": "92500", "code_commune_insee": "92063", "libell_d_acheminement": "RUEIL MALMAISON", "ligne_5": "BUZENVAL", "nom_de_la_commune": "RUEIL MALMAISON", "coordonnees_gps": [48.8694433502, 2.17774350372]}, "geometry": {"type": "Point", "coordinates": [2.17774350372, 48.8694433502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3856edb2b906a4933e3bcd47b1b3e0ca08e9357", "fields": {"nom_de_la_commune": "SEVRES", "libell_d_acheminement": "SEVRES", "code_postal": "92310", "coordonnees_gps": [48.8214320054, 2.20990136244], "code_commune_insee": "92072"}, "geometry": {"type": "Point", "coordinates": [2.20990136244, 48.8214320054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454fdd57c0c23b3dae94a2ae9da46899b33ef99c", "fields": {"nom_de_la_commune": "AULNAY SOUS BOIS", "libell_d_acheminement": "AULNAY SOUS BOIS", "code_postal": "93600", "coordonnees_gps": [48.9461334622, 2.49331125191], "code_commune_insee": "93005"}, "geometry": {"type": "Point", "coordinates": [2.49331125191, 48.9461334622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d23ad3827a1fe1a13738bc886dc139de315f85", "fields": {"nom_de_la_commune": "LE BLANC MESNIL", "libell_d_acheminement": "LE BLANC MESNIL", "code_postal": "93150", "coordonnees_gps": [48.939273181, 2.46125619205], "code_commune_insee": "93007"}, "geometry": {"type": "Point", "coordinates": [2.46125619205, 48.939273181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9599399bb72ed23f026148555cc38251af7c94b2", "fields": {"nom_de_la_commune": "BONDY", "libell_d_acheminement": "BONDY", "code_postal": "93140", "coordonnees_gps": [48.9023023139, 2.48350884591], "code_commune_insee": "93010"}, "geometry": {"type": "Point", "coordinates": [2.48350884591, 48.9023023139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0109b946acf60c9e18d80310689afbae58a6c005", "fields": {"nom_de_la_commune": "GAGNY", "libell_d_acheminement": "GAGNY", "code_postal": "93220", "coordonnees_gps": [48.8817476544, 2.54495090705], "code_commune_insee": "93032"}, "geometry": {"type": "Point", "coordinates": [2.54495090705, 48.8817476544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455439301dd2990b3152c559cbd4bc9f6e3c9890", "fields": {"nom_de_la_commune": "NEUILLY SUR MARNE", "libell_d_acheminement": "NEUILLY SUR MARNE", "code_postal": "93330", "coordonnees_gps": [48.8626619903, 2.54037328221], "code_commune_insee": "93050"}, "geometry": {"type": "Point", "coordinates": [2.54037328221, 48.8626619903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d72c6d4fac5d622dfbc81c0c48128d15142fe1e", "fields": {"nom_de_la_commune": "LE RAINCY", "libell_d_acheminement": "LE RAINCY", "code_postal": "93340", "coordonnees_gps": [48.8963138877, 2.51858297837], "code_commune_insee": "93062"}, "geometry": {"type": "Point", "coordinates": [2.51858297837, 48.8963138877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e855241c1ae04ae9b91451f02a815d9fa9144c2", "fields": {"nom_de_la_commune": "ROSNY SOUS BOIS", "libell_d_acheminement": "ROSNY SOUS BOIS", "code_postal": "93110", "coordonnees_gps": [48.8745435446, 2.48670478198], "code_commune_insee": "93064"}, "geometry": {"type": "Point", "coordinates": [2.48670478198, 48.8745435446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfb96709371a3a57a3f23f7bf1c614ad94793ab", "fields": {"nom_de_la_commune": "VAUJOURS", "libell_d_acheminement": "VAUJOURS", "code_postal": "93410", "coordonnees_gps": [48.9327361643, 2.58211595176], "code_commune_insee": "93074"}, "geometry": {"type": "Point", "coordinates": [2.58211595176, 48.9327361643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe8acf628046abc4ef71cce783daca18962c0536", "fields": {"nom_de_la_commune": "VILLEMOMBLE", "libell_d_acheminement": "VILLEMOMBLE", "code_postal": "93250", "coordonnees_gps": [48.8845420906, 2.50909327603], "code_commune_insee": "93077"}, "geometry": {"type": "Point", "coordinates": [2.50909327603, 48.8845420906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545aaf668362218923f8f5013d86eeff56965552", "fields": {"nom_de_la_commune": "ABLON SUR SEINE", "libell_d_acheminement": "ABLON SUR SEINE", "code_postal": "94480", "coordonnees_gps": [48.7245551904, 2.42140786252], "code_commune_insee": "94001"}, "geometry": {"type": "Point", "coordinates": [2.42140786252, 48.7245551904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0175fbd0bdd5bebbdba973517ea34461c012b4df", "fields": {"code_postal": "94500", "code_commune_insee": "94017", "libell_d_acheminement": "CHAMPIGNY SUR MARNE", "ligne_5": "COEUILLY", "nom_de_la_commune": "CHAMPIGNY SUR MARNE", "coordonnees_gps": [48.8176869619, 2.51584557843]}, "geometry": {"type": "Point", "coordinates": [2.51584557843, 48.8176869619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45af0481de128c1e2181bdb3c201216f771f4fbc", "fields": {"nom_de_la_commune": "CRETEIL", "libell_d_acheminement": "CRETEIL", "code_postal": "94000", "coordonnees_gps": [48.7836775841, 2.45497922897], "code_commune_insee": "94028"}, "geometry": {"type": "Point", "coordinates": [2.45497922897, 48.7836775841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c11a079f20168c544072cdef94a5643b7c47af", "fields": {"nom_de_la_commune": "GENTILLY", "libell_d_acheminement": "GENTILLY", "code_postal": "94250", "coordonnees_gps": [48.812983845, 2.3432244613], "code_commune_insee": "94037"}, "geometry": {"type": "Point", "coordinates": [2.3432244613, 48.812983845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8381ccad0ba35822f63c25ed0dc48cb72b2511", "fields": {"nom_de_la_commune": "MAISONS ALFORT", "libell_d_acheminement": "MAISONS ALFORT", "code_postal": "94700", "coordonnees_gps": [48.8058570543, 2.4381304073], "code_commune_insee": "94046"}, "geometry": {"type": "Point", "coordinates": [2.4381304073, 48.8058570543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4b6c9770ef8aef39627c2303a19878783b1c5d", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY SUR YERRES", "code_postal": "94520", "coordonnees_gps": [48.7018918505, 2.55461467284], "code_commune_insee": "94056"}, "geometry": {"type": "Point", "coordinates": [2.55461467284, 48.7018918505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80d356d978090fd4aa17c9ca706ef74a5662d8f", "fields": {"nom_de_la_commune": "LE PERREUX SUR MARNE", "libell_d_acheminement": "LE PERREUX SUR MARNE", "code_postal": "94170", "coordonnees_gps": [48.8421585181, 2.50411322591], "code_commune_insee": "94058"}, "geometry": {"type": "Point", "coordinates": [2.50411322591, 48.8421585181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7fea786e6a5a10eb640b81ad0b512fb10a94d4", "fields": {"nom_de_la_commune": "RUNGIS", "libell_d_acheminement": "RUNGIS", "code_postal": "94150", "coordonnees_gps": [48.7496203927, 2.35222837968], "code_commune_insee": "94065"}, "geometry": {"type": "Point", "coordinates": [2.35222837968, 48.7496203927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0364ea1b23ea5c8bb347a49b7b7a0f950845de", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "94410", "coordonnees_gps": [48.818049358, 2.43718026115], "code_commune_insee": "94069"}, "geometry": {"type": "Point", "coordinates": [2.43718026115, 48.818049358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4234e4a837469ef2ac488b4d74ba648f84f463c2", "fields": {"nom_de_la_commune": "VILLENEUVE ST GEORGES", "libell_d_acheminement": "VILLENEUVE ST GEORGES", "code_postal": "94190", "coordonnees_gps": [48.7418949096, 2.44899755238], "code_commune_insee": "94078"}, "geometry": {"type": "Point", "coordinates": [2.44899755238, 48.7418949096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2fbf08ae221c89238644d1bd6d5169aa25f9c7", "fields": {"nom_de_la_commune": "VILLIERS SUR MARNE", "libell_d_acheminement": "VILLIERS SUR MARNE", "code_postal": "94350", "coordonnees_gps": [48.8262201661, 2.54547356875], "code_commune_insee": "94079"}, "geometry": {"type": "Point", "coordinates": [2.54547356875, 48.8262201661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69abbbe0b921d97c2f820db2c4e745327c85d1ec", "fields": {"nom_de_la_commune": "ABLEIGES", "libell_d_acheminement": "ABLEIGES", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95002"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c1f1c511c07c90353cbcf7cf6ac1d4efff963e", "fields": {"nom_de_la_commune": "AMENUCOURT", "libell_d_acheminement": "AMENUCOURT", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95012"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2752b32e5ff9b0086fc34dd9afa862eb477d661a", "fields": {"nom_de_la_commune": "ASNIERES SUR OISE", "libell_d_acheminement": "ASNIERES SUR OISE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95026"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14aed6353db47c425b9d464ed572c84b1a62ab35", "fields": {"nom_de_la_commune": "BANTHELU", "libell_d_acheminement": "BANTHELU", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95046"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b887c79b251156e3206b8a6cf34f2427f2a71e27", "fields": {"nom_de_la_commune": "BOISEMONT", "libell_d_acheminement": "BOISEMONT", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95074"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6b2110a33a6bb918edc1d4d50a8ef1ba9ff5a6", "fields": {"nom_de_la_commune": "BRUYERES SUR OISE", "libell_d_acheminement": "BRUYERES SUR OISE", "code_postal": "95820", "coordonnees_gps": [49.160702308, 2.32978969094], "code_commune_insee": "95116"}, "geometry": {"type": "Point", "coordinates": [2.32978969094, 49.160702308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47b6cc86eaf23e826905d26f5b74529d7eab4431", "fields": {"nom_de_la_commune": "VIDOUZE", "libell_d_acheminement": "VIDOUZE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65462"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c9e21a92dce1ac7ae2cc15a3697f22a19b0c1f", "fields": {"nom_de_la_commune": "VIELLE ADOUR", "libell_d_acheminement": "VIELLE ADOUR", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65464"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa7c6336623057b17dcb86ad89a33c216b0377e", "fields": {"nom_de_la_commune": "VIELLE LOURON", "libell_d_acheminement": "VIELLE LOURON", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65466"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4e9cc9a775f41510c6190a3d455c4c8788d3a9", "fields": {"nom_de_la_commune": "VIER BORDES", "libell_d_acheminement": "VIER BORDES", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65467"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8deead83a8192f519074cfeaad6cf241023ee30", "fields": {"nom_de_la_commune": "VILLEMUR", "libell_d_acheminement": "VILLEMUR", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65475"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a0b68e45cddcc5f84048ffd76577352ac93094", "fields": {"nom_de_la_commune": "CANTAOUS", "libell_d_acheminement": "CANTAOUS", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65482"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c5f8b3fca5eb0b9705d0ddd5703726c10adce8", "fields": {"nom_de_la_commune": "ALENYA", "libell_d_acheminement": "ALENYA", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66002"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ae2ddebbc41fff960b218bc839553cfedef15a", "fields": {"nom_de_la_commune": "AMELIE LES BAINS PALALDA", "libell_d_acheminement": "AMELIE LES BAINS PALALDA", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66003"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568f46d2f21a98b0ad61f330371583a9ef7870eb", "fields": {"nom_de_la_commune": "CALMEILLES", "libell_d_acheminement": "CALMEILLES", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66032"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e41cf80454f2772967d30663e2bbde96120668f", "fields": {"nom_de_la_commune": "CAMELAS", "libell_d_acheminement": "CAMELAS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66033"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b88a9239d5a1a55a0453ba887fd02395922769e", "fields": {"nom_de_la_commune": "CASEFABRE", "libell_d_acheminement": "CASEFABRE", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66040"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038c9ddf7e22e24c159cd4efa70980fb7d18cdb5", "fields": {"nom_de_la_commune": "CATLLAR", "libell_d_acheminement": "CATLLAR", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66045"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ba6ba36bbb20b0695b5edaa3c1f8f9abefc5d6", "fields": {"nom_de_la_commune": "CERBERE", "libell_d_acheminement": "CERBERE", "code_postal": "66290", "coordonnees_gps": [42.4437582869, 3.14749877577], "code_commune_insee": "66048"}, "geometry": {"type": "Point", "coordinates": [3.14749877577, 42.4437582869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b05ae9eb0f74a81c3187d71a4d050b9898b4950", "fields": {"nom_de_la_commune": "CERET", "libell_d_acheminement": "CERET", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66049"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13c4452bb74b6c975185096271e61d02696d7c4", "fields": {"nom_de_la_commune": "CLAIRA", "libell_d_acheminement": "CLAIRA", "code_postal": "66530", "coordonnees_gps": [42.7644876132, 2.94459168941], "code_commune_insee": "66050"}, "geometry": {"type": "Point", "coordinates": [2.94459168941, 42.7644876132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84bd3517f650fb6c77466cfcf8f23d592ec183f4", "fields": {"nom_de_la_commune": "CORNEILLA LA RIVIERE", "libell_d_acheminement": "CORNEILLA LA RIVIERE", "code_postal": "66550", "coordonnees_gps": [42.7096534526, 2.72591395955], "code_commune_insee": "66058"}, "geometry": {"type": "Point", "coordinates": [2.72591395955, 42.7096534526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c590a12c37f9e53467e8e01581e01d6656f9e28c", "fields": {"nom_de_la_commune": "ESTAGEL", "libell_d_acheminement": "ESTAGEL", "code_postal": "66310", "coordonnees_gps": [42.7679058486, 2.70723528284], "code_commune_insee": "66071"}, "geometry": {"type": "Point", "coordinates": [2.70723528284, 42.7679058486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1325ad56d742da59d08c8175e2441b9cea69dac", "fields": {"nom_de_la_commune": "FINESTRET", "libell_d_acheminement": "FINESTRET", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66079"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3344bd9f85bf7eca2f6c42668b3920b129fc9761", "fields": {"nom_de_la_commune": "FOSSE", "libell_d_acheminement": "FOSSE", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66083"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4b9141fb1bda435d4f2ef52568f7c2b897100c", "fields": {"nom_de_la_commune": "GLORIANES", "libell_d_acheminement": "GLORIANES", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66086"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e1a08418eba402acee43200b148fa48aa6f1796", "fields": {"nom_de_la_commune": "JOCH", "libell_d_acheminement": "JOCH", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66089"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094f3c60922f0854c0ac62ad0c17161ec2916893", "fields": {"nom_de_la_commune": "LAMANERE", "libell_d_acheminement": "LAMANERE", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66091"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb344483bf223559dd1d52fb084193343c153953", "fields": {"nom_de_la_commune": "LANSAC", "libell_d_acheminement": "LANSAC", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66092"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705db950dc36b91ec044d9396f7f396b587e32be", "fields": {"nom_de_la_commune": "LATOUR BAS ELNE", "libell_d_acheminement": "LATOUR BAS ELNE", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66094"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28f0f299713074f6b825e1cbebe0a14362fd4b8", "fields": {"nom_de_la_commune": "LLUPIA", "libell_d_acheminement": "LLUPIA", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66101"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d032fff5331c1793f09069f78c18cd582b84f1c", "fields": {"nom_de_la_commune": "LOS MASOS", "libell_d_acheminement": "LOS MASOS", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66104"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895bc1b83cb15f061906f38885d4d1c4e412774f", "fields": {"nom_de_la_commune": "MATEMALE", "libell_d_acheminement": "MATEMALE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66105"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af74ac9d94db5bf296a2793d392462e4baff83a", "fields": {"code_postal": "66480", "code_commune_insee": "66106", "libell_d_acheminement": "MAUREILLAS LAS ILLAS", "ligne_5": "RIUNOGUES", "nom_de_la_commune": "MAUREILLAS LAS ILLAS", "coordonnees_gps": [42.4667287992, 2.83075140133]}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7532d8e1268c799c088b1c79b9eb3ec95ffa1a", "fields": {"nom_de_la_commune": "MONTALBA LE CHATEAU", "libell_d_acheminement": "MONTALBA LE CHATEAU", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66111"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac957029f0b2aa55c99be8b6310ce00ae7cdc79", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66112"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d229edd94f1bf3416ec295650efc6f2b14143c", "fields": {"nom_de_la_commune": "MONT LOUIS", "libell_d_acheminement": "MONT LOUIS", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66117"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b51ebf97ccb2e98a8e043a081bee828a8f95c4", "fields": {"nom_de_la_commune": "MOSSET", "libell_d_acheminement": "MOSSET", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66119"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a746e4ff2d01d6804ed9bbd59e93599186ed3e", "fields": {"nom_de_la_commune": "NAHUJA", "libell_d_acheminement": "NAHUJA", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66120"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78fd0793f92a35d1ab0f78ecbce455b7bc18524d", "fields": {"nom_de_la_commune": "NYER", "libell_d_acheminement": "NYER", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66123"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f47695ab89fa9059aea9e3e20215c8df1d1ee4", "fields": {"code_postal": "66600", "code_commune_insee": "66127", "libell_d_acheminement": "OPOUL PERILLOS", "ligne_5": "PERILLOS", "nom_de_la_commune": "OPOUL PERILLOS", "coordonnees_gps": [42.823790182, 2.85249357966]}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7434641c3ba12caeaf88c9729ad9620764784f91", "fields": {"nom_de_la_commune": "PEZILLA LA RIVIERE", "libell_d_acheminement": "PEZILLA LA RIVIERE", "code_postal": "66370", "coordonnees_gps": [42.705342344, 2.76528618733], "code_commune_insee": "66140"}, "geometry": {"type": "Point", "coordinates": [2.76528618733, 42.705342344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38f9513ce40332816a18a2d2d0b3491f17c6fe2", "fields": {"nom_de_la_commune": "POLLESTRES", "libell_d_acheminement": "POLLESTRES", "code_postal": "66450", "coordonnees_gps": [42.6375616421, 2.87296407789], "code_commune_insee": "66144"}, "geometry": {"type": "Point", "coordinates": [2.87296407789, 42.6375616421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4897f8ccc334a107efed0052618a62e6f2a70ba9", "fields": {"nom_de_la_commune": "PORTA", "libell_d_acheminement": "PORTA", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66146"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb04ac4b65c825b2d8c9d0314a3d773e871e5cd", "fields": {"nom_de_la_commune": "PRATS DE MOLLO LA PRESTE", "libell_d_acheminement": "PRATS DE MOLLO LA PRESTE", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66150"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178a54e5c91240c97d5370b9b6809ec91a30ac3c", "fields": {"code_postal": "66230", "code_commune_insee": "66150", "libell_d_acheminement": "PRATS DE MOLLO LA PRESTE", "ligne_5": "LA PRESTE", "nom_de_la_commune": "PRATS DE MOLLO LA PRESTE", "coordonnees_gps": [42.4105505253, 2.4745003861]}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198d5fafc893d0c154bebe654c4091fd84c01061", "fields": {"nom_de_la_commune": "PRATS DE SOURNIA", "libell_d_acheminement": "PRATS DE SOURNIA", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66151"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0841c187f3b99247dc39ce3f3f07addcdd7c214", "fields": {"nom_de_la_commune": "RAILLEU", "libell_d_acheminement": "RAILLEU", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66157"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c364fed9b6b8f589c7c7cbb771ae352afb3d9a", "fields": {"nom_de_la_commune": "RASIGUERES", "libell_d_acheminement": "RASIGUERES", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66158"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31bd89fdb30acdf3d3f05f80f37044059dad4ed", "fields": {"nom_de_la_commune": "RIVESALTES", "libell_d_acheminement": "RIVESALTES", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66164"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27bb6ad75abc8f938b7e5c74cabce022a813c4fc", "fields": {"nom_de_la_commune": "SAILLAGOUSE", "libell_d_acheminement": "SAILLAGOUSE", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66167"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b712482311ad3732506e0406cecdf5601f78c4", "fields": {"nom_de_la_commune": "ST FELIU D AMONT", "libell_d_acheminement": "ST FELIU D AMONT", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66173"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bead9ac0e81bf65d359db3cb5c1a6d0be7195261", "fields": {"nom_de_la_commune": "ST FELIU D AVALL", "libell_d_acheminement": "ST FELIU D AVALL", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66174"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952777daf5669344952db5414c4b6f643f44ead6", "fields": {"nom_de_la_commune": "ST PAUL DE FENOUILLET", "libell_d_acheminement": "ST PAUL DE FENOUILLET", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66187"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e66c66b126f3d5097042c25957962838ad130e", "fields": {"nom_de_la_commune": "SOREDE", "libell_d_acheminement": "SOREDE", "code_postal": "66690", "coordonnees_gps": [42.522189398, 2.97653046487], "code_commune_insee": "66196"}, "geometry": {"type": "Point", "coordinates": [2.97653046487, 42.522189398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03917959118be191c1ede08a4a8a8a04972c43b8", "fields": {"nom_de_la_commune": "TAILLET", "libell_d_acheminement": "TAILLET", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66199"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a7f6992f4d89239fc5ba6c8f6f21188f88dd29", "fields": {"nom_de_la_commune": "TAURINYA", "libell_d_acheminement": "TAURINYA", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66204"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710c2e1d7524e130a9f09f6d4fb9cfad0694d43f", "fields": {"nom_de_la_commune": "TAUTAVEL", "libell_d_acheminement": "TAUTAVEL", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66205"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3305ffde81e18268be3a082b214fce691f652b", "fields": {"nom_de_la_commune": "LE TECH", "libell_d_acheminement": "LE TECH", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66206"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be80df876b79fdd81ff47f90f6390f94a0199574", "fields": {"nom_de_la_commune": "VERNET LES BAINS", "libell_d_acheminement": "VERNET LES BAINS", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66222"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b084ce7df8f8128f6b132d63fc1881ed53f30d", "fields": {"nom_de_la_commune": "ALBE", "libell_d_acheminement": "ALBE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67003"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659cde83e9221180e338db07292caef8df53ef62", "fields": {"nom_de_la_commune": "BALDENHEIM", "libell_d_acheminement": "BALDENHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67019"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18364e407fb323673eeb2bae3c0f3a3d8a8a1aee", "fields": {"nom_de_la_commune": "BATZENDORF", "libell_d_acheminement": "BATZENDORF", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67023"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91beec5c58c23ff09f474374fec8e05435d08dc4", "fields": {"nom_de_la_commune": "BERNOLSHEIM", "libell_d_acheminement": "BERNOLSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67033"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8783020cb57f72c35d75d10dcb01fb36970a46", "fields": {"nom_de_la_commune": "BISCHHOLTZ", "libell_d_acheminement": "BISCHHOLTZ", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67044"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c76f7eee8542a4ab0d01eef7e12b6adc102aebe", "fields": {"nom_de_la_commune": "BOERSCH", "libell_d_acheminement": "BOERSCH", "code_postal": "67530", "coordonnees_gps": [48.4532281253, 7.37169792676], "code_commune_insee": "67052"}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b3c8b47f8f31c99bf62318fe9bd7223d40e66b", "fields": {"nom_de_la_commune": "BOESENBIESEN", "libell_d_acheminement": "BOESENBIESEN", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67053"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a4aaa97db9aad5b50907b8d203a7cc1fd815a5", "fields": {"nom_de_la_commune": "BOLSENHEIM", "libell_d_acheminement": "BOLSENHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67054"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef92f9397d40a7138dae401cc4a0756c41292a38", "fields": {"code_postal": "67330", "code_commune_insee": "67061", "libell_d_acheminement": "BOUXWILLER", "ligne_5": "GRIESBACH LE BASTBERG", "nom_de_la_commune": "BOUXWILLER", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458702b8b0f7082ba72e476318566c6c669ba88d", "fields": {"nom_de_la_commune": "BREUSCHWICKERSHEIM", "libell_d_acheminement": "BREUSCHWICKERSHEIM", "code_postal": "67112", "coordonnees_gps": [48.5780719523, 7.59902262711], "code_commune_insee": "67065"}, "geometry": {"type": "Point", "coordinates": [7.59902262711, 48.5780719523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3730cee495d2a2e1b0120a3602a13b11ec0690", "fields": {"code_postal": "67570", "code_commune_insee": "67066", "libell_d_acheminement": "LA BROQUE", "ligne_5": "LA CLAQUETTE", "nom_de_la_commune": "LA BROQUE", "coordonnees_gps": [48.4582864667, 7.17805256783]}, "geometry": {"type": "Point", "coordinates": [7.17805256783, 48.4582864667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd71b73e7d2f5ab3afea62503a3f9d0041d2ca4f", "fields": {"nom_de_la_commune": "BURBACH", "libell_d_acheminement": "BURBACH", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67070"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52dc8dfc2358a93a1f4b8981b0ebd45532fd5dda", "fields": {"nom_de_la_commune": "BUTTEN", "libell_d_acheminement": "BUTTEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67072"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d975716abaa95c2be41e63ef817f2a8d7aecc15b", "fields": {"nom_de_la_commune": "CLEEBOURG", "libell_d_acheminement": "CLEEBOURG", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67074"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0f5395c29618bec93659e6c348f51c4cdb5387", "fields": {"nom_de_la_commune": "CROETTWILLER", "libell_d_acheminement": "CROETTWILLER", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67079"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ae0eb68dac320ae2f14e2ee3167253ecaf5dc63", "fields": {"nom_de_la_commune": "DACHSTEIN", "libell_d_acheminement": "DACHSTEIN", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67080"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657345979c7a0ac1e8d6e17602658049786eec0d", "fields": {"nom_de_la_commune": "DAMBACH LA VILLE", "libell_d_acheminement": "DAMBACH LA VILLE", "code_postal": "67650", "coordonnees_gps": [48.324457641, 7.42491338071], "code_commune_insee": "67084"}, "geometry": {"type": "Point", "coordinates": [7.42491338071, 48.324457641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b7a20468e1706a1a1e659a8deafe527d104f55", "fields": {"nom_de_la_commune": "DIEFFENTHAL", "libell_d_acheminement": "DIEFFENTHAL", "code_postal": "67650", "coordonnees_gps": [48.324457641, 7.42491338071], "code_commune_insee": "67094"}, "geometry": {"type": "Point", "coordinates": [7.42491338071, 48.324457641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c678c56602c4573b9557985515d95ce2a3451b", "fields": {"nom_de_la_commune": "DOMFESSEL", "libell_d_acheminement": "DOMFESSEL", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67099"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f00aa2ba93957c8a5da7b2c5c2828c3a9255937", "fields": {"nom_de_la_commune": "DONNENHEIM", "libell_d_acheminement": "DONNENHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67100"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0039e19c637ce8cfe9df2de614a6ab391400d211", "fields": {"code_postal": "67160", "code_commune_insee": "67104", "libell_d_acheminement": "DRACHENBRONN BIRLENBACH", "ligne_5": "BIRLENBACH", "nom_de_la_commune": "DRACHENBRONN BIRLENBACH", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7f68d4543d857df8b923f736e9cb9dcf741d0d", "fields": {"nom_de_la_commune": "DRULINGEN", "libell_d_acheminement": "DRULINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67105"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4778e1c0022078451ae916e960a3095563071e67", "fields": {"nom_de_la_commune": "DRUSENHEIM", "libell_d_acheminement": "DRUSENHEIM", "code_postal": "67410", "coordonnees_gps": [48.7592655798, 7.93844896639], "code_commune_insee": "67106"}, "geometry": {"type": "Point", "coordinates": [7.93844896639, 48.7592655798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aad6e24b9d8706a59be2a71c57c63a6e1366f427", "fields": {"nom_de_la_commune": "EBERBACH SELTZ", "libell_d_acheminement": "EBERBACH SELTZ", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67113"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c24faba3c764eacec972a91d413dd6ede0b9d60", "fields": {"nom_de_la_commune": "ECKWERSHEIM", "libell_d_acheminement": "ECKWERSHEIM", "code_postal": "67550", "coordonnees_gps": [48.6731828077, 7.72554052263], "code_commune_insee": "67119"}, "geometry": {"type": "Point", "coordinates": [7.72554052263, 48.6731828077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca7a06421c0f0a01b0a991ca2dc7a45ca9155f9", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "WANGENBOURG", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1de64b765e11a5d7e3e7cd63c66b3cb0c810c4", "fields": {"nom_de_la_commune": "EPFIG", "libell_d_acheminement": "EPFIG", "code_postal": "67680", "coordonnees_gps": [48.3522236097, 7.46155942515], "code_commune_insee": "67125"}, "geometry": {"type": "Point", "coordinates": [7.46155942515, 48.3522236097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e65b22f465572f7ab813c1945f2350a4c5bcaa", "fields": {"nom_de_la_commune": "ESCHAU", "libell_d_acheminement": "ESCHAU", "code_postal": "67114", "coordonnees_gps": [48.483284142, 7.73054345517], "code_commune_insee": "67131"}, "geometry": {"type": "Point", "coordinates": [7.73054345517, 48.483284142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81bdcc6604b9a06a6e0556419111fef8699d09fc", "fields": {"nom_de_la_commune": "ETTENDORF", "libell_d_acheminement": "ETTENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67135"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aba9d2a7106e4b70e709ddb38d68d43b7e6ca3c", "fields": {"nom_de_la_commune": "FEGERSHEIM", "libell_d_acheminement": "FEGERSHEIM", "code_postal": "67640", "coordonnees_gps": [48.4903746121, 7.67506089743], "code_commune_insee": "67137"}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d108accba90c05273b51b29e52615bb1d31fef", "fields": {"nom_de_la_commune": "FESSENHEIM LE BAS", "libell_d_acheminement": "FESSENHEIM LE BAS", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67138"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6602992f40d3d13c0b49f3ba3940d0396478646", "fields": {"nom_de_la_commune": "FRIESENHEIM", "libell_d_acheminement": "FRIESENHEIM", "code_postal": "67860", "coordonnees_gps": [48.3174289749, 7.68184154693], "code_commune_insee": "67146"}, "geometry": {"type": "Point", "coordinates": [7.68184154693, 48.3174289749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f596319f69e6ab7afaa490cd2160a052ab3a7c", "fields": {"nom_de_la_commune": "FROESCHWILLER", "libell_d_acheminement": "FROESCHWILLER", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67147"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0dc4c22381e7b0112703881145340bd0e024c0", "fields": {"nom_de_la_commune": "FURDENHEIM", "libell_d_acheminement": "FURDENHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67150"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5af162798821ac92d11481b24757da739bfbb33", "fields": {"nom_de_la_commune": "GEISWILLER", "libell_d_acheminement": "GEISWILLER", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67153"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af4a1b887ce5e79ba2a3942da8d7397dc2017a5", "fields": {"nom_de_la_commune": "GERTWILLER", "libell_d_acheminement": "GERTWILLER", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67155"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4236c6c08ecf08c92ad706b894f1baa81e404fc8", "fields": {"nom_de_la_commune": "GEUDERTHEIM", "libell_d_acheminement": "GEUDERTHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67156"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f94cfc1f957e7c7b7e357696590e7b9b1fa0398", "fields": {"code_postal": "67360", "code_commune_insee": "67160", "libell_d_acheminement": "GOERSDORF", "ligne_5": "MITSCHDORF", "nom_de_la_commune": "GOERSDORF", "coordonnees_gps": [48.9315842812, 7.75558700625]}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350001e4452bca79f5f2da337db0af5f1ae36dd0", "fields": {"nom_de_la_commune": "GOXWILLER", "libell_d_acheminement": "GOXWILLER", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67164"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7189f176199b0faf745f814345a30c454dee537", "fields": {"nom_de_la_commune": "GUMBRECHTSHOFFEN", "libell_d_acheminement": "GUMBRECHTSHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67174"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3cb086881b8f01f386552b1dcbb6bd10abf03b", "fields": {"code_postal": "67110", "code_commune_insee": "67176", "libell_d_acheminement": "GUNDERSHOFFEN", "ligne_5": "GRIESBACH", "nom_de_la_commune": "GUNDERSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9c2eafd73ef3ee8ac390c5329cef1ff9a85949", "fields": {"nom_de_la_commune": "GUNGWILLER", "libell_d_acheminement": "GUNGWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67178"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188ac73084b60df7da7e3f6e9afab9ad60c050fc", "fields": {"nom_de_la_commune": "HAGUENAU", "libell_d_acheminement": "HAGUENAU", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67180"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f535ffafa784114a1c5180ade8aae70342d55c3a", "fields": {"nom_de_la_commune": "HATTEN", "libell_d_acheminement": "HATTEN", "code_postal": "67690", "coordonnees_gps": [48.893568383, 7.99177649059], "code_commune_insee": "67184"}, "geometry": {"type": "Point", "coordinates": [7.99177649059, 48.893568383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0579d9d8334eba345711f17661eef016c20350c", "fields": {"nom_de_la_commune": "HERBITZHEIM", "libell_d_acheminement": "HERBITZHEIM", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67191"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513817fdf64fa2eb5530b1af6131788d7df6ffd3", "fields": {"nom_de_la_commune": "HINDISHEIM", "libell_d_acheminement": "HINDISHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67197"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f04c6724a79dff921ba34dbb898b9a1b36157ad", "fields": {"nom_de_la_commune": "VIEUX FORT", "libell_d_acheminement": "VIEUX FORT", "code_postal": "97141", "coordonnees_gps": [15.9596898147, -61.6943889363], "code_commune_insee": "97133"}, "geometry": {"type": "Point", "coordinates": [-61.6943889363, 15.9596898147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d65424c08619e0205f6b9c1b22df7aeac414d9", "fields": {"nom_de_la_commune": "L AJOUPA BOUILLON", "libell_d_acheminement": "L AJOUPA BOUILLON", "code_postal": "97216", "coordonnees_gps": [14.8137030963, -61.124170023], "code_commune_insee": "97201"}, "geometry": {"type": "Point", "coordinates": [-61.124170023, 14.8137030963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ee6ac2ee3503d9ee3d677d50a8f0e5a7431f96", "fields": {"nom_de_la_commune": "LE FRANCOIS", "libell_d_acheminement": "LE FRANCOIS", "code_postal": "97240", "coordonnees_gps": [14.6061076262, -60.9057554529], "code_commune_insee": "97210"}, "geometry": {"type": "Point", "coordinates": [-60.9057554529, 14.6061076262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc2fcb209ea94ad18c5a7cf0e3e8861fe8154b7", "fields": {"nom_de_la_commune": "LE MARIN", "libell_d_acheminement": "LE MARIN", "code_postal": "97290", "coordonnees_gps": [14.4839290167, -60.8574792208], "code_commune_insee": "97217"}, "geometry": {"type": "Point", "coordinates": [-60.8574792208, 14.4839290167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e177da7e023bbbd1adedd489fded590991f4c16e", "fields": {"code_postal": "97215", "code_commune_insee": "97221", "libell_d_acheminement": "RIVIERE SALEE", "ligne_5": "RIVIERE SALEE PETIT BOURG", "nom_de_la_commune": "RIVIERE SALEE", "coordonnees_gps": [14.5259859391, -60.9645824677]}, "geometry": {"type": "Point", "coordinates": [-60.9645824677, 14.5259859391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d698c8adc466600eed42eff94c4178f02a8e95e", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "97220", "coordonnees_gps": [14.7382401211, -60.9503293937], "code_commune_insee": "97230"}, "geometry": {"type": "Point", "coordinates": [-60.9503293937, 14.7382401211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f332b03b2a6d3d76061e1ef7dab6bcfe885f8a88", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "97222", "coordonnees_gps": [14.6653538881, -61.1334870347], "code_commune_insee": "97234"}, "geometry": {"type": "Point", "coordinates": [-61.1334870347, 14.6653538881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282aadb61fddc08f0c7e5592b2bcdadf4f9d24bd", "fields": {"nom_de_la_commune": "REGINA", "libell_d_acheminement": "REGINA", "code_postal": "97390", "coordonnees_gps": [3.94089788732, -52.5199751227], "code_commune_insee": "97301"}, "geometry": {"type": "Point", "coordinates": [-52.5199751227, 3.94089788732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfd6d1629234724a100603e1ec6537a100cd0e2", "fields": {"nom_de_la_commune": "IRACOUBO", "libell_d_acheminement": "IRACOUBO", "code_postal": "97350", "coordonnees_gps": [5.27001105012, -53.3197762964], "code_commune_insee": "97303"}, "geometry": {"type": "Point", "coordinates": [-53.3197762964, 5.27001105012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516985220f135eb673c4d2c1b2907b8922f97661", "fields": {"nom_de_la_commune": "KOUROU", "libell_d_acheminement": "KOUROU", "code_postal": "97310", "coordonnees_gps": [4.93348048572, -52.7663466753], "code_commune_insee": "97304"}, "geometry": {"type": "Point", "coordinates": [-52.7663466753, 4.93348048572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7044f6ad53a308fe36e1ebe23afab6275e1474", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "97313", "coordonnees_gps": [3.74183573543, -52.1326362653], "code_commune_insee": "97308"}, "geometry": {"type": "Point", "coordinates": [-52.1326362653, 3.74183573543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "585ae3046c75e079fc4489ac0b2506beab5d4656", "fields": {"nom_de_la_commune": "ROURA", "libell_d_acheminement": "ROURA", "code_postal": "97311", "coordonnees_gps": [4.46467206988, -52.5129184542], "code_commune_insee": "97310"}, "geometry": {"type": "Point", "coordinates": [-52.5129184542, 4.46467206988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bbe037862b84a544d477a0b05c3fabadba5195", "fields": {"nom_de_la_commune": "SAUL", "libell_d_acheminement": "SAUL", "code_postal": "97314", "coordonnees_gps": [3.91383993162, -53.39852266], "code_commune_insee": "97352"}, "geometry": {"type": "Point", "coordinates": [-53.39852266, 3.91383993162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d1ad5018d81d5fa1abe3a385509b9c55c8b9cc", "fields": {"nom_de_la_commune": "L ETANG SALE", "libell_d_acheminement": "L ETANG SALE", "code_postal": "97427", "coordonnees_gps": [-21.2492352781, 55.3670374165], "code_commune_insee": "97404"}, "geometry": {"type": "Point", "coordinates": [55.3670374165, -21.2492352781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4da664b5021d237e1076b394a999df97e1c55f", "fields": {"code_postal": "97427", "code_commune_insee": "97404", "libell_d_acheminement": "L ETANG SALE", "ligne_5": "L ETANG SALE LES BAINS", "nom_de_la_commune": "L ETANG SALE", "coordonnees_gps": [-21.2492352781, 55.3670374165]}, "geometry": {"type": "Point", "coordinates": [55.3670374165, -21.2492352781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a0312c87846367cb28552cdcbe130426842e25", "fields": {"nom_de_la_commune": "LE PORT", "libell_d_acheminement": "LE PORT", "code_postal": "97420", "coordonnees_gps": [-20.9441300378, 55.3052625029], "code_commune_insee": "97407"}, "geometry": {"type": "Point", "coordinates": [55.3052625029, -20.9441300378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d83c1f53cd8b2bc6a601b7b8153918b93ac36a", "fields": {"code_postal": "97420", "code_commune_insee": "97407", "libell_d_acheminement": "LE PORT", "ligne_5": "LE PORT ZUP", "nom_de_la_commune": "LE PORT", "coordonnees_gps": [-20.9441300378, 55.3052625029]}, "geometry": {"type": "Point", "coordinates": [55.3052625029, -20.9441300378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5aa22f3e000473d039979d77a0d0f29596c8d7", "fields": {"code_postal": "97419", "code_commune_insee": "97408", "libell_d_acheminement": "LA POSSESSION", "ligne_5": "LE DOS D ANE", "nom_de_la_commune": "LA POSSESSION", "coordonnees_gps": [-20.99459115, 55.3979867416]}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c5d47b5fbe05383e6fff4fa3ab9742cfdafd393", "fields": {"code_postal": "97437", "code_commune_insee": "97410", "libell_d_acheminement": "ST BENOIT", "ligne_5": "STE ANNE", "nom_de_la_commune": "ST BENOIT", "coordonnees_gps": [-21.0919418821, 55.6492890915]}, "geometry": {"type": "Point", "coordinates": [55.6492890915, -21.0919418821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2ae1c3f45a8fddd6e1292a213507e60c8cc7b2", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "97470", "coordonnees_gps": [-21.0919418821, 55.6492890915], "code_commune_insee": "97410"}, "geometry": {"type": "Point", "coordinates": [55.6492890915, -21.0919418821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cc4f9ef7fc3cd13ca5a7b4c83bd03aa8315ec6", "fields": {"code_postal": "97417", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "LA MONTAGNE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc3fb8e73b38500b3955761ac69cfa879944a98f", "fields": {"code_postal": "97417", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST BERNARD", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dfcc91e4c7a96a99554ce0246d918c5af8a201", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "LA BRETAGNE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "396dc78d4c7c3afce719fab004bbd20884bd6fd0", "fields": {"code_postal": "97421", "code_commune_insee": "97414", "libell_d_acheminement": "ST LOUIS", "ligne_5": "LES MAKES", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [-21.2337866407, 55.4216954351]}, "geometry": {"type": "Point", "coordinates": [55.4216954351, -21.2337866407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8b284825eaf4372d601733359fd12ad536267d", "fields": {"code_postal": "97434", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "LA SALINE LES BAINS", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35096415580b452df0dc26b7668bd1529dd01e5b", "fields": {"code_postal": "97434", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "ST GILLES LES BAINS", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eccbff94b688d62b634d4ad027dcfeb2f199ab2", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "RAVINE BLANCHE", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0c4dd8c861fae308304ecbf60a1f300f1c8842", "fields": {"nom_de_la_commune": "ST PHILIPPE", "libell_d_acheminement": "ST PHILIPPE", "code_postal": "97442", "coordonnees_gps": [-21.3038963279, 55.7450487772], "code_commune_insee": "97417"}, "geometry": {"type": "Point", "coordinates": [55.7450487772, -21.3038963279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae139d6fc6f1177b83d526a97a533daa9961f0bd", "fields": {"nom_de_la_commune": "SALAZIE", "libell_d_acheminement": "SALAZIE", "code_postal": "97433", "coordonnees_gps": [-21.0468656868, 55.5080493418], "code_commune_insee": "97421"}, "geometry": {"type": "Point", "coordinates": [55.5080493418, -21.0468656868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46234f993b439bcd07796d1a8eaf739bd186339f", "fields": {"code_postal": "97430", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "LES TROIS MARES", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45bdf968a001dd08d02d574b5a25848c3897c8a5", "fields": {"nom_de_la_commune": "LES TROIS BASSINS", "libell_d_acheminement": "LES TROIS BASSINS", "code_postal": "97426", "coordonnees_gps": [-21.1102892051, 55.3294246331], "code_commune_insee": "97423"}, "geometry": {"type": "Point", "coordinates": [55.3294246331, -21.1102892051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d409e3b732cd1b4dc51a5f19ea4d42bbee3d629", "fields": {"nom_de_la_commune": "CILAOS", "libell_d_acheminement": "CILAOS", "code_postal": "97413", "coordonnees_gps": [-21.1439238354, 55.4586896242], "code_commune_insee": "97424"}, "geometry": {"type": "Point", "coordinates": [55.4586896242, -21.1439238354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56789c4de4f3e646c658bff26cf273eb9066543f", "fields": {"nom_de_la_commune": "BANDRABOUA", "libell_d_acheminement": "BANDRABOUA", "code_postal": "97650", "coordonnees_gps": [-12.758982005, 45.144203404], "code_commune_insee": "97602"}, "geometry": {"type": "Point", "coordinates": [45.144203404, -12.758982005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8773ab69fc0f5b870690b7fb533fc33e810b4ba", "fields": {"code_postal": "97650", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "DZOUMOGNE", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.758982005, 45.144203404]}, "geometry": {"type": "Point", "coordinates": [45.144203404, -12.758982005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a363d0ec7a2ba455a4fb8aaecc48a7687184218", "fields": {"nom_de_la_commune": "OUANGANI", "libell_d_acheminement": "OUANGANI", "code_postal": "97670", "coordonnees_gps": [-12.8328062861, 45.1308284247], "code_commune_insee": "97614"}, "geometry": {"type": "Point", "coordinates": [45.1308284247, -12.8328062861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e5393d75ee57ff01122143a6aa3aa3efc7c220", "fields": {"code_postal": "97670", "code_commune_insee": "97614", "libell_d_acheminement": "OUANGANI", "ligne_5": "COCONI", "nom_de_la_commune": "OUANGANI", "coordonnees_gps": [-12.8328062861, 45.1308284247]}, "geometry": {"type": "Point", "coordinates": [45.1308284247, -12.8328062861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345963e79cf9feec588d47bfb08818cd9d7c4e9a", "fields": {"nom_de_la_commune": "PAMANDZI", "libell_d_acheminement": "PAMANDZI", "code_postal": "97615", "coordonnees_gps": [-12.785467309, 45.2832655596], "code_commune_insee": "97615"}, "geometry": {"type": "Point", "coordinates": [45.2832655596, -12.785467309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74531ceb8e5215587ac0a1961e15ee66e79e913f", "fields": {"nom_de_la_commune": "SADA", "libell_d_acheminement": "SADA", "code_postal": "97640", "coordonnees_gps": [-12.861274469, 45.1184215854], "code_commune_insee": "97616"}, "geometry": {"type": "Point", "coordinates": [45.1184215854, -12.861274469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167063e0bf02b4196a4bcf3c150159ab0c38b21d", "fields": {"nom_de_la_commune": "ANAA", "libell_d_acheminement": "TEPUPAHEA", "code_postal": "98790", "ligne_5": "ANAA", "code_commune_insee": "98711"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b98a7e0f57c83f2d08cef32dc3f16787e50755", "fields": {"nom_de_la_commune": "FAAA", "libell_d_acheminement": "FAAA", "code_postal": "98704", "code_commune_insee": "98715"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541e93a541ddda374c0794608db83571d7746bc6", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "PAPARARA", "code_postal": "98764", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3164dab0d54cb2d9f4d2786941d4aab0e9544167", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "TOAU", "code_postal": "98790", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859c59eb9ec36dade1a188db6cfd627ca848c606", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "MOTU TAPU", "code_postal": "98790", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e0f66a72c81de496f947ae15283b8106c86048", "fields": {"nom_de_la_commune": "FATU HIVA", "libell_d_acheminement": "HANAVAVE", "code_postal": "98740", "ligne_5": "FATU HIVA", "code_commune_insee": "98718"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e789a3a1f66d0286c0b79745c8a5b1d3c4851b9e", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "AKAMARU", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086bb09b228cb8b2885fb751c9631732cbdf26ad", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "VAHANGA", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03aaf0aff60871076ae0359da2d6ae731b4b2366", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MARIA EST", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f004bce766e37220446aa55e686440af8af0aff4", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "RAVAHERE", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6669f3c2808523901fac08b4dfb63fefcebde7", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "MAHETIKA", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df03e86e5e74e7352b64565cebd0ab0f2d9d3b46", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "HANAIAPA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd24bbdee5d03493a0599cd3833d7c0bf08c33e", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "ATUONA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9250bde7bdb915f92dd428300fe4268ef741502", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "HUAHINE", "code_postal": "98731", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941d3140739c68a17ab549b8f7333369ce1d84df", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "MAROE", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f7afec0c21e1255f0190582208a3a31c976567", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "GARUMAOA", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc376d6914b844b4d798415977e9d4427265d62", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HARAIKI", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1807356f432ad430a34bc990e2a506498640297", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HENUAPAREA", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0a33bce064ee9bdc03f5afe42a1bbe1a0a0f82", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "OTATAKE", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c35aa8e0b91fbbb6fad97e153dda37f69c4c5d", "fields": {"nom_de_la_commune": "MANIHI", "libell_d_acheminement": "TURIPAOA", "code_postal": "98771", "ligne_5": "MANIHI", "code_commune_insee": "98727"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13bc792f6be543dabde02c5c976e7f82d0e41b4f", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TEMAE", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad72cbe5c616b0b9b5fb565cb54e9a2115e8b36c", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "MAIAO", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f47fa9781e284abd0950c3d11dc9d237bf0ec45", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "HAURU", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b47e6b4db7a004497f82bf8ec053bf5626344638", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "OPUNOHU", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f093217c985f96482dbb20dcaabff0e0b8ccc6e2", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PAPETOAI", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d12733ee83132b96cb7b5ae78905b69be03cc3", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "VAIANAE", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86464300b421bdba263c1f5d7945684a602a4655", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "TERRE DESERTE", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d9358e059c5b91fff6742857c97bf0bb76dc47", "fields": {"nom_de_la_commune": "NUKUTAVAKE", "libell_d_acheminement": "TAVAVA", "code_postal": "98773", "ligne_5": "NUKUTAVAKE", "code_commune_insee": "98732"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997754547779c4c56b1a8ee3edccf038be00d793", "fields": {"nom_de_la_commune": "PIRAE", "libell_d_acheminement": "PIRAE", "code_postal": "98716", "code_commune_insee": "98736"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e8a9fd541e8ad49a49b4a98c0d7a0894c021079", "fields": {"nom_de_la_commune": "PUNAAUIA", "libell_d_acheminement": "PUNAAUIA", "code_postal": "98703", "code_commune_insee": "98738"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c646cacc2528c7ea2c7a067c5fac1cd962383f0", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "MAHANATOA", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b799834635b33b88300b5f68771ac5a590a87e", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "RAIRUA", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f0ede865b4fd5671b5e53caec19e483d85485f", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "VAIURU", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63bebf0399329dcbc502cf49163c242b4b390f8e", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "TAPUAMU", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32078954dc0fd86f35e2986f1e918b6694532bf0", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "AFAAHITI", "code_postal": "98719", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f43af3cef906f0e43ba01892db288019b2f79a", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "FAAONE", "code_postal": "98720", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b5b1b2dec3b6388e8652c4c177d2126fefb6df", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "TAUTIRA", "code_postal": "98722", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dce03dd508b8220511626ccf6f22eb70c4541bb", "fields": {"nom_de_la_commune": "TAIARAPU OUEST", "libell_d_acheminement": "TOAHOTU", "code_postal": "98724", "ligne_5": "TAIARAPU OUEST", "code_commune_insee": "98748"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9cb8f01d85c9164ee2b0e29f8a8ce6e952e8b9", "fields": {"nom_de_la_commune": "TAIARAPU OUEST", "libell_d_acheminement": "VAIRAO", "code_postal": "98725", "ligne_5": "TAIARAPU OUEST", "code_commune_insee": "98748"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c0a5e2447391093299845edc1cd90472977854", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "TAPUTAPUATEA", "code_postal": "98735", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c789d5612a3bd2af9f4670c08d7e4e1af87f8b99", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "PUOHINE", "code_postal": "98735", "ligne_5": "TAPUTAPUATEA", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d2306f3a323eb6c2a8cb74eb488f2017e6b098", "fields": {"nom_de_la_commune": "TEVA I UTA", "libell_d_acheminement": "PAPEARI", "code_postal": "98727", "ligne_5": "TEVA I UTA", "code_commune_insee": "98752"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d5c73a19270d5583451edafe82b0acd588bd28", "fields": {"nom_de_la_commune": "TUBUAI", "libell_d_acheminement": "MAHU", "code_postal": "98754", "ligne_5": "TUBUAI", "code_commune_insee": "98753"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697afb2fa6f5b7f31733d2870e70c2d182c66f73", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "TEVAITOA", "code_postal": "98735", "ligne_5": "TUMARAA", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad7dc34ca93bb1aa59a8da0a50e0b26639eed8a", "fields": {"nom_de_la_commune": "UA HUKA", "libell_d_acheminement": "HANE", "code_postal": "98747", "ligne_5": "UA HUKA", "code_commune_insee": "98756"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2d4110291382ad30d221dfb1bbf759fe453617", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HOHOI", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6294fdab82f0e2517083d673b6dd6b370439a47f", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAAKUTI", "code_postal": "98746", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9d249ae57d8cc2410841d9915d40084e02b37f", "fields": {"nom_de_la_commune": "CANALA", "libell_d_acheminement": "CANALA", "code_postal": "98813", "code_commune_insee": "98804"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535f5670687b73c7c1540782b625ca76b2da0983", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98830", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b70bb88bf913db870ae7b7fad66ea0e0cf1c93", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98835", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc38c23a4c5be01eeb5157f0ac4368375a7ef8b", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98837", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20a8ed71b714803e0dd1fa01f35d6ba7618016b", "fields": {"nom_de_la_commune": "LIFOU", "libell_d_acheminement": "MOU", "code_postal": "98885", "ligne_5": "LIFOU", "code_commune_insee": "98814"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9eda5d9b900993cfa6dea25f3fdda353a712e4", "fields": {"nom_de_la_commune": "OUVEA", "libell_d_acheminement": "FAYAOUE", "code_postal": "98814", "ligne_5": "OUVEA", "code_commune_insee": "98820"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e260f2584d2096cb07f5a3e0ff2b5659b124712", "fields": {"nom_de_la_commune": "PAITA", "libell_d_acheminement": "PAITA", "code_postal": "98889", "code_commune_insee": "98821"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4146b4cf271875abe3e5353cf9bd3bcb0dcdf945", "fields": {"nom_de_la_commune": "POUM", "libell_d_acheminement": "POUM", "code_postal": "98826", "code_commune_insee": "98826"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981e4da9f968e528ae3a0569c2446ebc52a5c417", "fields": {"nom_de_la_commune": "POYA", "libell_d_acheminement": "NEPOUI", "code_postal": "98877", "ligne_5": "POYA", "code_commune_insee": "98827"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf472305e66faf4949e9808bcb7e32f9c2e0590b", "fields": {"nom_de_la_commune": "TOUHO", "libell_d_acheminement": "TOUHO", "code_postal": "98831", "code_commune_insee": "98830"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a6fd0be4023c37bddb7fd09bedcc2c11d19421", "fields": {"nom_de_la_commune": "ALBITRECCIA", "libell_d_acheminement": "ALBITRECCIA", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A008"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5566a20559f8ccbd81e98bbd5460ec65fbc90bb7", "fields": {"nom_de_la_commune": "AZILONE AMPAZA", "libell_d_acheminement": "AZILONE AMPAZA", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A026"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f4b2ee754223bb28fbb2f5a12fb68ceed9df29", "fields": {"nom_de_la_commune": "BELVEDERE CAMPOMORO", "libell_d_acheminement": "BELVEDERE CAMPOMORO", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A035"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0095b065b1b3080ae4fde60c478e58776a755f", "fields": {"nom_de_la_commune": "BOCOGNANO", "libell_d_acheminement": "BOCOGNANO", "code_postal": "20136", "coordonnees_gps": [42.0887565514, 9.0707670091], "code_commune_insee": "2A040"}, "geometry": {"type": "Point", "coordinates": [9.0707670091, 42.0887565514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34aeecd961b31c5c798751ab6d1f972550f3e30c", "fields": {"nom_de_la_commune": "BONIFACIO", "libell_d_acheminement": "BONIFACIO", "code_postal": "20169", "coordonnees_gps": [41.4355669042, 9.18561918414], "code_commune_insee": "2A041"}, "geometry": {"type": "Point", "coordinates": [9.18561918414, 41.4355669042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17fcbb87c07a8ae1701aad9ff8eedcbf2ce7032", "fields": {"code_postal": "49170", "code_commune_insee": "49329", "libell_d_acheminement": "SAVENNIERES", "ligne_5": "EPIRE", "nom_de_la_commune": "SAVENNIERES", "coordonnees_gps": [47.4198682182, -0.744180002026]}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a223bd76a69c00723a1be8c8964fc417e56138f", "fields": {"nom_de_la_commune": "SERMAISE", "libell_d_acheminement": "SERMAISE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49334"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab5166d506b94497eecb9670d79d702d16caf53", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "CHAMP SUR LAYON", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ed91f3263a4f89a6937f2dfd1030472c93659c", "fields": {"nom_de_la_commune": "TIERCE", "libell_d_acheminement": "TIERCE", "code_postal": "49125", "coordonnees_gps": [47.6143418722, -0.475891019587], "code_commune_insee": "49347"}, "geometry": {"type": "Point", "coordinates": [-0.475891019587, 47.6143418722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa37a86c80a329d3bd12f7d0c03588a4fe571567", "fields": {"nom_de_la_commune": "TURQUANT", "libell_d_acheminement": "TURQUANT", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49358"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cd81f10fd5e554e7cb6b135b1531a76711d32e", "fields": {"code_postal": "49220", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "BRAIN SUR LONGUENEE", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c972d6d186b1bb6a5afe3c0018f872e6a378a3", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "LE VOIDE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89e8896760d902a25c4b1f60db313c789d83aa5", "fields": {"code_postal": "49560", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "NUEIL SUR LAYON", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1224159134, -0.517336528363]}, "geometry": {"type": "Point", "coordinates": [-0.517336528363, 47.1224159134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8701c60008a025e39be81e2700e977683aecd6b0", "fields": {"nom_de_la_commune": "ACQUEVILLE", "libell_d_acheminement": "ACQUEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50001"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239265434f5008c9133a102dc69a821ada25d598", "fields": {"nom_de_la_commune": "AGON COUTAINVILLE", "libell_d_acheminement": "AGON COUTAINVILLE", "code_postal": "50230", "coordonnees_gps": [49.0383449062, -1.58105756114], "code_commune_insee": "50003"}, "geometry": {"type": "Point", "coordinates": [-1.58105756114, 49.0383449062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34da1c822b18fc88488215f330c63dccf710957d", "fields": {"nom_de_la_commune": "ANNEVILLE SUR MER", "libell_d_acheminement": "ANNEVILLE SUR MER", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50014"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d20adb31f7d136c94038081c59442c696df12427", "fields": {"nom_de_la_commune": "ARGOUGES", "libell_d_acheminement": "ARGOUGES", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50018"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f08cbd27ef1e8796bbfd81395deec6de166c8f8", "fields": {"nom_de_la_commune": "AUMEVILLE LESTRE", "libell_d_acheminement": "AUMEVILLE LESTRE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50022"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "341194da9a3ba75bde96ed50493838b8a331bea5", "fields": {"nom_de_la_commune": "LA BALEINE", "libell_d_acheminement": "LA BALEINE", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50028"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce28a401e6a66e96c3f52398adc576766e894b95", "fields": {"nom_de_la_commune": "BARFLEUR", "libell_d_acheminement": "BARFLEUR", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50030"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed6795aef488a28d13267a2292aa19ee700cb80", "fields": {"nom_de_la_commune": "BAUPTE", "libell_d_acheminement": "BAUPTE", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50036"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11ce6d65c3822009321f8ef011c5ab929a470ac", "fields": {"nom_de_la_commune": "LA BAZOGE", "libell_d_acheminement": "LA BAZOGE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50037"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8cb9fd7356a1ea670163eed094eb81cea11e100", "fields": {"nom_de_la_commune": "BERIGNY", "libell_d_acheminement": "BERIGNY", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50046"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d31e161d338a35555df3488966ed0e51223ea34", "fields": {"nom_de_la_commune": "BRAINVILLE", "libell_d_acheminement": "BRAINVILLE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50072"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc00f7a7c6e17d3840e3ff9df68c2fb06b62c395", "fields": {"nom_de_la_commune": "BRECEY", "libell_d_acheminement": "BRECEY", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50074"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94067e9cdf2fb66b3e8adbde5f777726abd3477", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "LES PERQUES", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc4208207bd594f3224d5e71207003f368a3cc4", "fields": {"nom_de_la_commune": "BRICQUEBOSQ", "libell_d_acheminement": "BRICQUEBOSQ", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50083"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c9757eae7d2612a086be5defdd41bb257b7d7e", "fields": {"code_postal": "50640", "code_commune_insee": "50090", "libell_d_acheminement": "BUAIS LES MONTS", "ligne_5": "ST SYMPHORIEN DES MONTS", "nom_de_la_commune": "BUAIS LES MONTS", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf0f2c8bf685850a50c5b3c5f4247824fd07b52", "fields": {"nom_de_la_commune": "CANVILLE LA ROCQUE", "libell_d_acheminement": "CANVILLE LA ROCQUE", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50097"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2743730975bc2549151601ab7ab9f1bea6ef0eb1", "fields": {"nom_de_la_commune": "CARANTILLY", "libell_d_acheminement": "CARANTILLY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50098"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76d446480e563f6eaaeed2f06e472f5ca1c04965", "fields": {"nom_de_la_commune": "CARNET", "libell_d_acheminement": "CARNET", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50100"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e084d3e8778b685df9e2064151d970e6ec399a6", "fields": {"nom_de_la_commune": "CARNEVILLE", "libell_d_acheminement": "CARNEVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50101"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa433399caddd79d8dfb792630ad685d386acb2", "fields": {"nom_de_la_commune": "CAROLLES", "libell_d_acheminement": "CAROLLES", "code_postal": "50740", "coordonnees_gps": [48.7483636276, -1.5593486808], "code_commune_insee": "50102"}, "geometry": {"type": "Point", "coordinates": [-1.5593486808, 48.7483636276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f0542a19ef2f0f0ab85f768b02fd7bcad6d8e2", "fields": {"nom_de_la_commune": "CERISY LA FORET", "libell_d_acheminement": "CERISY LA FORET", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50110"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b5248adbf9172818b2a005fdce56a4721e7a69", "fields": {"nom_de_la_commune": "CERISY LA SALLE", "libell_d_acheminement": "CERISY LA SALLE", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50111"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24629fc99c4c544867763e1aa15bc521710afb5b", "fields": {"nom_de_la_commune": "CHAMPREPUS", "libell_d_acheminement": "CHAMPREPUS", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50118"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ff5e5efd260631afb59b2a7a9d359009dcf14d", "fields": {"code_postal": "50110", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "TOURLAVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6236287204, -1.56289409844]}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934a8790314049825ad374610fdbe44b3c2c70d5", "fields": {"code_postal": "50130", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "OCTEVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6331832109, -1.6338586934]}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c277245ee6a0efdc3ab9fc2e6f7e8ba50d27452a", "fields": {"code_postal": "50470", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "LA GLACERIE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.608906015, -1.62204254981]}, "geometry": {"type": "Point", "coordinates": [-1.62204254981, 49.608906015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e1405cb0c7048d3c5c58d3e36a8172150200c8", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "COSQUEVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ac8ffcbc2b6fc372c91428df019268939f9595", "fields": {"nom_de_la_commune": "COURCY", "libell_d_acheminement": "COURCY", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50145"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72064a28f0abab2a5e6961d6978d330f5fe84d6", "fields": {"nom_de_la_commune": "COUVILLE", "libell_d_acheminement": "COUVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50149"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b670acf68c1ab4d5d586f4590b5743e36439cb9e", "fields": {"nom_de_la_commune": "LES CRESNAYS", "libell_d_acheminement": "LES CRESNAYS", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50152"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250d9a013bbf3bbd566bd8445fbcead462aacf9e", "fields": {"nom_de_la_commune": "DIGOSVILLE", "libell_d_acheminement": "DIGOSVILLE", "code_postal": "50110", "coordonnees_gps": [49.6236287204, -1.56289409844], "code_commune_insee": "50162"}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d00d12de50c50fcd1ed8d1038088ca6d737d7b5", "fields": {"nom_de_la_commune": "EROUDEVILLE", "libell_d_acheminement": "EROUDEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50175"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e83304c6d901a1db187fd43b6dd964c0e30ccc9c", "fields": {"nom_de_la_commune": "ETIENVILLE", "libell_d_acheminement": "ETIENVILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50177"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8959762911b451f65d6387ecfdf452213b2fb4", "fields": {"nom_de_la_commune": "FIERVILLE LES MINES", "libell_d_acheminement": "FIERVILLE LES MINES", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50183"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a973a0937b8725ba6abcdb2b70f710958e0aa9ee", "fields": {"nom_de_la_commune": "FLAMANVILLE", "libell_d_acheminement": "FLAMANVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50184"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f068d26780b9293c0aac45334f3c72484a9fd08d", "fields": {"nom_de_la_commune": "GAVRAY", "libell_d_acheminement": "GAVRAY", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50197"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7a51556d13ac63d9e90c5806dec346d9af21e4", "fields": {"nom_de_la_commune": "GENETS", "libell_d_acheminement": "GENETS", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50199"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaef3fedc031571db1d7f07cbea0d7b0d7f4a4fc", "fields": {"nom_de_la_commune": "GER", "libell_d_acheminement": "GER", "code_postal": "50850", "coordonnees_gps": [48.6787910778, -0.807041651633], "code_commune_insee": "50200"}, "geometry": {"type": "Point", "coordinates": [-0.807041651633, 48.6787910778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3247dc0e8033358d082dcab3eb9bc5f6491e2918", "fields": {"nom_de_la_commune": "LA GODEFROY", "libell_d_acheminement": "LA GODEFROY", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50205"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7d01187e84331eaf5de364ce5471440c53d9de", "fields": {"nom_de_la_commune": "GONFREVILLE", "libell_d_acheminement": "GONFREVILLE", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50208"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "970ad76094d516959019ebca0dd8988155dc43cf", "fields": {"nom_de_la_commune": "GONNEVILLE LE THEIL", "libell_d_acheminement": "GONNEVILLE LE THEIL", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50209"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4240b9d15844b680d860498e281093d21ae0e506", "fields": {"nom_de_la_commune": "GOUVETS", "libell_d_acheminement": "GOUVETS", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50214"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53658fa6a633fa45b13b0912996f53c2397b49c4", "fields": {"code_postal": "50200", "code_commune_insee": "50215", "libell_d_acheminement": "GOUVILLE SUR MER", "ligne_5": "BOISROGER", "nom_de_la_commune": "GOUVILLE SUR MER", "coordonnees_gps": [49.0681244032, -1.4630459353]}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f488463dd6e44ce8197484924211dfe7c96cbf6", "fields": {"nom_de_la_commune": "LE GRAND CELLAND", "libell_d_acheminement": "LE GRAND CELLAND", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50217"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9625c7eb090c714e4f7f626ab0257a9a451e97c0", "fields": {"nom_de_la_commune": "GRANVILLE", "libell_d_acheminement": "GRANVILLE", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50218"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5689b0c3f3fce83703b539551f8f387e59dd0e", "fields": {"nom_de_la_commune": "GREVILLE HAGUE", "libell_d_acheminement": "GREVILLE HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50220"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c6587a9da86c6b9437fb28af4e6a94b670eb27", "fields": {"nom_de_la_commune": "GRIMESNIL", "libell_d_acheminement": "GRIMESNIL", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50221"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9774661a3ded22e0e98a92cde3060986bdb9b8", "fields": {"nom_de_la_commune": "GROSVILLE", "libell_d_acheminement": "GROSVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50222"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba786d018399e0af04d6370adfb661800ca6776f", "fields": {"nom_de_la_commune": "LE GUISLAIN", "libell_d_acheminement": "LE GUISLAIN", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50225"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff39a8a8454b048c970ca3c5728b389f316d654", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "BAUDREVILLE", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f856674ffd958616e7e5765b6150999ae40711b", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "ST SYMPHORIEN LE VALOIS", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0a2bd35992cb52395c5595c5af109fbc451353d", "fields": {"code_postal": "50570", "code_commune_insee": "50239", "libell_d_acheminement": "THEREVAL", "ligne_5": "LA CHAPELLE EN JUGER", "nom_de_la_commune": "THEREVAL", "coordonnees_gps": [49.1154216014, -1.25542173856]}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0685444161721600efadd353c5c6f36ef9e0a5", "fields": {"nom_de_la_commune": "HEMEVEZ", "libell_d_acheminement": "HEMEVEZ", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50241"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f88ef8c471740a102f73b07baee5c2b8d0e265e", "fields": {"nom_de_la_commune": "HERQUEVILLE", "libell_d_acheminement": "HERQUEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50242"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca98f4937cd9601d54a6306cf301755f6ce9cec", "fields": {"nom_de_la_commune": "HERENGUERVILLE", "libell_d_acheminement": "HERENGUERVILLE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50244"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fcbb085281a9ba8887cf4cd1083ba5f983794d2", "fields": {"nom_de_la_commune": "JOBOURG", "libell_d_acheminement": "JOBOURG", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50257"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a12889c393600ed1875799070e52179a8f9f3f3", "fields": {"nom_de_la_commune": "JOGANVILLE", "libell_d_acheminement": "JOGANVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50258"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158e9f4c998cf22bddd499dd1c95f5ea119aa4be", "fields": {"nom_de_la_commune": "LENGRONNE", "libell_d_acheminement": "LENGRONNE", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50266"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3872eabcb2e5b2a923373f59eb9d1cd4991af2e", "fields": {"code_postal": "50430", "code_commune_insee": "50267", "libell_d_acheminement": "LESSAY", "ligne_5": "ANGOVILLE SUR AY", "nom_de_la_commune": "LESSAY", "coordonnees_gps": [49.238207059, -1.53592999138]}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3952382ebe51d5d072ede0bf0ea55d2b2a8523af", "fields": {"nom_de_la_commune": "LIEUSAINT", "libell_d_acheminement": "LIEUSAINT", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50270"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b95334aad9929e3596b9092dbfe06c995a9f840", "fields": {"nom_de_la_commune": "LES LOGES MARCHIS", "libell_d_acheminement": "LES LOGES MARCHIS", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50274"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35dcc0cfdf9849c88c2a01a0b9d4cdb268999d7c", "fields": {"nom_de_la_commune": "LOLIF", "libell_d_acheminement": "LOLIF", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50276"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a27147e93c6116dd0331ce3c8ccc3a2294cc3b", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50277"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50657acd058c2a460cc84858e4ec206973c84dd", "fields": {"nom_de_la_commune": "LE LOREY", "libell_d_acheminement": "LE LOREY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50279"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "268a36371a1dd2e43e3bfe2669a5a6984b044573", "fields": {"nom_de_la_commune": "MARCILLY", "libell_d_acheminement": "MARCILLY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50290"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4757dc487173d44a3325d25c2f27668cbf3a88", "fields": {"nom_de_la_commune": "MAUPERTUS SUR MER", "libell_d_acheminement": "MAUPERTUS SUR MER", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50296"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080e20bd49a803bd9ac445621bf85d9ea52dcee0", "fields": {"nom_de_la_commune": "LE MESNIL GILBERT", "libell_d_acheminement": "LE MESNIL GILBERT", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50312"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16fe9b1f666db76fd158ececf2f55fdb9a3a072e", "fields": {"nom_de_la_commune": "LE MESNIL VILLEMAN", "libell_d_acheminement": "LE MESNIL VILLEMAN", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50326"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44003ba514db1c26357f0f71d0cda955d1827e0", "fields": {"nom_de_la_commune": "MILLIERES", "libell_d_acheminement": "MILLIERES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50328"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138b44a2a2972c8b0b768ce4ee9d8fa2db6c36b8", "fields": {"nom_de_la_commune": "MONTABOT", "libell_d_acheminement": "MONTABOT", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50334"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5913b8930a75e3129dab79e27c2e6054d0ec689", "fields": {"nom_de_la_commune": "MONTAIGU LA BRISETTE", "libell_d_acheminement": "MONTAIGU LA BRISETTE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50335"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fc7b68acb8ff5299bf373324161866a17ba382", "fields": {"nom_de_la_commune": "MONTANEL", "libell_d_acheminement": "MONTANEL", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50337"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264adeae2ef96ea796626b48e70894c40c4c8745", "fields": {"nom_de_la_commune": "MONTCUIT", "libell_d_acheminement": "MONTCUIT", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50340"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed1c821d31dd6890048d898ebedb1ed4c597e7b", "fields": {"nom_de_la_commune": "MONTREUIL SUR LOZON", "libell_d_acheminement": "MONTREUIL SUR LOZON", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50352"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873d63e0e03c02a08570b88f568b3141c87f6050", "fields": {"nom_de_la_commune": "MORIGNY", "libell_d_acheminement": "MORIGNY", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50357"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5fac635372a24d86cfa5f559552ec9d1a7869a2", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "VILLECHIEN", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2ce7bdc3165c753003bac64f5c6ceae23ca99ec", "fields": {"nom_de_la_commune": "MUNEVILLE SUR MER", "libell_d_acheminement": "MUNEVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50365"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf6fdbe21eafd275ae120e9ae79069016e49e77", "fields": {"nom_de_la_commune": "OMONVILLE LA PETITE", "libell_d_acheminement": "OMONVILLE LA PETITE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50385"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2673919d82b99f7c9d944fbab7b784300ed6aa9", "fields": {"nom_de_la_commune": "ORGLANDES", "libell_d_acheminement": "ORGLANDES", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50387"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2fe9beb9a266cfe7f57b14166cb227b018815ea", "fields": {"nom_de_la_commune": "OUVILLE", "libell_d_acheminement": "OUVILLE", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50389"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caf236ff96c39ed82ca0bdf971a39a11587d0fc", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "MILLY", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "878eca9c46325e7f55390df6ed720ca7799b6460", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "PARIGNY", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ea98c233e6922d7a3a9f3e5b69d1784ac95105", "fields": {"nom_de_la_commune": "PERIERS", "libell_d_acheminement": "PERIERS", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50394"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f586fc8c97b61aad004773cf0f6a4fff474d692", "fields": {"code_postal": "50250", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "CRETTEVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c4bc1928a67b9320171622d00d79374659685a", "fields": {"nom_de_la_commune": "PICAUVILLE", "libell_d_acheminement": "PICAUVILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50400"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd64c3f710b4a66348aaaf05c76410797e368feb", "fields": {"nom_de_la_commune": "PONTAUBAULT", "libell_d_acheminement": "PONTAUBAULT", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50408"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dafe7ff48b0febf332b9fb5f23a862545b3d9c", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "ARDEVON", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1794f949abbcec3403ac8c15fa9d38e5fa3091f", "fields": {"nom_de_la_commune": "QUIBOU", "libell_d_acheminement": "QUIBOU", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50420"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc15fe0e8686b3c4ba7d9b1a8f9d574320926b9", "fields": {"nom_de_la_commune": "REIGNEVILLE BOCAGE", "libell_d_acheminement": "REIGNEVILLE BOCAGE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50430"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d753fa6ceaabdfa516b45d16c3c3ae55d2e207", "fields": {"code_postal": "50140", "code_commune_insee": "50436", "libell_d_acheminement": "ROMAGNY FONTENAY", "ligne_5": "FONTENAY", "nom_de_la_commune": "ROMAGNY FONTENAY", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507143c582b6c775dfdab7040d097c7106ea9d34", "fields": {"nom_de_la_commune": "SACEY", "libell_d_acheminement": "SACEY", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50443"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524ec42d5eef90bbf191af6da56f28673259455c", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50450"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4136322eb9c6bdbdb077fd6b3bf39a5f05027b59", "fields": {"nom_de_la_commune": "BALIGNAC", "libell_d_acheminement": "BALIGNAC", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82009"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167e64639572ad0eed7a53e5208f95a0fc8ee042", "fields": {"nom_de_la_commune": "BOURRET", "libell_d_acheminement": "BOURRET", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82023"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1251754b5a93f63fb49fe900bf18c18fc6dd807f", "fields": {"nom_de_la_commune": "CAMPSAS", "libell_d_acheminement": "CAMPSAS", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82027"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b927ad1ff7c1f4ca6894aaefa7af5f7e0caeb64", "fields": {"nom_de_la_commune": "CANALS", "libell_d_acheminement": "CANALS", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82028"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d040b0b3facb0ea97eefa3135639d6c2f58ca6", "fields": {"nom_de_la_commune": "CASTELFERRUS", "libell_d_acheminement": "CASTELFERRUS", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82030"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8cdd1af85b79bacab593e45e2038b3dad922ef7", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82035"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca98c047067bcf98428fcdc4127b0191748d487", "fields": {"nom_de_la_commune": "CAYLUS", "libell_d_acheminement": "CAYLUS", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82038"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6400ac269fa9f4e202d1d4f9defedbc750839194", "fields": {"nom_de_la_commune": "DURFORT LACAPELETTE", "libell_d_acheminement": "DURFORT LACAPELETTE", "code_postal": "82390", "coordonnees_gps": [44.1828177326, 1.14177395447], "code_commune_insee": "82051"}, "geometry": {"type": "Point", "coordinates": [1.14177395447, 44.1828177326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bbed3f722c1d2be4b95ee0f37f5c336a0ba1c0", "fields": {"nom_de_la_commune": "ESPARSAC", "libell_d_acheminement": "ESPARSAC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82055"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6002546ead01498320a2c306d4a52c6b32922c4c", "fields": {"nom_de_la_commune": "ESPINAS", "libell_d_acheminement": "ESPINAS", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82056"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98aff7e986a3b78d2405fc3021e6c07b46087c61", "fields": {"nom_de_la_commune": "FAJOLLES", "libell_d_acheminement": "FAJOLLES", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82058"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcaff8bd7b5ac85610b327eb15d222e6066de50c", "fields": {"nom_de_la_commune": "FINHAN", "libell_d_acheminement": "FINHAN", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82062"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96641013b3ce1a99fb903ae94863f49b382b47ce", "fields": {"nom_de_la_commune": "GARGANVILLAR", "libell_d_acheminement": "GARGANVILLAR", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82063"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f35dac0fee298959fe8463b529cbe7c40d25eca", "fields": {"nom_de_la_commune": "GARIES", "libell_d_acheminement": "GARIES", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82064"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ba974f253b8a66f84f08aea91eb527ee7500d1", "fields": {"nom_de_la_commune": "GENSAC", "libell_d_acheminement": "GENSAC", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82067"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d8e4701c9bb92c87e74504de071d2e970a0055", "fields": {"nom_de_la_commune": "LACAPELLE LIVRON", "libell_d_acheminement": "LACAPELLE LIVRON", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82082"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce9f43e5727bdf0eb3eed3a4cb531d254e326cd", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82104"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d8730b9f6f169d549b1b873451d83a3bf4c801", "fields": {"nom_de_la_commune": "MAUBEC", "libell_d_acheminement": "MAUBEC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82106"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2375646a7432f2d8dcf1e090169ca539d32b6b90", "fields": {"nom_de_la_commune": "MOISSAC", "libell_d_acheminement": "MOISSAC", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82112"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ac3dfe98f4c869606d4601e842a41756a67322", "fields": {"nom_de_la_commune": "MONTALZAT", "libell_d_acheminement": "MONTALZAT", "code_postal": "82270", "coordonnees_gps": [44.2279601929, 1.48359927772], "code_commune_insee": "82119"}, "geometry": {"type": "Point", "coordinates": [1.48359927772, 44.2279601929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49479d4c12dad55585e367e165df5db7ef57f211", "fields": {"nom_de_la_commune": "MONTBETON", "libell_d_acheminement": "MONTBETON", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82124"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0289e20425fa4557860b469340b58b6d8802c93", "fields": {"nom_de_la_commune": "MONTPEZAT DE QUERCY", "libell_d_acheminement": "MONTPEZAT DE QUERCY", "code_postal": "82270", "coordonnees_gps": [44.2279601929, 1.48359927772], "code_commune_insee": "82131"}, "geometry": {"type": "Point", "coordinates": [1.48359927772, 44.2279601929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11f939c75277692be605176275facd2f2f16a54", "fields": {"nom_de_la_commune": "ORGUEIL", "libell_d_acheminement": "ORGUEIL", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82136"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5057d8720c87905547c8d2c47f6a9320d85c0cb3", "fields": {"nom_de_la_commune": "PARISOT", "libell_d_acheminement": "PARISOT", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82137"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce424a36b4351053d11b53d18aaaf3fc1375851", "fields": {"nom_de_la_commune": "PERVILLE", "libell_d_acheminement": "PERVILLE", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82138"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f5268514499d6b352cde4186a8b03100661bd2a", "fields": {"nom_de_la_commune": "PIQUECOS", "libell_d_acheminement": "PIQUECOS", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82140"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e161095cadda396701ec7c88919e4c7f9644ba", "fields": {"nom_de_la_commune": "POMMEVIC", "libell_d_acheminement": "POMMEVIC", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82141"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3cc229ddae7f225f84dce3f19f2ea36826dcf7", "fields": {"nom_de_la_commune": "POMPIGNAN", "libell_d_acheminement": "POMPIGNAN", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82142"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99eb5dbb39d53fbeb383be0649ee0a690a2cc1ea", "fields": {"nom_de_la_commune": "REALVILLE", "libell_d_acheminement": "REALVILLE", "code_postal": "82440", "coordonnees_gps": [44.13317839, 1.44584346217], "code_commune_insee": "82149"}, "geometry": {"type": "Point", "coordinates": [1.44584346217, 44.13317839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882c98ad210d52ad76e9d2ca82190f406486ad8d", "fields": {"nom_de_la_commune": "REYNIES", "libell_d_acheminement": "REYNIES", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82150"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a6f736ee3b785228a9c5f20e67f63e82e6f78f", "fields": {"nom_de_la_commune": "ST AMANS DU PECH", "libell_d_acheminement": "ST AMANS DU PECH", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82153"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e31367caa3ddd216bac0dd6483e683bf6900bf", "fields": {"nom_de_la_commune": "ST AMANS DE PELLAGAL", "libell_d_acheminement": "ST AMANS DE PELLAGAL", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82154"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eca9d760e798fa225b980c596a3271da8ea8b67", "fields": {"nom_de_la_commune": "ST BEAUZEIL", "libell_d_acheminement": "ST BEAUZEIL", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82157"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea15589523814869055a52b03fb596e5bceacb3", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82162"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfbe5d1af8d1bd0f8aabb200865d9b874d7aae3e", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82165"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c38cc8d6e27cd590d6e72a9c7f3ae9710918d14", "fields": {"nom_de_la_commune": "ST PAUL D ESPIS", "libell_d_acheminement": "ST PAUL D ESPIS", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82170"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c4100054ec7ae91a0b38cff2f6653c0cdef911", "fields": {"nom_de_la_commune": "ST PORQUIER", "libell_d_acheminement": "ST PORQUIER", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82171"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4232cfd08e6d81e94ef308d27343209a2f97fd2f", "fields": {"nom_de_la_commune": "VALEILLES", "libell_d_acheminement": "VALEILLES", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82185"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0691cff3129102b27535e594c339e3bbc372af", "fields": {"nom_de_la_commune": "AMPUS", "libell_d_acheminement": "AMPUS", "code_postal": "83111", "coordonnees_gps": [43.6285255822, 6.37191426227], "code_commune_insee": "83003"}, "geometry": {"type": "Point", "coordinates": [6.37191426227, 43.6285255822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cf94737b016761f525d8982aeb0b635e8ffaa0", "fields": {"nom_de_la_commune": "LE BEAUSSET", "libell_d_acheminement": "LE BEAUSSET", "code_postal": "83330", "coordonnees_gps": [43.2073445411, 5.81845184293], "code_commune_insee": "83016"}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f2afa7a0c937e43b792adfb3598709c7de9012d", "fields": {"nom_de_la_commune": "BESSE SUR ISSOLE", "libell_d_acheminement": "BESSE SUR ISSOLE", "code_postal": "83890", "coordonnees_gps": [43.3399085687, 6.17784718792], "code_commune_insee": "83018"}, "geometry": {"type": "Point", "coordinates": [6.17784718792, 43.3399085687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e125289de3b64cdd34e070fb4ab33e2cb067d7", "fields": {"nom_de_la_commune": "BORMES LES MIMOSAS", "libell_d_acheminement": "BORMES LES MIMOSAS", "code_postal": "83230", "coordonnees_gps": [43.1623803252, 6.34953294374], "code_commune_insee": "83019"}, "geometry": {"type": "Point", "coordinates": [6.34953294374, 43.1623803252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f22331d97dd061bcbfe4cb427209c755f1f64b", "fields": {"nom_de_la_commune": "BRUE AURIAC", "libell_d_acheminement": "BRUE AURIAC", "code_postal": "83119", "coordonnees_gps": [43.5276371659, 5.93706271052], "code_commune_insee": "83025"}, "geometry": {"type": "Point", "coordinates": [5.93706271052, 43.5276371659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3620723ad50ec3ad07f400cc3925ff8105245c2b", "fields": {"nom_de_la_commune": "CALLIAN", "libell_d_acheminement": "CALLIAN", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83029"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8946942007993e6a6ad6fc0792811b411ea41117", "fields": {"nom_de_la_commune": "CARCES", "libell_d_acheminement": "CARCES", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83032"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17248f468a00c7635395d90ed1cc4d8298fb5440", "fields": {"nom_de_la_commune": "CARNOULES", "libell_d_acheminement": "CARNOULES", "code_postal": "83660", "coordonnees_gps": [43.2943746316, 6.19707589328], "code_commune_insee": "83033"}, "geometry": {"type": "Point", "coordinates": [6.19707589328, 43.2943746316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1300ffa8511ccab8305f0399433a2402ae9cd3ba", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "LAOUQUE", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076ffbe0dea4ff2102a497a5e4fb64292e15c0bd", "fields": {"nom_de_la_commune": "CAVALAIRE SUR MER", "libell_d_acheminement": "CAVALAIRE SUR MER", "code_postal": "83240", "coordonnees_gps": [43.181954686, 6.52093562619], "code_commune_insee": "83036"}, "geometry": {"type": "Point", "coordinates": [6.52093562619, 43.181954686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f404d0a0b35ce21790de0d36f957bd3ae6a5d1cb", "fields": {"nom_de_la_commune": "COLLOBRIERES", "libell_d_acheminement": "COLLOBRIERES", "code_postal": "83610", "coordonnees_gps": [43.2413817992, 6.34040259523], "code_commune_insee": "83043"}, "geometry": {"type": "Point", "coordinates": [6.34040259523, 43.2413817992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226976a79a90a36219a70d41afb393dd4e778657", "fields": {"nom_de_la_commune": "FREJUS", "libell_d_acheminement": "FREJUS", "code_postal": "83600", "coordonnees_gps": [43.4958707206, 6.756116629], "code_commune_insee": "83061"}, "geometry": {"type": "Point", "coordinates": [6.756116629, 43.4958707206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30ee3fa7790658737a19e86c2d3572551e6de6e", "fields": {"nom_de_la_commune": "GASSIN", "libell_d_acheminement": "GASSIN", "code_postal": "83580", "coordonnees_gps": [43.2394880202, 6.58583330607], "code_commune_insee": "83065"}, "geometry": {"type": "Point", "coordinates": [6.58583330607, 43.2394880202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af534f6b61d3cb71b8c2db1dbb735742ac494ac", "fields": {"nom_de_la_commune": "GINASSERVIS", "libell_d_acheminement": "GINASSERVIS", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83066"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0f1dea4a61c749424c2fad3d4d8d48fd9ca6d9", "fields": {"nom_de_la_commune": "GRIMAUD", "libell_d_acheminement": "GRIMAUD", "code_postal": "83310", "coordonnees_gps": [43.248161575, 6.50847082602], "code_commune_insee": "83068"}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253987148106d4f9d619d573ec8003c77d93d8f7", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "ILE DE PORT CROS", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7566734f914b16976ab0531dd733dee60965329d", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "ILE DU LEVANT", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b83f399b71741cfed5d33f7d2aa69c8dad4a79d", "fields": {"nom_de_la_commune": "LA MARTRE", "libell_d_acheminement": "LA MARTRE", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83074"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88736fdb99ef9af30dfaecded1ada0d747679121", "fields": {"nom_de_la_commune": "MOISSAC BELLEVUE", "libell_d_acheminement": "MOISSAC BELLEVUE", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83078"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fef716431ba784a1c6e63d6d361a12c107cd8e40", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83080"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fe324f98990012744203fe361fa29e2cf9a657", "fields": {"nom_de_la_commune": "MONTFERRAT", "libell_d_acheminement": "MONTFERRAT", "code_postal": "83131", "coordonnees_gps": [43.6361124472, 6.47874721321], "code_commune_insee": "83082"}, "geometry": {"type": "Point", "coordinates": [6.47874721321, 43.6361124472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4e70483163b6dbb81bcc4d4d475d974ea6ad49", "fields": {"nom_de_la_commune": "LE MUY", "libell_d_acheminement": "LE MUY", "code_postal": "83490", "coordonnees_gps": [43.4687106091, 6.57695868927], "code_commune_insee": "83086"}, "geometry": {"type": "Point", "coordinates": [6.57695868927, 43.4687106091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb57bc9babce92c72a0a5491d6c6ce17e3cba13", "fields": {"nom_de_la_commune": "NEOULES", "libell_d_acheminement": "NEOULES", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83088"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddbd17fb5cc826d6aafed71aded432941e3ccae", "fields": {"nom_de_la_commune": "OLLIERES", "libell_d_acheminement": "OLLIERES", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83089"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b285ce97abcd1ec0705986d4cf1a794126be9f1", "fields": {"nom_de_la_commune": "PIGNANS", "libell_d_acheminement": "PIGNANS", "code_postal": "83790", "coordonnees_gps": [43.2967841345, 6.25425058245], "code_commune_insee": "83092"}, "geometry": {"type": "Point", "coordinates": [6.25425058245, 43.2967841345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41de3ff71ec444e7655cb29e1fe6c21dece08fcf", "fields": {"nom_de_la_commune": "PONTEVES", "libell_d_acheminement": "PONTEVES", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83095"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c94a8c428b91c209835282a9f942ba3297b7292", "fields": {"nom_de_la_commune": "RAMATUELLE", "libell_d_acheminement": "RAMATUELLE", "code_postal": "83350", "coordonnees_gps": [43.2183165344, 6.63696635757], "code_commune_insee": "83101"}, "geometry": {"type": "Point", "coordinates": [6.63696635757, 43.2183165344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ac658720ca24776cbdbc10229cb137f201195c", "fields": {"nom_de_la_commune": "RIBOUX", "libell_d_acheminement": "RIBOUX", "code_postal": "13780", "coordonnees_gps": [43.2875382054, 5.72232171856], "code_commune_insee": "83105"}, "geometry": {"type": "Point", "coordinates": [5.72232171856, 43.2875382054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9d618c390f6547102ebab4b1600b7e6f610c7a", "fields": {"nom_de_la_commune": "ST CYR SUR MER", "libell_d_acheminement": "ST CYR SUR MER", "code_postal": "83270", "coordonnees_gps": [43.1726377038, 5.70862543611], "code_commune_insee": "83112"}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d20cd0099efa924f011653e10b2be79ffcd7a1a", "fields": {"nom_de_la_commune": "STE MAXIME", "libell_d_acheminement": "STE MAXIME", "code_postal": "83120", "coordonnees_gps": [43.3509505991, 6.59102562058], "code_commune_insee": "83115"}, "geometry": {"type": "Point", "coordinates": [6.59102562058, 43.3509505991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7542758aa7eb32d6c41dd6c27dd722419cfe1bc", "fields": {"code_postal": "83700", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "BOULOURIS", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643b1393afcfa104496a72867ff44449b6b261ca", "fields": {"nom_de_la_commune": "ST ZACHARIE", "libell_d_acheminement": "ST ZACHARIE", "code_postal": "83640", "coordonnees_gps": [43.3568755159, 5.72816455305], "code_commune_insee": "83120"}, "geometry": {"type": "Point", "coordinates": [5.72816455305, 43.3568755159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49e814c0e9df126e3be5b8d995bf5a15812cd56d", "fields": {"nom_de_la_commune": "LA SEYNE SUR MER", "libell_d_acheminement": "LA SEYNE SUR MER", "code_postal": "83500", "coordonnees_gps": [43.0889033839, 5.87071213216], "code_commune_insee": "83126"}, "geometry": {"type": "Point", "coordinates": [5.87071213216, 43.0889033839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c4f98be247979e4803dcedd46a8114b0093aa3", "fields": {"code_postal": "83500", "code_commune_insee": "83126", "libell_d_acheminement": "LA SEYNE SUR MER", "ligne_5": "LES SABLETTES", "nom_de_la_commune": "LA SEYNE SUR MER", "coordonnees_gps": [43.0889033839, 5.87071213216]}, "geometry": {"type": "Point", "coordinates": [5.87071213216, 43.0889033839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a15467115ef460446859dfcbe73fa5102d9ab1", "fields": {"nom_de_la_commune": "SOLLIES VILLE", "libell_d_acheminement": "SOLLIES VILLE", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83132"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c5fe1922b7593b9c5fa000b24ca69af476e423", "fields": {"nom_de_la_commune": "TOULON", "libell_d_acheminement": "TOULON", "code_postal": "83200", "coordonnees_gps": [43.15297354, 5.93725605869], "code_commune_insee": "83137"}, "geometry": {"type": "Point", "coordinates": [5.93725605869, 43.15297354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3aae2dbcacfc9fd2b89c7bf03100b12341f7b9b", "fields": {"nom_de_la_commune": "TRANS EN PROVENCE", "libell_d_acheminement": "TRANS EN PROVENCE", "code_postal": "83720", "coordonnees_gps": [43.5021974958, 6.48931200045], "code_commune_insee": "83141"}, "geometry": {"type": "Point", "coordinates": [6.48931200045, 43.5021974958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab2b09c35ed19d1cf841e99cc83b1378a27bf64", "fields": {"nom_de_la_commune": "RAYOL CANADEL SUR MER", "libell_d_acheminement": "RAYOL CANADEL SUR MER", "code_postal": "83820", "coordonnees_gps": [43.1644119646, 6.47547585523], "code_commune_insee": "83152"}, "geometry": {"type": "Point", "coordinates": [6.47547585523, 43.1644119646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b0eda1768b1ce47942360d2dbf57a870dfcde1", "fields": {"code_postal": "84140", "code_commune_insee": "84007", "libell_d_acheminement": "AVIGNON", "ligne_5": "MONTFAVET", "nom_de_la_commune": "AVIGNON", "coordonnees_gps": [43.9352589636, 4.84116595474]}, "geometry": {"type": "Point", "coordinates": [4.84116595474, 43.9352589636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9cfff41a57a5643fa66c6ecfbdd850b33089109", "fields": {"nom_de_la_commune": "BEDOIN", "libell_d_acheminement": "BEDOIN", "code_postal": "84410", "coordonnees_gps": [44.1291997766, 5.23454879295], "code_commune_insee": "84017"}, "geometry": {"type": "Point", "coordinates": [5.23454879295, 44.1291997766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85d0fb2154f2eefcbf3e48163479746aced36fd", "fields": {"nom_de_la_commune": "CAIRANNE", "libell_d_acheminement": "CAIRANNE", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84028"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ecc700014a127427e53bf38bc5b863a6244d91", "fields": {"nom_de_la_commune": "CAROMB", "libell_d_acheminement": "CAROMB", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84030"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c32ba5c51bbd290bee7e062edfc03b6089b294", "fields": {"nom_de_la_commune": "CAVAILLON", "libell_d_acheminement": "CAVAILLON", "code_postal": "84300", "coordonnees_gps": [43.8481769374, 5.04312031956], "code_commune_insee": "84035"}, "geometry": {"type": "Point", "coordinates": [5.04312031956, 43.8481769374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39578894430f85ae47e31991de668731f71b1431", "fields": {"code_postal": "84300", "code_commune_insee": "84035", "libell_d_acheminement": "CAVAILLON", "ligne_5": "LES VIGNERES", "nom_de_la_commune": "CAVAILLON", "coordonnees_gps": [43.8481769374, 5.04312031956]}, "geometry": {"type": "Point", "coordinates": [5.04312031956, 43.8481769374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97da3f995d191ec19181b2571736fb98e5943899", "fields": {"nom_de_la_commune": "CHEVAL BLANC", "libell_d_acheminement": "CHEVAL BLANC", "code_postal": "84460", "coordonnees_gps": [43.7887442757, 5.12432916697], "code_commune_insee": "84038"}, "geometry": {"type": "Point", "coordinates": [5.12432916697, 43.7887442757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0559210b511e4ccd12fc91b10b571b3dee914ad0", "fields": {"nom_de_la_commune": "CRESTET", "libell_d_acheminement": "CRESTET", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84040"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "084b8c4d7b3fdd152ceb07752f6b163b55e4f20c", "fields": {"nom_de_la_commune": "FLASSAN", "libell_d_acheminement": "FLASSAN", "code_postal": "84410", "coordonnees_gps": [44.1291997766, 5.23454879295], "code_commune_insee": "84046"}, "geometry": {"type": "Point", "coordinates": [5.23454879295, 44.1291997766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d31a33abdc9ceb7d69a7b217b2abd1883a660e", "fields": {"nom_de_la_commune": "GOULT", "libell_d_acheminement": "GOULT", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84051"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6133657f59e5aa9628f312102ea033346f725e", "fields": {"nom_de_la_commune": "JONQUERETTES", "libell_d_acheminement": "JONQUERETTES", "code_postal": "84450", "coordonnees_gps": [43.9589146165, 4.94209052734], "code_commune_insee": "84055"}, "geometry": {"type": "Point", "coordinates": [4.94209052734, 43.9589146165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5404e25ea1d9186daea3560e8227554a2a1822bc", "fields": {"nom_de_la_commune": "JOUCAS", "libell_d_acheminement": "JOUCAS", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84057"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13544af8cf26aa2429f4418ee46624e99cbe510", "fields": {"nom_de_la_commune": "LAGNES", "libell_d_acheminement": "LAGNES", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84062"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab4e37e70d26e5beb90ba742b5d9cfc2a5730ba", "fields": {"nom_de_la_commune": "LIOUX", "libell_d_acheminement": "LIOUX", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84066"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29e4e4c8befc2b074599bb37378f32290b10ed3", "fields": {"nom_de_la_commune": "MORNAS", "libell_d_acheminement": "MORNAS", "code_postal": "84550", "coordonnees_gps": [44.2040971484, 4.74012097927], "code_commune_insee": "84083"}, "geometry": {"type": "Point", "coordinates": [4.74012097927, 44.2040971484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab06b97ce7fcc2cc02d57e1e37ef7630b1c3dc6b", "fields": {"nom_de_la_commune": "OPPEDE", "libell_d_acheminement": "OPPEDE", "code_postal": "84580", "coordonnees_gps": [43.8315749238, 5.1699650235], "code_commune_insee": "84086"}, "geometry": {"type": "Point", "coordinates": [5.1699650235, 43.8315749238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0b68b1dbcad953a1b4c05c4ef5138df11bf0dc", "fields": {"nom_de_la_commune": "PERNES LES FONTAINES", "libell_d_acheminement": "PERNES LES FONTAINES", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84088"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bdbc29104e565b975cb4f9424c3caaf0b51697", "fields": {"nom_de_la_commune": "PEYPIN D AIGUES", "libell_d_acheminement": "PEYPIN D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84090"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1547761db4e07e5bf06ed596d43b7d4393bb19", "fields": {"nom_de_la_commune": "SABLET", "libell_d_acheminement": "SABLET", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84104"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465567d734ee2da79d3648eec5ee8e8e0f667b85", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84108"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78551f0ee56d9a1284c6c63afccf3a3be1fa325b", "fields": {"nom_de_la_commune": "ST MARTIN DE CASTILLON", "libell_d_acheminement": "ST MARTIN DE CASTILLON", "code_postal": "84750", "coordonnees_gps": [43.880271182, 5.52723627077], "code_commune_insee": "84112"}, "geometry": {"type": "Point", "coordinates": [5.52723627077, 43.880271182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140e9fbfb4f346b2b93e42bd75eccedf56a644ed", "fields": {"nom_de_la_commune": "ST SATURNIN LES APT", "libell_d_acheminement": "ST SATURNIN LES APT", "code_postal": "84490", "coordonnees_gps": [43.9590935418, 5.37338485787], "code_commune_insee": "84118"}, "geometry": {"type": "Point", "coordinates": [5.37338485787, 43.9590935418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59e15d6bb434b507c2d8b05b11e7f40bb8db55d", "fields": {"nom_de_la_commune": "SAUMANE DE VAUCLUSE", "libell_d_acheminement": "SAUMANE DE VAUCLUSE", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84124"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d09b98c25a0441116f78b77e455506ec9f4bad4", "fields": {"nom_de_la_commune": "FONTAINE DE VAUCLUSE", "libell_d_acheminement": "FONTAINE DE VAUCLUSE", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84139"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1178ca14525affd7275d6990a462c044975b26a8", "fields": {"nom_de_la_commune": "BUTRY SUR OISE", "libell_d_acheminement": "BUTRY SUR OISE", "code_postal": "95430", "coordonnees_gps": [49.0811077214, 2.16105485374], "code_commune_insee": "95120"}, "geometry": {"type": "Point", "coordinates": [2.16105485374, 49.0811077214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aabe2eb03538230ffa355f63eb35b1b409dc843", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR OISE", "libell_d_acheminement": "CHAMPAGNE SUR OISE", "code_postal": "95660", "coordonnees_gps": [49.1422115093, 2.22865466079], "code_commune_insee": "95134"}, "geometry": {"type": "Point", "coordinates": [2.22865466079, 49.1422115093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9046f2c3bfd04329018d44d2cb09962829a57de6", "fields": {"nom_de_la_commune": "CLERY EN VEXIN", "libell_d_acheminement": "CLERY EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95166"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ca7bf31c8ef0214cde664c43c2650c5b269558", "fields": {"nom_de_la_commune": "COMMENY", "libell_d_acheminement": "COMMENY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95169"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d3a99dca79bd6bba7ada642600d0bcac9e5cbb", "fields": {"nom_de_la_commune": "CONDECOURT", "libell_d_acheminement": "CONDECOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95170"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bd41a6f5640dc6a68971c78b07e87ff1ecf3a9", "fields": {"nom_de_la_commune": "CORMEILLES EN VEXIN", "libell_d_acheminement": "CORMEILLES EN VEXIN", "code_postal": "95830", "coordonnees_gps": [49.1160885298, 2.01080695268], "code_commune_insee": "95177"}, "geometry": {"type": "Point", "coordinates": [2.01080695268, 49.1160885298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a896618be5399080be1ef59dfff67895706112", "fields": {"nom_de_la_commune": "COURCELLES SUR VIOSNE", "libell_d_acheminement": "COURCELLES SUR VIOSNE", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95181"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338da3bf5ef9174812bc54aa7e139a8037616333", "fields": {"nom_de_la_commune": "COURDIMANCHE", "libell_d_acheminement": "COURDIMANCHE", "code_postal": "95800", "coordonnees_gps": [49.0404241863, 2.0356184662], "code_commune_insee": "95183"}, "geometry": {"type": "Point", "coordinates": [2.0356184662, 49.0404241863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d42d2e902bf31bf79cf819176f9d000613d5d1e", "fields": {"nom_de_la_commune": "DOMONT", "libell_d_acheminement": "DOMONT", "code_postal": "95330", "coordonnees_gps": [49.0300393883, 2.32333965677], "code_commune_insee": "95199"}, "geometry": {"type": "Point", "coordinates": [2.32333965677, 49.0300393883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9aa1e674ccf69e19a1c9cbd0fd9902dd58bce50", "fields": {"nom_de_la_commune": "FONTENAY EN PARISIS", "libell_d_acheminement": "FONTENAY EN PARISIS", "code_postal": "95190", "coordonnees_gps": [49.0402800937, 2.45734698588], "code_commune_insee": "95241"}, "geometry": {"type": "Point", "coordinates": [2.45734698588, 49.0402800937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e7c278c4b792ea924d0822692bcbec85799efa5", "fields": {"nom_de_la_commune": "FREMECOURT", "libell_d_acheminement": "FREMECOURT", "code_postal": "95830", "coordonnees_gps": [49.1160885298, 2.01080695268], "code_commune_insee": "95254"}, "geometry": {"type": "Point", "coordinates": [2.01080695268, 49.1160885298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf209fe144c881967b880ad483c39135af004d71", "fields": {"nom_de_la_commune": "HEROUVILLE", "libell_d_acheminement": "HEROUVILLE", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95308"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ef71d72a8858fa4920c4b83901591852ef4aec", "fields": {"nom_de_la_commune": "MENOUVILLE", "libell_d_acheminement": "MENOUVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95387"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df97a4b7dcfda0b5bef2334311a9162e718853dd", "fields": {"nom_de_la_commune": "MONTIGNY LES CORMEILLES", "libell_d_acheminement": "MONTIGNY LES CORMEILLES", "code_postal": "95370", "coordonnees_gps": [48.9938447776, 2.19378028588], "code_commune_insee": "95424"}, "geometry": {"type": "Point", "coordinates": [2.19378028588, 48.9938447776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b3f4012bd7293b7084c8111234cfdf37f9cd79", "fields": {"nom_de_la_commune": "MONTMAGNY", "libell_d_acheminement": "MONTMAGNY", "code_postal": "95360", "coordonnees_gps": [48.9700090136, 2.34667166791], "code_commune_insee": "95427"}, "geometry": {"type": "Point", "coordinates": [2.34667166791, 48.9700090136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5238c4a2554f83764e89fdf76e97048625a3f299", "fields": {"nom_de_la_commune": "MONTSOULT", "libell_d_acheminement": "MONTSOULT", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95430"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56fa197c77a51db255c9fba0b86dacf54e857b2b", "fields": {"nom_de_la_commune": "NUCOURT", "libell_d_acheminement": "NUCOURT", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95459"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a91e668b93e3fe06e0334cb82bd7aff79c933e", "fields": {"nom_de_la_commune": "OSNY", "libell_d_acheminement": "OSNY", "code_postal": "95520", "coordonnees_gps": [49.0683132357, 2.06358209883], "code_commune_insee": "95476"}, "geometry": {"type": "Point", "coordinates": [2.06358209883, 49.0683132357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71b81c363730793913cea82e12ec5a78cadddfc", "fields": {"nom_de_la_commune": "PISCOP", "libell_d_acheminement": "PISCOP", "code_postal": "95350", "coordonnees_gps": [49.0078529263, 2.34646436487], "code_commune_insee": "95489"}, "geometry": {"type": "Point", "coordinates": [2.34646436487, 49.0078529263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8647da70809db69668a6ec7ca3bfdbd1a4d27b", "fields": {"nom_de_la_commune": "LE PLESSIS LUZARCHES", "libell_d_acheminement": "LE PLESSIS LUZARCHES", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95493"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93210b65cd4174fe48f604e25366a207a8368f7", "fields": {"nom_de_la_commune": "PUISEUX PONTOISE", "libell_d_acheminement": "PUISEUX PONTOISE", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95510"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cc34eb09f7a1c28977b2023b27630e92c1af0d", "fields": {"nom_de_la_commune": "ST CLAIR SUR EPTE", "libell_d_acheminement": "ST CLAIR SUR EPTE", "code_postal": "95770", "coordonnees_gps": [49.1959926831, 1.69814198153], "code_commune_insee": "95541"}, "geometry": {"type": "Point", "coordinates": [1.69814198153, 49.1959926831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c574e38343285aa9d25a20a0e68cf27adbddb6", "fields": {"nom_de_la_commune": "ST CYR EN ARTHIES", "libell_d_acheminement": "ST CYR EN ARTHIES", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95543"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40a1c7ac79b63adc2d9167d8633d5897ccc6396", "fields": {"nom_de_la_commune": "SARCELLES", "libell_d_acheminement": "SARCELLES", "code_postal": "95200", "coordonnees_gps": [48.9904943685, 2.38141962338], "code_commune_insee": "95585"}, "geometry": {"type": "Point", "coordinates": [2.38141962338, 48.9904943685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4268552b70d969499dc154bfc4cb6f21ec96c47c", "fields": {"nom_de_la_commune": "TAVERNY", "libell_d_acheminement": "TAVERNY", "code_postal": "95150", "coordonnees_gps": [49.0267578618, 2.22200242367], "code_commune_insee": "95607"}, "geometry": {"type": "Point", "coordinates": [2.22200242367, 49.0267578618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42e1f060e6dad14a9668d86cc65c088c6837d06", "fields": {"nom_de_la_commune": "THEMERICOURT", "libell_d_acheminement": "THEMERICOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95610"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7148e5ef09d02dd2c1dc0f919d6432c2648832a", "fields": {"nom_de_la_commune": "VIARMES", "libell_d_acheminement": "VIARMES", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95652"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe28c73eabced70d867f6267e575e1698daf0632", "fields": {"nom_de_la_commune": "VIGNY", "libell_d_acheminement": "VIGNY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95658"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e785f0902586e086ce7c03742381d35bdb8b11d1", "fields": {"nom_de_la_commune": "VILLERON", "libell_d_acheminement": "VILLERON", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95675"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d477102e81c89a025bd2ff868eb15b127287f092", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95682"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd4bf09519c8131dfd4ba0ec37dc417a06a8ae3", "fields": {"nom_de_la_commune": "LES ABYMES", "libell_d_acheminement": "LES ABYMES", "code_postal": "97139", "coordonnees_gps": [16.2727902074, -61.5015764802], "code_commune_insee": "97101"}, "geometry": {"type": "Point", "coordinates": [-61.5015764802, 16.2727902074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283bfce62868644f0948d28f36ed95a220980477", "fields": {"nom_de_la_commune": "BAILLIF", "libell_d_acheminement": "BAILLIF", "code_postal": "97123", "coordonnees_gps": [16.0451297679, -61.7190442606], "code_commune_insee": "97104"}, "geometry": {"type": "Point", "coordinates": [-61.7190442606, 16.0451297679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "960c4cda894007057c65a013a1da7fec258f852f", "fields": {"nom_de_la_commune": "BOUILLANTE", "libell_d_acheminement": "BOUILLANTE", "code_postal": "97125", "coordonnees_gps": [16.1436829042, -61.7540534505], "code_commune_insee": "97106"}, "geometry": {"type": "Point", "coordinates": [-61.7540534505, 16.1436829042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e662a7abe9f02c39b7d9cb5f8419074b938ce4cb", "fields": {"code_postal": "97125", "code_commune_insee": "97106", "libell_d_acheminement": "BOUILLANTE", "ligne_5": "PIGEON", "nom_de_la_commune": "BOUILLANTE", "coordonnees_gps": [16.1436829042, -61.7540534505]}, "geometry": {"type": "Point", "coordinates": [-61.7540534505, 16.1436829042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd61ec4ef728f30864603d1c5e94c074ff3acf5a", "fields": {"code_postal": "97130", "code_commune_insee": "97107", "libell_d_acheminement": "CAPESTERRE BELLE EAU", "ligne_5": "BANANIER", "nom_de_la_commune": "CAPESTERRE BELLE EAU", "coordonnees_gps": [16.0552203846, -61.6118226443]}, "geometry": {"type": "Point", "coordinates": [-61.6118226443, 16.0552203846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413074a6fc757c61c3fa8ba9c919b92f2cab4fbe", "fields": {"nom_de_la_commune": "CAPESTERRE DE MARIE GALANTE", "libell_d_acheminement": "CAPESTERRE DE MARIE GALANTE", "code_postal": "97140", "coordonnees_gps": [15.920417662, -61.22974377], "code_commune_insee": "97108"}, "geometry": {"type": "Point", "coordinates": [-61.22974377, 15.920417662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92d77e35adff55dba07481eeefc9e50b6ae13e6", "fields": {"nom_de_la_commune": "LE MOULE", "libell_d_acheminement": "LE MOULE", "code_postal": "97160", "coordonnees_gps": [16.3205467728, -61.3714085616], "code_commune_insee": "97117"}, "geometry": {"type": "Point", "coordinates": [-61.3714085616, 16.3205467728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086719a7ce1102be50bcbb0dc6474422e184a102", "fields": {"nom_de_la_commune": "TERRE DE HAUT", "libell_d_acheminement": "TERRE DE HAUT", "code_postal": "97137", "coordonnees_gps": [15.8655599179, -61.5843984024], "code_commune_insee": "97131"}, "geometry": {"type": "Point", "coordinates": [-61.5843984024, 15.8655599179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5aa3f60b315788a1e923e35932fd5a8f5949231", "fields": {"nom_de_la_commune": "VIEUX HABITANTS", "libell_d_acheminement": "VIEUX HABITANTS", "code_postal": "97119", "coordonnees_gps": [16.0864099698, -61.7260401096], "code_commune_insee": "97134"}, "geometry": {"type": "Point", "coordinates": [-61.7260401096, 16.0864099698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9ebe9f2a90a36d2e4e06ebc4d67c1dad692dae", "fields": {"nom_de_la_commune": "LE CARBET", "libell_d_acheminement": "LE CARBET", "code_postal": "97221", "coordonnees_gps": [14.711361655, -61.164071579], "code_commune_insee": "97204"}, "geometry": {"type": "Point", "coordinates": [-61.164071579, 14.711361655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76c29c224bc904277c51cf93d84c1fa8f2f47c08", "fields": {"nom_de_la_commune": "CASE PILOTE", "libell_d_acheminement": "CASE PILOTE", "code_postal": "97222", "coordonnees_gps": [14.6653538881, -61.1334870347], "code_commune_insee": "97205"}, "geometry": {"type": "Point", "coordinates": [-61.1334870347, 14.6653538881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f66924adc486ad96c75118f0c0cdd4362994ee1", "fields": {"nom_de_la_commune": "DUCOS", "libell_d_acheminement": "DUCOS", "code_postal": "97224", "coordonnees_gps": [14.5779382412, -60.9674685359], "code_commune_insee": "97207"}, "geometry": {"type": "Point", "coordinates": [-60.9674685359, 14.5779382412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22cee189c16221abf5eca90f6885ffce79750fff", "fields": {"nom_de_la_commune": "FORT DE FRANCE", "libell_d_acheminement": "FORT DE FRANCE", "code_postal": "97200", "coordonnees_gps": [14.6410271251, -61.069074331], "code_commune_insee": "97209"}, "geometry": {"type": "Point", "coordinates": [-61.069074331, 14.6410271251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a72d865e91b1dfb8205a3972943f94020dbf0c8", "fields": {"nom_de_la_commune": "GRAND RIVIERE", "libell_d_acheminement": "GRAND RIVIERE", "code_postal": "97218", "coordonnees_gps": [14.8474849535, -61.1459690766], "code_commune_insee": "97211"}, "geometry": {"type": "Point", "coordinates": [-61.1459690766, 14.8474849535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3452bf862985f6b318cc313b27b68b34ac1a29", "fields": {"code_postal": "97231", "code_commune_insee": "97222", "libell_d_acheminement": "LE ROBERT", "ligne_5": "ROBERT VERT PRE", "nom_de_la_commune": "LE ROBERT", "coordonnees_gps": [14.6748993025, -60.9426153066]}, "geometry": {"type": "Point", "coordinates": [-60.9426153066, 14.6748993025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa0bd9295244dbbe39ec23ab26f0b78c9f5b347", "fields": {"nom_de_la_commune": "LE MORNE VERT", "libell_d_acheminement": "LE MORNE VERT", "code_postal": "97226", "coordonnees_gps": [14.7036898199, -61.1351937077], "code_commune_insee": "97233"}, "geometry": {"type": "Point", "coordinates": [-61.1351937077, 14.7036898199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd02927977e10788fb8d519514255e3b821a986", "fields": {"code_postal": "97318", "code_commune_insee": "97306", "libell_d_acheminement": "MANA", "ligne_5": "JAVOUHEY", "nom_de_la_commune": "MANA", "coordonnees_gps": [4.99170472489, -53.6455074841]}, "geometry": {"type": "Point", "coordinates": [-53.6455074841, 4.99170472489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a924b7de5928b6621eac107d50d982fb8f83246c", "fields": {"nom_de_la_commune": "MANA", "libell_d_acheminement": "MANA", "code_postal": "97360", "coordonnees_gps": [4.99170472489, -53.6455074841], "code_commune_insee": "97306"}, "geometry": {"type": "Point", "coordinates": [-53.6455074841, 4.99170472489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04b2efd9bf0d6c8910b9e82741ebd7abb6d91a91", "fields": {"nom_de_la_commune": "REMIRE MONTJOLY", "libell_d_acheminement": "REMIRE MONTJOLY", "code_postal": "97354", "coordonnees_gps": [4.88424605063, -52.2791892893], "code_commune_insee": "97309"}, "geometry": {"type": "Point", "coordinates": [-52.2791892893, 4.88424605063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d9c2565db582991f421cacfacc90d698359827", "fields": {"nom_de_la_commune": "SINNAMARY", "libell_d_acheminement": "SINNAMARY", "code_postal": "97315", "coordonnees_gps": [5.2368142244, -53.007841283], "code_commune_insee": "97312"}, "geometry": {"type": "Point", "coordinates": [-53.007841283, 5.2368142244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea13659473d7a273960818a1850010116a01f7aa", "fields": {"nom_de_la_commune": "MARIPASOULA", "libell_d_acheminement": "MARIPASOULA", "code_postal": "97370", "coordonnees_gps": [2.96739495886, -53.7582708422], "code_commune_insee": "97353"}, "geometry": {"type": "Point", "coordinates": [-53.7582708422, 2.96739495886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d0b87d0f258f3c76007716ca3fc3db821e520c", "fields": {"nom_de_la_commune": "CAMOPI", "libell_d_acheminement": "CAMOPI", "code_postal": "97330", "coordonnees_gps": [2.83805562198, -52.7964984163], "code_commune_insee": "97356"}, "geometry": {"type": "Point", "coordinates": [-52.7964984163, 2.83805562198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96539879b55b712de1624235e86260fe2cc474c3", "fields": {"nom_de_la_commune": "APATOU", "libell_d_acheminement": "APATOU", "code_postal": "97317", "coordonnees_gps": [4.82987513208, -54.2699798308], "code_commune_insee": "97360"}, "geometry": {"type": "Point", "coordinates": [-54.2699798308, 4.82987513208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac396e054d2472d3addc69bb73edb3ef60ace131", "fields": {"nom_de_la_commune": "LES AVIRONS", "libell_d_acheminement": "LES AVIRONS", "code_postal": "97425", "coordonnees_gps": [-21.2099106214, 55.3584773228], "code_commune_insee": "97401"}, "geometry": {"type": "Point", "coordinates": [55.3584773228, -21.2099106214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606e0f282b20a20835b444cf994de1fd8feb29f2", "fields": {"code_postal": "97425", "code_commune_insee": "97401", "libell_d_acheminement": "LES AVIRONS", "ligne_5": "TEVELAVE", "nom_de_la_commune": "LES AVIRONS", "coordonnees_gps": [-21.2099106214, 55.3584773228]}, "geometry": {"type": "Point", "coordinates": [55.3584773228, -21.2099106214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbfde273cb6f339a7a35636475195a1a58ce1d2", "fields": {"nom_de_la_commune": "BRAS PANON", "libell_d_acheminement": "BRAS PANON", "code_postal": "97412", "coordonnees_gps": [-21.0233456262, 55.6196458228], "code_commune_insee": "97402"}, "geometry": {"type": "Point", "coordinates": [55.6196458228, -21.0233456262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4403f7b9cd2877a1745973ba789872f4f37f41d9", "fields": {"code_postal": "97412", "code_commune_insee": "97402", "libell_d_acheminement": "BRAS PANON", "ligne_5": "RIVIERE DU MAT", "nom_de_la_commune": "BRAS PANON", "coordonnees_gps": [-21.0233456262, 55.6196458228]}, "geometry": {"type": "Point", "coordinates": [55.6196458228, -21.0233456262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d31f40d020babe9edfc625d68c46fdf6ca4d891", "fields": {"nom_de_la_commune": "PETITE ILE", "libell_d_acheminement": "PETITE ILE", "code_postal": "97429", "coordonnees_gps": [-21.3396693857, 55.5689349201], "code_commune_insee": "97405"}, "geometry": {"type": "Point", "coordinates": [55.5689349201, -21.3396693857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651349d99ce03570c5848cd32e22f93362c10979", "fields": {"code_postal": "97420", "code_commune_insee": "97407", "libell_d_acheminement": "LE PORT", "ligne_5": "LE PORT MARINE", "nom_de_la_commune": "LE PORT", "coordonnees_gps": [-20.9441300378, 55.3052625029]}, "geometry": {"type": "Point", "coordinates": [55.3052625029, -20.9441300378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648c1e34d552fb0a19ac23c3dab66a6b4a62ed3f", "fields": {"code_postal": "97419", "code_commune_insee": "97408", "libell_d_acheminement": "LA POSSESSION", "ligne_5": "LA RIVIERE DES GALETS", "nom_de_la_commune": "LA POSSESSION", "coordonnees_gps": [-20.99459115, 55.3979867416]}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5fc2d7848cdee2d00722285c4d7e897f276498", "fields": {"code_postal": "97440", "code_commune_insee": "97409", "libell_d_acheminement": "ST ANDRE", "ligne_5": "LA CRESSONNIERE", "nom_de_la_commune": "ST ANDRE", "coordonnees_gps": [-20.9634830614, 55.6422659103]}, "geometry": {"type": "Point", "coordinates": [55.6422659103, -20.9634830614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7eab05deae8153f47a6e895297ec4108f07153", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "97400", "coordonnees_gps": [-20.9331449895, 55.4471125463], "code_commune_insee": "97411"}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca78b952c54412d41718aad22605b5dee62ed87", "fields": {"code_postal": "97480", "code_commune_insee": "97412", "libell_d_acheminement": "ST JOSEPH", "ligne_5": "LES LIANES", "nom_de_la_commune": "ST JOSEPH", "coordonnees_gps": [-21.3061982734, 55.6419643354]}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649ad73c6bac80077151783908f9a07a62d14c00", "fields": {"code_postal": "97480", "code_commune_insee": "97412", "libell_d_acheminement": "ST JOSEPH", "ligne_5": "VINCENDO", "nom_de_la_commune": "ST JOSEPH", "coordonnees_gps": [-21.3061982734, 55.6419643354]}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef01d777d3ec4642811890ad2d9e88387e64fe9", "fields": {"code_postal": "97424", "code_commune_insee": "97413", "libell_d_acheminement": "ST LEU", "ligne_5": "LE PITON ST LEU", "nom_de_la_commune": "ST LEU", "coordonnees_gps": [-21.1657814773, 55.3335929857]}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04283d5eb80ddabcbff27ac06f899e2217e9fb94", "fields": {"code_postal": "97421", "code_commune_insee": "97414", "libell_d_acheminement": "ST LOUIS", "ligne_5": "LA RIVIERE", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [-21.2337866407, 55.4216954351]}, "geometry": {"type": "Point", "coordinates": [55.4216954351, -21.2337866407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410dc1564dced2a8f3d8a6a27ec90940e1a9a486", "fields": {"code_postal": "97435", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "BERNICA", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f3651a51b99d9660385c764b5c3f6d698e4b9b", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "BASSE TERRE", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bddbb519c203e060bf86deac11015b7077700d", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "TERRE SAINTE", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f848d8d3066351c1cc578f4935c29b820b2de4", "fields": {"code_postal": "97432", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "RAVINE DES CABRIS", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0523a221c153cba8813473d545119bd7032c8d", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "97438", "coordonnees_gps": [-20.9470117135, 55.5304413195], "code_commune_insee": "97418"}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3447498fef1507e2abdfea8c09d542c8655efc01", "fields": {"code_postal": "97418", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "TAMPON 17EME KM", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3789f3d25d0dadbee0bb74f01ac7735b15a4a2fa", "fields": {"nom_de_la_commune": "ACOUA", "libell_d_acheminement": "ACOUA", "code_postal": "97630", "coordonnees_gps": [-12.7037438123, 45.0717293646], "code_commune_insee": "97601"}, "geometry": {"type": "Point", "coordinates": [45.0717293646, -12.7037438123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f625d831df40b4202d6734a54d730adf77a6d6", "fields": {"nom_de_la_commune": "BOUENI", "libell_d_acheminement": "BOUENI", "code_postal": "97620", "coordonnees_gps": [-12.9209271264, 45.1312286535], "code_commune_insee": "97604"}, "geometry": {"type": "Point", "coordinates": [45.1312286535, -12.9209271264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166e7504ecd98cb17000b8a2b07afafcf9fb55cc", "fields": {"nom_de_la_commune": "CHIRONGUI", "libell_d_acheminement": "CHIRONGUI", "code_postal": "97620", "coordonnees_gps": [-12.9209271264, 45.1312286535], "code_commune_insee": "97606"}, "geometry": {"type": "Point", "coordinates": [45.1312286535, -12.9209271264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14c076f7e9e4f309d27759884fc51493f3f76b6", "fields": {"nom_de_la_commune": "DEMBENI", "libell_d_acheminement": "DEMBENI", "code_postal": "97660", "coordonnees_gps": [-12.8901616081, 45.1766863463], "code_commune_insee": "97607"}, "geometry": {"type": "Point", "coordinates": [45.1766863463, -12.8901616081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c8aebb67332f161532709532662ea518a87ef0", "fields": {"nom_de_la_commune": "KOUNGOU", "libell_d_acheminement": "KOUNGOU", "code_postal": "97600", "coordonnees_gps": [-12.7725574763, 45.1908759365], "code_commune_insee": "97610"}, "geometry": {"type": "Point", "coordinates": [45.1908759365, -12.7725574763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b88417424de3cea1f1bb3a21afa4fb2ff36a2fab", "fields": {"code_postal": "97605", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "PASSAMAINTI", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.7896538048, 45.1939677956]}, "geometry": {"type": "Point", "coordinates": [45.1939677956, -12.7896538048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2755f040fe8bda0f8421aa577d704a0eef1761", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "97150", "code_commune_insee": "97801"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35a1b6a41f7c86caf9ea28e5418d6458a158fb8", "fields": {"nom_de_la_commune": "ARUTUA", "libell_d_acheminement": "NIUTAHI", "code_postal": "98762", "ligne_5": "ARUTUA", "code_commune_insee": "98713"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778b53213656c1e02d01c0965be3e84819798333", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "ROTOAVA", "code_postal": "98763", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718d33011b35cc4d4a1d11e6f4a3fdff5b589f91", "fields": {"nom_de_la_commune": "FATU HIVA", "libell_d_acheminement": "OMOA", "code_postal": "98740", "ligne_5": "FATU HIVA", "code_commune_insee": "98718"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1fad9a024c24e7ff3523b8c0eaa39a2a8a16214", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "ANGAKAUITAI", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c93f5fef6cb24959427c3b594daf39c6bc0da09", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "AUKENA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5063fd4d3388d847ccfd22f56bc9ea785111fd0c", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MANGAREVA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d700cb62fcb1962ab80c8351d647e94bfaca5960", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MANIUI", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480ed41c1b68298d52f1390a6739722ec1f0bba7", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MORANE", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb3c4a55d948ffacc99cd05546ffa1de9bd8fcb", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "HEREHRETUE", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da85a8968640c9837b1c84390e28f808b6a9cb9", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "MANUHANGI", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664b94d6ad777e83090b18dbaf4904dadddfa470", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "AHUNUI", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2398c7f218d822291d93266e1d10e4acf74a5f", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "TUPAPATI", "code_postal": "98768", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7deff102b65d97b3de1ff0dd1ed96dd6f3d22f5c", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "MOTUTAPU", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dabec755f4582950e0f49cc63b377cb3fac36d", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "TEPEPERU", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f373cf08f07e923a811015a3f4fd27892daffe7", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "HANAPAOA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc64da75034b9ac14ff97d5cf4430cc15f89c00d", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "PUAMAU", "code_postal": "98749", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd73a09643c6cfd73db7b889b78f7033e7ca6bf", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "FATU HUKU", "code_postal": "98796", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dafbde5c44f5786a5d0de8aa6c9b8fead42d2f7e", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "AVERA", "code_postal": "98732", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448f566ad16683087db68173fc11d2dfc089a88c", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HITIANAU", "code_postal": "98789", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e649d892cef6b1f9d430875bda1346988233b75", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "AFAREAITU", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f7afdfa7b7782859b0de5a034096948b20e623", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "MAATEA", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2da0d53c7d7dac573223b647cc7611db6a8c03", "fields": {"nom_de_la_commune": "HOERDT", "libell_d_acheminement": "HOERDT", "code_postal": "67720", "coordonnees_gps": [48.7056122798, 7.80812947302], "code_commune_insee": "67205"}, "geometry": {"type": "Point", "coordinates": [7.80812947302, 48.7056122798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cedf5ecb8816387ff16f1e2abc1d7c5ad4247a4", "fields": {"nom_de_la_commune": "LE HOHWALD", "libell_d_acheminement": "LE HOHWALD", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67210"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c31c589627f04e242d56b219bd8c8324d4fc3baf", "fields": {"nom_de_la_commune": "ICHTRATZHEIM", "libell_d_acheminement": "ICHTRATZHEIM", "code_postal": "67640", "coordonnees_gps": [48.4903746121, 7.67506089743], "code_commune_insee": "67217"}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63a4835115b147b5ec75bed83efb3b28888a172", "fields": {"nom_de_la_commune": "INGWILLER", "libell_d_acheminement": "INGWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67222"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf9a19d69fe71f7a1a89270b0b1ba6435d602bd7", "fields": {"code_postal": "67370", "code_commune_insee": "67228", "libell_d_acheminement": "NEUGARTHEIM ITTLENHEIM", "ligne_5": "NEUGARTHEIM", "nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e9a71ad165647649a9729724b8cd373c6b67be", "fields": {"nom_de_la_commune": "KAUFFENHEIM", "libell_d_acheminement": "KAUFFENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67231"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7765658dece8314efa68aa29f6e13540be30d95", "fields": {"nom_de_la_commune": "KINDWILLER", "libell_d_acheminement": "KINDWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67238"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f059b7fd654f35d0d77c6cb807b0a5031ef2fa", "fields": {"nom_de_la_commune": "KIRCHHEIM", "libell_d_acheminement": "KIRCHHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67240"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "051c57a6366ff98078d5660c6404c5ec16568a92", "fields": {"nom_de_la_commune": "KIRRBERG", "libell_d_acheminement": "KIRRBERG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67241"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f999f92ffe7f62310be2713bcf248e7717fc49f6", "fields": {"nom_de_la_commune": "KRIEGSHEIM", "libell_d_acheminement": "KRIEGSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67250"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112501c1f87f60efb21f732b3daa0dc2ee0ec9ae", "fields": {"nom_de_la_commune": "LANGENSOULTZBACH", "libell_d_acheminement": "LANGENSOULTZBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67259"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0776cfd0f6fb304fe1ff20493e22795a317a8083", "fields": {"nom_de_la_commune": "LICHTENBERG", "libell_d_acheminement": "LICHTENBERG", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67265"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eec85fadcfb1a93da63b6b0c20294df6735ac52", "fields": {"nom_de_la_commune": "LINGOLSHEIM", "libell_d_acheminement": "LINGOLSHEIM", "code_postal": "67380", "coordonnees_gps": [48.555276325, 7.68174533703], "code_commune_insee": "67267"}, "geometry": {"type": "Point", "coordinates": [7.68174533703, 48.555276325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9282411f2a656fa1c44360689c6515f7c1e2fe4e", "fields": {"nom_de_la_commune": "LUTZELHOUSE", "libell_d_acheminement": "LUTZELHOUSE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67276"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35eb74f5569220d2fb3f6c9cb389a828daab5d91", "fields": {"nom_de_la_commune": "MACKENHEIM", "libell_d_acheminement": "MACKENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67277"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebe3ce597b2d887d85a6e39e7821f27e1a32309", "fields": {"nom_de_la_commune": "MARLENHEIM", "libell_d_acheminement": "MARLENHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67282"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d60dd0c23a5d74d46af440e1ca6e9b790b0f752", "fields": {"code_postal": "67150", "code_commune_insee": "67285", "libell_d_acheminement": "MATZENHEIM", "ligne_5": "HAEUSERN", "nom_de_la_commune": "MATZENHEIM", "coordonnees_gps": [48.4189432585, 7.66592042678]}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf59d18c2e14cf50541944e683973df57b22b2e", "fields": {"nom_de_la_commune": "MERKWILLER PECHELBRONN", "libell_d_acheminement": "MERKWILLER PECHELBRONN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67290"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e52cfcddb1ac3e9aa1386edf47bb2462c1626a9", "fields": {"nom_de_la_commune": "MULHAUSEN", "libell_d_acheminement": "MULHAUSEN", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67307"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8f3c81aca67025631bc266b19661d57cae6ccd", "fields": {"nom_de_la_commune": "MUNDOLSHEIM", "libell_d_acheminement": "MUNDOLSHEIM", "code_postal": "67450", "coordonnees_gps": [48.6487396541, 7.70172520923], "code_commune_insee": "67309"}, "geometry": {"type": "Point", "coordinates": [7.70172520923, 48.6487396541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff6708f8cc8c36614d618903dee03e67252cb3e", "fields": {"nom_de_la_commune": "MUTZIG", "libell_d_acheminement": "MUTZIG", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67313"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447b277fba02376421f1ab414aad58750302b338", "fields": {"nom_de_la_commune": "NEUBOIS", "libell_d_acheminement": "NEUBOIS", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67317"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ed7164bc738746a229df5b6a5daaa417d834f1e", "fields": {"nom_de_la_commune": "NIEDERHAUSBERGEN", "libell_d_acheminement": "NIEDERHAUSBERGEN", "code_postal": "67207", "coordonnees_gps": [48.6233985289, 7.70554546045], "code_commune_insee": "67326"}, "geometry": {"type": "Point", "coordinates": [7.70554546045, 48.6233985289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3b79fdf0767a41536be0ccfc6d9579da382c1f", "fields": {"nom_de_la_commune": "NIEDERSCHAEFFOLSHEIM", "libell_d_acheminement": "NIEDERSCHAEFFOLSHEIM", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67331"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e8a616db19f97372bf1c177f87b88f1bbeff56d", "fields": {"nom_de_la_commune": "NORDHEIM", "libell_d_acheminement": "NORDHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67335"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47865717ea9dc92f1854280f661f8e05060256a", "fields": {"nom_de_la_commune": "OBERBRONN", "libell_d_acheminement": "OBERBRONN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67340"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2877eb96b7d29e41135908267fbb91aa996686", "fields": {"nom_de_la_commune": "OBERHASLACH", "libell_d_acheminement": "OBERHASLACH", "code_postal": "67280", "coordonnees_gps": [48.5545295138, 7.30377202795], "code_commune_insee": "67342"}, "geometry": {"type": "Point", "coordinates": [7.30377202795, 48.5545295138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27eb3dc277b7fed5288384b6fc13d51778023464", "fields": {"nom_de_la_commune": "OBERLAUTERBACH", "libell_d_acheminement": "OBERLAUTERBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67346"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00d6b5e28100681d90194d0f12f6b6a1ec58994", "fields": {"code_postal": "67160", "code_commune_insee": "67351", "libell_d_acheminement": "SEEBACH", "ligne_5": "OBERSEEBACH", "nom_de_la_commune": "SEEBACH", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7489c7e100544cd93c74791f978712e3abb704ed", "fields": {"nom_de_la_commune": "ODRATZHEIM", "libell_d_acheminement": "ODRATZHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67354"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe721dcf69ebdd02c015c3401617717b11aff5e8", "fields": {"nom_de_la_commune": "OERMINGEN", "libell_d_acheminement": "OERMINGEN", "code_postal": "67970", "coordonnees_gps": [48.997807573, 7.11958167094], "code_commune_insee": "67355"}, "geometry": {"type": "Point", "coordinates": [7.11958167094, 48.997807573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b709955e37a4973e3828596b03348af3c26da555", "fields": {"nom_de_la_commune": "ORSCHWILLER", "libell_d_acheminement": "ORSCHWILLER", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67362"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4221e32824a5ba069752300b4042f0010cc16fb0", "fields": {"nom_de_la_commune": "OSTWALD", "libell_d_acheminement": "OSTWALD", "code_postal": "67540", "coordonnees_gps": [48.5468855428, 7.70790964356], "code_commune_insee": "67365"}, "geometry": {"type": "Point", "coordinates": [7.70790964356, 48.5468855428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44cf27ce9dd4d034faf1e3746488babf91dfb7ba", "fields": {"nom_de_la_commune": "OTTERSWILLER", "libell_d_acheminement": "OTTERSWILLER", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67367"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d329c56de93c1668a90e0f0cb28d7790bce583fe", "fields": {"nom_de_la_commune": "OTTROTT", "libell_d_acheminement": "OTTROTT", "code_postal": "67530", "coordonnees_gps": [48.4532281253, 7.37169792676], "code_commune_insee": "67368"}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bdf484fb89c2e1c63a64f9833316f72d3825d3", "fields": {"nom_de_la_commune": "PFULGRIESHEIM", "libell_d_acheminement": "PFULGRIESHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67375"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71ef14117111a7336409424222b41bbc4e52490", "fields": {"nom_de_la_commune": "PREUSCHDORF", "libell_d_acheminement": "PREUSCHDORF", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67379"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d7d9a6bae9659cbea33dff33f42ce9dcb147dc", "fields": {"nom_de_la_commune": "PUBERG", "libell_d_acheminement": "PUBERG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67381"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d93bbc2a9b5bf013bb1dc60f2e4d3f6f19ffd9", "fields": {"nom_de_la_commune": "QUATZENHEIM", "libell_d_acheminement": "QUATZENHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67382"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93909afe8f1d214b90a1a46ae9b492fb4571450a", "fields": {"nom_de_la_commune": "RANGEN", "libell_d_acheminement": "RANGEN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67383"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a3c73cbf353d8c329164d94bcb51f342386683", "fields": {"nom_de_la_commune": "REICHSHOFFEN", "libell_d_acheminement": "REICHSHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67388"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c476404a2196f58dab2e67c57f9534ca54501a", "fields": {"nom_de_la_commune": "REICHSTETT", "libell_d_acheminement": "REICHSTETT", "code_postal": "67116", "coordonnees_gps": [48.6480231424, 7.75723377017], "code_commune_insee": "67389"}, "geometry": {"type": "Point", "coordinates": [7.75723377017, 48.6480231424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2cb2bacf6e99a8b45a2de2f8c27d25340420c1", "fields": {"nom_de_la_commune": "REINHARDSMUNSTER", "libell_d_acheminement": "REINHARDSMUNSTER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67391"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82278a341247efcebbcd4e64857cbf1f299a72b5", "fields": {"nom_de_la_commune": "REXINGEN", "libell_d_acheminement": "REXINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67396"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3badec97c2320991c88b54c1fc62ee3f71af9418", "fields": {"nom_de_la_commune": "RICHTOLSHEIM", "libell_d_acheminement": "RICHTOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67398"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbacc5b1c8d1b5efd71b82c7ac4b018045753fd", "fields": {"nom_de_la_commune": "RINGELDORF", "libell_d_acheminement": "RINGELDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67402"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47416d4e4b3b7d81dc574f1ac2a15e94bfdb7358", "fields": {"nom_de_la_commune": "ROTT", "libell_d_acheminement": "ROTT", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67416"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8329b9b74c4a69f64205b7a947cfca30217f9438", "fields": {"nom_de_la_commune": "RUSS", "libell_d_acheminement": "RUSS", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67420"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b93f1ac57140d05538fa1235f94e7c6707843a2d", "fields": {"nom_de_la_commune": "SAESSOLSHEIM", "libell_d_acheminement": "SAESSOLSHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67423"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665be42c1b7844de4295c710f9ff65285812b057", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67429"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c0585871582d5504636667d0d446f72d2bc8b8", "fields": {"code_postal": "67220", "code_commune_insee": "67430", "libell_d_acheminement": "ST PIERRE BOIS", "ligne_5": "HOHWARTH", "nom_de_la_commune": "ST PIERRE BOIS", "coordonnees_gps": [48.3397350207, 7.28306516568]}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88aa7aab49f10e93b269f5715cd552d35dae18ba", "fields": {"nom_de_la_commune": "SAND", "libell_d_acheminement": "SAND", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67433"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62457fd9d24fd145c47d5e3ddb6b22af392c83c", "fields": {"nom_de_la_commune": "SARREWERDEN", "libell_d_acheminement": "SARREWERDEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67435"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c65b0c19c2aeebae0e06b2d8c1ede584aba2883", "fields": {"code_postal": "67700", "code_commune_insee": "67437", "libell_d_acheminement": "SAVERNE", "ligne_5": "ZORNHOF", "nom_de_la_commune": "SAVERNE", "coordonnees_gps": [48.7358014882, 7.35473600973]}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786e62035ab8c4eca136907b1d9e902319d3bd70", "fields": {"nom_de_la_commune": "SCHAFFHOUSE PRES SELTZ", "libell_d_acheminement": "SCHAFFHOUSE PRES SELTZ", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67440"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ee26124006fe784a7572ea611bdb9f9cb14c0f", "fields": {"nom_de_la_commune": "SCHERLENHEIM", "libell_d_acheminement": "SCHERLENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67444"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71b7dc344d9b24ea6e8c788750ab3246a060c1a", "fields": {"code_postal": "67750", "code_commune_insee": "67445", "libell_d_acheminement": "SCHERWILLER", "ligne_5": "KIENTZVILLE", "nom_de_la_commune": "SCHERWILLER", "coordonnees_gps": [48.2953571364, 7.41534118393]}, "geometry": {"type": "Point", "coordinates": [7.41534118393, 48.2953571364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865c75494c5800265937cff03bc52b09c42ac379", "fields": {"nom_de_la_commune": "SCHWENHEIM", "libell_d_acheminement": "SCHWENHEIM", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67459"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dab5d1b22606a23636db9cf086c18e618110305", "fields": {"nom_de_la_commune": "SELESTAT", "libell_d_acheminement": "SELESTAT", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67462"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1988b59cbf3c155bd1a6a08e198686b84c89db56", "fields": {"nom_de_la_commune": "SESSENHEIM", "libell_d_acheminement": "SESSENHEIM", "code_postal": "67770", "coordonnees_gps": [48.786400847, 7.99175996988], "code_commune_insee": "67465"}, "geometry": {"type": "Point", "coordinates": [7.99175996988, 48.786400847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ac0f3a1e7115b4dbd240b7c128c67cb889c7ca", "fields": {"nom_de_la_commune": "SIEGEN", "libell_d_acheminement": "SIEGEN", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67466"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd6a5658fe6fd267f68bf8fe837f5b6cce8694a0", "fields": {"nom_de_la_commune": "SILTZHEIM", "libell_d_acheminement": "SILTZHEIM", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67468"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edb18cb43d0fc18f39cd5418b5620a4469ced3aa", "fields": {"nom_de_la_commune": "STEINSELTZ", "libell_d_acheminement": "STEINSELTZ", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67479"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "342568070c62a5921470abebd741b3be1b858d70", "fields": {"nom_de_la_commune": "STILL", "libell_d_acheminement": "STILL", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67480"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b354a05e3094890a0b671c816fee1df16e3cae", "fields": {"nom_de_la_commune": "THANVILLE", "libell_d_acheminement": "THANVILLE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67490"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ed7b6243c4577791ff79cd31373e771c112563", "fields": {"nom_de_la_commune": "TIEFFENBACH", "libell_d_acheminement": "TIEFFENBACH", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67491"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b340cac25bbfee5d2c246bdb4fda3b6465ab8a8b", "fields": {"nom_de_la_commune": "TRIEMBACH AU VAL", "libell_d_acheminement": "TRIEMBACH AU VAL", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67493"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0605e7a5a6b078146a91484b18e257f014066eb3", "fields": {"nom_de_la_commune": "UHRWILLER", "libell_d_acheminement": "UHRWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67498"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925edd10d80ac3d3a6afa19e90d8986f42c3cce6", "fields": {"nom_de_la_commune": "UTTENHOFFEN", "libell_d_acheminement": "UTTENHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67502"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275188fd53c5f48bf158b44f86027c2522ad1733", "fields": {"nom_de_la_commune": "UTTWILLER", "libell_d_acheminement": "UTTWILLER", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67503"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb1a7567cbd40c5e0d35a411d6d8340c1c9a90a", "fields": {"nom_de_la_commune": "VILLE", "libell_d_acheminement": "VILLE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67507"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2ee14eb79645ca67eb11a4e7bfc125a7ab0d17", "fields": {"nom_de_la_commune": "WALDERSBACH", "libell_d_acheminement": "WALDERSBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67513"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb964ae76bbf77c7504698e076e60558efac94f6", "fields": {"nom_de_la_commune": "WEISLINGEN", "libell_d_acheminement": "WEISLINGEN", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67522"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac4362e8cb058ba0b1510d36179ef1416d27e51", "fields": {"nom_de_la_commune": "WEITBRUCH", "libell_d_acheminement": "WEITBRUCH", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67523"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2a3eda7c2493d3b650e25d8638b58dcbe8dbf4", "fields": {"nom_de_la_commune": "WINTZENHEIM KOCHERSBERG", "libell_d_acheminement": "WINTZENHEIM KOCHERSBERG", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67542"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d30dd01fba9bbefea5d08d526ea5ff13333817", "fields": {"code_postal": "20118", "code_commune_insee": "2A090", "libell_d_acheminement": "COGGIA", "ligne_5": "SAGONE", "nom_de_la_commune": "COGGIA", "coordonnees_gps": [42.1361535255, 8.73174812561]}, "geometry": {"type": "Point", "coordinates": [8.73174812561, 42.1361535255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d4129d59769b672b330e8583d32000d45d32d9", "fields": {"nom_de_la_commune": "COGNOCOLI MONTICCHI", "libell_d_acheminement": "COGNOCOLI MONTICCHI", "code_postal": "20123", "coordonnees_gps": [41.7989575666, 8.87694887286], "code_commune_insee": "2A091"}, "geometry": {"type": "Point", "coordinates": [8.87694887286, 41.7989575666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0625dbc497ad4f03d6573f5d6fc3ed484c4be427", "fields": {"nom_de_la_commune": "CUTTOLI CORTICCHIATO", "libell_d_acheminement": "CUTTOLI CORTICCHIATO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A103"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b715fb5fc98ea0f6e2f331532d0afed031a46a", "fields": {"nom_de_la_commune": "FOZZANO", "libell_d_acheminement": "FOZZANO", "code_postal": "20143", "coordonnees_gps": [41.708872053, 8.99627693971], "code_commune_insee": "2A118"}, "geometry": {"type": "Point", "coordinates": [8.99627693971, 41.708872053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca2e43150c3e28f971daba5ee3910d7aee22941", "fields": {"nom_de_la_commune": "MOCA CROCE", "libell_d_acheminement": "MOCA CROCE", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A160"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6726343885412229f3bd3b2967b48cc7b7e5c4b6", "fields": {"nom_de_la_commune": "OSANI", "libell_d_acheminement": "OSANI", "code_postal": "20147", "coordonnees_gps": [42.3264086022, 8.67199581743], "code_commune_insee": "2A197"}, "geometry": {"type": "Point", "coordinates": [8.67199581743, 42.3264086022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff2a8d7ccd00fe4ad4cd3204663c917e69dcfc1", "fields": {"nom_de_la_commune": "PARTINELLO", "libell_d_acheminement": "PARTINELLO", "code_postal": "20147", "coordonnees_gps": [42.3264086022, 8.67199581743], "code_commune_insee": "2A203"}, "geometry": {"type": "Point", "coordinates": [8.67199581743, 42.3264086022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138381be27664a59b9cd0ad6ea28e68eded2d553", "fields": {"nom_de_la_commune": "PERI", "libell_d_acheminement": "PERI", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A209"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081ab9887c2f1d9c90c887bfbb1f2112ad6b473a", "fields": {"nom_de_la_commune": "PILA CANALE", "libell_d_acheminement": "PILA CANALE", "code_postal": "20123", "coordonnees_gps": [41.7989575666, 8.87694887286], "code_commune_insee": "2A232"}, "geometry": {"type": "Point", "coordinates": [8.87694887286, 41.7989575666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e2ae483251135741d6a897408a5d7b6e33faf91", "fields": {"nom_de_la_commune": "PORTO VECCHIO", "libell_d_acheminement": "PORTO VECCHIO", "code_postal": "20137", "coordonnees_gps": [41.6028867799, 9.2627396032], "code_commune_insee": "2A247"}, "geometry": {"type": "Point", "coordinates": [9.2627396032, 41.6028867799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d53f229a7020dc97c068078b46ff66935a85052", "fields": {"nom_de_la_commune": "SARI SOLENZARA", "libell_d_acheminement": "SARI SOLENZARA", "code_postal": "20145", "coordonnees_gps": [41.813622565, 9.35248683062], "code_commune_insee": "2A269"}, "geometry": {"type": "Point", "coordinates": [9.35248683062, 41.813622565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6667189b9c81da6bce5a7b312fbbbb0072e1c7", "fields": {"nom_de_la_commune": "SARTENE", "libell_d_acheminement": "SARTENE", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A272"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd1f6f942b98d5edd767c17a257f06f0f202c57", "fields": {"nom_de_la_commune": "SERRA DI FERRO", "libell_d_acheminement": "SERRA DI FERRO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A276"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3f56b5b12f9ab14fd28ba92eab83585ad46abf", "fields": {"nom_de_la_commune": "SERRA DI SCOPAMENE", "libell_d_acheminement": "SERRA DI SCOPAMENE", "code_postal": "20127", "coordonnees_gps": [41.7781165339, 9.10923214631], "code_commune_insee": "2A278"}, "geometry": {"type": "Point", "coordinates": [9.10923214631, 41.7781165339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb93cbad989f1a8605e0a28b2d431cbdc44e0db", "fields": {"nom_de_la_commune": "STE LUCIE DE TALLANO", "libell_d_acheminement": "STE LUCIE DE TALLANO", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A308"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b55cbd4eb76a5cabfd3d6734a891a2dd6ce6cc", "fields": {"nom_de_la_commune": "ZEVACO", "libell_d_acheminement": "ZEVACO", "code_postal": "20173", "coordonnees_gps": [41.8873667823, 9.0452386996], "code_commune_insee": "2A358"}, "geometry": {"type": "Point", "coordinates": [9.0452386996, 41.8873667823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8194ec82c6588a8d13ddb11c4543d4d6cff73d45", "fields": {"code_postal": "20144", "code_commune_insee": "2A362", "libell_d_acheminement": "ZONZA", "ligne_5": "STE LUCIE DE PORTO VECCHIO", "nom_de_la_commune": "ZONZA", "coordonnees_gps": [41.7212935715, 9.26676147812]}, "geometry": {"type": "Point", "coordinates": [9.26676147812, 41.7212935715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc923fb0d23f409a2cc914c944388477284d9a15", "fields": {"nom_de_la_commune": "ZOZA", "libell_d_acheminement": "ZOZA", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A363"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e0735d78026736daa896dd730a79e993f67e70", "fields": {"nom_de_la_commune": "AGHIONE", "libell_d_acheminement": "AGHIONE", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B002"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65074f745e9e04b8bc01593fd2dfc10794046da4", "fields": {"nom_de_la_commune": "AITI", "libell_d_acheminement": "AITI", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B003"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f8bae43b218f53eb7dee689c7023b1b9705972", "fields": {"code_postal": "20270", "code_commune_insee": "2B009", "libell_d_acheminement": "ALERIA", "ligne_5": "VACAJA", "nom_de_la_commune": "ALERIA", "coordonnees_gps": [42.1585517957, 9.43977225577]}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10f3b80257dc31713336fd53c1ae059d5468388", "fields": {"nom_de_la_commune": "ALGAJOLA", "libell_d_acheminement": "ALGAJOLA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B010"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aecbb81a6d9aa77d20ab78151ad3879bceca0db", "fields": {"nom_de_la_commune": "AMPRIANI", "libell_d_acheminement": "AMPRIANI", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B015"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246274c0ec28e968e80c28ddf343d0211f2ba994", "fields": {"nom_de_la_commune": "BARRETTALI", "libell_d_acheminement": "BARRETTALI", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B030"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84605e4ab36cea55cb786e7eab928f8bbad45a5b", "fields": {"code_postal": "20200", "code_commune_insee": "2B033", "libell_d_acheminement": "BASTIA", "ligne_5": "CARDO", "nom_de_la_commune": "BASTIA", "coordonnees_gps": [42.7169845542, 9.42659304409]}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41184c42ae3df2ef00e4d1c540a81c29ab724735", "fields": {"nom_de_la_commune": "BASTIA", "libell_d_acheminement": "BASTIA", "code_postal": "20600", "coordonnees_gps": [42.6694587934, 9.42115967008], "code_commune_insee": "2B033"}, "geometry": {"type": "Point", "coordinates": [9.42115967008, 42.6694587934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde7f636178204d92617d3f6ef7766be99fecf65", "fields": {"nom_de_la_commune": "BIGUGLIA", "libell_d_acheminement": "BIGUGLIA", "code_postal": "20620", "coordonnees_gps": [42.6164230367, 9.44067026759], "code_commune_insee": "2B037"}, "geometry": {"type": "Point", "coordinates": [9.44067026759, 42.6164230367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b58c8914bddb12d393c200ab5eb2bef073c7dbe", "fields": {"nom_de_la_commune": "CAMPI", "libell_d_acheminement": "CAMPI", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B053"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc4914bc2f5959eb79dccefed4c109c5f9662c2", "fields": {"nom_de_la_commune": "CANALE DI VERDE", "libell_d_acheminement": "CANALE DI VERDE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B057"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6c050e0ebaf0951312dbbe39a1e3cbc77cd4ca", "fields": {"nom_de_la_commune": "CASALTA", "libell_d_acheminement": "CASALTA", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B072"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ad6c00e8940fadad281a8c88093ac2c0937b5e", "fields": {"nom_de_la_commune": "CASTIFAO", "libell_d_acheminement": "CASTIFAO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B080"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36794490f7f26b9599389aa57f7b9cb49394277", "fields": {"nom_de_la_commune": "CORTE", "libell_d_acheminement": "CORTE", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B096"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf8a74a4cfa5eb444afe991ded43674b40c790a", "fields": {"nom_de_la_commune": "COSTA", "libell_d_acheminement": "COSTA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B097"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9605f9d2233be1727b8bd3f03f304b61f2296f", "fields": {"nom_de_la_commune": "ERONE", "libell_d_acheminement": "ERONE", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B106"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1311b971960df9081eae65b6013230f5bd455455", "fields": {"nom_de_la_commune": "FELICETO", "libell_d_acheminement": "FELICETO", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B112"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24b8e3b3c6d7ac76f80095fef9f5a20018dbe46", "fields": {"nom_de_la_commune": "GALERIA", "libell_d_acheminement": "GALERIA", "code_postal": "20245", "coordonnees_gps": [42.3904066097, 8.75959311785], "code_commune_insee": "2B121"}, "geometry": {"type": "Point", "coordinates": [8.75959311785, 42.3904066097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d5ca9ea8dec783637695c924578829b2a49d63", "fields": {"nom_de_la_commune": "GHISONACCIA", "libell_d_acheminement": "GHISONACCIA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B123"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0983f5709a82334a53a3dfaf25d2e6e06d2b369", "fields": {"nom_de_la_commune": "GIOCATOJO", "libell_d_acheminement": "GIOCATOJO", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B125"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0f0b23b0058ff328fecaf43c520c8f789a1c7d", "fields": {"nom_de_la_commune": "GIUNCAGGIO", "libell_d_acheminement": "GIUNCAGGIO", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B126"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83727d9b1685d96fdc7454261602197c9ed1fcf0", "fields": {"nom_de_la_commune": "LAMA", "libell_d_acheminement": "LAMA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B136"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2033db17731dc728b52051c116db77ac63291888", "fields": {"nom_de_la_commune": "LAVATOGGIO", "libell_d_acheminement": "LAVATOGGIO", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B138"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0357aeaa33b32733c0d9008dc5b46c8055fa112", "fields": {"nom_de_la_commune": "LUGO DI NAZZA", "libell_d_acheminement": "LUGO DI NAZZA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B149"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ba60df986ff907e744fe6fb2db927cee6763eb", "fields": {"nom_de_la_commune": "LUMIO", "libell_d_acheminement": "LUMIO", "code_postal": "20260", "coordonnees_gps": [42.4957918886, 8.79984001369], "code_commune_insee": "2B150"}, "geometry": {"type": "Point", "coordinates": [8.79984001369, 42.4957918886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ea78ab7d86cbf2e49871ac36925e471b28476f", "fields": {"nom_de_la_commune": "MERIA", "libell_d_acheminement": "MERIA", "code_postal": "20287", "coordonnees_gps": [42.9199985986, 9.43679652521], "code_commune_insee": "2B159"}, "geometry": {"type": "Point", "coordinates": [9.43679652521, 42.9199985986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a1dcaa076b1609854dbe3f95ac43159ea0a131", "fields": {"nom_de_la_commune": "MOLTIFAO", "libell_d_acheminement": "MOLTIFAO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B162"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc29e0b862f719234ca9ad76ed9d43a337f87eba", "fields": {"code_postal": "20214", "code_commune_insee": "2B167", "libell_d_acheminement": "MONTEGROSSO", "ligne_5": "MONTEMAGGIORE", "nom_de_la_commune": "MONTEGROSSO", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a060ddd7a568642a1eb1a7d7fd58514db0edf7c3", "fields": {"nom_de_la_commune": "MOROSAGLIA", "libell_d_acheminement": "MOROSAGLIA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B169"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16fbeeff24ecfae114b8cdde5dc87e030c3f728", "fields": {"nom_de_la_commune": "MURATO", "libell_d_acheminement": "MURATO", "code_postal": "20239", "coordonnees_gps": [42.5744706695, 9.35222332831], "code_commune_insee": "2B172"}, "geometry": {"type": "Point", "coordinates": [9.35222332831, 42.5744706695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9769ac33393dce6f1a1a29bdb9d404b6278d0d", "fields": {"nom_de_la_commune": "NOCETA", "libell_d_acheminement": "NOCETA", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B177"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84eebdbb29d8283b5459b06906faba94aaf9d7ec", "fields": {"nom_de_la_commune": "OMESSA", "libell_d_acheminement": "OMESSA", "code_postal": "20236", "coordonnees_gps": [42.3752519871, 9.15942302041], "code_commune_insee": "2B193"}, "geometry": {"type": "Point", "coordinates": [9.15942302041, 42.3752519871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a31df0b9bb5bfb8a68b75577652b816df79cf302", "fields": {"nom_de_la_commune": "PANCHERACCIA", "libell_d_acheminement": "PANCHERACCIA", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B201"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5d90c27bb8c8f747b97d789e9179b003e39f7d", "fields": {"nom_de_la_commune": "PIAZZALI", "libell_d_acheminement": "PIAZZALI", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B216"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d593f4200bbf73f718aadb6d20b06836778a4a", "fields": {"nom_de_la_commune": "PIAZZOLE", "libell_d_acheminement": "PIAZZOLE", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B217"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a826038ce9742bbc250144a74027e7b7cb7fa277", "fields": {"nom_de_la_commune": "PIETRICAGGIO", "libell_d_acheminement": "PIETRICAGGIO", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B227"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556da33f35c71d3ebedd63654468e9a3935419b5", "fields": {"nom_de_la_commune": "PIETROSO", "libell_d_acheminement": "PIETROSO", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B229"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab73548ad46e3f201d5a39e57bd28fa93418cd9c", "fields": {"nom_de_la_commune": "PIOGGIOLA", "libell_d_acheminement": "PIOGGIOLA", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B235"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13eb02d7ba2a3aa71a7f1534481135532167a01a", "fields": {"nom_de_la_commune": "POGGIO MEZZANA", "libell_d_acheminement": "POGGIO MEZZANA", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B242"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9b5f5ed53d8601b3f77571d99ef6d8c4374578", "fields": {"nom_de_la_commune": "PRUNELLI DI FIUMORBO", "libell_d_acheminement": "PRUNELLI DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B251"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d96c797201f951adbff75c6b91c4bd856d72f9b", "fields": {"code_postal": "20243", "code_commune_insee": "2B251", "libell_d_acheminement": "PRUNELLI DI FIUMORBO", "ligne_5": "MORTA", "nom_de_la_commune": "PRUNELLI DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79d10619b206b1156d2e15ffb842df555ba4b47", "fields": {"nom_de_la_commune": "RAPALE", "libell_d_acheminement": "RAPALE", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B257"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8afd5363f27fa7f5f5ec1ebcfb1f7e68d5f599", "fields": {"nom_de_la_commune": "RUTALI", "libell_d_acheminement": "RUTALI", "code_postal": "20239", "coordonnees_gps": [42.5744706695, 9.35222332831], "code_commune_insee": "2B265"}, "geometry": {"type": "Point", "coordinates": [9.35222332831, 42.5744706695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b9fbdf40b66b3fd1b0e8a9dd590a78bea9cf44", "fields": {"nom_de_la_commune": "SCATA", "libell_d_acheminement": "SCATA", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B273"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee961ca2003198559fcfa13dfc512570c54e3b64", "fields": {"nom_de_la_commune": "SERMANO", "libell_d_acheminement": "SERMANO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B275"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519a395493449b292e17c992279bcb9a71bb044e", "fields": {"nom_de_la_commune": "SERRA DI FIUMORBO", "libell_d_acheminement": "SERRA DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B277"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3941cd03a6157244eb7910a23bbc0570503c1ca2", "fields": {"nom_de_la_commune": "SISCO", "libell_d_acheminement": "SISCO", "code_postal": "20233", "coordonnees_gps": [42.8294989749, 9.4407054094], "code_commune_insee": "2B281"}, "geometry": {"type": "Point", "coordinates": [9.4407054094, 42.8294989749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5660262631b6fcc6ca0f540a2fd7a2da8733266b", "fields": {"nom_de_la_commune": "SOVERIA", "libell_d_acheminement": "SOVERIA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B289"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70922a2074e51ac6168cd0bd3db11f312a84b59d", "fields": {"nom_de_la_commune": "SANT ANTONINO", "libell_d_acheminement": "SANT ANTONINO", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B296"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0941143ab6ee2ae12c3bd3683ff9b296c590469", "fields": {"nom_de_la_commune": "ST FLORENT", "libell_d_acheminement": "ST FLORENT", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B298"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f271c14763b5b1d5f884a6992ab123a8fbfb4c01", "fields": {"nom_de_la_commune": "SAN GIULIANO", "libell_d_acheminement": "SAN GIULIANO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B303"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2dcae0af98b14d1213304f3f6a6d70df51fa309", "fields": {"nom_de_la_commune": "SANTA REPARATA DI MORIANI", "libell_d_acheminement": "SANTA REPARATA DI MORIANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B317"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199171c76f8bdd200681eb1407292198cb3de430", "fields": {"nom_de_la_commune": "VALLICA", "libell_d_acheminement": "VALLICA", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B339"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b407c4553a66dab31dc2224766717f3cce5833fc", "fields": {"code_postal": "20290", "code_commune_insee": "2B355", "libell_d_acheminement": "VOLPAJOLA", "ligne_5": "BARCHETTA", "nom_de_la_commune": "VOLPAJOLA", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9256ebf6b7c9f80da876d7619d90174670272a", "fields": {"nom_de_la_commune": "ZALANA", "libell_d_acheminement": "ZALANA", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B356"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420cd7ce031ceb168382c613cc77d9b7f1a66a2f", "fields": {"nom_de_la_commune": "ST BRICE DE LANDELLES", "libell_d_acheminement": "ST BRICE DE LANDELLES", "code_postal": "50730", "coordonnees_gps": [48.5520322078, -1.12375344809], "code_commune_insee": "50452"}, "geometry": {"type": "Point", "coordinates": [-1.12375344809, 48.5520322078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5eac08f6131da2088f9e991eac6102a74949429", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50457"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a01b2f218a20f72444f3b0d71eabe7129e7c298", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50461"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40f462b0366e042f585a1af62f62faba6167f22", "fields": {"nom_de_la_commune": "ST CYR DU BAILLEUL", "libell_d_acheminement": "ST CYR DU BAILLEUL", "code_postal": "50720", "coordonnees_gps": [48.5983926972, -0.815007592926], "code_commune_insee": "50462"}, "geometry": {"type": "Point", "coordinates": [-0.815007592926, 48.5983926972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374a7afda90ac0bd0ccb5cd9ae29d274dc90ac79", "fields": {"nom_de_la_commune": "ST EBREMOND DE BONFOSSE", "libell_d_acheminement": "ST EBREMOND DE BONFOSSE", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50465"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6ffcbaa63648c2f84edb869e9d860f83055c31", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50469"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa26fa86aa618bbfcbad1264704e60d73e4b790", "fields": {"nom_de_la_commune": "ST GEORGES DE ROUELLEY", "libell_d_acheminement": "ST GEORGES DE ROUELLEY", "code_postal": "50720", "coordonnees_gps": [48.5983926972, -0.815007592926], "code_commune_insee": "50474"}, "geometry": {"type": "Point", "coordinates": [-0.815007592926, 48.5983926972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2087c05ea9c21d3866743f4ad45fb3529450128", "fields": {"nom_de_la_commune": "ST GERMAIN DES VAUX", "libell_d_acheminement": "ST GERMAIN DES VAUX", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50477"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743418540c6782633d6249d2fcfed91b4a512982", "fields": {"nom_de_la_commune": "ST GERMAIN SUR AY", "libell_d_acheminement": "ST GERMAIN SUR AY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50481"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55a3aebc79cd14d9b83a49c86f7fc93a2f2799c", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "50180", "coordonnees_gps": [49.1138081989, -1.15891000484], "code_commune_insee": "50483"}, "geometry": {"type": "Point", "coordinates": [-1.15891000484, 49.1138081989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf403729eddf76f270a42619e992b9f2a3d2bb9c", "fields": {"nom_de_la_commune": "ST JAMES", "libell_d_acheminement": "ST JAMES", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50487"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa94cf4108ae7b7239ddc25111b37214935b12cb", "fields": {"nom_de_la_commune": "ST JEAN DE LA HAIZE", "libell_d_acheminement": "ST JEAN DE LA HAIZE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50489"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c490f11df28c3bbea5ea2a1afc7e70e5167050c", "fields": {"nom_de_la_commune": "ST JEAN DE LA RIVIERE", "libell_d_acheminement": "ST JEAN DE LA RIVIERE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50490"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c9a000758fc244bed5082a262f236c71de0385", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "VIDOUVILLE", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5793fc772e9f5657452f00137bd4d3ae2c021f6", "fields": {"nom_de_la_commune": "ST JEAN DES CHAMPS", "libell_d_acheminement": "ST JEAN DES CHAMPS", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50493"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1897dc8cb497343437ae9ea82a9cdfceed9a4860", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50505"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7dd106dfef571edf4e2064407311679447208a6", "fields": {"nom_de_la_commune": "ST MARTIN DE BONFOSSE", "libell_d_acheminement": "ST MARTIN DE BONFOSSE", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50512"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7d679ce5b31f9e21f3887230c740c534fa115b3", "fields": {"nom_de_la_commune": "CHAULIEU", "libell_d_acheminement": "CHAULIEU", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50514"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7814d24892935a31cb84d69c26f9e54bb0ddb165", "fields": {"nom_de_la_commune": "ST MARTIN LE BOUILLANT", "libell_d_acheminement": "ST MARTIN LE BOUILLANT", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50518"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e9f6ecbd889aaf09c885303d4f1feb6ff62656", "fields": {"nom_de_la_commune": "ST MAURICE EN COTENTIN", "libell_d_acheminement": "ST MAURICE EN COTENTIN", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50522"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825db6683bc81a5a7a338d6e90b0b34bdf6cb662", "fields": {"nom_de_la_commune": "STE MERE EGLISE", "libell_d_acheminement": "STE MERE EGLISE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50523"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148d14188cd3403281841a00358eb443a047e8bd", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "BEUZEVILLE AU PLAIN", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01695412e29c21304b613b556818a511e068a9bb", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "CHEF DU PONT", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcad06d868b2af15a7ab89e397da8a9d88ad0116", "fields": {"nom_de_la_commune": "ST PIERRE EGLISE", "libell_d_acheminement": "ST PIERRE EGLISE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50539"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe53a666530c86ff0df30626388ff6316a05a479", "fields": {"nom_de_la_commune": "ST SAUVEUR LA POMMERAYE", "libell_d_acheminement": "ST SAUVEUR LA POMMERAYE", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50549"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a5f40a3f8aebfe702d2e283b9048302119b8d3", "fields": {"nom_de_la_commune": "STE SUZANNE SUR VIRE", "libell_d_acheminement": "STE SUZANNE SUR VIRE", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50556"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f34b2f12829895f9b9218a19178b4e9f1349a2", "fields": {"code_postal": "50550", "code_commune_insee": "50562", "libell_d_acheminement": "ST VAAST LA HOUGUE", "ligne_5": "ILE TATIHOU", "nom_de_la_commune": "ST VAAST LA HOUGUE", "coordonnees_gps": [49.5998454115, -1.27309328299]}, "geometry": {"type": "Point", "coordinates": [-1.27309328299, 49.5998454115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12d93efe9f29fe2442ffd7d7d33dd60f83a7dc3", "fields": {"nom_de_la_commune": "SEBEVILLE", "libell_d_acheminement": "SEBEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50571"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f92613b1559d757fc417a1222746cff7c40e5f", "fields": {"nom_de_la_commune": "SENOVILLE", "libell_d_acheminement": "SENOVILLE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50572"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692704ac4369f3fed97b4057289ef3c9ba94f4fd", "fields": {"nom_de_la_commune": "TANIS", "libell_d_acheminement": "TANIS", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50589"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be31e3cd40699ad3cf9a810b719f8b8136ab1d1", "fields": {"nom_de_la_commune": "LE TANU", "libell_d_acheminement": "LE TANU", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50590"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddf8c30efc0457895c08b30b88f06358419d3ef", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "HEUSSE", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a273a96d7e6873807953833d8dff54c27351ad", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "STE MARIE DU BOIS", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b45969f2bde48b403cf9290127fc72d4f1c3106", "fields": {"code_postal": "50420", "code_commune_insee": "50592", "libell_d_acheminement": "TESSY BOCAGE", "ligne_5": "FERVACHES", "nom_de_la_commune": "TESSY BOCAGE", "coordonnees_gps": [48.9843046983, -1.06508907903]}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04f1bead8012e1a24e1716e62fa77e976e8945e", "fields": {"nom_de_la_commune": "TORIGNY LES VILLES", "libell_d_acheminement": "TORIGNY LES VILLES", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50601"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e421dae9eb109e8b937ae238248a499eb6d4dd5a", "fields": {"nom_de_la_commune": "TURQUEVILLE", "libell_d_acheminement": "TURQUEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50609"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c83e3f9d5df221f9e90f1ad3b8ca0b0a2140796", "fields": {"nom_de_la_commune": "VALOGNES", "libell_d_acheminement": "VALOGNES", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50615"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07259017432747f875601c182c34e828ab61b8f5", "fields": {"nom_de_la_commune": "VAUVILLE", "libell_d_acheminement": "VAUVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50623"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46db5ef74c1cfbc44f7248e746fb42a9bc3c0197", "fields": {"nom_de_la_commune": "LA VENDELEE", "libell_d_acheminement": "LA VENDELEE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50624"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e44ca2be82e65a2bf52dda7c6104f8508cd688d", "fields": {"nom_de_la_commune": "VERGONCEY", "libell_d_acheminement": "VERGONCEY", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50627"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "772203f6da317d929316ee0f8365e36997035311", "fields": {"nom_de_la_commune": "VESLY", "libell_d_acheminement": "VESLY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50629"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44e543e24c13dc5f700f5db01f7d511c0c5c8d6", "fields": {"nom_de_la_commune": "VILLEDIEU LES POELES ROUFFIGNY", "libell_d_acheminement": "VILLEDIEU LES POELES ROUFFIGNY", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50639"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3816400d581facee4de8fe902f727fcd79dee5", "fields": {"nom_de_la_commune": "VIRANDEVILLE", "libell_d_acheminement": "VIRANDEVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50643"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2914515ea263e09917aeaac48263e404da5d3e6", "fields": {"nom_de_la_commune": "ALLEMANCHE LAUNAY ET SOYER", "libell_d_acheminement": "ALLEMANCHE LAUNAY ET SOYER", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51004"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4575d7ba6d9c079845e08c0a89a60aa94bc8884", "fields": {"nom_de_la_commune": "ANGLUZELLES ET COURCELLES", "libell_d_acheminement": "ANGLUZELLES ET COURCELLES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51010"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad66b6fefa637d5ac9d03a7dd60a9c7992506f2", "fields": {"nom_de_la_commune": "ARGERS", "libell_d_acheminement": "ARGERS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51015"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0390dae1a449939b6799a60971e05caf9135a0b8", "fields": {"nom_de_la_commune": "ARRIGNY", "libell_d_acheminement": "ARRIGNY", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51016"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30c27a4d660225570d5c7cdf12db81b93e76826", "fields": {"code_postal": "51160", "code_commune_insee": "51030", "libell_d_acheminement": "AY CHAMPAGNE", "ligne_5": "MAREUIL SUR AY", "nom_de_la_commune": "AY CHAMPAGNE", "coordonnees_gps": [49.092104642, 4.00815229027]}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c720bc6bb06b04e8bdbf8f113ede9be352f0e0f6", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51032"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a93bd2a099c90d28b504fd7b9d6035074f7b5f", "fields": {"nom_de_la_commune": "BASLIEUX LES FISMES", "libell_d_acheminement": "BASLIEUX LES FISMES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51037"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59e06e096119ca68f0991cca173252457d16215", "fields": {"nom_de_la_commune": "BASSU", "libell_d_acheminement": "BASSU", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51039"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26829a08560993bd5335ffa29ea5972901f9ba7", "fields": {"nom_de_la_commune": "BAUDEMENT", "libell_d_acheminement": "BAUDEMENT", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51041"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea73a61ea9a8d871caca42d92b35f68c0354996", "fields": {"nom_de_la_commune": "BAZANCOURT", "libell_d_acheminement": "BAZANCOURT", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51043"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3548326daed686258dc785fb8873ee66509572e", "fields": {"nom_de_la_commune": "BEAUNAY", "libell_d_acheminement": "BEAUNAY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51045"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6eeb90c8bf910b3653626cbeeac019c6daa07c0", "fields": {"nom_de_la_commune": "BELVAL SOUS CHATILLON", "libell_d_acheminement": "BELVAL SOUS CHATILLON", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51048"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4884f4c981a704c4dc4dd12980003a37fd833064", "fields": {"nom_de_la_commune": "BERGERES LES VERTUS", "libell_d_acheminement": "BERGERES LES VERTUS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51049"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c663f4ad2923a503327ed1f0f8f1f1fb4b8669f0", "fields": {"nom_de_la_commune": "BERZIEUX", "libell_d_acheminement": "BERZIEUX", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51053"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7078b10638b3a42ed64723b380685a5bb105c7e2", "fields": {"nom_de_la_commune": "BETHON", "libell_d_acheminement": "BETHON", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51056"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b14a8bcd30f29c0e6399d55b6f8f3ae42ef891a", "fields": {"nom_de_la_commune": "BEZANNES", "libell_d_acheminement": "BEZANNES", "code_postal": "51430", "coordonnees_gps": [49.2303011179, 3.98992981852], "code_commune_insee": "51058"}, "geometry": {"type": "Point", "coordinates": [3.98992981852, 49.2303011179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bea4f3dfd83359c82818d0d9614a5a7d3ed30d", "fields": {"nom_de_la_commune": "BIGNICOURT SUR SAULX", "libell_d_acheminement": "BIGNICOURT SUR SAULX", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51060"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6936c1463ec6571cea32412048a1ac7fe0c732dc", "fields": {"nom_de_la_commune": "BLACY", "libell_d_acheminement": "BLACY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51065"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c52049ff1c668de81c5431d41da97f7289378dd", "fields": {"nom_de_la_commune": "BOUCHY ST GENEST", "libell_d_acheminement": "BOUCHY ST GENEST", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51071"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a227e946fca1f6873b2fec94ef8cf3284045d5d", "fields": {"nom_de_la_commune": "BOUILLY", "libell_d_acheminement": "BOUILLY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51072"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734ddb2752a96aff3112f56e2cba84930d109efb", "fields": {"nom_de_la_commune": "BOUVANCOURT", "libell_d_acheminement": "BOUVANCOURT", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51077"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d925da5cc9ca12154c53d7e9030a114b37eb5c5", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51085"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc150161427f3fbe74d1720ec2632846dd3c2977", "fields": {"nom_de_la_commune": "BROUSSY LE GRAND", "libell_d_acheminement": "BROUSSY LE GRAND", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51090"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "082f98b33b7bc44c460e5a5b4d5b5ca04204b05e", "fields": {"nom_de_la_commune": "BRUSSON", "libell_d_acheminement": "BRUSSON", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51094"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b3444964a21bd9723e8364977c61c75b47c047", "fields": {"nom_de_la_commune": "CAUROY LES HERMONVILLE", "libell_d_acheminement": "CAUROY LES HERMONVILLE", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51102"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e160b48de5502844a1c897a918803444851aad94", "fields": {"nom_de_la_commune": "LA CELLE SOUS CHANTEMERLE", "libell_d_acheminement": "LA CELLE SOUS CHANTEMERLE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51103"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3724a43608b48b3e4b01ba0dfabbb874600dee6", "fields": {"nom_de_la_commune": "CHAMERY", "libell_d_acheminement": "CHAMERY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51112"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9657898b8347e273d7e61d35f16250b8a30f3cca", "fields": {"nom_de_la_commune": "CHAMPLAT ET BOUJACOURT", "libell_d_acheminement": "CHAMPLAT ET BOUJACOURT", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51120"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2fc0b3c71cc757e45a37abbb9f4f9ba8e79c88", "fields": {"nom_de_la_commune": "CHANGY", "libell_d_acheminement": "CHANGY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51122"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85ee6fe83123e49fe19767d535eded7c6541266", "fields": {"nom_de_la_commune": "CHAPELAINE", "libell_d_acheminement": "CHAPELAINE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51125"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a54f346f972923f6f778a4008521605e237f62a", "fields": {"nom_de_la_commune": "LA CHAPELLE FELCOURT", "libell_d_acheminement": "LA CHAPELLE FELCOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51126"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f6179730dfb287fb5be55880e607cbbca965804", "fields": {"nom_de_la_commune": "LA CHAPELLE LASSON", "libell_d_acheminement": "LA CHAPELLE LASSON", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51127"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d13065a6031dd6627846635d41a6f84f9209afc", "fields": {"nom_de_la_commune": "CHARLEVILLE", "libell_d_acheminement": "CHARLEVILLE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51129"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c024d2fb38f47b5b2c85e5959f141f34932be8", "fields": {"nom_de_la_commune": "CHENIERS", "libell_d_acheminement": "CHENIERS", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51146"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf90899a6bbfa233f0d005da5c18457a9b80989", "fields": {"nom_de_la_commune": "CHEPPES LA PRAIRIE", "libell_d_acheminement": "CHEPPES LA PRAIRIE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51148"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c234a17afc797f1321097163d9eea150af973f9d", "fields": {"nom_de_la_commune": "CHERVILLE", "libell_d_acheminement": "CHERVILLE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51150"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3d8a239c34d3b5e1ddefcfb9360b3a8e10e129", "fields": {"code_postal": "51130", "code_commune_insee": "51158", "libell_d_acheminement": "VAL DES MARAIS", "ligne_5": "AULNAY AUX PLANCHES", "nom_de_la_commune": "VAL DES MARAIS", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82e8cff69b08f88724159144e7b1bb65ba33650", "fields": {"nom_de_la_commune": "COMPERTRIX", "libell_d_acheminement": "COMPERTRIX", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51160"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241410ddd8e84fc61f923ee3efe892afa892a723", "fields": {"nom_de_la_commune": "CONNANTRAY VAUREFROY", "libell_d_acheminement": "CONNANTRAY VAUREFROY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51164"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d7046a589341cdebec0d8c8a00397df46acc73", "fields": {"nom_de_la_commune": "COURLANDON", "libell_d_acheminement": "COURLANDON", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51187"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a7b5e5379f39d5349892159ef1359febfb7523", "fields": {"nom_de_la_commune": "COURTHIEZY", "libell_d_acheminement": "COURTHIEZY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51192"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89acc6c8a825beb93e7f133e88f74f02ab3dcb0", "fields": {"nom_de_la_commune": "COURTISOLS", "libell_d_acheminement": "COURTISOLS", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51193"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194d852d7eade35667a5765b97da314ab95cef0c", "fields": {"nom_de_la_commune": "CRAMANT", "libell_d_acheminement": "CRAMANT", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51196"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992dff2c1b4d2d37a9cb41a6bd68e8f3c47b4795", "fields": {"nom_de_la_commune": "CUISLES", "libell_d_acheminement": "CUISLES", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51201"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741f846e7cbb413029e6a5abf65713d0b061cc7c", "fields": {"nom_de_la_commune": "CUMIERES", "libell_d_acheminement": "CUMIERES", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51202"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e0cc8d6961b8c70f4e61ce151a0313ea817f45", "fields": {"nom_de_la_commune": "DOMMARTIN VARIMONT", "libell_d_acheminement": "DOMMARTIN VARIMONT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51214"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754f9672ac9859beb4e0b58403b9e7c94cbae785", "fields": {"nom_de_la_commune": "DOMPREMY", "libell_d_acheminement": "DOMPREMY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51215"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c792fe912a2809ef0efbd83c6c55c90b88618530", "fields": {"nom_de_la_commune": "VAL DE VIERE", "libell_d_acheminement": "VAL DE VIERE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51218"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4459c248f10ee827d4c4f624d2ac96deefcbf836", "fields": {"nom_de_la_commune": "ECOLLEMONT", "libell_d_acheminement": "ECOLLEMONT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51223"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1201bf0ed771d28546dffcb284eca5f005ca62", "fields": {"nom_de_la_commune": "ECUEIL", "libell_d_acheminement": "ECUEIL", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51225"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85e749326fa2c3ba8722f9328bf5434c7caddca", "fields": {"nom_de_la_commune": "ECURY LE REPOS", "libell_d_acheminement": "ECURY LE REPOS", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51226"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd98d80c9c4a64adf632bb9e56b6d46370d542be", "fields": {"nom_de_la_commune": "EPOYE", "libell_d_acheminement": "EPOYE", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51232"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9f149bf266e52dd47d711af0e06fe79fef225b", "fields": {"nom_de_la_commune": "ESCARDES", "libell_d_acheminement": "ESCARDES", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51233"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6127a66ce145d7a0b5b6204e334d9ada4e9f8589", "fields": {"code_postal": "51320", "code_commune_insee": "51244", "libell_d_acheminement": "FAUX VESIGNEUL", "ligne_5": "FONTAINE SUR COOLE", "nom_de_la_commune": "FAUX VESIGNEUL", "coordonnees_gps": [48.7267171427, 4.30396433776]}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a243d038b415e24d9a8207b96e7095b6f7a877", "fields": {"nom_de_la_commune": "FAVEROLLES ET COEMY", "libell_d_acheminement": "FAVEROLLES ET COEMY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51245"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60ab419f11707bab76fa8f4f0f42f0b474da60e", "fields": {"nom_de_la_commune": "FESTIGNY", "libell_d_acheminement": "FESTIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51249"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a76e8c1d12956da714193c20cf5a90fb0cd237d", "fields": {"nom_de_la_commune": "FLORENT EN ARGONNE", "libell_d_acheminement": "FLORENT EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51253"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4cccae7df64e9ea385bfc404c41eaabfdfa8bc", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84145"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96be9bf834fec2ba95cb113b586c40ebb297d264", "fields": {"nom_de_la_commune": "L AIGUILLON SUR MER", "libell_d_acheminement": "L AIGUILLON SUR MER", "code_postal": "85460", "coordonnees_gps": [46.3131819817, -1.28712096962], "code_commune_insee": "85001"}, "geometry": {"type": "Point", "coordinates": [-1.28712096962, 46.3131819817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699ac2c5cd613e173d34ec0ac85ce1cad41ce195", "fields": {"nom_de_la_commune": "ANGLES", "libell_d_acheminement": "ANGLES", "code_postal": "85750", "coordonnees_gps": [46.3870968037, -1.40070242252], "code_commune_insee": "85004"}, "geometry": {"type": "Point", "coordinates": [-1.40070242252, 46.3870968037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ff3c2f4cfc8dc7f3ac26284efabdfd53e7f711", "fields": {"nom_de_la_commune": "AUZAY", "libell_d_acheminement": "AUZAY", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85009"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4c71293ab920ecba662e007d3e70350bc97144", "fields": {"nom_de_la_commune": "LA BARRE DE MONTS", "libell_d_acheminement": "LA BARRE DE MONTS", "code_postal": "85550", "coordonnees_gps": [46.8721318025, -2.10134483894], "code_commune_insee": "85012"}, "geometry": {"type": "Point", "coordinates": [-2.10134483894, 46.8721318025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e0810db7e472327d8240f14aa7e7a9981d7b17", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85017"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4b75fb8981c4c901bd2cb46bb8c6a4847a7f2a", "fields": {"code_postal": "85170", "code_commune_insee": "85019", "libell_d_acheminement": "BELLEVIGNY", "ligne_5": "BELLEVILLE SUR VIE", "nom_de_la_commune": "BELLEVIGNY", "coordonnees_gps": [46.803170613, -1.45953412091]}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f062ecfe81ff40870f04ccc9bcdc373532fb72", "fields": {"code_postal": "85170", "code_commune_insee": "85019", "libell_d_acheminement": "BELLEVIGNY", "ligne_5": "SALIGNY", "nom_de_la_commune": "BELLEVIGNY", "coordonnees_gps": [46.803170613, -1.45953412091]}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deed6d0a75f1ca72c9f22dd0491e6e7d01485979", "fields": {"nom_de_la_commune": "BENET", "libell_d_acheminement": "BENET", "code_postal": "85490", "coordonnees_gps": [46.3691901747, -0.6138149404], "code_commune_insee": "85020"}, "geometry": {"type": "Point", "coordinates": [-0.6138149404, 46.3691901747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d691f4c55ec31f2f1e79a333c9c72462f4783d5", "fields": {"code_postal": "85490", "code_commune_insee": "85020", "libell_d_acheminement": "BENET", "ligne_5": "LESSON", "nom_de_la_commune": "BENET", "coordonnees_gps": [46.3691901747, -0.6138149404]}, "geometry": {"type": "Point", "coordinates": [-0.6138149404, 46.3691901747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b580232cfff3b6d210ce569313ba77f6a87679e", "fields": {"nom_de_la_commune": "BOUFFERE", "libell_d_acheminement": "BOUFFERE", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85027"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3831b6b4e548e1d93ee605b4ce224eaadba3825b", "fields": {"nom_de_la_commune": "BOURNEZEAU", "libell_d_acheminement": "BOURNEZEAU", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85034"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9034620fcce0637b0b4b972ece9e3b5d978ee8c6", "fields": {"nom_de_la_commune": "LE CHAMP ST PERE", "libell_d_acheminement": "LE CHAMP ST PERE", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85050"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e923af7a75d03d91948e3b706aab35f35fdec612", "fields": {"nom_de_la_commune": "CHAVAGNES LES REDOUX", "libell_d_acheminement": "CHAVAGNES LES REDOUX", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85066"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b094f3b91b70ee39330a7017ab961fd874d11c8e", "fields": {"nom_de_la_commune": "COEX", "libell_d_acheminement": "COEX", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85070"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e8b06b801cd9715457a32b36b8b88e17fe29f13", "fields": {"nom_de_la_commune": "CORPE", "libell_d_acheminement": "CORPE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85073"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569b10fe48a844804166183ef47efa9f5410805b", "fields": {"nom_de_la_commune": "DOMPIERRE SUR YON", "libell_d_acheminement": "DOMPIERRE SUR YON", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85081"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c836650770266f8ab7c9ea72acd810c529008de9", "fields": {"nom_de_la_commune": "LE FENOUILLER", "libell_d_acheminement": "LE FENOUILLER", "code_postal": "85800", "coordonnees_gps": [46.6993264019, -1.89528926065], "code_commune_insee": "85088"}, "geometry": {"type": "Point", "coordinates": [-1.89528926065, 46.6993264019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafbd00114b61d7ccd2209c101a143b2ca6b643c", "fields": {"nom_de_la_commune": "LA FERRIERE", "libell_d_acheminement": "LA FERRIERE", "code_postal": "85280", "coordonnees_gps": [46.721600791, -1.3342812784], "code_commune_insee": "85089"}, "geometry": {"type": "Point", "coordinates": [-1.3342812784, 46.721600791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a733502148db0c53b73adb0f00aa407e758785c6", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "LA POMMERAIE SUR SEVRE", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516f014d0ca61d1d77031c5454194145c7aefd47", "fields": {"nom_de_la_commune": "LE GUE DE VELLUIRE", "libell_d_acheminement": "LE GUE DE VELLUIRE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85105"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d659ad8619bd764e5785a8dc9482785e9483dad9", "fields": {"nom_de_la_commune": "LA GUERINIERE", "libell_d_acheminement": "LA GUERINIERE", "code_postal": "85680", "coordonnees_gps": [46.9670273976, -2.23095235091], "code_commune_insee": "85106"}, "geometry": {"type": "Point", "coordinates": [-2.23095235091, 46.9670273976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bab65fc93a7c03969c93922c51a0f64854897f7", "fields": {"nom_de_la_commune": "LES HERBIERS", "libell_d_acheminement": "LES HERBIERS", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85109"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d59f06b94e68d78f49fe82755d1be1ae860ef10", "fields": {"nom_de_la_commune": "L ILE D YEU", "libell_d_acheminement": "L ILE D YEU", "code_postal": "85350", "coordonnees_gps": [46.709560764, -2.34675388609], "code_commune_insee": "85113"}, "geometry": {"type": "Point", "coordinates": [-2.34675388609, 46.709560764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0823085612e1534d3f2f2898901426f1c24d157", "fields": {"nom_de_la_commune": "LUCON", "libell_d_acheminement": "LUCON", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85128"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd94196267b37898f04ccac67b82b6abf6f4ca28", "fields": {"nom_de_la_commune": "LES MAGNILS REIGNIERS", "libell_d_acheminement": "LES MAGNILS REIGNIERS", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85131"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be5dd68ede3da5ead989947e71994e5a1ca3f70", "fields": {"nom_de_la_commune": "MAILLE", "libell_d_acheminement": "MAILLE", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85132"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7302d1e1ad854b0676d9e3545357a7b3147f92", "fields": {"nom_de_la_commune": "MAILLEZAIS", "libell_d_acheminement": "MAILLEZAIS", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85133"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b34e9215f9f7405b31da0b3e8cb1d5824c0eb7", "fields": {"nom_de_la_commune": "MALLIEVRE", "libell_d_acheminement": "MALLIEVRE", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85134"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8827ef44213937257df8f21363eec7810a59749", "fields": {"code_postal": "85320", "code_commune_insee": "85135", "libell_d_acheminement": "MAREUIL SUR LAY DISSAIS", "ligne_5": "DISSAIS", "nom_de_la_commune": "MAREUIL SUR LAY DISSAIS", "coordonnees_gps": [46.544588242, -1.21560029511]}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b608256bcdcc06fc16ed4b5bdf7bd4a77a0d47e", "fields": {"nom_de_la_commune": "MARILLET", "libell_d_acheminement": "MARILLET", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85136"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10cad351722449dbc741773f661cd6937525275", "fields": {"nom_de_la_commune": "LA MEILLERAIE TILLAY", "libell_d_acheminement": "LA MEILLERAIE TILLAY", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85140"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec82ad05cf6592958071c525706cdc90b53f021", "fields": {"code_postal": "77970", "code_commune_insee": "77020", "libell_d_acheminement": "BANNOST VILLEGAGNON", "ligne_5": "VILLEGAGNON", "nom_de_la_commune": "BANNOST VILLEGAGNON", "coordonnees_gps": [48.6629667533, 3.14093688522]}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68eb6affd1948aafe6bfa8210bf5c2b9b5f53779", "fields": {"nom_de_la_commune": "BARCY", "libell_d_acheminement": "BARCY", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77023"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33df6799d05d4400d91d7948bf8bf29fb6319e9", "fields": {"code_postal": "77560", "code_commune_insee": "77026", "libell_d_acheminement": "BEAUCHERY ST MARTIN", "ligne_5": "ST MARTIN CHENNETRON", "nom_de_la_commune": "BEAUCHERY ST MARTIN", "coordonnees_gps": [48.6366559441, 3.38263980516]}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbec52415412d72de691cfc5aa63a70f0594ea3", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77029"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa61a1d7dd8d8220a43bab1353da47e1d65324f", "fields": {"nom_de_la_commune": "BOISDON", "libell_d_acheminement": "BOISDON", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77036"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2586a526f11645c0882ca0d0a618ffff369eab", "fields": {"nom_de_la_commune": "BOITRON", "libell_d_acheminement": "BOITRON", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77043"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e9fc451b9f2d3213068182e3cc520fa5262196", "fields": {"nom_de_la_commune": "CANNES ECLUSE", "libell_d_acheminement": "CANNES ECLUSE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77061"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26cddaeb10f11e0982a62ac146d00dbfc6633607", "fields": {"nom_de_la_commune": "CARNETIN", "libell_d_acheminement": "CARNETIN", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77062"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f4e3c3c9543a9ef843f4d2fffd9db4aa9c3417", "fields": {"nom_de_la_commune": "CELY", "libell_d_acheminement": "CELY EN BIERE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77065"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a968ccc9ded461ed32ae1df5dd6d0e5858a407", "fields": {"nom_de_la_commune": "CERNEUX", "libell_d_acheminement": "CERNEUX", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77066"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8d51bda93bd704e3dfdf196a05658f9231cfc6", "fields": {"nom_de_la_commune": "CHAMIGNY", "libell_d_acheminement": "CHAMIGNY", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77078"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe06faa28fe989b39772952b7ba0c84bf051c742", "fields": {"nom_de_la_commune": "CHAMPEAUX", "libell_d_acheminement": "CHAMPEAUX", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77082"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cedb3608cafa12f4f0659e3fd73f2fe1440c19e6", "fields": {"nom_de_la_commune": "LA CHAPELLE IGER", "libell_d_acheminement": "LA CHAPELLE IGER", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77087"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297c271ff06b0beb628cb6347a0bf160ee4fb70a", "fields": {"nom_de_la_commune": "LA CHAPELLE MOUTILS", "libell_d_acheminement": "LA CHAPELLE MOUTILS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77093"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adcba20ae51d0ff43498db7bf4263cda04beada9", "fields": {"nom_de_la_commune": "CHARMENTRAY", "libell_d_acheminement": "CHARMENTRAY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77094"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f774b5f413fc98cc4d393a50a65118198ede2b", "fields": {"nom_de_la_commune": "LE CHATELET EN BRIE", "libell_d_acheminement": "LE CHATELET EN BRIE", "code_postal": "77820", "coordonnees_gps": [48.5045041989, 2.83445609947], "code_commune_insee": "77100"}, "geometry": {"type": "Point", "coordinates": [2.83445609947, 48.5045041989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bce742a88ceeb1f0049c0095946b9d3774433c1", "fields": {"nom_de_la_commune": "CHATENAY SUR SEINE", "libell_d_acheminement": "CHATENAY SUR SEINE", "code_postal": "77126", "coordonnees_gps": [48.4261598514, 3.09512447411], "code_commune_insee": "77101"}, "geometry": {"type": "Point", "coordinates": [3.09512447411, 48.4261598514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1754cbc66a39e727da0b0dfcaeef5853044e36a7", "fields": {"nom_de_la_commune": "CHATILLON LA BORDE", "libell_d_acheminement": "CHATILLON LA BORDE", "code_postal": "77820", "coordonnees_gps": [48.5045041989, 2.83445609947], "code_commune_insee": "77103"}, "geometry": {"type": "Point", "coordinates": [2.83445609947, 48.5045041989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30734350a008ac31d8618cb092db13120e27d591", "fields": {"nom_de_la_commune": "CHENOISE", "libell_d_acheminement": "CHENOISE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77109"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23982c6562ada381202f48d9d53f7ffdd968bf41", "fields": {"nom_de_la_commune": "CHEVRAINVILLIERS", "libell_d_acheminement": "CHEVRAINVILLIERS", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77112"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38cf136a5757fdb5e7d812076271faa9a986836", "fields": {"nom_de_la_commune": "COURQUETAINE", "libell_d_acheminement": "COURQUETAINE", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77136"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cf3c75fc7635810488a36cfdb9ae0dc3c722c6", "fields": {"nom_de_la_commune": "CREGY LES MEAUX", "libell_d_acheminement": "CREGY LES MEAUX", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77143"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a550d2606fe25249e23bf8a9001aa3a3adb06a96", "fields": {"nom_de_la_commune": "CRISENOY", "libell_d_acheminement": "CRISENOY", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77145"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec42f75add23e38bbc421ed4f9b53125b03c357c", "fields": {"nom_de_la_commune": "DAMMARTIN EN GOELE", "libell_d_acheminement": "DAMMARTIN EN GOELE", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77153"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584675d820faf670e7d62cc76b0ada9bbc631ba3", "fields": {"nom_de_la_commune": "DONNEMARIE DONTILLY", "libell_d_acheminement": "DONNEMARIE DONTILLY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77159"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1717e4e218238227f71e0a64d891f12f2be435a8", "fields": {"code_postal": "77184", "code_commune_insee": "77169", "libell_d_acheminement": "EMERAINVILLE", "ligne_5": "MALNOUE", "nom_de_la_commune": "EMERAINVILLE", "coordonnees_gps": [48.8191814737, 2.61008151215]}, "geometry": {"type": "Point", "coordinates": [2.61008151215, 48.8191814737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354ddd24ab2e87d00dc863ff03d7750f5e971234", "fields": {"nom_de_la_commune": "EVERLY", "libell_d_acheminement": "EVERLY", "code_postal": "77157", "coordonnees_gps": [48.4599807515, 3.26360313949], "code_commune_insee": "77174"}, "geometry": {"type": "Point", "coordinates": [3.26360313949, 48.4599807515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd859fe40a77b67ff670c9f1fc066d9dfc300445", "fields": {"code_postal": "77166", "code_commune_insee": "77175", "libell_d_acheminement": "EVRY GREGY SUR YERRE", "ligne_5": "GREGY SUR YERRE", "nom_de_la_commune": "EVRY GREGY SUR YERRE", "coordonnees_gps": [48.6689119155, 2.65738604224]}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00fc73f1e3c80d7c61ddfbe2678fa6c462f29f3b", "fields": {"nom_de_la_commune": "FAREMOUTIERS", "libell_d_acheminement": "FAREMOUTIERS", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77176"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c82296d536323119939bab1a0d6523679aa17a", "fields": {"nom_de_la_commune": "FLAGY", "libell_d_acheminement": "FLAGY", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77184"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f56dfe762bc3adcb35d61d2beb734c37b311b7", "fields": {"nom_de_la_commune": "FLEURY EN BIERE", "libell_d_acheminement": "FLEURY EN BIERE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77185"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358785d8180712f21f4297e2f4cbfc04f7954d8a", "fields": {"nom_de_la_commune": "GASTINS", "libell_d_acheminement": "GASTINS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77201"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0b2849de7a7a7a6f82172f63a153c6ce0272c5", "fields": {"nom_de_la_commune": "GRAVON", "libell_d_acheminement": "GRAVON", "code_postal": "77118", "coordonnees_gps": [48.3962434685, 3.16889442918], "code_commune_insee": "77212"}, "geometry": {"type": "Point", "coordinates": [3.16889442918, 48.3962434685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7f6381454b1010902ca6aff9e908d8b96b9169", "fields": {"nom_de_la_commune": "GREZ SUR LOING", "libell_d_acheminement": "GREZ SUR LOING", "code_postal": "77880", "coordonnees_gps": [48.30681243, 2.67755960336], "code_commune_insee": "77216"}, "geometry": {"type": "Point", "coordinates": [2.67755960336, 48.30681243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c689a46ec79c2493e853971311426f1b04fcbb", "fields": {"code_postal": "77166", "code_commune_insee": "77217", "libell_d_acheminement": "GRISY SUISNES", "ligne_5": "SUISNES", "nom_de_la_commune": "GRISY SUISNES", "coordonnees_gps": [48.6689119155, 2.65738604224]}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0366837d8223ce2b9f4d90b9adad5a2fa545758", "fields": {"nom_de_la_commune": "GUERARD", "libell_d_acheminement": "GUERARD", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77219"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3598c775fd2f94fc7144fe6b5bafc57bb213274", "fields": {"nom_de_la_commune": "LA HAUTE MAISON", "libell_d_acheminement": "LA HAUTE MAISON", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77225"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d414c9d926b76ba841d98a1ba99f19bf3b9c503", "fields": {"nom_de_la_commune": "IVERNY", "libell_d_acheminement": "IVERNY", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77233"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a67213293de5d6951024c7ad260d815e5fa519", "fields": {"nom_de_la_commune": "JOSSIGNY", "libell_d_acheminement": "JOSSIGNY", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77237"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1cd7bd782ec8a007343b6321178b2d48101212", "fields": {"nom_de_la_commune": "JOUY LE CHATEL", "libell_d_acheminement": "JOUY LE CHATEL", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77239"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5875c2222039fd7bec1860ad04f0f76b88af3f1e", "fields": {"nom_de_la_commune": "LARCHANT", "libell_d_acheminement": "LARCHANT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77244"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df04d866d4d00ce9419301c6b598ec6bc5d96439", "fields": {"nom_de_la_commune": "LESCHES", "libell_d_acheminement": "LESCHES", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77248"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95815a0b4d424d93a2d33a5863b61bf418521c3f", "fields": {"nom_de_la_commune": "LIVERDY EN BRIE", "libell_d_acheminement": "LIVERDY EN BRIE", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77254"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158eb3c9937b8520695d35c237e8fa2c0901c549", "fields": {"nom_de_la_commune": "LOGNES", "libell_d_acheminement": "LOGNES", "code_postal": "77185", "coordonnees_gps": [48.8339453672, 2.63405301625], "code_commune_insee": "77258"}, "geometry": {"type": "Point", "coordinates": [2.63405301625, 48.8339453672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832b3c32dd8db75992d3edb152937ece3f1e6029", "fields": {"nom_de_la_commune": "LORREZ LE BOCAGE PREAUX", "libell_d_acheminement": "LORREZ LE BOCAGE PREAUX", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77261"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3996c50bbfb52d0d488c190204be9406375926f6", "fields": {"nom_de_la_commune": "LUISETAINES", "libell_d_acheminement": "LUISETAINES", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77263"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2964991ef7d18bcbc45e77841083ae7511ef9bda", "fields": {"nom_de_la_commune": "LUZANCY", "libell_d_acheminement": "LUZANCY", "code_postal": "77138", "coordonnees_gps": [48.9786989638, 3.18137472607], "code_commune_insee": "77265"}, "geometry": {"type": "Point", "coordinates": [3.18137472607, 48.9786989638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70dc3a510ca93ac6fae6805b13db0350d864ca64", "fields": {"nom_de_la_commune": "MAGNY LE HONGRE", "libell_d_acheminement": "MAGNY LE HONGRE", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77268"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1628969de60c70c1f0535ca441f06eaca2726e3e", "fields": {"nom_de_la_commune": "MAISON ROUGE", "libell_d_acheminement": "MAISON ROUGE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77272"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343037151689a51c5d6b3cf3f09ba7e9822d674f", "fields": {"nom_de_la_commune": "MESSY", "libell_d_acheminement": "MESSY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77292"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77a59aafa3598dce069905150d6bcc73e9184ab", "fields": {"nom_de_la_commune": "MOISSY CRAMAYEL", "libell_d_acheminement": "MOISSY CRAMAYEL", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77296"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25038b60a125765a51f3cd3094bc79772dae0067", "fields": {"nom_de_la_commune": "MONS EN MONTOIS", "libell_d_acheminement": "MONS EN MONTOIS", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77298"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07f585e54bcacbe3699ddddf848fd92b6a7fc77", "fields": {"nom_de_la_commune": "MONTCEAUX LES PROVINS", "libell_d_acheminement": "MONTCEAUX LES PROVINS", "code_postal": "77151", "coordonnees_gps": [48.6966917246, 3.44415386672], "code_commune_insee": "77301"}, "geometry": {"type": "Point", "coordinates": [3.44415386672, 48.6966917246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5298c775347c353448632a1f904d5b25a23fc4ab", "fields": {"nom_de_la_commune": "MONTDAUPHIN", "libell_d_acheminement": "MONTDAUPHIN", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77303"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28079664ff8200f2c3efaf18a91d6fc08fbc3284", "fields": {"nom_de_la_commune": "MONTGE EN GOELE", "libell_d_acheminement": "MONTGE EN GOELE", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77308"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45bc684a7a03fddd0171d67b2bcab020e1ea77dc", "fields": {"nom_de_la_commune": "MONTHYON", "libell_d_acheminement": "MONTHYON", "code_postal": "77122", "coordonnees_gps": [49.0101609027, 2.83216418246], "code_commune_insee": "77309"}, "geometry": {"type": "Point", "coordinates": [2.83216418246, 49.0101609027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f637948c3fc90d183c4c7fc7facbaa85c7159f", "fields": {"nom_de_la_commune": "MOUSSY LE VIEUX", "libell_d_acheminement": "MOUSSY LE VIEUX", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77323"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e91a6a624b9c46cf4f4ee0c69cfa95aa955b76", "fields": {"nom_de_la_commune": "NANGIS", "libell_d_acheminement": "NANGIS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77327"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865ba1884ae88d5f867ca6c358db0dc92eb488c2", "fields": {"code_postal": "77124", "code_commune_insee": "77335", "libell_d_acheminement": "CHAUCONIN NEUFMONTIERS", "ligne_5": "CHAUCONIN", "nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", "coordonnees_gps": [48.9687525452, 2.84384652509]}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9cfbe02db81f93af2fce657b7e6b4af81e7ab9c", "fields": {"nom_de_la_commune": "NONVILLE", "libell_d_acheminement": "NONVILLE", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77340"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4f74e30c9cc555564e1836971427cac591f305", "fields": {"nom_de_la_commune": "OBSONVILLE", "libell_d_acheminement": "OBSONVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77342"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58e004dc36f69c71ea402283ae6a19145d539d1", "fields": {"nom_de_la_commune": "OCQUERRE", "libell_d_acheminement": "OCQUERRE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77343"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b338505d5670c64fdcd08dfa7bce422c326852a", "fields": {"nom_de_la_commune": "OZOIR LA FERRIERE", "libell_d_acheminement": "OZOIR LA FERRIERE", "code_postal": "77330", "coordonnees_gps": [48.763895872, 2.6807024784], "code_commune_insee": "77350"}, "geometry": {"type": "Point", "coordinates": [2.6807024784, 48.763895872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9737238bb0ebbad2b000ce6e01535e79498687ce", "fields": {"code_postal": "77340", "code_commune_insee": "77373", "libell_d_acheminement": "PONTAULT COMBAULT", "ligne_5": "LE PAVE DE PONTAULT", "nom_de_la_commune": "PONTAULT COMBAULT", "coordonnees_gps": [48.7869451025, 2.6135089739]}, "geometry": {"type": "Point", "coordinates": [2.6135089739, 48.7869451025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02d7b7a49c35ca26011004ab0390d429370d6816", "fields": {"nom_de_la_commune": "PONTCARRE", "libell_d_acheminement": "PONTCARRE", "code_postal": "77135", "coordonnees_gps": [48.7962351515, 2.7076583399], "code_commune_insee": "77374"}, "geometry": {"type": "Point", "coordinates": [2.7076583399, 48.7962351515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e36dbc73d4ea002ab817b353440f810148e64234", "fields": {"nom_de_la_commune": "PROVINS", "libell_d_acheminement": "PROVINS", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77379"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec74edc25813bdd3aeed10c6d921cc99d493316", "fields": {"nom_de_la_commune": "QUIERS", "libell_d_acheminement": "QUIERS", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77381"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049f9fd2faa8612d4c2a986ffa3037f76ef3bafe", "fields": {"nom_de_la_commune": "REUIL EN BRIE", "libell_d_acheminement": "REUIL EN BRIE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77388"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61372b345f9021a7ba616a41edc101985261166b", "fields": {"nom_de_la_commune": "NAPUKA", "libell_d_acheminement": "TEPUKAMARUIA", "code_postal": "98772", "ligne_5": "NAPUKA", "code_commune_insee": "98730"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86d22f20437f1079c2e73374e2bc83c7498f80d", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "AAKAPA", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2306f79c9dbac4e7920d5ad1f77dacd849d04a", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "HATIHEU", "code_postal": "98748", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "243dc75f053ccf25205f312a75cee4eef2e7da62", "fields": {"nom_de_la_commune": "PAPEETE", "libell_d_acheminement": "PAPEETE", "code_postal": "98714", "code_commune_insee": "98735"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4697b578c13fc71a3ff49e14186d15e732bf0182", "fields": {"nom_de_la_commune": "PUKAPUKA", "libell_d_acheminement": "TEONEMAHINA", "code_postal": "98774", "ligne_5": "PUKAPUKA", "code_commune_insee": "98737"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efc546e6520e6e76f96e7154ee648a572708629b", "fields": {"nom_de_la_commune": "RAPA", "libell_d_acheminement": "MAROTIRI", "code_postal": "98794", "ligne_5": "RAPA", "code_commune_insee": "98741"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e143bfbc1e569866ed60f69e39e0445a148cd149", "fields": {"nom_de_la_commune": "RURUTU", "libell_d_acheminement": "AVERA", "code_postal": "98753", "ligne_5": "RURUTU", "code_commune_insee": "98744"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db134b5047912cab4db172a017d3af132d11a35b", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "TAHAA", "code_postal": "98733", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbce5240747d38f47c3bee5fee1e752ec8b19acf", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "HIPU", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749d3c32b796421ba25593650996095268706104", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "HAAMENE", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71823fcaed7ca97e1c64c14c9ede10c6c7e50819", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "FAAAHA", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10338868fff637a543162c2fca5a12c16513b36b", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "HAPATONI", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0784f38acb9660fdd908d09a4850a48e39f7ec88", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "HANATETENA", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa32f5c9ded5af04a756f6c6506b4b40b17a1e35", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "TEHURUI", "code_postal": "98735", "ligne_5": "TUMARAA", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc201caceaf70397e22e1ef6d61094e97ab46ae", "fields": {"nom_de_la_commune": "TUREIA", "libell_d_acheminement": "FAKAMARU", "code_postal": "98784", "ligne_5": "TUREIA", "code_commune_insee": "98755"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcde49b99196b982e5cc10ca28a776e93aa25968", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKAHETAU", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae26f6cd6805c0149d63fc490c5aaedc5529165d", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKAHAU", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402e3e14d065499808bc202c5ed5041717d94607", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKAMAII", "code_postal": "98746", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911fd88989b7e39caf8c87a27e5d7cc69ffd5558", "fields": {"nom_de_la_commune": "HOUAILOU", "libell_d_acheminement": "PORO", "code_postal": "98838", "ligne_5": "HOUAILOU", "code_commune_insee": "98808"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b18ccfc1d9eaa11d005b65f562803fe2cf542f3", "fields": {"nom_de_la_commune": "KONE", "libell_d_acheminement": "KONE", "code_postal": "98859", "code_commune_insee": "98811"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24097836704b1de6d9472e982aee6102769f4b5", "fields": {"nom_de_la_commune": "NOUMEA", "libell_d_acheminement": "NOUMEA", "code_postal": "98800", "code_commune_insee": "98818"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a963a6a1c43fe225997ffc61998e23f193cf64", "fields": {"nom_de_la_commune": "POYA", "libell_d_acheminement": "POYA", "code_postal": "98827", "code_commune_insee": "98827"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3007754b816e668bb432530ce63aa0e6bf363b1", "fields": {"nom_de_la_commune": "SARRAMEA", "libell_d_acheminement": "SARRAMEA", "code_postal": "98882", "code_commune_insee": "98828"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88df389815f018f4a537f1efc71b995faa1e18d5", "fields": {"nom_de_la_commune": "VOH", "libell_d_acheminement": "VOH", "code_postal": "98833", "code_commune_insee": "98831"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71cbedaad431227718d8b01c960eba7567c5f21", "fields": {"nom_de_la_commune": "AJACCIO", "libell_d_acheminement": "AJACCIO", "code_postal": "20000", "coordonnees_gps": [41.9348656233, 8.70148853139], "code_commune_insee": "2A004"}, "geometry": {"type": "Point", "coordinates": [8.70148853139, 41.9348656233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61a882413c75438c8b091c749da90ce3fa777a4a", "fields": {"nom_de_la_commune": "ARGIUSTA MORICCIO", "libell_d_acheminement": "ARGIUSTA MORICCIO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A021"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9940122178b68bca059bc6fbf71632c181508b", "fields": {"nom_de_la_commune": "BASTELICA", "libell_d_acheminement": "BASTELICA", "code_postal": "20119", "coordonnees_gps": [41.9883254423, 9.04886677644], "code_commune_insee": "2A031"}, "geometry": {"type": "Point", "coordinates": [9.04886677644, 41.9883254423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f42acfb3f846cd484f981b11dddd6bcafb447e5", "fields": {"nom_de_la_commune": "BASTELICACCIA", "libell_d_acheminement": "BASTELICACCIA", "code_postal": "20129", "coordonnees_gps": [41.9356536649, 8.83694586771], "code_commune_insee": "2A032"}, "geometry": {"type": "Point", "coordinates": [8.83694586771, 41.9356536649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaec57ad5458b40c247649b2cee0d780fc06d53d", "fields": {"nom_de_la_commune": "COZZANO", "libell_d_acheminement": "COZZANO", "code_postal": "20148", "coordonnees_gps": [41.9338968965, 9.18654133907], "code_commune_insee": "2A099"}, "geometry": {"type": "Point", "coordinates": [9.18654133907, 41.9338968965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f21b63114d355b57cb1066fcacffdffeb001872", "fields": {"nom_de_la_commune": "FOCE", "libell_d_acheminement": "FOCE", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A115"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa5aaf96325024e1fc2951f867d1de1529c34e6", "fields": {"nom_de_la_commune": "FRASSETO", "libell_d_acheminement": "FRASSETO", "code_postal": "20157", "coordonnees_gps": [41.919798541, 9.03920532864], "code_commune_insee": "2A119"}, "geometry": {"type": "Point", "coordinates": [9.03920532864, 41.919798541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe4ef3e523a720f95d2523e6b51381b61640976", "fields": {"nom_de_la_commune": "GROSSETO PRUGNA", "libell_d_acheminement": "GROSSETO PRUGNA", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A130"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcacf75849a116791e36a175fea9f4bc3a076f7b", "fields": {"nom_de_la_commune": "GUAGNO", "libell_d_acheminement": "GUAGNO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A131"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd3a6414166c952926f22e6c82549c8e36b22ef", "fields": {"nom_de_la_commune": "LETIA", "libell_d_acheminement": "LETIA", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A141"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf174e0860c8b21c94a4ed3178eecb94e217c0df", "fields": {"nom_de_la_commune": "MELA", "libell_d_acheminement": "MELA", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A158"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af1e1f2039594dff1fec700ec8323a0ac954448", "fields": {"nom_de_la_commune": "OLMICCIA", "libell_d_acheminement": "OLMICCIA", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A191"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ba229b00929aeb9c0fd1812ce2f015059e08cd", "fields": {"nom_de_la_commune": "SAMPOLO", "libell_d_acheminement": "SAMPOLO", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A268"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4f8c7f81de41f0b73b250e55e1b60f3b071046", "fields": {"code_postal": "20140", "code_commune_insee": "2A276", "libell_d_acheminement": "SERRA DI FERRO", "ligne_5": "PORTO POLLO", "nom_de_la_commune": "SERRA DI FERRO", "coordonnees_gps": [41.7771465438, 8.95137239938]}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba28574f194afb6312629bd7992cb3fa0308bd29", "fields": {"nom_de_la_commune": "VALLE DI MEZZANA", "libell_d_acheminement": "VALLE DI MEZZANA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A336"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7761524eb6ee260c3e46a27e599010506d6aaa5e", "fields": {"nom_de_la_commune": "VERO", "libell_d_acheminement": "VERO", "code_postal": "20172", "coordonnees_gps": [42.0609631919, 8.92212261346], "code_commune_insee": "2A345"}, "geometry": {"type": "Point", "coordinates": [8.92212261346, 42.0609631919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729781dc3d2f69b24296133cbd91100621f67d00", "fields": {"nom_de_la_commune": "VIGGIANELLO", "libell_d_acheminement": "VIGGIANELLO", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A349"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f92b657758d6a6470cf2e777010a26adc8d2e9", "fields": {"nom_de_la_commune": "VILLANOVA", "libell_d_acheminement": "VILLANOVA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A351"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f175e9293f5a4b18d42be79ce57ccb83908421", "fields": {"nom_de_la_commune": "ZERUBIA", "libell_d_acheminement": "ZERUBIA", "code_postal": "20116", "coordonnees_gps": [41.7931582051, 9.08407548301], "code_commune_insee": "2A357"}, "geometry": {"type": "Point", "coordinates": [9.08407548301, 41.7931582051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc6800959eb74a028c890e1028430b97e6390f8", "fields": {"nom_de_la_commune": "ZICAVO", "libell_d_acheminement": "ZICAVO", "code_postal": "20132", "coordonnees_gps": [41.8845060051, 9.16685153828], "code_commune_insee": "2A359"}, "geometry": {"type": "Point", "coordinates": [9.16685153828, 41.8845060051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0a3c1b0235b7d84aceeebeff5c6dcc7a9dabeb", "fields": {"nom_de_la_commune": "ZIGLIARA", "libell_d_acheminement": "ZIGLIARA", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A360"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db180d3287e2de69c8c70205ad7a237153fec9e6", "fields": {"nom_de_la_commune": "ALTIANI", "libell_d_acheminement": "ALTIANI", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B012"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f1d9d0e9104b4744a0f8a5997c8fadf659d27d", "fields": {"nom_de_la_commune": "ALZI", "libell_d_acheminement": "ALZI", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B013"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a25748eea6a85cd4f2cbf9563158b261b54dd6", "fields": {"nom_de_la_commune": "ASCO", "libell_d_acheminement": "ASCO", "code_postal": "20276", "coordonnees_gps": [42.4344485106, 8.99687739791], "code_commune_insee": "2B023"}, "geometry": {"type": "Point", "coordinates": [8.99687739791, 42.4344485106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c983b0bb9704b0986ef9ce6f9d9566811ddcad7", "fields": {"nom_de_la_commune": "AVAPESSA", "libell_d_acheminement": "AVAPESSA", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B025"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827d82409a271dbf6314769241cc7f2c9f3286bd", "fields": {"nom_de_la_commune": "BIGORNO", "libell_d_acheminement": "BIGORNO", "code_postal": "20252", "coordonnees_gps": [42.5302771841, 9.28449262062], "code_commune_insee": "2B036"}, "geometry": {"type": "Point", "coordinates": [9.28449262062, 42.5302771841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e47ed9a4514cdcee5b93b2df125f97c4389a21", "fields": {"nom_de_la_commune": "BISINCHI", "libell_d_acheminement": "BISINCHI", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B039"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb49e3177112cb8fa6e2fed43f35099afcf264e", "fields": {"code_postal": "20290", "code_commune_insee": "2B042", "libell_d_acheminement": "BORGO", "ligne_5": "VALROSE", "nom_de_la_commune": "BORGO", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2e8fbf48e3ddfbb3abc5400dd991d699601e90", "fields": {"nom_de_la_commune": "CAGNANO", "libell_d_acheminement": "CAGNANO", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B046"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823fbafdb05b37b2e9b0dd5a397520dd47186c81", "fields": {"nom_de_la_commune": "CALENZANA", "libell_d_acheminement": "CALENZANA", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B049"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ce63aa3991789c9c5f6fb1d45313b3142e03f57", "fields": {"code_postal": "20214", "code_commune_insee": "2B049", "libell_d_acheminement": "CALENZANA", "ligne_5": "SUARE", "nom_de_la_commune": "CALENZANA", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eea103955ef3ac81f2b4c8ed344bad5ee01e1c8", "fields": {"nom_de_la_commune": "CAMPITELLO", "libell_d_acheminement": "CAMPITELLO", "code_postal": "20252", "coordonnees_gps": [42.5302771841, 9.28449262062], "code_commune_insee": "2B055"}, "geometry": {"type": "Point", "coordinates": [9.28449262062, 42.5302771841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f480c7acaae14d82ae5da9774d12e48505e205", "fields": {"nom_de_la_commune": "CASAMACCIOLI", "libell_d_acheminement": "CASAMACCIOLI", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B073"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13fc0c8f23c52130e89ee406dcb880bb59421e40", "fields": {"nom_de_la_commune": "CASANOVA", "libell_d_acheminement": "CASANOVA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B074"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdea267f7e3852a5d69349150eea5b9fccccedf", "fields": {"nom_de_la_commune": "CASEVECCHIE", "libell_d_acheminement": "CASEVECCHIE", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B075"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24bd1592903fadf6f218f984aca91547b0486dc", "fields": {"nom_de_la_commune": "CASTELLARE DI MERCURIO", "libell_d_acheminement": "CASTELLARE DI MERCURIO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B078"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9f708a8bcc66da8e8a9d696d0b8329da95df55", "fields": {"nom_de_la_commune": "CASTINETA", "libell_d_acheminement": "CASTINETA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B082"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d7f1a22782fb42856a2712c83c12175a1fbd31", "fields": {"nom_de_la_commune": "CERVIONE", "libell_d_acheminement": "CERVIONE", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B087"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fde41b8f7a72154ab3e048844a402f299f1d4d8", "fields": {"nom_de_la_commune": "CORBARA", "libell_d_acheminement": "CORBARA", "code_postal": "20256", "coordonnees_gps": [42.6174159911, 8.90151546697], "code_commune_insee": "2B093"}, "geometry": {"type": "Point", "coordinates": [8.90151546697, 42.6174159911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053a3778de8b835bf522bcb24c513fb4fd368315", "fields": {"nom_de_la_commune": "FURIANI", "libell_d_acheminement": "FURIANI", "code_postal": "20600", "coordonnees_gps": [42.6694587934, 9.42115967008], "code_commune_insee": "2B120"}, "geometry": {"type": "Point", "coordinates": [9.42115967008, 42.6694587934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759e9942eff320afe4b1b3e79bfa53f0ea741af9", "fields": {"nom_de_la_commune": "GHISONI", "libell_d_acheminement": "GHISONI", "code_postal": "20227", "coordonnees_gps": [42.090759243, 9.21042108647], "code_commune_insee": "2B124"}, "geometry": {"type": "Point", "coordinates": [9.21042108647, 42.090759243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999c583b4864327a1ec6e207d5ae3360273af892", "fields": {"nom_de_la_commune": "L ILE ROUSSE", "libell_d_acheminement": "L ILE ROUSSE", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B134"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b964255ea21abe578b0b47b04490a0d391370ac", "fields": {"code_postal": "20243", "code_commune_insee": "2B135", "libell_d_acheminement": "ISOLACCIO DI FIUMORBO", "ligne_5": "AJIOLA", "nom_de_la_commune": "ISOLACCIO DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2031b9edd89f8951715b26d59edc1e40a55e1fc9", "fields": {"nom_de_la_commune": "LOZZI", "libell_d_acheminement": "LOZZI", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B147"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e262fbf1a1b10b8272595dd9a4d63edf47152695", "fields": {"nom_de_la_commune": "LUCCIANA", "libell_d_acheminement": "LUCCIANA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B148"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28463287686947beae14a37a9ec2c228175c51e", "fields": {"code_postal": "20290", "code_commune_insee": "2B148", "libell_d_acheminement": "LUCCIANA", "ligne_5": "CASAMOZZA", "nom_de_la_commune": "LUCCIANA", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfb2b7cd71d65e0f0989430f7cb51268f9772c2", "fields": {"code_postal": "20228", "code_commune_insee": "2B152", "libell_d_acheminement": "LURI", "ligne_5": "SANTA SEVERA", "nom_de_la_commune": "LURI", "coordonnees_gps": [42.8844689798, 9.39824491548]}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e614d943b78aded4ccc71db49487df79419b303", "fields": {"nom_de_la_commune": "MAUSOLEO", "libell_d_acheminement": "MAUSOLEO", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B156"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a154823a93cb91bdc41c9fd66b1a0c5465d80c8b", "fields": {"nom_de_la_commune": "MONACIA D OREZZA", "libell_d_acheminement": "MONACIA D OREZZA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B164"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c029ad1e5d1f4b0a460a8eb3a001069090c7e7", "fields": {"nom_de_la_commune": "NOVELLA", "libell_d_acheminement": "NOVELLA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B180"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa6753d4529f6854dbc98fc076c7c94a53e0993", "fields": {"nom_de_la_commune": "ORTALE", "libell_d_acheminement": "ORTALE", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B194"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45418d3090eb8b21baac472453209411b0668ca2", "fields": {"nom_de_la_commune": "ORTIPORIO", "libell_d_acheminement": "ORTIPORIO", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B195"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed87170c607604d77a086353686ce132553c2919", "fields": {"code_postal": "20213", "code_commune_insee": "2B207", "libell_d_acheminement": "PENTA DI CASINCA", "ligne_5": "FOLELLI", "nom_de_la_commune": "PENTA DI CASINCA", "coordonnees_gps": [42.4502169346, 9.47301730801]}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "821acbd2ed17cfcff49cb2223173fc196044ea43", "fields": {"nom_de_la_commune": "PIANO", "libell_d_acheminement": "PIANO", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B214"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a8db3db1c5990a205e3920d04f1945b6886a29", "fields": {"nom_de_la_commune": "PIEDIGRIGGIO", "libell_d_acheminement": "PIEDIGRIGGIO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B220"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b445b890e41f047b707f2c8f06c15ff2954269", "fields": {"nom_de_la_commune": "PIEDIPARTINO", "libell_d_acheminement": "PIEDIPARTINO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B221"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153e101a93fc3a26d8970847a24c67e57e96c908", "fields": {"nom_de_la_commune": "PIETRACORBARA", "libell_d_acheminement": "PIETRACORBARA", "code_postal": "20233", "coordonnees_gps": [42.8294989749, 9.4407054094], "code_commune_insee": "2B224"}, "geometry": {"type": "Point", "coordinates": [9.4407054094, 42.8294989749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0232272031dedef6f5f4d7dad3651a641ab3fe5", "fields": {"nom_de_la_commune": "PIETRA DI VERDE", "libell_d_acheminement": "PIETRA DI VERDE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B225"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae45b34ada06f5db00dcbf363ed76bf402d5319", "fields": {"nom_de_la_commune": "PIETRASERENA", "libell_d_acheminement": "PIETRASERENA", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B226"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9fab53029dafc080d5003c8278ebf8b7251e138", "fields": {"nom_de_la_commune": "PRUNELLI DI CASACCONI", "libell_d_acheminement": "PRUNELLI DI CASACCONI", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B250"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4281b49a1a7035f05eba8499c4b6bc9ea1a1e7", "fields": {"nom_de_la_commune": "QUERCITELLO", "libell_d_acheminement": "QUERCITELLO", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B255"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1990fb9315ff65190a474390507b36e8a44fcf3c", "fields": {"nom_de_la_commune": "RUSIO", "libell_d_acheminement": "RUSIO", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B264"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad68ee4d6d629f57fe776f5e57c7b4845c455da", "fields": {"nom_de_la_commune": "SPELONCATO", "libell_d_acheminement": "SPELONCATO", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B290"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6c61c30742b1dbbad9b4e054f1220c1ed7f341", "fields": {"nom_de_la_commune": "STAZZONA", "libell_d_acheminement": "STAZZONA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B291"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20405f6fa9d9a07358f5630e1e3620a3e24dae3e", "fields": {"nom_de_la_commune": "SAN GAVINO D AMPUGNANI", "libell_d_acheminement": "SAN GAVINO D AMPUGNANI", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B299"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a17bd7bc0fc9df5acb025fe53bbdaf945e4566", "fields": {"nom_de_la_commune": "SAN GAVINO DI TENDA", "libell_d_acheminement": "SAN GAVINO DI TENDA", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B301"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f245d2341cfa97f2b113e0cdd22e50b5be30966", "fields": {"code_postal": "20230", "code_commune_insee": "2B303", "libell_d_acheminement": "SAN GIULIANO", "ligne_5": "ALISTRO", "nom_de_la_commune": "SAN GIULIANO", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d807b30f891d103fc18672c7c62f306498276105", "fields": {"nom_de_la_commune": "SAN LORENZO", "libell_d_acheminement": "SAN LORENZO", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B304"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e849a0fb16884a67ee5b3e474abf6f3c9e4be993", "fields": {"nom_de_la_commune": "SANTA LUCIA DI MERCURIO", "libell_d_acheminement": "SANTA LUCIA DI MERCURIO", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B306"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6797d7aa89c46d4e15a94226359bcfc8e97884c9", "fields": {"nom_de_la_commune": "SANTA MARIA DI LOTA", "libell_d_acheminement": "SANTA MARIA DI LOTA", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B309"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409c26d2ba83bfaa8a95fdd50ec572d994bf63f5", "fields": {"nom_de_la_commune": "SANTA MARIA POGGIO", "libell_d_acheminement": "SANTA MARIA POGGIO", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B311"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34d060a62fe2b03c48972d94ec6787ccf491cd17", "fields": {"code_postal": "20217", "code_commune_insee": "2B314", "libell_d_acheminement": "SANTO PIETRO DI TENDA", "ligne_5": "CASTA", "nom_de_la_commune": "SANTO PIETRO DI TENDA", "coordonnees_gps": [42.7166963955, 9.26424546036]}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7598704cb3aff2334bb32c3c9b0fbf75a44d2d", "fields": {"nom_de_la_commune": "TALASANI", "libell_d_acheminement": "TALASANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B319"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5415d77face175992f1e0bd0a96d5da27f200e7", "fields": {"nom_de_la_commune": "TOMINO", "libell_d_acheminement": "TOMINO", "code_postal": "20248", "coordonnees_gps": [42.9672830665, 9.42945630303], "code_commune_insee": "2B327"}, "geometry": {"type": "Point", "coordinates": [9.42945630303, 42.9672830665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe3ece619ae96fd104a559cb729bf341624865d", "fields": {"nom_de_la_commune": "TRALONCA", "libell_d_acheminement": "TRALONCA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B329"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2ac77a45cde9b6a68e101cb4510ee5827c7c39", "fields": {"nom_de_la_commune": "URTACA", "libell_d_acheminement": "URTACA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B332"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35e9d81a32450c0c4132142ca78a4c802effa04", "fields": {"nom_de_la_commune": "LA FORESTIERE", "libell_d_acheminement": "LA FORESTIERE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51258"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb8bf31c3fff0bb1798a9e300a8ebb24322fca1", "fields": {"nom_de_la_commune": "FRESNE LES REIMS", "libell_d_acheminement": "FRESNE LES REIMS", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51261"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b292d6c72b562d5c841e50b90ef739c9988633", "fields": {"nom_de_la_commune": "FROMENTIERES", "libell_d_acheminement": "FROMENTIERES", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51263"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdf3d42639e3c8601d1659c4413b4745a2098896", "fields": {"nom_de_la_commune": "GERMAINE", "libell_d_acheminement": "GERMAINE", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51266"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a04c7d40eaf1865b86ecb3ffe6c63439beef4ef", "fields": {"nom_de_la_commune": "GIVRY LES LOISY", "libell_d_acheminement": "GIVRY LES LOISY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51273"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e49a75539b80f4dc99c0f03452c62d10da5ba5b", "fields": {"nom_de_la_commune": "GIZAUCOURT", "libell_d_acheminement": "GIZAUCOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51274"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ffba57921b9ef41710c93f97d2a191ce22697d2", "fields": {"nom_de_la_commune": "GLANNES", "libell_d_acheminement": "GLANNES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51275"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b77ada15c397b5eedeb4c3dbcd40623fad49925", "fields": {"nom_de_la_commune": "GOURGANCON", "libell_d_acheminement": "GOURGANCON", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51276"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49dbaf8cb8dda58263f4b287fc4cd74cae7704ef", "fields": {"nom_de_la_commune": "LES GRANDES LOGES", "libell_d_acheminement": "LES GRANDES LOGES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51278"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620dd6cfeaa7d4503739422d89580d507854497b", "fields": {"nom_de_la_commune": "GRAUVES", "libell_d_acheminement": "GRAUVES", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51281"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2a1511bd81ac37d09a03b2063f7576846a03e9", "fields": {"nom_de_la_commune": "GUEUX", "libell_d_acheminement": "GUEUX", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51282"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7146ba26a2754f6bc1d36504dc3d61ac514395", "fields": {"nom_de_la_commune": "HEILTZ LE HUTIER", "libell_d_acheminement": "HEILTZ LE HUTIER", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51288"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fbe4be01fa8caf499bdf9d13ea77e24d8aedfff", "fields": {"nom_de_la_commune": "HERMONVILLE", "libell_d_acheminement": "HERMONVILLE", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51291"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b07ebc23c5f5f48df2596f79ec65c3df0ffaf0a", "fields": {"nom_de_la_commune": "LARZICOURT", "libell_d_acheminement": "LARZICOURT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51316"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec53240b4d20766744caf7b306fc8c400e13775e", "fields": {"nom_de_la_commune": "LEUVRIGNY", "libell_d_acheminement": "LEUVRIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51320"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ddd15c60fd96eacdddd073ab01e52a0cd130a5", "fields": {"nom_de_la_commune": "LHERY", "libell_d_acheminement": "LHERY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51321"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2eb0b95ce1401408cdb5e88169f963feb666297", "fields": {"nom_de_la_commune": "LINTHES", "libell_d_acheminement": "LINTHES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51324"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee492e95368cf37bb49805c41762b0c2f97ff95e", "fields": {"nom_de_la_commune": "LUDES", "libell_d_acheminement": "LUDES", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51333"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac7756ce5686f14f0cfbd5410ea00ba865efb96", "fields": {"nom_de_la_commune": "MAIRY SUR MARNE", "libell_d_acheminement": "MAIRY SUR MARNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51339"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7797dd3f1813407a39ee52dddc965ca6f57c20d", "fields": {"nom_de_la_commune": "MALMY", "libell_d_acheminement": "MALMY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51341"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "003a3255059e15ceee11dfa21b5bf17c97c239e6", "fields": {"code_postal": "51700", "code_commune_insee": "51346", "libell_d_acheminement": "MAREUIL LE PORT", "ligne_5": "PORT A BINSON", "nom_de_la_commune": "MAREUIL LE PORT", "coordonnees_gps": [49.0741079676, 3.71485064458]}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c48f26fe7dc0f2bdd6a59e1f993ec09ed73866", "fields": {"nom_de_la_commune": "MARSON", "libell_d_acheminement": "MARSON", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51354"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc69e51f281250985500e86a38fe8c4a7205bc16", "fields": {"nom_de_la_commune": "LES MESNEUX", "libell_d_acheminement": "LES MESNEUX", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51365"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b631e023b19113e3fa568b41d6a6cde2dd18e849", "fields": {"nom_de_la_commune": "MOEURS VERDEY", "libell_d_acheminement": "MOEURS VERDEY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51369"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc7a31a70f5eb03cef0dd80bda2b2a56903feaa", "fields": {"nom_de_la_commune": "MONCETZ LONGEVAS", "libell_d_acheminement": "MONCETZ LONGEVAS", "code_postal": "51470", "coordonnees_gps": [48.9418441799, 4.42855134186], "code_commune_insee": "51372"}, "geometry": {"type": "Point", "coordinates": [4.42855134186, 48.9418441799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2881cf585fbcc7b31046e7bcfd9ff2e8ec0327", "fields": {"nom_de_la_commune": "MONDEMENT MONTGIVROUX", "libell_d_acheminement": "MONDEMENT MONTGIVROUX", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51374"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2743705d5361af3cad886b554c6962d8b873fd", "fields": {"nom_de_la_commune": "MONTMIRAIL", "libell_d_acheminement": "MONTMIRAIL", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51380"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d318de6b911880c86e25478c83b136570c309d", "fields": {"code_postal": "51270", "code_commune_insee": "51381", "libell_d_acheminement": "MONTMORT LUCY", "ligne_5": "LUCY", "nom_de_la_commune": "MONTMORT LUCY", "coordonnees_gps": [48.9022735758, 3.78172379216]}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0ccbe806377a5b474877c194b102b99a6a0fd7", "fields": {"nom_de_la_commune": "LA NEUVILLE AUX LARRIS", "libell_d_acheminement": "LA NEUVILLE AUX LARRIS", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51398"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77372a9ec875f9a8bff9c8221eb42fba58fdfd3e", "fields": {"nom_de_la_commune": "OIRY", "libell_d_acheminement": "OIRY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51413"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179c218af47c00352886d148743ec261d6d84718", "fields": {"nom_de_la_commune": "OMEY", "libell_d_acheminement": "OMEY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51415"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebda1902030d70b790ebc68c5e6efdc45ed24889", "fields": {"nom_de_la_commune": "OUTREPONT", "libell_d_acheminement": "OUTREPONT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51420"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39b336102b07980d26024073673b1ca45dfcb9b5", "fields": {"nom_de_la_commune": "PASSY GRIGNY", "libell_d_acheminement": "PASSY GRIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51425"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e1e60bc097543e232bff0296e3f12c3887644a", "fields": {"nom_de_la_commune": "PIERRE MORAINS", "libell_d_acheminement": "PIERRE MORAINS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51430"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "634cabf21882cf98d1854425ddb8953170c6baeb", "fields": {"nom_de_la_commune": "POILLY", "libell_d_acheminement": "POILLY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51437"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941702a79ceb6df212f7cc7eababea5076bd72da", "fields": {"nom_de_la_commune": "PRINGY", "libell_d_acheminement": "PRINGY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51446"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18742bc00cc8db9f6d4957ef8c41b83b9ea86de1", "fields": {"nom_de_la_commune": "REIMS LA BRULEE", "libell_d_acheminement": "REIMS LA BRULEE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51455"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c468a342e22a9071da1bb97860d647e7760e57f", "fields": {"nom_de_la_commune": "REUVES", "libell_d_acheminement": "REUVES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51458"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b5d5158f02cf9702b55f6b005a2532ef776bc4", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51460"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930156c0ebaf649d02ba9449292247aa71b54b32", "fields": {"nom_de_la_commune": "SACY", "libell_d_acheminement": "SACY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51471"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d839f5dcb6df9e219b1b26cdc6ce601d246f1f7", "fields": {"nom_de_la_commune": "ST ETIENNE SUR SUIPPE", "libell_d_acheminement": "ST ETIENNE SUR SUIPPE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51477"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64667c4df6f9c47b8f9243cdad5ffbe4659325eb", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51480"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee78d4fcd4623709dd846843f179a0688543955", "fields": {"nom_de_la_commune": "ST HILAIRE LE GRAND", "libell_d_acheminement": "ST HILAIRE LE GRAND", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51486"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cca8e38811173e6b538d626d05c634e3214704c", "fields": {"nom_de_la_commune": "ST JUST SAUVAGE", "libell_d_acheminement": "ST JUST SAUVAGE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51492"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989aba11d4d1137c45b923f41718a8818b1f7a2e", "fields": {"nom_de_la_commune": "ROUILLY", "libell_d_acheminement": "ROUILLY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77391"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44f7cd84832e45fc113475540df4100c1e1f779", "fields": {"nom_de_la_commune": "SABLONNIERES", "libell_d_acheminement": "SABLONNIERES", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77398"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4054c346323fe6c9badb0572f7d9e81253c9d1c5", "fields": {"nom_de_la_commune": "ST ANGE LE VIEL", "libell_d_acheminement": "ST ANGE LE VIEL", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77399"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29aa4dfb68194013dacec3080bd705fd82887ae1", "fields": {"nom_de_la_commune": "ST AUGUSTIN", "libell_d_acheminement": "ST AUGUSTIN", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77400"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7812da36497cdc7d224969907c5c161b83eb2461", "fields": {"nom_de_la_commune": "ST DENIS LES REBAIS", "libell_d_acheminement": "ST DENIS LES REBAIS", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77406"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8f94fd259e04637b6e33d6d75f8ecf4f0d7531", "fields": {"nom_de_la_commune": "ST LOUP DE NAUD", "libell_d_acheminement": "ST LOUP DE NAUD", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77418"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f529c90ae95f2a11566455b9f6546cf18e844852", "fields": {"nom_de_la_commune": "ST MAMMES", "libell_d_acheminement": "ST MAMMES", "code_postal": "77670", "coordonnees_gps": [48.4047875044, 2.85078204772], "code_commune_insee": "77419"}, "geometry": {"type": "Point", "coordinates": [2.85078204772, 48.4047875044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada0c0d26791048afbfa1da542afb001a469ef61", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77423"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6c3d229b6f39aa010ab2701e42248de85b90d1", "fields": {"nom_de_la_commune": "ST MARTIN EN BIERE", "libell_d_acheminement": "ST MARTIN EN BIERE", "code_postal": "77630", "coordonnees_gps": [48.4243787367, 2.57257810234], "code_commune_insee": "77425"}, "geometry": {"type": "Point", "coordinates": [2.57257810234, 48.4243787367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeeefed673f276d67ec44381c272950503dbb812", "fields": {"nom_de_la_commune": "SAMOREAU", "libell_d_acheminement": "SAMOREAU", "code_postal": "77210", "coordonnees_gps": [48.417089136, 2.75506799012], "code_commune_insee": "77442"}, "geometry": {"type": "Point", "coordinates": [2.75506799012, 48.417089136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921093559e3b6b32bf0bf833cdb7661915cd67ce", "fields": {"nom_de_la_commune": "SOGNOLLES EN MONTOIS", "libell_d_acheminement": "SOGNOLLES EN MONTOIS", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77454"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2535f832955b89d132984e23f8c387cc59ecd9", "fields": {"nom_de_la_commune": "TANCROU", "libell_d_acheminement": "TANCROU", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77460"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbc32796c663095b6ae046da9e457ad6263482a", "fields": {"nom_de_la_commune": "THIEUX", "libell_d_acheminement": "THIEUX", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77462"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825d392dee145fe8506205a4d49d3ecb62d48fb1", "fields": {"nom_de_la_commune": "LA TOMBE", "libell_d_acheminement": "LA TOMBE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77467"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e2007c9db964b0c0849daafcce9d5beb24b012", "fields": {"nom_de_la_commune": "TRILBARDOU", "libell_d_acheminement": "TRILBARDOU", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77474"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d2d767bc985542858ca6b81a18c922c6e61e01", "fields": {"nom_de_la_commune": "LE VAUDOUE", "libell_d_acheminement": "LE VAUDOUE", "code_postal": "77123", "coordonnees_gps": [48.3612793646, 2.50123990973], "code_commune_insee": "77485"}, "geometry": {"type": "Point", "coordinates": [2.50123990973, 48.3612793646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efa80203d6ee960498e576301b864cdf5d8461b", "fields": {"nom_de_la_commune": "VAUX LE PENIL", "libell_d_acheminement": "VAUX LE PENIL", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77487"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a54b8fb8c323aecda842bc9741e439e5b6ddb8", "fields": {"nom_de_la_commune": "VIGNELY", "libell_d_acheminement": "VIGNELY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77498"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91b6cf78f5ce84f49629fde2bb7849f98ccb5f64", "fields": {"nom_de_la_commune": "VILLENEUVE LE COMTE", "libell_d_acheminement": "VILLENEUVE LE COMTE", "code_postal": "77174", "coordonnees_gps": [48.8118209596, 2.82523717272], "code_commune_insee": "77508"}, "geometry": {"type": "Point", "coordinates": [2.82523717272, 48.8118209596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317d2099583d41d37c841abe1827fe6d62ae132d", "fields": {"nom_de_la_commune": "VILLEPARISIS", "libell_d_acheminement": "VILLEPARISIS", "code_postal": "77270", "coordonnees_gps": [48.9416412171, 2.61698901012], "code_commune_insee": "77514"}, "geometry": {"type": "Point", "coordinates": [2.61698901012, 48.9416412171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "554298e0a1296132e9d89b2ca3be204481be74d6", "fields": {"nom_de_la_commune": "VILLE ST JACQUES", "libell_d_acheminement": "VILLE ST JACQUES", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77516"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6158016ab725d4c9474f30bbe42c2ae5050b98aa", "fields": {"nom_de_la_commune": "VILLEVAUDE", "libell_d_acheminement": "VILLEVAUDE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77517"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c876f34936c396236ab489ea6e0c325bd577438", "fields": {"nom_de_la_commune": "VINCY MANOEUVRE", "libell_d_acheminement": "VINCY MANOEUVRE", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77526"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "419f9e55983770c8c783882fb491f6b4b77eebce", "fields": {"nom_de_la_commune": "VOISENON", "libell_d_acheminement": "VOISENON", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77528"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cec5851768a39b005352c4a951754a0bd69766", "fields": {"nom_de_la_commune": "ALLAINVILLE", "libell_d_acheminement": "ALLAINVILLE AUX BOIS", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78009"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9ebc645bd56e2fd26123b53ae75c2d78ea7fc0", "fields": {"nom_de_la_commune": "LES ALLUETS LE ROI", "libell_d_acheminement": "LES ALLUETS LE ROI", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78010"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b72a70929b88d55cfa36f8f22a3e420e6229afe", "fields": {"code_postal": "78410", "code_commune_insee": "78029", "libell_d_acheminement": "AUBERGENVILLE", "ligne_5": "ELISABETHVILLE", "nom_de_la_commune": "AUBERGENVILLE", "coordonnees_gps": [48.9601241693, 1.86465256885]}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e250014f1c279267f0cf2a1f9b98a08f8b5be97", "fields": {"nom_de_la_commune": "AULNAY SUR MAULDRE", "libell_d_acheminement": "AULNAY SUR MAULDRE", "code_postal": "78126", "coordonnees_gps": [48.9287058595, 1.84181126526], "code_commune_insee": "78033"}, "geometry": {"type": "Point", "coordinates": [1.84181126526, 48.9287058595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e25b5dce46648e0ca3500bd601c4365d3abf364", "fields": {"nom_de_la_commune": "BAILLY", "libell_d_acheminement": "BAILLY", "code_postal": "78870", "coordonnees_gps": [48.8368156736, 2.08134847066], "code_commune_insee": "78043"}, "geometry": {"type": "Point", "coordinates": [2.08134847066, 48.8368156736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18df17fd2d3d2853bf0453d667bc0e5dbaf935fd", "fields": {"code_postal": "78650", "code_commune_insee": "78062", "libell_d_acheminement": "BEYNES", "ligne_5": "LA MALADRERIE", "nom_de_la_commune": "BEYNES", "coordonnees_gps": [48.853666314, 1.86642479384]}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b69dae10d996a679bc563ec5cde34712e834c7", "fields": {"nom_de_la_commune": "BOISSY SANS AVOIR", "libell_d_acheminement": "BOISSY SANS AVOIR", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78084"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd074daa5ffb7940a1424a7438baf05b448399f", "fields": {"nom_de_la_commune": "BREUIL BOIS ROBERT", "libell_d_acheminement": "BREUIL BOIS ROBERT", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78104"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602041559d1b6bca3bb6e6127f15bf5c27787221", "fields": {"nom_de_la_commune": "BRUEIL EN VEXIN", "libell_d_acheminement": "BRUEIL EN VEXIN", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78113"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0747641df6626dadc0cc9c2adac45c0e2fd4df", "fields": {"nom_de_la_commune": "LA CELLE ST CLOUD", "libell_d_acheminement": "LA CELLE ST CLOUD", "code_postal": "78170", "coordonnees_gps": [48.8470786513, 2.13575321605], "code_commune_insee": "78126"}, "geometry": {"type": "Point", "coordinates": [2.13575321605, 48.8470786513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8206dcb06bdc6b44e6bea6a6df8259d4c4672a", "fields": {"nom_de_la_commune": "CHATOU", "libell_d_acheminement": "CHATOU", "code_postal": "78400", "coordonnees_gps": [48.8965449448, 2.15335185761], "code_commune_insee": "78146"}, "geometry": {"type": "Point", "coordinates": [2.15335185761, 48.8965449448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4116f171aedd8ce66e52b672c6d902324235671", "fields": {"nom_de_la_commune": "CHAVENAY", "libell_d_acheminement": "CHAVENAY", "code_postal": "78450", "coordonnees_gps": [48.8376725842, 2.00127278452], "code_commune_insee": "78152"}, "geometry": {"type": "Point", "coordinates": [2.00127278452, 48.8376725842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722f418ed723bc626daacb4b797132c1ec3ab532", "fields": {"nom_de_la_commune": "CHOISEL", "libell_d_acheminement": "CHOISEL", "code_postal": "78460", "coordonnees_gps": [48.6939321598, 2.02878492296], "code_commune_insee": "78162"}, "geometry": {"type": "Point", "coordinates": [2.02878492296, 48.6939321598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bae21696d20b3cac6661ba1fd7799cd779d7a61", "fields": {"nom_de_la_commune": "CONFLANS STE HONORINE", "libell_d_acheminement": "CONFLANS STE HONORINE", "code_postal": "78700", "coordonnees_gps": [49.0000390697, 2.09915995955], "code_commune_insee": "78172"}, "geometry": {"type": "Point", "coordinates": [2.09915995955, 49.0000390697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73368e26682492052f02d4eb8484fa8615e600c5", "fields": {"nom_de_la_commune": "CRESPIERES", "libell_d_acheminement": "CRESPIERES", "code_postal": "78121", "coordonnees_gps": [48.8823296337, 1.92062168641], "code_commune_insee": "78189"}, "geometry": {"type": "Point", "coordinates": [1.92062168641, 48.8823296337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e3628ea2cab2d2e33f6815992893e51308905a", "fields": {"nom_de_la_commune": "DAMMARTIN EN SERVE", "libell_d_acheminement": "DAMMARTIN EN SERVE", "code_postal": "78111", "coordonnees_gps": [48.9108779555, 1.61854818373], "code_commune_insee": "78192"}, "geometry": {"type": "Point", "coordinates": [1.61854818373, 48.9108779555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1d8b43f86339d9e4b682b05408a5f7026dec83", "fields": {"nom_de_la_commune": "DAVRON", "libell_d_acheminement": "DAVRON", "code_postal": "78810", "coordonnees_gps": [48.8749563511, 1.96917098756], "code_commune_insee": "78196"}, "geometry": {"type": "Point", "coordinates": [1.96917098756, 48.8749563511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7bfcc6cb53fce56272e78a12ea7c5aae3d36f08", "fields": {"code_postal": "78690", "code_commune_insee": "78220", "libell_d_acheminement": "LES ESSARTS LE ROI", "ligne_5": "ST HUBERT LE ROI", "nom_de_la_commune": "LES ESSARTS LE ROI", "coordonnees_gps": [48.7275992987, 1.8882726457]}, "geometry": {"type": "Point", "coordinates": [1.8882726457, 48.7275992987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8aceb745090b9eda7c129aaf4e489ba75525b76", "fields": {"nom_de_la_commune": "FLEXANVILLE", "libell_d_acheminement": "FLEXANVILLE", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78236"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea2efad642721d8d640b1183776c246c6170683", "fields": {"nom_de_la_commune": "FLINS NEUVE EGLISE", "libell_d_acheminement": "FLINS NEUVE EGLISE", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78237"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26fcd79f5c91fc5b259856be368c4638256ac6a1", "fields": {"nom_de_la_commune": "GAMBAIS", "libell_d_acheminement": "GAMBAIS", "code_postal": "78950", "coordonnees_gps": [48.7795112259, 1.67689608055], "code_commune_insee": "78263"}, "geometry": {"type": "Point", "coordinates": [1.67689608055, 48.7795112259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429c2302fe76244668d6946381eecd0bd451507b", "fields": {"nom_de_la_commune": "GARGENVILLE", "libell_d_acheminement": "GARGENVILLE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78267"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bce1a9b20115bd523741c377adf8e5c64181898", "fields": {"nom_de_la_commune": "GUYANCOURT", "libell_d_acheminement": "GUYANCOURT", "code_postal": "78280", "coordonnees_gps": [48.7729816592, 2.07605378449], "code_commune_insee": "78297"}, "geometry": {"type": "Point", "coordinates": [2.07605378449, 48.7729816592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f042287ee049b2ba22952e6e47c17465b461d39", "fields": {"nom_de_la_commune": "HERBEVILLE", "libell_d_acheminement": "HERBEVILLE", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78305"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490a7394c33420ab3a09044481571eab8d86aab2", "fields": {"nom_de_la_commune": "HOUILLES", "libell_d_acheminement": "HOUILLES", "code_postal": "78800", "coordonnees_gps": [48.9266017706, 2.1865630557], "code_commune_insee": "78311"}, "geometry": {"type": "Point", "coordinates": [2.1865630557, 48.9266017706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9920c432a5e8e95223d2c7d77e420936b88cb47b", "fields": {"nom_de_la_commune": "LONGVILLIERS", "libell_d_acheminement": "LONGVILLIERS", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78349"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b321044eb2b15e36a7e10d939e23d12f18a381", "fields": {"code_postal": "78114", "code_commune_insee": "78356", "libell_d_acheminement": "MAGNY LES HAMEAUX", "ligne_5": "CRESSELY", "nom_de_la_commune": "MAGNY LES HAMEAUX", "coordonnees_gps": [48.7411308441, 2.05157793037]}, "geometry": {"type": "Point", "coordinates": [2.05157793037, 48.7411308441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a42774cfde6952976d7530775b89df95f12e15a", "fields": {"code_postal": "78160", "code_commune_insee": "78372", "libell_d_acheminement": "MARLY LE ROI", "ligne_5": "MONTVAL", "nom_de_la_commune": "MARLY LE ROI", "coordonnees_gps": [48.8656792122, 2.09169348981]}, "geometry": {"type": "Point", "coordinates": [2.09169348981, 48.8656792122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d754f556b2b614b798a8fc9e7fb3386c35bd637", "fields": {"nom_de_la_commune": "MAULETTE", "libell_d_acheminement": "MAULETTE", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78381"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c351fe37c4632a98d5a5981839b7f80eac85db9", "fields": {"nom_de_la_commune": "MERICOURT", "libell_d_acheminement": "MERICOURT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78391"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87d93096ad06d0d9972c495199bbf630cae6894", "fields": {"nom_de_la_commune": "MEULAN EN YVELINES", "libell_d_acheminement": "MEULAN EN YVELINES", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78401"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ae04e7383a504552d433626af83dc2f9c640ea", "fields": {"nom_de_la_commune": "MONTCHAUVET", "libell_d_acheminement": "MONTCHAUVET", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78417"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b96483d8c6ebfa641cb516e1cc4695e2660fb78", "fields": {"nom_de_la_commune": "MONTFORT L AMAURY", "libell_d_acheminement": "MONTFORT L AMAURY", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78420"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b9934423a2997d6f65062ce7162ef9028684ee", "fields": {"nom_de_la_commune": "MOUSSEAUX SUR SEINE", "libell_d_acheminement": "MOUSSEAUX SUR SEINE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78437"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c880014efa21365f7156ac916677e102cc6fedad", "fields": {"nom_de_la_commune": "LES MUREAUX", "libell_d_acheminement": "LES MUREAUX", "code_postal": "78130", "coordonnees_gps": [48.9830853894, 1.92106334899], "code_commune_insee": "78440"}, "geometry": {"type": "Point", "coordinates": [1.92106334899, 48.9830853894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a21aac3b9ca23c4ba6f44ca122033cb0fe531ab", "fields": {"nom_de_la_commune": "NEAUPHLE LE CHATEAU", "libell_d_acheminement": "NEAUPHLE LE CHATEAU", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78442"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7034a12fc1f2e61725f7c3f07fb5076a5584b736", "fields": {"nom_de_la_commune": "PARAY DOUAVILLE", "libell_d_acheminement": "PARAY DOUAVILLE", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78478"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1883bd89d155a27309aa967025a3a9ca56dad7e1", "fields": {"nom_de_la_commune": "PLAISIR", "libell_d_acheminement": "PLAISIR", "code_postal": "78370", "coordonnees_gps": [48.8126445844, 1.94672191272], "code_commune_insee": "78490"}, "geometry": {"type": "Point", "coordinates": [1.94672191272, 48.8126445844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90bbb10906cb0f632a4247cdf1abf35281766bfa", "fields": {"nom_de_la_commune": "POIGNY LA FORET", "libell_d_acheminement": "POIGNY LA FORET", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78497"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69c40517c2c0d15d382d65cfa8d93f438c18341", "fields": {"nom_de_la_commune": "RAIZEUX", "libell_d_acheminement": "RAIZEUX", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78516"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ceb4684bd2f3ca0fbd5f7dda7a9569821a0971", "fields": {"nom_de_la_commune": "RAMBOUILLET", "libell_d_acheminement": "RAMBOUILLET", "code_postal": "78120", "coordonnees_gps": [48.6165414495, 1.85994599568], "code_commune_insee": "78517"}, "geometry": {"type": "Point", "coordinates": [1.85994599568, 48.6165414495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b756a0f975753efc2cf881aa51b064f6b32686b9", "fields": {"nom_de_la_commune": "RENNEMOULIN", "libell_d_acheminement": "RENNEMOULIN", "code_postal": "78590", "coordonnees_gps": [48.8425372745, 2.05184137552], "code_commune_insee": "78518"}, "geometry": {"type": "Point", "coordinates": [2.05184137552, 48.8425372745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc8de66537cd097920dc33d60fd3683b3ebcc55d", "fields": {"nom_de_la_commune": "ST FORGET", "libell_d_acheminement": "ST FORGET", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78548"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a723c2d5e6095358d94462861d958b2ccd3e0557", "fields": {"nom_de_la_commune": "ST GERMAIN EN LAYE", "libell_d_acheminement": "ST GERMAIN EN LAYE", "code_postal": "78100", "coordonnees_gps": [48.9409298615, 2.0992045515], "code_commune_insee": "78551"}, "geometry": {"type": "Point", "coordinates": [2.0992045515, 48.9409298615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fed56f6765134273da0effd6ff01bdda520a2b0", "fields": {"nom_de_la_commune": "ST MARTIN DE BRETHENCOURT", "libell_d_acheminement": "ST MARTIN DE BRETHENCOURT", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78564"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a9aaed39e86c606450e0583da416808606e0aa", "fields": {"nom_de_la_commune": "ST MARTIN LA GARENNE", "libell_d_acheminement": "ST MARTIN LA GARENNE", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78567"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689faf0f56393849886772f7b4958ddfce9f5f08", "fields": {"nom_de_la_commune": "STE MESME", "libell_d_acheminement": "STE MESME", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78569"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ada4b0cf915e7464e8fe5da3a45b449d371798", "fields": {"code_postal": "78860", "code_commune_insee": "78571", "libell_d_acheminement": "ST NOM LA BRETECHE", "ligne_5": "LA BRETECHE", "nom_de_la_commune": "ST NOM LA BRETECHE", "coordonnees_gps": [48.8631666578, 2.01892251697]}, "geometry": {"type": "Point", "coordinates": [2.01892251697, 48.8631666578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5923abac4d5442c982e3a02b97a783f4b567226d", "fields": {"nom_de_la_commune": "ST REMY LES CHEVREUSE", "libell_d_acheminement": "ST REMY LES CHEVREUSE", "code_postal": "78470", "coordonnees_gps": [48.7175747571, 2.05026286373], "code_commune_insee": "78575"}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c95d4c45a1a42f49739752cc36304ac97e3c07", "fields": {"code_postal": "78470", "code_commune_insee": "78575", "libell_d_acheminement": "ST REMY LES CHEVREUSE", "ligne_5": "RHODON", "nom_de_la_commune": "ST REMY LES CHEVREUSE", "coordonnees_gps": [48.7175747571, 2.05026286373]}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb49a9a6bcf92dc0792c0bd627cb1a5acef9998", "fields": {"nom_de_la_commune": "SAULX MARCHAIS", "libell_d_acheminement": "SAULX MARCHAIS", "code_postal": "78650", "coordonnees_gps": [48.853666314, 1.86642479384], "code_commune_insee": "78588"}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d82b829ddad741bddd7972cc21dd95420fbdf28", "fields": {"nom_de_la_commune": "SENLISSE", "libell_d_acheminement": "SENLISSE", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78590"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6ba6e28acffabb21dc765c40f6e217b00e0663", "fields": {"nom_de_la_commune": "SEPTEUIL", "libell_d_acheminement": "SEPTEUIL", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78591"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64ee3aae77276784f1930b0b243ac490358b1c4", "fields": {"nom_de_la_commune": "SOINDRES", "libell_d_acheminement": "SOINDRES", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78597"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa131ee4c7d2a3ce08ec0a833a1adf2b5c7580d", "fields": {"nom_de_la_commune": "TESSANCOURT SUR AUBETTE", "libell_d_acheminement": "TESSANCOURT SUR AUBETTE", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78609"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a0fc29153ebcdb05fadce20ada79612d7389b2", "fields": {"nom_de_la_commune": "VELIZY VILLACOUBLAY", "libell_d_acheminement": "VELIZY VILLACOUBLAY", "code_postal": "78140", "coordonnees_gps": [48.7839368553, 2.19726816302], "code_commune_insee": "78640"}, "geometry": {"type": "Point", "coordinates": [2.19726816302, 48.7839368553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377623ac8d5b040c886cfb853218418c52f49b9b", "fields": {"nom_de_la_commune": "VERNEUIL SUR SEINE", "libell_d_acheminement": "VERNEUIL SUR SEINE", "code_postal": "78480", "coordonnees_gps": [48.9869978522, 1.96306359686], "code_commune_insee": "78642"}, "geometry": {"type": "Point", "coordinates": [1.96306359686, 48.9869978522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d04b6ecc68338c40d8f8ec514d724a3fddf0cc", "fields": {"code_postal": "78540", "code_commune_insee": "78643", "libell_d_acheminement": "VERNOUILLET", "ligne_5": "MARSINVAL", "nom_de_la_commune": "VERNOUILLET", "coordonnees_gps": [48.9651204678, 1.97419104222]}, "geometry": {"type": "Point", "coordinates": [1.97419104222, 48.9651204678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8d5722a1be9a0f33db80158ab62d9648262d9ca", "fields": {"nom_de_la_commune": "VERT", "libell_d_acheminement": "VERT", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78647"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f32464b7b673ec02f1830c220e5fdf2172964a", "fields": {"nom_de_la_commune": "VILLENNES SUR SEINE", "libell_d_acheminement": "VILLENNES SUR SEINE", "code_postal": "78670", "coordonnees_gps": [48.943861939, 1.99265985453], "code_commune_insee": "78672"}, "geometry": {"type": "Point", "coordinates": [1.99265985453, 48.943861939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a3d198ece7bab881d5981507071afa0b7bfbe92", "fields": {"nom_de_la_commune": "AMAILLOUX", "libell_d_acheminement": "AMAILLOUX", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79008"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6401cd727317b5a16e42e1e7d7182261a8d21bb0", "fields": {"nom_de_la_commune": "AMURE", "libell_d_acheminement": "AMURE", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79009"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75360234e0cdd3a5733fef590519d929daea8320", "fields": {"nom_de_la_commune": "ARCAIS", "libell_d_acheminement": "ARCAIS", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79010"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99584882d59b81ac7456cfb57371838b62ebccdd", "fields": {"nom_de_la_commune": "ARDILLEUX", "libell_d_acheminement": "ARDILLEUX", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79011"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439dde2b9f34f168a38b068fd37261e473d97a8e", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "LE BREUIL SOUS ARGENTON", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da70d91bdcfb9a58cdb6eedaceb5e277f019f03d", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "MOUTIERS SOUS ARGENTON", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76cf63393c1825fbcaec227fd3c463e76b37735", "fields": {"code_postal": "79290", "code_commune_insee": "79014", "libell_d_acheminement": "ARGENTON L EGLISE", "ligne_5": "BAGNEUX", "nom_de_la_commune": "ARGENTON L EGLISE", "coordonnees_gps": [47.061559842, -0.28224777481]}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d51ccce0a3ea287a3b1826f0f5e66f216326d1e", "fields": {"nom_de_la_commune": "AUBIGNE", "libell_d_acheminement": "AUBIGNE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79018"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30226d63bd6b6466bd4914e8d29ce6ef5c6a01e0", "fields": {"nom_de_la_commune": "AUGE", "libell_d_acheminement": "AUGE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79020"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cffa861c933961e731f78187a69b3bd6e2fd68", "fields": {"nom_de_la_commune": "AVAILLES THOUARSAIS", "libell_d_acheminement": "AVAILLES THOUARSAIS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79022"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa6afca64109b46b02ff403846690e07783b3d3", "fields": {"nom_de_la_commune": "AVON", "libell_d_acheminement": "AVON", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79023"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541f6dc07b6806ed3106d32798461a6f2cab71f3", "fields": {"code_postal": "79360", "code_commune_insee": "79031", "libell_d_acheminement": "BEAUVOIR SUR NIORT", "ligne_5": "LE CORMENIER", "nom_de_la_commune": "BEAUVOIR SUR NIORT", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3566ae4bd07583be5a32f55d7d5257781974f09", "fields": {"nom_de_la_commune": "BECELEUF", "libell_d_acheminement": "BECELEUF", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79032"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2383efacd9ca1322eb02d785055224ae74c94103", "fields": {"nom_de_la_commune": "LA CRECHE", "libell_d_acheminement": "LA CRECHE", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79048"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1cb104e65b9525d83568d4ce8813a2fee70065", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "CLAZAY", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd2f333c14a594b7e949e485c3671ef91b308b3", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "NOIRLIEU", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6422d34d1087f2d135124fc37853e1a1da5bc338", "fields": {"nom_de_la_commune": "VALLECALLE", "libell_d_acheminement": "VALLECALLE", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B333"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14248c5427dfd3a4e815d6077848674ee9054e8a", "fields": {"nom_de_la_commune": "VALLE DI CAMPOLORO", "libell_d_acheminement": "VALLE DI CAMPOLORO", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B335"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5f53b9b56261d8e129e6b648716eae34ef92c4", "fields": {"nom_de_la_commune": "VENACO", "libell_d_acheminement": "VENACO", "code_postal": "20231", "coordonnees_gps": [42.2138878087, 9.13676317073], "code_commune_insee": "2B341"}, "geometry": {"type": "Point", "coordinates": [9.13676317073, 42.2138878087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823b6fa17f16c5829b3c9dd1739aa358ad77f199", "fields": {"nom_de_la_commune": "VERDESE", "libell_d_acheminement": "VERDESE", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B344"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a92b813352f532a41223b28e93f3ec2907f635e", "fields": {"nom_de_la_commune": "VEZZANI", "libell_d_acheminement": "VEZZANI", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B347"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed01989929da2a3363db81eb9da453efa70ea78f", "fields": {"nom_de_la_commune": "VIVARIO", "libell_d_acheminement": "VIVARIO", "code_postal": "20219", "coordonnees_gps": [42.1546750022, 9.13106391385], "code_commune_insee": "2B354"}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f076c438686361cc13d65147637ed8da01e89802", "fields": {"nom_de_la_commune": "VOLPAJOLA", "libell_d_acheminement": "VOLPAJOLA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B355"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee4c71c51bb15d0a2cbc547d9b6a9aa6567e1c0", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "ST SAUVEUR", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bb5595162ffbd973cf47fd3bffa3892c2add05", "fields": {"nom_de_la_commune": "BRULAIN", "libell_d_acheminement": "BRULAIN", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79058"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e99af5e5f3525440743df6c677c1da9f4b17f43", "fields": {"nom_de_la_commune": "LA CHAPELLE POUILLOUX", "libell_d_acheminement": "LA CHAPELLE POUILLOUX", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79074"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370c49039c04fa33f52bcf3459002c3ed2fb02ce", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "ST AUBIN DE BAUBIGNE", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ddda0d2da96e442488143ba0a2a15befc86c9a", "fields": {"nom_de_la_commune": "CHAURAY", "libell_d_acheminement": "CHAURAY", "code_postal": "79180", "coordonnees_gps": [46.3517152299, -0.381353087683], "code_commune_insee": "79081"}, "geometry": {"type": "Point", "coordinates": [-0.381353087683, 46.3517152299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1aafc19633a4e93fac01bb27ccea285f6fb213", "fields": {"nom_de_la_commune": "CHEF BOUTONNE", "libell_d_acheminement": "CHEF BOUTONNE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79083"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b074c1ce2de98a2c680677f9491a4ed50d6fe912", "fields": {"nom_de_la_commune": "CHEY", "libell_d_acheminement": "CHEY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79087"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577cc67b2ef5a4701eba9826c6fb3c3ead321120", "fields": {"nom_de_la_commune": "CHICHE", "libell_d_acheminement": "CHICHE", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79088"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd0358d89715e8ba9f49424ea15da368232d513", "fields": {"nom_de_la_commune": "CHIZE", "libell_d_acheminement": "CHIZE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79090"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d0d8938529d7f5cd91570f65a734ed9018253b4", "fields": {"nom_de_la_commune": "CIRIERES", "libell_d_acheminement": "CIRIERES", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79091"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b4675561c0c1aa6c16ce2f1f89704ab6d68be52", "fields": {"nom_de_la_commune": "CLESSE", "libell_d_acheminement": "CLESSE", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79094"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548b18cbd0b067ece368563edc0ca92f095d9bf7", "fields": {"nom_de_la_commune": "CLUSSAIS LA POMMERAIE", "libell_d_acheminement": "CLUSSAIS LA POMMERAIE", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79095"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc2fe86588e2832dbb16b7421aca8eade456de1", "fields": {"nom_de_la_commune": "COULONGES SUR L AUTIZE", "libell_d_acheminement": "COULONGES SUR L AUTIZE", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79101"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a09bcbb85e7847cf1ed26ffdf7ef561252d7421e", "fields": {"nom_de_la_commune": "COUTIERES", "libell_d_acheminement": "COUTIERES", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79105"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b433b42e7bf34b797a01326d9a6e83e618a92c89", "fields": {"nom_de_la_commune": "COUTURE D ARGENSON", "libell_d_acheminement": "COUTURE D ARGENSON", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79106"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f01623bba5616c460bc220c638b4336768627e", "fields": {"nom_de_la_commune": "EXOUDUN", "libell_d_acheminement": "EXOUDUN", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79115"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "398439df9d44d8329958d08f3752556ac04fcbdf", "fields": {"nom_de_la_commune": "FENERY", "libell_d_acheminement": "FENERY", "code_postal": "79450", "coordonnees_gps": [46.6633315069, -0.348872972345], "code_commune_insee": "79118"}, "geometry": {"type": "Point", "coordinates": [-0.348872972345, 46.6633315069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9701799dbfa280ef6097f4d14ddb94b0f046d313", "fields": {"nom_de_la_commune": "LES FORGES", "libell_d_acheminement": "LES FORGES", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79124"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f92f90a89ab1cc3c95380030240d2ce7bb549bf", "fields": {"nom_de_la_commune": "FRESSINES", "libell_d_acheminement": "FRESSINES", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79129"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c2715d10405ceb1b4eb39b5f940c200fd0856", "fields": {"code_postal": "79220", "code_commune_insee": "79133", "libell_d_acheminement": "GERMOND ROUVRE", "ligne_5": "ROUVRE", "nom_de_la_commune": "GERMOND ROUVRE", "coordonnees_gps": [46.4780154702, -0.409601333646]}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2151c776a78f3486346354b9025ce37730b01f0", "fields": {"nom_de_la_commune": "IRAIS", "libell_d_acheminement": "IRAIS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79141"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a639607873cc6fa1c5bdfa3fa8932c2883336c1", "fields": {"nom_de_la_commune": "LIMALONGES", "libell_d_acheminement": "LIMALONGES", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79150"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67a9949106c60f4acf876696603676324a2f1f1", "fields": {"nom_de_la_commune": "MAISONTIERS", "libell_d_acheminement": "MAISONTIERS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79165"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504d142a4094c2d56a5893841d717c1e179847aa", "fields": {"nom_de_la_commune": "MENIGOUTE", "libell_d_acheminement": "MENIGOUTE", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79176"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96873fe8e69c3ee43f6e4dd84c87940ae9ee84fe", "fields": {"nom_de_la_commune": "MONCOUTANT", "libell_d_acheminement": "MONCOUTANT", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79179"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126aa04b97a8b2421e1b03405cbdec20a147f34b", "fields": {"nom_de_la_commune": "MOUGON", "libell_d_acheminement": "MOUGON", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79185"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fb3ee7d80adb074dc98795f743fc5de7a8aba4", "fields": {"nom_de_la_commune": "NANTEUIL", "libell_d_acheminement": "NANTEUIL", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79189"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b6e20cfe2632db32ef172aa6ffd9fa91968da7", "fields": {"nom_de_la_commune": "NIORT", "libell_d_acheminement": "NIORT", "code_postal": "79000", "coordonnees_gps": [46.3258954005, -0.471948799186], "code_commune_insee": "79191"}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71a39c5fdde4ed218991592e5074cc3e9604a08", "fields": {"nom_de_la_commune": "OROUX", "libell_d_acheminement": "OROUX", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79197"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f2a45b3ead02bc13328b198ffc693a6e144be2", "fields": {"nom_de_la_commune": "PAIZAY LE CHAPT", "libell_d_acheminement": "PAIZAY LE CHAPT", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79198"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e35c4e5fdebe8d6b68d6b14f841fefab580d649", "fields": {"nom_de_la_commune": "PAIZAY LE TORT", "libell_d_acheminement": "PAIZAY LE TORT", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79199"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfafbb6cf47c05ff6c44904adaf0800fb0ab10e0", "fields": {"nom_de_la_commune": "PAMPLIE", "libell_d_acheminement": "PAMPLIE", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79200"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94281913a0b94383336e680daf74f8195728372", "fields": {"nom_de_la_commune": "PARTHENAY", "libell_d_acheminement": "PARTHENAY", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79202"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27780e6df8d97122dd77b1f50b3ed1766560098b", "fields": {"nom_de_la_commune": "PERIGNE", "libell_d_acheminement": "PERIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79204"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620992477be5ed6ea5b1cdfb44ac11eb4980de38", "fields": {"nom_de_la_commune": "PERS", "libell_d_acheminement": "PERS", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79205"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380336ebda6c5f43757e288147c507c5ba989d0f", "fields": {"nom_de_la_commune": "PUIHARDY", "libell_d_acheminement": "PUIHARDY", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79223"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7c67c0c5db91f6e570b29f1602b10834b82db4", "fields": {"nom_de_la_commune": "REFFANNES", "libell_d_acheminement": "REFFANNES", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79225"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e602e3ba6eb020d779e94c725ed4b23af27c1d", "fields": {"nom_de_la_commune": "ST CYR LA LANDE", "libell_d_acheminement": "ST CYR LA LANDE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79244"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a4ea5443270e1178742dbdff36a1a930b519bd", "fields": {"nom_de_la_commune": "ST ETIENNE LA CIGOGNE", "libell_d_acheminement": "ST ETIENNE LA CIGOGNE", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79247"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d7f7f938a0730f50ff5db1d2759dfc6d4686aa", "fields": {"nom_de_la_commune": "ST GEORGES DE NOISNE", "libell_d_acheminement": "ST GEORGES DE NOISNE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79253"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c07719107bd0d68a1081e124a5636b9262238f", "fields": {"nom_de_la_commune": "ST GEORGES DE REX", "libell_d_acheminement": "ST GEORGES DE REX", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79254"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2af9ad9b6468e5e9638812c5db2256612ab1f3", "fields": {"nom_de_la_commune": "ST GERMAIN DE LONGUE CHAUME", "libell_d_acheminement": "ST GERMAIN DE LONGUE CHAUME", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79255"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74115f19250e6c1559d509c43b031ec3f0bd6a2", "fields": {"nom_de_la_commune": "ST JOUIN DE MILLY", "libell_d_acheminement": "ST JOUIN DE MILLY", "code_postal": "79380", "coordonnees_gps": [46.7639583246, -0.657227871413], "code_commune_insee": "79261"}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113ec5dca1787eb8ff9cbd14a50897b46084ddd4", "fields": {"nom_de_la_commune": "ST LEGER DE LA MARTINIERE", "libell_d_acheminement": "ST LEGER DE LA MARTINIERE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79264"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075ddcc00091951996db0c72b7fecd02edfc6263", "fields": {"nom_de_la_commune": "ST MAIXENT DE BEUGNE", "libell_d_acheminement": "ST MAIXENT DE BEUGNE", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79269"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173cf701517ad73cf19c70104983fda1518e3969", "fields": {"nom_de_la_commune": "ST MARTIN DE ST MAIXENT", "libell_d_acheminement": "ST MARTIN DE ST MAIXENT", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79276"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0120a80729dda555060fe28e65ddcb76a8f71b2c", "fields": {"nom_de_la_commune": "ST MARTIN DE SANZAY", "libell_d_acheminement": "ST MARTIN DE SANZAY", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79277"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43743bf360c9462e6a3fae7d46b2dcd490b3ce51", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79282"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d3ca566ca5e89cc65a0ba5f4ac22006976776a", "fields": {"nom_de_la_commune": "ST ROMANS DES CHAMPS", "libell_d_acheminement": "ST ROMANS DES CHAMPS", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79294"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c46f7d114a8f9612af2a645362878fee7c0ca3c", "fields": {"nom_de_la_commune": "STE SOLINE", "libell_d_acheminement": "STE SOLINE", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79297"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a167ec194b10888028a19ad0cc0f682d6836823", "fields": {"nom_de_la_commune": "STE VERGE", "libell_d_acheminement": "STE VERGE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79300"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03aa3557860ce09ca966dc41d4634a9af1195d8e", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79303"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102085a7a2a8da6743b2ec970ef4528e0e03d392", "fields": {"nom_de_la_commune": "SCIECQ", "libell_d_acheminement": "SCIECQ", "code_postal": "79000", "coordonnees_gps": [46.3258954005, -0.471948799186], "code_commune_insee": "79308"}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b17708d869d2ea97ae1ebec7b04907468fc30f", "fields": {"nom_de_la_commune": "SOMPT", "libell_d_acheminement": "SOMPT", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79314"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad84bd46095f764287e412e2fb16dce7e433acd3", "fields": {"nom_de_la_commune": "SOUTIERS", "libell_d_acheminement": "SOUTIERS", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79318"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aabc98e808d8b37c4bedf697f45e7b25ec12560", "fields": {"nom_de_la_commune": "SURIN", "libell_d_acheminement": "SURIN", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79320"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79729d33aecc33c8ab2f6f4b1709166932984b2b", "fields": {"nom_de_la_commune": "TAIZE", "libell_d_acheminement": "TAIZE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79321"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c74ec37067afbda627bac7f8061df2ded7185b1", "fields": {"nom_de_la_commune": "TESSONNIERE", "libell_d_acheminement": "TESSONNIERE", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79325"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48293e99cde1baa157876fc161c68ddd6312714", "fields": {"nom_de_la_commune": "THORIGNY SUR LE MIGNON", "libell_d_acheminement": "THORIGNY SUR LE MIGNON", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79328"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38df141d63d1e579d5120693f37bd3658462fa4", "fields": {"nom_de_la_commune": "TILLOU", "libell_d_acheminement": "TILLOU", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79330"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f4a0f36de139a4e10c40ec53167adb96c67f6c", "fields": {"nom_de_la_commune": "TRAYES", "libell_d_acheminement": "TRAYES", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79332"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdea24d5cdcad7744882d8f8894ee8143dd3b98", "fields": {"nom_de_la_commune": "USSEAU", "libell_d_acheminement": "USSEAU", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79334"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae26163452457880d104a45bb232738b1238511", "fields": {"nom_de_la_commune": "LE VANNEAU IRLEAU", "libell_d_acheminement": "LE VANNEAU IRLEAU", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79337"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b5bf8526e8bca93d42bcec0e7f218a4245dd005", "fields": {"nom_de_la_commune": "VERNOUX EN GATINE", "libell_d_acheminement": "VERNOUX EN GATINE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79342"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e720da1a3398a8ceb2c97501adbe39f7ef7964ae", "fields": {"nom_de_la_commune": "VERNOUX SUR BOUTONNE", "libell_d_acheminement": "VERNOUX SUR BOUTONNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79343"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3adba4d26bdd87ef2234cc7b583a0806b31ec9d9", "fields": {"nom_de_la_commune": "VILLEMAIN", "libell_d_acheminement": "VILLEMAIN", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79349"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2f78b64bba11179058f1e48ce058dbb6aa48d0", "fields": {"nom_de_la_commune": "ABBEVILLE", "libell_d_acheminement": "ABBEVILLE", "code_postal": "80100", "coordonnees_gps": [50.1084897996, 1.83194053005], "code_commune_insee": "80001"}, "geometry": {"type": "Point", "coordinates": [1.83194053005, 50.1084897996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd68536a0a16669a368f1479b7aca8b5508de10", "fields": {"nom_de_la_commune": "AGENVILLE", "libell_d_acheminement": "AGENVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80005"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef521a76fe9364d0d6c3e4ef7d3d9abd648da09e", "fields": {"nom_de_la_commune": "AIRAINES", "libell_d_acheminement": "AIRAINES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80013"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f0a3acd9f6b0722b07781b8e491b6ff0a5a217", "fields": {"nom_de_la_commune": "ALBERT", "libell_d_acheminement": "ALBERT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80016"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb898066858c0e1241fb405260b49f7ac7d7402", "fields": {"nom_de_la_commune": "AMIENS", "libell_d_acheminement": "AMIENS", "code_postal": "80090", "coordonnees_gps": [49.9004650343, 2.29084588963], "code_commune_insee": "80021"}, "geometry": {"type": "Point", "coordinates": [2.29084588963, 49.9004650343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f4130a5d8647f31daf4c9a022495c2c99d6793", "fields": {"nom_de_la_commune": "ARGOULES", "libell_d_acheminement": "ARGOULES", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80025"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64dcb8b2fc322cfd306f23d20e9367b10a1bf00", "fields": {"nom_de_la_commune": "ARMANCOURT", "libell_d_acheminement": "ARMANCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80027"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198c7703813aaa0da1305e6f41d147ba1062bdfb", "fields": {"nom_de_la_commune": "ARQUEVES", "libell_d_acheminement": "ARQUEVES", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80028"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74e6d6d6344c224e6ca95c77d1055166bbcf5e7", "fields": {"nom_de_la_commune": "AVESNES CHAUSSOY", "libell_d_acheminement": "AVESNES CHAUSSOY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80048"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd51422aeb99b870f0bc3c94e4794d069b4b19e0", "fields": {"nom_de_la_commune": "BARLEUX", "libell_d_acheminement": "BARLEUX", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80054"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7ca713cd786f9b821a0f0954b79978dee35146", "fields": {"nom_de_la_commune": "BAYENCOURT", "libell_d_acheminement": "BAYENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80057"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "339c36d613e2ab43a29356f439b696814854bc90", "fields": {"nom_de_la_commune": "BEHENCOURT", "libell_d_acheminement": "BEHENCOURT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80077"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c87f577d575139981e39e990c715eb0071cd89d", "fields": {"nom_de_la_commune": "BERGICOURT", "libell_d_acheminement": "BERGICOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80083"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64a3fb22302ac5da09206d39125500749ae8e966", "fields": {"nom_de_la_commune": "BERNAVILLE", "libell_d_acheminement": "BERNAVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80086"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3a66fc34c0253e1c72517d9db74a4f7c70e0f2", "fields": {"nom_de_la_commune": "BERTANGLES", "libell_d_acheminement": "BERTANGLES", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80092"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e861d081593d2f00dc8de5565a450e2df2755891", "fields": {"nom_de_la_commune": "BERTEAUCOURT LES THENNES", "libell_d_acheminement": "BERTEAUCOURT LES THENNES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80094"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d575cfdddd179691ecf0577410bfd6e4e1496b", "fields": {"nom_de_la_commune": "BETHENCOURT SUR MER", "libell_d_acheminement": "BETHENCOURT SUR MER", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80096"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfbb3195054dc8b7df59ec5a02aed6770335bc0", "fields": {"nom_de_la_commune": "BETTENCOURT ST OUEN", "libell_d_acheminement": "BETTENCOURT ST OUEN", "code_postal": "80610", "coordonnees_gps": [50.0237604844, 2.12528172421], "code_commune_insee": "80100"}, "geometry": {"type": "Point", "coordinates": [2.12528172421, 50.0237604844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd4264530528158741b358aefb452a892c433d6", "fields": {"nom_de_la_commune": "BIARRE", "libell_d_acheminement": "BIARRE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80103"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f54c7fdc59a543b784a768a719b13cc14c90b182", "fields": {"nom_de_la_commune": "BOISBERGUES", "libell_d_acheminement": "BOISBERGUES", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80108"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fdda7cdd8053f8b753a070b33328bd80ec8444", "fields": {"nom_de_la_commune": "BOISMONT", "libell_d_acheminement": "BOISMONT", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80110"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de0f016d0de952bbd02fe5674b4b1dcc9ce0760", "fields": {"nom_de_la_commune": "BONNAY", "libell_d_acheminement": "BONNAY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80112"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b6259ac302ab706692ab044e7eb2833b2b195c", "fields": {"nom_de_la_commune": "BOUCHON", "libell_d_acheminement": "BOUCHON", "code_postal": "80830", "coordonnees_gps": [50.031200876, 2.0339484859], "code_commune_insee": "80117"}, "geometry": {"type": "Point", "coordinates": [2.0339484859, 50.031200876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c90d989fd2e8d9d88415c46c3297a1bc49cf2b", "fields": {"nom_de_la_commune": "BOUFFLERS", "libell_d_acheminement": "BOUFFLERS", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80118"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893a8a35075151597f7f20be50dd344766fb8282", "fields": {"nom_de_la_commune": "BOUZINCOURT", "libell_d_acheminement": "BOUZINCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80129"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a64bbf213cb44c2d18a7ffcbc62acc2007c454", "fields": {"nom_de_la_commune": "BREVILLERS", "libell_d_acheminement": "BREVILLERS", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80140"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839d0da54f14c94bf0cd10aede3e2668d9da01aa", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80141"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d6bb497a40d47333ac12c74445ab3b32e7bc73", "fields": {"nom_de_la_commune": "BUIRE COURCELLES", "libell_d_acheminement": "BUIRE COURCELLES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80150"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c801d015141b2194f398fc947028ce38314703c4", "fields": {"nom_de_la_commune": "BUS LA MESIERE", "libell_d_acheminement": "BUS LA MESIERE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80152"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e10ecf4c404016e97d73028819ab2fb189125f", "fields": {"nom_de_la_commune": "BUSSY LES DAOURS", "libell_d_acheminement": "BUSSY LES DAOURS", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80156"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1d6b5a92d8c25cd763c80e2c8435219255838e", "fields": {"nom_de_la_commune": "CACHY", "libell_d_acheminement": "CACHY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80159"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da5e2c6b935d13a54017b634019df05505b974ad", "fields": {"nom_de_la_commune": "CANAPLES", "libell_d_acheminement": "CANAPLES", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80166"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7522a3a8ebea69ab09a6aa8f4db9364341746d69", "fields": {"nom_de_la_commune": "CARDONNETTE", "libell_d_acheminement": "CARDONNETTE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80173"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c29ff4014e8fff6005ef3da845786400d9d2b7", "fields": {"nom_de_la_commune": "LE CARDONNOIS", "libell_d_acheminement": "LE CARDONNOIS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80174"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07b297d899a007970e5819345dc08bf0532571a", "fields": {"nom_de_la_commune": "CAULIERES", "libell_d_acheminement": "CAULIERES", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80179"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c91ed1fb983e292d128342edeafecd11bd16ea6", "fields": {"nom_de_la_commune": "LA CHAUSSEE TIRANCOURT", "libell_d_acheminement": "LA CHAUSSEE TIRANCOURT", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80187"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"}] \ No newline at end of file diff --git a/data/ratp.json b/flatisfy/data_files/ratp.json similarity index 100% rename from data/ratp.json rename to flatisfy/data_files/ratp.json diff --git a/flatisfy/database/__init__.py b/flatisfy/database/__init__.py new file mode 100644 index 0000000..06819a3 --- /dev/null +++ b/flatisfy/database/__init__.py @@ -0,0 +1,64 @@ +# coding: utf-8 +""" +This module contains functions related to the database. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import sqlite3 + +from contextlib import contextmanager + +from sqlalchemy import event, create_engine +from sqlalchemy.engine import Engine +from sqlalchemy.orm import sessionmaker + +import flatisfy.models.flat # noqa: F401 +from flatisfy.database.base import BASE + + +@event.listens_for(Engine, "connect") +def set_sqlite_pragma(dbapi_connection, _): + """ + Auto enable foreign keys for SQLite. + """ + # Play well with other DB backends + if isinstance(dbapi_connection, sqlite3.Connection): + cursor = dbapi_connection.cursor() + cursor.execute("PRAGMA foreign_keys=ON") + cursor.close() + + +def init_db(database_uri=None): + """ + Initialize the database, ensuring tables exist etc. + + :param database_uri: An URI describing an engine to use. Defaults to + in-memory SQLite database. + :return: A tuple of an SQLAlchemy session maker and the created engine. + """ + if database_uri is None: + database_uri = "sqlite:///:memory:" + + engine = create_engine(database_uri) + BASE.metadata.create_all(engine, checkfirst=True) + Session = sessionmaker(bind=engine) # pylint: disable=invalid-name + + @contextmanager + def get_session(): + """ + Provide a transactional scope around a series of operations. + + From [1]. + [1]: http://docs.sqlalchemy.org/en/latest/orm/session_basics.html#when-do-i-construct-a-session-when-do-i-commit-it-and-when-do-i-close-it. + """ + session = Session() + try: + yield session + session.commit() + except: + session.rollback() + raise + finally: + session.close() + + return get_session diff --git a/flatisfy/database/base.py b/flatisfy/database/base.py new file mode 100644 index 0000000..0f977f0 --- /dev/null +++ b/flatisfy/database/base.py @@ -0,0 +1,10 @@ +# coding: utf-8 +""" +This module contains the definition of the declarative SQLAlchemy base. +""" +from __future__ import absolute_import, print_function, unicode_literals + +from sqlalchemy.ext.declarative import declarative_base + + +BASE = declarative_base() diff --git a/flatisfy/database/types.py b/flatisfy/database/types.py new file mode 100644 index 0000000..79f3c49 --- /dev/null +++ b/flatisfy/database/types.py @@ -0,0 +1,48 @@ +# coding: utf-8 +""" +This modules implements custom types in SQLAlchemy. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import json + +import sqlalchemy.types as types + + +class StringyJSON(types.TypeDecorator): + """ + Stores and retrieves JSON as TEXT for SQLite. + + From + https://avacariu.me/articles/2016/compiling-json-as-text-for-sqlite-with-sqlalchemy. + + .. note :: The associated field is immutable. That is, changes to the data + (typically, changing the value of a dict field) will not trigger an update + on the SQL side upon ``commit`` as the reference to the object will not + have been updated. One should force the update by forcing an update of the + reference (by performing a ``copy`` operation on the dict for instance). + """ + + impl = types.TEXT + + def process_bind_param(self, value, dialect): + """ + TODO + """ + if value is not None: + value = json.dumps(value) + return value + + def process_result_value(self, value, dialect): + """ + TODO + """ + if value is not None: + value = json.loads(value) + return value + + +# TypeEngine.with_variant says "use StringyJSON instead when +# connecting to 'sqlite'" +# pylint: disable=invalid-name +MagicJSON = types.JSON().with_variant(StringyJSON, 'sqlite') diff --git a/flatisfy/exceptions.py b/flatisfy/exceptions.py new file mode 100644 index 0000000..07489ca --- /dev/null +++ b/flatisfy/exceptions.py @@ -0,0 +1,13 @@ +# coding : utf-8 +""" +This module contains all the exceptions definitions for the Flatisfy-specific +exceptions. +""" +from __future__ import absolute_import, print_function, unicode_literals + + +class DataBuildError(Exception): + """ + Error occurring on building a data file. + """ + pass diff --git a/flatisfy/fetch.py b/flatisfy/fetch.py new file mode 100644 index 0000000..addf2d3 --- /dev/null +++ b/flatisfy/fetch.py @@ -0,0 +1,76 @@ +# coding: utf-8 +""" +This module contains all the code related to fetching and loading flats lists. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import json +import logging +import subprocess + + +LOGGER = logging.getLogger(__name__) + + +def fetch_flats_list(config): + """ + Fetch the available flats using the Flatboob / Weboob config. + + :param config: A config dict. + :return: A list of all available flats. + """ + flats_list = [] + for query in config["queries"]: + max_entries = config["max_entries"] + if max_entries is None: + max_entries = 0 + + LOGGER.info("Loading flats from query %s.", query) + flatboob_output = subprocess.check_output( + ["../weboob/tools/local_run.sh", "../weboob/scripts/flatboob", + "-n", str(max_entries), "-f", "json", "load", query] + ) + query_flats_list = json.loads(flatboob_output) + LOGGER.info("Fetched %d flats.", len(query_flats_list)) + flats_list.extend(query_flats_list) + LOGGER.info("Fetched a total of %d flats.", len(flats_list)) + return flats_list + + +def fetch_details(flat_id): + """ + Fetch the additional details for a flat using Flatboob / Weboob. + + :param flat_id: ID of the flat to fetch details for. + :return: A flat dict with all the available data. + """ + LOGGER.info("Loading additional details for flat %s.", flat_id) + flatboob_output = subprocess.check_output( + ["../weboob/tools/local_run.sh", "../weboob/scripts/flatboob", + "-f", "json", "info", flat_id] + ) + flat_details = json.loads(flatboob_output) + LOGGER.info("Fetched details for flat %s.", flat_id) + + if flat_details: + flat_details = flat_details[0] + + return flat_details + + +def load_flats_list(json_file): + """ + Load a dumped flats list from JSON file. + + :param json_file: The file to load housings list from. + :return: A list of all the flats in the dump file. + """ + flats_list = [] + try: + LOGGER.info("Loading flats list from file %s", json_file) + with open(json_file, "r") as fh: + flats_list = json.load(fh) + LOGGER.info("Found %d flats.", len(flats_list)) + except (IOError, ValueError): + LOGGER.error("File %s is not a valid dump file.", json_file) + return flats_list diff --git a/flatisfy/filters/__init__.py b/flatisfy/filters/__init__.py new file mode 100644 index 0000000..8addc68 --- /dev/null +++ b/flatisfy/filters/__init__.py @@ -0,0 +1,153 @@ +# coding: utf-8 +""" +This module contains all the filtering functions. It exposes ``first_pass`` and +``second_pass`` functions which are a set of filters applied during the first +pass and the second pass. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import logging + +from flatisfy import tools +from flatisfy.filters import duplicates +from flatisfy.filters import metadata + + +LOGGER = logging.getLogger(__name__) + + +def refine_with_housing_criteria(flats_list, config): + """ + Filter a list of flats according to criteria. + + Housings posts websites tend to return broader results that what was + actually asked for. Then, we should filter out the list to match the + user criteria, and avoid exposing unwanted flats. + + :param flats_list: A list of flats dict to filter. + :param config: A config dict. + :return: A tuple of flats to keep and flats to delete. + """ + # For each flat, the associated `is_ok` value indicate whether it should be + # kept or discarded. + is_ok = [True for _ in flats_list] + + for i, flat in enumerate(flats_list): + # Check postal code + postal_code = flat["flatisfy"].get("postal_code", None) + if ( + postal_code and + postal_code not in config["constraints"]["postal_codes"] + ): + LOGGER.info("Postal code for flat %s is out of range.", flat["id"]) + is_ok[i] = is_ok[i] and False + + # Check time_to + for place_name, time in flat["flatisfy"].get("time_to", {}).items(): + is_within_interval = tools.is_within_interval( + time, + *(config["constraints"]["time_to"][place_name]["time"]) + ) + if not is_within_interval: + LOGGER.info("Flat %s is too far from place %s.", + flat["id"], place_name) + is_ok[i] = is_ok[i] and is_within_interval + + # Check other fields + for field in ["area", "cost", "rooms", "bedrooms"]: + interval = config["constraints"][field] + is_within_interval = tools.is_within_interval( + flat.get(field, None), + *interval + ) + if not is_within_interval: + LOGGER.info("%s for flat %s is out of range.", + field.capitalize(), flat["id"]) + is_ok[i] = is_ok[i] and is_within_interval + + return ( + [ + flat + for i, flat in enumerate(flats_list) + if is_ok[i] + ], + [ + flat + for i, flat in enumerate(flats_list) + if not is_ok[i] + ] + ) + + +def first_pass(flats_list, config): + """ + First filtering pass. + + Flatboob only fetches data from the listing of the available housing. Then, + we should do a first pass to filter based on the already available data and + only request more data for the remaining housings. + + :param flats_list: A list of flats dict to filter. + :param config: A config dict. + :return: A tuple of processed flats and purged flats. + """ + LOGGER.info("Running first filtering pass.") + # Handle duplicates based on ids + # Just remove them (no merge) as they should be the exact same object. + flats_list = duplicates.detect( + flats_list, key="id", merge=False + ) + # Also merge duplicates based on url (these may come from different + # flatboob backends) + # This is especially useful as some websites such as entreparticuliers + # contains a lot of leboncoin housings posts. + flats_list = duplicates.detect( + flats_list, key="url", merge=True + ) + + # Add the flatisfy metadata entry + flats_list = metadata.init(flats_list) + # Guess the postal codes + flats_list = metadata.guess_postal_code(flats_list, config) + # Try to match with stations + flats_list = metadata.guess_stations(flats_list, config) + # Remove returned housing posts that do not match criteria + flats_list, purged_list = refine_with_housing_criteria(flats_list, config) + + return (flats_list, purged_list) + + +def second_pass(flats_list, config): + """ + Second filtering pass. + + This pass is expected to have as most information as possible on the + available housings. Plus it runs after first pass which already + consolidated data. + + It should consolidate everything and try to extract as many data as + possible from the fetched housings. + + :param flats_list: A list of flats dict to filter. + :param config: A config dict. + :return: A tuple of processed flats and purged flats. + """ + LOGGER.info("Running second filtering pass.") + # Assumed to run after first pass, so there should be no obvious duplicates + # left and we already tried to find postal code and nearby stations. + + # Confirm postal code + flats_list = metadata.guess_postal_code(flats_list, config) + + # TODO: Guess the address + + # Better match with stations (confirm and check better) + flats_list = metadata.guess_stations(flats_list, config) + + # Compute travel time to specified points + flats_list = metadata.compute_travel_times(flats_list, config) + + # Remove returned housing posts that do not match criteria + flats_list, purged_list = refine_with_housing_criteria(flats_list, config) + + return (flats_list, purged_list) diff --git a/flatisfy/filters/duplicates.py b/flatisfy/filters/duplicates.py new file mode 100644 index 0000000..18f9264 --- /dev/null +++ b/flatisfy/filters/duplicates.py @@ -0,0 +1,56 @@ +# coding: utf-8 +""" +Filtering functions to detect and merge duplicates. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import collections + +from flatisfy import tools + + +def detect(flats_list, key="id", merge=True): + """ + Detect obvious duplicates within a given list of flats. + + There may be duplicates found, as some queries could overlap (especially + since when asking for a given place, websites tend to return housings in + nearby locations as well). We need to handle them, by either deleting the + duplicates (``merge=False``) or merging them together in a single flat + object. + + :param flats_list: A list of flats dicts. + :param key: The flat dicts key on which the duplicate detection should be + done. + :param merge: Whether the found duplicates should be merged or we should + only keep one of them. + + :return: A deduplicated list of flat dicts. + """ + # TODO: Keep track of found duplicates? + # ``seen`` is a dict mapping aggregating the flats by the deduplication + # keys. We basically make buckets of flats for every key value. Flats in + # the same bucket should be merged together afterwards. + seen = collections.defaultdict(list) + for flat in flats_list: + seen[flat.get(key, None)].append(flat) + + # Generate the unique flats list based on these buckets + unique_flats_list = [] + for flat_key, matching_flats in seen.items(): + if flat_key is None: + # If the key is None, it means Weboob could not load the data. In + # this case, we consider every matching item as being independant + # of the others, to avoid over-deduplication. + unique_flats_list.extend(matching_flats) + else: + # Otherwise, check the policy + if merge: + # If a merge is requested, do the merge + unique_flats_list.append( + tools.merge_dicts(*matching_flats) + ) + else: + # Otherwise, just keep any of them + unique_flats_list.append(matching_flats[0]) + return unique_flats_list diff --git a/flatisfy/filters/metadata.py b/flatisfy/filters/metadata.py new file mode 100644 index 0000000..c050f0a --- /dev/null +++ b/flatisfy/filters/metadata.py @@ -0,0 +1,349 @@ +# coding: utf-8 +""" +Filtering functions to handle flatisfy-specific metadata. + +This includes functions to guess metadata (postal codes, stations) from the +actual fetched data. +""" +from __future__ import absolute_import, print_function, unicode_literals + +import logging +import re + +from flatisfy import data +from flatisfy import tools + + +LOGGER = logging.getLogger(__name__) + + +def init(flats_list): + """ + Create a flatisfy key containing a dict of metadata fetched by flatisfy for + each flat in the list. + + :param flats_list: A list of flats dict. + :return: The updated list + """ + for flat in flats_list: + if "flatisfy" not in flat: + flat["flatisfy"] = {} + return flats_list + + +def fuzzy_match(query, choices, limit=3, threshold=75): + """ + Custom search for the best element in choices matching the query. + + :param query: The string to match. + :param choices: The list of strings to match with. + :param limit: The maximum number of items to return. + :param threshold: The score threshold to use. + + :return: Tuples of matching items and associated confidence. + + .. note :: This function works by removing any fancy character from the + ``query`` and ``choices`` strings (replacing any non alphabetic and non + numeric characters by space), converting to lower case and normalizing them + (collapsing multiple spaces etc). It also converts any roman numerals to + decimal system. It then compares the string and look for the longest string + in ``choices`` which is a substring of ``query``. The longest one gets a + confidence of 100. The shorter ones get a confidence proportional to their + length. + + .. seealso :: flatisfy.tools.normalize_string + + .. todo :: Is there a better confidence measure? + + :Example: + + >>> match("Paris 14ème", ["Ris", "ris", "Paris 14"], limit=1) + [("Paris 14", 100) + + >>> match( \ + "Saint-Jacques, Denfert-Rochereau (Colonel Rol-Tanguy), " \ + "Mouton-Duvernet", \ + ["saint-jacques", "denfert rochereau", "duvernet", "toto"], \ + limit=4 \ + ) + [('denfert rochereau', 100), ('saint-jacques', 76)] + """ + normalized_query = tools.normalize_string(query) + normalized_choices = [tools.normalize_string(choice) for choice in choices] + + # Remove duplicates in the choices list + unique_normalized_choices = tools.uniqify(normalized_choices) + + # Get the matches (normalized strings) + # Keep only ``limit`` matches. + matches = sorted( + [ + (choice, len(choice)) + for choice in tools.uniqify(unique_normalized_choices) + if choice in normalized_query + ], + key=lambda x: x[1], + reverse=True + )[:limit] + + # Update confidence + if matches: + max_confidence = max(match[1] for match in matches) + matches = [ + (x[0], int(x[1] / max_confidence * 100)) + for x in matches + ] + + # Convert back matches to original strings + # Also filter out matches below threshold + matches = [ + (choices[normalized_choices.index(x[0])], x[1]) + for x in matches + if x[1] >= threshold + ] + + return matches + + +def guess_postal_code(flats_list, config, distance_threshold=20000): + """ + Try to guess the postal code from the location of the flats. + + :param flats_list: A list of flats dict. + :param config: A config dict. + :param distance_threshold: Maximum distance in meters between the + constraint postal codes (from config) and the one found by this function, + to avoid bad fuzzy matching. Can be ``None`` to disable thresholding. + + :return: An updated list of flats dict with guessed postal code. + """ + opendata = { + "cities": data.load_data("cities", config), + "postal_codes": data.load_data("postal_codes", config) + } + + for flat in flats_list: + location = flat.get("location", None) + if not location: + # Skip everything if empty location + LOGGER.info( + ( + "No location field for flat %s, skipping postal " + "code lookup." + ), + flat["id"] + ) + continue + + postal_code = None + # Try to find a postal code directly + try: + postal_code = re.search(r"[0-9]{5}", location) + assert postal_code is not None + postal_code = postal_code.group(0) + + # Check the postal code is within the db + assert postal_code in opendata["postal_codes"] + + LOGGER.info( + "Found postal code in location field for flat %s: %s.", + flat["id"], postal_code + ) + except AssertionError as e: + postal_code = None + + # If not found, try to find a city + if not postal_code: + matched_city = fuzzy_match( + location, + opendata["cities"].keys(), + limit=1 + ) + if matched_city: + # Store the matching postal code + matched_city = matched_city[0] + matched_city_name = matched_city[0] + postal_code = ( + opendata["cities"][matched_city_name]["postal_code"] + ) + LOGGER.info( + ("Found postal code in location field through city lookup " + "for flat %s: %s."), + flat["id"], postal_code + ) + + # Check that postal code is not too far from the ones listed in config, + # limit bad fuzzy matching + if postal_code and distance_threshold: + distance = min( + tools.distance( + opendata["postal_codes"][postal_code]["gps"], + opendata["postal_codes"][constraint]["gps"], + ) + for constraint in config["constraints"]["postal_codes"] + ) + + if distance > distance_threshold: + LOGGER.info( + ("Postal code %s found for flat %s is off-constraints. " + "Min distance is %f."), + postal_code, flat["id"], distance + ) + postal_code = None + + # Store it + if postal_code: + existing_postal_code = flat["flatisfy"].get("postal_code", None) + if existing_postal_code and existing_postal_code != postal_code: + LOGGER.warning( + "Replacing previous postal code %s by %s for flat %s.", + existing_postal_code, postal_code, flat["id"] + ) + flat["flatisfy"]["postal_code"] = postal_code + else: + LOGGER.info("No postal code found for flat %s.", flat["id"]) + + return flats_list + + +def guess_stations(flats_list, config, distance_threshold=1500): + """ + Try to match the station field with a list of available stations nearby. + + :param flats_list: A list of flats dict. + :param config: A config dict. + :param distance_threshold: Maximum distance (in meters) between the center + of the postal code and the station to consider it ok. + + :return: An updated list of flats dict with guessed nearby stations. + """ + opendata = { + "postal_codes": data.load_data("postal_codes", config), + "stations": data.load_data("ratp", config) + } + + for flat in flats_list: + flat_station = flat.get("station", None) + # TODO: Use flat location field as well? + + if not flat_station: + # Skip everything if empty station + LOGGER.info( + "No station field for flat %s, skipping stations lookup.", + flat["id"] + ) + continue + + matched_stations = fuzzy_match( + flat_station, + opendata["stations"].keys(), + limit=10, + threshold=50 + ) + + # Filter out the stations that are obviously too far and not well + # guessed + good_matched_stations = [] + postal_code = flat["flatisfy"].get("postal_code", None) + if postal_code: + # If there is a postal code, check that the matched station is + # closed to it + postal_code_gps = opendata["postal_codes"][postal_code]["gps"] + for station in matched_stations: + # opendata["stations"] is a dict mapping station names to list + # of coordinates, for efficiency. Note that multiple stations + # with the same name exist in a city, hence the list of + # coordinates. + for station_gps in opendata["stations"][station[0]]: + distance = tools.distance(station_gps, postal_code_gps) + if distance < distance_threshold: + # If at least one of the coordinates for a given + # station is close enough, that's ok and we can add + # the station + good_matched_stations.append({ + "name": station[0], + "confidence": station[1], + "gps": station_gps + }) + break + LOGGER.debug( + "Station %s is too far from flat %s, discarding it.", + station[0], flat["id"] + ) + else: + LOGGER.info( + ("No postal code for flat %s, keeping all the matched " + "stations with half confidence."), + flat["id"] + ) + # Otherwise, we keep every matching station but with half + # confidence + good_matched_stations = [ + { + "name": station[0], + "confidence": station[1] * 0.5, + "gps": station_gps + } + for station in matched_stations + for station_gps in opendata["stations"][station[0]] + ] + + # Store matched stations and the associated confidence + LOGGER.info( + "Found stations for flat %s: %s.", + flat["id"], + ", ".join(x["name"] for x in good_matched_stations) + ) + # TODO: Handle update (second pass) + flat["flatisfy"]["matched_stations"] = good_matched_stations + + return flats_list + + +def compute_travel_times(flats_list, config): + """ + Compute the travel time between each flat and the points listed in the + constraints. + + :param flats_list: A list of flats dict. + :param config: A config dict. + + :return: An updated list of flats dict with computed travel times. + + .. note :: Requires a Navitia or CityMapper API key in the config. + """ + for flat in flats_list: + if not flat["flatisfy"].get("matched_stations", []): + # Skip any flat without matched stations + LOGGER.info( + "Skipping travel time computation for flat %s. No matched " + "stations.", + flat["id"] + ) + continue + + if "time_to" not in flat["flatisfy"]: + # Ensure time_to key is initialized + flat["flatisfy"]["time_to"] = {} + + # For each place, loop over the stations close to the flat, and find + # the minimum travel time. + for place_name, place in config["constraints"]["time_to"].items(): + time_to_place = None + for station in flat["flatisfy"]["matched_stations"]: + time_from_station = tools.get_travel_time_between( + station["gps"], + place["gps"], + config + ) + if time_from_station and (time_from_station < time_to_place or + time_to_place is None): + time_to_place = time_from_station + + if time_to_place: + LOGGER.info( + "Travel time between %s and flat %s is %ds.", + place_name, flat["id"], time_to_place + ) + flat["flatisfy"]["time_to"][place_name] = time_to_place + return flats_list diff --git a/flatisfy/models/__init__.py b/flatisfy/models/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flatisfy/models/flat.py b/flatisfy/models/flat.py new file mode 100644 index 0000000..f5d440d --- /dev/null +++ b/flatisfy/models/flat.py @@ -0,0 +1,101 @@ +# coding: utf-8 +""" +This modules defines an SQLAlchemy ORM model for a flat. +""" +# pylint: disable=invalid-name,too-few-public-methods +from __future__ import absolute_import, print_function, unicode_literals + +import enum + +from sqlalchemy import Column, DateTime, Enum, Float, String, Text + +from flatisfy.database.base import BASE +from flatisfy.database.types import MagicJSON + + +class FlatStatus(enum.Enum): + """ + An enum of the possible status for a flat entry. + """ + purged = -10 + new = 0 + contacted = 10 + answer_no = 20 + answer_yes = 21 + + +class Flat(BASE): + """ + SQLAlchemy ORM model to store a flat. + """ + __tablename__ = "flats" + + # Weboob data + id = Column(String, primary_key=True) + area = Column(Float) + bedrooms = Column(Float) + cost = Column(Float) + currency = Column(String) + date = Column(DateTime) + details = Column(MagicJSON) + location = Column(String) + phone = Column(String) + photos = Column(MagicJSON) + rooms = Column(Float) + station = Column(String) + text = Column(Text) + title = Column(String) + url = Column(String) + + # Flatisfy data + # TODO: Should be in another table with relationships + flatisfy_stations = Column(MagicJSON) + flatisfy_postal_code = Column(String) + flatisfy_time_to = Column(MagicJSON) + + # Status + status = Column(Enum(FlatStatus), default=FlatStatus.new) + + @staticmethod + def from_dict(flat_dict): + """ + Create a Flat object from a flat dict as manipulated by the filtering + pass. + """ + # Handle flatisfy metadata + flat_dict = flat_dict.copy() + flat_dict["flatisfy_stations"] = ( + flat_dict["flatisfy"].get("matched_stations", None) + ) + flat_dict["flatisfy_postal_code"] = ( + flat_dict["flatisfy"].get("postal_code", None) + ) + flat_dict["flatisfy_time_to"] = ( + flat_dict["flatisfy"].get("time_to", None) + ) + del flat_dict["flatisfy"] + + # Handle date field + flat_dict["date"] = None # TODO + + flat_object = Flat() + flat_object.__dict__.update(flat_dict) + return flat_object + + def __repr__(self): + return "" % (self.id, self.url) + + + def json_api_repr(self): + """ + Return a dict representation of this flat object that is JSON + serializable. + """ + flat_repr = { + k: v + for k, v in self.__dict__.items() + if not k.startswith("_") + } + flat_repr["status"] = str(flat_repr["status"]) + + return flat_repr diff --git a/flatisfy/tools.py b/flatisfy/tools.py new file mode 100644 index 0000000..f575011 --- /dev/null +++ b/flatisfy/tools.py @@ -0,0 +1,239 @@ +# coding: utf-8 +""" +This module contains basic utility functions, such as pretty printing of JSON +output, checking that a value is within a given interval etc. +""" +from __future__ import ( + absolute_import, division, print_function, unicode_literals +) + +import datetime +import json +import logging +import math +import re + +import requests +import unidecode + + +LOGGER = logging.getLogger(__name__) + + +def pretty_json(data): + """ + Pretty JSON output. + + :param data: The data to dump as pretty JSON. + :return: The pretty printed JSON dump. + + :Example: + + >>> print(pretty_json({"toto": "ok", "foo": "bar"})) + { + "foo": "bar", + "toto": "ok" + } + """ + return json.dumps(data, indent=4, separators=(',', ': '), + sort_keys=True) + + +def is_within_interval(value, min_value=None, max_value=None): + """ + Check whether a variable is within a given interval. Assumes the value is + always ok with respect to a `None` bound. If the `value` is `None`, it is + always within the bounds. + + :param value: The value to check. Can be ``None``. + :param min_value: The lower bound. + :param max_value: The upper bound. + :return: ``True`` if the value is ``None``. ``True`` or ``False`` whether + the value is within the given interval or not. + + .. note:: A value is always within a ``None`` bound. + + :Example: + + >>> is_within_interval(None) + True + >>> is_within_interval(None, 0, 10) + True + >>> is_within_interval(2, None, None) + True + >>> is_within_interval(2, None, 3) + True + >>> is_within_interval(2, 1, None) + True + >>> is_within_interval(2, 1, 3) + True + >>> is_within_interval(2, 4, 7) + False + >>> is_within_interval(2, 4, 1) + False + """ + checks = [] + if value and min_value: + checks.append(value >= min_value) + if value and max_value: + checks.append(value <= max_value) + return all(checks) + + +def normalize_string(string): + """ + Normalize the given string for matching. + + .. todo :: Convert romanian numerals to decimal + + :Example: + + >>> normalize_string("tétéà 14ème-XIV, foobar") + 'tetea 14eme xiv, foobar' + """ + # ASCIIfy the string + string = unidecode.unidecode(string) + + # Replace any non-alphanumeric character by space + # Keep some basic punctuation to keep syntaxic units + string = re.sub(r"[^a-zA-Z0-9,;:]", " ", string) + + # Convert to lowercase + string = string.lower() + + # Collapse multiple spaces, replace tabulations and newlines by space + string = re.sub(r"\s+", " ", string) + + return string + + +def uniqify(some_list): + """ + Filter out duplicates from a given list. + + :Example: + + >>> uniqify([1, 2, 2, 3]) + [1, 2, 3] + """ + return list(set(some_list)) + + +def distance(gps1, gps2): + """ + Compute the distance between two tuples of latitude and longitude. + + :param gps1: First tuple of (latitude, longitude). + :param gps2: Second tuple of (latitude, longitude). + :return: The distance in meters. + + :Example: + + >>> int(distance([48.86786647303717, 2.19368117495212], \ + [48.95314107920405, 2.3368043817358464])) + 14117 + """ + lat1 = math.radians(gps1[0]) + long1 = math.radians(gps1[1]) + + lat2 = math.radians(gps2[0]) + long2 = math.radians(gps2[1]) + + # pylint: disable=invalid-name + a = ( + math.sin((lat2 - lat1) / 2.0)**2 + + math.cos(lat1) * math.cos(lat2) * math.sin((long2 - long1) / 2.0)**2 + ) + c = 2.0 * math.atan2(math.sqrt(a), math.sqrt(1 - a)) + earth_radius = 6371000 + + return earth_radius * c + + +def sort_list_of_dicts_by(flats_list, key): + """ + Sort a list of dicts according to a given field common to all the dicts. + + :param flats_list: List of dicts to sort. + :param key: The key of the dict items to sort on. + :return: A sorted list. + + :Example: + + >>> sort_list_of_dicts_by([{1: 2}, {1: 1}], 1) + [{1: 1}, {1: 2}] + """ + return sorted(flats_list, key=lambda x: x[key]) + + +def merge_dicts(*args): + """ + Merge the two flats passed as argument in a single flat dict object. + """ + if len(args) == 1: + return args[0] + else: + flat1, flat2 = args[:2] + merged_flat = {} + for k, value2 in flat2.items(): + value1 = flat1.get(k, None) + if value1 is None: + # flat1 has empty matching field, just keep the flat2 field + merged_flat[k] = value2 + elif value2 is None: + # flat2 field is empty, just keep the flat1 field + merged_flat[k] = value1 + else: + # Any other case, we should merge + # TODO: Do the merge + merged_flat[k] = value1 + return merge_dicts(merged_flat, *args[2:]) + + +def get_travel_time_between(latlng_from, latlng_to, config): + """ + Query the Navitia API to get the travel time between two points identified + by their latitude and longitude. + + :param latlng_from: A tuple of (latitude, longitude) for the starting + point. + :param latlng_to: A tuple of (latitude, longitude) for the destination. + :return: The travel time in seconds. Returns ``None`` if it could not fetch + it. + + .. note :: Uses the Navitia API. Requires a ``navitia_api_key`` field to be + filled-in in the ``config``. + """ + NAVITIA_ENDPOINT = "https://api.navitia.io/v1/coverage/fr-idf/journeys" + time = None + + # Check that Navitia API key is available + if config["navitia_api_key"]: + payload = { + "from": "%s;%s" % (latlng_from[1], latlng_from[0]), + "to": "%s;%s" % (latlng_to[1], latlng_to[0]), + "datetime": datetime.datetime.now().isoformat(), + "count": 1 + } + try: + # Do the query to Navitia API + req = requests.get( + NAVITIA_ENDPOINT, params=payload, + auth=(config["navitia_api_key"], "") + ) + req.raise_for_status() + time = req.json()["journeys"][0]["durations"]["total"] + except (requests.exceptions.RequestException, + ValueError, IndexError, KeyError) as e: + # Ignore any possible exception + LOGGER.warning( + "An exception occurred during travel time lookup on " + "Navitia: %s.", + str(e) + ) + else: + LOGGER.warning( + "No API key available for travel time lookup. Please provide " + "a Navitia API key. Skipping travel time lookup." + ) + return time diff --git a/flatisfy/web/__init__.py b/flatisfy/web/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flatisfy/web/app.py b/flatisfy/web/app.py new file mode 100644 index 0000000..c5543e8 --- /dev/null +++ b/flatisfy/web/app.py @@ -0,0 +1,53 @@ +# coding: utf-8 +""" +This module contains the definition of the Bottle web app. +""" +from __future__ import ( + absolute_import, division, print_function, unicode_literals +) + +import os + +import bottle + +from flatisfy import database +from flatisfy.web.routes import api as api_routes +from flatisfy.web.dbplugin import DatabasePlugin + + +def _serve_static_file(filename): + """ + Helper function to serve static file. + """ + return bottle.static_file( + filename, + root=os.path.join( + os.path.dirname(os.path.realpath(__file__)), + "static" + ) + ) + + +def get_app(config): + """ + Get a Bottle app instance with all the routes set-up. + + :return: The built bottle app. + """ + get_session = database.init_db(config["database"]) + + app = bottle.default_app() + app.install(DatabasePlugin(get_session)) + + # API v1 routes + app.route("/api/v1/", "GET", api_routes.index_v1) + app.route("/api/v1/flats", "GET", api_routes.flats_v1) + app.route("/api/v1/flat/:id", "GET", api_routes.flat_v1) + + # Index + app.route("/", "GET", lambda: _serve_static_file("index.html")) + + # Static files + app.route("/static/", "GET", _serve_static_file) + + return app diff --git a/flatisfy/web/dbplugin.py b/flatisfy/web/dbplugin.py new file mode 100644 index 0000000..1d5e0b6 --- /dev/null +++ b/flatisfy/web/dbplugin.py @@ -0,0 +1,58 @@ +# coding: utf-8 +""" +This module contains a Bottle plugin to pass the database argument to any route +which needs it. +""" +from __future__ import ( + absolute_import, division, print_function, unicode_literals +) + +import functools +import inspect + +import bottle + + +class DatabasePlugin(object): + name = 'database' + api = 2 + KEYWORD = "db" + + def __init__(self, get_session): + """ + :param keyword: Keyword used to inject session database in a route + :param create_session: SQLAlchemy session maker created with the + 'sessionmaker' function. Will create its own if undefined. + """ + self.get_session = get_session + + def setup(self, app): + """ + Make sure that other installed plugins don't affect the same + keyword argument and check if metadata is available. + """ + for other in app.plugins: + if not isinstance(other, DatabasePlugin): + continue + else: + raise bottle.PluginError( + "Found another conflicting Database plugin." + ) + + def apply(self, callback, route): + try: + callback_args = inspect.signature(route.callback).parameters + except AttributeError: + # inspect.signature does not exist on older Python + callback_args = inspect.getargspec(route.callback).args + + if self.KEYWORD not in callback_args: + return callback + else: + with self.get_session() as session: + kwargs = {} + kwargs[self.KEYWORD] = session + return functools.partial(callback, **kwargs) + + +Plugin = DatabasePlugin diff --git a/flatisfy/web/routes/__init__.py b/flatisfy/web/routes/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/flatisfy/web/routes/api.py b/flatisfy/web/routes/api.py new file mode 100644 index 0000000..a4c88f2 --- /dev/null +++ b/flatisfy/web/routes/api.py @@ -0,0 +1,47 @@ +# coding: utf-8 +""" +This module contains the definition of the web app API routes. +""" +from __future__ import ( + absolute_import, division, print_function, unicode_literals +) + +from flatisfy.models import flat as flat_model + + +def index_v1(): + """ + API v1 index route: + + GET /api/v1/ + """ + return { + "flats": "/api/v1/flats" + } + + +def flats_v1(db): + """ + API v1 flats route: + + GET /api/v1/flats + """ + flats = [ + flat.json_api_repr() + for flat in db.query(flat_model.Flat).all() + ] + return { + "data": flats + } + + +def flat_v1(id, db): + """ + API v1 flat route: + + GET /api/v1/flat/:id + """ + flat = db.query(flat_model.Flat).filter_by(id=id).first() + return { + "data": flat.json_api_repr() + } diff --git a/flatisfy/web/static/index.html b/flatisfy/web/static/index.html new file mode 100644 index 0000000..6c6f44c --- /dev/null +++ b/flatisfy/web/static/index.html @@ -0,0 +1,30 @@ + + + + + Flatisfy + + + +
+

Flatisfy

+ + + + + + + + + +
TitreLien
+
+ + + diff --git a/hooks/pre-commit b/hooks/pre-commit new file mode 100755 index 0000000..4404633 --- /dev/null +++ b/hooks/pre-commit @@ -0,0 +1,3 @@ +#!/bin/sh + +pylint --rcfile=.ci/pylintrc flatisfy diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c74311d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +appdirs +bottle +bottle-sqlalchemy +enum34 +future +request +sqlalchemy +unidecode